@hyperlane-xyz/sdk 1.5.1 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/consts/agentStartBlocks.d.ts +3 -0
- package/dist/consts/agentStartBlocks.d.ts.map +1 -0
- package/dist/consts/agentStartBlocks.js +28 -0
- package/dist/consts/agentStartBlocks.js.map +1 -0
- package/dist/consts/chainMetadata.d.ts.map +1 -1
- package/dist/consts/chainMetadata.js +3 -1
- package/dist/consts/chainMetadata.js.map +1 -1
- package/dist/consts/chains.d.ts.map +1 -1
- package/dist/consts/chains.js +2 -0
- package/dist/consts/chains.js.map +1 -1
- package/dist/consts/environments/index.d.ts +23 -351
- package/dist/consts/environments/index.d.ts.map +1 -1
- package/dist/consts/environments/index.js +1 -6
- package/dist/consts/environments/index.js.map +1 -1
- package/dist/consts/environments/mainnet.json +17 -0
- package/dist/consts/environments/testnet.json +35 -9
- package/dist/consts/multisigIsm.d.ts.map +1 -1
- package/dist/consts/multisigIsm.js +18 -0
- package/dist/consts/multisigIsm.js.map +1 -1
- package/dist/contracts/contracts.d.ts +7 -2
- package/dist/contracts/contracts.d.ts.map +1 -1
- package/dist/contracts/contracts.js +31 -7
- package/dist/contracts/contracts.js.map +1 -1
- package/dist/core/HyperlaneCoreChecker.js +1 -1
- package/dist/core/HyperlaneCoreChecker.js.map +1 -1
- package/dist/core/types.d.ts +1 -1
- package/dist/core/types.d.ts.map +1 -1
- package/dist/deploy/HyperlaneAppChecker.d.ts +1 -0
- package/dist/deploy/HyperlaneAppChecker.d.ts.map +1 -1
- package/dist/deploy/HyperlaneAppChecker.js +25 -2
- package/dist/deploy/HyperlaneAppChecker.js.map +1 -1
- package/dist/deploy/HyperlaneDeployer.d.ts.map +1 -1
- package/dist/deploy/HyperlaneDeployer.js +3 -1
- package/dist/deploy/HyperlaneDeployer.js.map +1 -1
- package/dist/gas/HyperlaneIgpChecker.d.ts.map +1 -1
- package/dist/gas/HyperlaneIgpChecker.js +15 -5
- package/dist/gas/HyperlaneIgpChecker.js.map +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -5
- package/dist/index.js.map +1 -1
- package/dist/ism/HyperlaneIsmFactory.d.ts.map +1 -1
- package/dist/ism/HyperlaneIsmFactory.js +6 -0
- package/dist/ism/HyperlaneIsmFactory.js.map +1 -1
- package/dist/metadata/ChainMetadataManager.d.ts +10 -0
- package/dist/metadata/ChainMetadataManager.d.ts.map +1 -1
- package/dist/metadata/ChainMetadataManager.js +13 -0
- package/dist/metadata/ChainMetadataManager.js.map +1 -1
- package/dist/middleware/account/InterchainAccount.d.ts.map +1 -1
- package/dist/middleware/account/InterchainAccount.js +4 -1
- package/dist/middleware/account/InterchainAccount.js.map +1 -1
- package/dist/router/HyperlaneRouterChecker.d.ts +5 -1
- package/dist/router/HyperlaneRouterChecker.d.ts.map +1 -1
- package/dist/router/HyperlaneRouterChecker.js +41 -6
- package/dist/router/HyperlaneRouterChecker.js.map +1 -1
- package/dist/router/RouterApps.d.ts +7 -1
- package/dist/router/RouterApps.d.ts.map +1 -1
- package/dist/router/RouterApps.js +17 -0
- package/dist/router/RouterApps.js.map +1 -1
- package/dist/router/types.d.ts +12 -1
- package/dist/router/types.d.ts.map +1 -1
- package/dist/router/types.js +5 -1
- package/dist/router/types.js.map +1 -1
- package/package.json +5 -5
- package/dist/consts/environments/testnet-sealevel.json +0 -19
|
@@ -58,6 +58,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
58
58
|
interchainAccountRouter: string;
|
|
59
59
|
merkleRootMultisigIsmFactory: string;
|
|
60
60
|
messageIdMultisigIsmFactory: string;
|
|
61
|
+
timelockController: string;
|
|
61
62
|
};
|
|
62
63
|
fuji: {
|
|
63
64
|
storageGasOracle: string;
|
|
@@ -75,6 +76,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
75
76
|
interchainAccountRouter: string;
|
|
76
77
|
merkleRootMultisigIsmFactory: string;
|
|
77
78
|
messageIdMultisigIsmFactory: string;
|
|
79
|
+
timelockController: string;
|
|
78
80
|
};
|
|
79
81
|
mumbai: {
|
|
80
82
|
storageGasOracle: string;
|
|
@@ -92,6 +94,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
92
94
|
interchainAccountRouter: string;
|
|
93
95
|
merkleRootMultisigIsmFactory: string;
|
|
94
96
|
messageIdMultisigIsmFactory: string;
|
|
97
|
+
timelockController: string;
|
|
95
98
|
};
|
|
96
99
|
bsctestnet: {
|
|
97
100
|
storageGasOracle: string;
|
|
@@ -109,6 +112,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
109
112
|
interchainAccountRouter: string;
|
|
110
113
|
merkleRootMultisigIsmFactory: string;
|
|
111
114
|
messageIdMultisigIsmFactory: string;
|
|
115
|
+
timelockController: string;
|
|
112
116
|
};
|
|
113
117
|
goerli: {
|
|
114
118
|
storageGasOracle: string;
|
|
@@ -126,6 +130,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
126
130
|
interchainAccountRouter: string;
|
|
127
131
|
merkleRootMultisigIsmFactory: string;
|
|
128
132
|
messageIdMultisigIsmFactory: string;
|
|
133
|
+
timelockController: string;
|
|
129
134
|
};
|
|
130
135
|
moonbasealpha: {
|
|
131
136
|
storageGasOracle: string;
|
|
@@ -142,6 +147,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
142
147
|
interchainAccountRouter: string;
|
|
143
148
|
merkleRootMultisigIsmFactory: string;
|
|
144
149
|
messageIdMultisigIsmFactory: string;
|
|
150
|
+
timelockController: string;
|
|
145
151
|
};
|
|
146
152
|
optimismgoerli: {
|
|
147
153
|
storageGasOracle: string;
|
|
@@ -159,6 +165,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
159
165
|
interchainAccountRouter: string;
|
|
160
166
|
merkleRootMultisigIsmFactory: string;
|
|
161
167
|
messageIdMultisigIsmFactory: string;
|
|
168
|
+
timelockController: string;
|
|
162
169
|
};
|
|
163
170
|
arbitrumgoerli: {
|
|
164
171
|
storageGasOracle: string;
|
|
@@ -176,6 +183,7 @@ export declare const hyperlaneEnvironments: {
|
|
|
176
183
|
interchainAccountRouter: string;
|
|
177
184
|
merkleRootMultisigIsmFactory: string;
|
|
178
185
|
messageIdMultisigIsmFactory: string;
|
|
186
|
+
timelockController: string;
|
|
179
187
|
};
|
|
180
188
|
sepolia: {
|
|
181
189
|
storageGasOracle: string;
|
|
@@ -193,168 +201,8 @@ export declare const hyperlaneEnvironments: {
|
|
|
193
201
|
interchainAccountRouter: string;
|
|
194
202
|
merkleRootMultisigIsmFactory: string;
|
|
195
203
|
messageIdMultisigIsmFactory: string;
|
|
196
|
-
};
|
|
197
|
-
};
|
|
198
|
-
mainnet: {
|
|
199
|
-
celo: {
|
|
200
|
-
storageGasOracle: string;
|
|
201
|
-
validatorAnnounce: string;
|
|
202
|
-
proxyAdmin: string;
|
|
203
|
-
mailbox: string;
|
|
204
|
-
interchainGasPaymaster: string;
|
|
205
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
206
|
-
multisigIsm: string;
|
|
207
|
-
testRecipient: string;
|
|
208
|
-
interchainAccountIsm: string;
|
|
209
|
-
aggregationIsmFactory: string;
|
|
210
|
-
routingIsmFactory: string;
|
|
211
|
-
interchainQueryRouter: string;
|
|
212
|
-
interchainAccountRouter: string;
|
|
213
|
-
merkleRootMultisigIsmFactory: string;
|
|
214
|
-
messageIdMultisigIsmFactory: string;
|
|
215
|
-
};
|
|
216
|
-
ethereum: {
|
|
217
|
-
storageGasOracle: string;
|
|
218
|
-
validatorAnnounce: string;
|
|
219
|
-
proxyAdmin: string;
|
|
220
|
-
mailbox: string;
|
|
221
|
-
interchainGasPaymaster: string;
|
|
222
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
223
|
-
multisigIsm: string;
|
|
224
|
-
testRecipient: string;
|
|
225
|
-
interchainAccountIsm: string;
|
|
226
|
-
aggregationIsmFactory: string;
|
|
227
|
-
routingIsmFactory: string;
|
|
228
|
-
interchainQueryRouter: string;
|
|
229
|
-
interchainAccountRouter: string;
|
|
230
|
-
merkleRootMultisigIsmFactory: string;
|
|
231
|
-
messageIdMultisigIsmFactory: string;
|
|
232
|
-
};
|
|
233
|
-
avalanche: {
|
|
234
|
-
storageGasOracle: string;
|
|
235
|
-
validatorAnnounce: string;
|
|
236
|
-
proxyAdmin: string;
|
|
237
|
-
mailbox: string;
|
|
238
|
-
interchainGasPaymaster: string;
|
|
239
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
240
|
-
multisigIsm: string;
|
|
241
|
-
testRecipient: string;
|
|
242
|
-
interchainAccountIsm: string;
|
|
243
|
-
aggregationIsmFactory: string;
|
|
244
|
-
routingIsmFactory: string;
|
|
245
|
-
interchainQueryRouter: string;
|
|
246
|
-
interchainAccountRouter: string;
|
|
247
|
-
merkleRootMultisigIsmFactory: string;
|
|
248
|
-
messageIdMultisigIsmFactory: string;
|
|
249
|
-
};
|
|
250
|
-
polygon: {
|
|
251
|
-
storageGasOracle: string;
|
|
252
|
-
validatorAnnounce: string;
|
|
253
|
-
proxyAdmin: string;
|
|
254
|
-
mailbox: string;
|
|
255
|
-
interchainGasPaymaster: string;
|
|
256
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
257
|
-
multisigIsm: string;
|
|
258
|
-
testRecipient: string;
|
|
259
|
-
interchainAccountIsm: string;
|
|
260
|
-
aggregationIsmFactory: string;
|
|
261
|
-
routingIsmFactory: string;
|
|
262
|
-
interchainQueryRouter: string;
|
|
263
|
-
interchainAccountRouter: string;
|
|
264
|
-
merkleRootMultisigIsmFactory: string;
|
|
265
|
-
messageIdMultisigIsmFactory: string;
|
|
266
|
-
};
|
|
267
|
-
bsc: {
|
|
268
|
-
storageGasOracle: string;
|
|
269
|
-
validatorAnnounce: string;
|
|
270
|
-
proxyAdmin: string;
|
|
271
|
-
mailbox: string;
|
|
272
|
-
interchainGasPaymaster: string;
|
|
273
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
274
|
-
multisigIsm: string;
|
|
275
|
-
testRecipient: string;
|
|
276
|
-
interchainAccountIsm: string;
|
|
277
|
-
aggregationIsmFactory: string;
|
|
278
|
-
routingIsmFactory: string;
|
|
279
|
-
interchainQueryRouter: string;
|
|
280
|
-
interchainAccountRouter: string;
|
|
281
|
-
merkleRootMultisigIsmFactory: string;
|
|
282
|
-
messageIdMultisigIsmFactory: string;
|
|
283
|
-
};
|
|
284
|
-
arbitrum: {
|
|
285
|
-
storageGasOracle: string;
|
|
286
|
-
validatorAnnounce: string;
|
|
287
|
-
proxyAdmin: string;
|
|
288
|
-
mailbox: string;
|
|
289
|
-
interchainGasPaymaster: string;
|
|
290
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
291
|
-
multisigIsm: string;
|
|
292
|
-
testRecipient: string;
|
|
293
|
-
interchainAccountIsm: string;
|
|
294
|
-
aggregationIsmFactory: string;
|
|
295
|
-
routingIsmFactory: string;
|
|
296
|
-
interchainQueryRouter: string;
|
|
297
|
-
interchainAccountRouter: string;
|
|
298
204
|
timelockController: string;
|
|
299
|
-
merkleRootMultisigIsmFactory: string;
|
|
300
|
-
messageIdMultisigIsmFactory: string;
|
|
301
|
-
};
|
|
302
|
-
optimism: {
|
|
303
|
-
storageGasOracle: string;
|
|
304
|
-
validatorAnnounce: string;
|
|
305
|
-
proxyAdmin: string;
|
|
306
|
-
mailbox: string;
|
|
307
|
-
interchainGasPaymaster: string;
|
|
308
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
309
|
-
multisigIsm: string;
|
|
310
|
-
testRecipient: string;
|
|
311
|
-
interchainAccountIsm: string;
|
|
312
|
-
aggregationIsmFactory: string;
|
|
313
|
-
routingIsmFactory: string;
|
|
314
|
-
interchainQueryRouter: string;
|
|
315
|
-
interchainAccountRouter: string;
|
|
316
|
-
merkleRootMultisigIsmFactory: string;
|
|
317
|
-
messageIdMultisigIsmFactory: string;
|
|
318
|
-
};
|
|
319
|
-
moonbeam: {
|
|
320
|
-
storageGasOracle: string;
|
|
321
|
-
validatorAnnounce: string;
|
|
322
|
-
proxyAdmin: string;
|
|
323
|
-
mailbox: string;
|
|
324
|
-
interchainGasPaymaster: string;
|
|
325
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
326
|
-
multisigIsm: string;
|
|
327
|
-
testRecipient: string;
|
|
328
|
-
interchainAccountIsm: string;
|
|
329
|
-
aggregationIsmFactory: string;
|
|
330
|
-
routingIsmFactory: string;
|
|
331
|
-
interchainQueryRouter: string;
|
|
332
|
-
interchainAccountRouter: string;
|
|
333
|
-
merkleRootMultisigIsmFactory: string;
|
|
334
|
-
messageIdMultisigIsmFactory: string;
|
|
335
|
-
};
|
|
336
|
-
gnosis: {
|
|
337
|
-
storageGasOracle: string;
|
|
338
|
-
validatorAnnounce: string;
|
|
339
|
-
proxyAdmin: string;
|
|
340
|
-
mailbox: string;
|
|
341
|
-
interchainGasPaymaster: string;
|
|
342
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
343
|
-
multisigIsm: string;
|
|
344
|
-
create2Factory: string;
|
|
345
|
-
testRecipient: string;
|
|
346
|
-
interchainAccountIsm: string;
|
|
347
|
-
aggregationIsmFactory: string;
|
|
348
|
-
routingIsmFactory: string;
|
|
349
|
-
interchainQueryRouter: string;
|
|
350
|
-
interchainAccountRouter: string;
|
|
351
|
-
merkleRootMultisigIsmFactory: string;
|
|
352
|
-
messageIdMultisigIsmFactory: string;
|
|
353
205
|
};
|
|
354
|
-
};
|
|
355
|
-
};
|
|
356
|
-
export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
357
|
-
testnet: {
|
|
358
206
|
solanadevnet: {
|
|
359
207
|
storageGasOracle: string;
|
|
360
208
|
validatorAnnounce: string;
|
|
@@ -372,142 +220,9 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
372
220
|
merkleRootMultisigIsmFactory: string;
|
|
373
221
|
messageIdMultisigIsmFactory: string;
|
|
374
222
|
};
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
proxyAdmin: string;
|
|
379
|
-
mailbox: string;
|
|
380
|
-
interchainGasPaymaster: string;
|
|
381
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
382
|
-
multisigIsm: string;
|
|
383
|
-
testRecipient: string;
|
|
384
|
-
interchainAccountIsm: string;
|
|
385
|
-
aggregationIsmFactory: string;
|
|
386
|
-
routingIsmFactory: string;
|
|
387
|
-
interchainQueryRouter: string;
|
|
388
|
-
interchainAccountRouter: string;
|
|
389
|
-
merkleRootMultisigIsmFactory: string;
|
|
390
|
-
messageIdMultisigIsmFactory: string;
|
|
391
|
-
};
|
|
392
|
-
fuji: {
|
|
393
|
-
storageGasOracle: string;
|
|
394
|
-
validatorAnnounce: string;
|
|
395
|
-
proxyAdmin: string;
|
|
396
|
-
mailbox: string;
|
|
397
|
-
interchainGasPaymaster: string;
|
|
398
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
399
|
-
multisigIsm: string;
|
|
400
|
-
testRecipient: string;
|
|
401
|
-
interchainAccountIsm: string;
|
|
402
|
-
aggregationIsmFactory: string;
|
|
403
|
-
routingIsmFactory: string;
|
|
404
|
-
interchainQueryRouter: string;
|
|
405
|
-
interchainAccountRouter: string;
|
|
406
|
-
merkleRootMultisigIsmFactory: string;
|
|
407
|
-
messageIdMultisigIsmFactory: string;
|
|
408
|
-
};
|
|
409
|
-
mumbai: {
|
|
410
|
-
storageGasOracle: string;
|
|
411
|
-
validatorAnnounce: string;
|
|
412
|
-
proxyAdmin: string;
|
|
413
|
-
mailbox: string;
|
|
414
|
-
interchainGasPaymaster: string;
|
|
415
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
416
|
-
multisigIsm: string;
|
|
417
|
-
testRecipient: string;
|
|
418
|
-
interchainAccountIsm: string;
|
|
419
|
-
aggregationIsmFactory: string;
|
|
420
|
-
routingIsmFactory: string;
|
|
421
|
-
interchainQueryRouter: string;
|
|
422
|
-
interchainAccountRouter: string;
|
|
423
|
-
merkleRootMultisigIsmFactory: string;
|
|
424
|
-
messageIdMultisigIsmFactory: string;
|
|
425
|
-
};
|
|
426
|
-
bsctestnet: {
|
|
427
|
-
storageGasOracle: string;
|
|
428
|
-
validatorAnnounce: string;
|
|
429
|
-
proxyAdmin: string;
|
|
430
|
-
mailbox: string;
|
|
431
|
-
interchainGasPaymaster: string;
|
|
432
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
433
|
-
multisigIsm: string;
|
|
434
|
-
testRecipient: string;
|
|
435
|
-
interchainAccountIsm: string;
|
|
436
|
-
aggregationIsmFactory: string;
|
|
437
|
-
routingIsmFactory: string;
|
|
438
|
-
interchainQueryRouter: string;
|
|
439
|
-
interchainAccountRouter: string;
|
|
440
|
-
merkleRootMultisigIsmFactory: string;
|
|
441
|
-
messageIdMultisigIsmFactory: string;
|
|
442
|
-
};
|
|
443
|
-
goerli: {
|
|
444
|
-
storageGasOracle: string;
|
|
445
|
-
validatorAnnounce: string;
|
|
446
|
-
proxyAdmin: string;
|
|
447
|
-
mailbox: string;
|
|
448
|
-
interchainGasPaymaster: string;
|
|
449
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
450
|
-
multisigIsm: string;
|
|
451
|
-
testRecipient: string;
|
|
452
|
-
interchainAccountIsm: string;
|
|
453
|
-
aggregationIsmFactory: string;
|
|
454
|
-
routingIsmFactory: string;
|
|
455
|
-
interchainQueryRouter: string;
|
|
456
|
-
interchainAccountRouter: string;
|
|
457
|
-
merkleRootMultisigIsmFactory: string;
|
|
458
|
-
messageIdMultisigIsmFactory: string;
|
|
459
|
-
};
|
|
460
|
-
moonbasealpha: {
|
|
461
|
-
storageGasOracle: string;
|
|
462
|
-
validatorAnnounce: string;
|
|
463
|
-
proxyAdmin: string;
|
|
464
|
-
mailbox: string;
|
|
465
|
-
interchainGasPaymaster: string;
|
|
466
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
467
|
-
multisigIsm: string;
|
|
468
|
-
testRecipient: string;
|
|
469
|
-
aggregationIsmFactory: string;
|
|
470
|
-
routingIsmFactory: string;
|
|
471
|
-
interchainAccountIsm: string;
|
|
472
|
-
interchainAccountRouter: string;
|
|
473
|
-
merkleRootMultisigIsmFactory: string;
|
|
474
|
-
messageIdMultisigIsmFactory: string;
|
|
475
|
-
};
|
|
476
|
-
optimismgoerli: {
|
|
477
|
-
storageGasOracle: string;
|
|
478
|
-
validatorAnnounce: string;
|
|
479
|
-
proxyAdmin: string;
|
|
480
|
-
mailbox: string;
|
|
481
|
-
interchainGasPaymaster: string;
|
|
482
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
483
|
-
multisigIsm: string;
|
|
484
|
-
testRecipient: string;
|
|
485
|
-
interchainAccountIsm: string;
|
|
486
|
-
aggregationIsmFactory: string;
|
|
487
|
-
routingIsmFactory: string;
|
|
488
|
-
interchainQueryRouter: string;
|
|
489
|
-
interchainAccountRouter: string;
|
|
490
|
-
merkleRootMultisigIsmFactory: string;
|
|
491
|
-
messageIdMultisigIsmFactory: string;
|
|
492
|
-
};
|
|
493
|
-
arbitrumgoerli: {
|
|
494
|
-
storageGasOracle: string;
|
|
495
|
-
validatorAnnounce: string;
|
|
496
|
-
proxyAdmin: string;
|
|
497
|
-
mailbox: string;
|
|
498
|
-
interchainGasPaymaster: string;
|
|
499
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
500
|
-
multisigIsm: string;
|
|
501
|
-
testRecipient: string;
|
|
502
|
-
interchainAccountIsm: string;
|
|
503
|
-
aggregationIsmFactory: string;
|
|
504
|
-
routingIsmFactory: string;
|
|
505
|
-
interchainQueryRouter: string;
|
|
506
|
-
interchainAccountRouter: string;
|
|
507
|
-
merkleRootMultisigIsmFactory: string;
|
|
508
|
-
messageIdMultisigIsmFactory: string;
|
|
509
|
-
};
|
|
510
|
-
sepolia: {
|
|
223
|
+
};
|
|
224
|
+
mainnet: {
|
|
225
|
+
celo: {
|
|
511
226
|
storageGasOracle: string;
|
|
512
227
|
validatorAnnounce: string;
|
|
513
228
|
proxyAdmin: string;
|
|
@@ -524,50 +239,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
524
239
|
merkleRootMultisigIsmFactory: string;
|
|
525
240
|
messageIdMultisigIsmFactory: string;
|
|
526
241
|
};
|
|
527
|
-
|
|
528
|
-
test: {
|
|
529
|
-
test1: {
|
|
530
|
-
storageGasOracle: string;
|
|
531
|
-
validatorAnnounce: string;
|
|
532
|
-
proxyAdmin: string;
|
|
533
|
-
mailbox: string;
|
|
534
|
-
interchainGasPaymaster: string;
|
|
535
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
536
|
-
legacyMultisigIsm: string;
|
|
537
|
-
merkleRootMultisigIsm: string;
|
|
538
|
-
messageIdMultisigIsm: string;
|
|
539
|
-
aggregationIsm: string;
|
|
540
|
-
routingIsm: string;
|
|
541
|
-
};
|
|
542
|
-
test2: {
|
|
543
|
-
storageGasOracle: string;
|
|
544
|
-
validatorAnnounce: string;
|
|
545
|
-
proxyAdmin: string;
|
|
546
|
-
mailbox: string;
|
|
547
|
-
interchainGasPaymaster: string;
|
|
548
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
549
|
-
legacyMultisigIsm: string;
|
|
550
|
-
merkleRootMultisigIsm: string;
|
|
551
|
-
messageIdMultisigIsm: string;
|
|
552
|
-
aggregationIsm: string;
|
|
553
|
-
routingIsm: string;
|
|
554
|
-
};
|
|
555
|
-
test3: {
|
|
556
|
-
storageGasOracle: string;
|
|
557
|
-
validatorAnnounce: string;
|
|
558
|
-
proxyAdmin: string;
|
|
559
|
-
mailbox: string;
|
|
560
|
-
interchainGasPaymaster: string;
|
|
561
|
-
defaultIsmInterchainGasPaymaster: string;
|
|
562
|
-
legacyMultisigIsm: string;
|
|
563
|
-
merkleRootMultisigIsm: string;
|
|
564
|
-
messageIdMultisigIsm: string;
|
|
565
|
-
aggregationIsm: string;
|
|
566
|
-
routingIsm: string;
|
|
567
|
-
};
|
|
568
|
-
};
|
|
569
|
-
mainnet: {
|
|
570
|
-
celo: {
|
|
242
|
+
ethereum: {
|
|
571
243
|
storageGasOracle: string;
|
|
572
244
|
validatorAnnounce: string;
|
|
573
245
|
proxyAdmin: string;
|
|
@@ -584,7 +256,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
584
256
|
merkleRootMultisigIsmFactory: string;
|
|
585
257
|
messageIdMultisigIsmFactory: string;
|
|
586
258
|
};
|
|
587
|
-
|
|
259
|
+
avalanche: {
|
|
588
260
|
storageGasOracle: string;
|
|
589
261
|
validatorAnnounce: string;
|
|
590
262
|
proxyAdmin: string;
|
|
@@ -601,7 +273,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
601
273
|
merkleRootMultisigIsmFactory: string;
|
|
602
274
|
messageIdMultisigIsmFactory: string;
|
|
603
275
|
};
|
|
604
|
-
|
|
276
|
+
polygon: {
|
|
605
277
|
storageGasOracle: string;
|
|
606
278
|
validatorAnnounce: string;
|
|
607
279
|
proxyAdmin: string;
|
|
@@ -618,7 +290,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
618
290
|
merkleRootMultisigIsmFactory: string;
|
|
619
291
|
messageIdMultisigIsmFactory: string;
|
|
620
292
|
};
|
|
621
|
-
|
|
293
|
+
bsc: {
|
|
622
294
|
storageGasOracle: string;
|
|
623
295
|
validatorAnnounce: string;
|
|
624
296
|
proxyAdmin: string;
|
|
@@ -635,7 +307,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
635
307
|
merkleRootMultisigIsmFactory: string;
|
|
636
308
|
messageIdMultisigIsmFactory: string;
|
|
637
309
|
};
|
|
638
|
-
|
|
310
|
+
arbitrum: {
|
|
639
311
|
storageGasOracle: string;
|
|
640
312
|
validatorAnnounce: string;
|
|
641
313
|
proxyAdmin: string;
|
|
@@ -649,10 +321,11 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
649
321
|
routingIsmFactory: string;
|
|
650
322
|
interchainQueryRouter: string;
|
|
651
323
|
interchainAccountRouter: string;
|
|
324
|
+
timelockController: string;
|
|
652
325
|
merkleRootMultisigIsmFactory: string;
|
|
653
326
|
messageIdMultisigIsmFactory: string;
|
|
654
327
|
};
|
|
655
|
-
|
|
328
|
+
optimism: {
|
|
656
329
|
storageGasOracle: string;
|
|
657
330
|
validatorAnnounce: string;
|
|
658
331
|
proxyAdmin: string;
|
|
@@ -666,11 +339,10 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
666
339
|
routingIsmFactory: string;
|
|
667
340
|
interchainQueryRouter: string;
|
|
668
341
|
interchainAccountRouter: string;
|
|
669
|
-
timelockController: string;
|
|
670
342
|
merkleRootMultisigIsmFactory: string;
|
|
671
343
|
messageIdMultisigIsmFactory: string;
|
|
672
344
|
};
|
|
673
|
-
|
|
345
|
+
moonbeam: {
|
|
674
346
|
storageGasOracle: string;
|
|
675
347
|
validatorAnnounce: string;
|
|
676
348
|
proxyAdmin: string;
|
|
@@ -687,7 +359,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
687
359
|
merkleRootMultisigIsmFactory: string;
|
|
688
360
|
messageIdMultisigIsmFactory: string;
|
|
689
361
|
};
|
|
690
|
-
|
|
362
|
+
gnosis: {
|
|
691
363
|
storageGasOracle: string;
|
|
692
364
|
validatorAnnounce: string;
|
|
693
365
|
proxyAdmin: string;
|
|
@@ -695,6 +367,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
695
367
|
interchainGasPaymaster: string;
|
|
696
368
|
defaultIsmInterchainGasPaymaster: string;
|
|
697
369
|
multisigIsm: string;
|
|
370
|
+
create2Factory: string;
|
|
698
371
|
testRecipient: string;
|
|
699
372
|
interchainAccountIsm: string;
|
|
700
373
|
aggregationIsmFactory: string;
|
|
@@ -704,7 +377,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
704
377
|
merkleRootMultisigIsmFactory: string;
|
|
705
378
|
messageIdMultisigIsmFactory: string;
|
|
706
379
|
};
|
|
707
|
-
|
|
380
|
+
solana: {
|
|
708
381
|
storageGasOracle: string;
|
|
709
382
|
validatorAnnounce: string;
|
|
710
383
|
proxyAdmin: string;
|
|
@@ -712,7 +385,6 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
712
385
|
interchainGasPaymaster: string;
|
|
713
386
|
defaultIsmInterchainGasPaymaster: string;
|
|
714
387
|
multisigIsm: string;
|
|
715
|
-
create2Factory: string;
|
|
716
388
|
testRecipient: string;
|
|
717
389
|
interchainAccountIsm: string;
|
|
718
390
|
aggregationIsmFactory: string;
|
|
@@ -725,7 +397,7 @@ export declare const hyperlaneEnvironmentsWithSealevel: {
|
|
|
725
397
|
};
|
|
726
398
|
};
|
|
727
399
|
export type HyperlaneEnvironment = keyof typeof hyperlaneEnvironments;
|
|
728
|
-
export type HyperlaneEnvironmentChain<E extends HyperlaneEnvironment> = Extract<keyof typeof hyperlaneEnvironments[E], ChainName>;
|
|
400
|
+
export type HyperlaneEnvironmentChain<E extends HyperlaneEnvironment> = Extract<keyof (typeof hyperlaneEnvironments)[E], ChainName>;
|
|
729
401
|
export declare const hyperlaneContractAddresses: Record<"polygon" | "ethereum" | "test1" | "test2" | "test3" | "alfajores" | "arbitrum" | "arbitrumgoerli" | "avalanche" | "bsc" | "bsctestnet" | "celo" | "fuji" | "goerli" | "sepolia" | "moonbasealpha" | "moonbeam" | "mumbai" | "optimism" | "optimismgoerli" | "gnosis" | "solanadevnet" | "proteustestnet" | "solana" | "nautilus", {
|
|
730
402
|
storageGasOracle: string;
|
|
731
403
|
validatorAnnounce: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAOxC,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA6B,CAAC;AAEhE,MAAM,MAAM,oBAAoB,GAAG,MAAM,OAAO,qBAAqB,CAAC;AACtE,MAAM,MAAM,yBAAyB,CAAC,CAAC,SAAS,oBAAoB,IAAI,OAAO,CAC7E,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAC,CAAC,CAAC,EACvC,SAAS,CACV,CAAC;AAGF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;EAMtC,CAAC"}
|
|
@@ -3,17 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.hyperlaneContractAddresses = exports.
|
|
6
|
+
exports.hyperlaneContractAddresses = exports.hyperlaneEnvironments = void 0;
|
|
7
7
|
const utils_1 = require("@hyperlane-xyz/utils");
|
|
8
8
|
const mainnet_json_1 = __importDefault(require("./mainnet.json"));
|
|
9
9
|
const test_json_1 = __importDefault(require("./test.json"));
|
|
10
|
-
const testnet_sealevel_json_1 = __importDefault(require("./testnet-sealevel.json"));
|
|
11
10
|
const testnet_json_1 = __importDefault(require("./testnet.json"));
|
|
12
11
|
exports.hyperlaneEnvironments = { test: test_json_1.default, testnet: testnet_json_1.default, mainnet: mainnet_json_1.default };
|
|
13
|
-
exports.hyperlaneEnvironmentsWithSealevel = {
|
|
14
|
-
...exports.hyperlaneEnvironments,
|
|
15
|
-
testnet: { ...testnet_json_1.default, ...testnet_sealevel_json_1.default },
|
|
16
|
-
};
|
|
17
12
|
// Note, this assumes no chain name is repeated across environments
|
|
18
13
|
exports.hyperlaneContractAddresses = (0, utils_1.objMerge)(exports.hyperlaneEnvironments.testnet, exports.hyperlaneEnvironments.mainnet);
|
|
19
14
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":";;;;;;AAAA,gDAAgD;AAKhD,kEAAqC;AACrC,4DAA+B;AAC/B,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":";;;;;;AAAA,gDAAgD;AAKhD,kEAAqC;AACrC,4DAA+B;AAC/B,kEAAqC;AAExB,QAAA,qBAAqB,GAAG,EAAE,IAAI,EAAJ,mBAAI,EAAE,OAAO,EAAP,sBAAO,EAAE,OAAO,EAAP,sBAAO,EAAE,CAAC;AAQhE,mEAAmE;AACtD,QAAA,0BAA0B,GAAG,IAAA,gBAAQ,EAChD,6BAAqB,CAAC,OAAO,EAC7B,6BAAqB,CAAC,OAAO,CAI9B,CAAC"}
|
|
@@ -153,5 +153,22 @@
|
|
|
153
153
|
"interchainAccountRouter": "0xe9E3444DDD80c50276c0Fcf316026f6d7fEc2c47",
|
|
154
154
|
"merkleRootMultisigIsmFactory": "0x784b9D0f4eF9fb8444DfB5d24AB221C9D1A85395",
|
|
155
155
|
"messageIdMultisigIsmFactory": "0xC4275763D7b621eb732847957012F1fb35C90BB8"
|
|
156
|
+
},
|
|
157
|
+
"solana": {
|
|
158
|
+
"storageGasOracle": "11111111111111111111111111111111",
|
|
159
|
+
"validatorAnnounce": "C88Lk5GR6cPxYoJxPbNDDEwsx5Kxn1wZEomvQ2So333g",
|
|
160
|
+
"proxyAdmin": "11111111111111111111111111111111",
|
|
161
|
+
"mailbox": "Ge9atjAc3Ltu91VTbNpJDCjZ9CFxFyck4h3YBcTF9XPq",
|
|
162
|
+
"interchainGasPaymaster": "FCNfmLSZLo5x7oNYmkYU8WdPUu7pj636P9CaMxkmaCp7",
|
|
163
|
+
"defaultIsmInterchainGasPaymaster": "GTj6WzNxLNFydq5zJrV9p13fyqotRoo1MQykNCWuVpbS",
|
|
164
|
+
"multisigIsm": "11111111111111111111111111111111",
|
|
165
|
+
"testRecipient": "11111111111111111111111111111111",
|
|
166
|
+
"interchainAccountIsm": "11111111111111111111111111111111",
|
|
167
|
+
"aggregationIsmFactory": "11111111111111111111111111111111",
|
|
168
|
+
"routingIsmFactory": "11111111111111111111111111111111",
|
|
169
|
+
"interchainQueryRouter": "11111111111111111111111111111111",
|
|
170
|
+
"interchainAccountRouter": "11111111111111111111111111111111",
|
|
171
|
+
"merkleRootMultisigIsmFactory": "11111111111111111111111111111111",
|
|
172
|
+
"messageIdMultisigIsmFactory": "11111111111111111111111111111111"
|
|
156
173
|
}
|
|
157
174
|
}
|