@hyperlane-xyz/sdk 0.5.0 → 0.5.2

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.
Files changed (72) hide show
  1. package/dist/consts/chainConnectionConfigs.d.ts +4 -0
  2. package/dist/consts/chainConnectionConfigs.d.ts.map +1 -1
  3. package/dist/consts/chainConnectionConfigs.js +29 -1
  4. package/dist/consts/chainConnectionConfigs.js.map +1 -1
  5. package/dist/consts/chainMetadata.d.ts +5 -1
  6. package/dist/consts/chainMetadata.d.ts.map +1 -1
  7. package/dist/consts/chainMetadata.js +23 -3
  8. package/dist/consts/chainMetadata.js.map +1 -1
  9. package/dist/consts/chains.d.ts +6 -2
  10. package/dist/consts/chains.d.ts.map +1 -1
  11. package/dist/consts/chains.js +5 -0
  12. package/dist/consts/chains.js.map +1 -1
  13. package/dist/consts/environments/index.d.ts +470 -2
  14. package/dist/consts/environments/index.d.ts.map +1 -1
  15. package/dist/consts/environments/index.js +3 -0
  16. package/dist/consts/environments/index.js.map +1 -1
  17. package/dist/consts/environments/mainnet.json +176 -7
  18. package/dist/consts/environments/testnet2.json +302 -6
  19. package/dist/core/HyperlaneCore.d.ts +465 -0
  20. package/dist/core/HyperlaneCore.d.ts.map +1 -1
  21. package/dist/core/TestCoreApp.d.ts +1 -1
  22. package/dist/core/TestCoreApp.d.ts.map +1 -1
  23. package/dist/core/contracts.d.ts +2 -2
  24. package/dist/core/contracts.d.ts.map +1 -1
  25. package/dist/core/message.d.ts +1 -1
  26. package/dist/core/message.d.ts.map +1 -1
  27. package/dist/core/message.js +6 -6
  28. package/dist/core/message.js.map +1 -1
  29. package/dist/deploy/HyperlaneAppChecker.d.ts.map +1 -1
  30. package/dist/deploy/HyperlaneAppChecker.js +8 -0
  31. package/dist/deploy/HyperlaneAppChecker.js.map +1 -1
  32. package/dist/deploy/core/HyperlaneCoreDeployer.d.ts +1 -1
  33. package/dist/deploy/core/HyperlaneCoreDeployer.d.ts.map +1 -1
  34. package/dist/deploy/core/HyperlaneCoreDeployer.js.map +1 -1
  35. package/dist/deploy/middleware/deploy.d.ts +21 -0
  36. package/dist/deploy/middleware/deploy.d.ts.map +1 -0
  37. package/dist/deploy/middleware/deploy.js +62 -0
  38. package/dist/deploy/middleware/deploy.js.map +1 -0
  39. package/dist/deploy/router/HyperlaneRouterChecker.js +3 -3
  40. package/dist/deploy/router/HyperlaneRouterChecker.js.map +1 -1
  41. package/dist/deploy/types.d.ts +5 -1
  42. package/dist/deploy/types.d.ts.map +1 -1
  43. package/dist/deploy/types.js +1 -0
  44. package/dist/deploy/types.js.map +1 -1
  45. package/dist/domains.d.ts +1 -1
  46. package/dist/domains.d.ts.map +1 -1
  47. package/dist/domains.js +5 -1
  48. package/dist/domains.js.map +1 -1
  49. package/dist/index.d.ts +4 -2
  50. package/dist/index.d.ts.map +1 -1
  51. package/dist/index.js +10 -3
  52. package/dist/index.js.map +1 -1
  53. package/dist/middleware/accounts.hardhat-test.d.ts +2 -0
  54. package/dist/middleware/accounts.hardhat-test.d.ts.map +1 -0
  55. package/dist/middleware/accounts.hardhat-test.js +61 -0
  56. package/dist/middleware/accounts.hardhat-test.js.map +1 -0
  57. package/dist/middleware/queries.hardhat-test.d.ts +2 -0
  58. package/dist/middleware/queries.hardhat-test.d.ts.map +1 -0
  59. package/dist/middleware/queries.hardhat-test.js +69 -0
  60. package/dist/middleware/queries.hardhat-test.js.map +1 -0
  61. package/dist/middleware.d.ts +9 -0
  62. package/dist/middleware.d.ts.map +1 -0
  63. package/dist/middleware.js +11 -0
  64. package/dist/middleware.js.map +1 -0
  65. package/dist/router.d.ts +2 -2
  66. package/dist/router.d.ts.map +1 -1
  67. package/dist/test/envSubsetDeployer/app.d.ts +1 -1
  68. package/dist/test/envSubsetDeployer/app.js +2 -2
  69. package/dist/test/envSubsetDeployer/app.js.map +1 -1
  70. package/dist/test/envSubsetDeployer/deploy.hardhat-test.js +4 -1
  71. package/dist/test/envSubsetDeployer/deploy.hardhat-test.js.map +1 -1
  72. package/package.json +3 -4
