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.

96 lines
2.9 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. [API]
  2. Address = "localhost:8086"
  3. Explorer = true
  4. [Debug]
  5. APIAddress = "localhost:12345"
  6. [StateDB]
  7. Path = "/tmp/iden3-test/hermez/statedb"
  8. [PostgreSQL]
  9. Port = 5432
  10. Host = "localhost"
  11. User = "hermez"
  12. Password = "yourpasswordhere"
  13. Name = "hermez"
  14. [Web3]
  15. URL = "http://localhost:8545"
  16. [Synchronizer]
  17. SyncLoopInterval = "1s"
  18. StatsRefreshPeriod = "1s"
  19. [Synchronizer.StartBlockNum]
  20. Rollup = 1
  21. Auction = 1
  22. WDelayer = 1
  23. [SmartContracts]
  24. Rollup = "0x6F4e99522F4eB37e0B73D0C0373147893EF12fD5"
  25. Auction = "0x5E0816F0f8bC560cB2B9e9C87187BeCac8c2021F"
  26. WDelayer = "0x5D94e3e7aeC542aB0F9129B9a7BAdeb5B3Ca0f77"
  27. TokenHEZ = "0x2b7dEe2CF60484325716A1c6A193519c8c3b19F3"
  28. TokenHEZName = "Hermez Network Token"
  29. [Synchronizer.InitialVariables.Auction]
  30. DonationAddress = "0x0000000000000000000000000000000000000001"
  31. BootCoordinator = "0xb4124cEB3451635DAcedd11767f004d8a28c6eE7"
  32. DefaultSlotSetBid = [
  33. "10000000000000000000",
  34. "10000000000000000000",
  35. "10000000000000000000",
  36. "10000000000000000000",
  37. "10000000000000000000",
  38. "10000000000000000000",
  39. ]
  40. ClosedAuctionSlots = 2
  41. OpenAuctionSlots = 4320
  42. AllocationRatio = [4000, 4000, 2000]
  43. Outbidding = 1000
  44. SlotDeadline = 20
  45. [Synchronizer.InitialVariables.WDelayer]
  46. # HermezRollupAddress =
  47. HermezGovernanceDAOAddress = "0x0000000000000000000000000000000000000001"
  48. WhiteHackGroupAddress = "0x0000000000000000000000000000000000000001"
  49. HermezKeeperAddress = "0x0000000000000000000000000000000000000001"
  50. WithdrawalDelay = 60
  51. EmergencyModeStartingTime = 0
  52. EmergencyMode = false
  53. [Synchronizer.InitialVariables.Rollup]
  54. FeeAddToken = "10"
  55. ForgeL1L2BatchTimeout = 10
  56. WithdrawalDelay = 1209600 # 60 * 60 * 24 * 7 * 2
  57. # [[Synchronizer.InitialVariables.Rollup.Buckets]]
  58. # CeilUSD = 0
  59. # BlockStamp = 0
  60. # Withdrawals = 0
  61. # BlockWithdrawalRate = 0
  62. # MaxWithdrawals = 0
  63. # [[Synchronizer.InitialVariables.Rollup.Buckets]]
  64. # CeilUSD = 0
  65. # BlockStamp = 0
  66. # Withdrawals = 0
  67. # BlockWithdrawalRate = 0
  68. # MaxWithdrawals = 0
  69. # [[Synchronizer.InitialVariables.Rollup.Buckets]]
  70. # CeilUSD = 0
  71. # BlockStamp = 0
  72. # Withdrawals = 0
  73. # BlockWithdrawalRate = 0
  74. # MaxWithdrawals = 0
  75. # [[Synchronizer.InitialVariables.Rollup.Buckets]]
  76. # CeilUSD = 0
  77. # BlockStamp = 0
  78. # Withdrawals = 0
  79. # BlockWithdrawalRate = 0
  80. # MaxWithdrawals = 0
  81. # [[Synchronizer.InitialVariables.Rollup.Buckets]]
  82. # CeilUSD = 0
  83. # BlockStamp = 0
  84. # Withdrawals = 0
  85. # BlockWithdrawalRate = 0
  86. # MaxWithdrawals = 0