@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (241) hide show
  1. package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
  2. package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
  3. package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
  4. package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
  5. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.dbg.json +4 -0
  6. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.json +80 -0
  7. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
  8. package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
  9. package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
  10. package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
  11. package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
  12. package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
  13. package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
  14. package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
  15. package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.dbg.json +4 -0
  16. package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +160 -0
  17. package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.dbg.json +4 -0
  18. package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +155 -0
  19. package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.dbg.json +4 -0
  20. package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.json +100 -0
  21. package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
  22. package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
  23. package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
  24. package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
  25. package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
  26. package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
  27. package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
  28. package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +63 -0
  29. package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
  30. package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +10 -0
  31. package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +4 -0
  32. package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +50 -0
  33. package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
  34. package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
  35. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
  36. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
  37. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
  38. package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +10 -0
  39. package/build/contracts/src/bridge/Bridge.sol/Bridge.dbg.json +4 -0
  40. package/build/contracts/src/bridge/Bridge.sol/Bridge.json +650 -0
  41. package/build/contracts/src/bridge/IBridge.sol/IBridge.dbg.json +4 -0
  42. package/build/contracts/src/bridge/IBridge.sol/IBridge.json +538 -0
  43. package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.dbg.json +4 -0
  44. package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.json +43 -0
  45. package/build/contracts/src/bridge/IInbox.sol/IInbox.dbg.json +4 -0
  46. package/build/contracts/src/bridge/IInbox.sol/IInbox.json +575 -0
  47. package/build/contracts/src/bridge/IOutbox.sol/IOutbox.dbg.json +4 -0
  48. package/build/contracts/src/bridge/IOutbox.sol/IOutbox.json +419 -0
  49. package/build/contracts/src/bridge/IOwnable.sol/IOwnable.dbg.json +4 -0
  50. package/build/contracts/src/bridge/IOwnable.sol/IOwnable.json +24 -0
  51. package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.dbg.json +4 -0
  52. package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.json +651 -0
  53. package/build/contracts/src/bridge/Inbox.sol/Inbox.dbg.json +4 -0
  54. package/build/contracts/src/bridge/Inbox.sol/Inbox.json +954 -0
  55. package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
  56. package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
  57. package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
  58. package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
  59. package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
  60. package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
  61. package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
  62. package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
  63. package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
  64. package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
  65. package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
  66. package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
  67. package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
  68. package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
  69. package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
  70. package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
  71. package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
  72. package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
  73. package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
  74. package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
  75. package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.dbg.json +4 -0
  76. package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.json +10 -0
  77. package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
  78. package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
  79. package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
  80. package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
  81. package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
  82. package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
  83. package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
  84. package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
  85. package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
  86. package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
  87. package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
  88. package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
  89. package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
  90. package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
  91. package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
  92. package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
  93. package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
  94. package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
  95. package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
  96. package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
  97. package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
  98. package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
  99. package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
  100. package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
  101. package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
  102. package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
  103. package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
  104. package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
  105. package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
  106. package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
  107. package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
  108. package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
  109. package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
  110. package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
  111. package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
  112. package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
  113. package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
  114. package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
  115. package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
  116. package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
  117. package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
  118. package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
  119. package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
  120. package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
  121. package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
  122. package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
  123. package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
  124. package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
  125. package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
  126. package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
  127. package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
  128. package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
  129. package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
  130. package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
  131. package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
  132. package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
  133. package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
  134. package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
  135. package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
  136. package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
  137. package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
  138. package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
  139. package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
  140. package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
  141. package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
  142. package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
  143. package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
  144. package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +350 -0
  145. package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
  146. package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
  147. package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
  148. package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
  149. package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
  150. package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +95 -0
  151. package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
  152. package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
  153. package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
  154. package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
  155. package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
  156. package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
  157. package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
  158. package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
  159. package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
  160. package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
  161. package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
  162. package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
  163. package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.dbg.json +4 -0
  164. package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.json +128 -0
  165. package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
  166. package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
  167. package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
  168. package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
  169. package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
  170. package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
  171. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
  172. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
  173. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
  174. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
  175. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
  176. package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
  177. package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
  178. package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
  179. package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
  180. package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
  181. package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
  182. package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
  183. package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
  184. package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +383 -0
  185. package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
  186. package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
  187. package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
  188. package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
  189. package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
  190. package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
  191. package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
  192. package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
  193. package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
  194. package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
  195. package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
  196. package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
  197. package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
  198. package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
  199. package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
  200. package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
  201. package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
  202. package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
  203. package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
  204. package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
  205. package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
  206. package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
  207. package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
  208. package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
  209. package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
  210. package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
  211. package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
  212. package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
  213. package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
  214. package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
  215. package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
  216. package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
  217. package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
  218. package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
  219. package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
  220. package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
  221. package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
  222. package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
  223. package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
  224. package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
  225. package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
  226. package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
  227. package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
  228. package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
  229. package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
  230. package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
  231. package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
  232. package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
  233. package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
  234. package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
  235. package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
  236. package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
  237. package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
  238. package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
  239. package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
  240. package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
  241. package/package.json +4 -2