@@ -168,6 +168,24 @@ export declare const environments: {
168
168
  };
169
169
  inboxValidatorManager: string;
170
170
  };
171
+ optimismgoerli: {
172
+ inbox: {
173
+ kind: string;
174
+ proxy: string;
175
+ implementation: string;
176
+ beacon: string;
177
+ };
178
+ inboxValidatorManager: string;
179
+ };
180
+ arbitrumgoerli: {
181
+ inbox: {
182
+ kind: string;
183
+ proxy: string;
184
+ implementation: string;
185
+ beacon: string;
186
+ };
187
+ inboxValidatorManager: string;
188
+ };
171
189
  };
172
190
  outbox: {
173
191
  kind: string;
@@ -176,6 +194,9 @@ export declare const environments: {
176
194
  beacon: string;
177
195
  };
178
196
  outboxValidatorManager: string;
197
+ interchainAccountRouter: string;
198
+ interchainQueryRouter: string;
199
+ create2Factory: string;
179
200
  };
180
201
  fuji: {
181
202
  upgradeBeaconController: string;
@@ -232,6 +253,24 @@ export declare const environments: {
232
253
  };
233
254
  inboxValidatorManager: string;
234
255
  };
256
+ optimismgoerli: {
257
+ inbox: {
258
+ kind: string;
259
+ proxy: string;
260
+ implementation: string;
261
+ beacon: string;
262
+ };
263
+ inboxValidatorManager: string;
264
+ };
265
+ arbitrumgoerli: {
266
+ inbox: {
267
+ kind: string;
268
+ proxy: string;
269
+ implementation: string;
270
+ beacon: string;
271
+ };
272
+ inboxValidatorManager: string;
273
+ };
235
274
  };
236
275
  outbox: {
237
276
  kind: string;
@@ -240,6 +279,9 @@ export declare const environments: {
240
279
  beacon: string;
241
280
  };
242
281
  outboxValidatorManager: string;
282
+ interchainAccountRouter: string;
283
+ interchainQueryRouter: string;
284
+ create2Factory: string;
243
285
  };
244
286
  mumbai: {
245
287
  upgradeBeaconController: string;
@@ -296,6 +338,24 @@ export declare const environments: {
296
338
  };
297
339
  inboxValidatorManager: string;
298
340
  };
341
+ optimismgoerli: {
342
+ inbox: {
343
+ kind: string;
344
+ proxy: string;
345
+ implementation: string;
346
+ beacon: string;
347
+ };
348
+ inboxValidatorManager: string;
349
+ };
350
+ arbitrumgoerli: {
351
+ inbox: {
352
+ kind: string;
353
+ proxy: string;
354
+ implementation: string;
355
+ beacon: string;
356
+ };
357
+ inboxValidatorManager: string;
358
+ };
299
359
  };
300
360
  outbox: {
301
361
  kind: string;
@@ -304,6 +364,9 @@ export declare const environments: {
304
364
  beacon: string;
305
365
  };
306
366
  outboxValidatorManager: string;
367
+ interchainAccountRouter: string;
368
+ interchainQueryRouter: string;
369
+ create2Factory: string;
307
370
  };
308
371
  bsctestnet: {
309
372
  upgradeBeaconController: string;
@@ -360,6 +423,24 @@ export declare const environments: {
360
423
  };
361
424
  inboxValidatorManager: string;
362
425
  };
