@arbitrum/nitro-contracts 1.0.3-beta.0 → 1.0.3-beta.2
Sign up to get free protection for your applications and to get access to all the features.
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/access/Ownable.sol/Ownable.json +63 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol/ERC1967Proxy.json +80 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade.sol/ERC1967Upgrade.json +56 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/Proxy.sol/Proxy.json +19 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/IBeacon.sol/IBeacon.json +24 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol/UpgradeableBeacon.json +113 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol/ProxyAdmin.json +160 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol/TransparentUpgradeableProxy.json +155 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/proxy/utils/UUPSUpgradeable.sol/UUPSUpgradeable.json +100 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Address.sol/Address.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/Context.sol/Context.json +10 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts/utils/StorageSlot.sol/StorageSlot.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol/OwnableUpgradeable.json +63 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol/Initializable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol/PausableUpgradeable.json +50 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol/IERC20Upgradeable.json +194 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol/AddressUpgradeable.json +10 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.dbg.json +4 -0
- package/build/contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol/ContextUpgradeable.json +10 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.dbg.json +4 -0
- package/build/contracts/src/bridge/Bridge.sol/Bridge.json +650 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.dbg.json +4 -0
- package/build/contracts/src/bridge/IBridge.sol/IBridge.json +538 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.dbg.json +4 -0
- package/build/contracts/src/bridge/IDelayedMessageProvider.sol/IDelayedMessageProvider.json +43 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IInbox.sol/IInbox.json +575 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.dbg.json +4 -0
- package/build/contracts/src/bridge/IOutbox.sol/IOutbox.json +419 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.dbg.json +4 -0
- package/build/contracts/src/bridge/IOwnable.sol/IOwnable.json +24 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/ISequencerInbox.sol/ISequencerInbox.json +651 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Inbox.sol/Inbox.json +1008 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.dbg.json +4 -0
- package/build/contracts/src/bridge/Messages.sol/Messages.json +10 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.dbg.json +4 -0
- package/build/contracts/src/bridge/Outbox.sol/Outbox.json +546 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.dbg.json +4 -0
- package/build/contracts/src/bridge/SequencerInbox.sol/SequencerInbox.json +814 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeLib.sol/ChallengeLib.json +10 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/ChallengeManager.sol/ChallengeManager.json +669 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeManager.sol/IChallengeManager.json +386 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.dbg.json +4 -0
- package/build/contracts/src/challenge/IChallengeResultReceiver.sol/IChallengeResultReceiver.json +34 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.dbg.json +4 -0
- package/build/contracts/src/libraries/AddressAliasHelper.sol/AddressAliasHelper.json +10 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/AdminFallbackProxy.json +77 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.dbg.json +4 -0
- package/build/contracts/src/libraries/AdminFallbackProxy.sol/DoubleLogicERC1967Upgrade.json +69 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.dbg.json +4 -0
- package/build/contracts/src/libraries/CryptographyPrimitives.sol/CryptographyPrimitives.json +10 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.dbg.json +4 -0
- package/build/contracts/src/libraries/DelegateCallAware.sol/DelegateCallAware.json +10 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/DoubleLogicUUPSUpgradeable.sol/DoubleLogicUUPSUpgradeable.json +144 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/GasRefundEnabled.json +10 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.dbg.json +4 -0
- package/build/contracts/src/libraries/IGasRefunder.sol/IGasRefunder.json +40 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.dbg.json +4 -0
- package/build/contracts/src/libraries/MerkleLib.sol/MerkleLib.json +10 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.dbg.json +4 -0
- package/build/contracts/src/libraries/UUPSNotUpgradeable.sol/UUPSNotUpgradeable.json +82 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeStub.sol/BridgeStub.json +561 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.dbg.json +4 -0
- package/build/contracts/src/mocks/BridgeUnproxied.sol/BridgeUnproxied.json +655 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/InboxStub.sol/InboxStub.json +588 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.dbg.json +4 -0
- package/build/contracts/src/mocks/MockResultReceiver.sol/MockResultReceiver.json +188 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.dbg.json +4 -0
- package/build/contracts/src/mocks/ProxyAdminForBinding.sol/ProxyAdminForBinding.json +160 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.dbg.json +4 -0
- package/build/contracts/src/mocks/SequencerInboxStub.sol/SequencerInboxStub.json +870 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.dbg.json +4 -0
- package/build/contracts/src/mocks/Simple.sol/Simple.json +242 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.dbg.json +4 -0
- package/build/contracts/src/mocks/SimpleProxy.sol/SimpleProxy.json +30 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.dbg.json +4 -0
- package/build/contracts/src/mocks/SingleExecutionChallenge.sol/SingleExecutionChallenge.json +720 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.dbg.json +4 -0
- package/build/contracts/src/mocks/TimedOutChallengeManager.sol/TimedOutChallengeManager.json +669 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterface.sol/NodeInterface.json +286 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.dbg.json +4 -0
- package/build/contracts/src/node-interface/NodeInterfaceDebug.sol/NodeInterfaceDebug.json +67 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.dbg.json +4 -0
- package/build/contracts/src/osp/HashProofHelper.sol/HashProofHelper.json +165 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/IOneStepProofEntry.json +57 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProofEntry.sol/OneStepProofEntryLib.json +10 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.dbg.json +4 -0
- package/build/contracts/src/osp/IOneStepProver.sol/IOneStepProver.json +477 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProofEntry.sol/OneStepProofEntry.json +135 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProver0.sol/OneStepProver0.json +477 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverHostIo.sol/OneStepProverHostIo.json +477 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMath.sol/OneStepProverMath.json +477 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.dbg.json +4 -0
- package/build/contracts/src/osp/OneStepProverMemory.sol/OneStepProverMemory.json +477 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAddressTable.sol/ArbAddressTable.json +148 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbAggregator.sol/ArbAggregator.json +148 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbBLS.sol/ArbBLS.json +10 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbDebug.sol/ArbDebug.json +193 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbFunctionTable.sol/ArbFunctionTable.json +77 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbGasInfo.sol/ArbGasInfo.json +324 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbInfo.sol/ArbInfo.json +49 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwner.sol/ArbOwner.json +378 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbOwnerPublic.sol/ArbOwnerPublic.json +69 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbRetryableTx.sol/ArbRetryableTx.json +306 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbStatistics.sol/ArbStatistics.json +49 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbSys.sol/ArbSys.json +380 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosActs.sol/ArbosActs.json +77 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.dbg.json +4 -0
- package/build/contracts/src/precompiles/ArbosTest.sol/ArbosTest.json +24 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/BridgeCreator.sol/BridgeCreator.json +243 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupAdmin.sol/IRollupAdmin.json +544 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupCore.sol/IRollupCore.json +889 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupEventInbox.sol/IRollupEventInbox.json +68 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUser.json +1428 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserAbs.json +1309 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.dbg.json +4 -0
- package/build/contracts/src/rollup/IRollupLogic.sol/IRollupUserERC20.json +1443 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.dbg.json +4 -0
- package/build/contracts/src/rollup/Node.sol/NodeLib.json +10 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupAdminLogic.sol/RollupAdminLogic.json +1808 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCore.sol/RollupCore.json +1051 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupCreator.sol/RollupCreator.json +343 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupEventInbox.sol/RollupEventInbox.json +110 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupLib.sol/RollupLib.json +10 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupProxy.sol/RollupProxy.json +226 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/AbsRollupUserLogic.json +1578 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/ERC20RollupUserLogic.json +1712 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.dbg.json +4 -0
- package/build/contracts/src/rollup/RollupUserLogic.sol/RollupUserLogic.json +1697 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorUtils.sol/ValidatorUtils.json +379 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWallet.sol/ValidatorWallet.json +435 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.dbg.json +4 -0
- package/build/contracts/src/rollup/ValidatorWalletCreator.sol/ValidatorWalletCreator.json +150 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.dbg.json +4 -0
- package/build/contracts/src/state/Deserialize.sol/Deserialize.json +10 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.dbg.json +4 -0
- package/build/contracts/src/state/GlobalState.sol/GlobalStateLib.json +10 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.dbg.json +4 -0
- package/build/contracts/src/state/Instructions.sol/Instructions.json +10 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.dbg.json +4 -0
- package/build/contracts/src/state/Machine.sol/MachineLib.json +10 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.dbg.json +4 -0
- package/build/contracts/src/state/MerkleProof.sol/MerkleProofLib.json +10 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.dbg.json +4 -0
- package/build/contracts/src/state/Module.sol/ModuleLib.json +10 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemory.sol/ModuleMemoryLib.json +10 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.dbg.json +4 -0
- package/build/contracts/src/state/ModuleMemoryCompact.sol/ModuleMemoryCompactLib.json +10 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/PcArray.sol/PcArrayLib.json +10 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.dbg.json +4 -0
- package/build/contracts/src/state/StackFrame.sol/StackFrameLib.json +10 -0
- package/build/contracts/src/state/Value.sol/ValueLib.dbg.json +4 -0
- package/build/contracts/src/state/Value.sol/ValueLib.json +10 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueArray.sol/ValueArrayLib.json +10 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.dbg.json +4 -0
- package/build/contracts/src/state/ValueStack.sol/ValueStackLib.json +10 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/BridgeTester.sol/BridgeTester.json +603 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/CryptographyPrimitivesTester.sol/CryptographyPrimitivesTester.json +54 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/MessageTester.sol/MessageTester.json +84 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/OutboxWithoutOptTester.sol/OutboxWithoutOptTester.json +520 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.dbg.json +4 -0
- package/build/contracts/src/test-helpers/RollupMock.sol/RollupMock.json +49 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.dbg.json +4 -0
- package/build/contracts/src/test-helpers/ValueArrayTester.sol/ValueArrayTester.json +18 -0
- package/package.json +5 -2
@@ -0,0 +1,561 @@
|
|
1
|
+
{
|
2
|
+
"_format": "hh-sol-artifact-1",
|
3
|
+
"contractName": "BridgeStub",
|
4
|
+
"sourceName": "src/mocks/BridgeStub.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
|
+
"anonymous": false,
|
24
|
+
"inputs": [
|
25
|
+
{
|
26
|
+
"indexed": true,
|
27
|
+
"internalType": "address",
|
28
|
+
"name": "outbox",
|
29
|
+
"type": "address"
|
30
|
+
},
|
31
|
+
{
|
32
|
+
"indexed": true,
|
33
|
+
"internalType": "address",
|
34
|
+
"name": "to",
|
35
|
+
"type": "address"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"indexed": false,
|
39
|
+
"internalType": "uint256",
|
40
|
+
"name": "value",
|
41
|
+
"type": "uint256"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"indexed": false,
|
45
|
+
"internalType": "bytes",
|
46
|
+
"name": "data",
|
47
|
+
"type": "bytes"
|
48
|
+
}
|
49
|
+
],
|
50
|
+
"name": "BridgeCallTriggered",
|
51
|
+
"type": "event"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"anonymous": false,
|
55
|
+
"inputs": [
|
56
|
+
{
|
57
|
+
"indexed": true,
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "inbox",
|
60
|
+
"type": "address"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"indexed": false,
|
64
|
+
"internalType": "bool",
|
65
|
+
"name": "enabled",
|
66
|
+
"type": "bool"
|
67
|
+
}
|
68
|
+
],
|
69
|
+
"name": "InboxToggle",
|
70
|
+
"type": "event"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"anonymous": false,
|
74
|
+
"inputs": [
|
75
|
+
{
|
76
|
+
"indexed": true,
|
77
|
+
"internalType": "uint256",
|
78
|
+
"name": "messageIndex",
|
79
|
+
"type": "uint256"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"indexed": true,
|
83
|
+
"internalType": "bytes32",
|
84
|
+
"name": "beforeInboxAcc",
|
85
|
+
"type": "bytes32"
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"indexed": false,
|
89
|
+
"internalType": "address",
|
90
|
+
"name": "inbox",
|
91
|
+
"type": "address"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"indexed": false,
|
95
|
+
"internalType": "uint8",
|
96
|
+
"name": "kind",
|
97
|
+
"type": "uint8"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"indexed": false,
|
101
|
+
"internalType": "address",
|
102
|
+
"name": "sender",
|
103
|
+
"type": "address"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"indexed": false,
|
107
|
+
"internalType": "bytes32",
|
108
|
+
"name": "messageDataHash",
|
109
|
+
"type": "bytes32"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"indexed": false,
|
113
|
+
"internalType": "uint256",
|
114
|
+
"name": "baseFeeL1",
|
115
|
+
"type": "uint256"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"indexed": false,
|
119
|
+
"internalType": "uint64",
|
120
|
+
"name": "timestamp",
|
121
|
+
"type": "uint64"
|
122
|
+
}
|
123
|
+
],
|
124
|
+
"name": "MessageDelivered",
|
125
|
+
"type": "event"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"anonymous": false,
|
129
|
+
"inputs": [
|
130
|
+
{
|
131
|
+
"indexed": true,
|
132
|
+
"internalType": "address",
|
133
|
+
"name": "outbox",
|
134
|
+
"type": "address"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"indexed": false,
|
138
|
+
"internalType": "bool",
|
139
|
+
"name": "enabled",
|
140
|
+
"type": "bool"
|
141
|
+
}
|
142
|
+
],
|
143
|
+
"name": "OutboxToggle",
|
144
|
+
"type": "event"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"anonymous": false,
|
148
|
+
"inputs": [
|
149
|
+
{
|
150
|
+
"indexed": false,
|
151
|
+
"internalType": "address",
|
152
|
+
"name": "newSequencerInbox",
|
153
|
+
"type": "address"
|
154
|
+
}
|
155
|
+
],
|
156
|
+
"name": "SequencerInboxUpdated",
|
157
|
+
"type": "event"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"inputs": [],
|
161
|
+
"name": "acceptFundsFromOldBridge",
|
162
|
+
"outputs": [],
|
163
|
+
"stateMutability": "payable",
|
164
|
+
"type": "function"
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"inputs": [],
|
168
|
+
"name": "activeOutbox",
|
169
|
+
"outputs": [
|
170
|
+
{
|
171
|
+
"internalType": "address",
|
172
|
+
"name": "",
|
173
|
+
"type": "address"
|
174
|
+
}
|
175
|
+
],
|
176
|
+
"stateMutability": "view",
|
177
|
+
"type": "function"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"inputs": [
|
181
|
+
{
|
182
|
+
"internalType": "uint256",
|
183
|
+
"name": "",
|
184
|
+
"type": "uint256"
|
185
|
+
}
|
186
|
+
],
|
187
|
+
"name": "allowedDelayedInboxList",
|
188
|
+
"outputs": [
|
189
|
+
{
|
190
|
+
"internalType": "address",
|
191
|
+
"name": "",
|
192
|
+
"type": "address"
|
193
|
+
}
|
194
|
+
],
|
195
|
+
"stateMutability": "view",
|
196
|
+
"type": "function"
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"inputs": [
|
200
|
+
{
|
201
|
+
"internalType": "address",
|
202
|
+
"name": "inbox",
|
203
|
+
"type": "address"
|
204
|
+
}
|
205
|
+
],
|
206
|
+
"name": "allowedDelayedInboxes",
|
207
|
+
"outputs": [
|
208
|
+
{
|
209
|
+
"internalType": "bool",
|
210
|
+
"name": "",
|
211
|
+
"type": "bool"
|
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": "allowedOutboxList",
|
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": "",
|
241
|
+
"type": "address"
|
242
|
+
}
|
243
|
+
],
|
244
|
+
"name": "allowedOutboxes",
|
245
|
+
"outputs": [
|
246
|
+
{
|
247
|
+
"internalType": "bool",
|
248
|
+
"name": "",
|
249
|
+
"type": "bool"
|
250
|
+
}
|
251
|
+
],
|
252
|
+
"stateMutability": "pure",
|
253
|
+
"type": "function"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"inputs": [
|
257
|
+
{
|
258
|
+
"internalType": "uint256",
|
259
|
+
"name": "",
|
260
|
+
"type": "uint256"
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"name": "delayedInboxAccs",
|
264
|
+
"outputs": [
|
265
|
+
{
|
266
|
+
"internalType": "bytes32",
|
267
|
+
"name": "",
|
268
|
+
"type": "bytes32"
|
269
|
+
}
|
270
|
+
],
|
271
|
+
"stateMutability": "view",
|
272
|
+
"type": "function"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"inputs": [],
|
276
|
+
"name": "delayedMessageCount",
|
277
|
+
"outputs": [
|
278
|
+
{
|
279
|
+
"internalType": "uint256",
|
280
|
+
"name": "",
|
281
|
+
"type": "uint256"
|
282
|
+
}
|
283
|
+
],
|
284
|
+
"stateMutability": "view",
|
285
|
+
"type": "function"
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"inputs": [
|
289
|
+
{
|
290
|
+
"internalType": "uint8",
|
291
|
+
"name": "kind",
|
292
|
+
"type": "uint8"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"internalType": "address",
|
296
|
+
"name": "sender",
|
297
|
+
"type": "address"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"internalType": "bytes32",
|
301
|
+
"name": "messageDataHash",
|
302
|
+
"type": "bytes32"
|
303
|
+
}
|
304
|
+
],
|
305
|
+
"name": "enqueueDelayedMessage",
|
306
|
+
"outputs": [
|
307
|
+
{
|
308
|
+
"internalType": "uint256",
|
309
|
+
"name": "",
|
310
|
+
"type": "uint256"
|
311
|
+
}
|
312
|
+
],
|
313
|
+
"stateMutability": "payable",
|
314
|
+
"type": "function"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"inputs": [
|
318
|
+
{
|
319
|
+
"internalType": "bytes32",
|
320
|
+
"name": "dataHash",
|
321
|
+
"type": "bytes32"
|
322
|
+
},
|
323
|
+
{
|
324
|
+
"internalType": "uint256",
|
325
|
+
"name": "afterDelayedMessagesRead",
|
326
|
+
"type": "uint256"
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"internalType": "uint256",
|
330
|
+
"name": "prevMessageCount",
|
331
|
+
"type": "uint256"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"internalType": "uint256",
|
335
|
+
"name": "newMessageCount",
|
336
|
+
"type": "uint256"
|
337
|
+
}
|
338
|
+
],
|
339
|
+
"name": "enqueueSequencerMessage",
|
340
|
+
"outputs": [
|
341
|
+
{
|
342
|
+
"internalType": "uint256",
|
343
|
+
"name": "seqMessageIndex",
|
344
|
+
"type": "uint256"
|
345
|
+
},
|
346
|
+
{
|
347
|
+
"internalType": "bytes32",
|
348
|
+
"name": "beforeAcc",
|
349
|
+
"type": "bytes32"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"internalType": "bytes32",
|
353
|
+
"name": "delayedAcc",
|
354
|
+
"type": "bytes32"
|
355
|
+
},
|
356
|
+
{
|
357
|
+
"internalType": "bytes32",
|
358
|
+
"name": "acc",
|
359
|
+
"type": "bytes32"
|
360
|
+
}
|
361
|
+
],
|
362
|
+
"stateMutability": "nonpayable",
|
363
|
+
"type": "function"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"inputs": [
|
367
|
+
{
|
368
|
+
"internalType": "address",
|
369
|
+
"name": "",
|
370
|
+
"type": "address"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"internalType": "uint256",
|
374
|
+
"name": "",
|
375
|
+
"type": "uint256"
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"internalType": "bytes",
|
379
|
+
"name": "",
|
380
|
+
"type": "bytes"
|
381
|
+
}
|
382
|
+
],
|
383
|
+
"name": "executeCall",
|
384
|
+
"outputs": [
|
385
|
+
{
|
386
|
+
"internalType": "bool",
|
387
|
+
"name": "",
|
388
|
+
"type": "bool"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"internalType": "bytes",
|
392
|
+
"name": "",
|
393
|
+
"type": "bytes"
|
394
|
+
}
|
395
|
+
],
|
396
|
+
"stateMutability": "pure",
|
397
|
+
"type": "function"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"inputs": [
|
401
|
+
{
|
402
|
+
"internalType": "contract IOwnable",
|
403
|
+
"name": "",
|
404
|
+
"type": "address"
|
405
|
+
}
|
406
|
+
],
|
407
|
+
"name": "initialize",
|
408
|
+
"outputs": [],
|
409
|
+
"stateMutability": "pure",
|
410
|
+
"type": "function"
|
411
|
+
},
|
412
|
+
{
|
413
|
+
"inputs": [],
|
414
|
+
"name": "rollup",
|
415
|
+
"outputs": [
|
416
|
+
{
|
417
|
+
"internalType": "contract IOwnable",
|
418
|
+
"name": "",
|
419
|
+
"type": "address"
|
420
|
+
}
|
421
|
+
],
|
422
|
+
"stateMutability": "pure",
|
423
|
+
"type": "function"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"inputs": [],
|
427
|
+
"name": "sequencerInbox",
|
428
|
+
"outputs": [
|
429
|
+
{
|
430
|
+
"internalType": "address",
|
431
|
+
"name": "",
|
432
|
+
"type": "address"
|
433
|
+
}
|
434
|
+
],
|
435
|
+
"stateMutability": "view",
|
436
|
+
"type": "function"
|
437
|
+
},
|
438
|
+
{
|
439
|
+
"inputs": [
|
440
|
+
{
|
441
|
+
"internalType": "uint256",
|
442
|
+
"name": "",
|
443
|
+
"type": "uint256"
|
444
|
+
}
|
445
|
+
],
|
446
|
+
"name": "sequencerInboxAccs",
|
447
|
+
"outputs": [
|
448
|
+
{
|
449
|
+
"internalType": "bytes32",
|
450
|
+
"name": "",
|
451
|
+
"type": "bytes32"
|
452
|
+
}
|
453
|
+
],
|
454
|
+
"stateMutability": "view",
|
455
|
+
"type": "function"
|
456
|
+
},
|
457
|
+
{
|
458
|
+
"inputs": [],
|
459
|
+
"name": "sequencerMessageCount",
|
460
|
+
"outputs": [
|
461
|
+
{
|
462
|
+
"internalType": "uint256",
|
463
|
+
"name": "",
|
464
|
+
"type": "uint256"
|
465
|
+
}
|
466
|
+
],
|
467
|
+
"stateMutability": "view",
|
468
|
+
"type": "function"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"inputs": [],
|
472
|
+
"name": "sequencerReportedSubMessageCount",
|
473
|
+
"outputs": [
|
474
|
+
{
|
475
|
+
"internalType": "uint256",
|
476
|
+
"name": "",
|
477
|
+
"type": "uint256"
|
478
|
+
}
|
479
|
+
],
|
480
|
+
"stateMutability": "view",
|
481
|
+
"type": "function"
|
482
|
+
},
|
483
|
+
{
|
484
|
+
"inputs": [
|
485
|
+
{
|
486
|
+
"internalType": "address",
|
487
|
+
"name": "inbox",
|
488
|
+
"type": "address"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"internalType": "bool",
|
492
|
+
"name": "enabled",
|
493
|
+
"type": "bool"
|
494
|
+
}
|
495
|
+
],
|
496
|
+
"name": "setDelayedInbox",
|
497
|
+
"outputs": [],
|
498
|
+
"stateMutability": "nonpayable",
|
499
|
+
"type": "function"
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"inputs": [
|
503
|
+
{
|
504
|
+
"internalType": "address",
|
505
|
+
"name": "",
|
506
|
+
"type": "address"
|
507
|
+
},
|
508
|
+
{
|
509
|
+
"internalType": "bool",
|
510
|
+
"name": "",
|
511
|
+
"type": "bool"
|
512
|
+
}
|
513
|
+
],
|
514
|
+
"name": "setOutbox",
|
515
|
+
"outputs": [],
|
516
|
+
"stateMutability": "pure",
|
517
|
+
"type": "function"
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"inputs": [
|
521
|
+
{
|
522
|
+
"internalType": "address",
|
523
|
+
"name": "_sequencerInbox",
|
524
|
+
"type": "address"
|
525
|
+
}
|
526
|
+
],
|
527
|
+
"name": "setSequencerInbox",
|
528
|
+
"outputs": [],
|
529
|
+
"stateMutability": "nonpayable",
|
530
|
+
"type": "function"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"inputs": [
|
534
|
+
{
|
535
|
+
"internalType": "address",
|
536
|
+
"name": "batchPoster",
|
537
|
+
"type": "address"
|
538
|
+
},
|
539
|
+
{
|
540
|
+
"internalType": "bytes32",
|
541
|
+
"name": "dataHash",
|
542
|
+
"type": "bytes32"
|
543
|
+
}
|
544
|
+
],
|
545
|
+
"name": "submitBatchSpendingReport",
|
546
|
+
"outputs": [
|
547
|
+
{
|
548
|
+
"internalType": "uint256",
|
549
|
+
"name": "",
|
550
|
+
"type": "uint256"
|
551
|
+
}
|
552
|
+
],
|
553
|
+
"stateMutability": "nonpayable",
|
554
|
+
"type": "function"
|
555
|
+
}
|
556
|
+
],
|
557
|
+
"bytecode": "0x608060405234801561001057600080fd5b50610c86806100206000396000f3fe6080604052600436106101295760003560e01c80639e5d4c49116100ab578063cee3d7281161006f578063cee3d72814610367578063d5719dc214610382578063e76f5c8d146103a2578063e77145f4146101c2578063eca067ad146103c2578063ee35f327146103d757600080fd5b80639e5d4c49146102a8578063ab5d8943146102d6578063ae60bd13146102f6578063c4d66de814610332578063cb23bcb51461035257600080fd5b80635fca4a16116100f25780635fca4a16146101e45780637a88b107146101fa57806386598a561461021d5780638db5993b1461025d578063945e11471461027057600080fd5b806284120c1461012e57806316bf557914610152578063413b35bd1461017257806347fb24c5146101a25780634f61f850146101c4575b600080fd5b34801561013a57600080fd5b506005545b6040519081526020015b60405180910390f35b34801561015e57600080fd5b5061013f61016d3660046109b6565b6103f7565b34801561017e57600080fd5b5061019261018d3660046109e7565b610418565b6040519015158152602001610149565b3480156101ae57600080fd5b506101c26101bd366004610a0b565b61043b565b005b3480156101d057600080fd5b506101c26101df3660046109e7565b610652565b3480156101f057600080fd5b5061013f60075481565b34801561020657600080fd5b5061013f610215366004610a49565b600092915050565b34801561022957600080fd5b5061023d610238366004610a75565b6106a6565b604080519485526020850193909352918301526060820152608001610149565b61013f61026b366004610aa7565b6107dd565b34801561027c57600080fd5b5061029061028b3660046109b6565b610846565b6040516001600160a01b039091168152602001610149565b3480156102b457600080fd5b506102c86102c3366004610aee565b610870565b604051610149929190610b77565b3480156102e257600080fd5b50600354610290906001600160a01b031681565b34801561030257600080fd5b506101926103113660046109e7565b6001600160a01b031660009081526020819052604090206001015460ff1690565b34801561033e57600080fd5b506101c261034d3660046109e7565b61088c565b34801561035e57600080fd5b50610290610418565b34801561037357600080fd5b506101c261034d366004610a0b565b34801561038e57600080fd5b5061013f61039d3660046109b6565b6108a4565b3480156103ae57600080fd5b506102906103bd3660046109b6565b6108b4565b3480156103ce57600080fd5b5060045461013f565b3480156103e357600080fd5b50600654610290906001600160a01b031681565b6005818154811061040757600080fd5b600091825260209091200154905081565b600060405162461bcd60e51b815260040161043290610bd6565b60405180910390fd5b6001600160a01b03821660008181526020818152604091829020600181015492518515158152909360ff90931692917f6675ce8882cb71637de5903a193d218cc0544be9c0650cb83e0955f6aa2bf521910160405180910390a282151581151514156104a75750505050565b82156105335760408051808201825260018054825260208083018281526001600160a01b0389166000818152928390529482209351845551928201805460ff1916931515939093179092558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b031916909117905561064c565b60018054610542908290610bff565b8154811061055257610552610c24565b6000918252602090912001548254600180546001600160a01b0390931692909190811061058157610581610c24565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816000015460008060018560000154815481106105ce576105ce610c24565b60009182526020808320909101546001600160a01b03168352820192909252604001902055600180548061060457610604610c3a565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b038616825281905260408120908155600101805460ff191690555b50505050565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f8c1e6003ed33ca6748d4ad3dd4ecc949065c89dceb31fdf546a5289202763c6a9060200160405180910390a150565b60008060008085600754141580156106bd57508515155b80156106ca575060075415155b156106f65760075460405163e2051feb60e01b8152600481019190915260248101879052604401610432565b600785905560055493508315610734576005805461071690600190610bff565b8154811061072657610726610c24565b906000526020600020015492505b8615610765576004610747600189610bff565b8154811061075757610757610c24565b906000526020600020015491505b60408051602081018590529081018990526060810183905260800160408051601f198184030181529190528051602090910120600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0018190559398929750909550919350915050565b3360009081526020819052604081206001015460ff166108305760405162461bcd60e51b815260206004820152600e60248201526d09c9ea8be8ca49e9abe929c849eb60931b6044820152606401610432565b61083e8484434248876108c4565b949350505050565b6002818154811061085657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000606060405162461bcd60e51b815260040161043290610bd6565b60405162461bcd60e51b815260040161043290610bd6565b6004818154811061040757600080fd5b6001818154811061085657600080fd5b60045460408051600060208083018290526021830182905260358301829052603d8301829052604583018290526065830182905260858084018790528451808503909101815260a5909301909352815191909201209091906000821561094f576004610931600185610bff565b8154811061094157610941610c24565b906000526020600020015490505b6040805160208082019390935280820193909352805180840382018152606090930190528151910120600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0155979650505050505050565b6000602082840312156109c857600080fd5b5035919050565b6001600160a01b03811681146109e457600080fd5b50565b6000602082840312156109f957600080fd5b8135610a04816109cf565b9392505050565b60008060408385031215610a1e57600080fd5b8235610a29816109cf565b915060208301358015158114610a3e57600080fd5b809150509250929050565b60008060408385031215610a5c57600080fd5b8235610a67816109cf565b946020939093013593505050565b60008060008060808587031215610a8b57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600060608486031215610abc57600080fd5b833560ff81168114610acd57600080fd5b92506020840135610add816109cf565b929592945050506040919091013590565b60008060008060608587031215610b0457600080fd5b8435610b0f816109cf565b935060208501359250604085013567ffffffffffffffff80821115610b3357600080fd5b818701915087601f830112610b4757600080fd5b813581811115610b5657600080fd5b886020828501011115610b6857600080fd5b95989497505060200194505050565b821515815260006020604081840152835180604085015260005b81811015610bad57858101830151858201606001528201610b91565b81811115610bbf576000606083870101525b50601f01601f191692909201606001949350505050565b6020808252600f908201526e1393d517d253541311535153951151608a1b604082015260600190565b600082821015610c1f57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfea2646970667358221220acb36ff1631207b3749629a85cf946ae3805ba0ada7fdc02c7b686bc400f48ca64736f6c63430008090033",
|
558
|
+
"deployedBytecode": "0x6080604052600436106101295760003560e01c80639e5d4c49116100ab578063cee3d7281161006f578063cee3d72814610367578063d5719dc214610382578063e76f5c8d146103a2578063e77145f4146101c2578063eca067ad146103c2578063ee35f327146103d757600080fd5b80639e5d4c49146102a8578063ab5d8943146102d6578063ae60bd13146102f6578063c4d66de814610332578063cb23bcb51461035257600080fd5b80635fca4a16116100f25780635fca4a16146101e45780637a88b107146101fa57806386598a561461021d5780638db5993b1461025d578063945e11471461027057600080fd5b806284120c1461012e57806316bf557914610152578063413b35bd1461017257806347fb24c5146101a25780634f61f850146101c4575b600080fd5b34801561013a57600080fd5b506005545b6040519081526020015b60405180910390f35b34801561015e57600080fd5b5061013f61016d3660046109b6565b6103f7565b34801561017e57600080fd5b5061019261018d3660046109e7565b610418565b6040519015158152602001610149565b3480156101ae57600080fd5b506101c26101bd366004610a0b565b61043b565b005b3480156101d057600080fd5b506101c26101df3660046109e7565b610652565b3480156101f057600080fd5b5061013f60075481565b34801561020657600080fd5b5061013f610215366004610a49565b600092915050565b34801561022957600080fd5b5061023d610238366004610a75565b6106a6565b604080519485526020850193909352918301526060820152608001610149565b61013f61026b366004610aa7565b6107dd565b34801561027c57600080fd5b5061029061028b3660046109b6565b610846565b6040516001600160a01b039091168152602001610149565b3480156102b457600080fd5b506102c86102c3366004610aee565b610870565b604051610149929190610b77565b3480156102e257600080fd5b50600354610290906001600160a01b031681565b34801561030257600080fd5b506101926103113660046109e7565b6001600160a01b031660009081526020819052604090206001015460ff1690565b34801561033e57600080fd5b506101c261034d3660046109e7565b61088c565b34801561035e57600080fd5b50610290610418565b34801561037357600080fd5b506101c261034d366004610a0b565b34801561038e57600080fd5b5061013f61039d3660046109b6565b6108a4565b3480156103ae57600080fd5b506102906103bd3660046109b6565b6108b4565b3480156103ce57600080fd5b5060045461013f565b3480156103e357600080fd5b50600654610290906001600160a01b031681565b6005818154811061040757600080fd5b600091825260209091200154905081565b600060405162461bcd60e51b815260040161043290610bd6565b60405180910390fd5b6001600160a01b03821660008181526020818152604091829020600181015492518515158152909360ff90931692917f6675ce8882cb71637de5903a193d218cc0544be9c0650cb83e0955f6aa2bf521910160405180910390a282151581151514156104a75750505050565b82156105335760408051808201825260018054825260208083018281526001600160a01b0389166000818152928390529482209351845551928201805460ff1916931515939093179092558054808201825591527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b031916909117905561064c565b60018054610542908290610bff565b8154811061055257610552610c24565b6000918252602090912001548254600180546001600160a01b0390931692909190811061058157610581610c24565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550816000015460008060018560000154815481106105ce576105ce610c24565b60009182526020808320909101546001600160a01b03168352820192909252604001902055600180548061060457610604610c3a565b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b038616825281905260408120908155600101805460ff191690555b50505050565b600680546001600160a01b0319166001600160a01b0383169081179091556040519081527f8c1e6003ed33ca6748d4ad3dd4ecc949065c89dceb31fdf546a5289202763c6a9060200160405180910390a150565b60008060008085600754141580156106bd57508515155b80156106ca575060075415155b156106f65760075460405163e2051feb60e01b8152600481019190915260248101879052604401610432565b600785905560055493508315610734576005805461071690600190610bff565b8154811061072657610726610c24565b906000526020600020015492505b8615610765576004610747600189610bff565b8154811061075757610757610c24565b906000526020600020015491505b60408051602081018590529081018990526060810183905260800160408051601f198184030181529190528051602090910120600580546001810182556000919091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0018190559398929750909550919350915050565b3360009081526020819052604081206001015460ff166108305760405162461bcd60e51b815260206004820152600e60248201526d09c9ea8be8ca49e9abe929c849eb60931b6044820152606401610432565b61083e8484434248876108c4565b949350505050565b6002818154811061085657600080fd5b6000918252602090912001546001600160a01b0316905081565b6000606060405162461bcd60e51b815260040161043290610bd6565b60405162461bcd60e51b815260040161043290610bd6565b6004818154811061040757600080fd5b6001818154811061085657600080fd5b60045460408051600060208083018290526021830182905260358301829052603d8301829052604583018290526065830182905260858084018790528451808503909101815260a5909301909352815191909201209091906000821561094f576004610931600185610bff565b8154811061094157610941610c24565b906000526020600020015490505b6040805160208082019390935280820193909352805180840382018152606090930190528151910120600480546001810182556000919091527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b0155979650505050505050565b6000602082840312156109c857600080fd5b5035919050565b6001600160a01b03811681146109e457600080fd5b50565b6000602082840312156109f957600080fd5b8135610a04816109cf565b9392505050565b60008060408385031215610a1e57600080fd5b8235610a29816109cf565b915060208301358015158114610a3e57600080fd5b809150509250929050565b60008060408385031215610a5c57600080fd5b8235610a67816109cf565b946020939093013593505050565b60008060008060808587031215610a8b57600080fd5b5050823594602084013594506040840135936060013592509050565b600080600060608486031215610abc57600080fd5b833560ff81168114610acd57600080fd5b92506020840135610add816109cf565b929592945050506040919091013590565b60008060008060608587031215610b0457600080fd5b8435610b0f816109cf565b935060208501359250604085013567ffffffffffffffff80821115610b3357600080fd5b818701915087601f830112610b4757600080fd5b813581811115610b5657600080fd5b886020828501011115610b6857600080fd5b95989497505060200194505050565b821515815260006020604081840152835180604085015260005b81811015610bad57858101830151858201606001528201610b91565b81811115610bbf576000606083870101525b50601f01601f191692909201606001949350505050565b6020808252600f908201526e1393d517d253541311535153951151608a1b604082015260600190565b600082821015610c1f57634e487b7160e01b600052601160045260246000fd5b500390565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052603160045260246000fdfea2646970667358221220acb36ff1631207b3749629a85cf946ae3805ba0ada7fdc02c7b686bc400f48ca64736f6c63430008090033",
|
559
|
+
"linkReferences": {},
|
560
|
+
"deployedLinkReferences": {}
|
561
|
+
}
|