@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,889 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IRollupCore",
4
+ "sourceName": "src/rollup/IRollupCore.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
+ "name": "confirmPeriodBlocks",
338
+ "outputs": [
339
+ {
340
+ "internalType": "uint64",
341
+ "name": "",
342
+ "type": "uint64"
343
+ }
344
+ ],
345
+ "stateMutability": "view",
346
+ "type": "function"
347
+ },
348
+ {
349
+ "inputs": [
350
+ {
351
+ "internalType": "address",
352
+ "name": "staker",
353
+ "type": "address"
354
+ }
355
+ ],
356
+ "name": "currentChallenge",
357
+ "outputs": [
358
+ {
359
+ "internalType": "uint64",
360
+ "name": "",
361
+ "type": "uint64"
362
+ }
363
+ ],
364
+ "stateMutability": "view",
365
+ "type": "function"
366
+ },
367
+ {
368
+ "inputs": [],
369
+ "name": "extraChallengeTimeBlocks",
370
+ "outputs": [
371
+ {
372
+ "internalType": "uint64",
373
+ "name": "",
374
+ "type": "uint64"
375
+ }
376
+ ],
377
+ "stateMutability": "view",
378
+ "type": "function"
379
+ },
380
+ {
381
+ "inputs": [],
382
+ "name": "firstUnresolvedNode",
383
+ "outputs": [
384
+ {
385
+ "internalType": "uint64",
386
+ "name": "",
387
+ "type": "uint64"
388
+ }
389
+ ],
390
+ "stateMutability": "view",
391
+ "type": "function"
392
+ },
393
+ {
394
+ "inputs": [
395
+ {
396
+ "internalType": "uint64",
397
+ "name": "nodeNum",
398
+ "type": "uint64"
399
+ }
400
+ ],
401
+ "name": "getNode",
402
+ "outputs": [
403
+ {
404
+ "components": [
405
+ {
406
+ "internalType": "bytes32",
407
+ "name": "stateHash",
408
+ "type": "bytes32"
409
+ },
410
+ {
411
+ "internalType": "bytes32",
412
+ "name": "challengeHash",
413
+ "type": "bytes32"
414
+ },
415
+ {
416
+ "internalType": "bytes32",
417
+ "name": "confirmData",
418
+ "type": "bytes32"
419
+ },
420
+ {
421
+ "internalType": "uint64",
422
+ "name": "prevNum",
423
+ "type": "uint64"
424
+ },
425
+ {
426
+ "internalType": "uint64",
427
+ "name": "deadlineBlock",
428
+ "type": "uint64"
429
+ },
430
+ {
431
+ "internalType": "uint64",
432
+ "name": "noChildConfirmedBeforeBlock",
433
+ "type": "uint64"
434
+ },
435
+ {
436
+ "internalType": "uint64",
437
+ "name": "stakerCount",
438
+ "type": "uint64"
439
+ },
440
+ {
441
+ "internalType": "uint64",
442
+ "name": "childStakerCount",
443
+ "type": "uint64"
444
+ },
445
+ {
446
+ "internalType": "uint64",
447
+ "name": "firstChildBlock",
448
+ "type": "uint64"
449
+ },
450
+ {
451
+ "internalType": "uint64",
452
+ "name": "latestChildNumber",
453
+ "type": "uint64"
454
+ },
455
+ {
456
+ "internalType": "uint64",
457
+ "name": "createdAtBlock",
458
+ "type": "uint64"
459
+ },
460
+ {
461
+ "internalType": "bytes32",
462
+ "name": "nodeHash",
463
+ "type": "bytes32"
464
+ }
465
+ ],
466
+ "internalType": "struct Node",
467
+ "name": "",
468
+ "type": "tuple"
469
+ }
470
+ ],
471
+ "stateMutability": "view",
472
+ "type": "function"
473
+ },
474
+ {
475
+ "inputs": [
476
+ {
477
+ "internalType": "uint64",
478
+ "name": "nodeNum",
479
+ "type": "uint64"
480
+ }
481
+ ],
482
+ "name": "getNodeCreationBlockForLogLookup",
483
+ "outputs": [
484
+ {
485
+ "internalType": "uint256",
486
+ "name": "",
487
+ "type": "uint256"
488
+ }
489
+ ],
490
+ "stateMutability": "view",
491
+ "type": "function"
492
+ },
493
+ {
494
+ "inputs": [
495
+ {
496
+ "internalType": "address",
497
+ "name": "staker",
498
+ "type": "address"
499
+ }
500
+ ],
501
+ "name": "getStaker",
502
+ "outputs": [
503
+ {
504
+ "components": [
505
+ {
506
+ "internalType": "uint256",
507
+ "name": "amountStaked",
508
+ "type": "uint256"
509
+ },
510
+ {
511
+ "internalType": "uint64",
512
+ "name": "index",
513
+ "type": "uint64"
514
+ },
515
+ {
516
+ "internalType": "uint64",
517
+ "name": "latestStakedNode",
518
+ "type": "uint64"
519
+ },
520
+ {
521
+ "internalType": "uint64",
522
+ "name": "currentChallenge",
523
+ "type": "uint64"
524
+ },
525
+ {
526
+ "internalType": "bool",
527
+ "name": "isStaked",
528
+ "type": "bool"
529
+ }
530
+ ],
531
+ "internalType": "struct IRollupCore.Staker",
532
+ "name": "",
533
+ "type": "tuple"
534
+ }
535
+ ],
536
+ "stateMutability": "view",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [
541
+ {
542
+ "internalType": "uint64",
543
+ "name": "stakerNum",
544
+ "type": "uint64"
545
+ }
546
+ ],
547
+ "name": "getStakerAddress",
548
+ "outputs": [
549
+ {
550
+ "internalType": "address",
551
+ "name": "",
552
+ "type": "address"
553
+ }
554
+ ],
555
+ "stateMutability": "view",
556
+ "type": "function"
557
+ },
558
+ {
559
+ "inputs": [
560
+ {
561
+ "internalType": "address",
562
+ "name": "staker",
563
+ "type": "address"
564
+ }
565
+ ],
566
+ "name": "isStaked",
567
+ "outputs": [
568
+ {
569
+ "internalType": "bool",
570
+ "name": "",
571
+ "type": "bool"
572
+ }
573
+ ],
574
+ "stateMutability": "view",
575
+ "type": "function"
576
+ },
577
+ {
578
+ "inputs": [
579
+ {
580
+ "internalType": "address",
581
+ "name": "",
582
+ "type": "address"
583
+ }
584
+ ],
585
+ "name": "isValidator",
586
+ "outputs": [
587
+ {
588
+ "internalType": "bool",
589
+ "name": "",
590
+ "type": "bool"
591
+ }
592
+ ],
593
+ "stateMutability": "view",
594
+ "type": "function"
595
+ },
596
+ {
597
+ "inputs": [
598
+ {
599
+ "internalType": "address",
600
+ "name": "staker",
601
+ "type": "address"
602
+ }
603
+ ],
604
+ "name": "isZombie",
605
+ "outputs": [
606
+ {
607
+ "internalType": "bool",
608
+ "name": "",
609
+ "type": "bool"
610
+ }
611
+ ],
612
+ "stateMutability": "view",
613
+ "type": "function"
614
+ },
615
+ {
616
+ "inputs": [],
617
+ "name": "lastStakeBlock",
618
+ "outputs": [
619
+ {
620
+ "internalType": "uint64",
621
+ "name": "",
622
+ "type": "uint64"
623
+ }
624
+ ],
625
+ "stateMutability": "view",
626
+ "type": "function"
627
+ },
628
+ {
629
+ "inputs": [],
630
+ "name": "latestConfirmed",
631
+ "outputs": [
632
+ {
633
+ "internalType": "uint64",
634
+ "name": "",
635
+ "type": "uint64"
636
+ }
637
+ ],
638
+ "stateMutability": "view",
639
+ "type": "function"
640
+ },
641
+ {
642
+ "inputs": [],
643
+ "name": "latestNodeCreated",
644
+ "outputs": [
645
+ {
646
+ "internalType": "uint64",
647
+ "name": "",
648
+ "type": "uint64"
649
+ }
650
+ ],
651
+ "stateMutability": "view",
652
+ "type": "function"
653
+ },
654
+ {
655
+ "inputs": [
656
+ {
657
+ "internalType": "address",
658
+ "name": "staker",
659
+ "type": "address"
660
+ }
661
+ ],
662
+ "name": "latestStakedNode",
663
+ "outputs": [
664
+ {
665
+ "internalType": "uint64",
666
+ "name": "",
667
+ "type": "uint64"
668
+ }
669
+ ],
670
+ "stateMutability": "view",
671
+ "type": "function"
672
+ },
673
+ {
674
+ "inputs": [],
675
+ "name": "loserStakeEscrow",
676
+ "outputs": [
677
+ {
678
+ "internalType": "address",
679
+ "name": "",
680
+ "type": "address"
681
+ }
682
+ ],
683
+ "stateMutability": "view",
684
+ "type": "function"
685
+ },
686
+ {
687
+ "inputs": [],
688
+ "name": "minimumAssertionPeriod",
689
+ "outputs": [
690
+ {
691
+ "internalType": "uint256",
692
+ "name": "",
693
+ "type": "uint256"
694
+ }
695
+ ],
696
+ "stateMutability": "view",
697
+ "type": "function"
698
+ },
699
+ {
700
+ "inputs": [
701
+ {
702
+ "internalType": "uint64",
703
+ "name": "nodeNum",
704
+ "type": "uint64"
705
+ },
706
+ {
707
+ "internalType": "address",
708
+ "name": "staker",
709
+ "type": "address"
710
+ }
711
+ ],
712
+ "name": "nodeHasStaker",
713
+ "outputs": [
714
+ {
715
+ "internalType": "bool",
716
+ "name": "",
717
+ "type": "bool"
718
+ }
719
+ ],
720
+ "stateMutability": "view",
721
+ "type": "function"
722
+ },
723
+ {
724
+ "inputs": [],
725
+ "name": "outbox",
726
+ "outputs": [
727
+ {
728
+ "internalType": "contract IOutbox",
729
+ "name": "",
730
+ "type": "address"
731
+ }
732
+ ],
733
+ "stateMutability": "view",
734
+ "type": "function"
735
+ },
736
+ {
737
+ "inputs": [],
738
+ "name": "rollupEventInbox",
739
+ "outputs": [
740
+ {
741
+ "internalType": "contract IRollupEventInbox",
742
+ "name": "",
743
+ "type": "address"
744
+ }
745
+ ],
746
+ "stateMutability": "view",
747
+ "type": "function"
748
+ },
749
+ {
750
+ "inputs": [],
751
+ "name": "sequencerInbox",
752
+ "outputs": [
753
+ {
754
+ "internalType": "contract ISequencerInbox",
755
+ "name": "",
756
+ "type": "address"
757
+ }
758
+ ],
759
+ "stateMutability": "view",
760
+ "type": "function"
761
+ },
762
+ {
763
+ "inputs": [],
764
+ "name": "stakeToken",
765
+ "outputs": [
766
+ {
767
+ "internalType": "address",
768
+ "name": "",
769
+ "type": "address"
770
+ }
771
+ ],
772
+ "stateMutability": "view",
773
+ "type": "function"
774
+ },
775
+ {
776
+ "inputs": [],
777
+ "name": "stakerCount",
778
+ "outputs": [
779
+ {
780
+ "internalType": "uint64",
781
+ "name": "",
782
+ "type": "uint64"
783
+ }
784
+ ],
785
+ "stateMutability": "view",
786
+ "type": "function"
787
+ },
788
+ {
789
+ "inputs": [],
790
+ "name": "validatorWhitelistDisabled",
791
+ "outputs": [
792
+ {
793
+ "internalType": "bool",
794
+ "name": "",
795
+ "type": "bool"
796
+ }
797
+ ],
798
+ "stateMutability": "view",
799
+ "type": "function"
800
+ },
801
+ {
802
+ "inputs": [],
803
+ "name": "wasmModuleRoot",
804
+ "outputs": [
805
+ {
806
+ "internalType": "bytes32",
807
+ "name": "",
808
+ "type": "bytes32"
809
+ }
810
+ ],
811
+ "stateMutability": "view",
812
+ "type": "function"
813
+ },
814
+ {
815
+ "inputs": [
816
+ {
817
+ "internalType": "address",
818
+ "name": "owner",
819
+ "type": "address"
820
+ }
821
+ ],
822
+ "name": "withdrawableFunds",
823
+ "outputs": [
824
+ {
825
+ "internalType": "uint256",
826
+ "name": "",
827
+ "type": "uint256"
828
+ }
829
+ ],
830
+ "stateMutability": "view",
831
+ "type": "function"
832
+ },
833
+ {
834
+ "inputs": [
835
+ {
836
+ "internalType": "uint256",
837
+ "name": "zombieNum",
838
+ "type": "uint256"
839
+ }
840
+ ],
841
+ "name": "zombieAddress",
842
+ "outputs": [
843
+ {
844
+ "internalType": "address",
845
+ "name": "",
846
+ "type": "address"
847
+ }
848
+ ],
849
+ "stateMutability": "view",
850
+ "type": "function"
851
+ },
852
+ {
853
+ "inputs": [],
854
+ "name": "zombieCount",
855
+ "outputs": [
856
+ {
857
+ "internalType": "uint256",
858
+ "name": "",
859
+ "type": "uint256"
860
+ }
861
+ ],
862
+ "stateMutability": "view",
863
+ "type": "function"
864
+ },
865
+ {
866
+ "inputs": [
867
+ {
868
+ "internalType": "uint256",
869
+ "name": "zombieNum",
870
+ "type": "uint256"
871
+ }
872
+ ],
873
+ "name": "zombieLatestStakedNode",
874
+ "outputs": [
875
+ {
876
+ "internalType": "uint64",
877
+ "name": "",
878
+ "type": "uint64"
879
+ }
880
+ ],
881
+ "stateMutability": "view",
882
+ "type": "function"
883
+ }
884
+ ],
885
+ "bytecode": "0x",
886
+ "deployedBytecode": "0x",
887
+ "linkReferences": {},
888
+ "deployedLinkReferences": {}
889
+ }