@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.
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.json +80 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +160 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +155 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.json +100 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +63 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +50 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +10 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.dbg.json +4 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.json +650 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.dbg.json +4 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.json +538 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.dbg.json +4 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.json +43 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.json +575 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.json +419 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.json +24 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.json +651 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.json +954 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
- package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.dbg.json +4 -0
- package/build/contracts/src/libraries/ArbitrumChecker.sol/ArbitrumChecker.json +10 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +350 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +95 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
- package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.dbg.json +4 -0
- package/build/contracts/src/rollup/DeployHelper.sol/DeployHelper.json +128 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +383 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
- package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
- package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
- package/package.json +4 -2
@@ -0,0 +1,651 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "ISequencerInbox",
|
4
|
+
"sourceName": "src/bridge/ISequencerInbox.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"anonymous": false,
|
8
|
+
"inputs": [
|
9
|
+
{
|
10
|
+
"indexed": true,
|
11
|
+
"internalType": "uint256",
|
12
|
+
"name": "messageNum",
|
13
|
+
"type": "uint256"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"indexed": false,
|
17
|
+
"internalType": "bytes",
|
18
|
+
"name": "data",
|
19
|
+
"type": "bytes"
|
20
|
+
}
|
21
|
+
],
|
22
|
+
"name": "InboxMessageDelivered",
|
23
|
+
"type": "event"
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"anonymous": false,
|
27
|
+
"inputs": [
|
28
|
+
{
|
29
|
+
"indexed": true,
|
30
|
+
"internalType": "uint256",
|
31
|
+
"name": "messageNum",
|
32
|
+
"type": "uint256"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "InboxMessageDeliveredFromOrigin",
|
36
|
+
"type": "event"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"anonymous": false,
|
40
|
+
"inputs": [
|
41
|
+
{
|
42
|
+
"indexed": true,
|
43
|
+
"internalType": "bytes32",
|
44
|
+
"name": "keysetHash",
|
45
|
+
"type": "bytes32"
|
46
|
+
}
|
47
|
+
],
|
48
|
+
"name": "InvalidateKeyset",
|
49
|
+
"type": "event"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"anonymous": false,
|
53
|
+
"inputs": [
|
54
|
+
{
|
55
|
+
"indexed": true,
|
56
|
+
"internalType": "uint256",
|
57
|
+
"name": "id",
|
58
|
+
"type": "uint256"
|
59
|
+
}
|
60
|
+
],
|
61
|
+
"name": "OwnerFunctionCalled",
|
62
|
+
"type": "event"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"anonymous": false,
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"indexed": true,
|
69
|
+
"internalType": "uint256",
|
70
|
+
"name": "batchSequenceNumber",
|
71
|
+
"type": "uint256"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"indexed": false,
|
75
|
+
"internalType": "bytes",
|
76
|
+
"name": "data",
|
77
|
+
"type": "bytes"
|
78
|
+
}
|
79
|
+
],
|
80
|
+
"name": "SequencerBatchData",
|
81
|
+
"type": "event"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"anonymous": false,
|
85
|
+
"inputs": [
|
86
|
+
{
|
87
|
+
"indexed": true,
|
88
|
+
"internalType": "uint256",
|
89
|
+
"name": "batchSequenceNumber",
|
90
|
+
"type": "uint256"
|
91
|
+
},
|
92
|
+
{
|
93
|
+
"indexed": true,
|
94
|
+
"internalType": "bytes32",
|
95
|
+
"name": "beforeAcc",
|
96
|
+
"type": "bytes32"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"indexed": true,
|
100
|
+
"internalType": "bytes32",
|
101
|
+
"name": "afterAcc",
|
102
|
+
"type": "bytes32"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"indexed": false,
|
106
|
+
"internalType": "bytes32",
|
107
|
+
"name": "delayedAcc",
|
108
|
+
"type": "bytes32"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"indexed": false,
|
112
|
+
"internalType": "uint256",
|
113
|
+
"name": "afterDelayedMessagesRead",
|
114
|
+
"type": "uint256"
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"components": [
|
118
|
+
{
|
119
|
+
"internalType": "uint64",
|
120
|
+
"name": "minTimestamp",
|
121
|
+
"type": "uint64"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"internalType": "uint64",
|
125
|
+
"name": "maxTimestamp",
|
126
|
+
"type": "uint64"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"internalType": "uint64",
|
130
|
+
"name": "minBlockNumber",
|
131
|
+
"type": "uint64"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"internalType": "uint64",
|
135
|
+
"name": "maxBlockNumber",
|
136
|
+
"type": "uint64"
|
137
|
+
}
|
138
|
+
],
|
139
|
+
"indexed": false,
|
140
|
+
"internalType": "struct ISequencerInbox.TimeBounds",
|
141
|
+
"name": "timeBounds",
|
142
|
+
"type": "tuple"
|
143
|
+
},
|
144
|
+
{
|
145
|
+
"indexed": false,
|
146
|
+
"internalType": "enum ISequencerInbox.BatchDataLocation",
|
147
|
+
"name": "dataLocation",
|
148
|
+
"type": "uint8"
|
149
|
+
}
|
150
|
+
],
|
151
|
+
"name": "SequencerBatchDelivered",
|
152
|
+
"type": "event"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"anonymous": false,
|
156
|
+
"inputs": [
|
157
|
+
{
|
158
|
+
"indexed": true,
|
159
|
+
"internalType": "bytes32",
|
160
|
+
"name": "keysetHash",
|
161
|
+
"type": "bytes32"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"indexed": false,
|
165
|
+
"internalType": "bytes",
|
166
|
+
"name": "keysetBytes",
|
167
|
+
"type": "bytes"
|
168
|
+
}
|
169
|
+
],
|
170
|
+
"name": "SetValidKeyset",
|
171
|
+
"type": "event"
|
172
|
+
},
|
173
|
+
{
|
174
|
+
"inputs": [],
|
175
|
+
"name": "DATA_AUTHENTICATED_FLAG",
|
176
|
+
"outputs": [
|
177
|
+
{
|
178
|
+
"internalType": "bytes1",
|
179
|
+
"name": "",
|
180
|
+
"type": "bytes1"
|
181
|
+
}
|
182
|
+
],
|
183
|
+
"stateMutability": "view",
|
184
|
+
"type": "function"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"inputs": [],
|
188
|
+
"name": "HEADER_LENGTH",
|
189
|
+
"outputs": [
|
190
|
+
{
|
191
|
+
"internalType": "uint256",
|
192
|
+
"name": "",
|
193
|
+
"type": "uint256"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"stateMutability": "view",
|
197
|
+
"type": "function"
|
198
|
+
},
|
199
|
+
{
|
200
|
+
"inputs": [
|
201
|
+
{
|
202
|
+
"internalType": "uint256",
|
203
|
+
"name": "sequenceNumber",
|
204
|
+
"type": "uint256"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"internalType": "bytes",
|
208
|
+
"name": "data",
|
209
|
+
"type": "bytes"
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"internalType": "uint256",
|
213
|
+
"name": "afterDelayedMessagesRead",
|
214
|
+
"type": "uint256"
|
215
|
+
},
|
216
|
+
{
|
217
|
+
"internalType": "contract IGasRefunder",
|
218
|
+
"name": "gasRefunder",
|
219
|
+
"type": "address"
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"internalType": "uint256",
|
223
|
+
"name": "prevMessageCount",
|
224
|
+
"type": "uint256"
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"internalType": "uint256",
|
228
|
+
"name": "newMessageCount",
|
229
|
+
"type": "uint256"
|
230
|
+
}
|
231
|
+
],
|
232
|
+
"name": "addSequencerL2Batch",
|
233
|
+
"outputs": [],
|
234
|
+
"stateMutability": "nonpayable",
|
235
|
+
"type": "function"
|
236
|
+
},
|
237
|
+
{
|
238
|
+
"inputs": [
|
239
|
+
{
|
240
|
+
"internalType": "uint256",
|
241
|
+
"name": "sequenceNumber",
|
242
|
+
"type": "uint256"
|
243
|
+
},
|
244
|
+
{
|
245
|
+
"internalType": "bytes",
|
246
|
+
"name": "data",
|
247
|
+
"type": "bytes"
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"internalType": "uint256",
|
251
|
+
"name": "afterDelayedMessagesRead",
|
252
|
+
"type": "uint256"
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"internalType": "contract IGasRefunder",
|
256
|
+
"name": "gasRefunder",
|
257
|
+
"type": "address"
|
258
|
+
}
|
259
|
+
],
|
260
|
+
"name": "addSequencerL2BatchFromOrigin",
|
261
|
+
"outputs": [],
|
262
|
+
"stateMutability": "nonpayable",
|
263
|
+
"type": "function"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"inputs": [],
|
267
|
+
"name": "batchCount",
|
268
|
+
"outputs": [
|
269
|
+
{
|
270
|
+
"internalType": "uint256",
|
271
|
+
"name": "",
|
272
|
+
"type": "uint256"
|
273
|
+
}
|
274
|
+
],
|
275
|
+
"stateMutability": "view",
|
276
|
+
"type": "function"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"inputs": [],
|
280
|
+
"name": "bridge",
|
281
|
+
"outputs": [
|
282
|
+
{
|
283
|
+
"internalType": "contract IBridge",
|
284
|
+
"name": "",
|
285
|
+
"type": "address"
|
286
|
+
}
|
287
|
+
],
|
288
|
+
"stateMutability": "view",
|
289
|
+
"type": "function"
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"inputs": [
|
293
|
+
{
|
294
|
+
"internalType": "bytes32",
|
295
|
+
"name": "",
|
296
|
+
"type": "bytes32"
|
297
|
+
}
|
298
|
+
],
|
299
|
+
"name": "dasKeySetInfo",
|
300
|
+
"outputs": [
|
301
|
+
{
|
302
|
+
"internalType": "bool",
|
303
|
+
"name": "",
|
304
|
+
"type": "bool"
|
305
|
+
},
|
306
|
+
{
|
307
|
+
"internalType": "uint64",
|
308
|
+
"name": "",
|
309
|
+
"type": "uint64"
|
310
|
+
}
|
311
|
+
],
|
312
|
+
"stateMutability": "view",
|
313
|
+
"type": "function"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"inputs": [
|
317
|
+
{
|
318
|
+
"internalType": "uint256",
|
319
|
+
"name": "_totalDelayedMessagesRead",
|
320
|
+
"type": "uint256"
|
321
|
+
},
|
322
|
+
{
|
323
|
+
"internalType": "uint8",
|
324
|
+
"name": "kind",
|
325
|
+
"type": "uint8"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"internalType": "uint64[2]",
|
329
|
+
"name": "l1BlockAndTime",
|
330
|
+
"type": "uint64[2]"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"internalType": "uint256",
|
334
|
+
"name": "baseFeeL1",
|
335
|
+
"type": "uint256"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"internalType": "address",
|
339
|
+
"name": "sender",
|
340
|
+
"type": "address"
|
341
|
+
},
|
342
|
+
{
|
343
|
+
"internalType": "bytes32",
|
344
|
+
"name": "messageDataHash",
|
345
|
+
"type": "bytes32"
|
346
|
+
}
|
347
|
+
],
|
348
|
+
"name": "forceInclusion",
|
349
|
+
"outputs": [],
|
350
|
+
"stateMutability": "nonpayable",
|
351
|
+
"type": "function"
|
352
|
+
},
|
353
|
+
{
|
354
|
+
"inputs": [
|
355
|
+
{
|
356
|
+
"internalType": "bytes32",
|
357
|
+
"name": "ksHash",
|
358
|
+
"type": "bytes32"
|
359
|
+
}
|
360
|
+
],
|
361
|
+
"name": "getKeysetCreationBlock",
|
362
|
+
"outputs": [
|
363
|
+
{
|
364
|
+
"internalType": "uint256",
|
365
|
+
"name": "",
|
366
|
+
"type": "uint256"
|
367
|
+
}
|
368
|
+
],
|
369
|
+
"stateMutability": "view",
|
370
|
+
"type": "function"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"inputs": [
|
374
|
+
{
|
375
|
+
"internalType": "uint256",
|
376
|
+
"name": "index",
|
377
|
+
"type": "uint256"
|
378
|
+
}
|
379
|
+
],
|
380
|
+
"name": "inboxAccs",
|
381
|
+
"outputs": [
|
382
|
+
{
|
383
|
+
"internalType": "bytes32",
|
384
|
+
"name": "",
|
385
|
+
"type": "bytes32"
|
386
|
+
}
|
387
|
+
],
|
388
|
+
"stateMutability": "view",
|
389
|
+
"type": "function"
|
390
|
+
},
|
391
|
+
{
|
392
|
+
"inputs": [
|
393
|
+
{
|
394
|
+
"internalType": "contract IBridge",
|
395
|
+
"name": "bridge_",
|
396
|
+
"type": "address"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"components": [
|
400
|
+
{
|
401
|
+
"internalType": "uint256",
|
402
|
+
"name": "delayBlocks",
|
403
|
+
"type": "uint256"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"internalType": "uint256",
|
407
|
+
"name": "futureBlocks",
|
408
|
+
"type": "uint256"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"internalType": "uint256",
|
412
|
+
"name": "delaySeconds",
|
413
|
+
"type": "uint256"
|
414
|
+
},
|
415
|
+
{
|
416
|
+
"internalType": "uint256",
|
417
|
+
"name": "futureSeconds",
|
418
|
+
"type": "uint256"
|
419
|
+
}
|
420
|
+
],
|
421
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
422
|
+
"name": "maxTimeVariation_",
|
423
|
+
"type": "tuple"
|
424
|
+
}
|
425
|
+
],
|
426
|
+
"name": "initialize",
|
427
|
+
"outputs": [],
|
428
|
+
"stateMutability": "nonpayable",
|
429
|
+
"type": "function"
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"inputs": [
|
433
|
+
{
|
434
|
+
"internalType": "bytes32",
|
435
|
+
"name": "ksHash",
|
436
|
+
"type": "bytes32"
|
437
|
+
}
|
438
|
+
],
|
439
|
+
"name": "invalidateKeysetHash",
|
440
|
+
"outputs": [],
|
441
|
+
"stateMutability": "nonpayable",
|
442
|
+
"type": "function"
|
443
|
+
},
|
444
|
+
{
|
445
|
+
"inputs": [
|
446
|
+
{
|
447
|
+
"internalType": "address",
|
448
|
+
"name": "",
|
449
|
+
"type": "address"
|
450
|
+
}
|
451
|
+
],
|
452
|
+
"name": "isBatchPoster",
|
453
|
+
"outputs": [
|
454
|
+
{
|
455
|
+
"internalType": "bool",
|
456
|
+
"name": "",
|
457
|
+
"type": "bool"
|
458
|
+
}
|
459
|
+
],
|
460
|
+
"stateMutability": "view",
|
461
|
+
"type": "function"
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"inputs": [
|
465
|
+
{
|
466
|
+
"internalType": "address",
|
467
|
+
"name": "",
|
468
|
+
"type": "address"
|
469
|
+
}
|
470
|
+
],
|
471
|
+
"name": "isSequencer",
|
472
|
+
"outputs": [
|
473
|
+
{
|
474
|
+
"internalType": "bool",
|
475
|
+
"name": "",
|
476
|
+
"type": "bool"
|
477
|
+
}
|
478
|
+
],
|
479
|
+
"stateMutability": "view",
|
480
|
+
"type": "function"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"inputs": [
|
484
|
+
{
|
485
|
+
"internalType": "bytes32",
|
486
|
+
"name": "ksHash",
|
487
|
+
"type": "bytes32"
|
488
|
+
}
|
489
|
+
],
|
490
|
+
"name": "isValidKeysetHash",
|
491
|
+
"outputs": [
|
492
|
+
{
|
493
|
+
"internalType": "bool",
|
494
|
+
"name": "",
|
495
|
+
"type": "bool"
|
496
|
+
}
|
497
|
+
],
|
498
|
+
"stateMutability": "view",
|
499
|
+
"type": "function"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"inputs": [],
|
503
|
+
"name": "maxTimeVariation",
|
504
|
+
"outputs": [
|
505
|
+
{
|
506
|
+
"internalType": "uint256",
|
507
|
+
"name": "",
|
508
|
+
"type": "uint256"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"internalType": "uint256",
|
512
|
+
"name": "",
|
513
|
+
"type": "uint256"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"internalType": "uint256",
|
517
|
+
"name": "",
|
518
|
+
"type": "uint256"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"internalType": "uint256",
|
522
|
+
"name": "",
|
523
|
+
"type": "uint256"
|
524
|
+
}
|
525
|
+
],
|
526
|
+
"stateMutability": "view",
|
527
|
+
"type": "function"
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"inputs": [],
|
531
|
+
"name": "removeDelayAfterFork",
|
532
|
+
"outputs": [],
|
533
|
+
"stateMutability": "nonpayable",
|
534
|
+
"type": "function"
|
535
|
+
},
|
536
|
+
{
|
537
|
+
"inputs": [],
|
538
|
+
"name": "rollup",
|
539
|
+
"outputs": [
|
540
|
+
{
|
541
|
+
"internalType": "contract IOwnable",
|
542
|
+
"name": "",
|
543
|
+
"type": "address"
|
544
|
+
}
|
545
|
+
],
|
546
|
+
"stateMutability": "view",
|
547
|
+
"type": "function"
|
548
|
+
},
|
549
|
+
{
|
550
|
+
"inputs": [
|
551
|
+
{
|
552
|
+
"internalType": "address",
|
553
|
+
"name": "addr",
|
554
|
+
"type": "address"
|
555
|
+
},
|
556
|
+
{
|
557
|
+
"internalType": "bool",
|
558
|
+
"name": "isBatchPoster_",
|
559
|
+
"type": "bool"
|
560
|
+
}
|
561
|
+
],
|
562
|
+
"name": "setIsBatchPoster",
|
563
|
+
"outputs": [],
|
564
|
+
"stateMutability": "nonpayable",
|
565
|
+
"type": "function"
|
566
|
+
},
|
567
|
+
{
|
568
|
+
"inputs": [
|
569
|
+
{
|
570
|
+
"internalType": "address",
|
571
|
+
"name": "addr",
|
572
|
+
"type": "address"
|
573
|
+
},
|
574
|
+
{
|
575
|
+
"internalType": "bool",
|
576
|
+
"name": "isSequencer_",
|
577
|
+
"type": "bool"
|
578
|
+
}
|
579
|
+
],
|
580
|
+
"name": "setIsSequencer",
|
581
|
+
"outputs": [],
|
582
|
+
"stateMutability": "nonpayable",
|
583
|
+
"type": "function"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"inputs": [
|
587
|
+
{
|
588
|
+
"components": [
|
589
|
+
{
|
590
|
+
"internalType": "uint256",
|
591
|
+
"name": "delayBlocks",
|
592
|
+
"type": "uint256"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"internalType": "uint256",
|
596
|
+
"name": "futureBlocks",
|
597
|
+
"type": "uint256"
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"internalType": "uint256",
|
601
|
+
"name": "delaySeconds",
|
602
|
+
"type": "uint256"
|
603
|
+
},
|
604
|
+
{
|
605
|
+
"internalType": "uint256",
|
606
|
+
"name": "futureSeconds",
|
607
|
+
"type": "uint256"
|
608
|
+
}
|
609
|
+
],
|
610
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
611
|
+
"name": "maxTimeVariation_",
|
612
|
+
"type": "tuple"
|
613
|
+
}
|
614
|
+
],
|
615
|
+
"name": "setMaxTimeVariation",
|
616
|
+
"outputs": [],
|
617
|
+
"stateMutability": "nonpayable",
|
618
|
+
"type": "function"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"inputs": [
|
622
|
+
{
|
623
|
+
"internalType": "bytes",
|
624
|
+
"name": "keysetBytes",
|
625
|
+
"type": "bytes"
|
626
|
+
}
|
627
|
+
],
|
628
|
+
"name": "setValidKeyset",
|
629
|
+
"outputs": [],
|
630
|
+
"stateMutability": "nonpayable",
|
631
|
+
"type": "function"
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"inputs": [],
|
635
|
+
"name": "totalDelayedMessagesRead",
|
636
|
+
"outputs": [
|
637
|
+
{
|
638
|
+
"internalType": "uint256",
|
639
|
+
"name": "",
|
640
|
+
"type": "uint256"
|
641
|
+
}
|
642
|
+
],
|
643
|
+
"stateMutability": "view",
|
644
|
+
"type": "function"
|
645
|
+
}
|
646
|
+
],
|
647
|
+
"bytecode": "0x",
|
648
|
+
"deployedBytecode": "0x",
|
649
|
+
"linkReferences": {},
|
650
|
+
"deployedLinkReferences": {}
|
651
|
+
}
|