@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,603 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "BridgeTester",
|
4
|
+
"sourceName": "src/test-helpers/BridgeTester.sol",
|
5
|
+
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "addr",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "NotContract",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "sender",
|
22
|
+
"type": "address"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"name": "NotDelayedInbox",
|
26
|
+
"type": "error"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"inputs": [
|
30
|
+
{
|
31
|
+
"internalType": "address",
|
32
|
+
"name": "sender",
|
33
|
+
"type": "address"
|
34
|
+
}
|
35
|
+
],
|
36
|
+
"name": "NotOutbox",
|
37
|
+
"type": "error"
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"inputs": [
|
41
|
+
{
|
42
|
+
"internalType": "address",
|
43
|
+
"name": "sender",
|
44
|
+
"type": "address"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "rollup",
|
49
|
+
"type": "address"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"internalType": "address",
|
53
|
+
"name": "owner",
|
54
|
+
"type": "address"
|
55
|
+
}
|
56
|
+
],
|
57
|
+
"name": "NotRollupOrOwner",
|
58
|
+
"type": "error"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"anonymous": false,
|
62
|
+
"inputs": [
|
63
|
+
{
|
64
|
+
"indexed": true,
|
65
|
+
"internalType": "address",
|
66
|
+
"name": "outbox",
|
67
|
+
"type": "address"
|
68
|
+
},
|
69
|
+
{
|
70
|
+
"indexed": true,
|
71
|
+
"internalType": "address",
|
72
|
+
"name": "to",
|
73
|
+
"type": "address"
|
74
|
+
},
|
75
|
+
{
|
76
|
+
"indexed": false,
|
77
|
+
"internalType": "uint256",
|
78
|
+
"name": "value",
|
79
|
+
"type": "uint256"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"indexed": false,
|
83
|
+
"internalType": "bytes",
|
84
|
+
"name": "data",
|
85
|
+
"type": "bytes"
|
86
|
+
}
|
87
|
+
],
|
88
|
+
"name": "BridgeCallTriggered",
|
89
|
+
"type": "event"
|
90
|
+
},
|
91
|
+
{
|
92
|
+
"anonymous": false,
|
93
|
+
"inputs": [
|
94
|
+
{
|
95
|
+
"indexed": true,
|
96
|
+
"internalType": "address",
|
97
|
+
"name": "inbox",
|
98
|
+
"type": "address"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"indexed": false,
|
102
|
+
"internalType": "bool",
|
103
|
+
"name": "enabled",
|
104
|
+
"type": "bool"
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"name": "InboxToggle",
|
108
|
+
"type": "event"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"anonymous": false,
|
112
|
+
"inputs": [
|
113
|
+
{
|
114
|
+
"indexed": true,
|
115
|
+
"internalType": "uint256",
|
116
|
+
"name": "messageIndex",
|
117
|
+
"type": "uint256"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"indexed": true,
|
121
|
+
"internalType": "bytes32",
|
122
|
+
"name": "beforeInboxAcc",
|
123
|
+
"type": "bytes32"
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"indexed": false,
|
127
|
+
"internalType": "address",
|
128
|
+
"name": "inbox",
|
129
|
+
"type": "address"
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"indexed": false,
|
133
|
+
"internalType": "uint8",
|
134
|
+
"name": "kind",
|
135
|
+
"type": "uint8"
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"indexed": false,
|
139
|
+
"internalType": "address",
|
140
|
+
"name": "sender",
|
141
|
+
"type": "address"
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"indexed": false,
|
145
|
+
"internalType": "bytes32",
|
146
|
+
"name": "messageDataHash",
|
147
|
+
"type": "bytes32"
|
148
|
+
},
|
149
|
+
{
|
150
|
+
"indexed": false,
|
151
|
+
"internalType": "uint256",
|
152
|
+
"name": "baseFeeL1",
|
153
|
+
"type": "uint256"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"indexed": false,
|
157
|
+
"internalType": "uint64",
|
158
|
+
"name": "timestamp",
|
159
|
+
"type": "uint64"
|
160
|
+
}
|
161
|
+
],
|
162
|
+
"name": "MessageDelivered",
|
163
|
+
"type": "event"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"anonymous": false,
|
167
|
+
"inputs": [
|
168
|
+
{
|
169
|
+
"indexed": true,
|
170
|
+
"internalType": "address",
|
171
|
+
"name": "outbox",
|
172
|
+
"type": "address"
|
173
|
+
},
|
174
|
+
{
|
175
|
+
"indexed": false,
|
176
|
+
"internalType": "bool",
|
177
|
+
"name": "enabled",
|
178
|
+
"type": "bool"
|
179
|
+
}
|
180
|
+
],
|
181
|
+
"name": "OutboxToggle",
|
182
|
+
"type": "event"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"anonymous": false,
|
186
|
+
"inputs": [
|
187
|
+
{
|
188
|
+
"indexed": false,
|
189
|
+
"internalType": "address",
|
190
|
+
"name": "newSequencerInbox",
|
191
|
+
"type": "address"
|
192
|
+
}
|
193
|
+
],
|
194
|
+
"name": "SequencerInboxUpdated",
|
195
|
+
"type": "event"
|
196
|
+
},
|
197
|
+
{
|
198
|
+
"inputs": [],
|
199
|
+
"name": "acceptFundsFromOldBridge",
|
200
|
+
"outputs": [],
|
201
|
+
"stateMutability": "payable",
|
202
|
+
"type": "function"
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"inputs": [],
|
206
|
+
"name": "activeOutbox",
|
207
|
+
"outputs": [
|
208
|
+
{
|
209
|
+
"internalType": "address",
|
210
|
+
"name": "",
|
211
|
+
"type": "address"
|
212
|
+
}
|
213
|
+
],
|
214
|
+
"stateMutability": "view",
|
215
|
+
"type": "function"
|
216
|
+
},
|
217
|
+
{
|
218
|
+
"inputs": [
|
219
|
+
{
|
220
|
+
"internalType": "uint256",
|
221
|
+
"name": "",
|
222
|
+
"type": "uint256"
|
223
|
+
}
|
224
|
+
],
|
225
|
+
"name": "allowedDelayedInboxList",
|
226
|
+
"outputs": [
|
227
|
+
{
|
228
|
+
"internalType": "address",
|
229
|
+
"name": "",
|
230
|
+
"type": "address"
|
231
|
+
}
|
232
|
+
],
|
233
|
+
"stateMutability": "view",
|
234
|
+
"type": "function"
|
235
|
+
},
|
236
|
+
{
|
237
|
+
"inputs": [
|
238
|
+
{
|
239
|
+
"internalType": "address",
|
240
|
+
"name": "inbox",
|
241
|
+
"type": "address"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "allowedDelayedInboxes",
|
245
|
+
"outputs": [
|
246
|
+
{
|
247
|
+
"internalType": "bool",
|
248
|
+
"name": "",
|
249
|
+
"type": "bool"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"stateMutability": "view",
|
253
|
+
"type": "function"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"inputs": [
|
257
|
+
{
|
258
|
+
"internalType": "uint256",
|
259
|
+
"name": "",
|
260
|
+
"type": "uint256"
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"name": "allowedOutboxList",
|
264
|
+
"outputs": [
|
265
|
+
{
|
266
|
+
"internalType": "address",
|
267
|
+
"name": "",
|
268
|
+
"type": "address"
|
269
|
+
}
|
270
|
+
],
|
271
|
+
"stateMutability": "view",
|
272
|
+
"type": "function"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"inputs": [
|
276
|
+
{
|
277
|
+
"internalType": "address",
|
278
|
+
"name": "outbox",
|
279
|
+
"type": "address"
|
280
|
+
}
|
281
|
+
],
|
282
|
+
"name": "allowedOutboxes",
|
283
|
+
"outputs": [
|
284
|
+
{
|
285
|
+
"internalType": "bool",
|
286
|
+
"name": "",
|
287
|
+
"type": "bool"
|
288
|
+
}
|
289
|
+
],
|
290
|
+
"stateMutability": "view",
|
291
|
+
"type": "function"
|
292
|
+
},
|
293
|
+
{
|
294
|
+
"inputs": [
|
295
|
+
{
|
296
|
+
"internalType": "uint256",
|
297
|
+
"name": "",
|
298
|
+
"type": "uint256"
|
299
|
+
}
|
300
|
+
],
|
301
|
+
"name": "delayedInboxAccs",
|
302
|
+
"outputs": [
|
303
|
+
{
|
304
|
+
"internalType": "bytes32",
|
305
|
+
"name": "",
|
306
|
+
"type": "bytes32"
|
307
|
+
}
|
308
|
+
],
|
309
|
+
"stateMutability": "view",
|
310
|
+
"type": "function"
|
311
|
+
},
|
312
|
+
{
|
313
|
+
"inputs": [],
|
314
|
+
"name": "delayedMessageCount",
|
315
|
+
"outputs": [
|
316
|
+
{
|
317
|
+
"internalType": "uint256",
|
318
|
+
"name": "",
|
319
|
+
"type": "uint256"
|
320
|
+
}
|
321
|
+
],
|
322
|
+
"stateMutability": "view",
|
323
|
+
"type": "function"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"inputs": [
|
327
|
+
{
|
328
|
+
"internalType": "uint8",
|
329
|
+
"name": "kind",
|
330
|
+
"type": "uint8"
|
331
|
+
},
|
332
|
+
{
|
333
|
+
"internalType": "address",
|
334
|
+
"name": "sender",
|
335
|
+
"type": "address"
|
336
|
+
},
|
337
|
+
{
|
338
|
+
"internalType": "bytes32",
|
339
|
+
"name": "messageDataHash",
|
340
|
+
"type": "bytes32"
|
341
|
+
}
|
342
|
+
],
|
343
|
+
"name": "enqueueDelayedMessage",
|
344
|
+
"outputs": [
|
345
|
+
{
|
346
|
+
"internalType": "uint256",
|
347
|
+
"name": "",
|
348
|
+
"type": "uint256"
|
349
|
+
}
|
350
|
+
],
|
351
|
+
"stateMutability": "payable",
|
352
|
+
"type": "function"
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"inputs": [
|
356
|
+
{
|
357
|
+
"internalType": "bytes32",
|
358
|
+
"name": "dataHash",
|
359
|
+
"type": "bytes32"
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"internalType": "uint256",
|
363
|
+
"name": "afterDelayedMessagesRead",
|
364
|
+
"type": "uint256"
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"internalType": "uint256",
|
368
|
+
"name": "prevMessageCount",
|
369
|
+
"type": "uint256"
|
370
|
+
},
|
371
|
+
{
|
372
|
+
"internalType": "uint256",
|
373
|
+
"name": "newMessageCount",
|
374
|
+
"type": "uint256"
|
375
|
+
}
|
376
|
+
],
|
377
|
+
"name": "enqueueSequencerMessage",
|
378
|
+
"outputs": [
|
379
|
+
{
|
380
|
+
"internalType": "uint256",
|
381
|
+
"name": "seqMessageIndex",
|
382
|
+
"type": "uint256"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"internalType": "bytes32",
|
386
|
+
"name": "beforeAcc",
|
387
|
+
"type": "bytes32"
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"internalType": "bytes32",
|
391
|
+
"name": "delayedAcc",
|
392
|
+
"type": "bytes32"
|
393
|
+
},
|
394
|
+
{
|
395
|
+
"internalType": "bytes32",
|
396
|
+
"name": "acc",
|
397
|
+
"type": "bytes32"
|
398
|
+
}
|
399
|
+
],
|
400
|
+
"stateMutability": "nonpayable",
|
401
|
+
"type": "function"
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"inputs": [
|
405
|
+
{
|
406
|
+
"internalType": "address",
|
407
|
+
"name": "to",
|
408
|
+
"type": "address"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"internalType": "uint256",
|
412
|
+
"name": "value",
|
413
|
+
"type": "uint256"
|
414
|
+
},
|
415
|
+
{
|
416
|
+
"internalType": "bytes",
|
417
|
+
"name": "data",
|
418
|
+
"type": "bytes"
|
419
|
+
}
|
420
|
+
],
|
421
|
+
"name": "executeCall",
|
422
|
+
"outputs": [
|
423
|
+
{
|
424
|
+
"internalType": "bool",
|
425
|
+
"name": "success",
|
426
|
+
"type": "bool"
|
427
|
+
},
|
428
|
+
{
|
429
|
+
"internalType": "bytes",
|
430
|
+
"name": "returnData",
|
431
|
+
"type": "bytes"
|
432
|
+
}
|
433
|
+
],
|
434
|
+
"stateMutability": "nonpayable",
|
435
|
+
"type": "function"
|
436
|
+
},
|
437
|
+
{
|
438
|
+
"inputs": [
|
439
|
+
{
|
440
|
+
"internalType": "contract IOwnable",
|
441
|
+
"name": "rollup_",
|
442
|
+
"type": "address"
|
443
|
+
}
|
444
|
+
],
|
445
|
+
"name": "initialize",
|
446
|
+
"outputs": [],
|
447
|
+
"stateMutability": "nonpayable",
|
448
|
+
"type": "function"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"inputs": [],
|
452
|
+
"name": "rollup",
|
453
|
+
"outputs": [
|
454
|
+
{
|
455
|
+
"internalType": "contract IOwnable",
|
456
|
+
"name": "",
|
457
|
+
"type": "address"
|
458
|
+
}
|
459
|
+
],
|
460
|
+
"stateMutability": "view",
|
461
|
+
"type": "function"
|
462
|
+
},
|
463
|
+
{
|
464
|
+
"inputs": [],
|
465
|
+
"name": "sequencerInbox",
|
466
|
+
"outputs": [
|
467
|
+
{
|
468
|
+
"internalType": "address",
|
469
|
+
"name": "",
|
470
|
+
"type": "address"
|
471
|
+
}
|
472
|
+
],
|
473
|
+
"stateMutability": "view",
|
474
|
+
"type": "function"
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"inputs": [
|
478
|
+
{
|
479
|
+
"internalType": "uint256",
|
480
|
+
"name": "",
|
481
|
+
"type": "uint256"
|
482
|
+
}
|
483
|
+
],
|
484
|
+
"name": "sequencerInboxAccs",
|
485
|
+
"outputs": [
|
486
|
+
{
|
487
|
+
"internalType": "bytes32",
|
488
|
+
"name": "",
|
489
|
+
"type": "bytes32"
|
490
|
+
}
|
491
|
+
],
|
492
|
+
"stateMutability": "view",
|
493
|
+
"type": "function"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"inputs": [],
|
497
|
+
"name": "sequencerMessageCount",
|
498
|
+
"outputs": [
|
499
|
+
{
|
500
|
+
"internalType": "uint256",
|
501
|
+
"name": "",
|
502
|
+
"type": "uint256"
|
503
|
+
}
|
504
|
+
],
|
505
|
+
"stateMutability": "view",
|
506
|
+
"type": "function"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"inputs": [],
|
510
|
+
"name": "sequencerReportedSubMessageCount",
|
511
|
+
"outputs": [
|
512
|
+
{
|
513
|
+
"internalType": "uint256",
|
514
|
+
"name": "",
|
515
|
+
"type": "uint256"
|
516
|
+
}
|
517
|
+
],
|
518
|
+
"stateMutability": "view",
|
519
|
+
"type": "function"
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"inputs": [
|
523
|
+
{
|
524
|
+
"internalType": "address",
|
525
|
+
"name": "inbox",
|
526
|
+
"type": "address"
|
527
|
+
},
|
528
|
+
{
|
529
|
+
"internalType": "bool",
|
530
|
+
"name": "enabled",
|
531
|
+
"type": "bool"
|
532
|
+
}
|
533
|
+
],
|
534
|
+
"name": "setDelayedInbox",
|
535
|
+
"outputs": [],
|
536
|
+
"stateMutability": "nonpayable",
|
537
|
+
"type": "function"
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"inputs": [
|
541
|
+
{
|
542
|
+
"internalType": "address",
|
543
|
+
"name": "outbox",
|
544
|
+
"type": "address"
|
545
|
+
},
|
546
|
+
{
|
547
|
+
"internalType": "bool",
|
548
|
+
"name": "enabled",
|
549
|
+
"type": "bool"
|
550
|
+
}
|
551
|
+
],
|
552
|
+
"name": "setOutbox",
|
553
|
+
"outputs": [],
|
554
|
+
"stateMutability": "nonpayable",
|
555
|
+
"type": "function"
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"inputs": [
|
559
|
+
{
|
560
|
+
"internalType": "address",
|
561
|
+
"name": "_sequencerInbox",
|
562
|
+
"type": "address"
|
563
|
+
}
|
564
|
+
],
|
565
|
+
"name": "setSequencerInbox",
|
566
|
+
"outputs": [],
|
567
|
+
"stateMutability": "nonpayable",
|
568
|
+
"type": "function"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"inputs": [
|
572
|
+
{
|
573
|
+
"internalType": "address",
|
574
|
+
"name": "batchPoster",
|
575
|
+
"type": "address"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"internalType": "bytes32",
|
579
|
+
"name": "dataHash",
|
580
|
+
"type": "bytes32"
|
581
|
+
}
|
582
|
+
],
|
583
|
+
"name": "submitBatchSpendingReport",
|
584
|
+
"outputs": [
|
585
|
+
{
|
586
|
+
"internalType": "uint256",
|
587
|
+
"name": "",
|
588
|
+
"type": "uint256"
|
589
|
+
}
|
590
|
+
],
|
591
|
+
"stateMutability": "nonpayable",
|
592
|
+
"type": "function"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"stateMutability": "payable",
|
596
|
+
"type": "receive"
|
597
|
+
}
|
598
|
+
],
|
599
|
+
"bytecode": "0x60a06040523060805234801561001457600080fd5b5060805161134661002d600039600050506113466000f3fe60806040526004361061012d5760003560e01c80639e5d4c49116100ab578063cee3d7281161006f578063cee3d7281461038e578063d5719dc2146103ae578063e76f5c8d146103ce578063e77145f4146101e9578063eca067ad146103ee578063ee35f3271461040357600080fd5b80639e5d4c49146102ce578063ab5d8943146102fc578063ae60bd1314610311578063c4d66de81461034e578063cb23bcb51461036e57600080fd5b80635fca4a16116100f25780635fca4a161461020b5780637a88b1071461022157806386598a56146102445780638db5993b1461028e578063945e1147146102a157600080fd5b806284120c1461013957806316bf55791461015d578063413b35bd1461017d57806347fb24c5146101c95780634f61f850146101eb57600080fd5b3661013457005b600080fd5b34801561014557600080fd5b506009545b6040519081526020015b60405180910390f35b34801561016957600080fd5b5061014a610178366004611005565b610423565b34801561018957600080fd5b506101b9610198366004611036565b6001600160a01b031660009081526002602052604090206001015460ff1690565b6040519015158152602001610154565b3480156101d557600080fd5b506101e96101e436600461105a565b610444565b005b3480156101f757600080fd5b506101e9610206366004611036565b61074f565b34801561021757600080fd5b5061014a600a5481565b34801561022d57600080fd5b5061014a61023c366004611098565b600092915050565b34801561025057600080fd5b5061026e61025f3660046110c4565b50600093849350839250829150565b604080519485526020850193909352918301526060820152608001610154565b61014a61029c3660046110f6565b610874565b3480156102ad57600080fd5b506102c16102bc366004611005565b6108bf565b604051610154919061113d565b3480156102da57600080fd5b506102ee6102e9366004611151565b6108e9565b6040516101549291906111da565b34801561030857600080fd5b506102c1610a41565b34801561031d57600080fd5b506101b961032c366004611036565b6001600160a01b03166000908152600160208190526040909120015460ff1690565b34801561035a57600080fd5b506101e9610369366004611036565b610a6e565b34801561037a57600080fd5b506006546102c1906001600160a01b031681565b34801561039a57600080fd5b506101e96103a936600461105a565b610b54565b3480156103ba57600080fd5b5061014a6103c9366004611005565b610e56565b3480156103da57600080fd5b506102c16103e9366004611005565b610e66565b3480156103fa57600080fd5b5060085461014a565b34801561040f57600080fd5b506007546102c1906001600160a01b031681565b6009818154811061043357600080fd5b600091825260209091200154905081565b6006546001600160a01b0316331461051c5760065460408051638da5cb5b60e01b815290516000926001600160a01b031691638da5cb5b916004808301926020929190829003018186803b15801561049b57600080fd5b505afa1580156104af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d39190611239565b9050336001600160a01b0382161461051a57600654604051630739600760e01b81526105119133916001600160a01b03909116908490600401611256565b60405180910390fd5b505b6001600160a01b0382166000818152600160208181526040928390209182015492518515158152919360ff90931692917f6675ce8882cb71637de5903a193d218cc0544be9c0650cb83e0955f6aa2bf521910160405180910390a28080156105815750825b80610593575080158015610593575082155b1561059e5750505050565b821561062c57604080518082018252600380548252600160208084018281526001600160a01b038a166000818152928490529582209451855551938201805460ff1916941515949094179093558154908101825591527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319169091179055610748565b6003805461063c90600190611279565b8154811061064c5761064c61129e565b6000918252602090912001548254600380546001600160a01b0390931692909190811061067b5761067b61129e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600001546001600060038560000154815481106106c9576106c961129e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205560038054806106ff576106ff6112b4565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03861682526001908190526040822091825501805460ff191690555b50505b5050565b6006546001600160a01b0316331461081e5760065460408051638da5cb5b60e01b815290516000926001600160a01b031691638da5cb5b916004808301926020929190829003018186803b1580156107a657600080fd5b505afa1580156107ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107de9190611239565b9050336001600160a01b0382161461081c57600654604051630739600760e01b81526105119133916001600160a01b03909116908490600401611256565b505b600780546001600160a01b0319166001600160a01b0383161790556040517f8c1e6003ed33ca6748d4ad3dd4ecc949065c89dceb31fdf546a5289202763c6a9061086990839061113d565b60405180910390a150565b3360009081526001602081905260408220015460ff166108a9573360405163b6c60ea360e01b8152600401610511919061113d565b6108b7848443424887610e76565b949350505050565b600481815481106108cf57600080fd5b6000918252602090912001546001600160a01b0316905081565b3360009081526002602052604081206001015460609060ff1661092157336040516332ea82ab60e01b8152600401610511919061113d565b821580159061093857506001600160a01b0386163b155b15610958578560405163b5cf5b8f60e01b8152600401610511919061113d565b600580546001600160a01b0319811633179091556040516001600160a01b0391821691881690879061098d90889088906112ca565b60006040518083038185875af1925050503d80600081146109ca576040519150601f19603f3d011682016040523d82523d6000602084013e6109cf565b606091505b50600580546001600160a01b0319166001600160a01b038581169190911790915560405192955090935088169033907f2d9d115ef3e4a606d698913b1eae831a3cdfe20d9a83d48007b0526749c3d46690610a2f908a908a908a906112da565b60405180910390a35094509492505050565b6005546000906001600160a01b039081161415610a5e5750600090565b506005546001600160a01b031690565b600054610100900460ff16610a895760005460ff1615610a8d565b303b155b610af05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610511565b600054610100900460ff16158015610b12576000805461ffff19166101011790555b600580546001600160a01b036001600160a01b0319918216811790925560068054909116918416919091179055801561074b576000805461ff00191690555050565b6006546001600160a01b03163314610c235760065460408051638da5cb5b60e01b815290516000926001600160a01b031691638da5cb5b916004808301926020929190829003018186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611239565b9050336001600160a01b03821614610c2157600654604051630739600760e01b81526105119133916001600160a01b03909116908490600401611256565b505b6001600160a01b038216600081815260026020908152604091829020600181015492518515158152909360ff90931692917f49477e7356dbcb654ab85d7534b50126772d938130d1350e23e2540370c8dffa910160405180910390a2808015610c895750825b80610c9b575080158015610c9b575082155b15610ca65750505050565b8215610d3557604080518082018252600480548252600160208084018281526001600160a01b038a16600081815260029093529582209451855551938201805460ff1916941515949094179093558154908101825591527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319169091179055610748565b60048054610d4590600190611279565b81548110610d5557610d5561129e565b6000918252602090912001548254600480546001600160a01b03909316929091908110610d8457610d8461129e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055508160000154600260006004856000015481548110610dd257610dd261129e565b60009182526020808320909101546001600160a01b031683528201929092526040019020556004805480610e0857610e086112b4565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03861682526002905260408120908155600101805460ff1916905550505050565b6008818154811061043357600080fd5b600381815481106108cf57600080fd5b600854604080516001600160f81b031960f88a901b166020808301919091526bffffffffffffffffffffffff1960608a901b1660218301526001600160c01b031960c089811b8216603585015288901b16603d830152604582018490526065820186905260858083018690528351808403909101815260a590920190925280519101206000919060008215610f30576008610f12600185611279565b81548110610f2257610f2261129e565b906000526020600020015490505b6040805160208082018490528183018590528251808303840181526060830180855281519190920120600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3015533905260ff8c1660808201526001600160a01b038b1660a082015260c0810187905260e0810188905267ffffffffffffffff89166101008201529051829185917f5e3c1311ea442664e8b1611bfabef659120ea7a0a2cfc0667700bebc69cbffe1918190036101200190a3509098975050505050505050565b60006020828403121561101757600080fd5b5035919050565b6001600160a01b038116811461103357600080fd5b50565b60006020828403121561104857600080fd5b81356110538161101e565b9392505050565b6000806040838503121561106d57600080fd5b82356110788161101e565b91506020830135801515811461108d57600080fd5b809150509250929050565b600080604083850312156110ab57600080fd5b82356110b68161101e565b946020939093013593505050565b600080600080608085870312156110da57600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561110b57600080fd5b833560ff8116811461111c57600080fd5b9250602084013561112c8161101e565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b6000806000806060858703121561116757600080fd5b84356111728161101e565b935060208501359250604085013567ffffffffffffffff8082111561119657600080fd5b818701915087601f8301126111aa57600080fd5b8135818111156111b957600080fd5b8860208285010111156111cb57600080fd5b95989497505060200194505050565b821515815260006020604081840152835180604085015260005b81811015611210578581018301518582016060015282016111f4565b81811115611222576000606083870101525b50601f01601f191692909201606001949350505050565b60006020828403121561124b57600080fd5b81516110538161101e565b6001600160a01b0393841681529183166020830152909116604082015260600190565b60008282101561129957634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b8183823760009101908152919050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f191601019291505056fea2646970667358221220310096bd79f5937fd2fe34dc0cf3b8ecfd1c371b18b8dbb2a966152f625f248364736f6c63430008090033",
|
600
|
+
"deployedBytecode": "0x60806040526004361061012d5760003560e01c80639e5d4c49116100ab578063cee3d7281161006f578063cee3d7281461038e578063d5719dc2146103ae578063e76f5c8d146103ce578063e77145f4146101e9578063eca067ad146103ee578063ee35f3271461040357600080fd5b80639e5d4c49146102ce578063ab5d8943146102fc578063ae60bd1314610311578063c4d66de81461034e578063cb23bcb51461036e57600080fd5b80635fca4a16116100f25780635fca4a161461020b5780637a88b1071461022157806386598a56146102445780638db5993b1461028e578063945e1147146102a157600080fd5b806284120c1461013957806316bf55791461015d578063413b35bd1461017d57806347fb24c5146101c95780634f61f850146101eb57600080fd5b3661013457005b600080fd5b34801561014557600080fd5b506009545b6040519081526020015b60405180910390f35b34801561016957600080fd5b5061014a610178366004611005565b610423565b34801561018957600080fd5b506101b9610198366004611036565b6001600160a01b031660009081526002602052604090206001015460ff1690565b6040519015158152602001610154565b3480156101d557600080fd5b506101e96101e436600461105a565b610444565b005b3480156101f757600080fd5b506101e9610206366004611036565b61074f565b34801561021757600080fd5b5061014a600a5481565b34801561022d57600080fd5b5061014a61023c366004611098565b600092915050565b34801561025057600080fd5b5061026e61025f3660046110c4565b50600093849350839250829150565b604080519485526020850193909352918301526060820152608001610154565b61014a61029c3660046110f6565b610874565b3480156102ad57600080fd5b506102c16102bc366004611005565b6108bf565b604051610154919061113d565b3480156102da57600080fd5b506102ee6102e9366004611151565b6108e9565b6040516101549291906111da565b34801561030857600080fd5b506102c1610a41565b34801561031d57600080fd5b506101b961032c366004611036565b6001600160a01b03166000908152600160208190526040909120015460ff1690565b34801561035a57600080fd5b506101e9610369366004611036565b610a6e565b34801561037a57600080fd5b506006546102c1906001600160a01b031681565b34801561039a57600080fd5b506101e96103a936600461105a565b610b54565b3480156103ba57600080fd5b5061014a6103c9366004611005565b610e56565b3480156103da57600080fd5b506102c16103e9366004611005565b610e66565b3480156103fa57600080fd5b5060085461014a565b34801561040f57600080fd5b506007546102c1906001600160a01b031681565b6009818154811061043357600080fd5b600091825260209091200154905081565b6006546001600160a01b0316331461051c5760065460408051638da5cb5b60e01b815290516000926001600160a01b031691638da5cb5b916004808301926020929190829003018186803b15801561049b57600080fd5b505afa1580156104af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d39190611239565b9050336001600160a01b0382161461051a57600654604051630739600760e01b81526105119133916001600160a01b03909116908490600401611256565b60405180910390fd5b505b6001600160a01b0382166000818152600160208181526040928390209182015492518515158152919360ff90931692917f6675ce8882cb71637de5903a193d218cc0544be9c0650cb83e0955f6aa2bf521910160405180910390a28080156105815750825b80610593575080158015610593575082155b1561059e5750505050565b821561062c57604080518082018252600380548252600160208084018281526001600160a01b038a166000818152928490529582209451855551938201805460ff1916941515949094179093558154908101825591527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319169091179055610748565b6003805461063c90600190611279565b8154811061064c5761064c61129e565b6000918252602090912001548254600380546001600160a01b0390931692909190811061067b5761067b61129e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555081600001546001600060038560000154815481106106c9576106c961129e565b60009182526020808320909101546001600160a01b0316835282019290925260400190205560038054806106ff576106ff6112b4565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03861682526001908190526040822091825501805460ff191690555b50505b5050565b6006546001600160a01b0316331461081e5760065460408051638da5cb5b60e01b815290516000926001600160a01b031691638da5cb5b916004808301926020929190829003018186803b1580156107a657600080fd5b505afa1580156107ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107de9190611239565b9050336001600160a01b0382161461081c57600654604051630739600760e01b81526105119133916001600160a01b03909116908490600401611256565b505b600780546001600160a01b0319166001600160a01b0383161790556040517f8c1e6003ed33ca6748d4ad3dd4ecc949065c89dceb31fdf546a5289202763c6a9061086990839061113d565b60405180910390a150565b3360009081526001602081905260408220015460ff166108a9573360405163b6c60ea360e01b8152600401610511919061113d565b6108b7848443424887610e76565b949350505050565b600481815481106108cf57600080fd5b6000918252602090912001546001600160a01b0316905081565b3360009081526002602052604081206001015460609060ff1661092157336040516332ea82ab60e01b8152600401610511919061113d565b821580159061093857506001600160a01b0386163b155b15610958578560405163b5cf5b8f60e01b8152600401610511919061113d565b600580546001600160a01b0319811633179091556040516001600160a01b0391821691881690879061098d90889088906112ca565b60006040518083038185875af1925050503d80600081146109ca576040519150601f19603f3d011682016040523d82523d6000602084013e6109cf565b606091505b50600580546001600160a01b0319166001600160a01b038581169190911790915560405192955090935088169033907f2d9d115ef3e4a606d698913b1eae831a3cdfe20d9a83d48007b0526749c3d46690610a2f908a908a908a906112da565b60405180910390a35094509492505050565b6005546000906001600160a01b039081161415610a5e5750600090565b506005546001600160a01b031690565b600054610100900460ff16610a895760005460ff1615610a8d565b303b155b610af05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610511565b600054610100900460ff16158015610b12576000805461ffff19166101011790555b600580546001600160a01b036001600160a01b0319918216811790925560068054909116918416919091179055801561074b576000805461ff00191690555050565b6006546001600160a01b03163314610c235760065460408051638da5cb5b60e01b815290516000926001600160a01b031691638da5cb5b916004808301926020929190829003018186803b158015610bab57600080fd5b505afa158015610bbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be39190611239565b9050336001600160a01b03821614610c2157600654604051630739600760e01b81526105119133916001600160a01b03909116908490600401611256565b505b6001600160a01b038216600081815260026020908152604091829020600181015492518515158152909360ff90931692917f49477e7356dbcb654ab85d7534b50126772d938130d1350e23e2540370c8dffa910160405180910390a2808015610c895750825b80610c9b575080158015610c9b575082155b15610ca65750505050565b8215610d3557604080518082018252600480548252600160208084018281526001600160a01b038a16600081815260029093529582209451855551938201805460ff1916941515949094179093558154908101825591527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0180546001600160a01b0319169091179055610748565b60048054610d4590600190611279565b81548110610d5557610d5561129e565b6000918252602090912001548254600480546001600160a01b03909316929091908110610d8457610d8461129e565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055508160000154600260006004856000015481548110610dd257610dd261129e565b60009182526020808320909101546001600160a01b031683528201929092526040019020556004805480610e0857610e086112b4565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b03861682526002905260408120908155600101805460ff1916905550505050565b6008818154811061043357600080fd5b600381815481106108cf57600080fd5b600854604080516001600160f81b031960f88a901b166020808301919091526bffffffffffffffffffffffff1960608a901b1660218301526001600160c01b031960c089811b8216603585015288901b16603d830152604582018490526065820186905260858083018690528351808403909101815260a590920190925280519101206000919060008215610f30576008610f12600185611279565b81548110610f2257610f2261129e565b906000526020600020015490505b6040805160208082018490528183018590528251808303840181526060830180855281519190920120600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3015533905260ff8c1660808201526001600160a01b038b1660a082015260c0810187905260e0810188905267ffffffffffffffff89166101008201529051829185917f5e3c1311ea442664e8b1611bfabef659120ea7a0a2cfc0667700bebc69cbffe1918190036101200190a3509098975050505050505050565b60006020828403121561101757600080fd5b5035919050565b6001600160a01b038116811461103357600080fd5b50565b60006020828403121561104857600080fd5b81356110538161101e565b9392505050565b6000806040838503121561106d57600080fd5b82356110788161101e565b91506020830135801515811461108d57600080fd5b809150509250929050565b600080604083850312156110ab57600080fd5b82356110b68161101e565b946020939093013593505050565b600080600080608085870312156110da57600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561110b57600080fd5b833560ff8116811461111c57600080fd5b9250602084013561112c8161101e565b929592945050506040919091013590565b6001600160a01b0391909116815260200190565b6000806000806060858703121561116757600080fd5b84356111728161101e565b935060208501359250604085013567ffffffffffffffff8082111561119657600080fd5b818701915087601f8301126111aa57600080fd5b8135818111156111b957600080fd5b8860208285010111156111cb57600080fd5b95989497505060200194505050565b821515815260006020604081840152835180604085015260005b81811015611210578581018301518582016060015282016111f4565b81811115611222576000606083870101525b50601f01601f191692909201606001949350505050565b60006020828403121561124b57600080fd5b81516110538161101e565b6001600160a01b0393841681529183166020830152909116604082015260600190565b60008282101561129957634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b8183823760009101908152919050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f191601019291505056fea2646970667358221220310096bd79f5937fd2fe34dc0cf3b8ecfd1c371b18b8dbb2a966152f625f248364736f6c63430008090033",
|
601
|
+
"linkReferences": {},
|
602
|
+
"deployedLinkReferences": {}
|
603
|
+
}
|