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.

103 lines
3.1 KiB

Redo coordinator structure, connect API to node - API: - Modify the constructor so that hardcoded rollup constants don't need to be passed (introduce a `Config` and use `configAPI` internally) - Common: - Update rollup constants with proper *big.Int when required - Add BidCoordinator and Slot structs used by the HistoryDB and Synchronizer. - Add helper methods to AuctionConstants - AuctionVariables: Add column `DefaultSlotSetBidSlotNum` (in the SQL table: `default_slot_set_bid_slot_num`), which indicates at which slotNum does the `DefaultSlotSetBid` specified starts applying. - Config: - Move coordinator exclusive configuration from the node config to the coordinator config - Coordinator: - Reorganize the code towards having the goroutines started and stopped from the coordinator itself instead of the node. - Remove all stop and stopped channels, and use context.Context and sync.WaitGroup instead. - Remove BatchInfo setters and assing variables directly - In ServerProof and ServerProofPool use context instead stop channel. - Use message passing to notify the coordinator about sync updates and reorgs - Introduce the Pipeline, which can be started and stopped by the Coordinator - Introduce the TxManager, which manages ethereum transactions (the TxManager is also in charge of making the forge call to the rollup smart contract). The TxManager keeps ethereum transactions and: 1. Waits for the transaction to be accepted 2. Waits for the transaction to be confirmed for N blocks - In forge logic, first prepare a batch and then wait for an available server proof to have all work ready once the proof server is ready. - Remove the `isForgeSequence` method which was querying the smart contract, and instead use notifications sent by the Synchronizer to figure out if it's forging time. - Update test (which is a minimal test to manually see if the coordinator starts) - HistoryDB: - Add method to get the number of batches in a slot (used to detect when a slot has passed the bid winner forging deadline) - Add method to get the best bid and associated coordinator of a slot (used to detect the forgerAddress that can forge the slot) - General: - Rename some instances of `currentBlock` to `lastBlock` to be more clear. - Node: - Connect the API to the node and call the methods to update cached state when the sync advances blocks. - Call methods to update Coordinator state when the sync advances blocks and finds reorgs. - Synchronizer: - Add Auction field in the Stats, which contain the current slot with info about highest bidder and other related info required to know who can forge in the current block. - Better organization of cached state: - On Sync, update the internal cached state - On Init or Reorg, load the state from HistoryDB into the internal cached state.
3 years ago
Redo coordinator structure, connect API to node - API: - Modify the constructor so that hardcoded rollup constants don't need to be passed (introduce a `Config` and use `configAPI` internally) - Common: - Update rollup constants with proper *big.Int when required - Add BidCoordinator and Slot structs used by the HistoryDB and Synchronizer. - Add helper methods to AuctionConstants - AuctionVariables: Add column `DefaultSlotSetBidSlotNum` (in the SQL table: `default_slot_set_bid_slot_num`), which indicates at which slotNum does the `DefaultSlotSetBid` specified starts applying. - Config: - Move coordinator exclusive configuration from the node config to the coordinator config - Coordinator: - Reorganize the code towards having the goroutines started and stopped from the coordinator itself instead of the node. - Remove all stop and stopped channels, and use context.Context and sync.WaitGroup instead. - Remove BatchInfo setters and assing variables directly - In ServerProof and ServerProofPool use context instead stop channel. - Use message passing to notify the coordinator about sync updates and reorgs - Introduce the Pipeline, which can be started and stopped by the Coordinator - Introduce the TxManager, which manages ethereum transactions (the TxManager is also in charge of making the forge call to the rollup smart contract). The TxManager keeps ethereum transactions and: 1. Waits for the transaction to be accepted 2. Waits for the transaction to be confirmed for N blocks - In forge logic, first prepare a batch and then wait for an available server proof to have all work ready once the proof server is ready. - Remove the `isForgeSequence` method which was querying the smart contract, and instead use notifications sent by the Synchronizer to figure out if it's forging time. - Update test (which is a minimal test to manually see if the coordinator starts) - HistoryDB: - Add method to get the number of batches in a slot (used to detect when a slot has passed the bid winner forging deadline) - Add method to get the best bid and associated coordinator of a slot (used to detect the forgerAddress that can forge the slot) - General: - Rename some instances of `currentBlock` to `lastBlock` to be more clear. - Node: - Connect the API to the node and call the methods to update cached state when the sync advances blocks. - Call methods to update Coordinator state when the sync advances blocks and finds reorgs. - Synchronizer: - Add Auction field in the Stats, which contain the current slot with info about highest bidder and other related info required to know who can forge in the current block. - Better organization of cached state: - On Sync, update the internal cached state - On Init or Reorg, load the state from HistoryDB into the internal cached state.
3 years ago
  1. package api
  2. import (
  3. "errors"
  4. "github.com/gin-gonic/gin"
  5. "github.com/hermeznetwork/hermez-node/common"
  6. "github.com/hermeznetwork/hermez-node/db/historydb"
  7. "github.com/hermeznetwork/hermez-node/db/l2db"
  8. "github.com/hermeznetwork/hermez-node/db/statedb"
  9. )
  10. // TODO: Add correct values to constants
  11. const (
  12. createAccountExtraFeePercentage float64 = 2
  13. createAccountInternalExtraFeePercentage float64 = 2.5
  14. )
  15. // Status define status of the network
  16. type Status struct {
  17. Network Network `json:"network"`
  18. Metrics historydb.Metrics `json:"metrics"`
  19. Rollup common.RollupVariables `json:"rollup"`
  20. Auction common.AuctionVariables `json:"auction"`
  21. WithdrawalDelayer common.WDelayerVariables `json:"withdrawalDelayer"`
  22. RecommendedFee common.RecommendedFee `json:"recommendedFee"`
  23. }
  24. // API serves HTTP requests to allow external interaction with the Hermez node
  25. type API struct {
  26. h *historydb.HistoryDB
  27. cg *configAPI
  28. s *statedb.StateDB
  29. l2 *l2db.L2DB
  30. status Status
  31. }
  32. // NewAPI sets the endpoints and the appropriate handlers, but doesn't start the server
  33. func NewAPI(
  34. coordinatorEndpoints, explorerEndpoints bool,
  35. server *gin.Engine,
  36. hdb *historydb.HistoryDB,
  37. sdb *statedb.StateDB,
  38. l2db *l2db.L2DB,
  39. config *Config,
  40. ) (*API, error) {
  41. // Check input
  42. // TODO: is stateDB only needed for explorer endpoints or for both?
  43. if coordinatorEndpoints && l2db == nil {
  44. return nil, errors.New("cannot serve Coordinator endpoints without L2DB")
  45. }
  46. if explorerEndpoints && hdb == nil {
  47. return nil, errors.New("cannot serve Explorer endpoints without HistoryDB")
  48. }
  49. a := &API{
  50. h: hdb,
  51. cg: &configAPI{
  52. RollupConstants: *newRollupConstants(config.RollupConstants),
  53. AuctionConstants: config.AuctionConstants,
  54. WDelayerConstants: config.WDelayerConstants,
  55. },
  56. s: sdb,
  57. l2: l2db,
  58. }
  59. // Add coordinator endpoints
  60. if coordinatorEndpoints {
  61. // Account
  62. server.POST("/account-creation-authorization", a.postAccountCreationAuth)
  63. server.GET("/account-creation-authorization/:hermezEthereumAddress", a.getAccountCreationAuth)
  64. // Transaction
  65. server.POST("/transactions-pool", a.postPoolTx)
  66. server.GET("/transactions-pool/:id", a.getPoolTx)
  67. }
  68. // Add explorer endpoints
  69. if explorerEndpoints {
  70. // Account
  71. server.GET("/accounts", a.getAccounts)
  72. server.GET("/accounts/:accountIndex", a.getAccount)
  73. server.GET("/exits", a.getExits)
  74. server.GET("/exits/:batchNum/:accountIndex", a.getExit)
  75. // Transaction
  76. server.GET("/transactions-history", a.getHistoryTxs)
  77. server.GET("/transactions-history/:id", a.getHistoryTx)
  78. // Status
  79. server.GET("/batches", a.getBatches)
  80. server.GET("/batches/:batchNum", a.getBatch)
  81. server.GET("/full-batches/:batchNum", a.getFullBatch)
  82. server.GET("/slots", a.getSlots)
  83. server.GET("/slots/:slotNum", a.getSlot)
  84. server.GET("/bids", a.getBids)
  85. server.GET("/state", a.getState)
  86. server.GET("/config", a.getConfig)
  87. server.GET("/tokens", a.getTokens)
  88. server.GET("/tokens/:id", a.getToken)
  89. server.GET("/coordinators", a.getCoordinators)
  90. server.GET("/coordinators/:bidderAddr", a.getCoordinator)
  91. }
  92. return a, nil
  93. }