426
+ optimismgoerli: {
427
+ inbox: {
428
+ kind: string;
429
+ proxy: string;
430
+ implementation: string;
431
+ beacon: string;
432
+ };
433
+ inboxValidatorManager: string;
434
+ };
435
+ arbitrumgoerli: {
436
+ inbox: {
437
+ kind: string;
438
+ proxy: string;
439
+ implementation: string;
440
+ beacon: string;
441
+ };
442
+ inboxValidatorManager: string;
443
+ };
363
444
  };
364
445
  outbox: {
365
446
  kind: string;
@@ -368,6 +449,9 @@ export declare const environments: {
368
449
  beacon: string;
369
450
  };
370
451
  outboxValidatorManager: string;
452
+ interchainAccountRouter: string;
453
+ interchainQueryRouter: string;
454
+ create2Factory: string;
371
455
  };
372
456
  goerli: {
373
457
  upgradeBeaconController: string;
@@ -424,6 +508,24 @@ export declare const environments: {
424
508
  };
425
509
  inboxValidatorManager: string;
426
510
  };
511
+ optimismgoerli: {
512
+ inbox: {
513
+ kind: string;
514
+ proxy: string;
515
+ implementation: string;
516
+ beacon: string;
517
+ };
518
+ inboxValidatorManager: string;
519
+ };
520
+ arbitrumgoerli: {
521
+ inbox: {
522
+ kind: string;
523
+ proxy: string;
524
+ implementation: string;
525
+ beacon: string;
526
+ };
527
+ inboxValidatorManager: string;
528
+ };
427
529
  };
428
530
  outbox: {
429
531
  kind: string;
@@ -432,6 +534,9 @@ export declare const environments: {
432
534
  beacon: string;
433
535
  };
434
536
  outboxValidatorManager: string;
537
+ interchainAccountRouter: string;
538
+ interchainQueryRouter: string;
539
+ create2Factory: string;
435
540
  };
436
541
  moonbasealpha: {
437
542
  upgradeBeaconController: string;
@@ -488,6 +593,24 @@ export declare const environments: {
488
593
  };
489
594
  inboxValidatorManager: string;
490
595
  };
596
+ optimismgoerli: {
597
+ inbox: {
598
+ kind: string;
599
+ proxy: string;
600
+ implementation: string;
601
+ beacon: string;
602
+ };
603
+ inboxValidatorManager: string;
604
+ };
605
+ arbitrumgoerli: {
606
+ inbox: {
607
+ kind: string;
608
+ proxy: string;
609
+ implementation: string;
610
+ beacon: string;
611
+ };
612
+ inboxValidatorManager: string;
613
+ };
491
614
  };
