@hyperlane-xyz/core 1.3.1 → 1.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/contracts/Mailbox.sol +2 -1
- package/contracts/Router.sol +6 -5
- package/contracts/interfaces/IInterchainSecurityModule.sol +1 -1
- package/contracts/interfaces/{IAggregationIsm.sol → isms/IAggregationIsm.sol} +2 -2
- package/contracts/interfaces/isms/IMultisigIsm.sol +1 -1
- package/contracts/interfaces/isms/IRoutingIsm.sol +17 -0
- package/contracts/isms/aggregation/AbstractAggregationIsm.sol +3 -2
- package/contracts/isms/multisig/AbstractMultisigIsm.sol +6 -5
- package/contracts/isms/multisig/LegacyMultisigIsm.sol +15 -11
- package/contracts/isms/routing/AbstractRoutingIsm.sol +45 -0
- package/contracts/isms/routing/DomainRoutingIsm.sol +105 -0
- package/contracts/isms/routing/DomainRoutingIsmFactory.sol +46 -0
- package/contracts/isms/routing/InterchainAccountIsm.sol +42 -0
- package/contracts/libs/MetaProxy.sol +2 -2
- package/contracts/libs/MinimalProxy.sol +10 -2
- package/contracts/libs/middleware/InterchainAccountMessage.sol +9 -0
- package/contracts/middleware/InterchainQueryRouter.sol +0 -1
- package/contracts/middleware/liquidity-layer/LiquidityLayerRouter.sol +4 -6
- package/contracts/middleware/liquidity-layer/adapters/CircleBridgeAdapter.sol +9 -10
- package/contracts/middleware/liquidity-layer/adapters/PortalAdapter.sol +1 -1
- package/contracts/mock/MockHyperlaneEnvironment.sol +3 -0
- package/contracts/mock/MockMailbox.sol +60 -9
- package/contracts/test/TestIsm.sol +4 -0
- package/dist/contracts/interfaces/index.d.ts +0 -1
- package/dist/contracts/interfaces/index.d.ts.map +1 -1
- package/dist/contracts/interfaces/{IAggregationIsm.d.ts → isms/IAggregationIsm.d.ts} +1 -1
- package/dist/contracts/interfaces/isms/IAggregationIsm.d.ts.map +1 -0
- package/dist/contracts/interfaces/isms/IAggregationIsm.js.map +1 -0
- package/dist/{interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.d.ts → contracts/interfaces/isms/IRoutingIsm.d.ts} +14 -6
- package/dist/contracts/interfaces/isms/IRoutingIsm.d.ts.map +1 -0
- package/dist/contracts/{isms/MultisigIsm.js → interfaces/isms/IRoutingIsm.js} +1 -1
- package/dist/contracts/interfaces/isms/IRoutingIsm.js.map +1 -0
- package/dist/contracts/interfaces/isms/index.d.ts +2 -0
- package/dist/contracts/interfaces/isms/index.d.ts.map +1 -1
- package/dist/contracts/isms/index.d.ts +2 -0
- package/dist/contracts/isms/index.d.ts.map +1 -1
- package/dist/{interfaces/IAggregationIsm.d.ts → contracts/isms/routing/AbstractRoutingIsm.d.ts} +14 -23
- package/dist/contracts/isms/routing/AbstractRoutingIsm.d.ts.map +1 -0
- package/dist/contracts/{Create2Factory.js → isms/routing/AbstractRoutingIsm.js} +1 -1
- package/dist/contracts/isms/routing/AbstractRoutingIsm.js.map +1 -0
- package/dist/contracts/isms/routing/DomainRoutingIsm.d.ts +197 -0
- package/dist/contracts/isms/routing/DomainRoutingIsm.d.ts.map +1 -0
- package/dist/contracts/{libs/ImmutableOwnable.js → isms/routing/DomainRoutingIsm.js} +1 -1
- package/dist/contracts/isms/routing/DomainRoutingIsm.js.map +1 -0
- package/dist/contracts/isms/routing/DomainRoutingIsmFactory.d.ts +64 -0
- package/dist/contracts/isms/routing/DomainRoutingIsmFactory.d.ts.map +1 -0
- package/dist/contracts/{InterchainGasPaymaster.js → isms/routing/DomainRoutingIsmFactory.js} +1 -1
- package/dist/contracts/isms/routing/DomainRoutingIsmFactory.js.map +1 -0
- package/dist/{interfaces/IMultisigIsm.d.ts → contracts/isms/routing/InterchainAccountIsm.d.ts} +14 -29
- package/dist/contracts/isms/routing/InterchainAccountIsm.d.ts.map +1 -0
- package/dist/contracts/isms/routing/InterchainAccountIsm.js +4 -0
- package/dist/contracts/isms/routing/InterchainAccountIsm.js.map +1 -0
- package/dist/contracts/isms/routing/index.d.ts +5 -0
- package/dist/contracts/isms/routing/index.d.ts.map +1 -0
- package/dist/contracts/isms/routing/index.js.map +1 -0
- package/dist/contracts/middleware/liquidity-layer/adapters/PortalAdapter.d.ts +9 -1
- package/dist/contracts/middleware/liquidity-layer/adapters/PortalAdapter.d.ts.map +1 -1
- package/dist/contracts/mock/MockMailbox.d.ts +47 -17
- package/dist/contracts/mock/MockMailbox.d.ts.map +1 -1
- package/dist/factories/contracts/Mailbox__factory.d.ts +1 -1
- package/dist/factories/contracts/Mailbox__factory.js +1 -1
- package/dist/factories/contracts/ValidatorAnnounce__factory.d.ts +1 -1
- package/dist/factories/contracts/ValidatorAnnounce__factory.js +1 -1
- package/dist/factories/contracts/interfaces/index.d.ts +0 -1
- package/dist/factories/contracts/interfaces/index.d.ts.map +1 -1
- package/dist/factories/contracts/interfaces/index.js +1 -3
- package/dist/factories/contracts/interfaces/index.js.map +1 -1
- package/dist/factories/{interfaces → contracts/interfaces/isms}/IAggregationIsm__factory.d.ts +1 -1
- package/dist/factories/contracts/interfaces/isms/IAggregationIsm__factory.d.ts.map +1 -0
- package/dist/factories/contracts/interfaces/isms/IAggregationIsm__factory.js.map +1 -0
- package/dist/factories/{interfaces/IGasOracle__factory.d.ts → contracts/interfaces/isms/IRoutingIsm__factory.d.ts} +5 -5
- package/dist/factories/contracts/interfaces/isms/IRoutingIsm__factory.d.ts.map +1 -0
- package/dist/factories/{interfaces/isms/IMultisigIsm__factory.js → contracts/interfaces/isms/IRoutingIsm__factory.js} +9 -14
- package/dist/factories/contracts/interfaces/isms/IRoutingIsm__factory.js.map +1 -0
- package/dist/factories/contracts/interfaces/isms/index.d.ts +2 -0
- package/dist/factories/contracts/interfaces/isms/index.d.ts.map +1 -1
- package/dist/factories/contracts/interfaces/isms/index.js +5 -1
- package/dist/factories/contracts/interfaces/isms/index.js.map +1 -1
- package/dist/factories/contracts/isms/aggregation/StaticAggregationIsmFactory__factory.d.ts +1 -1
- package/dist/factories/contracts/isms/aggregation/StaticAggregationIsmFactory__factory.js +1 -1
- package/dist/factories/contracts/isms/aggregation/StaticAggregationIsm__factory.d.ts +1 -1
- package/dist/factories/contracts/isms/aggregation/StaticAggregationIsm__factory.js +1 -1
- package/dist/factories/contracts/isms/index.d.ts +1 -0
- package/dist/factories/contracts/isms/index.d.ts.map +1 -1
- package/dist/factories/contracts/isms/index.js +2 -1
- package/dist/factories/contracts/isms/index.js.map +1 -1
- package/dist/factories/contracts/isms/multisig/LegacyMultisigIsm__factory.d.ts +1 -1
- package/dist/factories/contracts/isms/multisig/LegacyMultisigIsm__factory.d.ts.map +1 -1
- package/dist/factories/contracts/isms/multisig/LegacyMultisigIsm__factory.js +1 -1
- package/dist/factories/contracts/isms/multisig/LegacyMultisigIsm__factory.js.map +1 -1
- package/dist/factories/contracts/isms/multisig/StaticMultisigIsmFactory__factory.d.ts +1 -1
- package/dist/factories/contracts/isms/multisig/StaticMultisigIsmFactory__factory.js +1 -1
- package/dist/factories/contracts/isms/multisig/StaticMultisigIsm__factory.d.ts +1 -1
- package/dist/factories/contracts/isms/multisig/StaticMultisigIsm__factory.js +1 -1
- package/dist/factories/contracts/{interfaces/IAggregationIsm__factory.d.ts → isms/routing/AbstractRoutingIsm__factory.d.ts} +5 -5
- package/dist/factories/contracts/isms/routing/AbstractRoutingIsm__factory.d.ts.map +1 -0
- package/dist/factories/{interfaces/IMultisigIsm__factory.js → contracts/isms/routing/AbstractRoutingIsm__factory.js} +9 -14
- package/dist/factories/contracts/isms/routing/AbstractRoutingIsm__factory.js.map +1 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsmFactory__factory.d.ts +55 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsmFactory__factory.d.ts.map +1 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsmFactory__factory.js +83 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsmFactory__factory.js.map +1 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsm__factory.d.ts +48 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsm__factory.d.ts.map +1 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsm__factory.js +254 -0
- package/dist/factories/contracts/isms/routing/DomainRoutingIsm__factory.js.map +1 -0
- package/dist/factories/contracts/isms/routing/InterchainAccountIsm__factory.d.ts +45 -0
- package/dist/factories/contracts/isms/routing/InterchainAccountIsm__factory.d.ts.map +1 -0
- package/dist/factories/contracts/isms/routing/InterchainAccountIsm__factory.js +108 -0
- package/dist/factories/contracts/isms/routing/InterchainAccountIsm__factory.js.map +1 -0
- package/dist/factories/contracts/isms/routing/index.d.ts +5 -0
- package/dist/factories/contracts/isms/routing/index.d.ts.map +1 -0
- package/dist/factories/contracts/isms/routing/index.js +15 -0
- package/dist/factories/contracts/isms/routing/index.js.map +1 -0
- package/dist/factories/contracts/middleware/InterchainAccountRouter__factory.d.ts +1 -1
- package/dist/factories/contracts/middleware/InterchainAccountRouter__factory.js +1 -1
- package/dist/factories/contracts/middleware/InterchainQueryRouter__factory.d.ts +1 -1
- package/dist/factories/contracts/middleware/InterchainQueryRouter__factory.d.ts.map +1 -1
- package/dist/factories/contracts/middleware/InterchainQueryRouter__factory.js +1 -1
- package/dist/factories/contracts/middleware/InterchainQueryRouter__factory.js.map +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/LiquidityLayerRouter__factory.d.ts +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/LiquidityLayerRouter__factory.d.ts.map +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/LiquidityLayerRouter__factory.js +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/LiquidityLayerRouter__factory.js.map +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/CircleBridgeAdapter__factory.d.ts +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/CircleBridgeAdapter__factory.d.ts.map +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/CircleBridgeAdapter__factory.js +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/CircleBridgeAdapter__factory.js.map +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/PortalAdapter__factory.d.ts +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/PortalAdapter__factory.d.ts.map +1 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/PortalAdapter__factory.js +14 -1
- package/dist/factories/contracts/middleware/liquidity-layer/adapters/PortalAdapter__factory.js.map +1 -1
- package/dist/factories/contracts/mock/MockHyperlaneEnvironment__factory.d.ts +1 -1
- package/dist/factories/contracts/mock/MockHyperlaneEnvironment__factory.d.ts.map +1 -1
- package/dist/factories/contracts/mock/MockHyperlaneEnvironment__factory.js +1 -1
- package/dist/factories/contracts/mock/MockHyperlaneEnvironment__factory.js.map +1 -1
- package/dist/factories/contracts/mock/MockMailbox__factory.d.ts +1 -1
- package/dist/factories/contracts/mock/MockMailbox__factory.d.ts.map +1 -1
- package/dist/factories/contracts/mock/MockMailbox__factory.js +45 -9
- package/dist/factories/contracts/mock/MockMailbox__factory.js.map +1 -1
- package/dist/factories/contracts/test/LightTestRecipient__factory.d.ts +1 -1
- package/dist/factories/contracts/test/LightTestRecipient__factory.js +1 -1
- package/dist/factories/contracts/test/TestGasRouter__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestGasRouter__factory.d.ts.map +1 -1
- package/dist/factories/contracts/test/TestGasRouter__factory.js +1 -1
- package/dist/factories/contracts/test/TestGasRouter__factory.js.map +1 -1
- package/dist/factories/contracts/test/TestHyperlaneConnectionClient__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestHyperlaneConnectionClient__factory.js +1 -1
- package/dist/factories/contracts/test/TestIsm__factory.d.ts +9 -3
- package/dist/factories/contracts/test/TestIsm__factory.d.ts.map +1 -1
- package/dist/factories/contracts/test/TestIsm__factory.js +6 -1
- package/dist/factories/contracts/test/TestIsm__factory.js.map +1 -1
- package/dist/factories/contracts/test/TestLegacyMultisigIsm__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestLegacyMultisigIsm__factory.d.ts.map +1 -1
- package/dist/factories/contracts/test/TestLegacyMultisigIsm__factory.js +1 -1
- package/dist/factories/contracts/test/TestLegacyMultisigIsm__factory.js.map +1 -1
- package/dist/factories/contracts/test/TestMailbox__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestMailbox__factory.js +1 -1
- package/dist/factories/contracts/test/TestQuery__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestQuery__factory.js +1 -1
- package/dist/factories/contracts/test/TestRecipient__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestRecipient__factory.js +1 -1
- package/dist/factories/contracts/test/TestRouter__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestRouter__factory.d.ts.map +1 -1
- package/dist/factories/contracts/test/TestRouter__factory.js +1 -1
- package/dist/factories/contracts/test/TestRouter__factory.js.map +1 -1
- package/dist/factories/contracts/test/TestSendReceiver__factory.d.ts +1 -1
- package/dist/factories/contracts/test/TestSendReceiver__factory.js +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +14 -4
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/dist/contracts/Create2Factory.d.ts +0 -94
- package/dist/contracts/Create2Factory.d.ts.map +0 -1
- package/dist/contracts/Create2Factory.js.map +0 -1
- package/dist/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient.d.ts +0 -202
- package/dist/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient.d.ts.map +0 -1
- package/dist/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient.js +0 -4
- package/dist/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient.js.map +0 -1
- package/dist/contracts/ImmutableConnectionClient.sol/index.d.ts +0 -2
- package/dist/contracts/ImmutableConnectionClient.sol/index.d.ts.map +0 -1
- package/dist/contracts/ImmutableConnectionClient.sol/index.js.map +0 -1
- package/dist/contracts/InterchainGasPaymaster.d.ts +0 -162
- package/dist/contracts/InterchainGasPaymaster.d.ts.map +0 -1
- package/dist/contracts/InterchainGasPaymaster.js.map +0 -1
- package/dist/contracts/interfaces/IAggregationIsm.d.ts.map +0 -1
- package/dist/contracts/interfaces/IAggregationIsm.js.map +0 -1
- package/dist/contracts/isms/MultisigIsm.d.ts +0 -290
- package/dist/contracts/isms/MultisigIsm.d.ts.map +0 -1
- package/dist/contracts/isms/MultisigIsm.js.map +0 -1
- package/dist/contracts/libs/ImmutableOwnable.d.ts +0 -43
- package/dist/contracts/libs/ImmutableOwnable.d.ts.map +0 -1
- package/dist/contracts/libs/ImmutableOwnable.js.map +0 -1
- package/dist/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge.d.ts +0 -78
- package/dist/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge.d.ts.map +0 -1
- package/dist/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge.js +0 -4
- package/dist/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge.js.map +0 -1
- package/dist/contracts/mock/MockCircleBridge.d.ts +0 -86
- package/dist/contracts/mock/MockCircleBridge.d.ts.map +0 -1
- package/dist/contracts/mock/MockCircleBridge.js +0 -4
- package/dist/contracts/mock/MockCircleBridge.js.map +0 -1
- package/dist/contracts/mock/MockInterchainAccountRouter.d.ts +0 -422
- package/dist/contracts/mock/MockInterchainAccountRouter.d.ts.map +0 -1
- package/dist/contracts/mock/MockInterchainAccountRouter.js +0 -4
- package/dist/contracts/mock/MockInterchainAccountRouter.js.map +0 -1
- package/dist/contracts/test/TestMultisigIsm.d.ts +0 -306
- package/dist/contracts/test/TestMultisigIsm.d.ts.map +0 -1
- package/dist/contracts/test/TestMultisigIsm.js +0 -4
- package/dist/contracts/test/TestMultisigIsm.js.map +0 -1
- package/dist/factories/contracts/Create2Factory__factory.d.ts +0 -55
- package/dist/factories/contracts/Create2Factory__factory.d.ts.map +0 -1
- package/dist/factories/contracts/Create2Factory__factory.js +0 -163
- package/dist/factories/contracts/Create2Factory__factory.js.map +0 -1
- package/dist/factories/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient__factory.d.ts +0 -43
- package/dist/factories/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient__factory.d.ts.map +0 -1
- package/dist/factories/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient__factory.js +0 -200
- package/dist/factories/contracts/ImmutableConnectionClient.sol/HyperlaneConnectionClient__factory.js.map +0 -1
- package/dist/factories/contracts/ImmutableConnectionClient.sol/index.d.ts +0 -2
- package/dist/factories/contracts/ImmutableConnectionClient.sol/index.d.ts.map +0 -1
- package/dist/factories/contracts/ImmutableConnectionClient.sol/index.js +0 -9
- package/dist/factories/contracts/ImmutableConnectionClient.sol/index.js.map +0 -1
- package/dist/factories/contracts/InterchainGasPaymaster__factory.d.ts +0 -62
- package/dist/factories/contracts/InterchainGasPaymaster__factory.d.ts.map +0 -1
- package/dist/factories/contracts/InterchainGasPaymaster__factory.js +0 -178
- package/dist/factories/contracts/InterchainGasPaymaster__factory.js.map +0 -1
- package/dist/factories/contracts/interfaces/IAggregationIsm__factory.d.ts.map +0 -1
- package/dist/factories/contracts/interfaces/IAggregationIsm__factory.js.map +0 -1
- package/dist/factories/contracts/isms/MultisigIsm__factory.d.ts +0 -55
- package/dist/factories/contracts/isms/MultisigIsm__factory.d.ts.map +0 -1
- package/dist/factories/contracts/isms/MultisigIsm__factory.js +0 -437
- package/dist/factories/contracts/isms/MultisigIsm__factory.js.map +0 -1
- package/dist/factories/contracts/libs/ImmutableOwnable__factory.d.ts +0 -19
- package/dist/factories/contracts/libs/ImmutableOwnable__factory.d.ts.map +0 -1
- package/dist/factories/contracts/libs/ImmutableOwnable__factory.js +0 -31
- package/dist/factories/contracts/libs/ImmutableOwnable__factory.js.map +0 -1
- package/dist/factories/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge__factory.d.ts +0 -36
- package/dist/factories/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge__factory.d.ts.map +0 -1
- package/dist/factories/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge__factory.js +0 -104
- package/dist/factories/contracts/middleware/liquidity-layer/interfaces/circle/ICircleBridge__factory.js.map +0 -1
- package/dist/factories/contracts/mock/MockCircleBridge__factory.d.ts +0 -59
- package/dist/factories/contracts/mock/MockCircleBridge__factory.d.ts.map +0 -1
- package/dist/factories/contracts/mock/MockCircleBridge__factory.js +0 -151
- package/dist/factories/contracts/mock/MockCircleBridge__factory.js.map +0 -1
- package/dist/factories/contracts/mock/MockInterchainAccountRouter__factory.d.ts +0 -69
- package/dist/factories/contracts/mock/MockInterchainAccountRouter__factory.d.ts.map +0 -1
- package/dist/factories/contracts/mock/MockInterchainAccountRouter__factory.js +0 -556
- package/dist/factories/contracts/mock/MockInterchainAccountRouter__factory.js.map +0 -1
- package/dist/factories/contracts/test/TestMultisigIsm__factory.d.ts +0 -48
- package/dist/factories/contracts/test/TestMultisigIsm__factory.d.ts.map +0 -1
- package/dist/factories/contracts/test/TestMultisigIsm__factory.js +0 -480
- package/dist/factories/contracts/test/TestMultisigIsm__factory.js.map +0 -1
- package/dist/factories/interfaces/IAggregationIsm__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IAggregationIsm__factory.js +0 -79
- package/dist/factories/interfaces/IAggregationIsm__factory.js.map +0 -1
- package/dist/factories/interfaces/IGasOracle__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IGasOracle__factory.js +0 -42
- package/dist/factories/interfaces/IGasOracle__factory.js.map +0 -1
- package/dist/factories/interfaces/IHyperlaneConnectionClient__factory.d.ts +0 -29
- package/dist/factories/interfaces/IHyperlaneConnectionClient__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IHyperlaneConnectionClient__factory.js +0 -96
- package/dist/factories/interfaces/IHyperlaneConnectionClient__factory.js.map +0 -1
- package/dist/factories/interfaces/IInterchainAccountRouter__factory.d.ts +0 -33
- package/dist/factories/interfaces/IInterchainAccountRouter__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IInterchainAccountRouter__factory.js +0 -107
- package/dist/factories/interfaces/IInterchainAccountRouter__factory.js.map +0 -1
- package/dist/factories/interfaces/IInterchainGasPaymaster__factory.d.ts +0 -19
- package/dist/factories/interfaces/IInterchainGasPaymaster__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IInterchainGasPaymaster__factory.js +0 -46
- package/dist/factories/interfaces/IInterchainGasPaymaster__factory.js.map +0 -1
- package/dist/factories/interfaces/IInterchainQueryRouter__factory.d.ts +0 -33
- package/dist/factories/interfaces/IInterchainQueryRouter__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IInterchainQueryRouter__factory.js +0 -134
- package/dist/factories/interfaces/IInterchainQueryRouter__factory.js.map +0 -1
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.d.ts +0 -23
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.js +0 -55
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.js.map +0 -1
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.d.ts +0 -19
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.js +0 -31
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.js.map +0 -1
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/index.d.ts +0 -3
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/index.d.ts.map +0 -1
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/index.js +0 -11
- package/dist/factories/interfaces/IInterchainSecurityModule.sol/index.js.map +0 -1
- package/dist/factories/interfaces/ILiquidityLayerMessageRecipient__factory.d.ts +0 -19
- package/dist/factories/interfaces/ILiquidityLayerMessageRecipient__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/ILiquidityLayerMessageRecipient__factory.js +0 -51
- package/dist/factories/interfaces/ILiquidityLayerMessageRecipient__factory.js.map +0 -1
- package/dist/factories/interfaces/ILiquidityLayerRouter__factory.d.ts +0 -23
- package/dist/factories/interfaces/ILiquidityLayerRouter__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/ILiquidityLayerRouter__factory.js +0 -62
- package/dist/factories/interfaces/ILiquidityLayerRouter__factory.js.map +0 -1
- package/dist/factories/interfaces/IMailbox__factory.d.ts +0 -23
- package/dist/factories/interfaces/IMailbox__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IMailbox__factory.js +0 -141
- package/dist/factories/interfaces/IMailbox__factory.js.map +0 -1
- package/dist/factories/interfaces/IMessageRecipient__factory.d.ts +0 -19
- package/dist/factories/interfaces/IMessageRecipient__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IMessageRecipient__factory.js +0 -41
- package/dist/factories/interfaces/IMessageRecipient__factory.js.map +0 -1
- package/dist/factories/interfaces/IMultisigIsm__factory.d.ts +0 -23
- package/dist/factories/interfaces/IMultisigIsm__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IMultisigIsm__factory.js.map +0 -1
- package/dist/factories/interfaces/IRouter__factory.d.ts +0 -23
- package/dist/factories/interfaces/IRouter__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IRouter__factory.js +0 -86
- package/dist/factories/interfaces/IRouter__factory.js.map +0 -1
- package/dist/factories/interfaces/IValidatorAnnounce__factory.d.ts +0 -23
- package/dist/factories/interfaces/IValidatorAnnounce__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/IValidatorAnnounce__factory.js +0 -105
- package/dist/factories/interfaces/IValidatorAnnounce__factory.js.map +0 -1
- package/dist/factories/interfaces/index.d.ts +0 -10
- package/dist/factories/interfaces/index.d.ts.map +0 -1
- package/dist/factories/interfaces/index.js +0 -47
- package/dist/factories/interfaces/index.js.map +0 -1
- package/dist/factories/interfaces/isms/IMultisigIsm__factory.d.ts +0 -23
- package/dist/factories/interfaces/isms/IMultisigIsm__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/isms/IMultisigIsm__factory.js.map +0 -1
- package/dist/factories/interfaces/isms/index.d.ts +0 -2
- package/dist/factories/interfaces/isms/index.d.ts.map +0 -1
- package/dist/factories/interfaces/isms/index.js +0 -9
- package/dist/factories/interfaces/isms/index.js.map +0 -1
- package/dist/factories/interfaces/middleware/IInterchainAccountRouter__factory.d.ts +0 -33
- package/dist/factories/interfaces/middleware/IInterchainAccountRouter__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/middleware/IInterchainAccountRouter__factory.js +0 -265
- package/dist/factories/interfaces/middleware/IInterchainAccountRouter__factory.js.map +0 -1
- package/dist/factories/interfaces/middleware/IInterchainQueryRouter__factory.d.ts +0 -43
- package/dist/factories/interfaces/middleware/IInterchainQueryRouter__factory.d.ts.map +0 -1
- package/dist/factories/interfaces/middleware/IInterchainQueryRouter__factory.js +0 -100
- package/dist/factories/interfaces/middleware/IInterchainQueryRouter__factory.js.map +0 -1
- package/dist/factories/interfaces/middleware/index.d.ts +0 -3
- package/dist/factories/interfaces/middleware/index.d.ts.map +0 -1
- package/dist/factories/interfaces/middleware/index.js +0 -11
- package/dist/factories/interfaces/middleware/index.js.map +0 -1
- package/dist/interfaces/IAggregationIsm.d.ts.map +0 -1
- package/dist/interfaces/IAggregationIsm.js +0 -4
- package/dist/interfaces/IAggregationIsm.js.map +0 -1
- package/dist/interfaces/IGasOracle.d.ts +0 -61
- package/dist/interfaces/IGasOracle.d.ts.map +0 -1
- package/dist/interfaces/IGasOracle.js +0 -4
- package/dist/interfaces/IGasOracle.js.map +0 -1
- package/dist/interfaces/IHyperlaneConnectionClient.d.ts +0 -107
- package/dist/interfaces/IHyperlaneConnectionClient.d.ts.map +0 -1
- package/dist/interfaces/IHyperlaneConnectionClient.js +0 -4
- package/dist/interfaces/IHyperlaneConnectionClient.js.map +0 -1
- package/dist/interfaces/IInterchainAccountRouter.d.ts +0 -83
- package/dist/interfaces/IInterchainAccountRouter.d.ts.map +0 -1
- package/dist/interfaces/IInterchainAccountRouter.js +0 -4
- package/dist/interfaces/IInterchainAccountRouter.js.map +0 -1
- package/dist/interfaces/IInterchainGasPaymaster.d.ts +0 -51
- package/dist/interfaces/IInterchainGasPaymaster.d.ts.map +0 -1
- package/dist/interfaces/IInterchainGasPaymaster.js +0 -4
- package/dist/interfaces/IInterchainGasPaymaster.js.map +0 -1
- package/dist/interfaces/IInterchainQueryRouter.d.ts +0 -91
- package/dist/interfaces/IInterchainQueryRouter.d.ts.map +0 -1
- package/dist/interfaces/IInterchainQueryRouter.js +0 -4
- package/dist/interfaces/IInterchainQueryRouter.js.map +0 -1
- package/dist/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.d.ts.map +0 -1
- package/dist/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.js +0 -4
- package/dist/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.js.map +0 -1
- package/dist/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.d.ts +0 -43
- package/dist/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.d.ts.map +0 -1
- package/dist/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.js +0 -4
- package/dist/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.js.map +0 -1
- package/dist/interfaces/IInterchainSecurityModule.sol/index.d.ts +0 -3
- package/dist/interfaces/IInterchainSecurityModule.sol/index.d.ts.map +0 -1
- package/dist/interfaces/IInterchainSecurityModule.sol/index.js +0 -3
- package/dist/interfaces/IInterchainSecurityModule.sol/index.js.map +0 -1
- package/dist/interfaces/ILiquidityLayerMessageRecipient.d.ts +0 -51
- package/dist/interfaces/ILiquidityLayerMessageRecipient.d.ts.map +0 -1
- package/dist/interfaces/ILiquidityLayerMessageRecipient.js +0 -4
- package/dist/interfaces/ILiquidityLayerMessageRecipient.js.map +0 -1
- package/dist/interfaces/ILiquidityLayerRouter.d.ts +0 -51
- package/dist/interfaces/ILiquidityLayerRouter.d.ts.map +0 -1
- package/dist/interfaces/ILiquidityLayerRouter.js +0 -4
- package/dist/interfaces/ILiquidityLayerRouter.js.map +0 -1
- package/dist/interfaces/IMailbox.d.ts +0 -107
- package/dist/interfaces/IMailbox.d.ts.map +0 -1
- package/dist/interfaces/IMailbox.js +0 -4
- package/dist/interfaces/IMailbox.js.map +0 -1
- package/dist/interfaces/IMessageRecipient.d.ts +0 -51
- package/dist/interfaces/IMessageRecipient.d.ts.map +0 -1
- package/dist/interfaces/IMessageRecipient.js +0 -4
- package/dist/interfaces/IMessageRecipient.js.map +0 -1
- package/dist/interfaces/IMultisigIsm.d.ts.map +0 -1
- package/dist/interfaces/IMultisigIsm.js +0 -4
- package/dist/interfaces/IMultisigIsm.js.map +0 -1
- package/dist/interfaces/IRouter.d.ts +0 -83
- package/dist/interfaces/IRouter.d.ts.map +0 -1
- package/dist/interfaces/IRouter.js +0 -4
- package/dist/interfaces/IRouter.js.map +0 -1
- package/dist/interfaces/IValidatorAnnounce.d.ts +0 -83
- package/dist/interfaces/IValidatorAnnounce.d.ts.map +0 -1
- package/dist/interfaces/IValidatorAnnounce.js +0 -4
- package/dist/interfaces/IValidatorAnnounce.js.map +0 -1
- package/dist/interfaces/index.d.ts +0 -11
- package/dist/interfaces/index.d.ts.map +0 -1
- package/dist/interfaces/index.js +0 -4
- package/dist/interfaces/index.js.map +0 -1
- package/dist/interfaces/isms/IMultisigIsm.d.ts +0 -82
- package/dist/interfaces/isms/IMultisigIsm.d.ts.map +0 -1
- package/dist/interfaces/isms/IMultisigIsm.js +0 -4
- package/dist/interfaces/isms/IMultisigIsm.js.map +0 -1
- package/dist/interfaces/isms/index.d.ts +0 -2
- package/dist/interfaces/isms/index.d.ts.map +0 -1
- package/dist/interfaces/isms/index.js +0 -3
- package/dist/interfaces/isms/index.js.map +0 -1
- package/dist/interfaces/middleware/IInterchainAccountRouter.d.ts +0 -127
- package/dist/interfaces/middleware/IInterchainAccountRouter.d.ts.map +0 -1
- package/dist/interfaces/middleware/IInterchainAccountRouter.js +0 -4
- package/dist/interfaces/middleware/IInterchainAccountRouter.js.map +0 -1
- package/dist/interfaces/middleware/IInterchainQueryRouter.d.ts +0 -88
- package/dist/interfaces/middleware/IInterchainQueryRouter.d.ts.map +0 -1
- package/dist/interfaces/middleware/IInterchainQueryRouter.js +0 -4
- package/dist/interfaces/middleware/IInterchainQueryRouter.js.map +0 -1
- package/dist/interfaces/middleware/index.d.ts +0 -3
- package/dist/interfaces/middleware/index.d.ts.map +0 -1
- package/dist/interfaces/middleware/index.js +0 -3
- package/dist/interfaces/middleware/index.js.map +0 -1
- /package/dist/contracts/interfaces/{IAggregationIsm.js → isms/IAggregationIsm.js} +0 -0
- /package/dist/contracts/{ImmutableConnectionClient.sol → isms/routing}/index.js +0 -0
- /package/dist/factories/contracts/interfaces/{IAggregationIsm__factory.js → isms/IAggregationIsm__factory.js} +0 -0
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { IRouter, IRouterInterface } from "../../interfaces/IRouter";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import { Signer } from "ethers";
|
|
4
|
-
export declare class IRouter__factory {
|
|
5
|
-
static readonly abi: {
|
|
6
|
-
inputs: {
|
|
7
|
-
internalType: string;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
}[];
|
|
11
|
-
name: string;
|
|
12
|
-
outputs: {
|
|
13
|
-
internalType: string;
|
|
14
|
-
name: string;
|
|
15
|
-
type: string;
|
|
16
|
-
}[];
|
|
17
|
-
stateMutability: string;
|
|
18
|
-
type: string;
|
|
19
|
-
}[];
|
|
20
|
-
static createInterface(): IRouterInterface;
|
|
21
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IRouter;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=IRouter__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IRouter__factory.d.ts","sourceRoot":"","sources":["../../../types/factories/interfaces/IRouter__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC1E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AAyEjD,qBAAa,gBAAgB;IAC3B,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,gBAAgB;IAG1C,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,OAAO;CAGX"}
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* Autogenerated file. Do not edit manually. */
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.IRouter__factory = void 0;
|
|
5
|
-
const ethers_1 = require("ethers");
|
|
6
|
-
const _abi = [
|
|
7
|
-
{
|
|
8
|
-
inputs: [],
|
|
9
|
-
name: "domains",
|
|
10
|
-
outputs: [
|
|
11
|
-
{
|
|
12
|
-
internalType: "uint32[]",
|
|
13
|
-
name: "",
|
|
14
|
-
type: "uint32[]",
|
|
15
|
-
},
|
|
16
|
-
],
|
|
17
|
-
stateMutability: "view",
|
|
18
|
-
type: "function",
|
|
19
|
-
},
|
|
20
|
-
{
|
|
21
|
-
inputs: [
|
|
22
|
-
{
|
|
23
|
-
internalType: "uint32",
|
|
24
|
-
name: "_domain",
|
|
25
|
-
type: "uint32",
|
|
26
|
-
},
|
|
27
|
-
{
|
|
28
|
-
internalType: "bytes32",
|
|
29
|
-
name: "_router",
|
|
30
|
-
type: "bytes32",
|
|
31
|
-
},
|
|
32
|
-
],
|
|
33
|
-
name: "enrollRemoteRouter",
|
|
34
|
-
outputs: [],
|
|
35
|
-
stateMutability: "nonpayable",
|
|
36
|
-
type: "function",
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
inputs: [
|
|
40
|
-
{
|
|
41
|
-
internalType: "uint32[]",
|
|
42
|
-
name: "_domains",
|
|
43
|
-
type: "uint32[]",
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
internalType: "bytes32[]",
|
|
47
|
-
name: "_routers",
|
|
48
|
-
type: "bytes32[]",
|
|
49
|
-
},
|
|
50
|
-
],
|
|
51
|
-
name: "enrollRemoteRouters",
|
|
52
|
-
outputs: [],
|
|
53
|
-
stateMutability: "nonpayable",
|
|
54
|
-
type: "function",
|
|
55
|
-
},
|
|
56
|
-
{
|
|
57
|
-
inputs: [
|
|
58
|
-
{
|
|
59
|
-
internalType: "uint32",
|
|
60
|
-
name: "_domain",
|
|
61
|
-
type: "uint32",
|
|
62
|
-
},
|
|
63
|
-
],
|
|
64
|
-
name: "routers",
|
|
65
|
-
outputs: [
|
|
66
|
-
{
|
|
67
|
-
internalType: "bytes32",
|
|
68
|
-
name: "",
|
|
69
|
-
type: "bytes32",
|
|
70
|
-
},
|
|
71
|
-
],
|
|
72
|
-
stateMutability: "view",
|
|
73
|
-
type: "function",
|
|
74
|
-
},
|
|
75
|
-
];
|
|
76
|
-
class IRouter__factory {
|
|
77
|
-
static createInterface() {
|
|
78
|
-
return new ethers_1.utils.Interface(_abi);
|
|
79
|
-
}
|
|
80
|
-
static connect(address, signerOrProvider) {
|
|
81
|
-
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
exports.IRouter__factory = IRouter__factory;
|
|
85
|
-
IRouter__factory.abi = _abi;
|
|
86
|
-
//# sourceMappingURL=IRouter__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IRouter__factory.js","sourceRoot":"","sources":["../../../types/factories/interfaces/IRouter__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAO/C,mCAAiD;AAEjD,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,SAAS;QACf,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,UAAU;gBACxB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,UAAU;aACjB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;aACf;YACD;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,SAAS;aAChB;SACF;QACD,IAAI,EAAE,oBAAoB;QAC1B,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,UAAU;gBACxB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,UAAU;aACjB;YACD;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,WAAW;aAClB;SACF;QACD,IAAI,EAAE,qBAAqB;QAC3B,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;aACf;SACF;QACD,IAAI,EAAE,SAAS;QACf,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;CACF,CAAC;AAEF,MAAa,gBAAgB;IAE3B,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAAqB,CAAC;IACvD,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAY,CAAC;IAClE,CAAC;;AAVH,4CAWC;AAViB,oBAAG,GAAG,IAAI,CAAC"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { IValidatorAnnounce, IValidatorAnnounceInterface } from "../../interfaces/IValidatorAnnounce";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import { Signer } from "ethers";
|
|
4
|
-
export declare class IValidatorAnnounce__factory {
|
|
5
|
-
static readonly abi: {
|
|
6
|
-
inputs: {
|
|
7
|
-
internalType: string;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
}[];
|
|
11
|
-
name: string;
|
|
12
|
-
outputs: {
|
|
13
|
-
internalType: string;
|
|
14
|
-
name: string;
|
|
15
|
-
type: string;
|
|
16
|
-
}[];
|
|
17
|
-
stateMutability: string;
|
|
18
|
-
type: string;
|
|
19
|
-
}[];
|
|
20
|
-
static createInterface(): IValidatorAnnounceInterface;
|
|
21
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IValidatorAnnounce;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=IValidatorAnnounce__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IValidatorAnnounce__factory.d.ts","sourceRoot":"","sources":["../../../types/factories/interfaces/IValidatorAnnounce__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,kBAAkB,EAClB,2BAA2B,EAC5B,MAAM,qCAAqC,CAAC;AAC7C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AA4FjD,qBAAa,2BAA2B;IACtC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,2BAA2B;IAGrD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,kBAAkB;CAGtB"}
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* Autogenerated file. Do not edit manually. */
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.IValidatorAnnounce__factory = void 0;
|
|
5
|
-
const ethers_1 = require("ethers");
|
|
6
|
-
const _abi = [
|
|
7
|
-
{
|
|
8
|
-
inputs: [
|
|
9
|
-
{
|
|
10
|
-
internalType: "address",
|
|
11
|
-
name: "_validator",
|
|
12
|
-
type: "address",
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
internalType: "string",
|
|
16
|
-
name: "_storageLocation",
|
|
17
|
-
type: "string",
|
|
18
|
-
},
|
|
19
|
-
{
|
|
20
|
-
internalType: "bytes",
|
|
21
|
-
name: "_signature",
|
|
22
|
-
type: "bytes",
|
|
23
|
-
},
|
|
24
|
-
],
|
|
25
|
-
name: "announce",
|
|
26
|
-
outputs: [
|
|
27
|
-
{
|
|
28
|
-
internalType: "bool",
|
|
29
|
-
name: "",
|
|
30
|
-
type: "bool",
|
|
31
|
-
},
|
|
32
|
-
],
|
|
33
|
-
stateMutability: "nonpayable",
|
|
34
|
-
type: "function",
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
inputs: [
|
|
38
|
-
{
|
|
39
|
-
internalType: "address[]",
|
|
40
|
-
name: "_validators",
|
|
41
|
-
type: "address[]",
|
|
42
|
-
},
|
|
43
|
-
],
|
|
44
|
-
name: "getAnnouncedStorageLocations",
|
|
45
|
-
outputs: [
|
|
46
|
-
{
|
|
47
|
-
internalType: "string[][]",
|
|
48
|
-
name: "",
|
|
49
|
-
type: "string[][]",
|
|
50
|
-
},
|
|
51
|
-
],
|
|
52
|
-
stateMutability: "view",
|
|
53
|
-
type: "function",
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
inputs: [],
|
|
57
|
-
name: "getAnnouncedValidators",
|
|
58
|
-
outputs: [
|
|
59
|
-
{
|
|
60
|
-
internalType: "address[]",
|
|
61
|
-
name: "",
|
|
62
|
-
type: "address[]",
|
|
63
|
-
},
|
|
64
|
-
],
|
|
65
|
-
stateMutability: "view",
|
|
66
|
-
type: "function",
|
|
67
|
-
},
|
|
68
|
-
{
|
|
69
|
-
inputs: [],
|
|
70
|
-
name: "localDomain",
|
|
71
|
-
outputs: [
|
|
72
|
-
{
|
|
73
|
-
internalType: "uint32",
|
|
74
|
-
name: "",
|
|
75
|
-
type: "uint32",
|
|
76
|
-
},
|
|
77
|
-
],
|
|
78
|
-
stateMutability: "view",
|
|
79
|
-
type: "function",
|
|
80
|
-
},
|
|
81
|
-
{
|
|
82
|
-
inputs: [],
|
|
83
|
-
name: "mailbox",
|
|
84
|
-
outputs: [
|
|
85
|
-
{
|
|
86
|
-
internalType: "address",
|
|
87
|
-
name: "",
|
|
88
|
-
type: "address",
|
|
89
|
-
},
|
|
90
|
-
],
|
|
91
|
-
stateMutability: "view",
|
|
92
|
-
type: "function",
|
|
93
|
-
},
|
|
94
|
-
];
|
|
95
|
-
class IValidatorAnnounce__factory {
|
|
96
|
-
static createInterface() {
|
|
97
|
-
return new ethers_1.utils.Interface(_abi);
|
|
98
|
-
}
|
|
99
|
-
static connect(address, signerOrProvider) {
|
|
100
|
-
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
exports.IValidatorAnnounce__factory = IValidatorAnnounce__factory;
|
|
104
|
-
IValidatorAnnounce__factory.abi = _abi;
|
|
105
|
-
//# sourceMappingURL=IValidatorAnnounce__factory.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IValidatorAnnounce__factory.js","sourceRoot":"","sources":["../../../types/factories/interfaces/IValidatorAnnounce__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAU/C,mCAAiD;AAEjD,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,SAAS;aAChB;YACD;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,kBAAkB;gBACxB,IAAI,EAAE,QAAQ;aACf;YACD;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,OAAO;aACd;SACF;QACD,IAAI,EAAE,UAAU;QAChB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,MAAM;gBACpB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,MAAM;aACb;SACF;QACD,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,aAAa;gBACnB,IAAI,EAAE,WAAW;aAClB;SACF;QACD,IAAI,EAAE,8BAA8B;QACpC,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,YAAY;gBAC1B,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,YAAY;aACnB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,wBAAwB;QAC9B,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,WAAW;aAClB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,aAAa;QACnB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,QAAQ;gBACtB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,QAAQ;aACf;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,SAAS;QACf,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,SAAS;gBACvB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;CACF,CAAC;AAEF,MAAa,2BAA2B;IAEtC,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAAgC,CAAC;IAClE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAuB,CAAC;IAC7E,CAAC;;AAVH,kEAWC;AAViB,+BAAG,GAAG,IAAI,CAAC"}
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
export * as iInterchainSecurityModuleSol from "./IInterchainSecurityModule.sol";
|
|
2
|
-
export { IInterchainAccountRouter__factory } from "./IInterchainAccountRouter__factory";
|
|
3
|
-
export { IInterchainGasPaymaster__factory } from "./IInterchainGasPaymaster__factory";
|
|
4
|
-
export { IInterchainQueryRouter__factory } from "./IInterchainQueryRouter__factory";
|
|
5
|
-
export { ILiquidityLayerMessageRecipient__factory } from "./ILiquidityLayerMessageRecipient__factory";
|
|
6
|
-
export { ILiquidityLayerRouter__factory } from "./ILiquidityLayerRouter__factory";
|
|
7
|
-
export { IMailbox__factory } from "./IMailbox__factory";
|
|
8
|
-
export { IMessageRecipient__factory } from "./IMessageRecipient__factory";
|
|
9
|
-
export { IMultisigIsm__factory } from "./IMultisigIsm__factory";
|
|
10
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../types/factories/interfaces/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,4BAA4B,MAAM,iCAAiC,CAAC;AAChF,OAAO,EAAE,iCAAiC,EAAE,MAAM,qCAAqC,CAAC;AACxF,OAAO,EAAE,gCAAgC,EAAE,MAAM,oCAAoC,CAAC;AACtF,OAAO,EAAE,+BAA+B,EAAE,MAAM,mCAAmC,CAAC;AACpF,OAAO,EAAE,wCAAwC,EAAE,MAAM,4CAA4C,CAAC;AACtG,OAAO,EAAE,8BAA8B,EAAE,MAAM,kCAAkC,CAAC;AAClF,OAAO,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AACxD,OAAO,EAAE,0BAA0B,EAAE,MAAM,8BAA8B,CAAC;AAC1E,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.IMultisigIsm__factory = exports.IMessageRecipient__factory = exports.IMailbox__factory = exports.ILiquidityLayerRouter__factory = exports.ILiquidityLayerMessageRecipient__factory = exports.IInterchainQueryRouter__factory = exports.IInterchainGasPaymaster__factory = exports.IInterchainAccountRouter__factory = exports.iInterchainSecurityModuleSol = void 0;
|
|
27
|
-
/* Autogenerated file. Do not edit manually. */
|
|
28
|
-
/* tslint:disable */
|
|
29
|
-
/* eslint-disable */
|
|
30
|
-
exports.iInterchainSecurityModuleSol = __importStar(require("./IInterchainSecurityModule.sol"));
|
|
31
|
-
var IInterchainAccountRouter__factory_1 = require("./IInterchainAccountRouter__factory");
|
|
32
|
-
Object.defineProperty(exports, "IInterchainAccountRouter__factory", { enumerable: true, get: function () { return IInterchainAccountRouter__factory_1.IInterchainAccountRouter__factory; } });
|
|
33
|
-
var IInterchainGasPaymaster__factory_1 = require("./IInterchainGasPaymaster__factory");
|
|
34
|
-
Object.defineProperty(exports, "IInterchainGasPaymaster__factory", { enumerable: true, get: function () { return IInterchainGasPaymaster__factory_1.IInterchainGasPaymaster__factory; } });
|
|
35
|
-
var IInterchainQueryRouter__factory_1 = require("./IInterchainQueryRouter__factory");
|
|
36
|
-
Object.defineProperty(exports, "IInterchainQueryRouter__factory", { enumerable: true, get: function () { return IInterchainQueryRouter__factory_1.IInterchainQueryRouter__factory; } });
|
|
37
|
-
var ILiquidityLayerMessageRecipient__factory_1 = require("./ILiquidityLayerMessageRecipient__factory");
|
|
38
|
-
Object.defineProperty(exports, "ILiquidityLayerMessageRecipient__factory", { enumerable: true, get: function () { return ILiquidityLayerMessageRecipient__factory_1.ILiquidityLayerMessageRecipient__factory; } });
|
|
39
|
-
var ILiquidityLayerRouter__factory_1 = require("./ILiquidityLayerRouter__factory");
|
|
40
|
-
Object.defineProperty(exports, "ILiquidityLayerRouter__factory", { enumerable: true, get: function () { return ILiquidityLayerRouter__factory_1.ILiquidityLayerRouter__factory; } });
|
|
41
|
-
var IMailbox__factory_1 = require("./IMailbox__factory");
|
|
42
|
-
Object.defineProperty(exports, "IMailbox__factory", { enumerable: true, get: function () { return IMailbox__factory_1.IMailbox__factory; } });
|
|
43
|
-
var IMessageRecipient__factory_1 = require("./IMessageRecipient__factory");
|
|
44
|
-
Object.defineProperty(exports, "IMessageRecipient__factory", { enumerable: true, get: function () { return IMessageRecipient__factory_1.IMessageRecipient__factory; } });
|
|
45
|
-
var IMultisigIsm__factory_1 = require("./IMultisigIsm__factory");
|
|
46
|
-
Object.defineProperty(exports, "IMultisigIsm__factory", { enumerable: true, get: function () { return IMultisigIsm__factory_1.IMultisigIsm__factory; } });
|
|
47
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../types/factories/interfaces/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;AACpB,gGAAgF;AAChF,yFAAwF;AAA/E,sJAAA,iCAAiC,OAAA;AAC1C,uFAAsF;AAA7E,oJAAA,gCAAgC,OAAA;AACzC,qFAAoF;AAA3E,kJAAA,+BAA+B,OAAA;AACxC,uGAAsG;AAA7F,oKAAA,wCAAwC,OAAA;AACjD,mFAAkF;AAAzE,gJAAA,8BAA8B,OAAA;AACvC,yDAAwD;AAA/C,sHAAA,iBAAiB,OAAA;AAC1B,2EAA0E;AAAjE,wIAAA,0BAA0B,OAAA;AACnC,iEAAgE;AAAvD,8HAAA,qBAAqB,OAAA"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { IMultisigIsm, IMultisigIsmInterface } from "../../../interfaces/isms/IMultisigIsm";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import { Signer } from "ethers";
|
|
4
|
-
export declare class IMultisigIsm__factory {
|
|
5
|
-
static readonly abi: {
|
|
6
|
-
inputs: {
|
|
7
|
-
internalType: string;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
}[];
|
|
11
|
-
name: string;
|
|
12
|
-
outputs: {
|
|
13
|
-
internalType: string;
|
|
14
|
-
name: string;
|
|
15
|
-
type: string;
|
|
16
|
-
}[];
|
|
17
|
-
stateMutability: string;
|
|
18
|
-
type: string;
|
|
19
|
-
}[];
|
|
20
|
-
static createInterface(): IMultisigIsmInterface;
|
|
21
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IMultisigIsm;
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=IMultisigIsm__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IMultisigIsm__factory.d.ts","sourceRoot":"","sources":["../../../../types/factories/interfaces/isms/IMultisigIsm__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,YAAY,EACZ,qBAAqB,EACtB,MAAM,uCAAuC,CAAC;AAC/C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AAkEjD,qBAAa,qBAAqB;IAChC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,qBAAqB;IAG/C,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,YAAY;CAGhB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IMultisigIsm__factory.js","sourceRoot":"","sources":["../../../../types/factories/interfaces/isms/IMultisigIsm__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAU/C,mCAAiD;AAEjD,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,YAAY;QAClB,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,OAAO;aACd;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,OAAO;aACd;SACF;QACD,IAAI,EAAE,wBAAwB;QAC9B,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,WAAW;gBACzB,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,WAAW;aAClB;YACD;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,OAAO;aACd;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;IACD;QACE,MAAM,EAAE;YACN;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,OAAO;aACd;YACD;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,OAAO;aACd;SACF;QACD,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,MAAM;gBACpB,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,MAAM;aACb;SACF;QACD,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,UAAU;KACjB;CACF,CAAC;AAEF,MAAa,qBAAqB;IAEhC,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAA0B,CAAC;IAC5D,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAiB,CAAC;IACvE,CAAC;;AAVH,sDAWC;AAViB,yBAAG,GAAG,IAAI,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../types/factories/interfaces/isms/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IMultisigIsm__factory = void 0;
|
|
4
|
-
/* Autogenerated file. Do not edit manually. */
|
|
5
|
-
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
var IMultisigIsm__factory_1 = require("./IMultisigIsm__factory");
|
|
8
|
-
Object.defineProperty(exports, "IMultisigIsm__factory", { enumerable: true, get: function () { return IMultisigIsm__factory_1.IMultisigIsm__factory; } });
|
|
9
|
-
//# sourceMappingURL=index.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/factories/interfaces/isms/index.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;AACpB,iEAAgE;AAAvD,8HAAA,qBAAqB,OAAA"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import type { IInterchainAccountRouter, IInterchainAccountRouterInterface } from "../../../interfaces/middleware/IInterchainAccountRouter";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
|
-
import { Signer } from "ethers";
|
|
4
|
-
export declare class IInterchainAccountRouter__factory {
|
|
5
|
-
static readonly abi: {
|
|
6
|
-
inputs: ({
|
|
7
|
-
internalType: string;
|
|
8
|
-
name: string;
|
|
9
|
-
type: string;
|
|
10
|
-
components?: undefined;
|
|
11
|
-
} | {
|
|
12
|
-
components: {
|
|
13
|
-
internalType: string;
|
|
14
|
-
name: string;
|
|
15
|
-
type: string;
|
|
16
|
-
}[];
|
|
17
|
-
internalType: string;
|
|
18
|
-
name: string;
|
|
19
|
-
type: string;
|
|
20
|
-
})[];
|
|
21
|
-
name: string;
|
|
22
|
-
outputs: {
|
|
23
|
-
internalType: string;
|
|
24
|
-
name: string;
|
|
25
|
-
type: string;
|
|
26
|
-
}[];
|
|
27
|
-
stateMutability: string;
|
|
28
|
-
type: string;
|
|
29
|
-
}[];
|
|
30
|
-
static createInterface(): IInterchainAccountRouterInterface;
|
|
31
|
-
static connect(address: string, signerOrProvider: Signer | Provider): IInterchainAccountRouter;
|
|
32
|
-
}
|
|
33
|
-
//# sourceMappingURL=IInterchainAccountRouter__factory.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"IInterchainAccountRouter__factory.d.ts","sourceRoot":"","sources":["../../../../types/factories/interfaces/middleware/IInterchainAccountRouter__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,wBAAwB,EACxB,iCAAiC,EAClC,MAAM,yDAAyD,CAAC;AACjE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AA4PjD,qBAAa,iCAAiC;IAC5C,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,iCAAiC;IAG3D,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,wBAAwB;CAO5B"}
|