You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

332 lines
16 KiB

3 years ago
3 years ago
3 years ago
  1. package historydb
  2. import (
  3. "encoding/json"
  4. "math/big"
  5. "time"
  6. ethCommon "github.com/ethereum/go-ethereum/common"
  7. "github.com/hermeznetwork/hermez-node/apitypes"
  8. "github.com/hermeznetwork/hermez-node/common"
  9. "github.com/iden3/go-iden3-crypto/babyjub"
  10. "github.com/iden3/go-merkletree"
  11. )
  12. // TxAPI is a representation of a generic Tx with additional information
  13. // required by the API, and extracted by joining block and token tables
  14. type TxAPI struct {
  15. // Generic
  16. IsL1 bool `meddler:"is_l1"`
  17. TxID common.TxID `meddler:"id"`
  18. ItemID uint64 `meddler:"item_id"`
  19. Type common.TxType `meddler:"type"`
  20. Position int `meddler:"position"`
  21. FromIdx *apitypes.HezIdx `meddler:"from_idx"`
  22. FromEthAddr *apitypes.HezEthAddr `meddler:"from_eth_addr"`
  23. FromBJJ *apitypes.HezBJJ `meddler:"from_bjj"`
  24. ToIdx apitypes.HezIdx `meddler:"to_idx"`
  25. ToEthAddr *apitypes.HezEthAddr `meddler:"to_eth_addr"`
  26. ToBJJ *apitypes.HezBJJ `meddler:"to_bjj"`
  27. Amount apitypes.BigIntStr `meddler:"amount"`
  28. HistoricUSD *float64 `meddler:"amount_usd"`
  29. BatchNum *common.BatchNum `meddler:"batch_num"` // batchNum in which this tx was forged. If the tx is L2, this must be != 0
  30. EthBlockNum int64 `meddler:"eth_block_num"` // Ethereum Block Number in which this L1Tx was added to the queue
  31. // L1
  32. ToForgeL1TxsNum *int64 `meddler:"to_forge_l1_txs_num"` // toForgeL1TxsNum in which the tx was forged / will be forged
  33. UserOrigin *bool `meddler:"user_origin"` // true if the tx was originated by a user, false if it was aoriginated by a coordinator. Note that this differ from the spec for implementation simplification purpposes
  34. DepositAmount *apitypes.BigIntStr `meddler:"deposit_amount"`
  35. HistoricDepositAmountUSD *float64 `meddler:"deposit_amount_usd"`
  36. AmountSuccess bool `meddler:"amount_success"`
  37. DepositAmountSuccess bool `meddler:"deposit_amount_success"`
  38. // L2
  39. Fee *common.FeeSelector `meddler:"fee"`
  40. HistoricFeeUSD *float64 `meddler:"fee_usd"`
  41. Nonce *common.Nonce `meddler:"nonce"`
  42. // API extras
  43. Timestamp time.Time `meddler:"timestamp,utctime"`
  44. TotalItems uint64 `meddler:"total_items"`
  45. FirstItem uint64 `meddler:"first_item"`
  46. LastItem uint64 `meddler:"last_item"`
  47. TokenID common.TokenID `meddler:"token_id"`
  48. TokenItemID uint64 `meddler:"token_item_id"`
  49. TokenEthBlockNum int64 `meddler:"token_block"`
  50. TokenEthAddr ethCommon.Address `meddler:"eth_addr"`
  51. TokenName string `meddler:"name"`
  52. TokenSymbol string `meddler:"symbol"`
  53. TokenDecimals uint64 `meddler:"decimals"`
  54. TokenUSD *float64 `meddler:"usd"`
  55. TokenUSDUpdate *time.Time `meddler:"usd_update"`
  56. }
  57. // MarshalJSON is used to neast some of the fields of TxAPI
  58. // without the need of auxiliar structs
  59. func (tx TxAPI) MarshalJSON() ([]byte, error) {
  60. jsonTx := map[string]interface{}{
  61. "id": tx.TxID,
  62. "itemId": tx.ItemID,
  63. "type": tx.Type,
  64. "position": tx.Position,
  65. "fromAccountIndex": tx.FromIdx,
  66. "fromHezEthereumAddress": tx.FromEthAddr,
  67. "fromBJJ": tx.FromBJJ,
  68. "toAccountIndex": tx.ToIdx,
  69. "toHezEthereumAddress": tx.ToEthAddr,
  70. "toBJJ": tx.ToBJJ,
  71. "amount": tx.Amount,
  72. "batchNum": tx.BatchNum,
  73. "historicUSD": tx.HistoricUSD,
  74. "timestamp": tx.Timestamp,
  75. "L1Info": nil,
  76. "L2Info": nil,
  77. "token": map[string]interface{}{
  78. "id": tx.TokenID,
  79. "itemId": tx.TokenItemID,
  80. "ethereumBlockNum": tx.TokenEthBlockNum,
  81. "ethereumAddress": tx.TokenEthAddr,
  82. "name": tx.TokenName,
  83. "symbol": tx.TokenSymbol,
  84. "decimals": tx.TokenDecimals,
  85. "USD": tx.TokenUSD,
  86. "fiatUpdate": tx.TokenUSDUpdate,
  87. },
  88. }
  89. if tx.IsL1 {
  90. jsonTx["L1orL2"] = "L1"
  91. amountSuccess := tx.AmountSuccess
  92. depositAmountSuccess := tx.DepositAmountSuccess
  93. if tx.BatchNum == nil {
  94. amountSuccess = false
  95. depositAmountSuccess = false
  96. }
  97. jsonTx["L1Info"] = map[string]interface{}{
  98. "toForgeL1TransactionsNum": tx.ToForgeL1TxsNum,
  99. "userOrigin": tx.UserOrigin,
  100. "depositAmount": tx.DepositAmount,
  101. "amountSuccess": amountSuccess,
  102. "depositAmountSuccess": depositAmountSuccess,
  103. "historicDepositAmountUSD": tx.HistoricDepositAmountUSD,
  104. "ethereumBlockNum": tx.EthBlockNum,
  105. }
  106. } else {
  107. jsonTx["L1orL2"] = "L2"
  108. jsonTx["L2Info"] = map[string]interface{}{
  109. "fee": tx.Fee,
  110. "historicFeeUSD": tx.HistoricFeeUSD,
  111. "nonce": tx.Nonce,
  112. }
  113. }
  114. return json.Marshal(jsonTx)
  115. }
  116. // txWrite is an representatiion that merges common.L1Tx and common.L2Tx
  117. // in order to perform inserts into tx table
  118. // EffectiveAmount and EffectiveDepositAmount are not set since they have default values in the DB
  119. type txWrite struct {
  120. // Generic
  121. IsL1 bool `meddler:"is_l1"`
  122. TxID common.TxID `meddler:"id"`
  123. Type common.TxType `meddler:"type"`
  124. Position int `meddler:"position"`
  125. FromIdx *common.Idx `meddler:"from_idx"`
  126. ToIdx common.Idx `meddler:"to_idx"`
  127. Amount *big.Int `meddler:"amount,bigint"`
  128. AmountFloat float64 `meddler:"amount_f"`
  129. TokenID common.TokenID `meddler:"token_id"`
  130. BatchNum *common.BatchNum `meddler:"batch_num"` // batchNum in which this tx was forged. If the tx is L2, this must be != 0
  131. EthBlockNum int64 `meddler:"eth_block_num"` // Ethereum Block Number in which this L1Tx was added to the queue
  132. // L1
  133. ToForgeL1TxsNum *int64 `meddler:"to_forge_l1_txs_num"` // toForgeL1TxsNum in which the tx was forged / will be forged
  134. UserOrigin *bool `meddler:"user_origin"` // true if the tx was originated by a user, false if it was aoriginated by a coordinator. Note that this differ from the spec for implementation simplification purpposes
  135. FromEthAddr *ethCommon.Address `meddler:"from_eth_addr"`
  136. FromBJJ *babyjub.PublicKeyComp `meddler:"from_bjj"`
  137. DepositAmount *big.Int `meddler:"deposit_amount,bigintnull"`
  138. DepositAmountFloat *float64 `meddler:"deposit_amount_f"`
  139. // L2
  140. Fee *common.FeeSelector `meddler:"fee"`
  141. Nonce *common.Nonce `meddler:"nonce"`
  142. }
  143. // TokenWithUSD add USD info to common.Token
  144. type TokenWithUSD struct {
  145. ItemID uint64 `json:"itemId" meddler:"item_id"`
  146. TokenID common.TokenID `json:"id" meddler:"token_id"`
  147. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"` // Ethereum block number in which this token was registered
  148. EthAddr ethCommon.Address `json:"ethereumAddress" meddler:"eth_addr"`
  149. Name string `json:"name" meddler:"name"`
  150. Symbol string `json:"symbol" meddler:"symbol"`
  151. Decimals uint64 `json:"decimals" meddler:"decimals"`
  152. USD *float64 `json:"USD" meddler:"usd"`
  153. USDUpdate *time.Time `json:"fiatUpdate" meddler:"usd_update,utctime"`
  154. TotalItems uint64 `json:"-" meddler:"total_items"`
  155. FirstItem uint64 `json:"-" meddler:"first_item"`
  156. LastItem uint64 `json:"-" meddler:"last_item"`
  157. }
  158. // ExitAPI is a representation of a exit with additional information
  159. // required by the API, and extracted by joining token table
  160. type ExitAPI struct {
  161. ItemID uint64 `meddler:"item_id"`
  162. BatchNum common.BatchNum `meddler:"batch_num"`
  163. AccountIdx apitypes.HezIdx `meddler:"account_idx"`
  164. MerkleProof *merkletree.CircomVerifierProof `meddler:"merkle_proof,json"`
  165. Balance apitypes.BigIntStr `meddler:"balance"`
  166. InstantWithdrawn *int64 `meddler:"instant_withdrawn"`
  167. DelayedWithdrawRequest *int64 `meddler:"delayed_withdraw_request"`
  168. DelayedWithdrawn *int64 `meddler:"delayed_withdrawn"`
  169. TotalItems uint64 `meddler:"total_items"`
  170. FirstItem uint64 `meddler:"first_item"`
  171. LastItem uint64 `meddler:"last_item"`
  172. TokenID common.TokenID `meddler:"token_id"`
  173. TokenItemID uint64 `meddler:"token_item_id"`
  174. TokenEthBlockNum int64 `meddler:"token_block"`
  175. TokenEthAddr ethCommon.Address `meddler:"eth_addr"`
  176. TokenName string `meddler:"name"`
  177. TokenSymbol string `meddler:"symbol"`
  178. TokenDecimals uint64 `meddler:"decimals"`
  179. TokenUSD *float64 `meddler:"usd"`
  180. TokenUSDUpdate *time.Time `meddler:"usd_update"`
  181. }
  182. // MarshalJSON is used to neast some of the fields of ExitAPI
  183. // without the need of auxiliar structs
  184. func (e ExitAPI) MarshalJSON() ([]byte, error) {
  185. return json.Marshal(map[string]interface{}{
  186. "itemId": e.ItemID,
  187. "batchNum": e.BatchNum,
  188. "accountIndex": e.AccountIdx,
  189. "merkleProof": e.MerkleProof,
  190. "balance": e.Balance,
  191. "instantWithdrawn": e.InstantWithdrawn,
  192. "delayedWithdrawRequest": e.DelayedWithdrawRequest,
  193. "delayedWithdrawn": e.DelayedWithdrawn,
  194. "token": map[string]interface{}{
  195. "id": e.TokenID,
  196. "itemId": e.TokenItemID,
  197. "ethereumBlockNum": e.TokenEthBlockNum,
  198. "ethereumAddress": e.TokenEthAddr,
  199. "name": e.TokenName,
  200. "symbol": e.TokenSymbol,
  201. "decimals": e.TokenDecimals,
  202. "USD": e.TokenUSD,
  203. "fiatUpdate": e.TokenUSDUpdate,
  204. },
  205. })
  206. }
  207. // CoordinatorAPI is a representation of a coordinator with additional information
  208. // required by the API
  209. type CoordinatorAPI struct {
  210. ItemID uint64 `json:"itemId" meddler:"item_id"`
  211. Bidder ethCommon.Address `json:"bidderAddr" meddler:"bidder_addr"`
  212. Forger ethCommon.Address `json:"forgerAddr" meddler:"forger_addr"`
  213. EthBlockNum int64 `json:"ethereumBlock" meddler:"eth_block_num"`
  214. URL string `json:"URL" meddler:"url"`
  215. TotalItems uint64 `json:"-" meddler:"total_items"`
  216. FirstItem uint64 `json:"-" meddler:"first_item"`
  217. LastItem uint64 `json:"-" meddler:"last_item"`
  218. }
  219. // AccountAPI is a representation of a account with additional information
  220. // required by the API
  221. type AccountAPI struct {
  222. ItemID uint64 `meddler:"item_id"`
  223. Idx apitypes.HezIdx `meddler:"idx"`
  224. BatchNum common.BatchNum `meddler:"batch_num"`
  225. PublicKey apitypes.HezBJJ `meddler:"bjj"`
  226. EthAddr apitypes.HezEthAddr `meddler:"eth_addr"`
  227. Nonce common.Nonce `meddler:"-"` // max of 40 bits used
  228. Balance *apitypes.BigIntStr `meddler:"-"` // max of 192 bits used
  229. TotalItems uint64 `meddler:"total_items"`
  230. FirstItem uint64 `meddler:"first_item"`
  231. LastItem uint64 `meddler:"last_item"`
  232. TokenID common.TokenID `meddler:"token_id"`
  233. TokenItemID int `meddler:"token_item_id"`
  234. TokenEthBlockNum int64 `meddler:"token_block"`
  235. TokenEthAddr ethCommon.Address `meddler:"token_eth_addr"`
  236. TokenName string `meddler:"name"`
  237. TokenSymbol string `meddler:"symbol"`
  238. TokenDecimals uint64 `meddler:"decimals"`
  239. TokenUSD *float64 `meddler:"usd"`
  240. TokenUSDUpdate *time.Time `meddler:"usd_update"`
  241. }
  242. // MarshalJSON is used to neast some of the fields of AccountAPI
  243. // without the need of auxiliar structs
  244. func (account AccountAPI) MarshalJSON() ([]byte, error) {
  245. jsonAccount := map[string]interface{}{
  246. "itemId": account.ItemID,
  247. "accountIndex": account.Idx,
  248. "nonce": account.Nonce,
  249. "balance": account.Balance,
  250. "bjj": account.PublicKey,
  251. "hezEthereumAddress": account.EthAddr,
  252. "token": map[string]interface{}{
  253. "id": account.TokenID,
  254. "itemId": account.TokenItemID,
  255. "ethereumBlockNum": account.TokenEthBlockNum,
  256. "ethereumAddress": account.TokenEthAddr,
  257. "name": account.TokenName,
  258. "symbol": account.TokenSymbol,
  259. "decimals": account.TokenDecimals,
  260. "USD": account.TokenUSD,
  261. "fiatUpdate": account.TokenUSDUpdate,
  262. },
  263. }
  264. return json.Marshal(jsonAccount)
  265. }
  266. // BatchAPI is a representation of a batch with additional information
  267. // required by the API, and extracted by joining block table
  268. type BatchAPI struct {
  269. ItemID uint64 `json:"itemId" meddler:"item_id"`
  270. BatchNum common.BatchNum `json:"batchNum" meddler:"batch_num"`
  271. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  272. EthBlockHash ethCommon.Hash `json:"ethereumBlockHash" meddler:"hash"`
  273. Timestamp time.Time `json:"timestamp" meddler:"timestamp,utctime"`
  274. ForgerAddr ethCommon.Address `json:"forgerAddr" meddler:"forger_addr"`
  275. CollectedFees apitypes.CollectedFees `json:"collectedFees" meddler:"fees_collected,json"`
  276. TotalFeesUSD *float64 `json:"historicTotalCollectedFeesUSD" meddler:"total_fees_usd"`
  277. StateRoot apitypes.BigIntStr `json:"stateRoot" meddler:"state_root"`
  278. NumAccounts int `json:"numAccounts" meddler:"num_accounts"`
  279. ExitRoot apitypes.BigIntStr `json:"exitRoot" meddler:"exit_root"`
  280. ForgeL1TxsNum *int64 `json:"forgeL1TransactionsNum" meddler:"forge_l1_txs_num"`
  281. SlotNum int64 `json:"slotNum" meddler:"slot_num"`
  282. TotalItems uint64 `json:"-" meddler:"total_items"`
  283. FirstItem uint64 `json:"-" meddler:"first_item"`
  284. LastItem uint64 `json:"-" meddler:"last_item"`
  285. }
  286. // Metrics define metrics of the network
  287. type Metrics struct {
  288. TransactionsPerBatch float64 `json:"transactionsPerBatch"`
  289. BatchFrequency float64 `json:"batchFrequency"`
  290. TransactionsPerSecond float64 `json:"transactionsPerSecond"`
  291. TotalAccounts int64 `json:"totalAccounts" meddler:"total_accounts"`
  292. TotalBJJs int64 `json:"totalBJJs" meddler:"total_bjjs"`
  293. AvgTransactionFee float64 `json:"avgTransactionFee"`
  294. }
  295. // MetricsTotals is used to get temporal information from HistoryDB
  296. // to calculate data to be stored into the Metrics struct
  297. type MetricsTotals struct {
  298. TotalTransactions uint64 `meddler:"total_txs"`
  299. FirstBatchNum common.BatchNum `meddler:"batch_num"`
  300. TotalBatches int64 `meddler:"total_batches"`
  301. TotalFeesUSD float64 `meddler:"total_fees"`
  302. }
  303. // BidAPI is a representation of a bid with additional information
  304. // required by the API
  305. type BidAPI struct {
  306. ItemID uint64 `json:"itemId" meddler:"item_id"`
  307. SlotNum int64 `json:"slotNum" meddler:"slot_num"`
  308. BidValue apitypes.BigIntStr `json:"bidValue" meddler:"bid_value"`
  309. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  310. Bidder ethCommon.Address `json:"bidderAddr" meddler:"bidder_addr"`
  311. Forger ethCommon.Address `json:"forgerAddr" meddler:"forger_addr"`
  312. URL string `json:"URL" meddler:"url"`
  313. Timestamp time.Time `json:"timestamp" meddler:"timestamp,utctime"`
  314. TotalItems uint64 `json:"-" meddler:"total_items"`
  315. FirstItem uint64 `json:"-" meddler:"first_item"`
  316. LastItem uint64 `json:"-" meddler:"last_item"`
  317. }