492
615
  outbox: {
493
616
  kind: string;
@@ -496,6 +619,179 @@ export declare const environments: {
496
619
  beacon: string;
497
620
  };
498
621
  outboxValidatorManager: string;
622
+ interchainAccountRouter: string;
623
+ interchainQueryRouter: string;
624
+ create2Factory: string;
625
+ };
626
+ optimismgoerli: {
627
+ upgradeBeaconController: string;
628
+ connectionManager: string;
629
+ interchainGasPaymaster: {
630
+ kind: string;
631
+ proxy: string;
632
+ implementation: string;
633
+ beacon: string;
634
+ };
635
+ inboxes: {
636
+ alfajores: {
637
+ inbox: {
638
+ kind: string;
639
+ proxy: string;
640
+ implementation: string;
641
+ beacon: string;
642
+ };
643
+ inboxValidatorManager: string;
644
+ };
645
+ fuji: {
646
+ inbox: {
647
+ kind: string;
648
+ proxy: string;
649
+ implementation: string;
650
+ beacon: string;
651
+ };
652
+ inboxValidatorManager: string;
653
+ };
654
+ mumbai: {
655
+ inbox: {
656
+ kind: string;
657
+ proxy: string;
658
+ implementation: string;
659
+ beacon: string;
660
+ };
661
+ inboxValidatorManager: string;
662
+ };
663
+ bsctestnet: {
664
+ inbox: {
665
+ kind: string;
666
+ proxy: string;
667
+ implementation: string;
668
+ beacon: string;
669
+ };
670
+ inboxValidatorManager: string;
671
+ };
672
+ goerli: {
673
+ inbox: {
674
+ kind: string;
675
+ proxy: string;
676
+ implementation: string;
677
+ beacon: string;
678
+ };
679
+ inboxValidatorManager: string;
680
+ };
681
+ moonbasealpha: {
682
+ inbox: {
683
+ kind: string;
684
+ proxy: string;
685
+ implementation: string;
686
+ beacon: string;
687
+ };
688
+ inboxValidatorManager: string;
689
+ };
690
+ arbitrumgoerli: {
691
+ inbox: {
692
+ kind: string;
693
+ proxy: string;
694
+ implementation: string;
695
+ beacon: string;
696
+ };
697
+ inboxValidatorManager: string;
698
+ };
699
+ };
700
+ outbox: {
701
+ kind: string;
702
+ proxy: string;
703
+ implementation: string;
704
+ beacon: string;
705
+ };
706
+ outboxValidatorManager: string;
707
+ interchainAccountRouter: string;
708
+ interchainQueryRouter: string;
709
+ create2Factory: string;
710
+ };
711
+ arbitrumgoerli: {
712
+ upgradeBeaconController: string;
713
+ connectionManager: string;
714
+ interchainGasPaymaster: {
715
+ kind: string;
716
+ proxy: string;
717
+ implementation: string;
718
+ beacon: string;
719
+ };
720
+ inboxes: {
721
+ alfajores: {
722
+ inbox: {
723
+ kind: string;
724
+ proxy: string;
725
+ implementation: string;
726
+ beacon: string;
727
+ };
728
+ inboxValidatorManager: string;
729
+ };
730
+ fuji: {
731
+ inbox: {
732
+ kind: string;
733
+ proxy: string;
734
+ implementation: string;
735
+ beacon: string;
736
+ };
737
+ inboxValidatorManager: string;
738
+ };
739
+ mumbai: {
740
+ inbox: {
741
+ kind: string;
742
+ proxy: string;
743
+ implementation: string;
744
+ beacon: string;
745
+ };
746
+ inboxValidatorManager: string;
747
+ };
748
+ bsctestnet: {
749
+ inbox: {
750
+ kind: string;
751
+ proxy: string;
752
+ implementation: string;
753
+ beacon: string;
754
+ };
755
+ inboxValidatorManager: string;
756
+ };
757
+ goerli: {
758
+ inbox: {
759
+ kind: string;
760
+ proxy: string;
761
+ implementation: string;
762
+ beacon: string;
763
+ };
764
+ inboxValidatorManager: string;
765
+ };
766
+ moonbasealpha: {
767
+ inbox: {
768
+ kind: string;
769
+ proxy: string;
770
+ implementation: string;
771
+ beacon: string;
772
+ };
773
+ inboxValidatorManager: string;
774
+ };
775
+ optimismgoerli: {
776
+ inbox: {
777
+ kind: string;
778
+ proxy: string;
779
+ implementation: string;
780
+ beacon: string;
781
+ };
782
+ inboxValidatorManager: string;
783
+ };
784
+ };
785
+ outbox: {
786
+ kind: string;
787
+ proxy: string;
788
+ implementation: string;
789
+ beacon: string;
790
+ };
791
+ outboxValidatorManager: string;
792
+ interchainAccountRouter: string;
793
+ interchainQueryRouter: string;
794
+ create2Factory: string;
499
795
  };
500
796
  };
501
797
  mainnet: {
@@ -563,6 +859,15 @@ export declare const environments: {
563
859
  };
564
860
  inboxValidatorManager: string;
565
861
  };
862
+ moonbeam: {
863
+ inbox: {
864
+ kind: string;
865
+ proxy: string;
866
+ implementation: string;
867
+ beacon: string;
868
+ };
869
+ inboxValidatorManager: string;
870
+ };
566
871
  };
567
872
  outbox: {
568
873
  kind: string;
@@ -571,6 +876,9 @@ export declare const environments: {
571
876
  beacon: string;
572
877
  };
573
878
  outboxValidatorManager: string;
879
+ interchainAccountRouter: string;
880
+ interchainQueryRouter: string;
881
+ create2Factory: string;
574
882
  };
575
883
  bsc: {
576
884
  upgradeBeaconController: string;
@@ -636,6 +944,15 @@ export declare const environments: {
636
944
  };
637
945
  inboxValidatorManager: string;
638
946
  };
