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