@@ -0,0 +1,1309 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IRollupUserAbs",
4
+ "sourceName": "src/rollup/IRollupLogic.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": true,
11
+ "internalType": "uint64",
12
+ "name": "nodeNum",
13
+ "type": "uint64"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "bytes32",
18
+ "name": "blockHash",
19
+ "type": "bytes32"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "bytes32",
24
+ "name": "sendRoot",
25
+ "type": "bytes32"
26
+ }
27
+ ],
28
+ "name": "NodeConfirmed",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "anonymous": false,
33
+ "inputs": [
34
+ {
35
+ "indexed": true,
36
+ "internalType": "uint64",
37
+ "name": "nodeNum",
38
+ "type": "uint64"
39
+ },
40
+ {
41
+ "indexed": true,
42
+ "internalType": "bytes32",
43
+ "name": "parentNodeHash",
44
+ "type": "bytes32"
45
+ },
46
+ {
47
+ "indexed": true,
48
+ "internalType": "bytes32",
49
+ "name": "nodeHash",
50
+ "type": "bytes32"
51
+ },
52
+ {
53
+ "indexed": false,
54
+ "internalType": "bytes32",
55
+ "name": "executionHash",
56
+ "type": "bytes32"
57
+ },
58
+ {
59
+ "components": [
60
+ {
61
+ "components": [
62
+ {
63
+ "components": [
64
+ {
65
+ "internalType": "bytes32[2]",
66
+ "name": "bytes32Vals",
67
+ "type": "bytes32[2]"
68
+ },
69
+ {
70
+ "internalType": "uint64[2]",
71
+ "name": "u64Vals",
72
+ "type": "uint64[2]"
73
+ }
74
+ ],
75
+ "internalType": "struct GlobalState",
76
+ "name": "globalState",
77
+ "type": "tuple"
78
+ },
79
+ {
80
+ "internalType": "enum MachineStatus",
81
+ "name": "machineStatus",
82
+ "type": "uint8"
83
+ }
84
+ ],
85
+ "internalType": "struct ExecutionState",
86
+ "name": "beforeState",
87
+ "type": "tuple"
88
+ },
89
+ {
90
+ "components": [
91
+ {
92
+ "components": [
93
+ {
94
+ "internalType": "bytes32[2]",
95
+ "name": "bytes32Vals",
96
+ "type": "bytes32[2]"
97
+ },
98
+ {
99
+ "internalType": "uint64[2]",
100
+ "name": "u64Vals",
101
+ "type": "uint64[2]"
102
+ }
103
+ ],
104
+ "internalType": "struct GlobalState",
105
+ "name": "globalState",
106
+ "type": "tuple"
107
+ },
108
+ {
109
+ "internalType": "enum MachineStatus",
110
+ "name": "machineStatus",
111
+ "type": "uint8"
112
+ }
113
+ ],
114
+ "internalType": "struct ExecutionState",
115
+ "name": "afterState",
116
+ "type": "tuple"
117
+ },
118
+ {
119
+ "internalType": "uint64",
120
+ "name": "numBlocks",
121
+ "type": "uint64"
122
+ }
123
+ ],
124
+ "indexed": false,
125
+ "internalType": "struct Assertion",
126
+ "name": "assertion",
127
+ "type": "tuple"
128
+ },
129
+ {
130
+ "indexed": false,
131
+ "internalType": "bytes32",
132
+ "name": "afterInboxBatchAcc",
133
+ "type": "bytes32"
134
+ },
135
+ {
136
+ "indexed": false,
137
+ "internalType": "bytes32",
138
+ "name": "wasmModuleRoot",
139
+ "type": "bytes32"
140
+ },
141
+ {
142
+ "indexed": false,
143
+ "internalType": "uint256",
144
+ "name": "inboxMaxCount",
145
+ "type": "uint256"
146
+ }
147
+ ],
148
+ "name": "NodeCreated",
149
+ "type": "event"
150
+ },
151
+ {
152
+ "anonymous": false,
153
+ "inputs": [
154
+ {
155
+ "indexed": true,
156
+ "internalType": "uint64",
157
+ "name": "nodeNum",
158
+ "type": "uint64"
159
+ }
160
+ ],
161
+ "name": "NodeRejected",
162
+ "type": "event"
163
+ },
164
+ {
165
+ "anonymous": false,
166
+ "inputs": [
167
+ {
168
+ "indexed": true,
169
+ "internalType": "uint64",
170
+ "name": "challengeIndex",
171
+ "type": "uint64"
172
+ },
173
+ {
174
+ "indexed": false,
175
+ "internalType": "address",
176
+ "name": "asserter",
177
+ "type": "address"
178
+ },
179
+ {
180
+ "indexed": false,
181
+ "internalType": "address",
182
+ "name": "challenger",
183
+ "type": "address"
184
+ },
185
+ {
186
+ "indexed": false,
187
+ "internalType": "uint64",
188
+ "name": "challengedNode",
189
+ "type": "uint64"
190
+ }
191
+ ],
192
+ "name": "RollupChallengeStarted",
193
+ "type": "event"
194
+ },
195
+ {
196
+ "anonymous": false,
197
+ "inputs": [
198
+ {
199
+ "indexed": false,
200
+ "internalType": "bytes32",
201
+ "name": "machineHash",
202
+ "type": "bytes32"
203
+ },
204
+ {
205
+ "indexed": false,
206
+ "internalType": "uint256",
207
+ "name": "chainId",
208
+ "type": "uint256"
209
+ }
210
+ ],
211
+ "name": "RollupInitialized",
212
+ "type": "event"
213
+ },
214
+ {
215
+ "anonymous": false,
216
+ "inputs": [
217
+ {
218
+ "indexed": true,
219
+ "internalType": "address",
220
+ "name": "user",
221
+ "type": "address"
222
+ },
223
+ {
224
+ "indexed": false,
225
+ "internalType": "uint256",
226
+ "name": "initialBalance",
227
+ "type": "uint256"
228
+ },
229
+ {
230
+ "indexed": false,
231
+ "internalType": "uint256",
232
+ "name": "finalBalance",
233
+ "type": "uint256"
234
+ }
235
+ ],
236
+ "name": "UserStakeUpdated",
237
+ "type": "event"
238
+ },
239
+ {
240
+ "anonymous": false,
241
+ "inputs": [
242
+ {
243
+ "indexed": true,
244
+ "internalType": "address",
245
+ "name": "user",
246
+ "type": "address"
247
+ },
248
+ {
249
+ "indexed": false,
250
+ "internalType": "uint256",
251
+ "name": "initialBalance",
252
+ "type": "uint256"
253
+ },
254
+ {
255
+ "indexed": false,
256
+ "internalType": "uint256",
257
+ "name": "finalBalance",
258
+ "type": "uint256"
259
+ }
260
+ ],
261
+ "name": "UserWithdrawableFundsUpdated",
262
+ "type": "event"
263
+ },
264
+ {
265
+ "inputs": [
266
+ {
267
+ "internalType": "address",
268
+ "name": "staker",
269
+ "type": "address"
270
+ }
271
+ ],
272
+ "name": "amountStaked",
273
+ "outputs": [
274
+ {
275
+ "internalType": "uint256",
276
+ "name": "",
277
+ "type": "uint256"
278
+ }
279
+ ],
280
+ "stateMutability": "view",
281
+ "type": "function"
282
+ },
283
+ {
284
+ "inputs": [],
285
+ "name": "baseStake",
286
+ "outputs": [
287
+ {
288
+ "internalType": "uint256",
289
+ "name": "",
290
+ "type": "uint256"
291
+ }
292
+ ],
293
+ "stateMutability": "view",
294
+ "type": "function"
295
+ },
296
+ {
297
+ "inputs": [],
298
+ "name": "bridge",
299
+ "outputs": [
300
+ {
301
+ "internalType": "contract IBridge",
302
+ "name": "",
303
+ "type": "address"
304
+ }
305
+ ],
306
+ "stateMutability": "view",
307
+ "type": "function"
308
+ },
309
+ {
310
+ "inputs": [],
311
+ "name": "chainId",
312
+ "outputs": [
313
+ {
314
+ "internalType": "uint256",
315
+ "name": "",
316
+ "type": "uint256"
317
+ }
318
+ ],
319
+ "stateMutability": "view",
320
+ "type": "function"
321
+ },
322
+ {
323
+ "inputs": [],
324
+ "name": "challengeManager",
325
+ "outputs": [
326
+ {
327
+ "internalType": "contract IChallengeManager",
328
+ "name": "",
329
+ "type": "address"
330
+ }
331
+ ],
332
+ "stateMutability": "view",
333
+ "type": "function"
334
+ },
335
+ {
336
+ "inputs": [
337
+ {
338
+ "internalType": "bytes32",
339
+ "name": "blockHash",
340
+ "type": "bytes32"
341
+ },
342
+ {
343
+ "internalType": "bytes32",
344
+ "name": "sendRoot",
345
+ "type": "bytes32"
346
+ }
347
+ ],
348
+ "name": "confirmNextNode",
349
+ "outputs": [],
350
+ "stateMutability": "nonpayable",
351
+ "type": "function"
352
+ },
353
+ {
354
+ "inputs": [],
355
+ "name": "confirmPeriodBlocks",
356
+ "outputs": [
357
+ {
358
+ "internalType": "uint64",
359
+ "name": "",
360
+ "type": "uint64"
361
+ }
362
+ ],
363
+ "stateMutability": "view",
364
+ "type": "function"
365
+ },
366
+ {
367
+ "inputs": [
368
+ {
369
+ "internalType": "uint64",
370
+ "name": "nodeNum",
371
+ "type": "uint64"
372
+ }
373
+ ],
374
+ "name": "countStakedZombies",
375
+ "outputs": [
376
+ {
377
+ "internalType": "uint256",
378
+ "name": "",
379
+ "type": "uint256"
380
+ }
381
+ ],
382
+ "stateMutability": "view",
383
+ "type": "function"
384
+ },
385
+ {
386
+ "inputs": [
387
+ {
388
+ "internalType": "uint64",
389
+ "name": "nodeNum",
390
+ "type": "uint64"
391
+ }
392
+ ],
393
+ "name": "countZombiesStakedOnChildren",
394
+ "outputs": [
395
+ {
396
+ "internalType": "uint256",
397
+ "name": "",
398
+ "type": "uint256"
399
+ }
400
+ ],
401
+ "stateMutability": "view",
402
+ "type": "function"
403
+ },
404
+ {
405
+ "inputs": [
406
+ {
407
+ "internalType": "address[2]",
408
+ "name": "stakers",
409
+ "type": "address[2]"
410
+ },
411
+ {
412
+ "internalType": "uint64[2]",
413
+ "name": "nodeNums",
414
+ "type": "uint64[2]"
415
+ },
416
+ {
417
+ "internalType": "enum MachineStatus[2]",
418
+ "name": "machineStatuses",
419
+ "type": "uint8[2]"
420
+ },
421
+ {
422
+ "components": [
423
+ {
424
+ "internalType": "bytes32[2]",
425
+ "name": "bytes32Vals",
426
+ "type": "bytes32[2]"
427
+ },
428
+ {
429
+ "internalType": "uint64[2]",
430
+ "name": "u64Vals",
431
+ "type": "uint64[2]"
432
+ }
433
+ ],
434
+ "internalType": "struct GlobalState[2]",
435
+ "name": "globalStates",
436
+ "type": "tuple[2]"
437
+ },
438
+ {
439
+ "internalType": "uint64",
440
+ "name": "numBlocks",
441
+ "type": "uint64"
442
+ },
443
+ {
444
+ "internalType": "bytes32",
445
+ "name": "secondExecutionHash",
446
+ "type": "bytes32"
447
+ },
448
+ {
449
+ "internalType": "uint256[2]",
450
+ "name": "proposedTimes",
451
+ "type": "uint256[2]"
452
+ },
453
+ {
454
+ "internalType": "bytes32[2]",
455
+ "name": "wasmModuleRoots",
456
+ "type": "bytes32[2]"
457
+ }
458
+ ],
459
+ "name": "createChallenge",
460
+ "outputs": [],
461
+ "stateMutability": "nonpayable",
462
+ "type": "function"
463
+ },
464
+ {
465
+ "inputs": [
466
+ {
467
+ "internalType": "address",
468
+ "name": "staker",
469
+ "type": "address"
470
+ }
471
+ ],
472
+ "name": "currentChallenge",
473
+ "outputs": [
474
+ {
475
+ "internalType": "uint64",
476
+ "name": "",
477
+ "type": "uint64"
478
+ }
479
+ ],
480
+ "stateMutability": "view",
481
+ "type": "function"
482
+ },
483
+ {
484
+ "inputs": [],
485
+ "name": "currentRequiredStake",
486
+ "outputs": [
487
+ {
488
+ "internalType": "uint256",
489
+ "name": "",
490
+ "type": "uint256"
491
+ }
492
+ ],
493
+ "stateMutability": "view",
494
+ "type": "function"
495
+ },
496
+ {
497
+ "inputs": [],
498
+ "name": "extraChallengeTimeBlocks",
499
+ "outputs": [
500
+ {
501
+ "internalType": "uint64",
502
+ "name": "",
503
+ "type": "uint64"
504
+ }
505
+ ],
506
+ "stateMutability": "view",
507
+ "type": "function"
508
+ },
509
+ {
510
+ "inputs": [],
511
+ "name": "firstUnresolvedNode",
512
+ "outputs": [
513
+ {
514
+ "internalType": "uint64",
515
+ "name": "",
516
+ "type": "uint64"
517
+ }
518
+ ],
519
+ "stateMutability": "view",
520
+ "type": "function"
521
+ },
522
+ {
523
+ "inputs": [
524
+ {
525
+ "internalType": "uint64",
526
+ "name": "nodeNum",
527
+ "type": "uint64"
528
+ }
529
+ ],
530
+ "name": "getNode",
531
+ "outputs": [
532
+ {
533
+ "components": [
534
+ {
535
+ "internalType": "bytes32",
536
+ "name": "stateHash",
537
+ "type": "bytes32"
538
+ },
539
+ {
540
+ "internalType": "bytes32",
541
+ "name": "challengeHash",
542
+ "type": "bytes32"
543
+ },
544
+ {
545
+ "internalType": "bytes32",
546
+ "name": "confirmData",
547
+ "type": "bytes32"
548
+ },
549
+ {
550
+ "internalType": "uint64",
551
+ "name": "prevNum",
552
+ "type": "uint64"
553
+ },
554
+ {
555
+ "internalType": "uint64",
556
+ "name": "deadlineBlock",
557
+ "type": "uint64"
558
+ },
559
+ {
560
+ "internalType": "uint64",
561
+ "name": "noChildConfirmedBeforeBlock",
562
+ "type": "uint64"
563
+ },
564
+ {
565
+ "internalType": "uint64",
566
+ "name": "stakerCount",
567
+ "type": "uint64"
568
+ },
569
+ {
570
+ "internalType": "uint64",
571
+ "name": "childStakerCount",
572
+ "type": "uint64"
573
+ },
574
+ {
575
+ "internalType": "uint64",
576
+ "name": "firstChildBlock",
577
+ "type": "uint64"
578
+ },
579
+ {
580
+ "internalType": "uint64",
581
+ "name": "latestChildNumber",
582
+ "type": "uint64"
583
+ },
584
+ {
585
+ "internalType": "uint64",
586
+ "name": "createdAtBlock",
587
+ "type": "uint64"
588
+ },
589
+ {
590
+ "internalType": "bytes32",
591
+ "name": "nodeHash",
592
+ "type": "bytes32"
593
+ }
594
+ ],
595
+ "internalType": "struct Node",
596
+ "name": "",
597
+ "type": "tuple"
598
+ }
599
+ ],
600
+ "stateMutability": "view",
601
+ "type": "function"
602
+ },
603
+ {
604
+ "inputs": [
605
+ {
606
+ "internalType": "uint64",
607
+ "name": "nodeNum",
608
+ "type": "uint64"
609
+ }
610
+ ],
611
+ "name": "getNodeCreationBlockForLogLookup",
612
+ "outputs": [
613
+ {
614
+ "internalType": "uint256",
615
+ "name": "",
616
+ "type": "uint256"
617
+ }
618
+ ],
619
+ "stateMutability": "view",
620
+ "type": "function"
621
+ },
622
+ {
623
+ "inputs": [
624
+ {
625
+ "internalType": "address",
626
+ "name": "staker",
627
+ "type": "address"
628
+ }
629
+ ],
630
+ "name": "getStaker",
631
+ "outputs": [
632
+ {
633
+ "components": [
634
+ {
635
+ "internalType": "uint256",
636
+ "name": "amountStaked",
637
+ "type": "uint256"
638
+ },
639
+ {
640
+ "internalType": "uint64",
641
+ "name": "index",
642
+ "type": "uint64"
643
+ },
644
+ {
645
+ "internalType": "uint64",
646
+ "name": "latestStakedNode",
647
+ "type": "uint64"
648
+ },
649
+ {
650
+ "internalType": "uint64",
651
+ "name": "currentChallenge",
652
+ "type": "uint64"
653
+ },
654
+ {
655
+ "internalType": "bool",
656
+ "name": "isStaked",
657
+ "type": "bool"
658
+ }
659
+ ],
660
+ "internalType": "struct IRollupCore.Staker",
661
+ "name": "",
662
+ "type": "tuple"
663
+ }
664
+ ],
665
+ "stateMutability": "view",
666
+ "type": "function"
667
+ },
668
+ {
669
+ "inputs": [
670
+ {
671
+ "internalType": "uint64",
672
+ "name": "stakerNum",
673
+ "type": "uint64"
674
+ }
675
+ ],
676
+ "name": "getStakerAddress",
677
+ "outputs": [
678
+ {
679
+ "internalType": "address",
680
+ "name": "",
681
+ "type": "address"
682
+ }
683
+ ],
684
+ "stateMutability": "view",
685
+ "type": "function"
686
+ },
687
+ {
688
+ "inputs": [
689
+ {
690
+ "internalType": "address",
691
+ "name": "stakeToken",
692
+ "type": "address"
693
+ }
694
+ ],
695
+ "name": "initialize",
696
+ "outputs": [],
697
+ "stateMutability": "view",
698
+ "type": "function"
699
+ },
700
+ {
701
+ "inputs": [],
702
+ "name": "isERC20Enabled",
703
+ "outputs": [
704
+ {
705
+ "internalType": "bool",
706
+ "name": "",
707
+ "type": "bool"
708
+ }
709
+ ],
710
+ "stateMutability": "view",
711
+ "type": "function"
712
+ },
713
+ {
714
+ "inputs": [
715
+ {
716
+ "internalType": "address",
717
+ "name": "staker",
718
+ "type": "address"
719
+ }
720
+ ],
721
+ "name": "isStaked",
722
+ "outputs": [
723
+ {
724
+ "internalType": "bool",
725
+ "name": "",
726
+ "type": "bool"
727
+ }
728
+ ],
729
+ "stateMutability": "view",
730
+ "type": "function"
731
+ },
732
+ {
733
+ "inputs": [
734
+ {
735
+ "internalType": "address",
736
+ "name": "",
737
+ "type": "address"
738
+ }
739
+ ],
740
+ "name": "isValidator",
741
+ "outputs": [
742
+ {
743
+ "internalType": "bool",
744
+ "name": "",
745
+ "type": "bool"
746
+ }
747
+ ],
748
+ "stateMutability": "view",
749
+ "type": "function"
750
+ },
751
+ {
752
+ "inputs": [
753
+ {
754
+ "internalType": "address",
755
+ "name": "staker",
756
+ "type": "address"
757
+ }
758
+ ],
759
+ "name": "isZombie",
760
+ "outputs": [
761
+ {
762
+ "internalType": "bool",
763
+ "name": "",
764
+ "type": "bool"
765
+ }
766
+ ],
767
+ "stateMutability": "view",
768
+ "type": "function"
769
+ },
770
+ {
771
+ "inputs": [],
772
+ "name": "lastStakeBlock",
773
+ "outputs": [
774
+ {
775
+ "internalType": "uint64",
776
+ "name": "",
777
+ "type": "uint64"
778
+ }
779
+ ],
780
+ "stateMutability": "view",
781
+ "type": "function"
782
+ },
783
+ {
784
+ "inputs": [],
785
+ "name": "latestConfirmed",
786
+ "outputs": [
787
+ {
788
+ "internalType": "uint64",
789
+ "name": "",
790
+ "type": "uint64"
791
+ }
792
+ ],
793
+ "stateMutability": "view",
794
+ "type": "function"
795
+ },
796
+ {
797
+ "inputs": [],
798
+ "name": "latestNodeCreated",
799
+ "outputs": [
800
+ {
801
+ "internalType": "uint64",
802
+ "name": "",
803
+ "type": "uint64"
804
+ }
805
+ ],
806
+ "stateMutability": "view",
807
+ "type": "function"
808
+ },
809
+ {
810
+ "inputs": [
811
+ {
812
+ "internalType": "address",
813
+ "name": "staker",
814
+ "type": "address"
815
+ }
816
+ ],
817
+ "name": "latestStakedNode",
818
+ "outputs": [
819
+ {
820
+ "internalType": "uint64",
821
+ "name": "",
822
+ "type": "uint64"
823
+ }
824
+ ],
825
+ "stateMutability": "view",
826
+ "type": "function"
827
+ },
828
+ {
829
+ "inputs": [],
830
+ "name": "loserStakeEscrow",
831
+ "outputs": [
832
+ {
833
+ "internalType": "address",
834
+ "name": "",
835
+ "type": "address"
836
+ }
837
+ ],
838
+ "stateMutability": "view",
839
+ "type": "function"
840
+ },
841
+ {
842
+ "inputs": [],
843
+ "name": "minimumAssertionPeriod",
844
+ "outputs": [
845
+ {
846
+ "internalType": "uint256",
847
+ "name": "",
848
+ "type": "uint256"
849
+ }
850
+ ],
851
+ "stateMutability": "view",
852
+ "type": "function"
853
+ },
854
+ {
855
+ "inputs": [
856
+ {
857
+ "internalType": "uint64",
858
+ "name": "nodeNum",
859
+ "type": "uint64"
860
+ },
861
+ {
862
+ "internalType": "address",
863
+ "name": "staker",
864
+ "type": "address"
865
+ }
866
+ ],
867
+ "name": "nodeHasStaker",
868
+ "outputs": [
869
+ {
870
+ "internalType": "bool",
871
+ "name": "",
872
+ "type": "bool"
873
+ }
874
+ ],
875
+ "stateMutability": "view",
876
+ "type": "function"
877
+ },
878
+ {
879
+ "inputs": [],
880
+ "name": "outbox",
881
+ "outputs": [
882
+ {
883
+ "internalType": "contract IOutbox",
884
+ "name": "",
885
+ "type": "address"
886
+ }
887
+ ],
888
+ "stateMutability": "view",
889
+ "type": "function"
890
+ },
891
+ {
892
+ "inputs": [],
893
+ "name": "owner",
894
+ "outputs": [
895
+ {
896
+ "internalType": "address",
897
+ "name": "",
898
+ "type": "address"
899
+ }
900
+ ],
901
+ "stateMutability": "view",
902
+ "type": "function"
903
+ },
904
+ {
905
+ "inputs": [
906
+ {
907
+ "internalType": "uint256",
908
+ "name": "target",
909
+ "type": "uint256"
910
+ }
911
+ ],
912
+ "name": "reduceDeposit",
913
+ "outputs": [],
914
+ "stateMutability": "nonpayable",
915
+ "type": "function"
916
+ },
917
+ {
918
+ "inputs": [
919
+ {
920
+ "internalType": "address",
921
+ "name": "stakerAddress",
922
+ "type": "address"
923
+ }
924
+ ],
925
+ "name": "rejectNextNode",
926
+ "outputs": [],
927
+ "stateMutability": "nonpayable",
928
+ "type": "function"
929
+ },
930
+ {
931
+ "inputs": [
932
+ {
933
+ "internalType": "uint256",
934
+ "name": "startIndex",
935
+ "type": "uint256"
936
+ }
937
+ ],
938
+ "name": "removeOldZombies",
939
+ "outputs": [],
940
+ "stateMutability": "nonpayable",
941
+ "type": "function"
942
+ },
943
+ {
944
+ "inputs": [],
945
+ "name": "removeWhitelistAfterFork",
946
+ "outputs": [],
947
+ "stateMutability": "nonpayable",
948
+ "type": "function"
949
+ },
950
+ {
951
+ "inputs": [],
952
+ "name": "removeWhitelistAfterValidatorAfk",
953
+ "outputs": [],
954
+ "stateMutability": "nonpayable",
955
+ "type": "function"
956
+ },
957
+ {
958
+ "inputs": [
959
+ {
960
+ "internalType": "uint256",
961
+ "name": "zombieNum",
962
+ "type": "uint256"
963
+ },
964
+ {
965
+ "internalType": "uint256",
966
+ "name": "maxNodes",
967
+ "type": "uint256"
968
+ }
969
+ ],
970
+ "name": "removeZombie",
971
+ "outputs": [],
972
+ "stateMutability": "nonpayable",
973
+ "type": "function"
974
+ },
975
+ {
976
+ "inputs": [
977
+ {
978
+ "internalType": "uint256",
979
+ "name": "nodeNum",
980
+ "type": "uint256"
981
+ }
982
+ ],
983
+ "name": "requireUnresolved",
984
+ "outputs": [],
985
+ "stateMutability": "view",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [],
990
+ "name": "requireUnresolvedExists",
991
+ "outputs": [],
992
+ "stateMutability": "view",
993
+ "type": "function"
994
+ },
995
+ {
996
+ "inputs": [
997
+ {
998
+ "internalType": "uint256",
999
+ "name": "blockNumber",
1000
+ "type": "uint256"
1001
+ },
1002
+ {
1003
+ "internalType": "uint64",
1004
+ "name": "firstUnresolvedNodeNum",
1005
+ "type": "uint64"
1006
+ },
1007
+ {
1008
+ "internalType": "uint64",
1009
+ "name": "latestCreatedNode",
1010
+ "type": "uint64"
1011
+ }
1012
+ ],
1013
+ "name": "requiredStake",
1014
+ "outputs": [
1015
+ {
1016
+ "internalType": "uint256",
1017
+ "name": "",
1018
+ "type": "uint256"
1019
+ }
1020
+ ],
1021
+ "stateMutability": "view",
1022
+ "type": "function"
1023
+ },
1024
+ {
1025
+ "inputs": [
1026
+ {
1027
+ "internalType": "address",
1028
+ "name": "stakerAddress",
1029
+ "type": "address"
1030
+ }
1031
+ ],
1032
+ "name": "returnOldDeposit",
1033
+ "outputs": [],
1034
+ "stateMutability": "nonpayable",
1035
+ "type": "function"
1036
+ },
1037
+ {
1038
+ "inputs": [],
1039
+ "name": "rollupEventInbox",
1040
+ "outputs": [
1041
+ {
1042
+ "internalType": "contract IRollupEventInbox",
1043
+ "name": "",
1044
+ "type": "address"
1045
+ }
1046
+ ],
1047
+ "stateMutability": "view",
1048
+ "type": "function"
1049
+ },
1050
+ {
1051
+ "inputs": [],
1052
+ "name": "sequencerInbox",
1053
+ "outputs": [
1054
+ {
1055
+ "internalType": "contract ISequencerInbox",
1056
+ "name": "",
1057
+ "type": "address"
1058
+ }
1059
+ ],
1060
+ "stateMutability": "view",
1061
+ "type": "function"
1062
+ },
1063
+ {
1064
+ "inputs": [
1065
+ {
1066
+ "internalType": "uint64",
1067
+ "name": "nodeNum",
1068
+ "type": "uint64"
1069
+ },
1070
+ {
1071
+ "internalType": "bytes32",
1072
+ "name": "nodeHash",
1073
+ "type": "bytes32"
1074
+ }
1075
+ ],
1076
+ "name": "stakeOnExistingNode",
1077
+ "outputs": [],
1078
+ "stateMutability": "nonpayable",
1079
+ "type": "function"
1080
+ },
1081
+ {
1082
+ "inputs": [
1083
+ {
1084
+ "components": [
1085
+ {
1086
+ "components": [
1087
+ {
1088
+ "components": [
1089
+ {
1090
+ "internalType": "bytes32[2]",
1091
+ "name": "bytes32Vals",
1092
+ "type": "bytes32[2]"
1093
+ },
1094
+ {
1095
+ "internalType": "uint64[2]",
1096
+ "name": "u64Vals",
1097
+ "type": "uint64[2]"
1098
+ }
1099
+ ],
1100
+ "internalType": "struct GlobalState",
1101
+ "name": "globalState",
1102
+ "type": "tuple"
1103
+ },
1104
+ {
1105
+ "internalType": "enum MachineStatus",
1106
+ "name": "machineStatus",
1107
+ "type": "uint8"
1108
+ }
1109
+ ],
1110
+ "internalType": "struct ExecutionState",
1111
+ "name": "beforeState",
1112
+ "type": "tuple"
1113
+ },
1114
+ {
1115
+ "components": [
1116
+ {
1117
+ "components": [
1118
+ {
1119
+ "internalType": "bytes32[2]",
1120
+ "name": "bytes32Vals",
1121
+ "type": "bytes32[2]"
1122
+ },
1123
+ {
1124
+ "internalType": "uint64[2]",
1125
+ "name": "u64Vals",
1126
+ "type": "uint64[2]"
1127
+ }
1128
+ ],
1129
+ "internalType": "struct GlobalState",
1130
+ "name": "globalState",
1131
+ "type": "tuple"
1132
+ },
1133
+ {
1134
+ "internalType": "enum MachineStatus",
1135
+ "name": "machineStatus",
1136
+ "type": "uint8"
1137
+ }
1138
+ ],
1139
+ "internalType": "struct ExecutionState",
1140
+ "name": "afterState",
1141
+ "type": "tuple"
1142
+ },
1143
+ {
1144
+ "internalType": "uint64",
1145
+ "name": "numBlocks",
1146
+ "type": "uint64"
1147
+ }
1148
+ ],
1149
+ "internalType": "struct Assertion",
1150
+ "name": "assertion",
1151
+ "type": "tuple"
1152
+ },
1153
+ {
1154
+ "internalType": "bytes32",
1155
+ "name": "expectedNodeHash",
1156
+ "type": "bytes32"
1157
+ },
1158
+ {
1159
+ "internalType": "uint256",
1160
+ "name": "prevNodeInboxMaxCount",
1161
+ "type": "uint256"
1162
+ }
1163
+ ],
1164
+ "name": "stakeOnNewNode",
1165
+ "outputs": [],
1166
+ "stateMutability": "nonpayable",
1167
+ "type": "function"
1168
+ },
1169
+ {
1170
+ "inputs": [],
1171
+ "name": "stakeToken",
1172
+ "outputs": [
1173
+ {
1174
+ "internalType": "address",
1175
+ "name": "",
1176
+ "type": "address"
1177
+ }
1178
+ ],
1179
+ "stateMutability": "view",
1180
+ "type": "function"
1181
+ },
1182
+ {
1183
+ "inputs": [],
1184
+ "name": "stakerCount",
1185
+ "outputs": [
1186
+ {
1187
+ "internalType": "uint64",
1188
+ "name": "",
1189
+ "type": "uint64"
1190
+ }
1191
+ ],
1192
+ "stateMutability": "view",
1193
+ "type": "function"
1194
+ },
1195
+ {
1196
+ "inputs": [],
1197
+ "name": "validatorWhitelistDisabled",
1198
+ "outputs": [
1199
+ {
1200
+ "internalType": "bool",
1201
+ "name": "",
1202
+ "type": "bool"
1203
+ }
1204
+ ],
1205
+ "stateMutability": "view",
1206
+ "type": "function"
1207
+ },
1208
+ {
1209
+ "inputs": [],
1210
+ "name": "wasmModuleRoot",
1211
+ "outputs": [
1212
+ {
1213
+ "internalType": "bytes32",
1214
+ "name": "",
1215
+ "type": "bytes32"
1216
+ }
1217
+ ],
1218
+ "stateMutability": "view",
1219
+ "type": "function"
1220
+ },
1221
+ {
1222
+ "inputs": [],
1223
+ "name": "withdrawStakerFunds",
1224
+ "outputs": [
1225
+ {
1226
+ "internalType": "uint256",
1227
+ "name": "",
1228
+ "type": "uint256"
1229
+ }
1230
+ ],
1231
+ "stateMutability": "nonpayable",
1232
+ "type": "function"
1233
+ },
1234
+ {
1235
+ "inputs": [
1236
+ {
1237
+ "internalType": "address",
1238
+ "name": "owner",
1239
+ "type": "address"
1240
+ }
1241
+ ],
1242
+ "name": "withdrawableFunds",
1243
+ "outputs": [
1244
+ {
1245
+ "internalType": "uint256",
1246
+ "name": "",
1247
+ "type": "uint256"
1248
+ }
1249
+ ],
1250
+ "stateMutability": "view",
1251
+ "type": "function"
1252
+ },
1253
+ {
1254
+ "inputs": [
1255
+ {
1256
+ "internalType": "uint256",
1257
+ "name": "zombieNum",
1258
+ "type": "uint256"
1259
+ }
1260
+ ],
1261
+ "name": "zombieAddress",
1262
+ "outputs": [
1263
+ {
1264
+ "internalType": "address",
1265
+ "name": "",
1266
+ "type": "address"
1267
+ }
1268
+ ],
1269
+ "stateMutability": "view",
1270
+ "type": "function"
1271
+ },
1272
+ {
1273
+ "inputs": [],
1274
+ "name": "zombieCount",
1275
+ "outputs": [
1276
+ {
1277
+ "internalType": "uint256",
1278
+ "name": "",
1279
+ "type": "uint256"
1280
+ }
1281
+ ],
1282
+ "stateMutability": "view",
1283
+ "type": "function"
1284
+ },
1285
+ {
1286
+ "inputs": [
1287
+ {
1288
+ "internalType": "uint256",
1289
+ "name": "zombieNum",
1290
+ "type": "uint256"
1291
+ }
1292
+ ],
1293
+ "name": "zombieLatestStakedNode",
1294
+ "outputs": [
1295
+ {
1296
+ "internalType": "uint64",
1297
+ "name": "",
1298
+ "type": "uint64"
1299
+ }
1300
+ ],
1301
+ "stateMutability": "view",
1302
+ "type": "function"
1303
+ }
1304
+ ],
1305
+ "bytecode": "0x",
1306
+ "deployedBytecode": "0x",
1307
+ "linkReferences": {},
1308
+ "deployedLinkReferences": {}
1309
+ }