947
+ moonbeam: {
948
+ inbox: {
949
+ kind: string;
950
+ proxy: string;
951
+ implementation: string;
952
+ beacon: string;
953
+ };
954
+ inboxValidatorManager: string;
955
+ };
639
956
  };
640
957
  outbox: {
641
958
  kind: string;
@@ -644,6 +961,9 @@ export declare const environments: {
644
961
  beacon: string;
645
962
  };
646
963
  outboxValidatorManager: string;
964
+ interchainAccountRouter: string;
965
+ interchainQueryRouter: string;
966
+ create2Factory: string;
647
967
  };
648
968
  polygon: {
649
969
  upgradeBeaconController: string;
@@ -709,6 +1029,15 @@ export declare const environments: {
709
1029
  };
710
1030
  inboxValidatorManager: string;
711
1031
  };
1032
+ moonbeam: {
1033
+ inbox: {
1034
+ kind: string;
1035
+ proxy: string;
1036
+ implementation: string;
1037
+ beacon: string;
1038
+ };
1039
+ inboxValidatorManager: string;
1040
+ };
712
1041
  };
713
1042
  outbox: {
714
1043
  kind: string;
@@ -717,6 +1046,9 @@ export declare const environments: {
717
1046
  beacon: string;
718
1047
  };
719
1048
  outboxValidatorManager: string;
1049
+ interchainAccountRouter: string;
1050
+ interchainQueryRouter: string;
1051
+ create2Factory: string;
720
1052
  };
721
1053
  celo: {
722
1054
  upgradeBeaconController: string;
@@ -782,6 +1114,15 @@ export declare const environments: {
782
1114
  };
783
1115
  inboxValidatorManager: string;
784
1116
  };
1117
+ moonbeam: {
1118
+ inbox: {
1119
+ kind: string;
1120
+ proxy: string;
1121
+ implementation: string;
1122
+ beacon: string;
1123
+ };
1124
+ inboxValidatorManager: string;
1125
+ };
785
1126
  };
786
1127
  outbox: {
787
1128
  kind: string;
@@ -790,6 +1131,9 @@ export declare const environments: {
790
1131
  beacon: string;
791
1132
  };
792
1133
  outboxValidatorManager: string;
1134
+ interchainAccountRouter: string;
1135
+ interchainQueryRouter: string;
1136
+ create2Factory: string;
793
1137
  };
794
1138
  arbitrum: {
795
1139
  upgradeBeaconController: string;
@@ -855,6 +1199,15 @@ export declare const environments: {
855
1199
  };
856
1200
  inboxValidatorManager: string;
857
1201
  };
1202
+ moonbeam: {
1203
+ inbox: {
1204
+ kind: string;
1205
+ proxy: string;
1206
+ implementation: string;
1207
+ beacon: string;
1208
+ };
1209
+ inboxValidatorManager: string;
1210
+ };
858
1211
  };
859
1212
  outbox: {
860
1213
  kind: string;
@@ -863,6 +1216,9 @@ export declare const environments: {
863
1216
  beacon: string;
864
1217
  };
865
1218
  outboxValidatorManager: string;
1219
+ interchainAccountRouter: string;
1220
+ interchainQueryRouter: string;
1221
+ create2Factory: string;
866
1222
  };
867
1223
  optimism: {
868
1224
  upgradeBeaconController: string;
@@ -928,6 +1284,15 @@ export declare const environments: {
928
1284
  };
929
1285
  inboxValidatorManager: string;
930
1286
  };
1287
+ moonbeam: {
1288
+ inbox: {
1289
+ kind: string;
1290
+ proxy: string;
1291
+ implementation: string;
1292
+ beacon: string;
1293
+ };
1294
+ inboxValidatorManager: string;
1295
+ };
931
1296
  };
932
1297
  outbox: {
933
1298
  kind: string;
@@ -936,6 +1301,9 @@ export declare const environments: {
936
1301
  beacon: string;
937
1302
  };
938
1303
  outboxValidatorManager: string;
1304
+ interchainAccountRouter: string;
1305
+ interchainQueryRouter: string;
1306
+ create2Factory: string;
939
1307
  };
940
1308
  ethereum: {
941
1309
  upgradeBeaconController: string;
@@ -1001,6 +1369,100 @@ export declare const environments: {
1001
1369
  };
1002
1370
  inboxValidatorManager: string;
1003
1371
  };
