@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.2
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 +1008 -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/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 +324 -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 +69 -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/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 +343 -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 +5 -2
@@ -0,0 +1,814 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "SequencerInbox",
|
4
|
+
"sourceName": "src/bridge/SequencerInbox.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [],
|
8
|
+
"name": "AlreadyInit",
|
9
|
+
"type": "error"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"inputs": [
|
13
|
+
{
|
14
|
+
"internalType": "bytes32",
|
15
|
+
"name": "",
|
16
|
+
"type": "bytes32"
|
17
|
+
}
|
18
|
+
],
|
19
|
+
"name": "AlreadyValidDASKeyset",
|
20
|
+
"type": "error"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"inputs": [
|
24
|
+
{
|
25
|
+
"internalType": "uint256",
|
26
|
+
"name": "stored",
|
27
|
+
"type": "uint256"
|
28
|
+
},
|
29
|
+
{
|
30
|
+
"internalType": "uint256",
|
31
|
+
"name": "received",
|
32
|
+
"type": "uint256"
|
33
|
+
}
|
34
|
+
],
|
35
|
+
"name": "BadSequencerNumber",
|
36
|
+
"type": "error"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"inputs": [],
|
40
|
+
"name": "DataNotAuthenticated",
|
41
|
+
"type": "error"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"inputs": [
|
45
|
+
{
|
46
|
+
"internalType": "uint256",
|
47
|
+
"name": "dataLength",
|
48
|
+
"type": "uint256"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"internalType": "uint256",
|
52
|
+
"name": "maxDataLength",
|
53
|
+
"type": "uint256"
|
54
|
+
}
|
55
|
+
],
|
56
|
+
"name": "DataTooLarge",
|
57
|
+
"type": "error"
|
58
|
+
},
|
59
|
+
{
|
60
|
+
"inputs": [],
|
61
|
+
"name": "DelayedBackwards",
|
62
|
+
"type": "error"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"inputs": [],
|
66
|
+
"name": "DelayedTooFar",
|
67
|
+
"type": "error"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"inputs": [],
|
71
|
+
"name": "ForceIncludeBlockTooSoon",
|
72
|
+
"type": "error"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"inputs": [],
|
76
|
+
"name": "ForceIncludeTimeTooSoon",
|
77
|
+
"type": "error"
|
78
|
+
},
|
79
|
+
{
|
80
|
+
"inputs": [],
|
81
|
+
"name": "HadZeroInit",
|
82
|
+
"type": "error"
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"inputs": [],
|
86
|
+
"name": "IncorrectMessagePreimage",
|
87
|
+
"type": "error"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"inputs": [
|
91
|
+
{
|
92
|
+
"internalType": "bytes32",
|
93
|
+
"name": "",
|
94
|
+
"type": "bytes32"
|
95
|
+
}
|
96
|
+
],
|
97
|
+
"name": "NoSuchKeyset",
|
98
|
+
"type": "error"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"inputs": [],
|
102
|
+
"name": "NotBatchPoster",
|
103
|
+
"type": "error"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"inputs": [],
|
107
|
+
"name": "NotForked",
|
108
|
+
"type": "error"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"inputs": [],
|
112
|
+
"name": "NotOrigin",
|
113
|
+
"type": "error"
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"inputs": [
|
117
|
+
{
|
118
|
+
"internalType": "address",
|
119
|
+
"name": "sender",
|
120
|
+
"type": "address"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"internalType": "address",
|
124
|
+
"name": "owner",
|
125
|
+
"type": "address"
|
126
|
+
}
|
127
|
+
],
|
128
|
+
"name": "NotOwner",
|
129
|
+
"type": "error"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"anonymous": false,
|
133
|
+
"inputs": [
|
134
|
+
{
|
135
|
+
"indexed": true,
|
136
|
+
"internalType": "uint256",
|
137
|
+
"name": "messageNum",
|
138
|
+
"type": "uint256"
|
139
|
+
},
|
140
|
+
{
|
141
|
+
"indexed": false,
|
142
|
+
"internalType": "bytes",
|
143
|
+
"name": "data",
|
144
|
+
"type": "bytes"
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"name": "InboxMessageDelivered",
|
148
|
+
"type": "event"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"anonymous": false,
|
152
|
+
"inputs": [
|
153
|
+
{
|
154
|
+
"indexed": true,
|
155
|
+
"internalType": "uint256",
|
156
|
+
"name": "messageNum",
|
157
|
+
"type": "uint256"
|
158
|
+
}
|
159
|
+
],
|
160
|
+
"name": "InboxMessageDeliveredFromOrigin",
|
161
|
+
"type": "event"
|
162
|
+
},
|
163
|
+
{
|
164
|
+
"anonymous": false,
|
165
|
+
"inputs": [
|
166
|
+
{
|
167
|
+
"indexed": true,
|
168
|
+
"internalType": "bytes32",
|
169
|
+
"name": "keysetHash",
|
170
|
+
"type": "bytes32"
|
171
|
+
}
|
172
|
+
],
|
173
|
+
"name": "InvalidateKeyset",
|
174
|
+
"type": "event"
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"anonymous": false,
|
178
|
+
"inputs": [
|
179
|
+
{
|
180
|
+
"indexed": true,
|
181
|
+
"internalType": "uint256",
|
182
|
+
"name": "id",
|
183
|
+
"type": "uint256"
|
184
|
+
}
|
185
|
+
],
|
186
|
+
"name": "OwnerFunctionCalled",
|
187
|
+
"type": "event"
|
188
|
+
},
|
189
|
+
{
|
190
|
+
"anonymous": false,
|
191
|
+
"inputs": [
|
192
|
+
{
|
193
|
+
"indexed": true,
|
194
|
+
"internalType": "uint256",
|
195
|
+
"name": "batchSequenceNumber",
|
196
|
+
"type": "uint256"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"indexed": false,
|
200
|
+
"internalType": "bytes",
|
201
|
+
"name": "data",
|
202
|
+
"type": "bytes"
|
203
|
+
}
|
204
|
+
],
|
205
|
+
"name": "SequencerBatchData",
|
206
|
+
"type": "event"
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"anonymous": false,
|
210
|
+
"inputs": [
|
211
|
+
{
|
212
|
+
"indexed": true,
|
213
|
+
"internalType": "uint256",
|
214
|
+
"name": "batchSequenceNumber",
|
215
|
+
"type": "uint256"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"indexed": true,
|
219
|
+
"internalType": "bytes32",
|
220
|
+
"name": "beforeAcc",
|
221
|
+
"type": "bytes32"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"indexed": true,
|
225
|
+
"internalType": "bytes32",
|
226
|
+
"name": "afterAcc",
|
227
|
+
"type": "bytes32"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"indexed": false,
|
231
|
+
"internalType": "bytes32",
|
232
|
+
"name": "delayedAcc",
|
233
|
+
"type": "bytes32"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"indexed": false,
|
237
|
+
"internalType": "uint256",
|
238
|
+
"name": "afterDelayedMessagesRead",
|
239
|
+
"type": "uint256"
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"components": [
|
243
|
+
{
|
244
|
+
"internalType": "uint64",
|
245
|
+
"name": "minTimestamp",
|
246
|
+
"type": "uint64"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"internalType": "uint64",
|
250
|
+
"name": "maxTimestamp",
|
251
|
+
"type": "uint64"
|
252
|
+
},
|
253
|
+
{
|
254
|
+
"internalType": "uint64",
|
255
|
+
"name": "minBlockNumber",
|
256
|
+
"type": "uint64"
|
257
|
+
},
|
258
|
+
{
|
259
|
+
"internalType": "uint64",
|
260
|
+
"name": "maxBlockNumber",
|
261
|
+
"type": "uint64"
|
262
|
+
}
|
263
|
+
],
|
264
|
+
"indexed": false,
|
265
|
+
"internalType": "struct ISequencerInbox.TimeBounds",
|
266
|
+
"name": "timeBounds",
|
267
|
+
"type": "tuple"
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"indexed": false,
|
271
|
+
"internalType": "enum ISequencerInbox.BatchDataLocation",
|
272
|
+
"name": "dataLocation",
|
273
|
+
"type": "uint8"
|
274
|
+
}
|
275
|
+
],
|
276
|
+
"name": "SequencerBatchDelivered",
|
277
|
+
"type": "event"
|
278
|
+
},
|
279
|
+
{
|
280
|
+
"anonymous": false,
|
281
|
+
"inputs": [
|
282
|
+
{
|
283
|
+
"indexed": true,
|
284
|
+
"internalType": "bytes32",
|
285
|
+
"name": "keysetHash",
|
286
|
+
"type": "bytes32"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"indexed": false,
|
290
|
+
"internalType": "bytes",
|
291
|
+
"name": "keysetBytes",
|
292
|
+
"type": "bytes"
|
293
|
+
}
|
294
|
+
],
|
295
|
+
"name": "SetValidKeyset",
|
296
|
+
"type": "event"
|
297
|
+
},
|
298
|
+
{
|
299
|
+
"inputs": [],
|
300
|
+
"name": "DATA_AUTHENTICATED_FLAG",
|
301
|
+
"outputs": [
|
302
|
+
{
|
303
|
+
"internalType": "bytes1",
|
304
|
+
"name": "",
|
305
|
+
"type": "bytes1"
|
306
|
+
}
|
307
|
+
],
|
308
|
+
"stateMutability": "view",
|
309
|
+
"type": "function"
|
310
|
+
},
|
311
|
+
{
|
312
|
+
"inputs": [],
|
313
|
+
"name": "HEADER_LENGTH",
|
314
|
+
"outputs": [
|
315
|
+
{
|
316
|
+
"internalType": "uint256",
|
317
|
+
"name": "",
|
318
|
+
"type": "uint256"
|
319
|
+
}
|
320
|
+
],
|
321
|
+
"stateMutability": "view",
|
322
|
+
"type": "function"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"inputs": [
|
326
|
+
{
|
327
|
+
"internalType": "uint256",
|
328
|
+
"name": "sequenceNumber",
|
329
|
+
"type": "uint256"
|
330
|
+
},
|
331
|
+
{
|
332
|
+
"internalType": "bytes",
|
333
|
+
"name": "data",
|
334
|
+
"type": "bytes"
|
335
|
+
},
|
336
|
+
{
|
337
|
+
"internalType": "uint256",
|
338
|
+
"name": "afterDelayedMessagesRead",
|
339
|
+
"type": "uint256"
|
340
|
+
},
|
341
|
+
{
|
342
|
+
"internalType": "contract IGasRefunder",
|
343
|
+
"name": "gasRefunder",
|
344
|
+
"type": "address"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"internalType": "uint256",
|
348
|
+
"name": "prevMessageCount",
|
349
|
+
"type": "uint256"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"internalType": "uint256",
|
353
|
+
"name": "newMessageCount",
|
354
|
+
"type": "uint256"
|
355
|
+
}
|
356
|
+
],
|
357
|
+
"name": "addSequencerL2Batch",
|
358
|
+
"outputs": [],
|
359
|
+
"stateMutability": "nonpayable",
|
360
|
+
"type": "function"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"inputs": [
|
364
|
+
{
|
365
|
+
"internalType": "uint256",
|
366
|
+
"name": "sequenceNumber",
|
367
|
+
"type": "uint256"
|
368
|
+
},
|
369
|
+
{
|
370
|
+
"internalType": "bytes",
|
371
|
+
"name": "data",
|
372
|
+
"type": "bytes"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"internalType": "uint256",
|
376
|
+
"name": "afterDelayedMessagesRead",
|
377
|
+
"type": "uint256"
|
378
|
+
},
|
379
|
+
{
|
380
|
+
"internalType": "contract IGasRefunder",
|
381
|
+
"name": "gasRefunder",
|
382
|
+
"type": "address"
|
383
|
+
}
|
384
|
+
],
|
385
|
+
"name": "addSequencerL2BatchFromOrigin",
|
386
|
+
"outputs": [],
|
387
|
+
"stateMutability": "nonpayable",
|
388
|
+
"type": "function"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"inputs": [
|
392
|
+
{
|
393
|
+
"internalType": "uint256",
|
394
|
+
"name": "sequenceNumber",
|
395
|
+
"type": "uint256"
|
396
|
+
},
|
397
|
+
{
|
398
|
+
"internalType": "bytes",
|
399
|
+
"name": "data",
|
400
|
+
"type": "bytes"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"internalType": "uint256",
|
404
|
+
"name": "afterDelayedMessagesRead",
|
405
|
+
"type": "uint256"
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"internalType": "contract IGasRefunder",
|
409
|
+
"name": "gasRefunder",
|
410
|
+
"type": "address"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"internalType": "uint256",
|
414
|
+
"name": "prevMessageCount",
|
415
|
+
"type": "uint256"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"internalType": "uint256",
|
419
|
+
"name": "newMessageCount",
|
420
|
+
"type": "uint256"
|
421
|
+
}
|
422
|
+
],
|
423
|
+
"name": "addSequencerL2BatchFromOrigin",
|
424
|
+
"outputs": [],
|
425
|
+
"stateMutability": "nonpayable",
|
426
|
+
"type": "function"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"inputs": [],
|
430
|
+
"name": "batchCount",
|
431
|
+
"outputs": [
|
432
|
+
{
|
433
|
+
"internalType": "uint256",
|
434
|
+
"name": "",
|
435
|
+
"type": "uint256"
|
436
|
+
}
|
437
|
+
],
|
438
|
+
"stateMutability": "view",
|
439
|
+
"type": "function"
|
440
|
+
},
|
441
|
+
{
|
442
|
+
"inputs": [],
|
443
|
+
"name": "bridge",
|
444
|
+
"outputs": [
|
445
|
+
{
|
446
|
+
"internalType": "contract IBridge",
|
447
|
+
"name": "",
|
448
|
+
"type": "address"
|
449
|
+
}
|
450
|
+
],
|
451
|
+
"stateMutability": "view",
|
452
|
+
"type": "function"
|
453
|
+
},
|
454
|
+
{
|
455
|
+
"inputs": [
|
456
|
+
{
|
457
|
+
"internalType": "bytes32",
|
458
|
+
"name": "",
|
459
|
+
"type": "bytes32"
|
460
|
+
}
|
461
|
+
],
|
462
|
+
"name": "dasKeySetInfo",
|
463
|
+
"outputs": [
|
464
|
+
{
|
465
|
+
"internalType": "bool",
|
466
|
+
"name": "isValidKeyset",
|
467
|
+
"type": "bool"
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"internalType": "uint64",
|
471
|
+
"name": "creationBlock",
|
472
|
+
"type": "uint64"
|
473
|
+
}
|
474
|
+
],
|
475
|
+
"stateMutability": "view",
|
476
|
+
"type": "function"
|
477
|
+
},
|
478
|
+
{
|
479
|
+
"inputs": [
|
480
|
+
{
|
481
|
+
"internalType": "uint256",
|
482
|
+
"name": "_totalDelayedMessagesRead",
|
483
|
+
"type": "uint256"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"internalType": "uint8",
|
487
|
+
"name": "kind",
|
488
|
+
"type": "uint8"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"internalType": "uint64[2]",
|
492
|
+
"name": "l1BlockAndTime",
|
493
|
+
"type": "uint64[2]"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"internalType": "uint256",
|
497
|
+
"name": "baseFeeL1",
|
498
|
+
"type": "uint256"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"internalType": "address",
|
502
|
+
"name": "sender",
|
503
|
+
"type": "address"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"internalType": "bytes32",
|
507
|
+
"name": "messageDataHash",
|
508
|
+
"type": "bytes32"
|
509
|
+
}
|
510
|
+
],
|
511
|
+
"name": "forceInclusion",
|
512
|
+
"outputs": [],
|
513
|
+
"stateMutability": "nonpayable",
|
514
|
+
"type": "function"
|
515
|
+
},
|
516
|
+
{
|
517
|
+
"inputs": [
|
518
|
+
{
|
519
|
+
"internalType": "bytes32",
|
520
|
+
"name": "ksHash",
|
521
|
+
"type": "bytes32"
|
522
|
+
}
|
523
|
+
],
|
524
|
+
"name": "getKeysetCreationBlock",
|
525
|
+
"outputs": [
|
526
|
+
{
|
527
|
+
"internalType": "uint256",
|
528
|
+
"name": "",
|
529
|
+
"type": "uint256"
|
530
|
+
}
|
531
|
+
],
|
532
|
+
"stateMutability": "view",
|
533
|
+
"type": "function"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"inputs": [
|
537
|
+
{
|
538
|
+
"internalType": "uint256",
|
539
|
+
"name": "index",
|
540
|
+
"type": "uint256"
|
541
|
+
}
|
542
|
+
],
|
543
|
+
"name": "inboxAccs",
|
544
|
+
"outputs": [
|
545
|
+
{
|
546
|
+
"internalType": "bytes32",
|
547
|
+
"name": "",
|
548
|
+
"type": "bytes32"
|
549
|
+
}
|
550
|
+
],
|
551
|
+
"stateMutability": "view",
|
552
|
+
"type": "function"
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"inputs": [
|
556
|
+
{
|
557
|
+
"internalType": "contract IBridge",
|
558
|
+
"name": "bridge_",
|
559
|
+
"type": "address"
|
560
|
+
},
|
561
|
+
{
|
562
|
+
"components": [
|
563
|
+
{
|
564
|
+
"internalType": "uint256",
|
565
|
+
"name": "delayBlocks",
|
566
|
+
"type": "uint256"
|
567
|
+
},
|
568
|
+
{
|
569
|
+
"internalType": "uint256",
|
570
|
+
"name": "futureBlocks",
|
571
|
+
"type": "uint256"
|
572
|
+
},
|
573
|
+
{
|
574
|
+
"internalType": "uint256",
|
575
|
+
"name": "delaySeconds",
|
576
|
+
"type": "uint256"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"internalType": "uint256",
|
580
|
+
"name": "futureSeconds",
|
581
|
+
"type": "uint256"
|
582
|
+
}
|
583
|
+
],
|
584
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
585
|
+
"name": "maxTimeVariation_",
|
586
|
+
"type": "tuple"
|
587
|
+
}
|
588
|
+
],
|
589
|
+
"name": "initialize",
|
590
|
+
"outputs": [],
|
591
|
+
"stateMutability": "nonpayable",
|
592
|
+
"type": "function"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"inputs": [
|
596
|
+
{
|
597
|
+
"internalType": "bytes32",
|
598
|
+
"name": "ksHash",
|
599
|
+
"type": "bytes32"
|
600
|
+
}
|
601
|
+
],
|
602
|
+
"name": "invalidateKeysetHash",
|
603
|
+
"outputs": [],
|
604
|
+
"stateMutability": "nonpayable",
|
605
|
+
"type": "function"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"inputs": [
|
609
|
+
{
|
610
|
+
"internalType": "address",
|
611
|
+
"name": "",
|
612
|
+
"type": "address"
|
613
|
+
}
|
614
|
+
],
|
615
|
+
"name": "isBatchPoster",
|
616
|
+
"outputs": [
|
617
|
+
{
|
618
|
+
"internalType": "bool",
|
619
|
+
"name": "",
|
620
|
+
"type": "bool"
|
621
|
+
}
|
622
|
+
],
|
623
|
+
"stateMutability": "view",
|
624
|
+
"type": "function"
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"inputs": [
|
628
|
+
{
|
629
|
+
"internalType": "address",
|
630
|
+
"name": "",
|
631
|
+
"type": "address"
|
632
|
+
}
|
633
|
+
],
|
634
|
+
"name": "isSequencer",
|
635
|
+
"outputs": [
|
636
|
+
{
|
637
|
+
"internalType": "bool",
|
638
|
+
"name": "",
|
639
|
+
"type": "bool"
|
640
|
+
}
|
641
|
+
],
|
642
|
+
"stateMutability": "view",
|
643
|
+
"type": "function"
|
644
|
+
},
|
645
|
+
{
|
646
|
+
"inputs": [
|
647
|
+
{
|
648
|
+
"internalType": "bytes32",
|
649
|
+
"name": "ksHash",
|
650
|
+
"type": "bytes32"
|
651
|
+
}
|
652
|
+
],
|
653
|
+
"name": "isValidKeysetHash",
|
654
|
+
"outputs": [
|
655
|
+
{
|
656
|
+
"internalType": "bool",
|
657
|
+
"name": "",
|
658
|
+
"type": "bool"
|
659
|
+
}
|
660
|
+
],
|
661
|
+
"stateMutability": "view",
|
662
|
+
"type": "function"
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"inputs": [],
|
666
|
+
"name": "maxTimeVariation",
|
667
|
+
"outputs": [
|
668
|
+
{
|
669
|
+
"internalType": "uint256",
|
670
|
+
"name": "delayBlocks",
|
671
|
+
"type": "uint256"
|
672
|
+
},
|
673
|
+
{
|
674
|
+
"internalType": "uint256",
|
675
|
+
"name": "futureBlocks",
|
676
|
+
"type": "uint256"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"internalType": "uint256",
|
680
|
+
"name": "delaySeconds",
|
681
|
+
"type": "uint256"
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"internalType": "uint256",
|
685
|
+
"name": "futureSeconds",
|
686
|
+
"type": "uint256"
|
687
|
+
}
|
688
|
+
],
|
689
|
+
"stateMutability": "view",
|
690
|
+
"type": "function"
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"inputs": [],
|
694
|
+
"name": "removeDelayAfterFork",
|
695
|
+
"outputs": [],
|
696
|
+
"stateMutability": "nonpayable",
|
697
|
+
"type": "function"
|
698
|
+
},
|
699
|
+
{
|
700
|
+
"inputs": [],
|
701
|
+
"name": "rollup",
|
702
|
+
"outputs": [
|
703
|
+
{
|
704
|
+
"internalType": "contract IOwnable",
|
705
|
+
"name": "",
|
706
|
+
"type": "address"
|
707
|
+
}
|
708
|
+
],
|
709
|
+
"stateMutability": "view",
|
710
|
+
"type": "function"
|
711
|
+
},
|
712
|
+
{
|
713
|
+
"inputs": [
|
714
|
+
{
|
715
|
+
"internalType": "address",
|
716
|
+
"name": "addr",
|
717
|
+
"type": "address"
|
718
|
+
},
|
719
|
+
{
|
720
|
+
"internalType": "bool",
|
721
|
+
"name": "isBatchPoster_",
|
722
|
+
"type": "bool"
|
723
|
+
}
|
724
|
+
],
|
725
|
+
"name": "setIsBatchPoster",
|
726
|
+
"outputs": [],
|
727
|
+
"stateMutability": "nonpayable",
|
728
|
+
"type": "function"
|
729
|
+
},
|
730
|
+
{
|
731
|
+
"inputs": [
|
732
|
+
{
|
733
|
+
"internalType": "address",
|
734
|
+
"name": "addr",
|
735
|
+
"type": "address"
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"internalType": "bool",
|
739
|
+
"name": "isSequencer_",
|
740
|
+
"type": "bool"
|
741
|
+
}
|
742
|
+
],
|
743
|
+
"name": "setIsSequencer",
|
744
|
+
"outputs": [],
|
745
|
+
"stateMutability": "nonpayable",
|
746
|
+
"type": "function"
|
747
|
+
},
|
748
|
+
{
|
749
|
+
"inputs": [
|
750
|
+
{
|
751
|
+
"components": [
|
752
|
+
{
|
753
|
+
"internalType": "uint256",
|
754
|
+
"name": "delayBlocks",
|
755
|
+
"type": "uint256"
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"internalType": "uint256",
|
759
|
+
"name": "futureBlocks",
|
760
|
+
"type": "uint256"
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"internalType": "uint256",
|
764
|
+
"name": "delaySeconds",
|
765
|
+
"type": "uint256"
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"internalType": "uint256",
|
769
|
+
"name": "futureSeconds",
|
770
|
+
"type": "uint256"
|
771
|
+
}
|
772
|
+
],
|
773
|
+
"internalType": "struct ISequencerInbox.MaxTimeVariation",
|
774
|
+
"name": "maxTimeVariation_",
|
775
|
+
"type": "tuple"
|
776
|
+
}
|
777
|
+
],
|
778
|
+
"name": "setMaxTimeVariation",
|
779
|
+
"outputs": [],
|
780
|
+
"stateMutability": "nonpayable",
|
781
|
+
"type": "function"
|
782
|
+
},
|
783
|
+
{
|
784
|
+
"inputs": [
|
785
|
+
{
|
786
|
+
"internalType": "bytes",
|
787
|
+
"name": "keysetBytes",
|
788
|
+
"type": "bytes"
|
789
|
+
}
|
790
|
+
],
|
791
|
+
"name": "setValidKeyset",
|
792
|
+
"outputs": [],
|
793
|
+
"stateMutability": "nonpayable",
|
794
|
+
"type": "function"
|
795
|
+
},
|
796
|
+
{
|
797
|
+
"inputs": [],
|
798
|
+
"name": "totalDelayedMessagesRead",
|
799
|
+
"outputs": [
|
800
|
+
{
|
801
|
+
"internalType": "uint256",
|
802
|
+
"name": "",
|
803
|
+
"type": "uint256"
|
804
|
+
}
|
805
|
+
],
|
806
|
+
"stateMutability": "view",
|
807
|
+
"type": "function"
|
808
|
+
}
|
809
|
+
],
|
810
|
+
"bytecode": "0x60c0604052306080524660a05234801561001857600080fd5b5060805160a0516124a961003e6000396000610ddb0152600061046501526124a96000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806384420860116100c3578063d9dd67ab1161007c578063d9dd67ab14610334578063e0bc972914610347578063e5a358c81461035a578063e78cea921461037e578063ebea461d14610391578063f1981578146103c757600080fd5b806384420860146102b55780638f111f3c146102c857806396cc5c78146102db578063b31761f8146102e3578063cb23bcb5146102f6578063d1ce8da81461032157600080fd5b80636d46e987116101155780636d46e987146101ee5780636e7df3e7146102115780636f12b0c914610224578063715ea34b1461023757806371c3e6fe146102895780637fa3a40e146102ac57600080fd5b806306f130561461015d5780631637be48146101785780631f7a92b2146101ab5780631f956632146101c0578063258f0495146101d357806327957a49146101e6575b600080fd5b6101656103da565b6040519081526020015b60405180910390f35b61019b610186366004611cf0565b60009081526008602052604090205460ff1690565b604051901515815260200161016f565b6101be6101b9366004611d21565b61045a565b005b6101be6101ce366004611d70565b610612565b6101656101e1366004611cf0565b610718565b610165602881565b61019b6101fc366004611da9565b60096020526000908152604090205460ff1681565b6101be61021f366004611d70565b610781565b6101be610232366004611e15565b610887565b61026a610245366004611cf0565b60086020526000908152604090205460ff81169061010090046001600160401b031682565b6040805192151583526001600160401b0390911660208301520161016f565b61019b610297366004611da9565b60036020526000908152604090205460ff1681565b61016560005481565b6101be6102c3366004611cf0565b610a76565b6101be6102d6366004611e7f565b610bc9565b6101be610dd8565b6101be6102f1366004611efb565b610e4f565b600254610309906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b6101be61032f366004611f6e565b610f4f565b610165610342366004611cf0565b611197565b6101be610355366004611e7f565b61121a565b610365600160fe1b81565b6040516001600160f81b0319909116815260200161016f565b600154610309906001600160a01b031681565b6004546005546006546007546103a79392919084565b60408051948552602085019390935291830152606082015260800161016f565b6101be6103d5366004611faf565b61136f565b600154604080516221048360e21b815290516000926001600160a01b0316916284120c916004808301926020929190829003018186803b15801561041d57600080fd5b505afa158015610431573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610455919061201f565b905090565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156104ed5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b6001546001600160a01b03161561051757604051633bcd329760e21b815260040160405180910390fd5b6001600160a01b03821661053e57604051631ad0f74360e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384169081179091556040805163cb23bcb560e01b8152905163cb23bcb591600480820192602092909190829003018186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ca9190612038565b600280546001600160a01b0319166001600160a01b03929092169190911790558035600490815560208201356005556040820135600655606082013560075581905b50505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561066057600080fd5b505afa158015610674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106989190612038565b6001600160a01b0316336001600160a01b0316146106da57600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b6001600160a01b038216600090815260096020526040808220805460ff19168415151790555160049160008051602061245483398151915291a25050565b600081815260086020908152604080832081518083019092525460ff81161515825261010090046001600160401b03169181018290529061076e5760405162f20c5d60e01b8152600481018490526024016104e4565b602001516001600160401b031692915050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156107cf57600080fd5b505afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108079190612038565b6001600160a01b0316336001600160a01b03161461084957600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b6001600160a01b038216600090815260036020526040808220805460ff19168415151790555160019160008051602061245483398151915291a25050565b8060005a90503332146108ad5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff166108dd57604051632dd9fc9760e01b815260040160405180910390fd5b6000806108eb888888611752565b90925090506000808080610902868b8d84806118c5565b93509350935093508c84146109345760405163ac7411c960e01b815260048101859052602481018e90526044016104e4565b80838e600080516020612434833981519152856000548a600060405161095d949392919061206f565b60405180910390a4505050506001600160a01b038416159150610a6d905057366000602061098c83601f6120f9565b6109969190612111565b90506102006109a6600283612217565b6109b09190612111565b6109bb826006612226565b6109c591906120f9565b6109cf90846120f9565b92503332146109dd57600091505b836001600160a01b031663e3db8a49335a6109f89087612245565b856040518463ffffffff1660e01b8152600401610a179392919061225c565b602060405180830381600087803b158015610a3157600080fd5b505af1158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a69919061227d565b5050505b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc9190612038565b6001600160a01b0316336001600160a01b031614610b3e57600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b60008181526008602052604090205460ff16610b6f5760405162f20c5d60e01b8152600481018290526024016104e4565b600081815260086020526040808220805460ff191690555182917f5cb4218b272fd214168ac43e90fb4d05d6c36f0b17ffb4c2dd07c234d744eb2a91a260405160039060008051602061245483398151915290600090a250565b8260005a9050333214610bef5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610c1f57604051632dd9fc9760e01b815260040160405180910390fd5b600080610c2d8a8a8a611752565b90925090508a81838b8b8a8a6000808080610c4b89888a89896118c5565b93509350935093508a8414158015610c6557506000198b14155b15610c8d5760405163ac7411c960e01b815260048101859052602481018c90526044016104e4565b808385600080516020612434833981519152856000548f6000604051610cb6949392919061206f565b60405180910390a4505050506001600160a01b038b16159850610dcd975050505050505050573660006020610cec83601f6120f9565b610cf69190612111565b9050610200610d06600283612217565b610d109190612111565b610d1b826006612226565b610d2591906120f9565b610d2f90846120f9565b9250333214610d3d57600091505b836001600160a01b031663e3db8a49335a610d589087612245565b856040518463ffffffff1660e01b8152600401610d779392919061225c565b602060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc9919061227d565b5050505b505050505050505050565b467f00000000000000000000000000000000000000000000000000000000000000001415610e1957604051635180dd8360e11b815260040160405180910390fd5b60408051608081018252600180825260208201819052918101829052606001819052600481905560058190556006819055600755565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed59190612038565b6001600160a01b0316336001600160a01b031614610f1757600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b80516004556020810151600555604080820151600655606082015160075551600090600080516020612454833981519152908290a250565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9d57600080fd5b505afa158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190612038565b6001600160a01b0316336001600160a01b03161461101757600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b6000828260405161102992919061229a565b604051908190038120607f60f91b6020830152602182015260410160408051601f1981840301815291905280516020909101209050600160ff1b81186201000083106110ad5760405162461bcd60e51b81526020600482015260136024820152726b657973657420697320746f6f206c6172676560681b60448201526064016104e4565b60008181526008602052604090205460ff16156110e057604051637d17eeed60e11b8152600481018290526024016104e4565b60408051808201825260018152436001600160401b0390811660208084019182526000868152600890915284902092518354915168ffffffffffffffffff1990921690151568ffffffffffffffff0019161761010091909216021790555181907fabca9b7986bc22ad0160eb0cb88ae75411eacfba4052af0b457a9335ef6557229061116f90879087906122aa565b60405180910390a260405160029060008051602061245483398151915290600090a250505050565b6001546040516316bf557960e01b8152600481018390526000916001600160a01b0316906316bf55799060240160206040518083038186803b1580156111dc57600080fd5b505afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611214919061201f565b92915050565b8260005a3360009081526003602052604090205490915060ff1615801561124c57506002546001600160a01b03163314155b1561126a57604051632dd9fc9760e01b815260040160405180910390fd5b6000806112788a8a8a611752565b909250905060008b82848b8a8a86808061129587878388886118c5565b929c5090945092509050888a148015906112b157506000198914155b156112d95760405163ac7411c960e01b8152600481018b9052602481018a90526044016104e4565b80838b600080516020612434833981519152856000548d6001604051611302949392919061206f565b60405180910390a4505050505050505050807ffe325ca1efe4c5c1062c981c3ee74b781debe4ea9440306a96d2a55759c66c208c8c6040516113459291906122aa565b60405180910390a25050506001600160a01b03821615610dcd573660006020610cec83601f6120f9565b600054861161139157604051633eb9f37d60e11b815260040160405180910390fd5b600061144186846113a560208901896122ef565b6113b560408a0160208b016122ef565b6113c060018d612245565b6040805160f89690961b6001600160f81b03191660208088019190915260609590951b6001600160601b031916602187015260c093841b6001600160c01b031990811660358801529290931b909116603d85015260458401526065830188905260858084018790528151808503909101815260a59093019052815191012090565b600454909150439061145660208801886122ef565b6001600160401b031661146991906120f9565b106114875760405163ad3515d960e01b815260040160405180910390fd5b600654429061149c60408801602089016122ef565b6001600160401b03166114af91906120f9565b106114cd5760405163c76d17e560e01b815260040160405180910390fd5b60006001881115611565576001546001600160a01b031663d5719dc26114f460028b612245565b6040518263ffffffff1660e01b815260040161151291815260200190565b60206040518083038186803b15801561152a57600080fd5b505afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611562919061201f565b90505b60408051602080820184905281830185905282518083038401815260609092019092528051910120600180546001600160a01b03169063d5719dc2906115ab908c612245565b6040518263ffffffff1660e01b81526004016115c991815260200190565b60206040518083038186803b1580156115e157600080fd5b505afa1580156115f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611619919061201f565b14611637576040516313947fd760e01b815260040160405180910390fd5b6000806116438a611b62565b9150915060008a90506000600160009054906101000a90046001600160a01b03166001600160a01b0316635fca4a166040518163ffffffff1660e01b815260040160206040518083038186803b15801561169c57600080fd5b505afa1580156116b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d4919061201f565b9050600080548d836116e691906120f9565b6116f09190612245565b90506000806000806117068988600089896118c5565b9350935093509350808385600080516020612434833981519152856000548d6002604051611737949392919061206f565b60405180910390a45050505050505050505050505050505050565b600061175c611cc9565b8484600061176b8260286120f9565b90506201cccc81111561179d57604051634634691b60e01b8152600481018290526201cccc60248201526044016104e4565b81158015906117d55750600160fe1b8084846000816117be576117be6122d9565b9050013560f81c60f81b166001600160f81b031916145b156117f357604051631f97007f60e01b815260040160405180910390fd5b60218210801590611821575082826000818110611812576118126122d9565b90910135600160ff1b16151590505b15611875576000611836602160018587612318565b61183f91612342565b60008181526008602052604090205490915060ff166118735760405162f20c5d60e01b8152600481018290526024016104e4565b505b60008061188188611b8e565b915091506000828b8b60405160200161189c9392919061238c565b60408051808303601f1901815291905280516020909101209b919a509098505050505050505050565b6000806000806000548810156118ee57604051633eb9f37d60e11b815260040160405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663eca067ad6040518163ffffffff1660e01b815260040160206040518083038186803b15801561193c57600080fd5b505afa158015611950573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611974919061201f565b8811156119945760405163925f8bd360e01b815260040160405180910390fd5b60015460405163432cc52b60e11b8152600481018b9052602481018a905260448101889052606481018790526001600160a01b03909116906386598a5690608401608060405180830381600087803b1580156119ef57600080fd5b505af1158015611a03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2791906123b4565b60008c9055929650909450925090508615611b56576040805142602082015233606081901b6001600160601b03191692820192909252605481018b90526074810186905248609482015260009060b40160408051808303601f190181529082905260015481516020830120637a88b10760e01b84526001600160a01b0386811660048601526024850191909152919350600092911690637a88b10790604401602060405180830381600087803b158015611ae057600080fd5b505af1158015611af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b18919061201f565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b83604051611b4a91906123ea565b60405180910390a25050505b95509550955095915050565b6000611b6c611cc9565b600080611b7885611b8e565b8151602090920191909120969095509350505050565b6060611b98611cc9565b6000611ba2611c35565b90506000816000015182602001518360400151846060015188604051602001611c0a95949392919060c095861b6001600160c01b0319908116825294861b8516600882015292851b8416601084015290841b8316601883015290921b16602082015260280190565b60405160208183030381529060405290506028815114611c2c57611c2c61241d565b94909350915050565b611c3d611cc9565b611c45611cc9565b600654421115611c6857600654611c5c9042612245565b6001600160401b031681525b600754611c7590426120f9565b6001600160401b03166020820152600454431115611ca957600454611c9a9043612245565b6001600160401b031660408201525b600554611cb690436120f9565b6001600160401b03166060820152919050565b60408051608081018252600080825260208201819052918101829052606081019190915290565b600060208284031215611d0257600080fd5b5035919050565b6001600160a01b0381168114611d1e57600080fd5b50565b60008082840360a0811215611d3557600080fd5b8335611d4081611d09565b92506080601f1982011215611d5457600080fd5b506020830190509250929050565b8015158114611d1e57600080fd5b60008060408385031215611d8357600080fd5b8235611d8e81611d09565b91506020830135611d9e81611d62565b809150509250929050565b600060208284031215611dbb57600080fd5b8135611dc681611d09565b9392505050565b60008083601f840112611ddf57600080fd5b5081356001600160401b03811115611df657600080fd5b602083019150836020828501011115611e0e57600080fd5b9250929050565b600080600080600060808688031215611e2d57600080fd5b8535945060208601356001600160401b03811115611e4a57600080fd5b611e5688828901611dcd565b909550935050604086013591506060860135611e7181611d09565b809150509295509295909350565b600080600080600080600060c0888a031215611e9a57600080fd5b8735965060208801356001600160401b03811115611eb757600080fd5b611ec38a828b01611dcd565b909750955050604088013593506060880135611ede81611d09565b969995985093969295946080840135945060a09093013592915050565b600060808284031215611f0d57600080fd5b604051608081018181106001600160401b0382111715611f3d57634e487b7160e01b600052604160045260246000fd5b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b60008060208385031215611f8157600080fd5b82356001600160401b03811115611f9757600080fd5b611fa385828601611dcd565b90969095509350505050565b60008060008060008060e08789031215611fc857600080fd5b86359550602087013560ff81168114611fe057600080fd5b94506080870188811115611ff357600080fd5b60408801945035925060a087013561200a81611d09565b8092505060c087013590509295509295509295565b60006020828403121561203157600080fd5b5051919050565b60006020828403121561204a57600080fd5b8151611dc681611d09565b6001600160a01b0392831681529116602082015260400190565b600060e0820190508582528460208301526001600160401b038085511660408401528060208601511660608401528060408601511660808401528060608601511660a084015250600383106120d457634e487b7160e01b600052602160045260246000fd5b8260c083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561210c5761210c6120e3565b500190565b60008261212e57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561216e578160001904821115612154576121546120e3565b8085161561216157918102915b93841c9390800290612138565b509250929050565b60008261218557506001611214565b8161219257506000611214565b81600181146121a857600281146121b2576121ce565b6001915050611214565b60ff8411156121c3576121c36120e3565b50506001821b611214565b5060208310610133831016604e8410600b84101617156121f1575081810a611214565b6121fb8383612133565b806000190482111561220f5761220f6120e3565b029392505050565b6000611dc660ff841683612176565b6000816000190483118215151615612240576122406120e3565b500290565b600082821015612257576122576120e3565b500390565b6001600160a01b039390931683526020830191909152604082015260600190565b60006020828403121561228f57600080fd5b8151611dc681611d62565b8183823760009101908152919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561230157600080fd5b81356001600160401b0381168114611dc657600080fd5b6000808585111561232857600080fd5b8386111561233557600080fd5b5050820193919092039150565b8035602083101561121457600019602084900360031b1b1692915050565b60005b8381101561237b578181015183820152602001612363565b8381111561060c5750506000910152565b6000845161239e818460208901612360565b8201838582376000930192835250909392505050565b600080600080608085870312156123ca57600080fd5b505082516020840151604085015160609095015191969095509092509050565b6020815260008251806020840152612409816040850160208701612360565b601f01601f19169190910160400192915050565b634e487b7160e01b600052600160045260246000fdfe7394f4a19a13c7b92b5bb71033245305946ef78452f7b4986ac1390b5df4ebd7ea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456ea264697066735822122012475af647235e53d42a4d1d68a057e04cb2a16086e83a4141efd6e7885818c664736f6c63430008090033",
|
811
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106101585760003560e01c806384420860116100c3578063d9dd67ab1161007c578063d9dd67ab14610334578063e0bc972914610347578063e5a358c81461035a578063e78cea921461037e578063ebea461d14610391578063f1981578146103c757600080fd5b806384420860146102b55780638f111f3c146102c857806396cc5c78146102db578063b31761f8146102e3578063cb23bcb5146102f6578063d1ce8da81461032157600080fd5b80636d46e987116101155780636d46e987146101ee5780636e7df3e7146102115780636f12b0c914610224578063715ea34b1461023757806371c3e6fe146102895780637fa3a40e146102ac57600080fd5b806306f130561461015d5780631637be48146101785780631f7a92b2146101ab5780631f956632146101c0578063258f0495146101d357806327957a49146101e6575b600080fd5b6101656103da565b6040519081526020015b60405180910390f35b61019b610186366004611cf0565b60009081526008602052604090205460ff1690565b604051901515815260200161016f565b6101be6101b9366004611d21565b61045a565b005b6101be6101ce366004611d70565b610612565b6101656101e1366004611cf0565b610718565b610165602881565b61019b6101fc366004611da9565b60096020526000908152604090205460ff1681565b6101be61021f366004611d70565b610781565b6101be610232366004611e15565b610887565b61026a610245366004611cf0565b60086020526000908152604090205460ff81169061010090046001600160401b031682565b6040805192151583526001600160401b0390911660208301520161016f565b61019b610297366004611da9565b60036020526000908152604090205460ff1681565b61016560005481565b6101be6102c3366004611cf0565b610a76565b6101be6102d6366004611e7f565b610bc9565b6101be610dd8565b6101be6102f1366004611efb565b610e4f565b600254610309906001600160a01b031681565b6040516001600160a01b03909116815260200161016f565b6101be61032f366004611f6e565b610f4f565b610165610342366004611cf0565b611197565b6101be610355366004611e7f565b61121a565b610365600160fe1b81565b6040516001600160f81b0319909116815260200161016f565b600154610309906001600160a01b031681565b6004546005546006546007546103a79392919084565b60408051948552602085019390935291830152606082015260800161016f565b6101be6103d5366004611faf565b61136f565b600154604080516221048360e21b815290516000926001600160a01b0316916284120c916004808301926020929190829003018186803b15801561041d57600080fd5b505afa158015610431573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610455919061201f565b905090565b306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614156104ed5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201526b19195b1959d85d1958d85b1b60a21b60648201526084015b60405180910390fd5b6001546001600160a01b03161561051757604051633bcd329760e21b815260040160405180910390fd5b6001600160a01b03821661053e57604051631ad0f74360e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0384169081179091556040805163cb23bcb560e01b8152905163cb23bcb591600480820192602092909190829003018186803b15801561059257600080fd5b505afa1580156105a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ca9190612038565b600280546001600160a01b0319166001600160a01b03929092169190911790558035600490815560208201356005556040820135600655606082013560075581905b50505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561066057600080fd5b505afa158015610674573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106989190612038565b6001600160a01b0316336001600160a01b0316146106da57600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b6001600160a01b038216600090815260096020526040808220805460ff19168415151790555160049160008051602061245483398151915291a25050565b600081815260086020908152604080832081518083019092525460ff81161515825261010090046001600160401b03169181018290529061076e5760405162f20c5d60e01b8152600481018490526024016104e4565b602001516001600160401b031692915050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b1580156107cf57600080fd5b505afa1580156107e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108079190612038565b6001600160a01b0316336001600160a01b03161461084957600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b6001600160a01b038216600090815260036020526040808220805460ff19168415151790555160019160008051602061245483398151915291a25050565b8060005a90503332146108ad5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff166108dd57604051632dd9fc9760e01b815260040160405180910390fd5b6000806108eb888888611752565b90925090506000808080610902868b8d84806118c5565b93509350935093508c84146109345760405163ac7411c960e01b815260048101859052602481018e90526044016104e4565b80838e600080516020612434833981519152856000548a600060405161095d949392919061206f565b60405180910390a4505050506001600160a01b038416159150610a6d905057366000602061098c83601f6120f9565b6109969190612111565b90506102006109a6600283612217565b6109b09190612111565b6109bb826006612226565b6109c591906120f9565b6109cf90846120f9565b92503332146109dd57600091505b836001600160a01b031663e3db8a49335a6109f89087612245565b856040518463ffffffff1660e01b8152600401610a179392919061225c565b602060405180830381600087803b158015610a3157600080fd5b505af1158015610a45573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a69919061227d565b5050505b50505050505050565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ac457600080fd5b505afa158015610ad8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610afc9190612038565b6001600160a01b0316336001600160a01b031614610b3e57600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b60008181526008602052604090205460ff16610b6f5760405162f20c5d60e01b8152600481018290526024016104e4565b600081815260086020526040808220805460ff191690555182917f5cb4218b272fd214168ac43e90fb4d05d6c36f0b17ffb4c2dd07c234d744eb2a91a260405160039060008051602061245483398151915290600090a250565b8260005a9050333214610bef5760405163feb3d07160e01b815260040160405180910390fd5b3360009081526003602052604090205460ff16610c1f57604051632dd9fc9760e01b815260040160405180910390fd5b600080610c2d8a8a8a611752565b90925090508a81838b8b8a8a6000808080610c4b89888a89896118c5565b93509350935093508a8414158015610c6557506000198b14155b15610c8d5760405163ac7411c960e01b815260048101859052602481018c90526044016104e4565b808385600080516020612434833981519152856000548f6000604051610cb6949392919061206f565b60405180910390a4505050506001600160a01b038b16159850610dcd975050505050505050573660006020610cec83601f6120f9565b610cf69190612111565b9050610200610d06600283612217565b610d109190612111565b610d1b826006612226565b610d2591906120f9565b610d2f90846120f9565b9250333214610d3d57600091505b836001600160a01b031663e3db8a49335a610d589087612245565b856040518463ffffffff1660e01b8152600401610d779392919061225c565b602060405180830381600087803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc9919061227d565b5050505b505050505050505050565b467f00000000000000000000000000000000000000000000000000000000000000001415610e1957604051635180dd8360e11b815260040160405180910390fd5b60408051608081018252600180825260208201819052918101829052606001819052600481905560058190556006819055600755565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e9d57600080fd5b505afa158015610eb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ed59190612038565b6001600160a01b0316336001600160a01b031614610f1757600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b80516004556020810151600555604080820151600655606082015160075551600090600080516020612454833981519152908290a250565b600260009054906101000a90046001600160a01b03166001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015610f9d57600080fd5b505afa158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190612038565b6001600160a01b0316336001600160a01b03161461101757600254604051631194af8760e11b81526104e49133916001600160a01b0390911690600401612055565b6000828260405161102992919061229a565b604051908190038120607f60f91b6020830152602182015260410160408051601f1981840301815291905280516020909101209050600160ff1b81186201000083106110ad5760405162461bcd60e51b81526020600482015260136024820152726b657973657420697320746f6f206c6172676560681b60448201526064016104e4565b60008181526008602052604090205460ff16156110e057604051637d17eeed60e11b8152600481018290526024016104e4565b60408051808201825260018152436001600160401b0390811660208084019182526000868152600890915284902092518354915168ffffffffffffffffff1990921690151568ffffffffffffffff0019161761010091909216021790555181907fabca9b7986bc22ad0160eb0cb88ae75411eacfba4052af0b457a9335ef6557229061116f90879087906122aa565b60405180910390a260405160029060008051602061245483398151915290600090a250505050565b6001546040516316bf557960e01b8152600481018390526000916001600160a01b0316906316bf55799060240160206040518083038186803b1580156111dc57600080fd5b505afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611214919061201f565b92915050565b8260005a3360009081526003602052604090205490915060ff1615801561124c57506002546001600160a01b03163314155b1561126a57604051632dd9fc9760e01b815260040160405180910390fd5b6000806112788a8a8a611752565b909250905060008b82848b8a8a86808061129587878388886118c5565b929c5090945092509050888a148015906112b157506000198914155b156112d95760405163ac7411c960e01b8152600481018b9052602481018a90526044016104e4565b80838b600080516020612434833981519152856000548d6001604051611302949392919061206f565b60405180910390a4505050505050505050807ffe325ca1efe4c5c1062c981c3ee74b781debe4ea9440306a96d2a55759c66c208c8c6040516113459291906122aa565b60405180910390a25050506001600160a01b03821615610dcd573660006020610cec83601f6120f9565b600054861161139157604051633eb9f37d60e11b815260040160405180910390fd5b600061144186846113a560208901896122ef565b6113b560408a0160208b016122ef565b6113c060018d612245565b6040805160f89690961b6001600160f81b03191660208088019190915260609590951b6001600160601b031916602187015260c093841b6001600160c01b031990811660358801529290931b909116603d85015260458401526065830188905260858084018790528151808503909101815260a59093019052815191012090565b600454909150439061145660208801886122ef565b6001600160401b031661146991906120f9565b106114875760405163ad3515d960e01b815260040160405180910390fd5b600654429061149c60408801602089016122ef565b6001600160401b03166114af91906120f9565b106114cd5760405163c76d17e560e01b815260040160405180910390fd5b60006001881115611565576001546001600160a01b031663d5719dc26114f460028b612245565b6040518263ffffffff1660e01b815260040161151291815260200190565b60206040518083038186803b15801561152a57600080fd5b505afa15801561153e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611562919061201f565b90505b60408051602080820184905281830185905282518083038401815260609092019092528051910120600180546001600160a01b03169063d5719dc2906115ab908c612245565b6040518263ffffffff1660e01b81526004016115c991815260200190565b60206040518083038186803b1580156115e157600080fd5b505afa1580156115f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611619919061201f565b14611637576040516313947fd760e01b815260040160405180910390fd5b6000806116438a611b62565b9150915060008a90506000600160009054906101000a90046001600160a01b03166001600160a01b0316635fca4a166040518163ffffffff1660e01b815260040160206040518083038186803b15801561169c57600080fd5b505afa1580156116b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d4919061201f565b9050600080548d836116e691906120f9565b6116f09190612245565b90506000806000806117068988600089896118c5565b9350935093509350808385600080516020612434833981519152856000548d6002604051611737949392919061206f565b60405180910390a45050505050505050505050505050505050565b600061175c611cc9565b8484600061176b8260286120f9565b90506201cccc81111561179d57604051634634691b60e01b8152600481018290526201cccc60248201526044016104e4565b81158015906117d55750600160fe1b8084846000816117be576117be6122d9565b9050013560f81c60f81b166001600160f81b031916145b156117f357604051631f97007f60e01b815260040160405180910390fd5b60218210801590611821575082826000818110611812576118126122d9565b90910135600160ff1b16151590505b15611875576000611836602160018587612318565b61183f91612342565b60008181526008602052604090205490915060ff166118735760405162f20c5d60e01b8152600481018290526024016104e4565b505b60008061188188611b8e565b915091506000828b8b60405160200161189c9392919061238c565b60408051808303601f1901815291905280516020909101209b919a509098505050505050505050565b6000806000806000548810156118ee57604051633eb9f37d60e11b815260040160405180910390fd5b600160009054906101000a90046001600160a01b03166001600160a01b031663eca067ad6040518163ffffffff1660e01b815260040160206040518083038186803b15801561193c57600080fd5b505afa158015611950573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611974919061201f565b8811156119945760405163925f8bd360e01b815260040160405180910390fd5b60015460405163432cc52b60e11b8152600481018b9052602481018a905260448101889052606481018790526001600160a01b03909116906386598a5690608401608060405180830381600087803b1580156119ef57600080fd5b505af1158015611a03573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a2791906123b4565b60008c9055929650909450925090508615611b56576040805142602082015233606081901b6001600160601b03191692820192909252605481018b90526074810186905248609482015260009060b40160408051808303601f190181529082905260015481516020830120637a88b10760e01b84526001600160a01b0386811660048601526024850191909152919350600092911690637a88b10790604401602060405180830381600087803b158015611ae057600080fd5b505af1158015611af4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b18919061201f565b9050807fff64905f73a67fb594e0f940a8075a860db489ad991e032f48c81123eb52d60b83604051611b4a91906123ea565b60405180910390a25050505b95509550955095915050565b6000611b6c611cc9565b600080611b7885611b8e565b8151602090920191909120969095509350505050565b6060611b98611cc9565b6000611ba2611c35565b90506000816000015182602001518360400151846060015188604051602001611c0a95949392919060c095861b6001600160c01b0319908116825294861b8516600882015292851b8416601084015290841b8316601883015290921b16602082015260280190565b60405160208183030381529060405290506028815114611c2c57611c2c61241d565b94909350915050565b611c3d611cc9565b611c45611cc9565b600654421115611c6857600654611c5c9042612245565b6001600160401b031681525b600754611c7590426120f9565b6001600160401b03166020820152600454431115611ca957600454611c9a9043612245565b6001600160401b031660408201525b600554611cb690436120f9565b6001600160401b03166060820152919050565b60408051608081018252600080825260208201819052918101829052606081019190915290565b600060208284031215611d0257600080fd5b5035919050565b6001600160a01b0381168114611d1e57600080fd5b50565b60008082840360a0811215611d3557600080fd5b8335611d4081611d09565b92506080601f1982011215611d5457600080fd5b506020830190509250929050565b8015158114611d1e57600080fd5b60008060408385031215611d8357600080fd5b8235611d8e81611d09565b91506020830135611d9e81611d62565b809150509250929050565b600060208284031215611dbb57600080fd5b8135611dc681611d09565b9392505050565b60008083601f840112611ddf57600080fd5b5081356001600160401b03811115611df657600080fd5b602083019150836020828501011115611e0e57600080fd5b9250929050565b600080600080600060808688031215611e2d57600080fd5b8535945060208601356001600160401b03811115611e4a57600080fd5b611e5688828901611dcd565b909550935050604086013591506060860135611e7181611d09565b809150509295509295909350565b600080600080600080600060c0888a031215611e9a57600080fd5b8735965060208801356001600160401b03811115611eb757600080fd5b611ec38a828b01611dcd565b909750955050604088013593506060880135611ede81611d09565b969995985093969295946080840135945060a09093013592915050565b600060808284031215611f0d57600080fd5b604051608081018181106001600160401b0382111715611f3d57634e487b7160e01b600052604160045260246000fd5b8060405250823581526020830135602082015260408301356040820152606083013560608201528091505092915050565b60008060208385031215611f8157600080fd5b82356001600160401b03811115611f9757600080fd5b611fa385828601611dcd565b90969095509350505050565b60008060008060008060e08789031215611fc857600080fd5b86359550602087013560ff81168114611fe057600080fd5b94506080870188811115611ff357600080fd5b60408801945035925060a087013561200a81611d09565b8092505060c087013590509295509295509295565b60006020828403121561203157600080fd5b5051919050565b60006020828403121561204a57600080fd5b8151611dc681611d09565b6001600160a01b0392831681529116602082015260400190565b600060e0820190508582528460208301526001600160401b038085511660408401528060208601511660608401528060408601511660808401528060608601511660a084015250600383106120d457634e487b7160e01b600052602160045260246000fd5b8260c083015295945050505050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561210c5761210c6120e3565b500190565b60008261212e57634e487b7160e01b600052601260045260246000fd5b500490565b600181815b8085111561216e578160001904821115612154576121546120e3565b8085161561216157918102915b93841c9390800290612138565b509250929050565b60008261218557506001611214565b8161219257506000611214565b81600181146121a857600281146121b2576121ce565b6001915050611214565b60ff8411156121c3576121c36120e3565b50506001821b611214565b5060208310610133831016604e8410600b84101617156121f1575081810a611214565b6121fb8383612133565b806000190482111561220f5761220f6120e3565b029392505050565b6000611dc660ff841683612176565b6000816000190483118215151615612240576122406120e3565b500290565b600082821015612257576122576120e3565b500390565b6001600160a01b039390931683526020830191909152604082015260600190565b60006020828403121561228f57600080fd5b8151611dc681611d62565b8183823760009101908152919050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561230157600080fd5b81356001600160401b0381168114611dc657600080fd5b6000808585111561232857600080fd5b8386111561233557600080fd5b5050820193919092039150565b8035602083101561121457600019602084900360031b1b1692915050565b60005b8381101561237b578181015183820152602001612363565b8381111561060c5750506000910152565b6000845161239e818460208901612360565b8201838582376000930192835250909392505050565b600080600080608085870312156123ca57600080fd5b505082516020840151604085015160609095015191969095509092509050565b6020815260008251806020840152612409816040850160208701612360565b601f01601f19169190910160400192915050565b634e487b7160e01b600052600160045260246000fdfe7394f4a19a13c7b92b5bb71033245305946ef78452f7b4986ac1390b5df4ebd7ea8787f128d10b2cc0317b0c3960f9ad447f7f6c1ed189db1083ccffd20f456ea264697066735822122012475af647235e53d42a4d1d68a057e04cb2a16086e83a4141efd6e7885818c664736f6c63430008090033",
|
812
|
+
"linkReferences": {},
|
813
|
+
"deployedLinkReferences": {}
|
814
|
+
}
|