@hyperlane-xyz/helloworld 1.5.8 → 3.1.0-beta0
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/contracts/HelloWorld.sol +23 -13
- package/dist/hardhat.config.js +1 -1
- package/dist/hardhat.config.js.map +1 -1
- package/dist/src/app/app.d.ts.map +1 -1
- package/dist/src/app/app.js +2 -1
- package/dist/src/app/app.js.map +1 -1
- package/dist/src/deploy/deploy.d.ts.map +1 -1
- package/dist/src/deploy/deploy.js +2 -1
- package/dist/src/deploy/deploy.js.map +1 -1
- package/dist/src/multiProtocolApp/evmAdapter.d.ts.map +1 -1
- package/dist/src/multiProtocolApp/evmAdapter.js +4 -2
- package/dist/src/multiProtocolApp/evmAdapter.js.map +1 -1
- package/dist/src/scripts/check.js +1 -2
- package/dist/src/scripts/check.js.map +1 -1
- package/dist/src/scripts/deploy.js +1 -2
- package/dist/src/scripts/deploy.js.map +1 -1
- package/dist/src/test/deploy.test.js +4 -2
- package/dist/src/test/deploy.test.js.map +1 -1
- package/dist/src/test/helloworld.test.js +15 -17
- package/dist/src/test/helloworld.test.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/MailboxClient.d.ts +260 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/MailboxClient.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/MailboxClient.js +4 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/MailboxClient.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/Router.d.ts +445 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/Router.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/Router.js +4 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/Router.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/index.d.ts +3 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/index.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/{Router.js → client/index.js} +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/client/index.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/index.d.ts +3 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/index.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/index.js +4 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/index.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata.d.ts +50 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata.js +4 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/index.d.ts +2 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/index.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/{interfaces/IInterchainGasPaymaster.js → hooks/libs/index.js} +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/hooks/libs/index.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/index.d.ts +4 -2
- package/dist/src/types/@hyperlane-xyz/core/contracts/index.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/index.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/index.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.d.ts +25 -3
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.d.ts +10 -3
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMailbox.d.ts +163 -44
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMailbox.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMailbox.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMailbox.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient.d.ts +22 -7
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook.d.ts +111 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook.js +4 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/index.d.ts +2 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/index.d.ts.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/{HyperlaneConnectionClient.js → interfaces/hooks/index.js} +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/hooks/index.js.map +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/index.d.ts +2 -2
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/index.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/index.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/index.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/index.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/core/index.js +1 -0
- package/dist/src/types/@hyperlane-xyz/core/index.js.map +1 -1
- package/dist/src/types/@hyperlane-xyz/index.d.ts.map +1 -1
- package/dist/src/types/@hyperlane-xyz/index.js +1 -0
- package/dist/src/types/@hyperlane-xyz/index.js.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts +42 -3
- package/dist/src/types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.d.ts.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.js +1 -0
- package/dist/src/types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.js.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/index.d.ts +2 -2
- package/dist/src/types/@openzeppelin/contracts-upgradeable/index.d.ts.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/index.js +1 -0
- package/dist/src/types/@openzeppelin/contracts-upgradeable/index.js.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/index.d.ts.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/index.js +1 -0
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/index.js.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts +3 -2
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.d.ts.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.js +1 -0
- package/dist/src/types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.js.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts +3 -2
- package/dist/src/types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.d.ts.map +1 -1
- package/dist/src/types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.js +1 -0
- package/dist/src/types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.js.map +1 -1
- package/dist/src/types/@openzeppelin/index.d.ts.map +1 -1
- package/dist/src/types/@openzeppelin/index.js +1 -0
- package/dist/src/types/@openzeppelin/index.js.map +1 -1
- package/dist/src/types/common.d.ts.map +1 -1
- package/dist/src/types/common.js +1 -0
- package/dist/src/types/common.js.map +1 -1
- package/dist/src/types/contracts/HelloWorld.d.ts +309 -75
- package/dist/src/types/contracts/HelloWorld.d.ts.map +1 -1
- package/dist/src/types/contracts/HelloWorld.js +1 -0
- package/dist/src/types/contracts/HelloWorld.js.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/{HyperlaneConnectionClient__factory.d.ts → client/MailboxClient__factory.d.ts} +6 -6
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/MailboxClient__factory.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/{HyperlaneConnectionClient__factory.js → client/MailboxClient__factory.js} +22 -63
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/MailboxClient__factory.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/{Router__factory.d.ts → client/Router__factory.d.ts} +2 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/Router__factory.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/{Router__factory.js → client/Router__factory.js} +37 -71
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/Router__factory.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/index.d.ts +3 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/index.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/index.js +11 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/client/index.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/index.d.ts +2 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/index.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/index.js +31 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/index.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata__factory.d.ts +31 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata__factory.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata__factory.js +54 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata__factory.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/index.d.ts +2 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/index.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/index.js +9 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/index.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/index.d.ts +2 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/index.d.ts.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/index.js +3 -5
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/index.js.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.d.ts +2 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.js +0 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.js.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.d.ts +2 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.js +0 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.js.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.d.ts +2 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.js +181 -26
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.js.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.d.ts +2 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.js +1 -3
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.js.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook__factory.d.ts +23 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook__factory.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook__factory.js +92 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook__factory.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/index.d.ts +2 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/index.d.ts.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/index.js +9 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/index.js.map +1 -0
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/index.d.ts +1 -2
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/index.d.ts.map +1 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/index.js +2 -5
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/index.js.map +1 -1
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts +2 -2
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.js +0 -2
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.js.map +1 -1
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts +2 -2
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.js +0 -2
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.js.map +1 -1
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts +2 -2
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.d.ts.map +1 -1
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.js +0 -2
- package/dist/src/types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.js.map +1 -1
- package/dist/src/types/factories/contracts/HelloWorld__factory.d.ts +5 -5
- package/dist/src/types/factories/contracts/HelloWorld__factory.d.ts.map +1 -1
- package/dist/src/types/factories/contracts/HelloWorld__factory.js +68 -78
- package/dist/src/types/factories/contracts/HelloWorld__factory.js.map +1 -1
- package/dist/src/types/index.d.ts +10 -10
- package/dist/src/types/index.d.ts.map +1 -1
- package/dist/src/types/index.js +10 -9
- package/dist/src/types/index.js.map +1 -1
- package/package.json +12 -10
- package/dist/src/types/@hyperlane-xyz/core/contracts/HyperlaneConnectionClient.d.ts +0 -202
- package/dist/src/types/@hyperlane-xyz/core/contracts/HyperlaneConnectionClient.d.ts.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/HyperlaneConnectionClient.js.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/Router.d.ts +0 -279
- package/dist/src/types/@hyperlane-xyz/core/contracts/Router.d.ts.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/Router.js.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient.d.ts +0 -107
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient.d.ts.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient.js +0 -3
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient.js.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster.d.ts +0 -76
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster.d.ts.map +0 -1
- package/dist/src/types/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster.js.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/HyperlaneConnectionClient__factory.d.ts.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/HyperlaneConnectionClient__factory.js.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/Router__factory.d.ts.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/Router__factory.js.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient__factory.d.ts +0 -29
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient__factory.d.ts.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient__factory.js +0 -98
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IHyperlaneConnectionClient__factory.js.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster__factory.d.ts +0 -36
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster__factory.d.ts.map +0 -1
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster__factory.js +0 -97
- package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainGasPaymaster__factory.js.map +0 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* Autogenerated file. Do not edit manually. */
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.StandardHookMetadata__factory = void 0;
|
|
5
|
+
const ethers_1 = require("ethers");
|
|
6
|
+
const _abi = [
|
|
7
|
+
{
|
|
8
|
+
inputs: [],
|
|
9
|
+
name: "VARIANT",
|
|
10
|
+
outputs: [
|
|
11
|
+
{
|
|
12
|
+
internalType: "uint16",
|
|
13
|
+
name: "",
|
|
14
|
+
type: "uint16",
|
|
15
|
+
},
|
|
16
|
+
],
|
|
17
|
+
stateMutability: "view",
|
|
18
|
+
type: "function",
|
|
19
|
+
},
|
|
20
|
+
];
|
|
21
|
+
const _bytecode = "0x60c1610052600b82828239805160001a607314610045577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c806326418953146038575b600080fd5b603e6052565b604051604991906072565b60405180910390f35b600181565b600061ffff82169050919050565b606c816057565b82525050565b6000602082019050608560008301846065565b9291505056fea26469706673582212209e982b191e2f345c01bd09159cb7cd1f1f77e848442e6b295df5859b59f7765864736f6c63430008100033";
|
|
22
|
+
const isSuperArgs = (xs) => xs.length > 1;
|
|
23
|
+
class StandardHookMetadata__factory extends ethers_1.ContractFactory {
|
|
24
|
+
constructor(...args) {
|
|
25
|
+
if (isSuperArgs(args)) {
|
|
26
|
+
super(...args);
|
|
27
|
+
}
|
|
28
|
+
else {
|
|
29
|
+
super(_abi, _bytecode, args[0]);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
deploy(overrides) {
|
|
33
|
+
return super.deploy(overrides || {});
|
|
34
|
+
}
|
|
35
|
+
getDeployTransaction(overrides) {
|
|
36
|
+
return super.getDeployTransaction(overrides || {});
|
|
37
|
+
}
|
|
38
|
+
attach(address) {
|
|
39
|
+
return super.attach(address);
|
|
40
|
+
}
|
|
41
|
+
connect(signer) {
|
|
42
|
+
return super.connect(signer);
|
|
43
|
+
}
|
|
44
|
+
static createInterface() {
|
|
45
|
+
return new ethers_1.utils.Interface(_abi);
|
|
46
|
+
}
|
|
47
|
+
static connect(address, signerOrProvider) {
|
|
48
|
+
return new ethers_1.Contract(address, _abi, signerOrProvider);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
exports.StandardHookMetadata__factory = StandardHookMetadata__factory;
|
|
52
|
+
StandardHookMetadata__factory.bytecode = _bytecode;
|
|
53
|
+
StandardHookMetadata__factory.abi = _abi;
|
|
54
|
+
//# sourceMappingURL=StandardHookMetadata__factory.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StandardHookMetadata__factory.js","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/StandardHookMetadata__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAU/C,mCAA6E;AAE7E,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,SAAS;QACf,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;CACF,CAAC;AAEF,MAAM,SAAS,GACb,0iBAA0iB,CAAC;AAM7iB,MAAM,WAAW,GAAG,CAClB,EAAyC,EACY,EAAE,CAAC,EAAE,CAAC,MAAM,GAAG,CAAC,CAAC;AAExE,MAAa,6BAA8B,SAAQ,wBAAe;IAChE,YAAY,GAAG,IAA2C;QACxD,IAAI,WAAW,CAAC,IAAI,CAAC,EAAE;YACrB,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC;SAChB;aAAM;YACL,KAAK,CAAC,IAAI,EAAE,SAAS,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC;SACjC;IACH,CAAC;IAEQ,MAAM,CACb,SAA2D;QAE3D,OAAO,KAAK,CAAC,MAAM,CAAC,SAAS,IAAI,EAAE,CAAkC,CAAC;IACxE,CAAC;IACQ,oBAAoB,CAC3B,SAA2D;QAE3D,OAAO,KAAK,CAAC,oBAAoB,CAAC,SAAS,IAAI,EAAE,CAAC,CAAC;IACrD,CAAC;IACQ,MAAM,CAAC,OAAe;QAC7B,OAAO,KAAK,CAAC,MAAM,CAAC,OAAO,CAAyB,CAAC;IACvD,CAAC;IACQ,OAAO,CAAC,MAAc;QAC7B,OAAO,KAAK,CAAC,OAAO,CAAC,MAAM,CAAkC,CAAC;IAChE,CAAC;IAID,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAAkC,CAAC;IACpE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CACjB,OAAO,EACP,IAAI,EACJ,gBAAgB,CACO,CAAC;IAC5B,CAAC;;AAxCH,sEAyCC;AAfiB,sCAAQ,GAAG,SAAS,CAAC;AACrB,iCAAG,GAAG,IAAI,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/index.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,6BAA6B,EAAE,MAAM,iCAAiC,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.StandardHookMetadata__factory = void 0;
|
|
4
|
+
/* Autogenerated file. Do not edit manually. */
|
|
5
|
+
/* tslint:disable */
|
|
6
|
+
/* eslint-disable */
|
|
7
|
+
var StandardHookMetadata__factory_1 = require("./StandardHookMetadata__factory");
|
|
8
|
+
Object.defineProperty(exports, "StandardHookMetadata__factory", { enumerable: true, get: function () { return StandardHookMetadata__factory_1.StandardHookMetadata__factory; } });
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/hooks/libs/index.ts"],"names":[],"mappings":";;;AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;AACpB,iFAAgF;AAAvE,8IAAA,6BAA6B,OAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
export * as client from "./client";
|
|
2
|
+
export * as hooks from "./hooks";
|
|
1
3
|
export * as interfaces from "./interfaces";
|
|
2
|
-
export { HyperlaneConnectionClient__factory } from "./HyperlaneConnectionClient__factory";
|
|
3
|
-
export { Router__factory } from "./Router__factory";
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/index.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC"}
|
|
@@ -23,13 +23,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
26
|
+
exports.interfaces = exports.hooks = exports.client = void 0;
|
|
27
27
|
/* Autogenerated file. Do not edit manually. */
|
|
28
28
|
/* tslint:disable */
|
|
29
29
|
/* eslint-disable */
|
|
30
|
+
exports.client = __importStar(require("./client"));
|
|
31
|
+
exports.hooks = __importStar(require("./hooks"));
|
|
30
32
|
exports.interfaces = __importStar(require("./interfaces"));
|
|
31
|
-
var HyperlaneConnectionClient__factory_1 = require("./HyperlaneConnectionClient__factory");
|
|
32
|
-
Object.defineProperty(exports, "HyperlaneConnectionClient__factory", { enumerable: true, get: function () { return HyperlaneConnectionClient__factory_1.HyperlaneConnectionClient__factory; } });
|
|
33
|
-
var Router__factory_1 = require("./Router__factory");
|
|
34
|
-
Object.defineProperty(exports, "Router__factory", { enumerable: true, get: function () { return Router__factory_1.Router__factory; } });
|
|
35
33
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;AACpB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAA+C;AAC/C,oBAAoB;AACpB,oBAAoB;AACpB,mDAAmC;AACnC,iDAAiC;AACjC,2DAA2C"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
1
|
import type { IInterchainSecurityModule, IInterchainSecurityModuleInterface } from "../../../../../../@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import { Signer } from "ethers";
|
|
4
4
|
export declare class IInterchainSecurityModule__factory {
|
|
5
5
|
static readonly abi: {
|
|
6
6
|
inputs: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IInterchainSecurityModule__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IInterchainSecurityModule__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,yBAAyB,EACzB,kCAAkC,EACnC,MAAM,oHAAoH,CAAC;AAC5H,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AA0CjD,qBAAa,kCAAkC;IAC7C,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,kCAAkC;IAG5D,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,yBAAyB;CAO7B"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IInterchainSecurityModule__factory.js","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C
|
|
1
|
+
{"version":3,"file":"IInterchainSecurityModule__factory.js","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/IInterchainSecurityModule__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,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,kCAAkC;IAE7C,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAAuC,CAAC;IACzE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CACjB,OAAO,EACP,IAAI,EACJ,gBAAgB,CACY,CAAC;IACjC,CAAC;;AAdH,gFAeC;AAdiB,sCAAG,GAAG,IAAI,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
1
|
import type { ISpecifiesInterchainSecurityModule, ISpecifiesInterchainSecurityModuleInterface } from "../../../../../../@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import { Signer } from "ethers";
|
|
4
4
|
export declare class ISpecifiesInterchainSecurityModule__factory {
|
|
5
5
|
static readonly abi: {
|
|
6
6
|
inputs: never[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISpecifiesInterchainSecurityModule__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ISpecifiesInterchainSecurityModule__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,kCAAkC,EAClC,2CAA2C,EAC5C,MAAM,6HAA6H,CAAC;AACrI,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AAkBjD,qBAAa,2CAA2C;IACtD,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,2CAA2C;IAKrE,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,kCAAkC;CAOtC"}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* Autogenerated file. Do not edit manually. */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
4
|
exports.ISpecifiesInterchainSecurityModule__factory = void 0;
|
|
7
5
|
const ethers_1 = require("ethers");
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ISpecifiesInterchainSecurityModule__factory.js","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C
|
|
1
|
+
{"version":3,"file":"ISpecifiesInterchainSecurityModule__factory.js","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol/ISpecifiesInterchainSecurityModule__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAU/C,mCAAiD;AAEjD,MAAM,IAAI,GAAG;IACX;QACE,MAAM,EAAE,EAAE;QACV,IAAI,EAAE,0BAA0B;QAChC,OAAO,EAAE;YACP;gBACE,YAAY,EAAE,oCAAoC;gBAClD,IAAI,EAAE,EAAE;gBACR,IAAI,EAAE,SAAS;aAChB;SACF;QACD,eAAe,EAAE,MAAM;QACvB,IAAI,EAAE,UAAU;KACjB;CACF,CAAC;AAEF,MAAa,2CAA2C;IAEtD,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CACxB,IAAI,CAC0C,CAAC;IACnD,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CACjB,OAAO,EACP,IAAI,EACJ,gBAAgB,CACqB,CAAC;IAC1C,CAAC;;AAhBH,kGAiBC;AAhBiB,+CAAG,GAAG,IAAI,CAAC"}
|
package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
1
|
import type { IMailbox, IMailboxInterface } from "../../../../../@hyperlane-xyz/core/contracts/interfaces/IMailbox";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import { Signer } from "ethers";
|
|
4
4
|
export declare class IMailbox__factory {
|
|
5
5
|
static readonly abi: ({
|
|
6
6
|
anonymous: boolean;
|
package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMailbox__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IMailbox__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,QAAQ,EACR,iBAAiB,EAClB,MAAM,kEAAkE,CAAC;AAC1E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AA+YjD,qBAAa,iBAAiB;IAC5B,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,iBAAiB;IAG3C,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,QAAQ;CAGZ"}
|
package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.js
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* Autogenerated file. Do not edit manually. */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
4
|
exports.IMailbox__factory = void 0;
|
|
7
5
|
const ethers_1 = require("ethers");
|
|
@@ -90,12 +88,12 @@ const _abi = [
|
|
|
90
88
|
},
|
|
91
89
|
{
|
|
92
90
|
inputs: [],
|
|
93
|
-
name: "
|
|
91
|
+
name: "defaultHook",
|
|
94
92
|
outputs: [
|
|
95
93
|
{
|
|
96
|
-
internalType: "
|
|
94
|
+
internalType: "contract IPostDispatchHook",
|
|
97
95
|
name: "",
|
|
98
|
-
type: "
|
|
96
|
+
type: "address",
|
|
99
97
|
},
|
|
100
98
|
],
|
|
101
99
|
stateMutability: "view",
|
|
@@ -137,45 +135,113 @@ const _abi = [
|
|
|
137
135
|
inputs: [
|
|
138
136
|
{
|
|
139
137
|
internalType: "uint32",
|
|
140
|
-
name: "
|
|
138
|
+
name: "destinationDomain",
|
|
141
139
|
type: "uint32",
|
|
142
140
|
},
|
|
143
141
|
{
|
|
144
142
|
internalType: "bytes32",
|
|
145
|
-
name: "
|
|
143
|
+
name: "recipientAddress",
|
|
146
144
|
type: "bytes32",
|
|
147
145
|
},
|
|
148
146
|
{
|
|
149
147
|
internalType: "bytes",
|
|
150
|
-
name: "
|
|
148
|
+
name: "body",
|
|
149
|
+
type: "bytes",
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
internalType: "bytes",
|
|
153
|
+
name: "customHookMetadata",
|
|
151
154
|
type: "bytes",
|
|
152
155
|
},
|
|
156
|
+
{
|
|
157
|
+
internalType: "contract IPostDispatchHook",
|
|
158
|
+
name: "customHook",
|
|
159
|
+
type: "address",
|
|
160
|
+
},
|
|
153
161
|
],
|
|
154
162
|
name: "dispatch",
|
|
155
163
|
outputs: [
|
|
156
164
|
{
|
|
157
165
|
internalType: "bytes32",
|
|
158
|
-
name: "",
|
|
166
|
+
name: "messageId",
|
|
159
167
|
type: "bytes32",
|
|
160
168
|
},
|
|
161
169
|
],
|
|
162
|
-
stateMutability: "
|
|
170
|
+
stateMutability: "payable",
|
|
163
171
|
type: "function",
|
|
164
172
|
},
|
|
165
173
|
{
|
|
166
|
-
inputs: [
|
|
167
|
-
|
|
174
|
+
inputs: [
|
|
175
|
+
{
|
|
176
|
+
internalType: "uint32",
|
|
177
|
+
name: "destinationDomain",
|
|
178
|
+
type: "uint32",
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
internalType: "bytes32",
|
|
182
|
+
name: "recipientAddress",
|
|
183
|
+
type: "bytes32",
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
internalType: "bytes",
|
|
187
|
+
name: "body",
|
|
188
|
+
type: "bytes",
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
internalType: "bytes",
|
|
192
|
+
name: "defaultHookMetadata",
|
|
193
|
+
type: "bytes",
|
|
194
|
+
},
|
|
195
|
+
],
|
|
196
|
+
name: "dispatch",
|
|
168
197
|
outputs: [
|
|
169
198
|
{
|
|
170
199
|
internalType: "bytes32",
|
|
171
|
-
name: "",
|
|
200
|
+
name: "messageId",
|
|
172
201
|
type: "bytes32",
|
|
173
202
|
},
|
|
203
|
+
],
|
|
204
|
+
stateMutability: "payable",
|
|
205
|
+
type: "function",
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
inputs: [
|
|
174
209
|
{
|
|
175
210
|
internalType: "uint32",
|
|
176
|
-
name: "",
|
|
211
|
+
name: "destinationDomain",
|
|
177
212
|
type: "uint32",
|
|
178
213
|
},
|
|
214
|
+
{
|
|
215
|
+
internalType: "bytes32",
|
|
216
|
+
name: "recipientAddress",
|
|
217
|
+
type: "bytes32",
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
internalType: "bytes",
|
|
221
|
+
name: "messageBody",
|
|
222
|
+
type: "bytes",
|
|
223
|
+
},
|
|
224
|
+
],
|
|
225
|
+
name: "dispatch",
|
|
226
|
+
outputs: [
|
|
227
|
+
{
|
|
228
|
+
internalType: "bytes32",
|
|
229
|
+
name: "messageId",
|
|
230
|
+
type: "bytes32",
|
|
231
|
+
},
|
|
232
|
+
],
|
|
233
|
+
stateMutability: "payable",
|
|
234
|
+
type: "function",
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
inputs: [],
|
|
238
|
+
name: "latestDispatchedId",
|
|
239
|
+
outputs: [
|
|
240
|
+
{
|
|
241
|
+
internalType: "bytes32",
|
|
242
|
+
name: "",
|
|
243
|
+
type: "bytes32",
|
|
244
|
+
},
|
|
179
245
|
],
|
|
180
246
|
stateMutability: "view",
|
|
181
247
|
type: "function",
|
|
@@ -197,48 +263,137 @@ const _abi = [
|
|
|
197
263
|
inputs: [
|
|
198
264
|
{
|
|
199
265
|
internalType: "bytes",
|
|
200
|
-
name: "
|
|
266
|
+
name: "metadata",
|
|
201
267
|
type: "bytes",
|
|
202
268
|
},
|
|
203
269
|
{
|
|
204
270
|
internalType: "bytes",
|
|
205
|
-
name: "
|
|
271
|
+
name: "message",
|
|
206
272
|
type: "bytes",
|
|
207
273
|
},
|
|
208
274
|
],
|
|
209
275
|
name: "process",
|
|
210
276
|
outputs: [],
|
|
211
|
-
stateMutability: "
|
|
277
|
+
stateMutability: "payable",
|
|
212
278
|
type: "function",
|
|
213
279
|
},
|
|
214
280
|
{
|
|
215
281
|
inputs: [
|
|
216
282
|
{
|
|
217
|
-
internalType: "
|
|
218
|
-
name: "
|
|
283
|
+
internalType: "uint32",
|
|
284
|
+
name: "destinationDomain",
|
|
285
|
+
type: "uint32",
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
internalType: "bytes32",
|
|
289
|
+
name: "recipientAddress",
|
|
290
|
+
type: "bytes32",
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
internalType: "bytes",
|
|
294
|
+
name: "messageBody",
|
|
295
|
+
type: "bytes",
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
internalType: "bytes",
|
|
299
|
+
name: "customHookMetadata",
|
|
300
|
+
type: "bytes",
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
internalType: "contract IPostDispatchHook",
|
|
304
|
+
name: "customHook",
|
|
219
305
|
type: "address",
|
|
220
306
|
},
|
|
221
307
|
],
|
|
222
|
-
name: "
|
|
308
|
+
name: "quoteDispatch",
|
|
223
309
|
outputs: [
|
|
224
310
|
{
|
|
225
|
-
internalType: "
|
|
226
|
-
name: "",
|
|
227
|
-
type: "
|
|
311
|
+
internalType: "uint256",
|
|
312
|
+
name: "fee",
|
|
313
|
+
type: "uint256",
|
|
228
314
|
},
|
|
229
315
|
],
|
|
230
316
|
stateMutability: "view",
|
|
231
317
|
type: "function",
|
|
232
318
|
},
|
|
233
319
|
{
|
|
234
|
-
inputs: [
|
|
235
|
-
|
|
320
|
+
inputs: [
|
|
321
|
+
{
|
|
322
|
+
internalType: "uint32",
|
|
323
|
+
name: "destinationDomain",
|
|
324
|
+
type: "uint32",
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
internalType: "bytes32",
|
|
328
|
+
name: "recipientAddress",
|
|
329
|
+
type: "bytes32",
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
internalType: "bytes",
|
|
333
|
+
name: "messageBody",
|
|
334
|
+
type: "bytes",
|
|
335
|
+
},
|
|
336
|
+
],
|
|
337
|
+
name: "quoteDispatch",
|
|
236
338
|
outputs: [
|
|
339
|
+
{
|
|
340
|
+
internalType: "uint256",
|
|
341
|
+
name: "fee",
|
|
342
|
+
type: "uint256",
|
|
343
|
+
},
|
|
344
|
+
],
|
|
345
|
+
stateMutability: "view",
|
|
346
|
+
type: "function",
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
inputs: [
|
|
350
|
+
{
|
|
351
|
+
internalType: "uint32",
|
|
352
|
+
name: "destinationDomain",
|
|
353
|
+
type: "uint32",
|
|
354
|
+
},
|
|
237
355
|
{
|
|
238
356
|
internalType: "bytes32",
|
|
239
|
-
name: "",
|
|
357
|
+
name: "recipientAddress",
|
|
240
358
|
type: "bytes32",
|
|
241
359
|
},
|
|
360
|
+
{
|
|
361
|
+
internalType: "bytes",
|
|
362
|
+
name: "messageBody",
|
|
363
|
+
type: "bytes",
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
internalType: "bytes",
|
|
367
|
+
name: "defaultHookMetadata",
|
|
368
|
+
type: "bytes",
|
|
369
|
+
},
|
|
370
|
+
],
|
|
371
|
+
name: "quoteDispatch",
|
|
372
|
+
outputs: [
|
|
373
|
+
{
|
|
374
|
+
internalType: "uint256",
|
|
375
|
+
name: "fee",
|
|
376
|
+
type: "uint256",
|
|
377
|
+
},
|
|
378
|
+
],
|
|
379
|
+
stateMutability: "view",
|
|
380
|
+
type: "function",
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
inputs: [
|
|
384
|
+
{
|
|
385
|
+
internalType: "address",
|
|
386
|
+
name: "recipient",
|
|
387
|
+
type: "address",
|
|
388
|
+
},
|
|
389
|
+
],
|
|
390
|
+
name: "recipientIsm",
|
|
391
|
+
outputs: [
|
|
392
|
+
{
|
|
393
|
+
internalType: "contract IInterchainSecurityModule",
|
|
394
|
+
name: "module",
|
|
395
|
+
type: "address",
|
|
396
|
+
},
|
|
242
397
|
],
|
|
243
398
|
stateMutability: "view",
|
|
244
399
|
type: "function",
|
package/dist/src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMailbox__factory.js","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C
|
|
1
|
+
{"version":3,"file":"IMailbox__factory.js","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMailbox__factory.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { Signer } from "ethers";
|
|
2
|
-
import type { Provider } from "@ethersproject/providers";
|
|
3
1
|
import type { IMessageRecipient, IMessageRecipientInterface } from "../../../../../@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import { Signer } from "ethers";
|
|
4
4
|
export declare class IMessageRecipient__factory {
|
|
5
5
|
static readonly abi: {
|
|
6
6
|
inputs: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMessageRecipient__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"IMessageRecipient__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,iBAAiB,EACjB,0BAA0B,EAC3B,MAAM,2EAA2E,CAAC;AACnF,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AA4BjD,qBAAa,0BAA0B;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,0BAA0B;IAGpD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,iBAAiB;CAGrB"}
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/* Autogenerated file. Do not edit manually. */
|
|
3
|
-
/* tslint:disable */
|
|
4
|
-
/* eslint-disable */
|
|
5
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
4
|
exports.IMessageRecipient__factory = void 0;
|
|
7
5
|
const ethers_1 = require("ethers");
|
|
@@ -26,7 +24,7 @@ const _abi = [
|
|
|
26
24
|
],
|
|
27
25
|
name: "handle",
|
|
28
26
|
outputs: [],
|
|
29
|
-
stateMutability: "
|
|
27
|
+
stateMutability: "payable",
|
|
30
28
|
type: "function",
|
|
31
29
|
},
|
|
32
30
|
];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IMessageRecipient__factory.js","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C
|
|
1
|
+
{"version":3,"file":"IMessageRecipient__factory.js","sourceRoot":"","sources":["../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/IMessageRecipient__factory.ts"],"names":[],"mappings":";AAAA,+CAA+C;;;AAU/C,mCAAiD;AAEjD,MAAM,IAAI,GAAG;IACX;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;YACD;gBACE,YAAY,EAAE,OAAO;gBACrB,IAAI,EAAE,UAAU;gBAChB,IAAI,EAAE,OAAO;aACd;SACF;QACD,IAAI,EAAE,QAAQ;QACd,OAAO,EAAE,EAAE;QACX,eAAe,EAAE,SAAS;QAC1B,IAAI,EAAE,UAAU;KACjB;CACF,CAAC;AAEF,MAAa,0BAA0B;IAErC,MAAM,CAAC,eAAe;QACpB,OAAO,IAAI,cAAK,CAAC,SAAS,CAAC,IAAI,CAA+B,CAAC;IACjE,CAAC;IACD,MAAM,CAAC,OAAO,CACZ,OAAe,EACf,gBAAmC;QAEnC,OAAO,IAAI,iBAAQ,CAAC,OAAO,EAAE,IAAI,EAAE,gBAAgB,CAAsB,CAAC;IAC5E,CAAC;;AAVH,gEAWC;AAViB,8BAAG,GAAG,IAAI,CAAC"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { IPostDispatchHook, IPostDispatchHookInterface } from "../../../../../../@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook";
|
|
2
|
+
import type { Provider } from "@ethersproject/providers";
|
|
3
|
+
import { Signer } from "ethers";
|
|
4
|
+
export declare class IPostDispatchHook__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(): IPostDispatchHookInterface;
|
|
21
|
+
static connect(address: string, signerOrProvider: Signer | Provider): IPostDispatchHook;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=IPostDispatchHook__factory.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IPostDispatchHook__factory.d.ts","sourceRoot":"","sources":["../../../../../../../../../src/types/factories/@hyperlane-xyz/core/contracts/interfaces/hooks/IPostDispatchHook__factory.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EACV,iBAAiB,EACjB,0BAA0B,EAC3B,MAAM,oFAAoF,CAAC;AAC5F,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAC;AACzD,OAAO,EAAY,MAAM,EAAS,MAAM,QAAQ,CAAC;AA+EjD,qBAAa,0BAA0B;IACrC,MAAM,CAAC,QAAQ,CAAC,GAAG;;;;;;;;;;;;;;QAAQ;IAC3B,MAAM,CAAC,eAAe,IAAI,0BAA0B;IAGpD,MAAM,CAAC,OAAO,CACZ,OAAO,EAAE,MAAM,EACf,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAClC,iBAAiB;CAGrB"}
|