1372
+ moonbeam: {
1373
+ inbox: {
1374
+ kind: string;
1375
+ proxy: string;
1376
+ implementation: string;
1377
+ beacon: string;
1378
+ };
1379
+ inboxValidatorManager: string;
1380
+ };
1381
+ };
1382
+ outbox: {
1383
+ kind: string;
1384
+ proxy: string;
1385
+ implementation: string;
1386
+ beacon: string;
1387
+ };
1388
+ outboxValidatorManager: string;
1389
+ interchainAccountRouter: string;
1390
+ interchainQueryRouter: string;
1391
+ create2Factory: string;
1392
+ };
1393
+ moonbeam: {
1394
+ upgradeBeaconController: string;
1395
+ connectionManager: string;
1396
+ interchainGasPaymaster: {
1397
+ kind: string;
1398
+ proxy: string;
1399
+ implementation: string;
1400
+ beacon: string;
1401
+ };
1402
+ inboxes: {
1403
+ celo: {
1404
+ inbox: {
1405
+ kind: string;
1406
+ proxy: string;
1407
+ implementation: string;
1408
+ beacon: string;
1409
+ };
1410
+ inboxValidatorManager: string;
1411
+ };
1412
+ ethereum: {
1413
+ inbox: {
1414
+ kind: string;
1415
+ proxy: string;
1416
+ implementation: string;
1417
+ beacon: string;
1418
+ };
1419
+ inboxValidatorManager: string;
1420
+ };
1421
+ avalanche: {
1422
+ inbox: {
1423
+ kind: string;
1424
+ proxy: string;
1425
+ implementation: string;
1426
+ beacon: string;
1427
+ };
1428
+ inboxValidatorManager: string;
1429
+ };
1430
+ polygon: {
1431
+ inbox: {
1432
+ kind: string;
1433
+ proxy: string;
1434
+ implementation: string;
1435
+ beacon: string;
1436
+ };
1437
+ inboxValidatorManager: string;
1438
+ };
1439
+ bsc: {
1440
+ inbox: {
1441
+ kind: string;
1442
+ proxy: string;
1443
+ implementation: string;
1444
+ beacon: string;
1445
+ };
1446
+ inboxValidatorManager: string;
1447
+ };
1448
+ arbitrum: {
1449
+ inbox: {
1450
+ kind: string;
1451
+ proxy: string;
1452
+ implementation: string;
1453
+ beacon: string;
1454
+ };
1455
+ inboxValidatorManager: string;
1456
+ };
1457
+ optimism: {
1458
+ inbox: {
1459
+ kind: string;
1460
+ proxy: string;
1461
+ implementation: string;
1462
+ beacon: string;
1463
+ };
1464
+ inboxValidatorManager: string;
1465
+ };
1004
1466
  };
1005
1467
  outbox: {
1006
1468
  kind: string;
@@ -1009,13 +1471,19 @@ export declare const environments: {
1009
1471
  beacon: string;
1010
1472
  };
1011
1473
  outboxValidatorManager: string;
1474
+ interchainAccountRouter: string;
1475
+ interchainQueryRouter: string;
1476
+ create2Factory: string;
1012
1477
  };
1013
1478
  };
1014
1479
  };
