@circle-fin/bridge-kit 1.5.0 → 1.6.1
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/CHANGELOG.md +34 -0
- package/QUICKSTART.md +6 -6
- package/README.md +110 -13
- package/chains.cjs +544 -4
- package/chains.d.ts +205 -4
- package/chains.mjs +544 -4
- package/index.cjs +4578 -1649
- package/index.d.ts +5112 -2352
- package/index.mjs +4533 -1654
- package/package.json +4 -3
package/chains.d.ts
CHANGED
|
@@ -198,6 +198,7 @@ declare const ArcTestnet: {
|
|
|
198
198
|
readonly rpcEndpoints: readonly ["https://rpc.testnet.arc.network/"];
|
|
199
199
|
readonly eurcAddress: "0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a";
|
|
200
200
|
readonly usdcAddress: "0x3600000000000000000000000000000000000000";
|
|
201
|
+
readonly usdtAddress: null;
|
|
201
202
|
readonly cctp: {
|
|
202
203
|
readonly domain: 26;
|
|
203
204
|
readonly contracts: {
|
|
@@ -209,6 +210,10 @@ declare const ArcTestnet: {
|
|
|
209
210
|
readonly fastConfirmations: 1;
|
|
210
211
|
};
|
|
211
212
|
};
|
|
213
|
+
readonly forwarderSupported: {
|
|
214
|
+
readonly source: true;
|
|
215
|
+
readonly destination: true;
|
|
216
|
+
};
|
|
212
217
|
};
|
|
213
218
|
readonly kitContracts: {
|
|
214
219
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -236,6 +241,7 @@ declare const Arbitrum: {
|
|
|
236
241
|
readonly rpcEndpoints: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
237
242
|
readonly eurcAddress: null;
|
|
238
243
|
readonly usdcAddress: "0xaf88d065e77c8cc2239327c5edb3a432268e5831";
|
|
244
|
+
readonly usdtAddress: null;
|
|
239
245
|
readonly cctp: {
|
|
240
246
|
readonly domain: 3;
|
|
241
247
|
readonly contracts: {
|
|
@@ -253,9 +259,14 @@ declare const Arbitrum: {
|
|
|
253
259
|
readonly fastConfirmations: 1;
|
|
254
260
|
};
|
|
255
261
|
};
|
|
262
|
+
readonly forwarderSupported: {
|
|
263
|
+
readonly source: true;
|
|
264
|
+
readonly destination: true;
|
|
265
|
+
};
|
|
256
266
|
};
|
|
257
267
|
readonly kitContracts: {
|
|
258
268
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
269
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
259
270
|
};
|
|
260
271
|
};
|
|
261
272
|
|
|
@@ -280,6 +291,7 @@ declare const ArbitrumSepolia: {
|
|
|
280
291
|
readonly rpcEndpoints: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
281
292
|
readonly eurcAddress: null;
|
|
282
293
|
readonly usdcAddress: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d";
|
|
294
|
+
readonly usdtAddress: null;
|
|
283
295
|
readonly cctp: {
|
|
284
296
|
readonly domain: 3;
|
|
285
297
|
readonly contracts: {
|
|
@@ -297,6 +309,10 @@ declare const ArbitrumSepolia: {
|
|
|
297
309
|
readonly fastConfirmations: 1;
|
|
298
310
|
};
|
|
299
311
|
};
|
|
312
|
+
readonly forwarderSupported: {
|
|
313
|
+
readonly source: true;
|
|
314
|
+
readonly destination: true;
|
|
315
|
+
};
|
|
300
316
|
};
|
|
301
317
|
readonly kitContracts: {
|
|
302
318
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -324,6 +340,7 @@ declare const Avalanche: {
|
|
|
324
340
|
readonly rpcEndpoints: readonly ["https://api.avax.network/ext/bc/C/rpc"];
|
|
325
341
|
readonly eurcAddress: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
|
|
326
342
|
readonly usdcAddress: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
|
|
343
|
+
readonly usdtAddress: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
|
|
327
344
|
readonly cctp: {
|
|
328
345
|
readonly domain: 1;
|
|
329
346
|
readonly contracts: {
|
|
@@ -341,9 +358,14 @@ declare const Avalanche: {
|
|
|
341
358
|
readonly fastConfirmations: 1;
|
|
342
359
|
};
|
|
343
360
|
};
|
|
361
|
+
readonly forwarderSupported: {
|
|
362
|
+
readonly source: true;
|
|
363
|
+
readonly destination: true;
|
|
364
|
+
};
|
|
344
365
|
};
|
|
345
366
|
readonly kitContracts: {
|
|
346
367
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
368
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
347
369
|
};
|
|
348
370
|
};
|
|
349
371
|
|
|
@@ -367,6 +389,7 @@ declare const AvalancheFuji: {
|
|
|
367
389
|
readonly explorerUrl: "https://subnets-test.avax.network/c-chain/tx/{hash}";
|
|
368
390
|
readonly eurcAddress: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
|
|
369
391
|
readonly usdcAddress: "0x5425890298aed601595a70ab815c96711a31bc65";
|
|
392
|
+
readonly usdtAddress: null;
|
|
370
393
|
readonly cctp: {
|
|
371
394
|
readonly domain: 1;
|
|
372
395
|
readonly contracts: {
|
|
@@ -384,6 +407,10 @@ declare const AvalancheFuji: {
|
|
|
384
407
|
readonly fastConfirmations: 1;
|
|
385
408
|
};
|
|
386
409
|
};
|
|
410
|
+
readonly forwarderSupported: {
|
|
411
|
+
readonly source: true;
|
|
412
|
+
readonly destination: true;
|
|
413
|
+
};
|
|
387
414
|
};
|
|
388
415
|
readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
389
416
|
readonly kitContracts: {
|
|
@@ -412,6 +439,7 @@ declare const Base: {
|
|
|
412
439
|
readonly rpcEndpoints: readonly ["https://mainnet.base.org", "https://base.publicnode.com"];
|
|
413
440
|
readonly eurcAddress: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
|
|
414
441
|
readonly usdcAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
|
|
442
|
+
readonly usdtAddress: null;
|
|
415
443
|
readonly cctp: {
|
|
416
444
|
readonly domain: 6;
|
|
417
445
|
readonly contracts: {
|
|
@@ -429,9 +457,14 @@ declare const Base: {
|
|
|
429
457
|
readonly fastConfirmations: 1;
|
|
430
458
|
};
|
|
431
459
|
};
|
|
460
|
+
readonly forwarderSupported: {
|
|
461
|
+
readonly source: true;
|
|
462
|
+
readonly destination: true;
|
|
463
|
+
};
|
|
432
464
|
};
|
|
433
465
|
readonly kitContracts: {
|
|
434
466
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
467
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
435
468
|
};
|
|
436
469
|
};
|
|
437
470
|
|
|
@@ -456,6 +489,7 @@ declare const BaseSepolia: {
|
|
|
456
489
|
readonly rpcEndpoints: readonly ["https://sepolia.base.org"];
|
|
457
490
|
readonly eurcAddress: "0x808456652fdb597867f38412077A9182bf77359F";
|
|
458
491
|
readonly usdcAddress: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
|
|
492
|
+
readonly usdtAddress: null;
|
|
459
493
|
readonly cctp: {
|
|
460
494
|
readonly domain: 6;
|
|
461
495
|
readonly contracts: {
|
|
@@ -473,6 +507,10 @@ declare const BaseSepolia: {
|
|
|
473
507
|
readonly fastConfirmations: 1;
|
|
474
508
|
};
|
|
475
509
|
};
|
|
510
|
+
readonly forwarderSupported: {
|
|
511
|
+
readonly source: true;
|
|
512
|
+
readonly destination: true;
|
|
513
|
+
};
|
|
476
514
|
};
|
|
477
515
|
readonly kitContracts: {
|
|
478
516
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -500,6 +538,7 @@ declare const Codex: {
|
|
|
500
538
|
readonly rpcEndpoints: readonly ["https://rpc.codex.xyz"];
|
|
501
539
|
readonly eurcAddress: null;
|
|
502
540
|
readonly usdcAddress: "0xd996633a415985DBd7D6D12f4A4343E31f5037cf";
|
|
541
|
+
readonly usdtAddress: null;
|
|
503
542
|
readonly cctp: {
|
|
504
543
|
readonly domain: 12;
|
|
505
544
|
readonly contracts: {
|
|
@@ -511,6 +550,10 @@ declare const Codex: {
|
|
|
511
550
|
readonly fastConfirmations: 1;
|
|
512
551
|
};
|
|
513
552
|
};
|
|
553
|
+
readonly forwarderSupported: {
|
|
554
|
+
readonly source: true;
|
|
555
|
+
readonly destination: false;
|
|
556
|
+
};
|
|
514
557
|
};
|
|
515
558
|
readonly kitContracts: {
|
|
516
559
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -538,6 +581,7 @@ declare const CodexTestnet: {
|
|
|
538
581
|
readonly rpcEndpoints: readonly ["https://rpc.codex-stg.xyz"];
|
|
539
582
|
readonly eurcAddress: null;
|
|
540
583
|
readonly usdcAddress: "0x6d7f141b6819C2c9CC2f818e6ad549E7Ca090F8f";
|
|
584
|
+
readonly usdtAddress: null;
|
|
541
585
|
readonly cctp: {
|
|
542
586
|
readonly domain: 12;
|
|
543
587
|
readonly contracts: {
|
|
@@ -549,6 +593,10 @@ declare const CodexTestnet: {
|
|
|
549
593
|
readonly fastConfirmations: 1;
|
|
550
594
|
};
|
|
551
595
|
};
|
|
596
|
+
readonly forwarderSupported: {
|
|
597
|
+
readonly source: true;
|
|
598
|
+
readonly destination: false;
|
|
599
|
+
};
|
|
552
600
|
};
|
|
553
601
|
readonly kitContracts: {
|
|
554
602
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -576,6 +624,7 @@ declare const Ethereum: {
|
|
|
576
624
|
readonly rpcEndpoints: readonly ["https://eth.merkle.io", "https://ethereum.publicnode.com"];
|
|
577
625
|
readonly eurcAddress: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
|
|
578
626
|
readonly usdcAddress: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
|
|
627
|
+
readonly usdtAddress: "0xdac17f958d2ee523a2206206994597c13d831ec7";
|
|
579
628
|
readonly cctp: {
|
|
580
629
|
readonly domain: 0;
|
|
581
630
|
readonly contracts: {
|
|
@@ -593,9 +642,14 @@ declare const Ethereum: {
|
|
|
593
642
|
readonly fastConfirmations: 2;
|
|
594
643
|
};
|
|
595
644
|
};
|
|
645
|
+
readonly forwarderSupported: {
|
|
646
|
+
readonly source: true;
|
|
647
|
+
readonly destination: true;
|
|
648
|
+
};
|
|
596
649
|
};
|
|
597
650
|
readonly kitContracts: {
|
|
598
651
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
652
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
599
653
|
};
|
|
600
654
|
};
|
|
601
655
|
|
|
@@ -620,6 +674,7 @@ declare const EthereumSepolia: {
|
|
|
620
674
|
readonly rpcEndpoints: readonly ["https://sepolia.drpc.org"];
|
|
621
675
|
readonly eurcAddress: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
|
|
622
676
|
readonly usdcAddress: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
|
|
677
|
+
readonly usdtAddress: null;
|
|
623
678
|
readonly cctp: {
|
|
624
679
|
readonly domain: 0;
|
|
625
680
|
readonly contracts: {
|
|
@@ -637,6 +692,10 @@ declare const EthereumSepolia: {
|
|
|
637
692
|
readonly fastConfirmations: 2;
|
|
638
693
|
};
|
|
639
694
|
};
|
|
695
|
+
readonly forwarderSupported: {
|
|
696
|
+
readonly source: true;
|
|
697
|
+
readonly destination: true;
|
|
698
|
+
};
|
|
640
699
|
};
|
|
641
700
|
readonly kitContracts: {
|
|
642
701
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -666,6 +725,7 @@ declare const HyperEVM: {
|
|
|
666
725
|
readonly rpcEndpoints: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
667
726
|
readonly eurcAddress: null;
|
|
668
727
|
readonly usdcAddress: "0xb88339CB7199b77E23DB6E890353E22632Ba630f";
|
|
728
|
+
readonly usdtAddress: null;
|
|
669
729
|
readonly cctp: {
|
|
670
730
|
readonly domain: 19;
|
|
671
731
|
readonly contracts: {
|
|
@@ -677,9 +737,14 @@ declare const HyperEVM: {
|
|
|
677
737
|
readonly fastConfirmations: 1;
|
|
678
738
|
};
|
|
679
739
|
};
|
|
740
|
+
readonly forwarderSupported: {
|
|
741
|
+
readonly source: true;
|
|
742
|
+
readonly destination: true;
|
|
743
|
+
};
|
|
680
744
|
};
|
|
681
745
|
readonly kitContracts: {
|
|
682
746
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
747
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
683
748
|
};
|
|
684
749
|
};
|
|
685
750
|
|
|
@@ -705,6 +770,7 @@ declare const HyperEVMTestnet: {
|
|
|
705
770
|
readonly rpcEndpoints: readonly ["https://rpc.hyperliquid-testnet.xyz/evm"];
|
|
706
771
|
readonly eurcAddress: null;
|
|
707
772
|
readonly usdcAddress: "0x2B3370eE501B4a559b57D449569354196457D8Ab";
|
|
773
|
+
readonly usdtAddress: null;
|
|
708
774
|
readonly cctp: {
|
|
709
775
|
readonly domain: 19;
|
|
710
776
|
readonly contracts: {
|
|
@@ -716,6 +782,10 @@ declare const HyperEVMTestnet: {
|
|
|
716
782
|
readonly fastConfirmations: 1;
|
|
717
783
|
};
|
|
718
784
|
};
|
|
785
|
+
readonly forwarderSupported: {
|
|
786
|
+
readonly source: true;
|
|
787
|
+
readonly destination: true;
|
|
788
|
+
};
|
|
719
789
|
};
|
|
720
790
|
readonly kitContracts: {
|
|
721
791
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -745,6 +815,7 @@ declare const Ink: {
|
|
|
745
815
|
readonly rpcEndpoints: readonly ["https://rpc-gel.inkonchain.com", "https://rpc-qnd.inkonchain.com"];
|
|
746
816
|
readonly eurcAddress: null;
|
|
747
817
|
readonly usdcAddress: "0x2D270e6886d130D724215A266106e6832161EAEd";
|
|
818
|
+
readonly usdtAddress: null;
|
|
748
819
|
readonly cctp: {
|
|
749
820
|
readonly domain: 21;
|
|
750
821
|
readonly contracts: {
|
|
@@ -756,9 +827,14 @@ declare const Ink: {
|
|
|
756
827
|
readonly fastConfirmations: 1;
|
|
757
828
|
};
|
|
758
829
|
};
|
|
830
|
+
readonly forwarderSupported: {
|
|
831
|
+
readonly source: true;
|
|
832
|
+
readonly destination: true;
|
|
833
|
+
};
|
|
759
834
|
};
|
|
760
835
|
readonly kitContracts: {
|
|
761
836
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
837
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
762
838
|
};
|
|
763
839
|
};
|
|
764
840
|
|
|
@@ -784,6 +860,7 @@ declare const InkTestnet: {
|
|
|
784
860
|
readonly rpcEndpoints: readonly ["https://rpc-gel-sepolia.inkonchain.com", "https://rpc-qnd-sepolia.inkonchain.com"];
|
|
785
861
|
readonly eurcAddress: null;
|
|
786
862
|
readonly usdcAddress: "0xFabab97dCE620294D2B0b0e46C68964e326300Ac";
|
|
863
|
+
readonly usdtAddress: null;
|
|
787
864
|
readonly cctp: {
|
|
788
865
|
readonly domain: 21;
|
|
789
866
|
readonly contracts: {
|
|
@@ -795,6 +872,10 @@ declare const InkTestnet: {
|
|
|
795
872
|
readonly fastConfirmations: 1;
|
|
796
873
|
};
|
|
797
874
|
};
|
|
875
|
+
readonly forwarderSupported: {
|
|
876
|
+
readonly source: true;
|
|
877
|
+
readonly destination: true;
|
|
878
|
+
};
|
|
798
879
|
};
|
|
799
880
|
readonly kitContracts: {
|
|
800
881
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -822,6 +903,7 @@ declare const Linea: {
|
|
|
822
903
|
readonly rpcEndpoints: readonly ["https://rpc.linea.build"];
|
|
823
904
|
readonly eurcAddress: null;
|
|
824
905
|
readonly usdcAddress: "0x176211869ca2b568f2a7d4ee941e073a821ee1ff";
|
|
906
|
+
readonly usdtAddress: null;
|
|
825
907
|
readonly cctp: {
|
|
826
908
|
readonly domain: 11;
|
|
827
909
|
readonly contracts: {
|
|
@@ -833,9 +915,14 @@ declare const Linea: {
|
|
|
833
915
|
readonly fastConfirmations: 1;
|
|
834
916
|
};
|
|
835
917
|
};
|
|
918
|
+
readonly forwarderSupported: {
|
|
919
|
+
readonly source: true;
|
|
920
|
+
readonly destination: true;
|
|
921
|
+
};
|
|
836
922
|
};
|
|
837
923
|
readonly kitContracts: {
|
|
838
924
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
925
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
839
926
|
};
|
|
840
927
|
};
|
|
841
928
|
|
|
@@ -860,6 +947,7 @@ declare const LineaSepolia: {
|
|
|
860
947
|
readonly rpcEndpoints: readonly ["https://rpc.sepolia.linea.build"];
|
|
861
948
|
readonly eurcAddress: null;
|
|
862
949
|
readonly usdcAddress: "0xfece4462d57bd51a6a552365a011b95f0e16d9b7";
|
|
950
|
+
readonly usdtAddress: null;
|
|
863
951
|
readonly cctp: {
|
|
864
952
|
readonly domain: 11;
|
|
865
953
|
readonly contracts: {
|
|
@@ -871,6 +959,10 @@ declare const LineaSepolia: {
|
|
|
871
959
|
readonly fastConfirmations: 1;
|
|
872
960
|
};
|
|
873
961
|
};
|
|
962
|
+
readonly forwarderSupported: {
|
|
963
|
+
readonly source: true;
|
|
964
|
+
readonly destination: true;
|
|
965
|
+
};
|
|
874
966
|
};
|
|
875
967
|
readonly kitContracts: {
|
|
876
968
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -900,6 +992,7 @@ declare const Monad: {
|
|
|
900
992
|
readonly rpcEndpoints: readonly ["https://rpc.monad.xyz"];
|
|
901
993
|
readonly eurcAddress: null;
|
|
902
994
|
readonly usdcAddress: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603";
|
|
995
|
+
readonly usdtAddress: null;
|
|
903
996
|
readonly cctp: {
|
|
904
997
|
readonly domain: 15;
|
|
905
998
|
readonly contracts: {
|
|
@@ -911,9 +1004,14 @@ declare const Monad: {
|
|
|
911
1004
|
readonly fastConfirmations: 1;
|
|
912
1005
|
};
|
|
913
1006
|
};
|
|
1007
|
+
readonly forwarderSupported: {
|
|
1008
|
+
readonly source: true;
|
|
1009
|
+
readonly destination: true;
|
|
1010
|
+
};
|
|
914
1011
|
};
|
|
915
1012
|
readonly kitContracts: {
|
|
916
1013
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1014
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
917
1015
|
};
|
|
918
1016
|
};
|
|
919
1017
|
|
|
@@ -940,6 +1038,7 @@ declare const MonadTestnet: {
|
|
|
940
1038
|
readonly rpcEndpoints: readonly ["https://testnet-rpc.monad.xyz"];
|
|
941
1039
|
readonly eurcAddress: null;
|
|
942
1040
|
readonly usdcAddress: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
1041
|
+
readonly usdtAddress: null;
|
|
943
1042
|
readonly cctp: {
|
|
944
1043
|
readonly domain: 15;
|
|
945
1044
|
readonly contracts: {
|
|
@@ -951,6 +1050,10 @@ declare const MonadTestnet: {
|
|
|
951
1050
|
readonly fastConfirmations: 1;
|
|
952
1051
|
};
|
|
953
1052
|
};
|
|
1053
|
+
readonly forwarderSupported: {
|
|
1054
|
+
readonly source: true;
|
|
1055
|
+
readonly destination: true;
|
|
1056
|
+
};
|
|
954
1057
|
};
|
|
955
1058
|
readonly kitContracts: {
|
|
956
1059
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -978,6 +1081,7 @@ declare const Optimism: {
|
|
|
978
1081
|
readonly rpcEndpoints: readonly ["https://mainnet.optimism.io"];
|
|
979
1082
|
readonly eurcAddress: null;
|
|
980
1083
|
readonly usdcAddress: "0x0b2c639c533813f4aa9d7837caf62653d097ff85";
|
|
1084
|
+
readonly usdtAddress: null;
|
|
981
1085
|
readonly cctp: {
|
|
982
1086
|
readonly domain: 2;
|
|
983
1087
|
readonly contracts: {
|
|
@@ -995,9 +1099,14 @@ declare const Optimism: {
|
|
|
995
1099
|
readonly fastConfirmations: 1;
|
|
996
1100
|
};
|
|
997
1101
|
};
|
|
1102
|
+
readonly forwarderSupported: {
|
|
1103
|
+
readonly source: true;
|
|
1104
|
+
readonly destination: true;
|
|
1105
|
+
};
|
|
998
1106
|
};
|
|
999
1107
|
readonly kitContracts: {
|
|
1000
1108
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1109
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1001
1110
|
};
|
|
1002
1111
|
};
|
|
1003
1112
|
|
|
@@ -1022,6 +1131,7 @@ declare const OptimismSepolia: {
|
|
|
1022
1131
|
readonly rpcEndpoints: readonly ["https://sepolia.optimism.io"];
|
|
1023
1132
|
readonly eurcAddress: null;
|
|
1024
1133
|
readonly usdcAddress: "0x5fd84259d66Cd46123540766Be93DFE6D43130D7";
|
|
1134
|
+
readonly usdtAddress: null;
|
|
1025
1135
|
readonly cctp: {
|
|
1026
1136
|
readonly domain: 2;
|
|
1027
1137
|
readonly contracts: {
|
|
@@ -1039,6 +1149,10 @@ declare const OptimismSepolia: {
|
|
|
1039
1149
|
readonly fastConfirmations: 1;
|
|
1040
1150
|
};
|
|
1041
1151
|
};
|
|
1152
|
+
readonly forwarderSupported: {
|
|
1153
|
+
readonly source: true;
|
|
1154
|
+
readonly destination: true;
|
|
1155
|
+
};
|
|
1042
1156
|
};
|
|
1043
1157
|
readonly kitContracts: {
|
|
1044
1158
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1068,6 +1182,7 @@ declare const Plume: {
|
|
|
1068
1182
|
readonly rpcEndpoints: readonly ["https://rpc.plume.org"];
|
|
1069
1183
|
readonly eurcAddress: null;
|
|
1070
1184
|
readonly usdcAddress: "0x222365EF19F7947e5484218551B56bb3965Aa7aF";
|
|
1185
|
+
readonly usdtAddress: null;
|
|
1071
1186
|
readonly cctp: {
|
|
1072
1187
|
readonly domain: 22;
|
|
1073
1188
|
readonly contracts: {
|
|
@@ -1079,9 +1194,14 @@ declare const Plume: {
|
|
|
1079
1194
|
readonly fastConfirmations: 1;
|
|
1080
1195
|
};
|
|
1081
1196
|
};
|
|
1197
|
+
readonly forwarderSupported: {
|
|
1198
|
+
readonly source: true;
|
|
1199
|
+
readonly destination: false;
|
|
1200
|
+
};
|
|
1082
1201
|
};
|
|
1083
1202
|
readonly kitContracts: {
|
|
1084
1203
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1204
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1085
1205
|
};
|
|
1086
1206
|
};
|
|
1087
1207
|
|
|
@@ -1107,6 +1227,7 @@ declare const PlumeTestnet: {
|
|
|
1107
1227
|
readonly rpcEndpoints: readonly ["https://testnet-rpc.plume.org"];
|
|
1108
1228
|
readonly eurcAddress: null;
|
|
1109
1229
|
readonly usdcAddress: "0xcB5f30e335672893c7eb944B374c196392C19D18";
|
|
1230
|
+
readonly usdtAddress: null;
|
|
1110
1231
|
readonly cctp: {
|
|
1111
1232
|
readonly domain: 22;
|
|
1112
1233
|
readonly contracts: {
|
|
@@ -1118,6 +1239,10 @@ declare const PlumeTestnet: {
|
|
|
1118
1239
|
readonly fastConfirmations: 1;
|
|
1119
1240
|
};
|
|
1120
1241
|
};
|
|
1242
|
+
readonly forwarderSupported: {
|
|
1243
|
+
readonly source: true;
|
|
1244
|
+
readonly destination: false;
|
|
1245
|
+
};
|
|
1121
1246
|
};
|
|
1122
1247
|
readonly kitContracts: {
|
|
1123
1248
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1142,9 +1267,10 @@ declare const Polygon: {
|
|
|
1142
1267
|
readonly chainId: 137;
|
|
1143
1268
|
readonly isTestnet: false;
|
|
1144
1269
|
readonly explorerUrl: "https://polygonscan.com/tx/{hash}";
|
|
1145
|
-
readonly rpcEndpoints: readonly ["https://polygon
|
|
1270
|
+
readonly rpcEndpoints: readonly ["https://polygon.publicnode.com", "https://polygon.drpc.org"];
|
|
1146
1271
|
readonly eurcAddress: null;
|
|
1147
1272
|
readonly usdcAddress: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
1273
|
+
readonly usdtAddress: null;
|
|
1148
1274
|
readonly cctp: {
|
|
1149
1275
|
readonly domain: 7;
|
|
1150
1276
|
readonly contracts: {
|
|
@@ -1162,9 +1288,14 @@ declare const Polygon: {
|
|
|
1162
1288
|
readonly fastConfirmations: 13;
|
|
1163
1289
|
};
|
|
1164
1290
|
};
|
|
1291
|
+
readonly forwarderSupported: {
|
|
1292
|
+
readonly source: true;
|
|
1293
|
+
readonly destination: true;
|
|
1294
|
+
};
|
|
1165
1295
|
};
|
|
1166
1296
|
readonly kitContracts: {
|
|
1167
1297
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1298
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1168
1299
|
};
|
|
1169
1300
|
};
|
|
1170
1301
|
|
|
@@ -1189,6 +1320,7 @@ declare const PolygonAmoy: {
|
|
|
1189
1320
|
readonly rpcEndpoints: readonly ["https://rpc-amoy.polygon.technology"];
|
|
1190
1321
|
readonly eurcAddress: null;
|
|
1191
1322
|
readonly usdcAddress: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
|
|
1323
|
+
readonly usdtAddress: null;
|
|
1192
1324
|
readonly cctp: {
|
|
1193
1325
|
readonly domain: 7;
|
|
1194
1326
|
readonly contracts: {
|
|
@@ -1206,6 +1338,10 @@ declare const PolygonAmoy: {
|
|
|
1206
1338
|
readonly fastConfirmations: 13;
|
|
1207
1339
|
};
|
|
1208
1340
|
};
|
|
1341
|
+
readonly forwarderSupported: {
|
|
1342
|
+
readonly source: true;
|
|
1343
|
+
readonly destination: true;
|
|
1344
|
+
};
|
|
1209
1345
|
};
|
|
1210
1346
|
readonly kitContracts: {
|
|
1211
1347
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1235,6 +1371,7 @@ declare const Sei: {
|
|
|
1235
1371
|
readonly rpcEndpoints: readonly ["https://evm-rpc.sei-apis.com"];
|
|
1236
1372
|
readonly eurcAddress: null;
|
|
1237
1373
|
readonly usdcAddress: "0xe15fC38F6D8c56aF07bbCBe3BAf5708A2Bf42392";
|
|
1374
|
+
readonly usdtAddress: null;
|
|
1238
1375
|
readonly cctp: {
|
|
1239
1376
|
readonly domain: 16;
|
|
1240
1377
|
readonly contracts: {
|
|
@@ -1246,9 +1383,14 @@ declare const Sei: {
|
|
|
1246
1383
|
readonly fastConfirmations: 1;
|
|
1247
1384
|
};
|
|
1248
1385
|
};
|
|
1386
|
+
readonly forwarderSupported: {
|
|
1387
|
+
readonly source: true;
|
|
1388
|
+
readonly destination: true;
|
|
1389
|
+
};
|
|
1249
1390
|
};
|
|
1250
1391
|
readonly kitContracts: {
|
|
1251
1392
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1393
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1252
1394
|
};
|
|
1253
1395
|
};
|
|
1254
1396
|
|
|
@@ -1274,6 +1416,7 @@ declare const SeiTestnet: {
|
|
|
1274
1416
|
readonly rpcEndpoints: readonly ["https://evm-rpc-testnet.sei-apis.com"];
|
|
1275
1417
|
readonly eurcAddress: null;
|
|
1276
1418
|
readonly usdcAddress: "0x4fCF1784B31630811181f670Aea7A7bEF803eaED";
|
|
1419
|
+
readonly usdtAddress: null;
|
|
1277
1420
|
readonly cctp: {
|
|
1278
1421
|
readonly domain: 16;
|
|
1279
1422
|
readonly contracts: {
|
|
@@ -1285,6 +1428,10 @@ declare const SeiTestnet: {
|
|
|
1285
1428
|
readonly fastConfirmations: 1;
|
|
1286
1429
|
};
|
|
1287
1430
|
};
|
|
1431
|
+
readonly forwarderSupported: {
|
|
1432
|
+
readonly source: true;
|
|
1433
|
+
readonly destination: true;
|
|
1434
|
+
};
|
|
1288
1435
|
};
|
|
1289
1436
|
readonly kitContracts: {
|
|
1290
1437
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1312,6 +1459,7 @@ declare const Sonic: {
|
|
|
1312
1459
|
readonly rpcEndpoints: readonly ["https://rpc.soniclabs.com"];
|
|
1313
1460
|
readonly eurcAddress: null;
|
|
1314
1461
|
readonly usdcAddress: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894";
|
|
1462
|
+
readonly usdtAddress: null;
|
|
1315
1463
|
readonly cctp: {
|
|
1316
1464
|
readonly domain: 13;
|
|
1317
1465
|
readonly contracts: {
|
|
@@ -1323,9 +1471,14 @@ declare const Sonic: {
|
|
|
1323
1471
|
readonly fastConfirmations: 1;
|
|
1324
1472
|
};
|
|
1325
1473
|
};
|
|
1474
|
+
readonly forwarderSupported: {
|
|
1475
|
+
readonly source: true;
|
|
1476
|
+
readonly destination: true;
|
|
1477
|
+
};
|
|
1326
1478
|
};
|
|
1327
1479
|
readonly kitContracts: {
|
|
1328
1480
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1481
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1329
1482
|
};
|
|
1330
1483
|
};
|
|
1331
1484
|
|
|
@@ -1350,6 +1503,7 @@ declare const SonicTestnet: {
|
|
|
1350
1503
|
readonly rpcEndpoints: readonly ["https://rpc.testnet.soniclabs.com"];
|
|
1351
1504
|
readonly eurcAddress: null;
|
|
1352
1505
|
readonly usdcAddress: "0x0BA304580ee7c9a980CF72e55f5Ed2E9fd30Bc51";
|
|
1506
|
+
readonly usdtAddress: null;
|
|
1353
1507
|
readonly cctp: {
|
|
1354
1508
|
readonly domain: 13;
|
|
1355
1509
|
readonly contracts: {
|
|
@@ -1361,6 +1515,10 @@ declare const SonicTestnet: {
|
|
|
1361
1515
|
readonly fastConfirmations: 1;
|
|
1362
1516
|
};
|
|
1363
1517
|
};
|
|
1518
|
+
readonly forwarderSupported: {
|
|
1519
|
+
readonly source: true;
|
|
1520
|
+
readonly destination: true;
|
|
1521
|
+
};
|
|
1364
1522
|
};
|
|
1365
1523
|
readonly kitContracts: {
|
|
1366
1524
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1387,6 +1545,7 @@ declare const Solana: {
|
|
|
1387
1545
|
readonly rpcEndpoints: readonly ["https://api.mainnet-beta.solana.com"];
|
|
1388
1546
|
readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
|
|
1389
1547
|
readonly usdcAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
|
|
1548
|
+
readonly usdtAddress: "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB";
|
|
1390
1549
|
readonly cctp: {
|
|
1391
1550
|
readonly domain: 5;
|
|
1392
1551
|
readonly contracts: {
|
|
@@ -1404,6 +1563,10 @@ declare const Solana: {
|
|
|
1404
1563
|
readonly fastConfirmations: 3;
|
|
1405
1564
|
};
|
|
1406
1565
|
};
|
|
1566
|
+
readonly forwarderSupported: {
|
|
1567
|
+
readonly source: true;
|
|
1568
|
+
readonly destination: false;
|
|
1569
|
+
};
|
|
1407
1570
|
};
|
|
1408
1571
|
readonly kitContracts: {
|
|
1409
1572
|
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
@@ -1429,6 +1592,7 @@ declare const SolanaDevnet: {
|
|
|
1429
1592
|
readonly explorerUrl: "https://solscan.io/tx/{hash}?cluster=devnet";
|
|
1430
1593
|
readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
|
|
1431
1594
|
readonly usdcAddress: "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU";
|
|
1595
|
+
readonly usdtAddress: null;
|
|
1432
1596
|
readonly cctp: {
|
|
1433
1597
|
readonly domain: 5;
|
|
1434
1598
|
readonly contracts: {
|
|
@@ -1446,6 +1610,10 @@ declare const SolanaDevnet: {
|
|
|
1446
1610
|
readonly fastConfirmations: 3;
|
|
1447
1611
|
};
|
|
1448
1612
|
};
|
|
1613
|
+
readonly forwarderSupported: {
|
|
1614
|
+
readonly source: true;
|
|
1615
|
+
readonly destination: false;
|
|
1616
|
+
};
|
|
1449
1617
|
};
|
|
1450
1618
|
readonly kitContracts: {
|
|
1451
1619
|
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
@@ -1471,9 +1639,10 @@ declare const Unichain: {
|
|
|
1471
1639
|
readonly chainId: 130;
|
|
1472
1640
|
readonly isTestnet: false;
|
|
1473
1641
|
readonly explorerUrl: "https://unichain.blockscout.com/tx/{hash}";
|
|
1474
|
-
readonly rpcEndpoints: readonly ["https://
|
|
1642
|
+
readonly rpcEndpoints: readonly ["https://mainnet.unichain.org"];
|
|
1475
1643
|
readonly eurcAddress: null;
|
|
1476
1644
|
readonly usdcAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
1645
|
+
readonly usdtAddress: null;
|
|
1477
1646
|
readonly cctp: {
|
|
1478
1647
|
readonly domain: 10;
|
|
1479
1648
|
readonly contracts: {
|
|
@@ -1491,9 +1660,14 @@ declare const Unichain: {
|
|
|
1491
1660
|
readonly fastConfirmations: 1;
|
|
1492
1661
|
};
|
|
1493
1662
|
};
|
|
1663
|
+
readonly forwarderSupported: {
|
|
1664
|
+
readonly source: true;
|
|
1665
|
+
readonly destination: true;
|
|
1666
|
+
};
|
|
1494
1667
|
};
|
|
1495
1668
|
readonly kitContracts: {
|
|
1496
1669
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1670
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1497
1671
|
};
|
|
1498
1672
|
};
|
|
1499
1673
|
|
|
@@ -1518,6 +1692,7 @@ declare const UnichainSepolia: {
|
|
|
1518
1692
|
readonly rpcEndpoints: readonly ["https://sepolia.unichain.org"];
|
|
1519
1693
|
readonly eurcAddress: null;
|
|
1520
1694
|
readonly usdcAddress: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
1695
|
+
readonly usdtAddress: null;
|
|
1521
1696
|
readonly cctp: {
|
|
1522
1697
|
readonly domain: 10;
|
|
1523
1698
|
readonly contracts: {
|
|
@@ -1535,6 +1710,10 @@ declare const UnichainSepolia: {
|
|
|
1535
1710
|
readonly fastConfirmations: 1;
|
|
1536
1711
|
};
|
|
1537
1712
|
};
|
|
1713
|
+
readonly forwarderSupported: {
|
|
1714
|
+
readonly source: true;
|
|
1715
|
+
readonly destination: true;
|
|
1716
|
+
};
|
|
1538
1717
|
};
|
|
1539
1718
|
readonly kitContracts: {
|
|
1540
1719
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1561,7 +1740,8 @@ declare const WorldChain: {
|
|
|
1561
1740
|
readonly explorerUrl: "https://worldscan.org/tx/{hash}";
|
|
1562
1741
|
readonly rpcEndpoints: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
|
|
1563
1742
|
readonly eurcAddress: null;
|
|
1564
|
-
readonly usdcAddress: "
|
|
1743
|
+
readonly usdcAddress: "0x79A02482A880bCE3F13e09Da970dC34db4CD24d1";
|
|
1744
|
+
readonly usdtAddress: null;
|
|
1565
1745
|
readonly cctp: {
|
|
1566
1746
|
readonly domain: 14;
|
|
1567
1747
|
readonly contracts: {
|
|
@@ -1573,9 +1753,14 @@ declare const WorldChain: {
|
|
|
1573
1753
|
readonly fastConfirmations: 1;
|
|
1574
1754
|
};
|
|
1575
1755
|
};
|
|
1756
|
+
readonly forwarderSupported: {
|
|
1757
|
+
readonly source: true;
|
|
1758
|
+
readonly destination: true;
|
|
1759
|
+
};
|
|
1576
1760
|
};
|
|
1577
1761
|
readonly kitContracts: {
|
|
1578
1762
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1763
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1579
1764
|
};
|
|
1580
1765
|
};
|
|
1581
1766
|
|
|
@@ -1600,6 +1785,7 @@ declare const WorldChainSepolia: {
|
|
|
1600
1785
|
readonly rpcEndpoints: readonly ["https://worldchain-sepolia.drpc.org", "https://worldchain-sepolia.g.alchemy.com/public"];
|
|
1601
1786
|
readonly eurcAddress: null;
|
|
1602
1787
|
readonly usdcAddress: "0x66145f38cBAC35Ca6F1Dfb4914dF98F1614aeA88";
|
|
1788
|
+
readonly usdtAddress: null;
|
|
1603
1789
|
readonly cctp: {
|
|
1604
1790
|
readonly domain: 14;
|
|
1605
1791
|
readonly contracts: {
|
|
@@ -1611,6 +1797,10 @@ declare const WorldChainSepolia: {
|
|
|
1611
1797
|
readonly fastConfirmations: 1;
|
|
1612
1798
|
};
|
|
1613
1799
|
};
|
|
1800
|
+
readonly forwarderSupported: {
|
|
1801
|
+
readonly source: true;
|
|
1802
|
+
readonly destination: true;
|
|
1803
|
+
};
|
|
1614
1804
|
};
|
|
1615
1805
|
readonly kitContracts: {
|
|
1616
1806
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1637,9 +1827,10 @@ declare const XDC: {
|
|
|
1637
1827
|
readonly chainId: 50;
|
|
1638
1828
|
readonly isTestnet: false;
|
|
1639
1829
|
readonly explorerUrl: "https://xdcscan.io/tx/{hash}";
|
|
1640
|
-
readonly rpcEndpoints: readonly ["https://erpc.xinfin.network"];
|
|
1830
|
+
readonly rpcEndpoints: readonly ["https://erpc.xdcrpc.com", "https://erpc.xinfin.network"];
|
|
1641
1831
|
readonly eurcAddress: null;
|
|
1642
1832
|
readonly usdcAddress: "0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1";
|
|
1833
|
+
readonly usdtAddress: null;
|
|
1643
1834
|
readonly cctp: {
|
|
1644
1835
|
readonly domain: 18;
|
|
1645
1836
|
readonly contracts: {
|
|
@@ -1651,9 +1842,14 @@ declare const XDC: {
|
|
|
1651
1842
|
readonly fastConfirmations: 3;
|
|
1652
1843
|
};
|
|
1653
1844
|
};
|
|
1845
|
+
readonly forwarderSupported: {
|
|
1846
|
+
readonly source: true;
|
|
1847
|
+
readonly destination: false;
|
|
1848
|
+
};
|
|
1654
1849
|
};
|
|
1655
1850
|
readonly kitContracts: {
|
|
1656
1851
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1852
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
1657
1853
|
};
|
|
1658
1854
|
};
|
|
1659
1855
|
|
|
@@ -1678,6 +1874,7 @@ declare const XDCApothem: {
|
|
|
1678
1874
|
readonly rpcEndpoints: readonly ["https://erpc.apothem.network"];
|
|
1679
1875
|
readonly eurcAddress: null;
|
|
1680
1876
|
readonly usdcAddress: "0xb5AB69F7bBada22B28e79C8FFAECe55eF1c771D4";
|
|
1877
|
+
readonly usdtAddress: null;
|
|
1681
1878
|
readonly cctp: {
|
|
1682
1879
|
readonly domain: 18;
|
|
1683
1880
|
readonly contracts: {
|
|
@@ -1689,6 +1886,10 @@ declare const XDCApothem: {
|
|
|
1689
1886
|
readonly fastConfirmations: 1;
|
|
1690
1887
|
};
|
|
1691
1888
|
};
|
|
1889
|
+
readonly forwarderSupported: {
|
|
1890
|
+
readonly source: true;
|
|
1891
|
+
readonly destination: false;
|
|
1892
|
+
};
|
|
1692
1893
|
};
|
|
1693
1894
|
readonly kitContracts: {
|
|
1694
1895
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|