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