1015
- export declare const hyperlaneCoreAddresses: Record<"polygon" | "arbitrum" | "alfajores" | "bsc" | "mumbai" | "goerli" | "fuji" | "celo" | "ethereum" | "avalanche" | "optimism" | "bsctestnet" | "moonbasealpha", {
1480
+ export declare const hyperlaneCoreAddresses: Record<"polygon" | "arbitrum" | "alfajores" | "bsc" | "mumbai" | "goerli" | "fuji" | "celo" | "ethereum" | "avalanche" | "optimism" | "bsctestnet" | "moonbasealpha" | "moonbeam" | "optimismgoerli" | "arbitrumgoerli", {
1016
1481
  outbox: string;
1017
1482
  connectionManager: string;
1018
1483
  interchainGasPaymaster: string;
1019
- inboxes: Record<"polygon" | "arbitrum" | "alfajores" | "bsc" | "mumbai" | "goerli" | "fuji" | "celo" | "ethereum" | "avalanche" | "optimism" | "bsctestnet" | "moonbasealpha", any>;
1484
+ interchainAccountRouter: string;
1485
+ interchainQueryRouter: string;
1486
+ create2Factory: string;
1487
+ inboxes: Record<"polygon" | "arbitrum" | "alfajores" | "bsc" | "mumbai" | "goerli" | "fuji" | "celo" | "ethereum" | "avalanche" | "optimism" | "bsctestnet" | "moonbasealpha" | "moonbeam" | "optimismgoerli" | "arbitrumgoerli", any>;
1020
1488
  }>;
1021
1489
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIxB,CAAC;AAGF,eAAO,MAAM,sBAAsB;;;;;EAYlC,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":"AAMA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAIxB,CAAC;AAGF,eAAO,MAAM,sBAAsB;;;;;;;;EAelC,CAAC"}
@@ -18,6 +18,9 @@ exports.hyperlaneCoreAddresses = (0, objects_1.objMap)(Object.assign(Object.assi
18
18
  outbox: addresses.outbox.proxy,
19
19
  connectionManager: addresses.connectionManager,
20
20
  interchainGasPaymaster: addresses.interchainGasPaymaster.proxy,
21
+ interchainAccountRouter: addresses.interchainAccountRouter,
22
+ interchainQueryRouter: addresses.interchainQueryRouter,
23
+ create2Factory: addresses.create2Factory,
21
24
  inboxes: (0, objects_1.objMap)(
22
25
  // @ts-ignore
23
26
  addresses.inboxes, (_remoteChain, inboxAddresses) => inboxAddresses.inbox.proxy),
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":";;;;;;AAAA,iDAA6C;AAE7C,kEAAqC;AACrC,4DAA+B;AAC/B,oEAAuC;AAE1B,QAAA,YAAY,GAAG;IAC1B,IAAI,EAAJ,mBAAI;IACJ,QAAQ,EAAR,uBAAQ;IACR,OAAO,EAAP,sBAAO;CACR,CAAC;AAEF,sCAAsC;AACzB,QAAA,sBAAsB,GAAG,IAAA,gBAAM,kCACrC,uBAAQ,GAAK,sBAAO,GACzB,CAAC,MAAM,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC;IACtB,MAAM,EAAE,SAAS,CAAC,MAAM,CAAC,KAAK;IAC9B,iBAAiB,EAAE,SAAS,CAAC,iBAAiB;IAC9C,sBAAsB,EAAE,SAAS,CAAC,sBAAsB,CAAC,KAAK;IAC9D,OAAO,EAAE,IAAA,gBAAM;IACb,aAAa;IACb,SAAS,CAAC,OAAO,EACjB,CAAC,YAAY,EAAE,cAAc,EAAE,EAAE,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,CAC7D;CACF,CAAC,CACH,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/consts/environments/index.ts"],"names":[],"mappings":";;;;;;AAAA,iDAA6C;AAE7C,kEAAqC;AACrC,4DAA+B;AAC/B,oEAAuC;AAE1B,QAAA,YAAY,GAAG;IAC1B,IAAI,EAAJ,mBAAI;IACJ,QAAQ,EAAR,uBAAQ;IACR,OAAO,EAAP,sBAAO;CACR,CAAC;AAEF,sCAAsC;AACzB,QAAA,sBAAsB,GAAG,IAAA,gBAAM,kCACrC,uBAAQ,GAAK,sBAAO,GACzB,CAAC,MAAM,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC;IACtB,MAAM,EAAE,SAAS,CAAC,MAAM,CAAC,KAAK;IAC9B,iBAAiB,EAAE,SAAS,CAAC,iBAAiB;IAC9C,sBAAsB,EAAE,SAAS,CAAC,sBAAsB,CAAC,KAAK;IAC9D,uBAAuB,EAAE,SAAS,CAAC,uBAAuB;IAC1D,qBAAqB,EAAE,SAAS,CAAC,qBAAqB;IACtD,cAAc,EAAE,SAAS,CAAC,cAAc;IACxC,OAAO,EAAE,IAAA,gBAAM;IACb,aAAa;IACb,SAAS,CAAC,OAAO,EACjB,CAAC,YAAY,EAAE,cAAc,EAAE,EAAE,CAAC,cAAc,CAAC,KAAK,CAAC,KAAK,CAC7D;CACF,CAAC,CACH,CAAC"}