@augustdigital/sdk 4.15.5-alpha.0 → 4.17.0-alpha.0
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/lib/abis/AddressResolver.d.ts +28 -40
- package/lib/abis/ChainlinkV3.d.ts +83 -109
- package/lib/abis/ERC20.d.ts +137 -191
- package/lib/abis/ERC20_Bytes32.d.ts +125 -178
- package/lib/abis/ERC4626.d.ts +341 -480
- package/lib/abis/ERC721.d.ts +213 -299
- package/lib/abis/FeeOracle.d.ts +112 -149
- package/lib/abis/LendingPool.d.ts +1293 -1702
- package/lib/abis/LendingPoolV2.d.ts +37 -42
- package/lib/abis/LendingPoolV3.d.ts +25 -29
- package/lib/abis/Loan.d.ts +768 -1007
- package/lib/abis/Multicall3.d.ts +30 -43
- package/lib/abis/PoolAdapter.d.ts +35 -46
- package/lib/abis/RewardDistributor.d.ts +33 -38
- package/lib/abis/SmartAccount.d.ts +16 -23
- package/lib/abis/TextResolver.d.ts +16 -23
- package/lib/abis/TokenizedVaultV2.d.ts +1292 -1684
- package/lib/abis/TokenizedVaultV2DepositWithPermit.d.ts +55 -62
- package/lib/abis/TokenizedVaultV2Receipt.d.ts +1463 -1934
- package/lib/abis/TokenizedVaultV2WhitelistedAssets.d.ts +250 -333
- package/lib/abis/UniversalResolverResolve.d.ts +69 -97
- package/lib/abis/UniversalSignatureValidator.d.ts +17 -23
- package/lib/abis/WrapperAdapter.d.ts +67 -89
- package/lib/adapters/evm/getters.d.ts +2 -8
- package/lib/adapters/evm/index.d.ts +15 -19
- package/lib/adapters/evm/utils.d.ts +2 -12
- package/lib/adapters/solana/constants.d.ts +17 -23
- package/lib/adapters/solana/getters.d.ts +1 -4
- package/lib/adapters/solana/idl/vault-idl.d.ts +279 -340
- package/lib/adapters/solana/index.d.ts +116 -212
- package/lib/adapters/solana/types.d.ts +50 -50
- package/lib/adapters/solana/utils.d.ts +78 -139
- package/lib/adapters/solana/vault.actions.d.ts +12 -37
- package/lib/adapters/sui/constants.d.ts +9 -9
- package/lib/adapters/sui/constants.js +8 -1
- package/lib/adapters/sui/constants.js.map +1 -1
- package/lib/adapters/sui/getters.d.ts +1 -3
- package/lib/adapters/sui/index.d.ts +21 -29
- package/lib/adapters/sui/transformer.d.ts +2 -6
- package/lib/adapters/sui/types.d.ts +56 -56
- package/lib/adapters/sui/utils.d.ts +1 -4
- package/lib/core/analytics/constants.d.ts +12 -0
- package/lib/core/analytics/constants.js +49 -0
- package/lib/core/analytics/constants.js.map +1 -0
- package/lib/core/analytics/index.d.ts +6 -0
- package/lib/core/analytics/index.js +31 -0
- package/lib/core/analytics/index.js.map +1 -0
- package/lib/core/analytics/instrumentation.d.ts +2 -0
- package/lib/core/analytics/instrumentation.js +150 -0
- package/lib/core/analytics/instrumentation.js.map +1 -0
- package/lib/core/analytics/metrics.d.ts +12 -0
- package/lib/core/analytics/metrics.js +133 -0
- package/lib/core/analytics/metrics.js.map +1 -0
- package/lib/core/analytics/sentry.d.ts +9 -0
- package/lib/core/analytics/sentry.js +166 -0
- package/lib/core/analytics/sentry.js.map +1 -0
- package/lib/core/analytics/types.d.ts +21 -0
- package/lib/core/analytics/types.js +3 -0
- package/lib/core/analytics/types.js.map +1 -0
- package/lib/core/analytics/user-identity.d.ts +8 -0
- package/lib/core/analytics/user-identity.js +82 -0
- package/lib/core/analytics/user-identity.js.map +1 -0
- package/lib/core/analytics/version.d.ts +1 -0
- package/lib/core/analytics/version.js +5 -0
- package/lib/core/analytics/version.js.map +1 -0
- package/lib/core/base.class.d.ts +25 -30
- package/lib/core/base.class.js +5 -1
- package/lib/core/base.class.js.map +1 -1
- package/lib/core/constants/adapters.d.ts +83 -111
- package/lib/core/constants/core.d.ts +69 -76
- package/lib/core/constants/vaults.d.ts +5 -63
- package/lib/core/constants/vaults.js +3 -3
- package/lib/core/constants/vaults.js.map +1 -1
- package/lib/core/constants/web3.d.ts +18 -19
- package/lib/core/fetcher.d.ts +17 -71
- package/lib/core/fetcher.js +20 -2
- package/lib/core/fetcher.js.map +1 -1
- package/lib/core/helpers/adapters.d.ts +2 -7
- package/lib/core/helpers/core.d.ts +8 -33
- package/lib/core/helpers/signer.d.ts +2 -6
- package/lib/core/helpers/vaults.d.ts +15 -38
- package/lib/core/helpers/web3.d.ts +19 -87
- package/lib/core/index.d.ts +1 -0
- package/lib/core/index.js +1 -0
- package/lib/core/index.js.map +1 -1
- package/lib/core/logger/index.d.ts +11 -11
- package/lib/core/logger/slack.d.ts +8 -9
- package/lib/index.d.ts +1 -61
- package/lib/main.d.ts +141 -158
- package/lib/main.js +3 -0
- package/lib/main.js.map +1 -1
- package/lib/modules/vaults/adapter.helpers.d.ts +38 -72
- package/lib/modules/vaults/fetcher.d.ts +69 -85
- package/lib/modules/vaults/getters.d.ts +100 -205
- package/lib/modules/vaults/index.d.ts +1 -6
- package/lib/modules/vaults/main.d.ts +131 -224
- package/lib/modules/vaults/main.js +8 -1
- package/lib/modules/vaults/main.js.map +1 -1
- package/lib/modules/vaults/read.actions.d.ts +2 -8
- package/lib/modules/vaults/utils.d.ts +19 -55
- package/lib/modules/vaults/write.actions.d.ts +14 -26
- package/lib/services/coingecko/fetcher.d.ts +1 -4
- package/lib/services/debank/fetcher.d.ts +1 -4
- package/lib/services/debank/utils.d.ts +27 -38
- package/lib/services/octavfi/fetcher.d.ts +1 -3
- package/lib/services/octavfi/types.d.ts +24 -24
- package/lib/services/octavfi/utils.d.ts +2 -6
- package/lib/services/subgraph/fetcher.d.ts +2 -12
- package/lib/services/subgraph/vaults.d.ts +9 -42
- package/lib/types/points.d.ts +26 -35
- package/lib/types/pools.d.ts +112 -149
- package/lib/types/staking.d.ts +25 -25
- package/lib/types/subgraph.d.ts +33 -33
- package/lib/types/vaults.d.ts +219 -232
- package/lib/types/web3.d.ts +9 -9
- package/lib/types/webserver.d.ts +448 -466
- package/package.json +16 -13
|
@@ -1,2039 +1,1568 @@
|
|
|
1
|
-
export declare const ABI_TOKENIZED_VAULT_V2_RECEIPT: readonly [
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
readonly
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
readonly stateMutability: 'nonpayable';
|
|
11
|
-
readonly type: 'constructor';
|
|
12
|
-
},
|
|
13
|
-
{
|
|
1
|
+
export declare const ABI_TOKENIZED_VAULT_V2_RECEIPT: readonly [{
|
|
2
|
+
readonly inputs: readonly [{
|
|
3
|
+
readonly internalType: "address";
|
|
4
|
+
readonly name: "_lzEndpoint";
|
|
5
|
+
readonly type: "address";
|
|
6
|
+
}];
|
|
7
|
+
readonly stateMutability: "nonpayable";
|
|
8
|
+
readonly type: "constructor";
|
|
9
|
+
}, {
|
|
14
10
|
readonly inputs: readonly [];
|
|
15
|
-
readonly name:
|
|
16
|
-
readonly type:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
readonly
|
|
22
|
-
|
|
23
|
-
readonly
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
readonly
|
|
28
|
-
readonly
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
readonly
|
|
44
|
-
readonly
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
readonly
|
|
53
|
-
readonly
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
readonly
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
readonly
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
readonly
|
|
76
|
-
readonly
|
|
77
|
-
|
|
78
|
-
];
|
|
79
|
-
readonly name:
|
|
80
|
-
readonly type:
|
|
81
|
-
|
|
82
|
-
{
|
|
83
|
-
readonly inputs: readonly [
|
|
84
|
-
{
|
|
85
|
-
readonly internalType: 'address';
|
|
86
|
-
readonly name: 'sender';
|
|
87
|
-
readonly type: 'address';
|
|
88
|
-
},
|
|
89
|
-
];
|
|
90
|
-
readonly name: 'ERC20InvalidSender';
|
|
91
|
-
readonly type: 'error';
|
|
92
|
-
},
|
|
93
|
-
{
|
|
94
|
-
readonly inputs: readonly [
|
|
95
|
-
{
|
|
96
|
-
readonly internalType: 'address';
|
|
97
|
-
readonly name: 'spender';
|
|
98
|
-
readonly type: 'address';
|
|
99
|
-
},
|
|
100
|
-
];
|
|
101
|
-
readonly name: 'ERC20InvalidSpender';
|
|
102
|
-
readonly type: 'error';
|
|
103
|
-
},
|
|
104
|
-
{
|
|
11
|
+
readonly name: "AlreadyConfigured";
|
|
12
|
+
readonly type: "error";
|
|
13
|
+
}, {
|
|
14
|
+
readonly inputs: readonly [{
|
|
15
|
+
readonly internalType: "address";
|
|
16
|
+
readonly name: "spender";
|
|
17
|
+
readonly type: "address";
|
|
18
|
+
}, {
|
|
19
|
+
readonly internalType: "uint256";
|
|
20
|
+
readonly name: "allowance";
|
|
21
|
+
readonly type: "uint256";
|
|
22
|
+
}, {
|
|
23
|
+
readonly internalType: "uint256";
|
|
24
|
+
readonly name: "needed";
|
|
25
|
+
readonly type: "uint256";
|
|
26
|
+
}];
|
|
27
|
+
readonly name: "ERC20InsufficientAllowance";
|
|
28
|
+
readonly type: "error";
|
|
29
|
+
}, {
|
|
30
|
+
readonly inputs: readonly [{
|
|
31
|
+
readonly internalType: "address";
|
|
32
|
+
readonly name: "sender";
|
|
33
|
+
readonly type: "address";
|
|
34
|
+
}, {
|
|
35
|
+
readonly internalType: "uint256";
|
|
36
|
+
readonly name: "balance";
|
|
37
|
+
readonly type: "uint256";
|
|
38
|
+
}, {
|
|
39
|
+
readonly internalType: "uint256";
|
|
40
|
+
readonly name: "needed";
|
|
41
|
+
readonly type: "uint256";
|
|
42
|
+
}];
|
|
43
|
+
readonly name: "ERC20InsufficientBalance";
|
|
44
|
+
readonly type: "error";
|
|
45
|
+
}, {
|
|
46
|
+
readonly inputs: readonly [{
|
|
47
|
+
readonly internalType: "address";
|
|
48
|
+
readonly name: "approver";
|
|
49
|
+
readonly type: "address";
|
|
50
|
+
}];
|
|
51
|
+
readonly name: "ERC20InvalidApprover";
|
|
52
|
+
readonly type: "error";
|
|
53
|
+
}, {
|
|
54
|
+
readonly inputs: readonly [{
|
|
55
|
+
readonly internalType: "address";
|
|
56
|
+
readonly name: "receiver";
|
|
57
|
+
readonly type: "address";
|
|
58
|
+
}];
|
|
59
|
+
readonly name: "ERC20InvalidReceiver";
|
|
60
|
+
readonly type: "error";
|
|
61
|
+
}, {
|
|
62
|
+
readonly inputs: readonly [{
|
|
63
|
+
readonly internalType: "address";
|
|
64
|
+
readonly name: "sender";
|
|
65
|
+
readonly type: "address";
|
|
66
|
+
}];
|
|
67
|
+
readonly name: "ERC20InvalidSender";
|
|
68
|
+
readonly type: "error";
|
|
69
|
+
}, {
|
|
70
|
+
readonly inputs: readonly [{
|
|
71
|
+
readonly internalType: "address";
|
|
72
|
+
readonly name: "spender";
|
|
73
|
+
readonly type: "address";
|
|
74
|
+
}];
|
|
75
|
+
readonly name: "ERC20InvalidSpender";
|
|
76
|
+
readonly type: "error";
|
|
77
|
+
}, {
|
|
105
78
|
readonly inputs: readonly [];
|
|
106
|
-
readonly name:
|
|
107
|
-
readonly type:
|
|
108
|
-
|
|
109
|
-
{
|
|
79
|
+
readonly name: "ExpiredDeadline";
|
|
80
|
+
readonly type: "error";
|
|
81
|
+
}, {
|
|
110
82
|
readonly inputs: readonly [];
|
|
111
|
-
readonly name:
|
|
112
|
-
readonly type:
|
|
113
|
-
|
|
114
|
-
{
|
|
83
|
+
readonly name: "InvalidDelegate";
|
|
84
|
+
readonly type: "error";
|
|
85
|
+
}, {
|
|
115
86
|
readonly inputs: readonly [];
|
|
116
|
-
readonly name:
|
|
117
|
-
readonly type:
|
|
118
|
-
|
|
119
|
-
{
|
|
87
|
+
readonly name: "InvalidDomainSeparator";
|
|
88
|
+
readonly type: "error";
|
|
89
|
+
}, {
|
|
120
90
|
readonly inputs: readonly [];
|
|
121
|
-
readonly name:
|
|
122
|
-
readonly type:
|
|
123
|
-
|
|
124
|
-
{
|
|
91
|
+
readonly name: "InvalidEndpointCall";
|
|
92
|
+
readonly type: "error";
|
|
93
|
+
}, {
|
|
125
94
|
readonly inputs: readonly [];
|
|
126
|
-
readonly name:
|
|
127
|
-
readonly type:
|
|
128
|
-
|
|
129
|
-
{
|
|
95
|
+
readonly name: "InvalidEpoch";
|
|
96
|
+
readonly type: "error";
|
|
97
|
+
}, {
|
|
130
98
|
readonly inputs: readonly [];
|
|
131
|
-
readonly name:
|
|
132
|
-
readonly type:
|
|
133
|
-
|
|
134
|
-
{
|
|
99
|
+
readonly name: "InvalidInitialization";
|
|
100
|
+
readonly type: "error";
|
|
101
|
+
}, {
|
|
135
102
|
readonly inputs: readonly [];
|
|
136
|
-
readonly name:
|
|
137
|
-
readonly type:
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
readonly
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
readonly name: 'InvalidOptions';
|
|
148
|
-
readonly type: 'error';
|
|
149
|
-
},
|
|
150
|
-
{
|
|
103
|
+
readonly name: "InvalidLocalDecimals";
|
|
104
|
+
readonly type: "error";
|
|
105
|
+
}, {
|
|
106
|
+
readonly inputs: readonly [{
|
|
107
|
+
readonly internalType: "bytes";
|
|
108
|
+
readonly name: "options";
|
|
109
|
+
readonly type: "bytes";
|
|
110
|
+
}];
|
|
111
|
+
readonly name: "InvalidOptions";
|
|
112
|
+
readonly type: "error";
|
|
113
|
+
}, {
|
|
151
114
|
readonly inputs: readonly [];
|
|
152
|
-
readonly name:
|
|
153
|
-
readonly type:
|
|
154
|
-
|
|
155
|
-
{
|
|
115
|
+
readonly name: "InvalidSignature";
|
|
116
|
+
readonly type: "error";
|
|
117
|
+
}, {
|
|
156
118
|
readonly inputs: readonly [];
|
|
157
|
-
readonly name:
|
|
158
|
-
readonly type:
|
|
159
|
-
|
|
160
|
-
{
|
|
119
|
+
readonly name: "InvalidSignatureComponentS";
|
|
120
|
+
readonly type: "error";
|
|
121
|
+
}, {
|
|
161
122
|
readonly inputs: readonly [];
|
|
162
|
-
readonly name:
|
|
163
|
-
readonly type:
|
|
164
|
-
|
|
165
|
-
{
|
|
123
|
+
readonly name: "InvalidSigner";
|
|
124
|
+
readonly type: "error";
|
|
125
|
+
}, {
|
|
166
126
|
readonly inputs: readonly [];
|
|
167
|
-
readonly name:
|
|
168
|
-
readonly type:
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
readonly
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
readonly name: 'NoPeer';
|
|
179
|
-
readonly type: 'error';
|
|
180
|
-
},
|
|
181
|
-
{
|
|
127
|
+
readonly name: "LzTokenUnavailable";
|
|
128
|
+
readonly type: "error";
|
|
129
|
+
}, {
|
|
130
|
+
readonly inputs: readonly [{
|
|
131
|
+
readonly internalType: "uint32";
|
|
132
|
+
readonly name: "eid";
|
|
133
|
+
readonly type: "uint32";
|
|
134
|
+
}];
|
|
135
|
+
readonly name: "NoPeer";
|
|
136
|
+
readonly type: "error";
|
|
137
|
+
}, {
|
|
182
138
|
readonly inputs: readonly [];
|
|
183
|
-
readonly name:
|
|
184
|
-
readonly type:
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
readonly
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
readonly name: 'NotEnoughNative';
|
|
195
|
-
readonly type: 'error';
|
|
196
|
-
},
|
|
197
|
-
{
|
|
139
|
+
readonly name: "NotConfigured";
|
|
140
|
+
readonly type: "error";
|
|
141
|
+
}, {
|
|
142
|
+
readonly inputs: readonly [{
|
|
143
|
+
readonly internalType: "uint256";
|
|
144
|
+
readonly name: "msgValue";
|
|
145
|
+
readonly type: "uint256";
|
|
146
|
+
}];
|
|
147
|
+
readonly name: "NotEnoughNative";
|
|
148
|
+
readonly type: "error";
|
|
149
|
+
}, {
|
|
198
150
|
readonly inputs: readonly [];
|
|
199
|
-
readonly name:
|
|
200
|
-
readonly type:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
readonly
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
readonly
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
readonly
|
|
217
|
-
readonly
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
readonly name: 'sender';
|
|
223
|
-
readonly type: 'bytes32';
|
|
224
|
-
},
|
|
225
|
-
];
|
|
226
|
-
readonly name: 'OnlyPeer';
|
|
227
|
-
readonly type: 'error';
|
|
228
|
-
},
|
|
229
|
-
{
|
|
151
|
+
readonly name: "NotInitializing";
|
|
152
|
+
readonly type: "error";
|
|
153
|
+
}, {
|
|
154
|
+
readonly inputs: readonly [{
|
|
155
|
+
readonly internalType: "address";
|
|
156
|
+
readonly name: "addr";
|
|
157
|
+
readonly type: "address";
|
|
158
|
+
}];
|
|
159
|
+
readonly name: "OnlyEndpoint";
|
|
160
|
+
readonly type: "error";
|
|
161
|
+
}, {
|
|
162
|
+
readonly inputs: readonly [{
|
|
163
|
+
readonly internalType: "uint32";
|
|
164
|
+
readonly name: "eid";
|
|
165
|
+
readonly type: "uint32";
|
|
166
|
+
}, {
|
|
167
|
+
readonly internalType: "bytes32";
|
|
168
|
+
readonly name: "sender";
|
|
169
|
+
readonly type: "bytes32";
|
|
170
|
+
}];
|
|
171
|
+
readonly name: "OnlyPeer";
|
|
172
|
+
readonly type: "error";
|
|
173
|
+
}, {
|
|
230
174
|
readonly inputs: readonly [];
|
|
231
|
-
readonly name:
|
|
232
|
-
readonly type:
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
readonly
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
readonly
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
readonly type: 'address';
|
|
251
|
-
},
|
|
252
|
-
];
|
|
253
|
-
readonly name: 'OwnableUnauthorizedAccount';
|
|
254
|
-
readonly type: 'error';
|
|
255
|
-
},
|
|
256
|
-
{
|
|
175
|
+
readonly name: "OnlySelf";
|
|
176
|
+
readonly type: "error";
|
|
177
|
+
}, {
|
|
178
|
+
readonly inputs: readonly [{
|
|
179
|
+
readonly internalType: "address";
|
|
180
|
+
readonly name: "owner";
|
|
181
|
+
readonly type: "address";
|
|
182
|
+
}];
|
|
183
|
+
readonly name: "OwnableInvalidOwner";
|
|
184
|
+
readonly type: "error";
|
|
185
|
+
}, {
|
|
186
|
+
readonly inputs: readonly [{
|
|
187
|
+
readonly internalType: "address";
|
|
188
|
+
readonly name: "account";
|
|
189
|
+
readonly type: "address";
|
|
190
|
+
}];
|
|
191
|
+
readonly name: "OwnableUnauthorizedAccount";
|
|
192
|
+
readonly type: "error";
|
|
193
|
+
}, {
|
|
257
194
|
readonly inputs: readonly [];
|
|
258
|
-
readonly name:
|
|
259
|
-
readonly type:
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
readonly
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
readonly
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
readonly internalType: 'uint256';
|
|
292
|
-
readonly name: 'minAmountLD';
|
|
293
|
-
readonly type: 'uint256';
|
|
294
|
-
},
|
|
295
|
-
];
|
|
296
|
-
readonly name: 'SlippageExceeded';
|
|
297
|
-
readonly type: 'error';
|
|
298
|
-
},
|
|
299
|
-
{
|
|
195
|
+
readonly name: "ReentrantCall";
|
|
196
|
+
readonly type: "error";
|
|
197
|
+
}, {
|
|
198
|
+
readonly inputs: readonly [{
|
|
199
|
+
readonly internalType: "address";
|
|
200
|
+
readonly name: "token";
|
|
201
|
+
readonly type: "address";
|
|
202
|
+
}];
|
|
203
|
+
readonly name: "SafeERC20FailedOperation";
|
|
204
|
+
readonly type: "error";
|
|
205
|
+
}, {
|
|
206
|
+
readonly inputs: readonly [{
|
|
207
|
+
readonly internalType: "bytes";
|
|
208
|
+
readonly name: "result";
|
|
209
|
+
readonly type: "bytes";
|
|
210
|
+
}];
|
|
211
|
+
readonly name: "SimulationResult";
|
|
212
|
+
readonly type: "error";
|
|
213
|
+
}, {
|
|
214
|
+
readonly inputs: readonly [{
|
|
215
|
+
readonly internalType: "uint256";
|
|
216
|
+
readonly name: "amountLD";
|
|
217
|
+
readonly type: "uint256";
|
|
218
|
+
}, {
|
|
219
|
+
readonly internalType: "uint256";
|
|
220
|
+
readonly name: "minAmountLD";
|
|
221
|
+
readonly type: "uint256";
|
|
222
|
+
}];
|
|
223
|
+
readonly name: "SlippageExceeded";
|
|
224
|
+
readonly type: "error";
|
|
225
|
+
}, {
|
|
300
226
|
readonly inputs: readonly [];
|
|
301
|
-
readonly name:
|
|
302
|
-
readonly type:
|
|
303
|
-
|
|
304
|
-
{
|
|
227
|
+
readonly name: "TokensLocked";
|
|
228
|
+
readonly type: "error";
|
|
229
|
+
}, {
|
|
305
230
|
readonly inputs: readonly [];
|
|
306
|
-
readonly name:
|
|
307
|
-
readonly type:
|
|
308
|
-
|
|
309
|
-
{
|
|
231
|
+
readonly name: "Unauthorized";
|
|
232
|
+
readonly type: "error";
|
|
233
|
+
}, {
|
|
310
234
|
readonly inputs: readonly [];
|
|
311
|
-
readonly name:
|
|
312
|
-
readonly type:
|
|
313
|
-
|
|
314
|
-
{
|
|
235
|
+
readonly name: "UnauthorizedBurner";
|
|
236
|
+
readonly type: "error";
|
|
237
|
+
}, {
|
|
315
238
|
readonly inputs: readonly [];
|
|
316
|
-
readonly name:
|
|
317
|
-
readonly type:
|
|
318
|
-
|
|
319
|
-
{
|
|
239
|
+
readonly name: "UnauthorizedMinter";
|
|
240
|
+
readonly type: "error";
|
|
241
|
+
}, {
|
|
320
242
|
readonly inputs: readonly [];
|
|
321
|
-
readonly name:
|
|
322
|
-
readonly type:
|
|
323
|
-
|
|
324
|
-
{
|
|
243
|
+
readonly name: "ZeroAddress";
|
|
244
|
+
readonly type: "error";
|
|
245
|
+
}, {
|
|
325
246
|
readonly anonymous: false;
|
|
326
|
-
readonly inputs: readonly [
|
|
327
|
-
{
|
|
247
|
+
readonly inputs: readonly [{
|
|
328
248
|
readonly indexed: true;
|
|
329
|
-
readonly internalType:
|
|
330
|
-
readonly name:
|
|
331
|
-
readonly type:
|
|
332
|
-
|
|
333
|
-
{
|
|
249
|
+
readonly internalType: "address";
|
|
250
|
+
readonly name: "owner";
|
|
251
|
+
readonly type: "address";
|
|
252
|
+
}, {
|
|
334
253
|
readonly indexed: true;
|
|
335
|
-
readonly internalType:
|
|
336
|
-
readonly name:
|
|
337
|
-
readonly type:
|
|
338
|
-
|
|
339
|
-
{
|
|
254
|
+
readonly internalType: "address";
|
|
255
|
+
readonly name: "spender";
|
|
256
|
+
readonly type: "address";
|
|
257
|
+
}, {
|
|
340
258
|
readonly indexed: false;
|
|
341
|
-
readonly internalType:
|
|
342
|
-
readonly name:
|
|
343
|
-
readonly type:
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
readonly
|
|
347
|
-
|
|
348
|
-
},
|
|
349
|
-
{
|
|
259
|
+
readonly internalType: "uint256";
|
|
260
|
+
readonly name: "value";
|
|
261
|
+
readonly type: "uint256";
|
|
262
|
+
}];
|
|
263
|
+
readonly name: "Approval";
|
|
264
|
+
readonly type: "event";
|
|
265
|
+
}, {
|
|
350
266
|
readonly anonymous: false;
|
|
351
267
|
readonly inputs: readonly [];
|
|
352
|
-
readonly name:
|
|
353
|
-
readonly type:
|
|
354
|
-
|
|
355
|
-
{
|
|
268
|
+
readonly name: "EIP712DomainChanged";
|
|
269
|
+
readonly type: "event";
|
|
270
|
+
}, {
|
|
356
271
|
readonly anonymous: false;
|
|
357
|
-
readonly inputs: readonly [
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
readonly
|
|
362
|
-
|
|
363
|
-
readonly
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
readonly
|
|
368
|
-
readonly
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
readonly internalType: 'bytes';
|
|
372
|
-
readonly name: 'options';
|
|
373
|
-
readonly type: 'bytes';
|
|
374
|
-
},
|
|
375
|
-
];
|
|
272
|
+
readonly inputs: readonly [{
|
|
273
|
+
readonly components: readonly [{
|
|
274
|
+
readonly internalType: "uint32";
|
|
275
|
+
readonly name: "eid";
|
|
276
|
+
readonly type: "uint32";
|
|
277
|
+
}, {
|
|
278
|
+
readonly internalType: "uint16";
|
|
279
|
+
readonly name: "msgType";
|
|
280
|
+
readonly type: "uint16";
|
|
281
|
+
}, {
|
|
282
|
+
readonly internalType: "bytes";
|
|
283
|
+
readonly name: "options";
|
|
284
|
+
readonly type: "bytes";
|
|
285
|
+
}];
|
|
376
286
|
readonly indexed: false;
|
|
377
|
-
readonly internalType:
|
|
378
|
-
readonly name:
|
|
379
|
-
readonly type:
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
readonly
|
|
383
|
-
|
|
384
|
-
},
|
|
385
|
-
{
|
|
287
|
+
readonly internalType: "struct EnforcedOptionParam[]";
|
|
288
|
+
readonly name: "_enforcedOptions";
|
|
289
|
+
readonly type: "tuple[]";
|
|
290
|
+
}];
|
|
291
|
+
readonly name: "EnforcedOptionSet";
|
|
292
|
+
readonly type: "event";
|
|
293
|
+
}, {
|
|
386
294
|
readonly anonymous: false;
|
|
387
|
-
readonly inputs: readonly [
|
|
388
|
-
{
|
|
295
|
+
readonly inputs: readonly [{
|
|
389
296
|
readonly indexed: false;
|
|
390
|
-
readonly internalType:
|
|
391
|
-
readonly name:
|
|
392
|
-
readonly type:
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
readonly
|
|
396
|
-
|
|
397
|
-
},
|
|
398
|
-
{
|
|
297
|
+
readonly internalType: "uint64";
|
|
298
|
+
readonly name: "version";
|
|
299
|
+
readonly type: "uint64";
|
|
300
|
+
}];
|
|
301
|
+
readonly name: "Initialized";
|
|
302
|
+
readonly type: "event";
|
|
303
|
+
}, {
|
|
399
304
|
readonly anonymous: false;
|
|
400
|
-
readonly inputs: readonly [
|
|
401
|
-
{
|
|
305
|
+
readonly inputs: readonly [{
|
|
402
306
|
readonly indexed: false;
|
|
403
|
-
readonly internalType:
|
|
404
|
-
readonly name:
|
|
405
|
-
readonly type:
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
readonly
|
|
409
|
-
|
|
410
|
-
},
|
|
411
|
-
{
|
|
307
|
+
readonly internalType: "address";
|
|
308
|
+
readonly name: "inspector";
|
|
309
|
+
readonly type: "address";
|
|
310
|
+
}];
|
|
311
|
+
readonly name: "MsgInspectorSet";
|
|
312
|
+
readonly type: "event";
|
|
313
|
+
}, {
|
|
412
314
|
readonly anonymous: false;
|
|
413
|
-
readonly inputs: readonly [
|
|
414
|
-
{
|
|
315
|
+
readonly inputs: readonly [{
|
|
415
316
|
readonly indexed: true;
|
|
416
|
-
readonly internalType:
|
|
417
|
-
readonly name:
|
|
418
|
-
readonly type:
|
|
419
|
-
|
|
420
|
-
{
|
|
317
|
+
readonly internalType: "bytes32";
|
|
318
|
+
readonly name: "guid";
|
|
319
|
+
readonly type: "bytes32";
|
|
320
|
+
}, {
|
|
421
321
|
readonly indexed: false;
|
|
422
|
-
readonly internalType:
|
|
423
|
-
readonly name:
|
|
424
|
-
readonly type:
|
|
425
|
-
|
|
426
|
-
{
|
|
322
|
+
readonly internalType: "uint32";
|
|
323
|
+
readonly name: "srcEid";
|
|
324
|
+
readonly type: "uint32";
|
|
325
|
+
}, {
|
|
427
326
|
readonly indexed: true;
|
|
428
|
-
readonly internalType:
|
|
429
|
-
readonly name:
|
|
430
|
-
readonly type:
|
|
431
|
-
|
|
432
|
-
{
|
|
327
|
+
readonly internalType: "address";
|
|
328
|
+
readonly name: "toAddress";
|
|
329
|
+
readonly type: "address";
|
|
330
|
+
}, {
|
|
433
331
|
readonly indexed: false;
|
|
434
|
-
readonly internalType:
|
|
435
|
-
readonly name:
|
|
436
|
-
readonly type:
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
readonly
|
|
440
|
-
|
|
441
|
-
},
|
|
442
|
-
{
|
|
332
|
+
readonly internalType: "uint256";
|
|
333
|
+
readonly name: "amountReceivedLD";
|
|
334
|
+
readonly type: "uint256";
|
|
335
|
+
}];
|
|
336
|
+
readonly name: "OFTReceived";
|
|
337
|
+
readonly type: "event";
|
|
338
|
+
}, {
|
|
443
339
|
readonly anonymous: false;
|
|
444
|
-
readonly inputs: readonly [
|
|
445
|
-
{
|
|
340
|
+
readonly inputs: readonly [{
|
|
446
341
|
readonly indexed: true;
|
|
447
|
-
readonly internalType:
|
|
448
|
-
readonly name:
|
|
449
|
-
readonly type:
|
|
450
|
-
|
|
451
|
-
{
|
|
342
|
+
readonly internalType: "bytes32";
|
|
343
|
+
readonly name: "guid";
|
|
344
|
+
readonly type: "bytes32";
|
|
345
|
+
}, {
|
|
452
346
|
readonly indexed: false;
|
|
453
|
-
readonly internalType:
|
|
454
|
-
readonly name:
|
|
455
|
-
readonly type:
|
|
456
|
-
|
|
457
|
-
{
|
|
347
|
+
readonly internalType: "uint32";
|
|
348
|
+
readonly name: "dstEid";
|
|
349
|
+
readonly type: "uint32";
|
|
350
|
+
}, {
|
|
458
351
|
readonly indexed: true;
|
|
459
|
-
readonly internalType:
|
|
460
|
-
readonly name:
|
|
461
|
-
readonly type:
|
|
462
|
-
|
|
463
|
-
{
|
|
352
|
+
readonly internalType: "address";
|
|
353
|
+
readonly name: "fromAddress";
|
|
354
|
+
readonly type: "address";
|
|
355
|
+
}, {
|
|
464
356
|
readonly indexed: false;
|
|
465
|
-
readonly internalType:
|
|
466
|
-
readonly name:
|
|
467
|
-
readonly type:
|
|
468
|
-
|
|
469
|
-
{
|
|
357
|
+
readonly internalType: "uint256";
|
|
358
|
+
readonly name: "amountSentLD";
|
|
359
|
+
readonly type: "uint256";
|
|
360
|
+
}, {
|
|
470
361
|
readonly indexed: false;
|
|
471
|
-
readonly internalType:
|
|
472
|
-
readonly name:
|
|
473
|
-
readonly type:
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
readonly
|
|
477
|
-
|
|
478
|
-
},
|
|
479
|
-
{
|
|
362
|
+
readonly internalType: "uint256";
|
|
363
|
+
readonly name: "amountReceivedLD";
|
|
364
|
+
readonly type: "uint256";
|
|
365
|
+
}];
|
|
366
|
+
readonly name: "OFTSent";
|
|
367
|
+
readonly type: "event";
|
|
368
|
+
}, {
|
|
480
369
|
readonly anonymous: false;
|
|
481
|
-
readonly inputs: readonly [
|
|
482
|
-
{
|
|
370
|
+
readonly inputs: readonly [{
|
|
483
371
|
readonly indexed: false;
|
|
484
|
-
readonly internalType:
|
|
485
|
-
readonly name:
|
|
486
|
-
readonly type:
|
|
487
|
-
|
|
488
|
-
{
|
|
372
|
+
readonly internalType: "address";
|
|
373
|
+
readonly name: "holderAddr";
|
|
374
|
+
readonly type: "address";
|
|
375
|
+
}, {
|
|
489
376
|
readonly indexed: false;
|
|
490
|
-
readonly internalType:
|
|
491
|
-
readonly name:
|
|
492
|
-
readonly type:
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
readonly
|
|
496
|
-
|
|
497
|
-
},
|
|
498
|
-
{
|
|
377
|
+
readonly internalType: "uint256";
|
|
378
|
+
readonly name: "untilEpoch";
|
|
379
|
+
readonly type: "uint256";
|
|
380
|
+
}];
|
|
381
|
+
readonly name: "OnTokensLocked";
|
|
382
|
+
readonly type: "event";
|
|
383
|
+
}, {
|
|
499
384
|
readonly anonymous: false;
|
|
500
|
-
readonly inputs: readonly [
|
|
501
|
-
{
|
|
385
|
+
readonly inputs: readonly [{
|
|
502
386
|
readonly indexed: false;
|
|
503
|
-
readonly internalType:
|
|
504
|
-
readonly name:
|
|
505
|
-
readonly type:
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
readonly
|
|
509
|
-
|
|
510
|
-
},
|
|
511
|
-
{
|
|
387
|
+
readonly internalType: "address";
|
|
388
|
+
readonly name: "holderAddr";
|
|
389
|
+
readonly type: "address";
|
|
390
|
+
}];
|
|
391
|
+
readonly name: "OnTokensUnLocked";
|
|
392
|
+
readonly type: "event";
|
|
393
|
+
}, {
|
|
512
394
|
readonly anonymous: false;
|
|
513
|
-
readonly inputs: readonly [
|
|
514
|
-
{
|
|
395
|
+
readonly inputs: readonly [{
|
|
515
396
|
readonly indexed: true;
|
|
516
|
-
readonly internalType:
|
|
517
|
-
readonly name:
|
|
518
|
-
readonly type:
|
|
519
|
-
|
|
520
|
-
{
|
|
397
|
+
readonly internalType: "address";
|
|
398
|
+
readonly name: "previousOwner";
|
|
399
|
+
readonly type: "address";
|
|
400
|
+
}, {
|
|
521
401
|
readonly indexed: true;
|
|
522
|
-
readonly internalType:
|
|
523
|
-
readonly name:
|
|
524
|
-
readonly type:
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
readonly
|
|
528
|
-
|
|
529
|
-
},
|
|
530
|
-
{
|
|
402
|
+
readonly internalType: "address";
|
|
403
|
+
readonly name: "newOwner";
|
|
404
|
+
readonly type: "address";
|
|
405
|
+
}];
|
|
406
|
+
readonly name: "OwnershipTransferStarted";
|
|
407
|
+
readonly type: "event";
|
|
408
|
+
}, {
|
|
531
409
|
readonly anonymous: false;
|
|
532
|
-
readonly inputs: readonly [
|
|
533
|
-
{
|
|
410
|
+
readonly inputs: readonly [{
|
|
534
411
|
readonly indexed: true;
|
|
535
|
-
readonly internalType:
|
|
536
|
-
readonly name:
|
|
537
|
-
readonly type:
|
|
538
|
-
|
|
539
|
-
{
|
|
412
|
+
readonly internalType: "address";
|
|
413
|
+
readonly name: "previousOwner";
|
|
414
|
+
readonly type: "address";
|
|
415
|
+
}, {
|
|
540
416
|
readonly indexed: true;
|
|
541
|
-
readonly internalType:
|
|
542
|
-
readonly name:
|
|
543
|
-
readonly type:
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
readonly
|
|
547
|
-
|
|
548
|
-
},
|
|
549
|
-
{
|
|
417
|
+
readonly internalType: "address";
|
|
418
|
+
readonly name: "newOwner";
|
|
419
|
+
readonly type: "address";
|
|
420
|
+
}];
|
|
421
|
+
readonly name: "OwnershipTransferred";
|
|
422
|
+
readonly type: "event";
|
|
423
|
+
}, {
|
|
550
424
|
readonly anonymous: false;
|
|
551
|
-
readonly inputs: readonly [
|
|
552
|
-
{
|
|
425
|
+
readonly inputs: readonly [{
|
|
553
426
|
readonly indexed: false;
|
|
554
|
-
readonly internalType:
|
|
555
|
-
readonly name:
|
|
556
|
-
readonly type:
|
|
557
|
-
|
|
558
|
-
{
|
|
427
|
+
readonly internalType: "uint32";
|
|
428
|
+
readonly name: "eid";
|
|
429
|
+
readonly type: "uint32";
|
|
430
|
+
}, {
|
|
559
431
|
readonly indexed: false;
|
|
560
|
-
readonly internalType:
|
|
561
|
-
readonly name:
|
|
562
|
-
readonly type:
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
readonly
|
|
566
|
-
|
|
567
|
-
},
|
|
568
|
-
{
|
|
432
|
+
readonly internalType: "bytes32";
|
|
433
|
+
readonly name: "peer";
|
|
434
|
+
readonly type: "bytes32";
|
|
435
|
+
}];
|
|
436
|
+
readonly name: "PeerSet";
|
|
437
|
+
readonly type: "event";
|
|
438
|
+
}, {
|
|
569
439
|
readonly anonymous: false;
|
|
570
|
-
readonly inputs: readonly [
|
|
571
|
-
{
|
|
440
|
+
readonly inputs: readonly [{
|
|
572
441
|
readonly indexed: false;
|
|
573
|
-
readonly internalType:
|
|
574
|
-
readonly name:
|
|
575
|
-
readonly type:
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
readonly
|
|
579
|
-
|
|
580
|
-
},
|
|
581
|
-
{
|
|
442
|
+
readonly internalType: "address";
|
|
443
|
+
readonly name: "preCrimeAddress";
|
|
444
|
+
readonly type: "address";
|
|
445
|
+
}];
|
|
446
|
+
readonly name: "PreCrimeSet";
|
|
447
|
+
readonly type: "event";
|
|
448
|
+
}, {
|
|
582
449
|
readonly anonymous: false;
|
|
583
|
-
readonly inputs: readonly [
|
|
584
|
-
{
|
|
450
|
+
readonly inputs: readonly [{
|
|
585
451
|
readonly indexed: true;
|
|
586
|
-
readonly internalType:
|
|
587
|
-
readonly name:
|
|
588
|
-
readonly type:
|
|
589
|
-
|
|
590
|
-
{
|
|
452
|
+
readonly internalType: "address";
|
|
453
|
+
readonly name: "from";
|
|
454
|
+
readonly type: "address";
|
|
455
|
+
}, {
|
|
591
456
|
readonly indexed: true;
|
|
592
|
-
readonly internalType:
|
|
593
|
-
readonly name:
|
|
594
|
-
readonly type:
|
|
595
|
-
|
|
596
|
-
{
|
|
457
|
+
readonly internalType: "address";
|
|
458
|
+
readonly name: "to";
|
|
459
|
+
readonly type: "address";
|
|
460
|
+
}, {
|
|
597
461
|
readonly indexed: false;
|
|
598
|
-
readonly internalType:
|
|
599
|
-
readonly name:
|
|
600
|
-
readonly type:
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
readonly
|
|
604
|
-
|
|
605
|
-
},
|
|
606
|
-
{
|
|
462
|
+
readonly internalType: "uint256";
|
|
463
|
+
readonly name: "value";
|
|
464
|
+
readonly type: "uint256";
|
|
465
|
+
}];
|
|
466
|
+
readonly name: "Transfer";
|
|
467
|
+
readonly type: "event";
|
|
468
|
+
}, {
|
|
607
469
|
readonly inputs: readonly [];
|
|
608
|
-
readonly name:
|
|
609
|
-
readonly outputs: readonly [
|
|
610
|
-
|
|
611
|
-
readonly
|
|
612
|
-
readonly
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
readonly type: 'function';
|
|
618
|
-
},
|
|
619
|
-
{
|
|
470
|
+
readonly name: "DOMAIN_SEPARATOR";
|
|
471
|
+
readonly outputs: readonly [{
|
|
472
|
+
readonly internalType: "bytes32";
|
|
473
|
+
readonly name: "";
|
|
474
|
+
readonly type: "bytes32";
|
|
475
|
+
}];
|
|
476
|
+
readonly stateMutability: "view";
|
|
477
|
+
readonly type: "function";
|
|
478
|
+
}, {
|
|
620
479
|
readonly inputs: readonly [];
|
|
621
|
-
readonly name:
|
|
622
|
-
readonly outputs: readonly [
|
|
623
|
-
|
|
624
|
-
readonly
|
|
625
|
-
readonly
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
readonly type: 'function';
|
|
631
|
-
},
|
|
632
|
-
{
|
|
480
|
+
readonly name: "PERMIT_TYPEHASH";
|
|
481
|
+
readonly outputs: readonly [{
|
|
482
|
+
readonly internalType: "bytes32";
|
|
483
|
+
readonly name: "";
|
|
484
|
+
readonly type: "bytes32";
|
|
485
|
+
}];
|
|
486
|
+
readonly stateMutability: "view";
|
|
487
|
+
readonly type: "function";
|
|
488
|
+
}, {
|
|
633
489
|
readonly inputs: readonly [];
|
|
634
|
-
readonly name:
|
|
635
|
-
readonly outputs: readonly [
|
|
636
|
-
|
|
637
|
-
readonly
|
|
638
|
-
readonly
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
readonly type: 'function';
|
|
644
|
-
},
|
|
645
|
-
{
|
|
490
|
+
readonly name: "SEND";
|
|
491
|
+
readonly outputs: readonly [{
|
|
492
|
+
readonly internalType: "uint16";
|
|
493
|
+
readonly name: "";
|
|
494
|
+
readonly type: "uint16";
|
|
495
|
+
}];
|
|
496
|
+
readonly stateMutability: "view";
|
|
497
|
+
readonly type: "function";
|
|
498
|
+
}, {
|
|
646
499
|
readonly inputs: readonly [];
|
|
647
|
-
readonly name:
|
|
648
|
-
readonly outputs: readonly [
|
|
649
|
-
|
|
650
|
-
readonly
|
|
651
|
-
readonly
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
readonly type: 'function';
|
|
657
|
-
},
|
|
658
|
-
{
|
|
500
|
+
readonly name: "SEND_AND_CALL";
|
|
501
|
+
readonly outputs: readonly [{
|
|
502
|
+
readonly internalType: "uint16";
|
|
503
|
+
readonly name: "";
|
|
504
|
+
readonly type: "uint16";
|
|
505
|
+
}];
|
|
506
|
+
readonly stateMutability: "view";
|
|
507
|
+
readonly type: "function";
|
|
508
|
+
}, {
|
|
659
509
|
readonly inputs: readonly [];
|
|
660
|
-
readonly name:
|
|
510
|
+
readonly name: "acceptOwnership";
|
|
661
511
|
readonly outputs: readonly [];
|
|
662
|
-
readonly stateMutability:
|
|
663
|
-
readonly type:
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
readonly
|
|
672
|
-
readonly
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
readonly internalType:
|
|
676
|
-
readonly name:
|
|
677
|
-
readonly type:
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
readonly internalType:
|
|
686
|
-
readonly name:
|
|
687
|
-
readonly type:
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
readonly
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
readonly internalType:
|
|
694
|
-
readonly name:
|
|
695
|
-
readonly type:
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
readonly
|
|
703
|
-
|
|
704
|
-
readonly
|
|
705
|
-
readonly
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
readonly name: 'spender';
|
|
711
|
-
readonly type: 'address';
|
|
712
|
-
},
|
|
713
|
-
];
|
|
714
|
-
readonly name: 'allowance';
|
|
715
|
-
readonly outputs: readonly [
|
|
716
|
-
{
|
|
717
|
-
readonly internalType: 'uint256';
|
|
718
|
-
readonly name: '';
|
|
719
|
-
readonly type: 'uint256';
|
|
720
|
-
},
|
|
721
|
-
];
|
|
722
|
-
readonly stateMutability: 'view';
|
|
723
|
-
readonly type: 'function';
|
|
724
|
-
},
|
|
725
|
-
{
|
|
512
|
+
readonly stateMutability: "nonpayable";
|
|
513
|
+
readonly type: "function";
|
|
514
|
+
}, {
|
|
515
|
+
readonly inputs: readonly [{
|
|
516
|
+
readonly components: readonly [{
|
|
517
|
+
readonly internalType: "uint32";
|
|
518
|
+
readonly name: "srcEid";
|
|
519
|
+
readonly type: "uint32";
|
|
520
|
+
}, {
|
|
521
|
+
readonly internalType: "bytes32";
|
|
522
|
+
readonly name: "sender";
|
|
523
|
+
readonly type: "bytes32";
|
|
524
|
+
}, {
|
|
525
|
+
readonly internalType: "uint64";
|
|
526
|
+
readonly name: "nonce";
|
|
527
|
+
readonly type: "uint64";
|
|
528
|
+
}];
|
|
529
|
+
readonly internalType: "struct Origin";
|
|
530
|
+
readonly name: "origin";
|
|
531
|
+
readonly type: "tuple";
|
|
532
|
+
}];
|
|
533
|
+
readonly name: "allowInitializePath";
|
|
534
|
+
readonly outputs: readonly [{
|
|
535
|
+
readonly internalType: "bool";
|
|
536
|
+
readonly name: "";
|
|
537
|
+
readonly type: "bool";
|
|
538
|
+
}];
|
|
539
|
+
readonly stateMutability: "view";
|
|
540
|
+
readonly type: "function";
|
|
541
|
+
}, {
|
|
542
|
+
readonly inputs: readonly [{
|
|
543
|
+
readonly internalType: "address";
|
|
544
|
+
readonly name: "owner";
|
|
545
|
+
readonly type: "address";
|
|
546
|
+
}, {
|
|
547
|
+
readonly internalType: "address";
|
|
548
|
+
readonly name: "spender";
|
|
549
|
+
readonly type: "address";
|
|
550
|
+
}];
|
|
551
|
+
readonly name: "allowance";
|
|
552
|
+
readonly outputs: readonly [{
|
|
553
|
+
readonly internalType: "uint256";
|
|
554
|
+
readonly name: "";
|
|
555
|
+
readonly type: "uint256";
|
|
556
|
+
}];
|
|
557
|
+
readonly stateMutability: "view";
|
|
558
|
+
readonly type: "function";
|
|
559
|
+
}, {
|
|
726
560
|
readonly inputs: readonly [];
|
|
727
|
-
readonly name:
|
|
728
|
-
readonly outputs: readonly [
|
|
729
|
-
|
|
730
|
-
readonly
|
|
731
|
-
readonly
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
readonly
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
readonly internalType:
|
|
742
|
-
readonly name:
|
|
743
|
-
readonly type:
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
readonly
|
|
748
|
-
readonly
|
|
749
|
-
|
|
750
|
-
];
|
|
751
|
-
readonly
|
|
752
|
-
readonly
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
readonly
|
|
756
|
-
readonly
|
|
757
|
-
|
|
758
|
-
];
|
|
759
|
-
readonly
|
|
760
|
-
readonly
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
readonly internalType:
|
|
774
|
-
readonly name:
|
|
775
|
-
readonly type:
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
readonly stateMutability: 'view';
|
|
779
|
-
readonly type: 'function';
|
|
780
|
-
},
|
|
781
|
-
{
|
|
782
|
-
readonly inputs: readonly [
|
|
783
|
-
{
|
|
784
|
-
readonly internalType: 'address';
|
|
785
|
-
readonly name: 'addr';
|
|
786
|
-
readonly type: 'address';
|
|
787
|
-
},
|
|
788
|
-
{
|
|
789
|
-
readonly internalType: 'uint256';
|
|
790
|
-
readonly name: 'amount';
|
|
791
|
-
readonly type: 'uint256';
|
|
792
|
-
},
|
|
793
|
-
];
|
|
794
|
-
readonly name: 'burn';
|
|
561
|
+
readonly name: "approvalRequired";
|
|
562
|
+
readonly outputs: readonly [{
|
|
563
|
+
readonly internalType: "bool";
|
|
564
|
+
readonly name: "";
|
|
565
|
+
readonly type: "bool";
|
|
566
|
+
}];
|
|
567
|
+
readonly stateMutability: "pure";
|
|
568
|
+
readonly type: "function";
|
|
569
|
+
}, {
|
|
570
|
+
readonly inputs: readonly [{
|
|
571
|
+
readonly internalType: "address";
|
|
572
|
+
readonly name: "spender";
|
|
573
|
+
readonly type: "address";
|
|
574
|
+
}, {
|
|
575
|
+
readonly internalType: "uint256";
|
|
576
|
+
readonly name: "amount";
|
|
577
|
+
readonly type: "uint256";
|
|
578
|
+
}];
|
|
579
|
+
readonly name: "approve";
|
|
580
|
+
readonly outputs: readonly [{
|
|
581
|
+
readonly internalType: "bool";
|
|
582
|
+
readonly name: "";
|
|
583
|
+
readonly type: "bool";
|
|
584
|
+
}];
|
|
585
|
+
readonly stateMutability: "nonpayable";
|
|
586
|
+
readonly type: "function";
|
|
587
|
+
}, {
|
|
588
|
+
readonly inputs: readonly [{
|
|
589
|
+
readonly internalType: "address";
|
|
590
|
+
readonly name: "account";
|
|
591
|
+
readonly type: "address";
|
|
592
|
+
}];
|
|
593
|
+
readonly name: "balanceOf";
|
|
594
|
+
readonly outputs: readonly [{
|
|
595
|
+
readonly internalType: "uint256";
|
|
596
|
+
readonly name: "";
|
|
597
|
+
readonly type: "uint256";
|
|
598
|
+
}];
|
|
599
|
+
readonly stateMutability: "view";
|
|
600
|
+
readonly type: "function";
|
|
601
|
+
}, {
|
|
602
|
+
readonly inputs: readonly [{
|
|
603
|
+
readonly internalType: "address";
|
|
604
|
+
readonly name: "addr";
|
|
605
|
+
readonly type: "address";
|
|
606
|
+
}, {
|
|
607
|
+
readonly internalType: "uint256";
|
|
608
|
+
readonly name: "amount";
|
|
609
|
+
readonly type: "uint256";
|
|
610
|
+
}];
|
|
611
|
+
readonly name: "burn";
|
|
795
612
|
readonly outputs: readonly [];
|
|
796
|
-
readonly stateMutability:
|
|
797
|
-
readonly type:
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
readonly
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
readonly
|
|
823
|
-
readonly
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
readonly
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
readonly
|
|
841
|
-
readonly
|
|
842
|
-
|
|
843
|
-
];
|
|
844
|
-
readonly
|
|
845
|
-
readonly type: 'function';
|
|
846
|
-
},
|
|
847
|
-
{
|
|
848
|
-
readonly inputs: readonly [
|
|
849
|
-
{
|
|
850
|
-
readonly internalType: 'address[]';
|
|
851
|
-
readonly name: 'newMinters';
|
|
852
|
-
readonly type: 'address[]';
|
|
853
|
-
},
|
|
854
|
-
{
|
|
855
|
-
readonly internalType: 'address[]';
|
|
856
|
-
readonly name: 'newBurners';
|
|
857
|
-
readonly type: 'address[]';
|
|
858
|
-
},
|
|
859
|
-
];
|
|
860
|
-
readonly name: 'configure';
|
|
613
|
+
readonly stateMutability: "nonpayable";
|
|
614
|
+
readonly type: "function";
|
|
615
|
+
}, {
|
|
616
|
+
readonly inputs: readonly [{
|
|
617
|
+
readonly internalType: "address";
|
|
618
|
+
readonly name: "";
|
|
619
|
+
readonly type: "address";
|
|
620
|
+
}];
|
|
621
|
+
readonly name: "burners";
|
|
622
|
+
readonly outputs: readonly [{
|
|
623
|
+
readonly internalType: "bool";
|
|
624
|
+
readonly name: "";
|
|
625
|
+
readonly type: "bool";
|
|
626
|
+
}];
|
|
627
|
+
readonly stateMutability: "view";
|
|
628
|
+
readonly type: "function";
|
|
629
|
+
}, {
|
|
630
|
+
readonly inputs: readonly [{
|
|
631
|
+
readonly internalType: "uint32";
|
|
632
|
+
readonly name: "_eid";
|
|
633
|
+
readonly type: "uint32";
|
|
634
|
+
}, {
|
|
635
|
+
readonly internalType: "uint16";
|
|
636
|
+
readonly name: "_msgType";
|
|
637
|
+
readonly type: "uint16";
|
|
638
|
+
}, {
|
|
639
|
+
readonly internalType: "bytes";
|
|
640
|
+
readonly name: "_extraOptions";
|
|
641
|
+
readonly type: "bytes";
|
|
642
|
+
}];
|
|
643
|
+
readonly name: "combineOptions";
|
|
644
|
+
readonly outputs: readonly [{
|
|
645
|
+
readonly internalType: "bytes";
|
|
646
|
+
readonly name: "";
|
|
647
|
+
readonly type: "bytes";
|
|
648
|
+
}];
|
|
649
|
+
readonly stateMutability: "view";
|
|
650
|
+
readonly type: "function";
|
|
651
|
+
}, {
|
|
652
|
+
readonly inputs: readonly [{
|
|
653
|
+
readonly internalType: "address[]";
|
|
654
|
+
readonly name: "newMinters";
|
|
655
|
+
readonly type: "address[]";
|
|
656
|
+
}, {
|
|
657
|
+
readonly internalType: "address[]";
|
|
658
|
+
readonly name: "newBurners";
|
|
659
|
+
readonly type: "address[]";
|
|
660
|
+
}];
|
|
661
|
+
readonly name: "configure";
|
|
861
662
|
readonly outputs: readonly [];
|
|
862
|
-
readonly stateMutability:
|
|
863
|
-
readonly type:
|
|
864
|
-
|
|
865
|
-
{
|
|
663
|
+
readonly stateMutability: "nonpayable";
|
|
664
|
+
readonly type: "function";
|
|
665
|
+
}, {
|
|
866
666
|
readonly inputs: readonly [];
|
|
867
|
-
readonly name:
|
|
868
|
-
readonly outputs: readonly [
|
|
869
|
-
|
|
870
|
-
readonly
|
|
871
|
-
readonly
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
readonly type: 'function';
|
|
877
|
-
},
|
|
878
|
-
{
|
|
667
|
+
readonly name: "decimalConversionRate";
|
|
668
|
+
readonly outputs: readonly [{
|
|
669
|
+
readonly internalType: "uint256";
|
|
670
|
+
readonly name: "";
|
|
671
|
+
readonly type: "uint256";
|
|
672
|
+
}];
|
|
673
|
+
readonly stateMutability: "view";
|
|
674
|
+
readonly type: "function";
|
|
675
|
+
}, {
|
|
879
676
|
readonly inputs: readonly [];
|
|
880
|
-
readonly name:
|
|
881
|
-
readonly outputs: readonly [
|
|
882
|
-
|
|
883
|
-
readonly
|
|
884
|
-
readonly
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
readonly type: 'function';
|
|
890
|
-
},
|
|
891
|
-
{
|
|
677
|
+
readonly name: "decimals";
|
|
678
|
+
readonly outputs: readonly [{
|
|
679
|
+
readonly internalType: "uint8";
|
|
680
|
+
readonly name: "";
|
|
681
|
+
readonly type: "uint8";
|
|
682
|
+
}];
|
|
683
|
+
readonly stateMutability: "view";
|
|
684
|
+
readonly type: "function";
|
|
685
|
+
}, {
|
|
892
686
|
readonly inputs: readonly [];
|
|
893
|
-
readonly name:
|
|
894
|
-
readonly outputs: readonly [
|
|
895
|
-
|
|
896
|
-
readonly
|
|
897
|
-
readonly
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
readonly
|
|
902
|
-
|
|
903
|
-
readonly
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
readonly
|
|
908
|
-
readonly
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
readonly internalType:
|
|
912
|
-
readonly name:
|
|
913
|
-
readonly type:
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
readonly
|
|
917
|
-
readonly
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
readonly
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
readonly internalType: 'uint256[]';
|
|
927
|
-
readonly name: 'extensions';
|
|
928
|
-
readonly type: 'uint256[]';
|
|
929
|
-
},
|
|
930
|
-
];
|
|
931
|
-
readonly stateMutability: 'view';
|
|
932
|
-
readonly type: 'function';
|
|
933
|
-
},
|
|
934
|
-
{
|
|
687
|
+
readonly name: "eip712Domain";
|
|
688
|
+
readonly outputs: readonly [{
|
|
689
|
+
readonly internalType: "bytes1";
|
|
690
|
+
readonly name: "fields";
|
|
691
|
+
readonly type: "bytes1";
|
|
692
|
+
}, {
|
|
693
|
+
readonly internalType: "string";
|
|
694
|
+
readonly name: "domainName";
|
|
695
|
+
readonly type: "string";
|
|
696
|
+
}, {
|
|
697
|
+
readonly internalType: "string";
|
|
698
|
+
readonly name: "domainVersion";
|
|
699
|
+
readonly type: "string";
|
|
700
|
+
}, {
|
|
701
|
+
readonly internalType: "uint256";
|
|
702
|
+
readonly name: "chainId";
|
|
703
|
+
readonly type: "uint256";
|
|
704
|
+
}, {
|
|
705
|
+
readonly internalType: "address";
|
|
706
|
+
readonly name: "verifyingContract";
|
|
707
|
+
readonly type: "address";
|
|
708
|
+
}, {
|
|
709
|
+
readonly internalType: "bytes32";
|
|
710
|
+
readonly name: "salt";
|
|
711
|
+
readonly type: "bytes32";
|
|
712
|
+
}, {
|
|
713
|
+
readonly internalType: "uint256[]";
|
|
714
|
+
readonly name: "extensions";
|
|
715
|
+
readonly type: "uint256[]";
|
|
716
|
+
}];
|
|
717
|
+
readonly stateMutability: "view";
|
|
718
|
+
readonly type: "function";
|
|
719
|
+
}, {
|
|
935
720
|
readonly inputs: readonly [];
|
|
936
|
-
readonly name:
|
|
937
|
-
readonly outputs: readonly [
|
|
938
|
-
|
|
939
|
-
readonly
|
|
940
|
-
readonly
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
readonly
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
readonly internalType:
|
|
951
|
-
readonly name:
|
|
952
|
-
readonly type:
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
readonly
|
|
957
|
-
readonly
|
|
958
|
-
|
|
959
|
-
];
|
|
960
|
-
readonly
|
|
961
|
-
readonly
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
readonly
|
|
965
|
-
readonly
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
readonly
|
|
975
|
-
|
|
976
|
-
readonly
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
readonly type: 'uint8';
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
readonly internalType: 'string';
|
|
985
|
-
readonly name: 'erc20Symbol';
|
|
986
|
-
readonly type: 'string';
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
readonly internalType: 'string';
|
|
990
|
-
readonly name: 'erc20Name';
|
|
991
|
-
readonly type: 'string';
|
|
992
|
-
},
|
|
993
|
-
];
|
|
994
|
-
readonly name: 'initialize';
|
|
721
|
+
readonly name: "endpoint";
|
|
722
|
+
readonly outputs: readonly [{
|
|
723
|
+
readonly internalType: "contract ILayerZeroEndpointV2";
|
|
724
|
+
readonly name: "";
|
|
725
|
+
readonly type: "address";
|
|
726
|
+
}];
|
|
727
|
+
readonly stateMutability: "view";
|
|
728
|
+
readonly type: "function";
|
|
729
|
+
}, {
|
|
730
|
+
readonly inputs: readonly [{
|
|
731
|
+
readonly internalType: "uint32";
|
|
732
|
+
readonly name: "_eid";
|
|
733
|
+
readonly type: "uint32";
|
|
734
|
+
}, {
|
|
735
|
+
readonly internalType: "uint16";
|
|
736
|
+
readonly name: "_msgType";
|
|
737
|
+
readonly type: "uint16";
|
|
738
|
+
}];
|
|
739
|
+
readonly name: "enforcedOptions";
|
|
740
|
+
readonly outputs: readonly [{
|
|
741
|
+
readonly internalType: "bytes";
|
|
742
|
+
readonly name: "";
|
|
743
|
+
readonly type: "bytes";
|
|
744
|
+
}];
|
|
745
|
+
readonly stateMutability: "view";
|
|
746
|
+
readonly type: "function";
|
|
747
|
+
}, {
|
|
748
|
+
readonly inputs: readonly [{
|
|
749
|
+
readonly internalType: "address";
|
|
750
|
+
readonly name: "newOwnerAddr";
|
|
751
|
+
readonly type: "address";
|
|
752
|
+
}, {
|
|
753
|
+
readonly internalType: "uint8";
|
|
754
|
+
readonly name: "erc20Decimals";
|
|
755
|
+
readonly type: "uint8";
|
|
756
|
+
}, {
|
|
757
|
+
readonly internalType: "string";
|
|
758
|
+
readonly name: "erc20Symbol";
|
|
759
|
+
readonly type: "string";
|
|
760
|
+
}, {
|
|
761
|
+
readonly internalType: "string";
|
|
762
|
+
readonly name: "erc20Name";
|
|
763
|
+
readonly type: "string";
|
|
764
|
+
}];
|
|
765
|
+
readonly name: "initialize";
|
|
995
766
|
readonly outputs: readonly [];
|
|
996
|
-
readonly stateMutability:
|
|
997
|
-
readonly type:
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
readonly
|
|
1006
|
-
readonly
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
readonly internalType:
|
|
1010
|
-
readonly name:
|
|
1011
|
-
readonly type:
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
readonly
|
|
1020
|
-
|
|
1021
|
-
readonly
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
readonly
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
readonly
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
readonly
|
|
1038
|
-
|
|
1039
|
-
readonly
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
readonly
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
readonly internalType:
|
|
1054
|
-
readonly name:
|
|
1055
|
-
readonly type:
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
readonly name: '';
|
|
1063
|
-
readonly type: 'bool';
|
|
1064
|
-
},
|
|
1065
|
-
];
|
|
1066
|
-
readonly stateMutability: 'view';
|
|
1067
|
-
readonly type: 'function';
|
|
1068
|
-
},
|
|
1069
|
-
{
|
|
1070
|
-
readonly inputs: readonly [
|
|
1071
|
-
{
|
|
1072
|
-
readonly internalType: 'address';
|
|
1073
|
-
readonly name: 'holderAddr';
|
|
1074
|
-
readonly type: 'address';
|
|
1075
|
-
},
|
|
1076
|
-
{
|
|
1077
|
-
readonly internalType: 'uint256';
|
|
1078
|
-
readonly name: 'untilEpoch';
|
|
1079
|
-
readonly type: 'uint256';
|
|
1080
|
-
},
|
|
1081
|
-
];
|
|
1082
|
-
readonly name: 'lockTokens';
|
|
767
|
+
readonly stateMutability: "nonpayable";
|
|
768
|
+
readonly type: "function";
|
|
769
|
+
}, {
|
|
770
|
+
readonly inputs: readonly [{
|
|
771
|
+
readonly components: readonly [{
|
|
772
|
+
readonly internalType: "uint32";
|
|
773
|
+
readonly name: "srcEid";
|
|
774
|
+
readonly type: "uint32";
|
|
775
|
+
}, {
|
|
776
|
+
readonly internalType: "bytes32";
|
|
777
|
+
readonly name: "sender";
|
|
778
|
+
readonly type: "bytes32";
|
|
779
|
+
}, {
|
|
780
|
+
readonly internalType: "uint64";
|
|
781
|
+
readonly name: "nonce";
|
|
782
|
+
readonly type: "uint64";
|
|
783
|
+
}];
|
|
784
|
+
readonly internalType: "struct Origin";
|
|
785
|
+
readonly name: "";
|
|
786
|
+
readonly type: "tuple";
|
|
787
|
+
}, {
|
|
788
|
+
readonly internalType: "bytes";
|
|
789
|
+
readonly name: "";
|
|
790
|
+
readonly type: "bytes";
|
|
791
|
+
}, {
|
|
792
|
+
readonly internalType: "address";
|
|
793
|
+
readonly name: "_sender";
|
|
794
|
+
readonly type: "address";
|
|
795
|
+
}];
|
|
796
|
+
readonly name: "isComposeMsgSender";
|
|
797
|
+
readonly outputs: readonly [{
|
|
798
|
+
readonly internalType: "bool";
|
|
799
|
+
readonly name: "";
|
|
800
|
+
readonly type: "bool";
|
|
801
|
+
}];
|
|
802
|
+
readonly stateMutability: "view";
|
|
803
|
+
readonly type: "function";
|
|
804
|
+
}, {
|
|
805
|
+
readonly inputs: readonly [{
|
|
806
|
+
readonly internalType: "uint32";
|
|
807
|
+
readonly name: "_eid";
|
|
808
|
+
readonly type: "uint32";
|
|
809
|
+
}, {
|
|
810
|
+
readonly internalType: "bytes32";
|
|
811
|
+
readonly name: "_peer";
|
|
812
|
+
readonly type: "bytes32";
|
|
813
|
+
}];
|
|
814
|
+
readonly name: "isPeer";
|
|
815
|
+
readonly outputs: readonly [{
|
|
816
|
+
readonly internalType: "bool";
|
|
817
|
+
readonly name: "";
|
|
818
|
+
readonly type: "bool";
|
|
819
|
+
}];
|
|
820
|
+
readonly stateMutability: "view";
|
|
821
|
+
readonly type: "function";
|
|
822
|
+
}, {
|
|
823
|
+
readonly inputs: readonly [{
|
|
824
|
+
readonly internalType: "address";
|
|
825
|
+
readonly name: "holderAddr";
|
|
826
|
+
readonly type: "address";
|
|
827
|
+
}, {
|
|
828
|
+
readonly internalType: "uint256";
|
|
829
|
+
readonly name: "untilEpoch";
|
|
830
|
+
readonly type: "uint256";
|
|
831
|
+
}];
|
|
832
|
+
readonly name: "lockTokens";
|
|
1083
833
|
readonly outputs: readonly [];
|
|
1084
|
-
readonly stateMutability:
|
|
1085
|
-
readonly type:
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
readonly
|
|
1094
|
-
readonly
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
readonly internalType:
|
|
1098
|
-
readonly name:
|
|
1099
|
-
readonly type:
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
readonly
|
|
1108
|
-
|
|
1109
|
-
readonly
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
readonly
|
|
1114
|
-
readonly
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
readonly internalType:
|
|
1118
|
-
readonly name:
|
|
1119
|
-
readonly type:
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
readonly internalType: 'address';
|
|
1123
|
-
readonly name: '_executor';
|
|
1124
|
-
readonly type: 'address';
|
|
1125
|
-
},
|
|
1126
|
-
{
|
|
1127
|
-
readonly internalType: 'bytes';
|
|
1128
|
-
readonly name: '_extraData';
|
|
1129
|
-
readonly type: 'bytes';
|
|
1130
|
-
},
|
|
1131
|
-
];
|
|
1132
|
-
readonly name: 'lzReceive';
|
|
834
|
+
readonly stateMutability: "nonpayable";
|
|
835
|
+
readonly type: "function";
|
|
836
|
+
}, {
|
|
837
|
+
readonly inputs: readonly [{
|
|
838
|
+
readonly components: readonly [{
|
|
839
|
+
readonly internalType: "uint32";
|
|
840
|
+
readonly name: "srcEid";
|
|
841
|
+
readonly type: "uint32";
|
|
842
|
+
}, {
|
|
843
|
+
readonly internalType: "bytes32";
|
|
844
|
+
readonly name: "sender";
|
|
845
|
+
readonly type: "bytes32";
|
|
846
|
+
}, {
|
|
847
|
+
readonly internalType: "uint64";
|
|
848
|
+
readonly name: "nonce";
|
|
849
|
+
readonly type: "uint64";
|
|
850
|
+
}];
|
|
851
|
+
readonly internalType: "struct Origin";
|
|
852
|
+
readonly name: "_origin";
|
|
853
|
+
readonly type: "tuple";
|
|
854
|
+
}, {
|
|
855
|
+
readonly internalType: "bytes32";
|
|
856
|
+
readonly name: "_guid";
|
|
857
|
+
readonly type: "bytes32";
|
|
858
|
+
}, {
|
|
859
|
+
readonly internalType: "bytes";
|
|
860
|
+
readonly name: "_message";
|
|
861
|
+
readonly type: "bytes";
|
|
862
|
+
}, {
|
|
863
|
+
readonly internalType: "address";
|
|
864
|
+
readonly name: "_executor";
|
|
865
|
+
readonly type: "address";
|
|
866
|
+
}, {
|
|
867
|
+
readonly internalType: "bytes";
|
|
868
|
+
readonly name: "_extraData";
|
|
869
|
+
readonly type: "bytes";
|
|
870
|
+
}];
|
|
871
|
+
readonly name: "lzReceive";
|
|
1133
872
|
readonly outputs: readonly [];
|
|
1134
|
-
readonly stateMutability:
|
|
1135
|
-
readonly type:
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
readonly internalType:
|
|
1145
|
-
readonly name:
|
|
1146
|
-
readonly type:
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
readonly
|
|
1150
|
-
readonly
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
readonly
|
|
1161
|
-
readonly
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
readonly internalType:
|
|
1165
|
-
readonly name:
|
|
1166
|
-
readonly type:
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
readonly
|
|
1170
|
-
readonly
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
readonly
|
|
1175
|
-
|
|
1176
|
-
readonly
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
readonly
|
|
1181
|
-
readonly
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
readonly internalType: 'bytes';
|
|
1190
|
-
readonly name: 'message';
|
|
1191
|
-
readonly type: 'bytes';
|
|
1192
|
-
},
|
|
1193
|
-
{
|
|
1194
|
-
readonly internalType: 'bytes';
|
|
1195
|
-
readonly name: 'extraData';
|
|
1196
|
-
readonly type: 'bytes';
|
|
1197
|
-
},
|
|
1198
|
-
];
|
|
1199
|
-
readonly internalType: 'struct InboundPacket[]';
|
|
1200
|
-
readonly name: '_packets';
|
|
1201
|
-
readonly type: 'tuple[]';
|
|
1202
|
-
},
|
|
1203
|
-
];
|
|
1204
|
-
readonly name: 'lzReceiveAndRevert';
|
|
873
|
+
readonly stateMutability: "payable";
|
|
874
|
+
readonly type: "function";
|
|
875
|
+
}, {
|
|
876
|
+
readonly inputs: readonly [{
|
|
877
|
+
readonly components: readonly [{
|
|
878
|
+
readonly components: readonly [{
|
|
879
|
+
readonly internalType: "uint32";
|
|
880
|
+
readonly name: "srcEid";
|
|
881
|
+
readonly type: "uint32";
|
|
882
|
+
}, {
|
|
883
|
+
readonly internalType: "bytes32";
|
|
884
|
+
readonly name: "sender";
|
|
885
|
+
readonly type: "bytes32";
|
|
886
|
+
}, {
|
|
887
|
+
readonly internalType: "uint64";
|
|
888
|
+
readonly name: "nonce";
|
|
889
|
+
readonly type: "uint64";
|
|
890
|
+
}];
|
|
891
|
+
readonly internalType: "struct Origin";
|
|
892
|
+
readonly name: "origin";
|
|
893
|
+
readonly type: "tuple";
|
|
894
|
+
}, {
|
|
895
|
+
readonly internalType: "uint32";
|
|
896
|
+
readonly name: "dstEid";
|
|
897
|
+
readonly type: "uint32";
|
|
898
|
+
}, {
|
|
899
|
+
readonly internalType: "address";
|
|
900
|
+
readonly name: "receiver";
|
|
901
|
+
readonly type: "address";
|
|
902
|
+
}, {
|
|
903
|
+
readonly internalType: "bytes32";
|
|
904
|
+
readonly name: "guid";
|
|
905
|
+
readonly type: "bytes32";
|
|
906
|
+
}, {
|
|
907
|
+
readonly internalType: "uint256";
|
|
908
|
+
readonly name: "value";
|
|
909
|
+
readonly type: "uint256";
|
|
910
|
+
}, {
|
|
911
|
+
readonly internalType: "address";
|
|
912
|
+
readonly name: "executor";
|
|
913
|
+
readonly type: "address";
|
|
914
|
+
}, {
|
|
915
|
+
readonly internalType: "bytes";
|
|
916
|
+
readonly name: "message";
|
|
917
|
+
readonly type: "bytes";
|
|
918
|
+
}, {
|
|
919
|
+
readonly internalType: "bytes";
|
|
920
|
+
readonly name: "extraData";
|
|
921
|
+
readonly type: "bytes";
|
|
922
|
+
}];
|
|
923
|
+
readonly internalType: "struct InboundPacket[]";
|
|
924
|
+
readonly name: "_packets";
|
|
925
|
+
readonly type: "tuple[]";
|
|
926
|
+
}];
|
|
927
|
+
readonly name: "lzReceiveAndRevert";
|
|
1205
928
|
readonly outputs: readonly [];
|
|
1206
|
-
readonly stateMutability:
|
|
1207
|
-
readonly type:
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
readonly
|
|
1216
|
-
readonly
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
readonly internalType:
|
|
1220
|
-
readonly name:
|
|
1221
|
-
readonly type:
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
readonly
|
|
1230
|
-
|
|
1231
|
-
readonly
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
readonly
|
|
1236
|
-
readonly
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
readonly internalType:
|
|
1240
|
-
readonly name:
|
|
1241
|
-
readonly type:
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
readonly internalType: 'address';
|
|
1245
|
-
readonly name: '_executor';
|
|
1246
|
-
readonly type: 'address';
|
|
1247
|
-
},
|
|
1248
|
-
{
|
|
1249
|
-
readonly internalType: 'bytes';
|
|
1250
|
-
readonly name: '_extraData';
|
|
1251
|
-
readonly type: 'bytes';
|
|
1252
|
-
},
|
|
1253
|
-
];
|
|
1254
|
-
readonly name: 'lzReceiveSimulate';
|
|
929
|
+
readonly stateMutability: "payable";
|
|
930
|
+
readonly type: "function";
|
|
931
|
+
}, {
|
|
932
|
+
readonly inputs: readonly [{
|
|
933
|
+
readonly components: readonly [{
|
|
934
|
+
readonly internalType: "uint32";
|
|
935
|
+
readonly name: "srcEid";
|
|
936
|
+
readonly type: "uint32";
|
|
937
|
+
}, {
|
|
938
|
+
readonly internalType: "bytes32";
|
|
939
|
+
readonly name: "sender";
|
|
940
|
+
readonly type: "bytes32";
|
|
941
|
+
}, {
|
|
942
|
+
readonly internalType: "uint64";
|
|
943
|
+
readonly name: "nonce";
|
|
944
|
+
readonly type: "uint64";
|
|
945
|
+
}];
|
|
946
|
+
readonly internalType: "struct Origin";
|
|
947
|
+
readonly name: "_origin";
|
|
948
|
+
readonly type: "tuple";
|
|
949
|
+
}, {
|
|
950
|
+
readonly internalType: "bytes32";
|
|
951
|
+
readonly name: "_guid";
|
|
952
|
+
readonly type: "bytes32";
|
|
953
|
+
}, {
|
|
954
|
+
readonly internalType: "bytes";
|
|
955
|
+
readonly name: "_message";
|
|
956
|
+
readonly type: "bytes";
|
|
957
|
+
}, {
|
|
958
|
+
readonly internalType: "address";
|
|
959
|
+
readonly name: "_executor";
|
|
960
|
+
readonly type: "address";
|
|
961
|
+
}, {
|
|
962
|
+
readonly internalType: "bytes";
|
|
963
|
+
readonly name: "_extraData";
|
|
964
|
+
readonly type: "bytes";
|
|
965
|
+
}];
|
|
966
|
+
readonly name: "lzReceiveSimulate";
|
|
1255
967
|
readonly outputs: readonly [];
|
|
1256
|
-
readonly stateMutability:
|
|
1257
|
-
readonly type:
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
readonly
|
|
1263
|
-
|
|
1264
|
-
readonly
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
readonly type: 'uint256';
|
|
1270
|
-
},
|
|
1271
|
-
];
|
|
1272
|
-
readonly name: 'mint';
|
|
968
|
+
readonly stateMutability: "payable";
|
|
969
|
+
readonly type: "function";
|
|
970
|
+
}, {
|
|
971
|
+
readonly inputs: readonly [{
|
|
972
|
+
readonly internalType: "address";
|
|
973
|
+
readonly name: "addr";
|
|
974
|
+
readonly type: "address";
|
|
975
|
+
}, {
|
|
976
|
+
readonly internalType: "uint256";
|
|
977
|
+
readonly name: "amount";
|
|
978
|
+
readonly type: "uint256";
|
|
979
|
+
}];
|
|
980
|
+
readonly name: "mint";
|
|
1273
981
|
readonly outputs: readonly [];
|
|
1274
|
-
readonly stateMutability:
|
|
1275
|
-
readonly type:
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
readonly
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
},
|
|
1292
|
-
];
|
|
1293
|
-
readonly stateMutability: 'view';
|
|
1294
|
-
readonly type: 'function';
|
|
1295
|
-
},
|
|
1296
|
-
{
|
|
982
|
+
readonly stateMutability: "nonpayable";
|
|
983
|
+
readonly type: "function";
|
|
984
|
+
}, {
|
|
985
|
+
readonly inputs: readonly [{
|
|
986
|
+
readonly internalType: "address";
|
|
987
|
+
readonly name: "";
|
|
988
|
+
readonly type: "address";
|
|
989
|
+
}];
|
|
990
|
+
readonly name: "minters";
|
|
991
|
+
readonly outputs: readonly [{
|
|
992
|
+
readonly internalType: "bool";
|
|
993
|
+
readonly name: "";
|
|
994
|
+
readonly type: "bool";
|
|
995
|
+
}];
|
|
996
|
+
readonly stateMutability: "view";
|
|
997
|
+
readonly type: "function";
|
|
998
|
+
}, {
|
|
1297
999
|
readonly inputs: readonly [];
|
|
1298
|
-
readonly name:
|
|
1299
|
-
readonly outputs: readonly [
|
|
1300
|
-
|
|
1301
|
-
readonly
|
|
1302
|
-
readonly
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
readonly type: 'function';
|
|
1308
|
-
},
|
|
1309
|
-
{
|
|
1000
|
+
readonly name: "msgInspector";
|
|
1001
|
+
readonly outputs: readonly [{
|
|
1002
|
+
readonly internalType: "address";
|
|
1003
|
+
readonly name: "";
|
|
1004
|
+
readonly type: "address";
|
|
1005
|
+
}];
|
|
1006
|
+
readonly stateMutability: "view";
|
|
1007
|
+
readonly type: "function";
|
|
1008
|
+
}, {
|
|
1310
1009
|
readonly inputs: readonly [];
|
|
1311
|
-
readonly name:
|
|
1312
|
-
readonly outputs: readonly [
|
|
1313
|
-
|
|
1314
|
-
readonly
|
|
1315
|
-
readonly
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
readonly
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
readonly internalType:
|
|
1326
|
-
readonly name:
|
|
1327
|
-
readonly type:
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
readonly
|
|
1332
|
-
readonly
|
|
1333
|
-
|
|
1334
|
-
];
|
|
1335
|
-
readonly
|
|
1336
|
-
readonly
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
readonly
|
|
1340
|
-
readonly
|
|
1341
|
-
|
|
1342
|
-
];
|
|
1343
|
-
readonly
|
|
1344
|
-
readonly
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
},
|
|
1353
|
-
];
|
|
1354
|
-
readonly name: 'nonces';
|
|
1355
|
-
readonly outputs: readonly [
|
|
1356
|
-
{
|
|
1357
|
-
readonly internalType: 'uint256';
|
|
1358
|
-
readonly name: '';
|
|
1359
|
-
readonly type: 'uint256';
|
|
1360
|
-
},
|
|
1361
|
-
];
|
|
1362
|
-
readonly stateMutability: 'view';
|
|
1363
|
-
readonly type: 'function';
|
|
1364
|
-
},
|
|
1365
|
-
{
|
|
1010
|
+
readonly name: "name";
|
|
1011
|
+
readonly outputs: readonly [{
|
|
1012
|
+
readonly internalType: "string";
|
|
1013
|
+
readonly name: "";
|
|
1014
|
+
readonly type: "string";
|
|
1015
|
+
}];
|
|
1016
|
+
readonly stateMutability: "view";
|
|
1017
|
+
readonly type: "function";
|
|
1018
|
+
}, {
|
|
1019
|
+
readonly inputs: readonly [{
|
|
1020
|
+
readonly internalType: "uint32";
|
|
1021
|
+
readonly name: "";
|
|
1022
|
+
readonly type: "uint32";
|
|
1023
|
+
}, {
|
|
1024
|
+
readonly internalType: "bytes32";
|
|
1025
|
+
readonly name: "";
|
|
1026
|
+
readonly type: "bytes32";
|
|
1027
|
+
}];
|
|
1028
|
+
readonly name: "nextNonce";
|
|
1029
|
+
readonly outputs: readonly [{
|
|
1030
|
+
readonly internalType: "uint64";
|
|
1031
|
+
readonly name: "nonce";
|
|
1032
|
+
readonly type: "uint64";
|
|
1033
|
+
}];
|
|
1034
|
+
readonly stateMutability: "view";
|
|
1035
|
+
readonly type: "function";
|
|
1036
|
+
}, {
|
|
1037
|
+
readonly inputs: readonly [{
|
|
1038
|
+
readonly internalType: "address";
|
|
1039
|
+
readonly name: "addr";
|
|
1040
|
+
readonly type: "address";
|
|
1041
|
+
}];
|
|
1042
|
+
readonly name: "nonces";
|
|
1043
|
+
readonly outputs: readonly [{
|
|
1044
|
+
readonly internalType: "uint256";
|
|
1045
|
+
readonly name: "";
|
|
1046
|
+
readonly type: "uint256";
|
|
1047
|
+
}];
|
|
1048
|
+
readonly stateMutability: "view";
|
|
1049
|
+
readonly type: "function";
|
|
1050
|
+
}, {
|
|
1366
1051
|
readonly inputs: readonly [];
|
|
1367
|
-
readonly name:
|
|
1368
|
-
readonly outputs: readonly [
|
|
1369
|
-
|
|
1370
|
-
readonly
|
|
1371
|
-
readonly
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
readonly type: 'function';
|
|
1377
|
-
},
|
|
1378
|
-
{
|
|
1052
|
+
readonly name: "oApp";
|
|
1053
|
+
readonly outputs: readonly [{
|
|
1054
|
+
readonly internalType: "address";
|
|
1055
|
+
readonly name: "";
|
|
1056
|
+
readonly type: "address";
|
|
1057
|
+
}];
|
|
1058
|
+
readonly stateMutability: "view";
|
|
1059
|
+
readonly type: "function";
|
|
1060
|
+
}, {
|
|
1379
1061
|
readonly inputs: readonly [];
|
|
1380
|
-
readonly name:
|
|
1381
|
-
readonly outputs: readonly [
|
|
1382
|
-
|
|
1383
|
-
readonly
|
|
1384
|
-
readonly
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
readonly
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
readonly stateMutability: 'pure';
|
|
1394
|
-
readonly type: 'function';
|
|
1395
|
-
},
|
|
1396
|
-
{
|
|
1062
|
+
readonly name: "oAppVersion";
|
|
1063
|
+
readonly outputs: readonly [{
|
|
1064
|
+
readonly internalType: "uint64";
|
|
1065
|
+
readonly name: "senderVersion";
|
|
1066
|
+
readonly type: "uint64";
|
|
1067
|
+
}, {
|
|
1068
|
+
readonly internalType: "uint64";
|
|
1069
|
+
readonly name: "receiverVersion";
|
|
1070
|
+
readonly type: "uint64";
|
|
1071
|
+
}];
|
|
1072
|
+
readonly stateMutability: "pure";
|
|
1073
|
+
readonly type: "function";
|
|
1074
|
+
}, {
|
|
1397
1075
|
readonly inputs: readonly [];
|
|
1398
|
-
readonly name:
|
|
1399
|
-
readonly outputs: readonly [
|
|
1400
|
-
|
|
1401
|
-
readonly
|
|
1402
|
-
readonly
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
readonly
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
readonly stateMutability: 'pure';
|
|
1412
|
-
readonly type: 'function';
|
|
1413
|
-
},
|
|
1414
|
-
{
|
|
1076
|
+
readonly name: "oftVersion";
|
|
1077
|
+
readonly outputs: readonly [{
|
|
1078
|
+
readonly internalType: "bytes4";
|
|
1079
|
+
readonly name: "interfaceId";
|
|
1080
|
+
readonly type: "bytes4";
|
|
1081
|
+
}, {
|
|
1082
|
+
readonly internalType: "uint64";
|
|
1083
|
+
readonly name: "version";
|
|
1084
|
+
readonly type: "uint64";
|
|
1085
|
+
}];
|
|
1086
|
+
readonly stateMutability: "pure";
|
|
1087
|
+
readonly type: "function";
|
|
1088
|
+
}, {
|
|
1415
1089
|
readonly inputs: readonly [];
|
|
1416
|
-
readonly name:
|
|
1417
|
-
readonly outputs: readonly [
|
|
1418
|
-
|
|
1419
|
-
readonly
|
|
1420
|
-
readonly
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
readonly
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
readonly
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
readonly
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
readonly name: '';
|
|
1440
|
-
readonly type: 'bytes32';
|
|
1441
|
-
},
|
|
1442
|
-
];
|
|
1443
|
-
readonly stateMutability: 'view';
|
|
1444
|
-
readonly type: 'function';
|
|
1445
|
-
},
|
|
1446
|
-
{
|
|
1090
|
+
readonly name: "owner";
|
|
1091
|
+
readonly outputs: readonly [{
|
|
1092
|
+
readonly internalType: "address";
|
|
1093
|
+
readonly name: "";
|
|
1094
|
+
readonly type: "address";
|
|
1095
|
+
}];
|
|
1096
|
+
readonly stateMutability: "view";
|
|
1097
|
+
readonly type: "function";
|
|
1098
|
+
}, {
|
|
1099
|
+
readonly inputs: readonly [{
|
|
1100
|
+
readonly internalType: "uint32";
|
|
1101
|
+
readonly name: "_eid";
|
|
1102
|
+
readonly type: "uint32";
|
|
1103
|
+
}];
|
|
1104
|
+
readonly name: "peers";
|
|
1105
|
+
readonly outputs: readonly [{
|
|
1106
|
+
readonly internalType: "bytes32";
|
|
1107
|
+
readonly name: "";
|
|
1108
|
+
readonly type: "bytes32";
|
|
1109
|
+
}];
|
|
1110
|
+
readonly stateMutability: "view";
|
|
1111
|
+
readonly type: "function";
|
|
1112
|
+
}, {
|
|
1447
1113
|
readonly inputs: readonly [];
|
|
1448
|
-
readonly name:
|
|
1449
|
-
readonly outputs: readonly [
|
|
1450
|
-
|
|
1451
|
-
readonly
|
|
1452
|
-
readonly
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
readonly
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
readonly internalType:
|
|
1463
|
-
readonly name:
|
|
1464
|
-
readonly type:
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
readonly
|
|
1468
|
-
readonly
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
readonly
|
|
1473
|
-
|
|
1474
|
-
readonly
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
readonly
|
|
1479
|
-
readonly
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
readonly internalType:
|
|
1483
|
-
readonly name:
|
|
1484
|
-
readonly type:
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
readonly internalType: 'bytes32';
|
|
1488
|
-
readonly name: 'r';
|
|
1489
|
-
readonly type: 'bytes32';
|
|
1490
|
-
},
|
|
1491
|
-
{
|
|
1492
|
-
readonly internalType: 'bytes32';
|
|
1493
|
-
readonly name: 's';
|
|
1494
|
-
readonly type: 'bytes32';
|
|
1495
|
-
},
|
|
1496
|
-
];
|
|
1497
|
-
readonly name: 'permit';
|
|
1114
|
+
readonly name: "pendingOwner";
|
|
1115
|
+
readonly outputs: readonly [{
|
|
1116
|
+
readonly internalType: "address";
|
|
1117
|
+
readonly name: "";
|
|
1118
|
+
readonly type: "address";
|
|
1119
|
+
}];
|
|
1120
|
+
readonly stateMutability: "view";
|
|
1121
|
+
readonly type: "function";
|
|
1122
|
+
}, {
|
|
1123
|
+
readonly inputs: readonly [{
|
|
1124
|
+
readonly internalType: "address";
|
|
1125
|
+
readonly name: "holderAddr";
|
|
1126
|
+
readonly type: "address";
|
|
1127
|
+
}, {
|
|
1128
|
+
readonly internalType: "address";
|
|
1129
|
+
readonly name: "spenderAddr";
|
|
1130
|
+
readonly type: "address";
|
|
1131
|
+
}, {
|
|
1132
|
+
readonly internalType: "uint256";
|
|
1133
|
+
readonly name: "value";
|
|
1134
|
+
readonly type: "uint256";
|
|
1135
|
+
}, {
|
|
1136
|
+
readonly internalType: "uint256";
|
|
1137
|
+
readonly name: "deadline";
|
|
1138
|
+
readonly type: "uint256";
|
|
1139
|
+
}, {
|
|
1140
|
+
readonly internalType: "uint8";
|
|
1141
|
+
readonly name: "v";
|
|
1142
|
+
readonly type: "uint8";
|
|
1143
|
+
}, {
|
|
1144
|
+
readonly internalType: "bytes32";
|
|
1145
|
+
readonly name: "r";
|
|
1146
|
+
readonly type: "bytes32";
|
|
1147
|
+
}, {
|
|
1148
|
+
readonly internalType: "bytes32";
|
|
1149
|
+
readonly name: "s";
|
|
1150
|
+
readonly type: "bytes32";
|
|
1151
|
+
}];
|
|
1152
|
+
readonly name: "permit";
|
|
1498
1153
|
readonly outputs: readonly [];
|
|
1499
|
-
readonly stateMutability:
|
|
1500
|
-
readonly type:
|
|
1501
|
-
|
|
1502
|
-
{
|
|
1154
|
+
readonly stateMutability: "nonpayable";
|
|
1155
|
+
readonly type: "function";
|
|
1156
|
+
}, {
|
|
1503
1157
|
readonly inputs: readonly [];
|
|
1504
|
-
readonly name:
|
|
1505
|
-
readonly outputs: readonly [
|
|
1506
|
-
|
|
1507
|
-
readonly
|
|
1508
|
-
readonly
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
readonly
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
readonly
|
|
1521
|
-
readonly
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
readonly
|
|
1526
|
-
|
|
1527
|
-
readonly
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
readonly
|
|
1532
|
-
readonly
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
readonly internalType:
|
|
1536
|
-
readonly name:
|
|
1537
|
-
readonly type:
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
readonly
|
|
1541
|
-
readonly
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
readonly internalType:
|
|
1551
|
-
readonly name:
|
|
1552
|
-
readonly type:
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
readonly
|
|
1566
|
-
|
|
1567
|
-
readonly
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
readonly
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
readonly
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
readonly
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
readonly
|
|
1600
|
-
|
|
1601
|
-
readonly
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
readonly
|
|
1606
|
-
readonly
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
readonly internalType:
|
|
1633
|
-
readonly name:
|
|
1634
|
-
readonly type:
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
readonly
|
|
1638
|
-
readonly
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
readonly internalType: 'bytes';
|
|
1648
|
-
readonly name: 'composeMsg';
|
|
1649
|
-
readonly type: 'bytes';
|
|
1650
|
-
},
|
|
1651
|
-
{
|
|
1652
|
-
readonly internalType: 'bytes';
|
|
1653
|
-
readonly name: 'oftCmd';
|
|
1654
|
-
readonly type: 'bytes';
|
|
1655
|
-
},
|
|
1656
|
-
];
|
|
1657
|
-
readonly internalType: 'struct SendParam';
|
|
1658
|
-
readonly name: '_sendParam';
|
|
1659
|
-
readonly type: 'tuple';
|
|
1660
|
-
},
|
|
1661
|
-
{
|
|
1662
|
-
readonly internalType: 'bool';
|
|
1663
|
-
readonly name: '_payInLzToken';
|
|
1664
|
-
readonly type: 'bool';
|
|
1665
|
-
},
|
|
1666
|
-
];
|
|
1667
|
-
readonly name: 'quoteSend';
|
|
1668
|
-
readonly outputs: readonly [
|
|
1669
|
-
{
|
|
1670
|
-
readonly components: readonly [
|
|
1671
|
-
{
|
|
1672
|
-
readonly internalType: 'uint256';
|
|
1673
|
-
readonly name: 'nativeFee';
|
|
1674
|
-
readonly type: 'uint256';
|
|
1675
|
-
},
|
|
1676
|
-
{
|
|
1677
|
-
readonly internalType: 'uint256';
|
|
1678
|
-
readonly name: 'lzTokenFee';
|
|
1679
|
-
readonly type: 'uint256';
|
|
1680
|
-
},
|
|
1681
|
-
];
|
|
1682
|
-
readonly internalType: 'struct MessagingFee';
|
|
1683
|
-
readonly name: 'msgFee';
|
|
1684
|
-
readonly type: 'tuple';
|
|
1685
|
-
},
|
|
1686
|
-
];
|
|
1687
|
-
readonly stateMutability: 'view';
|
|
1688
|
-
readonly type: 'function';
|
|
1689
|
-
},
|
|
1690
|
-
{
|
|
1158
|
+
readonly name: "preCrime";
|
|
1159
|
+
readonly outputs: readonly [{
|
|
1160
|
+
readonly internalType: "address";
|
|
1161
|
+
readonly name: "";
|
|
1162
|
+
readonly type: "address";
|
|
1163
|
+
}];
|
|
1164
|
+
readonly stateMutability: "view";
|
|
1165
|
+
readonly type: "function";
|
|
1166
|
+
}, {
|
|
1167
|
+
readonly inputs: readonly [{
|
|
1168
|
+
readonly components: readonly [{
|
|
1169
|
+
readonly internalType: "uint32";
|
|
1170
|
+
readonly name: "dstEid";
|
|
1171
|
+
readonly type: "uint32";
|
|
1172
|
+
}, {
|
|
1173
|
+
readonly internalType: "bytes32";
|
|
1174
|
+
readonly name: "to";
|
|
1175
|
+
readonly type: "bytes32";
|
|
1176
|
+
}, {
|
|
1177
|
+
readonly internalType: "uint256";
|
|
1178
|
+
readonly name: "amountLD";
|
|
1179
|
+
readonly type: "uint256";
|
|
1180
|
+
}, {
|
|
1181
|
+
readonly internalType: "uint256";
|
|
1182
|
+
readonly name: "minAmountLD";
|
|
1183
|
+
readonly type: "uint256";
|
|
1184
|
+
}, {
|
|
1185
|
+
readonly internalType: "bytes";
|
|
1186
|
+
readonly name: "extraOptions";
|
|
1187
|
+
readonly type: "bytes";
|
|
1188
|
+
}, {
|
|
1189
|
+
readonly internalType: "bytes";
|
|
1190
|
+
readonly name: "composeMsg";
|
|
1191
|
+
readonly type: "bytes";
|
|
1192
|
+
}, {
|
|
1193
|
+
readonly internalType: "bytes";
|
|
1194
|
+
readonly name: "oftCmd";
|
|
1195
|
+
readonly type: "bytes";
|
|
1196
|
+
}];
|
|
1197
|
+
readonly internalType: "struct SendParam";
|
|
1198
|
+
readonly name: "_sendParam";
|
|
1199
|
+
readonly type: "tuple";
|
|
1200
|
+
}];
|
|
1201
|
+
readonly name: "quoteOFT";
|
|
1202
|
+
readonly outputs: readonly [{
|
|
1203
|
+
readonly components: readonly [{
|
|
1204
|
+
readonly internalType: "uint256";
|
|
1205
|
+
readonly name: "minAmountLD";
|
|
1206
|
+
readonly type: "uint256";
|
|
1207
|
+
}, {
|
|
1208
|
+
readonly internalType: "uint256";
|
|
1209
|
+
readonly name: "maxAmountLD";
|
|
1210
|
+
readonly type: "uint256";
|
|
1211
|
+
}];
|
|
1212
|
+
readonly internalType: "struct OFTLimit";
|
|
1213
|
+
readonly name: "oftLimit";
|
|
1214
|
+
readonly type: "tuple";
|
|
1215
|
+
}, {
|
|
1216
|
+
readonly components: readonly [{
|
|
1217
|
+
readonly internalType: "int256";
|
|
1218
|
+
readonly name: "feeAmountLD";
|
|
1219
|
+
readonly type: "int256";
|
|
1220
|
+
}, {
|
|
1221
|
+
readonly internalType: "string";
|
|
1222
|
+
readonly name: "description";
|
|
1223
|
+
readonly type: "string";
|
|
1224
|
+
}];
|
|
1225
|
+
readonly internalType: "struct OFTFeeDetail[]";
|
|
1226
|
+
readonly name: "oftFeeDetails";
|
|
1227
|
+
readonly type: "tuple[]";
|
|
1228
|
+
}, {
|
|
1229
|
+
readonly components: readonly [{
|
|
1230
|
+
readonly internalType: "uint256";
|
|
1231
|
+
readonly name: "amountSentLD";
|
|
1232
|
+
readonly type: "uint256";
|
|
1233
|
+
}, {
|
|
1234
|
+
readonly internalType: "uint256";
|
|
1235
|
+
readonly name: "amountReceivedLD";
|
|
1236
|
+
readonly type: "uint256";
|
|
1237
|
+
}];
|
|
1238
|
+
readonly internalType: "struct OFTReceipt";
|
|
1239
|
+
readonly name: "oftReceipt";
|
|
1240
|
+
readonly type: "tuple";
|
|
1241
|
+
}];
|
|
1242
|
+
readonly stateMutability: "view";
|
|
1243
|
+
readonly type: "function";
|
|
1244
|
+
}, {
|
|
1245
|
+
readonly inputs: readonly [{
|
|
1246
|
+
readonly components: readonly [{
|
|
1247
|
+
readonly internalType: "uint32";
|
|
1248
|
+
readonly name: "dstEid";
|
|
1249
|
+
readonly type: "uint32";
|
|
1250
|
+
}, {
|
|
1251
|
+
readonly internalType: "bytes32";
|
|
1252
|
+
readonly name: "to";
|
|
1253
|
+
readonly type: "bytes32";
|
|
1254
|
+
}, {
|
|
1255
|
+
readonly internalType: "uint256";
|
|
1256
|
+
readonly name: "amountLD";
|
|
1257
|
+
readonly type: "uint256";
|
|
1258
|
+
}, {
|
|
1259
|
+
readonly internalType: "uint256";
|
|
1260
|
+
readonly name: "minAmountLD";
|
|
1261
|
+
readonly type: "uint256";
|
|
1262
|
+
}, {
|
|
1263
|
+
readonly internalType: "bytes";
|
|
1264
|
+
readonly name: "extraOptions";
|
|
1265
|
+
readonly type: "bytes";
|
|
1266
|
+
}, {
|
|
1267
|
+
readonly internalType: "bytes";
|
|
1268
|
+
readonly name: "composeMsg";
|
|
1269
|
+
readonly type: "bytes";
|
|
1270
|
+
}, {
|
|
1271
|
+
readonly internalType: "bytes";
|
|
1272
|
+
readonly name: "oftCmd";
|
|
1273
|
+
readonly type: "bytes";
|
|
1274
|
+
}];
|
|
1275
|
+
readonly internalType: "struct SendParam";
|
|
1276
|
+
readonly name: "_sendParam";
|
|
1277
|
+
readonly type: "tuple";
|
|
1278
|
+
}, {
|
|
1279
|
+
readonly internalType: "bool";
|
|
1280
|
+
readonly name: "_payInLzToken";
|
|
1281
|
+
readonly type: "bool";
|
|
1282
|
+
}];
|
|
1283
|
+
readonly name: "quoteSend";
|
|
1284
|
+
readonly outputs: readonly [{
|
|
1285
|
+
readonly components: readonly [{
|
|
1286
|
+
readonly internalType: "uint256";
|
|
1287
|
+
readonly name: "nativeFee";
|
|
1288
|
+
readonly type: "uint256";
|
|
1289
|
+
}, {
|
|
1290
|
+
readonly internalType: "uint256";
|
|
1291
|
+
readonly name: "lzTokenFee";
|
|
1292
|
+
readonly type: "uint256";
|
|
1293
|
+
}];
|
|
1294
|
+
readonly internalType: "struct MessagingFee";
|
|
1295
|
+
readonly name: "msgFee";
|
|
1296
|
+
readonly type: "tuple";
|
|
1297
|
+
}];
|
|
1298
|
+
readonly stateMutability: "view";
|
|
1299
|
+
readonly type: "function";
|
|
1300
|
+
}, {
|
|
1691
1301
|
readonly inputs: readonly [];
|
|
1692
|
-
readonly name:
|
|
1302
|
+
readonly name: "renounceOwnership";
|
|
1693
1303
|
readonly outputs: readonly [];
|
|
1694
|
-
readonly stateMutability:
|
|
1695
|
-
readonly type:
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
readonly
|
|
1704
|
-
readonly
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
readonly internalType:
|
|
1708
|
-
readonly name:
|
|
1709
|
-
readonly type:
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
readonly
|
|
1713
|
-
readonly
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
readonly
|
|
1718
|
-
|
|
1719
|
-
readonly
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
readonly
|
|
1724
|
-
readonly
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
readonly internalType:
|
|
1733
|
-
readonly name:
|
|
1734
|
-
readonly type:
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
readonly
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
readonly
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
readonly
|
|
1770
|
-
readonly
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
readonly
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
readonly type: 'tuple';
|
|
1799
|
-
},
|
|
1800
|
-
{
|
|
1801
|
-
readonly components: readonly [
|
|
1802
|
-
{
|
|
1803
|
-
readonly internalType: 'uint256';
|
|
1804
|
-
readonly name: 'amountSentLD';
|
|
1805
|
-
readonly type: 'uint256';
|
|
1806
|
-
},
|
|
1807
|
-
{
|
|
1808
|
-
readonly internalType: 'uint256';
|
|
1809
|
-
readonly name: 'amountReceivedLD';
|
|
1810
|
-
readonly type: 'uint256';
|
|
1811
|
-
},
|
|
1812
|
-
];
|
|
1813
|
-
readonly internalType: 'struct OFTReceipt';
|
|
1814
|
-
readonly name: 'oftReceipt';
|
|
1815
|
-
readonly type: 'tuple';
|
|
1816
|
-
},
|
|
1817
|
-
];
|
|
1818
|
-
readonly stateMutability: 'payable';
|
|
1819
|
-
readonly type: 'function';
|
|
1820
|
-
},
|
|
1821
|
-
{
|
|
1822
|
-
readonly inputs: readonly [
|
|
1823
|
-
{
|
|
1824
|
-
readonly internalType: 'address';
|
|
1825
|
-
readonly name: '_delegate';
|
|
1826
|
-
readonly type: 'address';
|
|
1827
|
-
},
|
|
1828
|
-
];
|
|
1829
|
-
readonly name: 'setDelegate';
|
|
1304
|
+
readonly stateMutability: "nonpayable";
|
|
1305
|
+
readonly type: "function";
|
|
1306
|
+
}, {
|
|
1307
|
+
readonly inputs: readonly [{
|
|
1308
|
+
readonly components: readonly [{
|
|
1309
|
+
readonly internalType: "uint32";
|
|
1310
|
+
readonly name: "dstEid";
|
|
1311
|
+
readonly type: "uint32";
|
|
1312
|
+
}, {
|
|
1313
|
+
readonly internalType: "bytes32";
|
|
1314
|
+
readonly name: "to";
|
|
1315
|
+
readonly type: "bytes32";
|
|
1316
|
+
}, {
|
|
1317
|
+
readonly internalType: "uint256";
|
|
1318
|
+
readonly name: "amountLD";
|
|
1319
|
+
readonly type: "uint256";
|
|
1320
|
+
}, {
|
|
1321
|
+
readonly internalType: "uint256";
|
|
1322
|
+
readonly name: "minAmountLD";
|
|
1323
|
+
readonly type: "uint256";
|
|
1324
|
+
}, {
|
|
1325
|
+
readonly internalType: "bytes";
|
|
1326
|
+
readonly name: "extraOptions";
|
|
1327
|
+
readonly type: "bytes";
|
|
1328
|
+
}, {
|
|
1329
|
+
readonly internalType: "bytes";
|
|
1330
|
+
readonly name: "composeMsg";
|
|
1331
|
+
readonly type: "bytes";
|
|
1332
|
+
}, {
|
|
1333
|
+
readonly internalType: "bytes";
|
|
1334
|
+
readonly name: "oftCmd";
|
|
1335
|
+
readonly type: "bytes";
|
|
1336
|
+
}];
|
|
1337
|
+
readonly internalType: "struct SendParam";
|
|
1338
|
+
readonly name: "_sendParam";
|
|
1339
|
+
readonly type: "tuple";
|
|
1340
|
+
}, {
|
|
1341
|
+
readonly components: readonly [{
|
|
1342
|
+
readonly internalType: "uint256";
|
|
1343
|
+
readonly name: "nativeFee";
|
|
1344
|
+
readonly type: "uint256";
|
|
1345
|
+
}, {
|
|
1346
|
+
readonly internalType: "uint256";
|
|
1347
|
+
readonly name: "lzTokenFee";
|
|
1348
|
+
readonly type: "uint256";
|
|
1349
|
+
}];
|
|
1350
|
+
readonly internalType: "struct MessagingFee";
|
|
1351
|
+
readonly name: "_fee";
|
|
1352
|
+
readonly type: "tuple";
|
|
1353
|
+
}, {
|
|
1354
|
+
readonly internalType: "address";
|
|
1355
|
+
readonly name: "_refundAddress";
|
|
1356
|
+
readonly type: "address";
|
|
1357
|
+
}];
|
|
1358
|
+
readonly name: "send";
|
|
1359
|
+
readonly outputs: readonly [{
|
|
1360
|
+
readonly components: readonly [{
|
|
1361
|
+
readonly internalType: "bytes32";
|
|
1362
|
+
readonly name: "guid";
|
|
1363
|
+
readonly type: "bytes32";
|
|
1364
|
+
}, {
|
|
1365
|
+
readonly internalType: "uint64";
|
|
1366
|
+
readonly name: "nonce";
|
|
1367
|
+
readonly type: "uint64";
|
|
1368
|
+
}, {
|
|
1369
|
+
readonly components: readonly [{
|
|
1370
|
+
readonly internalType: "uint256";
|
|
1371
|
+
readonly name: "nativeFee";
|
|
1372
|
+
readonly type: "uint256";
|
|
1373
|
+
}, {
|
|
1374
|
+
readonly internalType: "uint256";
|
|
1375
|
+
readonly name: "lzTokenFee";
|
|
1376
|
+
readonly type: "uint256";
|
|
1377
|
+
}];
|
|
1378
|
+
readonly internalType: "struct MessagingFee";
|
|
1379
|
+
readonly name: "fee";
|
|
1380
|
+
readonly type: "tuple";
|
|
1381
|
+
}];
|
|
1382
|
+
readonly internalType: "struct MessagingReceipt";
|
|
1383
|
+
readonly name: "msgReceipt";
|
|
1384
|
+
readonly type: "tuple";
|
|
1385
|
+
}, {
|
|
1386
|
+
readonly components: readonly [{
|
|
1387
|
+
readonly internalType: "uint256";
|
|
1388
|
+
readonly name: "amountSentLD";
|
|
1389
|
+
readonly type: "uint256";
|
|
1390
|
+
}, {
|
|
1391
|
+
readonly internalType: "uint256";
|
|
1392
|
+
readonly name: "amountReceivedLD";
|
|
1393
|
+
readonly type: "uint256";
|
|
1394
|
+
}];
|
|
1395
|
+
readonly internalType: "struct OFTReceipt";
|
|
1396
|
+
readonly name: "oftReceipt";
|
|
1397
|
+
readonly type: "tuple";
|
|
1398
|
+
}];
|
|
1399
|
+
readonly stateMutability: "payable";
|
|
1400
|
+
readonly type: "function";
|
|
1401
|
+
}, {
|
|
1402
|
+
readonly inputs: readonly [{
|
|
1403
|
+
readonly internalType: "address";
|
|
1404
|
+
readonly name: "_delegate";
|
|
1405
|
+
readonly type: "address";
|
|
1406
|
+
}];
|
|
1407
|
+
readonly name: "setDelegate";
|
|
1830
1408
|
readonly outputs: readonly [];
|
|
1831
|
-
readonly stateMutability:
|
|
1832
|
-
readonly type:
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
readonly
|
|
1841
|
-
readonly
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
readonly internalType:
|
|
1845
|
-
readonly name:
|
|
1846
|
-
readonly type:
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
];
|
|
1854
|
-
readonly internalType: 'struct EnforcedOptionParam[]';
|
|
1855
|
-
readonly name: '_enforcedOptions';
|
|
1856
|
-
readonly type: 'tuple[]';
|
|
1857
|
-
},
|
|
1858
|
-
];
|
|
1859
|
-
readonly name: 'setEnforcedOptions';
|
|
1409
|
+
readonly stateMutability: "nonpayable";
|
|
1410
|
+
readonly type: "function";
|
|
1411
|
+
}, {
|
|
1412
|
+
readonly inputs: readonly [{
|
|
1413
|
+
readonly components: readonly [{
|
|
1414
|
+
readonly internalType: "uint32";
|
|
1415
|
+
readonly name: "eid";
|
|
1416
|
+
readonly type: "uint32";
|
|
1417
|
+
}, {
|
|
1418
|
+
readonly internalType: "uint16";
|
|
1419
|
+
readonly name: "msgType";
|
|
1420
|
+
readonly type: "uint16";
|
|
1421
|
+
}, {
|
|
1422
|
+
readonly internalType: "bytes";
|
|
1423
|
+
readonly name: "options";
|
|
1424
|
+
readonly type: "bytes";
|
|
1425
|
+
}];
|
|
1426
|
+
readonly internalType: "struct EnforcedOptionParam[]";
|
|
1427
|
+
readonly name: "_enforcedOptions";
|
|
1428
|
+
readonly type: "tuple[]";
|
|
1429
|
+
}];
|
|
1430
|
+
readonly name: "setEnforcedOptions";
|
|
1860
1431
|
readonly outputs: readonly [];
|
|
1861
|
-
readonly stateMutability:
|
|
1862
|
-
readonly type:
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
readonly
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
},
|
|
1871
|
-
];
|
|
1872
|
-
readonly name: 'setMsgInspector';
|
|
1432
|
+
readonly stateMutability: "nonpayable";
|
|
1433
|
+
readonly type: "function";
|
|
1434
|
+
}, {
|
|
1435
|
+
readonly inputs: readonly [{
|
|
1436
|
+
readonly internalType: "address";
|
|
1437
|
+
readonly name: "_msgInspector";
|
|
1438
|
+
readonly type: "address";
|
|
1439
|
+
}];
|
|
1440
|
+
readonly name: "setMsgInspector";
|
|
1873
1441
|
readonly outputs: readonly [];
|
|
1874
|
-
readonly stateMutability:
|
|
1875
|
-
readonly type:
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
readonly
|
|
1881
|
-
|
|
1882
|
-
readonly
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
readonly type: 'bytes32';
|
|
1888
|
-
},
|
|
1889
|
-
];
|
|
1890
|
-
readonly name: 'setPeer';
|
|
1442
|
+
readonly stateMutability: "nonpayable";
|
|
1443
|
+
readonly type: "function";
|
|
1444
|
+
}, {
|
|
1445
|
+
readonly inputs: readonly [{
|
|
1446
|
+
readonly internalType: "uint32";
|
|
1447
|
+
readonly name: "_eid";
|
|
1448
|
+
readonly type: "uint32";
|
|
1449
|
+
}, {
|
|
1450
|
+
readonly internalType: "bytes32";
|
|
1451
|
+
readonly name: "_peer";
|
|
1452
|
+
readonly type: "bytes32";
|
|
1453
|
+
}];
|
|
1454
|
+
readonly name: "setPeer";
|
|
1891
1455
|
readonly outputs: readonly [];
|
|
1892
|
-
readonly stateMutability:
|
|
1893
|
-
readonly type:
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
readonly
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
},
|
|
1902
|
-
];
|
|
1903
|
-
readonly name: 'setPreCrime';
|
|
1456
|
+
readonly stateMutability: "nonpayable";
|
|
1457
|
+
readonly type: "function";
|
|
1458
|
+
}, {
|
|
1459
|
+
readonly inputs: readonly [{
|
|
1460
|
+
readonly internalType: "address";
|
|
1461
|
+
readonly name: "_preCrime";
|
|
1462
|
+
readonly type: "address";
|
|
1463
|
+
}];
|
|
1464
|
+
readonly name: "setPreCrime";
|
|
1904
1465
|
readonly outputs: readonly [];
|
|
1905
|
-
readonly stateMutability:
|
|
1906
|
-
readonly type:
|
|
1907
|
-
|
|
1908
|
-
{
|
|
1466
|
+
readonly stateMutability: "nonpayable";
|
|
1467
|
+
readonly type: "function";
|
|
1468
|
+
}, {
|
|
1909
1469
|
readonly inputs: readonly [];
|
|
1910
|
-
readonly name:
|
|
1911
|
-
readonly outputs: readonly [
|
|
1912
|
-
|
|
1913
|
-
readonly
|
|
1914
|
-
readonly
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
readonly type: 'function';
|
|
1920
|
-
},
|
|
1921
|
-
{
|
|
1470
|
+
readonly name: "sharedDecimals";
|
|
1471
|
+
readonly outputs: readonly [{
|
|
1472
|
+
readonly internalType: "uint8";
|
|
1473
|
+
readonly name: "";
|
|
1474
|
+
readonly type: "uint8";
|
|
1475
|
+
}];
|
|
1476
|
+
readonly stateMutability: "pure";
|
|
1477
|
+
readonly type: "function";
|
|
1478
|
+
}, {
|
|
1922
1479
|
readonly inputs: readonly [];
|
|
1923
|
-
readonly name:
|
|
1924
|
-
readonly outputs: readonly [
|
|
1925
|
-
|
|
1926
|
-
readonly
|
|
1927
|
-
readonly
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
readonly type: 'function';
|
|
1933
|
-
},
|
|
1934
|
-
{
|
|
1480
|
+
readonly name: "symbol";
|
|
1481
|
+
readonly outputs: readonly [{
|
|
1482
|
+
readonly internalType: "string";
|
|
1483
|
+
readonly name: "";
|
|
1484
|
+
readonly type: "string";
|
|
1485
|
+
}];
|
|
1486
|
+
readonly stateMutability: "view";
|
|
1487
|
+
readonly type: "function";
|
|
1488
|
+
}, {
|
|
1935
1489
|
readonly inputs: readonly [];
|
|
1936
|
-
readonly name:
|
|
1937
|
-
readonly outputs: readonly [
|
|
1938
|
-
|
|
1939
|
-
readonly
|
|
1940
|
-
readonly
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
readonly type: 'function';
|
|
1946
|
-
},
|
|
1947
|
-
{
|
|
1490
|
+
readonly name: "token";
|
|
1491
|
+
readonly outputs: readonly [{
|
|
1492
|
+
readonly internalType: "address";
|
|
1493
|
+
readonly name: "";
|
|
1494
|
+
readonly type: "address";
|
|
1495
|
+
}];
|
|
1496
|
+
readonly stateMutability: "view";
|
|
1497
|
+
readonly type: "function";
|
|
1498
|
+
}, {
|
|
1948
1499
|
readonly inputs: readonly [];
|
|
1949
|
-
readonly name:
|
|
1950
|
-
readonly outputs: readonly [
|
|
1951
|
-
|
|
1952
|
-
readonly
|
|
1953
|
-
readonly
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
readonly
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
readonly internalType:
|
|
1964
|
-
readonly name:
|
|
1965
|
-
readonly type:
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
readonly
|
|
1970
|
-
readonly
|
|
1971
|
-
|
|
1972
|
-
];
|
|
1973
|
-
readonly
|
|
1974
|
-
readonly
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
readonly
|
|
1978
|
-
readonly
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
readonly
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
readonly
|
|
1993
|
-
readonly
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
readonly
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
readonly
|
|
2004
|
-
{
|
|
2005
|
-
readonly internalType: 'bool';
|
|
2006
|
-
readonly name: '';
|
|
2007
|
-
readonly type: 'bool';
|
|
2008
|
-
},
|
|
2009
|
-
];
|
|
2010
|
-
readonly stateMutability: 'nonpayable';
|
|
2011
|
-
readonly type: 'function';
|
|
2012
|
-
},
|
|
2013
|
-
{
|
|
2014
|
-
readonly inputs: readonly [
|
|
2015
|
-
{
|
|
2016
|
-
readonly internalType: 'address';
|
|
2017
|
-
readonly name: 'newOwner';
|
|
2018
|
-
readonly type: 'address';
|
|
2019
|
-
},
|
|
2020
|
-
];
|
|
2021
|
-
readonly name: 'transferOwnership';
|
|
1500
|
+
readonly name: "totalSupply";
|
|
1501
|
+
readonly outputs: readonly [{
|
|
1502
|
+
readonly internalType: "uint256";
|
|
1503
|
+
readonly name: "";
|
|
1504
|
+
readonly type: "uint256";
|
|
1505
|
+
}];
|
|
1506
|
+
readonly stateMutability: "view";
|
|
1507
|
+
readonly type: "function";
|
|
1508
|
+
}, {
|
|
1509
|
+
readonly inputs: readonly [{
|
|
1510
|
+
readonly internalType: "address";
|
|
1511
|
+
readonly name: "to";
|
|
1512
|
+
readonly type: "address";
|
|
1513
|
+
}, {
|
|
1514
|
+
readonly internalType: "uint256";
|
|
1515
|
+
readonly name: "amount";
|
|
1516
|
+
readonly type: "uint256";
|
|
1517
|
+
}];
|
|
1518
|
+
readonly name: "transfer";
|
|
1519
|
+
readonly outputs: readonly [{
|
|
1520
|
+
readonly internalType: "bool";
|
|
1521
|
+
readonly name: "";
|
|
1522
|
+
readonly type: "bool";
|
|
1523
|
+
}];
|
|
1524
|
+
readonly stateMutability: "nonpayable";
|
|
1525
|
+
readonly type: "function";
|
|
1526
|
+
}, {
|
|
1527
|
+
readonly inputs: readonly [{
|
|
1528
|
+
readonly internalType: "address";
|
|
1529
|
+
readonly name: "from";
|
|
1530
|
+
readonly type: "address";
|
|
1531
|
+
}, {
|
|
1532
|
+
readonly internalType: "address";
|
|
1533
|
+
readonly name: "to";
|
|
1534
|
+
readonly type: "address";
|
|
1535
|
+
}, {
|
|
1536
|
+
readonly internalType: "uint256";
|
|
1537
|
+
readonly name: "amount";
|
|
1538
|
+
readonly type: "uint256";
|
|
1539
|
+
}];
|
|
1540
|
+
readonly name: "transferFrom";
|
|
1541
|
+
readonly outputs: readonly [{
|
|
1542
|
+
readonly internalType: "bool";
|
|
1543
|
+
readonly name: "";
|
|
1544
|
+
readonly type: "bool";
|
|
1545
|
+
}];
|
|
1546
|
+
readonly stateMutability: "nonpayable";
|
|
1547
|
+
readonly type: "function";
|
|
1548
|
+
}, {
|
|
1549
|
+
readonly inputs: readonly [{
|
|
1550
|
+
readonly internalType: "address";
|
|
1551
|
+
readonly name: "newOwner";
|
|
1552
|
+
readonly type: "address";
|
|
1553
|
+
}];
|
|
1554
|
+
readonly name: "transferOwnership";
|
|
2022
1555
|
readonly outputs: readonly [];
|
|
2023
|
-
readonly stateMutability:
|
|
2024
|
-
readonly type:
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
readonly
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
},
|
|
2033
|
-
];
|
|
2034
|
-
readonly name: 'unlockTokens';
|
|
1556
|
+
readonly stateMutability: "nonpayable";
|
|
1557
|
+
readonly type: "function";
|
|
1558
|
+
}, {
|
|
1559
|
+
readonly inputs: readonly [{
|
|
1560
|
+
readonly internalType: "address";
|
|
1561
|
+
readonly name: "holderAddr";
|
|
1562
|
+
readonly type: "address";
|
|
1563
|
+
}];
|
|
1564
|
+
readonly name: "unlockTokens";
|
|
2035
1565
|
readonly outputs: readonly [];
|
|
2036
|
-
readonly stateMutability:
|
|
2037
|
-
readonly type:
|
|
2038
|
-
|
|
2039
|
-
];
|
|
1566
|
+
readonly stateMutability: "nonpayable";
|
|
1567
|
+
readonly type: "function";
|
|
1568
|
+
}];
|