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.

398 lines
20 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. EthAddr *apitypes.HezEthAddr `meddler:"eth_addr"`
  165. BJJ *apitypes.HezBJJ `meddler:"bjj"`
  166. MerkleProof *merkletree.CircomVerifierProof `meddler:"merkle_proof,json"`
  167. Balance apitypes.BigIntStr `meddler:"balance"`
  168. InstantWithdrawn *int64 `meddler:"instant_withdrawn"`
  169. DelayedWithdrawRequest *int64 `meddler:"delayed_withdraw_request"`
  170. DelayedWithdrawn *int64 `meddler:"delayed_withdrawn"`
  171. TotalItems uint64 `meddler:"total_items"`
  172. FirstItem uint64 `meddler:"first_item"`
  173. LastItem uint64 `meddler:"last_item"`
  174. TokenID common.TokenID `meddler:"token_id"`
  175. TokenItemID uint64 `meddler:"token_item_id"`
  176. TokenEthBlockNum int64 `meddler:"token_block"`
  177. TokenEthAddr ethCommon.Address `meddler:"token_eth_addr"`
  178. TokenName string `meddler:"name"`
  179. TokenSymbol string `meddler:"symbol"`
  180. TokenDecimals uint64 `meddler:"decimals"`
  181. TokenUSD *float64 `meddler:"usd"`
  182. TokenUSDUpdate *time.Time `meddler:"usd_update"`
  183. }
  184. // MarshalJSON is used to neast some of the fields of ExitAPI
  185. // without the need of auxiliar structs
  186. func (e ExitAPI) MarshalJSON() ([]byte, error) {
  187. return json.Marshal(map[string]interface{}{
  188. "itemId": e.ItemID,
  189. "batchNum": e.BatchNum,
  190. "accountIndex": e.AccountIdx,
  191. "bjj": e.BJJ,
  192. "hezEthereumAddress": e.EthAddr,
  193. "merkleProof": e.MerkleProof,
  194. "balance": e.Balance,
  195. "instantWithdraw": e.InstantWithdrawn,
  196. "delayedWithdrawRequest": e.DelayedWithdrawRequest,
  197. "delayedWithdraw": e.DelayedWithdrawn,
  198. "token": map[string]interface{}{
  199. "id": e.TokenID,
  200. "itemId": e.TokenItemID,
  201. "ethereumBlockNum": e.TokenEthBlockNum,
  202. "ethereumAddress": e.TokenEthAddr,
  203. "name": e.TokenName,
  204. "symbol": e.TokenSymbol,
  205. "decimals": e.TokenDecimals,
  206. "USD": e.TokenUSD,
  207. "fiatUpdate": e.TokenUSDUpdate,
  208. },
  209. })
  210. }
  211. // CoordinatorAPI is a representation of a coordinator with additional information
  212. // required by the API
  213. type CoordinatorAPI struct {
  214. ItemID uint64 `json:"itemId" meddler:"item_id"`
  215. Bidder ethCommon.Address `json:"bidderAddr" meddler:"bidder_addr"`
  216. Forger ethCommon.Address `json:"forgerAddr" meddler:"forger_addr"`
  217. EthBlockNum int64 `json:"ethereumBlock" meddler:"eth_block_num"`
  218. URL string `json:"URL" meddler:"url"`
  219. TotalItems uint64 `json:"-" meddler:"total_items"`
  220. FirstItem uint64 `json:"-" meddler:"first_item"`
  221. LastItem uint64 `json:"-" meddler:"last_item"`
  222. }
  223. // AccountAPI is a representation of a account with additional information
  224. // required by the API
  225. type AccountAPI struct {
  226. ItemID uint64 `meddler:"item_id"`
  227. Idx apitypes.HezIdx `meddler:"idx"`
  228. BatchNum common.BatchNum `meddler:"batch_num"`
  229. PublicKey apitypes.HezBJJ `meddler:"bjj"`
  230. EthAddr apitypes.HezEthAddr `meddler:"eth_addr"`
  231. Nonce common.Nonce `meddler:"-"` // max of 40 bits used
  232. Balance *apitypes.BigIntStr `meddler:"-"` // max of 192 bits used
  233. TotalItems uint64 `meddler:"total_items"`
  234. FirstItem uint64 `meddler:"first_item"`
  235. LastItem uint64 `meddler:"last_item"`
  236. TokenID common.TokenID `meddler:"token_id"`
  237. TokenItemID int `meddler:"token_item_id"`
  238. TokenEthBlockNum int64 `meddler:"token_block"`
  239. TokenEthAddr ethCommon.Address `meddler:"token_eth_addr"`
  240. TokenName string `meddler:"name"`
  241. TokenSymbol string `meddler:"symbol"`
  242. TokenDecimals uint64 `meddler:"decimals"`
  243. TokenUSD *float64 `meddler:"usd"`
  244. TokenUSDUpdate *time.Time `meddler:"usd_update"`
  245. }
  246. // MarshalJSON is used to neast some of the fields of AccountAPI
  247. // without the need of auxiliar structs
  248. func (account AccountAPI) MarshalJSON() ([]byte, error) {
  249. jsonAccount := map[string]interface{}{
  250. "itemId": account.ItemID,
  251. "accountIndex": account.Idx,
  252. "nonce": account.Nonce,
  253. "balance": account.Balance,
  254. "bjj": account.PublicKey,
  255. "hezEthereumAddress": account.EthAddr,
  256. "token": map[string]interface{}{
  257. "id": account.TokenID,
  258. "itemId": account.TokenItemID,
  259. "ethereumBlockNum": account.TokenEthBlockNum,
  260. "ethereumAddress": account.TokenEthAddr,
  261. "name": account.TokenName,
  262. "symbol": account.TokenSymbol,
  263. "decimals": account.TokenDecimals,
  264. "USD": account.TokenUSD,
  265. "fiatUpdate": account.TokenUSDUpdate,
  266. },
  267. }
  268. return json.Marshal(jsonAccount)
  269. }
  270. // BatchAPI is a representation of a batch with additional information
  271. // required by the API, and extracted by joining block table
  272. type BatchAPI struct {
  273. ItemID uint64 `json:"itemId" meddler:"item_id"`
  274. BatchNum common.BatchNum `json:"batchNum" meddler:"batch_num"`
  275. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  276. EthBlockHash ethCommon.Hash `json:"ethereumBlockHash" meddler:"hash"`
  277. Timestamp time.Time `json:"timestamp" meddler:"timestamp,utctime"`
  278. ForgerAddr ethCommon.Address `json:"forgerAddr" meddler:"forger_addr"`
  279. CollectedFees apitypes.CollectedFees `json:"collectedFees" meddler:"fees_collected,json"`
  280. TotalFeesUSD *float64 `json:"historicTotalCollectedFeesUSD" meddler:"total_fees_usd"`
  281. StateRoot apitypes.BigIntStr `json:"stateRoot" meddler:"state_root"`
  282. NumAccounts int `json:"numAccounts" meddler:"num_accounts"`
  283. ExitRoot apitypes.BigIntStr `json:"exitRoot" meddler:"exit_root"`
  284. ForgeL1TxsNum *int64 `json:"forgeL1TransactionsNum" meddler:"forge_l1_txs_num"`
  285. SlotNum int64 `json:"slotNum" meddler:"slot_num"`
  286. ForgedTxs int `json:"forgedTransactions" meddler:"forged_txs"`
  287. TotalItems uint64 `json:"-" meddler:"total_items"`
  288. FirstItem uint64 `json:"-" meddler:"first_item"`
  289. LastItem uint64 `json:"-" meddler:"last_item"`
  290. }
  291. // Metrics define metrics of the network
  292. type Metrics struct {
  293. TransactionsPerBatch float64 `json:"transactionsPerBatch"`
  294. BatchFrequency float64 `json:"batchFrequency"`
  295. TransactionsPerSecond float64 `json:"transactionsPerSecond"`
  296. TotalAccounts int64 `json:"totalAccounts" meddler:"total_accounts"`
  297. TotalBJJs int64 `json:"totalBJJs" meddler:"total_bjjs"`
  298. AvgTransactionFee float64 `json:"avgTransactionFee"`
  299. }
  300. // MetricsTotals is used to get temporal information from HistoryDB
  301. // to calculate data to be stored into the Metrics struct
  302. type MetricsTotals struct {
  303. TotalTransactions uint64 `meddler:"total_txs"`
  304. FirstBatchNum common.BatchNum `meddler:"batch_num"`
  305. TotalBatches int64 `meddler:"total_batches"`
  306. TotalFeesUSD float64 `meddler:"total_fees"`
  307. MinTimestamp time.Time `meddler:"min_timestamp,utctime"`
  308. MaxTimestamp time.Time `meddler:"max_timestamp,utctime"`
  309. }
  310. // BidAPI is a representation of a bid with additional information
  311. // required by the API
  312. type BidAPI struct {
  313. ItemID uint64 `json:"itemId" meddler:"item_id"`
  314. SlotNum int64 `json:"slotNum" meddler:"slot_num"`
  315. BidValue apitypes.BigIntStr `json:"bidValue" meddler:"bid_value"`
  316. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  317. Bidder ethCommon.Address `json:"bidderAddr" meddler:"bidder_addr"`
  318. Forger ethCommon.Address `json:"forgerAddr" meddler:"forger_addr"`
  319. URL string `json:"URL" meddler:"url"`
  320. Timestamp time.Time `json:"timestamp" meddler:"timestamp,utctime"`
  321. TotalItems uint64 `json:"-" meddler:"total_items"`
  322. FirstItem uint64 `json:"-" meddler:"first_item"`
  323. LastItem uint64 `json:"-" meddler:"last_item"`
  324. }
  325. // MinBidInfo gives information of the minum bid for specific slot(s)
  326. type MinBidInfo struct {
  327. DefaultSlotSetBid [6]*big.Int `json:"defaultSlotSetBid" meddler:"default_slot_set_bid,json" validate:"required"`
  328. DefaultSlotSetBidSlotNum int64 `json:"-" meddler:"default_slot_set_bid_slot_num"`
  329. }
  330. // BucketUpdateAPI are the bucket updates (tracking the withdrawals value changes)
  331. // in Rollup Smart Contract
  332. type BucketUpdateAPI struct {
  333. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  334. NumBucket int `json:"numBucket" meddler:"num_bucket"`
  335. BlockStamp int64 `json:"blockStamp" meddler:"block_stamp"`
  336. Withdrawals *apitypes.BigIntStr `json:"withdrawals" meddler:"withdrawals"`
  337. }
  338. // BucketParamsAPI are the parameter variables of each Bucket of Rollup Smart
  339. // Contract
  340. type BucketParamsAPI struct {
  341. CeilUSD *apitypes.BigIntStr `json:"ceilUSD"`
  342. Withdrawals *apitypes.BigIntStr `json:"withdrawals"`
  343. BlockWithdrawalRate *apitypes.BigIntStr `json:"blockWithdrawalRate"`
  344. MaxWithdrawals *apitypes.BigIntStr `json:"maxWithdrawals"`
  345. }
  346. // RollupVariablesAPI are the variables of the Rollup Smart Contract
  347. type RollupVariablesAPI struct {
  348. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  349. FeeAddToken *apitypes.BigIntStr `json:"feeAddToken" meddler:"fee_add_token" validate:"required"`
  350. ForgeL1L2BatchTimeout int64 `json:"forgeL1L2BatchTimeout" meddler:"forge_l1_timeout" validate:"required"`
  351. WithdrawalDelay uint64 `json:"withdrawalDelay" meddler:"withdrawal_delay" validate:"required"`
  352. Buckets [common.RollupConstNumBuckets]BucketParamsAPI `json:"buckets" meddler:"buckets,json"`
  353. SafeMode bool `json:"safeMode" meddler:"safe_mode"`
  354. }
  355. // AuctionVariablesAPI are the variables of the Auction Smart Contract
  356. type AuctionVariablesAPI struct {
  357. EthBlockNum int64 `json:"ethereumBlockNum" meddler:"eth_block_num"`
  358. // Donation Address
  359. DonationAddress ethCommon.Address `json:"donationAddress" meddler:"donation_address" validate:"required"`
  360. // Boot Coordinator Address
  361. BootCoordinator ethCommon.Address `json:"bootCoordinator" meddler:"boot_coordinator" validate:"required"`
  362. // Boot Coordinator URL
  363. BootCoordinatorURL string `json:"bootCoordinatorUrl" meddler:"boot_coordinator_url" validate:"required"`
  364. // The minimum bid value in a series of 6 slots
  365. DefaultSlotSetBid [6]*apitypes.BigIntStr `json:"defaultSlotSetBid" meddler:"default_slot_set_bid,json" validate:"required"`
  366. // SlotNum at which the new default_slot_set_bid applies
  367. DefaultSlotSetBidSlotNum int64 `json:"defaultSlotSetBidSlotNum" meddler:"default_slot_set_bid_slot_num"`
  368. // Distance (#slots) to the closest slot to which you can bid ( 2 Slots = 2 * 40 Blocks = 20 min )
  369. ClosedAuctionSlots uint16 `json:"closedAuctionSlots" meddler:"closed_auction_slots" validate:"required"`
  370. // Distance (#slots) to the farthest slot to which you can bid (30 days = 4320 slots )
  371. OpenAuctionSlots uint16 `json:"openAuctionSlots" meddler:"open_auction_slots" validate:"required"`
  372. // How the HEZ tokens deposited by the slot winner are distributed (Burn: 40% - Donation: 40% - HGT: 20%)
  373. AllocationRatio [3]uint16 `json:"allocationRatio" meddler:"allocation_ratio,json" validate:"required"`
  374. // Minimum outbid (percentage) over the previous one to consider it valid
  375. Outbidding uint16 `json:"outbidding" meddler:"outbidding" validate:"required"`
  376. // Number of blocks at the end of a slot in which any coordinator can forge if the winner has not forged one before
  377. SlotDeadline uint8 `json:"slotDeadline" meddler:"slot_deadline" validate:"required"`
  378. }