@circle-fin/bridge-kit 1.5.0 → 1.6.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/CHANGELOG.md +28 -0
- package/README.md +107 -10
- package/chains.cjs +175 -3
- package/chains.d.ts +151 -3
- package/chains.mjs +175 -3
- package/index.cjs +1925 -145
- package/index.d.ts +4082 -2171
- package/index.mjs +1919 -148
- package/package.json +4 -3
package/chains.d.ts
CHANGED
|
@@ -209,6 +209,10 @@ declare const ArcTestnet: {
|
|
|
209
209
|
readonly fastConfirmations: 1;
|
|
210
210
|
};
|
|
211
211
|
};
|
|
212
|
+
readonly forwarderSupported: {
|
|
213
|
+
readonly source: true;
|
|
214
|
+
readonly destination: true;
|
|
215
|
+
};
|
|
212
216
|
};
|
|
213
217
|
readonly kitContracts: {
|
|
214
218
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -253,6 +257,10 @@ declare const Arbitrum: {
|
|
|
253
257
|
readonly fastConfirmations: 1;
|
|
254
258
|
};
|
|
255
259
|
};
|
|
260
|
+
readonly forwarderSupported: {
|
|
261
|
+
readonly source: true;
|
|
262
|
+
readonly destination: true;
|
|
263
|
+
};
|
|
256
264
|
};
|
|
257
265
|
readonly kitContracts: {
|
|
258
266
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -297,6 +305,10 @@ declare const ArbitrumSepolia: {
|
|
|
297
305
|
readonly fastConfirmations: 1;
|
|
298
306
|
};
|
|
299
307
|
};
|
|
308
|
+
readonly forwarderSupported: {
|
|
309
|
+
readonly source: true;
|
|
310
|
+
readonly destination: true;
|
|
311
|
+
};
|
|
300
312
|
};
|
|
301
313
|
readonly kitContracts: {
|
|
302
314
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -341,6 +353,10 @@ declare const Avalanche: {
|
|
|
341
353
|
readonly fastConfirmations: 1;
|
|
342
354
|
};
|
|
343
355
|
};
|
|
356
|
+
readonly forwarderSupported: {
|
|
357
|
+
readonly source: true;
|
|
358
|
+
readonly destination: true;
|
|
359
|
+
};
|
|
344
360
|
};
|
|
345
361
|
readonly kitContracts: {
|
|
346
362
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -384,6 +400,10 @@ declare const AvalancheFuji: {
|
|
|
384
400
|
readonly fastConfirmations: 1;
|
|
385
401
|
};
|
|
386
402
|
};
|
|
403
|
+
readonly forwarderSupported: {
|
|
404
|
+
readonly source: true;
|
|
405
|
+
readonly destination: true;
|
|
406
|
+
};
|
|
387
407
|
};
|
|
388
408
|
readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
389
409
|
readonly kitContracts: {
|
|
@@ -429,6 +449,10 @@ declare const Base: {
|
|
|
429
449
|
readonly fastConfirmations: 1;
|
|
430
450
|
};
|
|
431
451
|
};
|
|
452
|
+
readonly forwarderSupported: {
|
|
453
|
+
readonly source: true;
|
|
454
|
+
readonly destination: true;
|
|
455
|
+
};
|
|
432
456
|
};
|
|
433
457
|
readonly kitContracts: {
|
|
434
458
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -473,6 +497,10 @@ declare const BaseSepolia: {
|
|
|
473
497
|
readonly fastConfirmations: 1;
|
|
474
498
|
};
|
|
475
499
|
};
|
|
500
|
+
readonly forwarderSupported: {
|
|
501
|
+
readonly source: true;
|
|
502
|
+
readonly destination: true;
|
|
503
|
+
};
|
|
476
504
|
};
|
|
477
505
|
readonly kitContracts: {
|
|
478
506
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -511,6 +539,10 @@ declare const Codex: {
|
|
|
511
539
|
readonly fastConfirmations: 1;
|
|
512
540
|
};
|
|
513
541
|
};
|
|
542
|
+
readonly forwarderSupported: {
|
|
543
|
+
readonly source: true;
|
|
544
|
+
readonly destination: false;
|
|
545
|
+
};
|
|
514
546
|
};
|
|
515
547
|
readonly kitContracts: {
|
|
516
548
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -549,6 +581,10 @@ declare const CodexTestnet: {
|
|
|
549
581
|
readonly fastConfirmations: 1;
|
|
550
582
|
};
|
|
551
583
|
};
|
|
584
|
+
readonly forwarderSupported: {
|
|
585
|
+
readonly source: true;
|
|
586
|
+
readonly destination: false;
|
|
587
|
+
};
|
|
552
588
|
};
|
|
553
589
|
readonly kitContracts: {
|
|
554
590
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -593,6 +629,10 @@ declare const Ethereum: {
|
|
|
593
629
|
readonly fastConfirmations: 2;
|
|
594
630
|
};
|
|
595
631
|
};
|
|
632
|
+
readonly forwarderSupported: {
|
|
633
|
+
readonly source: true;
|
|
634
|
+
readonly destination: true;
|
|
635
|
+
};
|
|
596
636
|
};
|
|
597
637
|
readonly kitContracts: {
|
|
598
638
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -637,6 +677,10 @@ declare const EthereumSepolia: {
|
|
|
637
677
|
readonly fastConfirmations: 2;
|
|
638
678
|
};
|
|
639
679
|
};
|
|
680
|
+
readonly forwarderSupported: {
|
|
681
|
+
readonly source: true;
|
|
682
|
+
readonly destination: true;
|
|
683
|
+
};
|
|
640
684
|
};
|
|
641
685
|
readonly kitContracts: {
|
|
642
686
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -677,6 +721,10 @@ declare const HyperEVM: {
|
|
|
677
721
|
readonly fastConfirmations: 1;
|
|
678
722
|
};
|
|
679
723
|
};
|
|
724
|
+
readonly forwarderSupported: {
|
|
725
|
+
readonly source: true;
|
|
726
|
+
readonly destination: true;
|
|
727
|
+
};
|
|
680
728
|
};
|
|
681
729
|
readonly kitContracts: {
|
|
682
730
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -716,6 +764,10 @@ declare const HyperEVMTestnet: {
|
|
|
716
764
|
readonly fastConfirmations: 1;
|
|
717
765
|
};
|
|
718
766
|
};
|
|
767
|
+
readonly forwarderSupported: {
|
|
768
|
+
readonly source: true;
|
|
769
|
+
readonly destination: true;
|
|
770
|
+
};
|
|
719
771
|
};
|
|
720
772
|
readonly kitContracts: {
|
|
721
773
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -756,6 +808,10 @@ declare const Ink: {
|
|
|
756
808
|
readonly fastConfirmations: 1;
|
|
757
809
|
};
|
|
758
810
|
};
|
|
811
|
+
readonly forwarderSupported: {
|
|
812
|
+
readonly source: true;
|
|
813
|
+
readonly destination: true;
|
|
814
|
+
};
|
|
759
815
|
};
|
|
760
816
|
readonly kitContracts: {
|
|
761
817
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -795,6 +851,10 @@ declare const InkTestnet: {
|
|
|
795
851
|
readonly fastConfirmations: 1;
|
|
796
852
|
};
|
|
797
853
|
};
|
|
854
|
+
readonly forwarderSupported: {
|
|
855
|
+
readonly source: true;
|
|
856
|
+
readonly destination: true;
|
|
857
|
+
};
|
|
798
858
|
};
|
|
799
859
|
readonly kitContracts: {
|
|
800
860
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -833,6 +893,10 @@ declare const Linea: {
|
|
|
833
893
|
readonly fastConfirmations: 1;
|
|
834
894
|
};
|
|
835
895
|
};
|
|
896
|
+
readonly forwarderSupported: {
|
|
897
|
+
readonly source: true;
|
|
898
|
+
readonly destination: true;
|
|
899
|
+
};
|
|
836
900
|
};
|
|
837
901
|
readonly kitContracts: {
|
|
838
902
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -871,6 +935,10 @@ declare const LineaSepolia: {
|
|
|
871
935
|
readonly fastConfirmations: 1;
|
|
872
936
|
};
|
|
873
937
|
};
|
|
938
|
+
readonly forwarderSupported: {
|
|
939
|
+
readonly source: true;
|
|
940
|
+
readonly destination: true;
|
|
941
|
+
};
|
|
874
942
|
};
|
|
875
943
|
readonly kitContracts: {
|
|
876
944
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -911,6 +979,10 @@ declare const Monad: {
|
|
|
911
979
|
readonly fastConfirmations: 1;
|
|
912
980
|
};
|
|
913
981
|
};
|
|
982
|
+
readonly forwarderSupported: {
|
|
983
|
+
readonly source: true;
|
|
984
|
+
readonly destination: true;
|
|
985
|
+
};
|
|
914
986
|
};
|
|
915
987
|
readonly kitContracts: {
|
|
916
988
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -951,6 +1023,10 @@ declare const MonadTestnet: {
|
|
|
951
1023
|
readonly fastConfirmations: 1;
|
|
952
1024
|
};
|
|
953
1025
|
};
|
|
1026
|
+
readonly forwarderSupported: {
|
|
1027
|
+
readonly source: true;
|
|
1028
|
+
readonly destination: true;
|
|
1029
|
+
};
|
|
954
1030
|
};
|
|
955
1031
|
readonly kitContracts: {
|
|
956
1032
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -995,6 +1071,10 @@ declare const Optimism: {
|
|
|
995
1071
|
readonly fastConfirmations: 1;
|
|
996
1072
|
};
|
|
997
1073
|
};
|
|
1074
|
+
readonly forwarderSupported: {
|
|
1075
|
+
readonly source: true;
|
|
1076
|
+
readonly destination: true;
|
|
1077
|
+
};
|
|
998
1078
|
};
|
|
999
1079
|
readonly kitContracts: {
|
|
1000
1080
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1039,6 +1119,10 @@ declare const OptimismSepolia: {
|
|
|
1039
1119
|
readonly fastConfirmations: 1;
|
|
1040
1120
|
};
|
|
1041
1121
|
};
|
|
1122
|
+
readonly forwarderSupported: {
|
|
1123
|
+
readonly source: true;
|
|
1124
|
+
readonly destination: true;
|
|
1125
|
+
};
|
|
1042
1126
|
};
|
|
1043
1127
|
readonly kitContracts: {
|
|
1044
1128
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1079,6 +1163,10 @@ declare const Plume: {
|
|
|
1079
1163
|
readonly fastConfirmations: 1;
|
|
1080
1164
|
};
|
|
1081
1165
|
};
|
|
1166
|
+
readonly forwarderSupported: {
|
|
1167
|
+
readonly source: true;
|
|
1168
|
+
readonly destination: false;
|
|
1169
|
+
};
|
|
1082
1170
|
};
|
|
1083
1171
|
readonly kitContracts: {
|
|
1084
1172
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1118,6 +1206,10 @@ declare const PlumeTestnet: {
|
|
|
1118
1206
|
readonly fastConfirmations: 1;
|
|
1119
1207
|
};
|
|
1120
1208
|
};
|
|
1209
|
+
readonly forwarderSupported: {
|
|
1210
|
+
readonly source: true;
|
|
1211
|
+
readonly destination: false;
|
|
1212
|
+
};
|
|
1121
1213
|
};
|
|
1122
1214
|
readonly kitContracts: {
|
|
1123
1215
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1162,6 +1254,10 @@ declare const Polygon: {
|
|
|
1162
1254
|
readonly fastConfirmations: 13;
|
|
1163
1255
|
};
|
|
1164
1256
|
};
|
|
1257
|
+
readonly forwarderSupported: {
|
|
1258
|
+
readonly source: true;
|
|
1259
|
+
readonly destination: true;
|
|
1260
|
+
};
|
|
1165
1261
|
};
|
|
1166
1262
|
readonly kitContracts: {
|
|
1167
1263
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1206,6 +1302,10 @@ declare const PolygonAmoy: {
|
|
|
1206
1302
|
readonly fastConfirmations: 13;
|
|
1207
1303
|
};
|
|
1208
1304
|
};
|
|
1305
|
+
readonly forwarderSupported: {
|
|
1306
|
+
readonly source: true;
|
|
1307
|
+
readonly destination: true;
|
|
1308
|
+
};
|
|
1209
1309
|
};
|
|
1210
1310
|
readonly kitContracts: {
|
|
1211
1311
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1246,6 +1346,10 @@ declare const Sei: {
|
|
|
1246
1346
|
readonly fastConfirmations: 1;
|
|
1247
1347
|
};
|
|
1248
1348
|
};
|
|
1349
|
+
readonly forwarderSupported: {
|
|
1350
|
+
readonly source: true;
|
|
1351
|
+
readonly destination: true;
|
|
1352
|
+
};
|
|
1249
1353
|
};
|
|
1250
1354
|
readonly kitContracts: {
|
|
1251
1355
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1285,6 +1389,10 @@ declare const SeiTestnet: {
|
|
|
1285
1389
|
readonly fastConfirmations: 1;
|
|
1286
1390
|
};
|
|
1287
1391
|
};
|
|
1392
|
+
readonly forwarderSupported: {
|
|
1393
|
+
readonly source: true;
|
|
1394
|
+
readonly destination: true;
|
|
1395
|
+
};
|
|
1288
1396
|
};
|
|
1289
1397
|
readonly kitContracts: {
|
|
1290
1398
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1323,6 +1431,10 @@ declare const Sonic: {
|
|
|
1323
1431
|
readonly fastConfirmations: 1;
|
|
1324
1432
|
};
|
|
1325
1433
|
};
|
|
1434
|
+
readonly forwarderSupported: {
|
|
1435
|
+
readonly source: true;
|
|
1436
|
+
readonly destination: true;
|
|
1437
|
+
};
|
|
1326
1438
|
};
|
|
1327
1439
|
readonly kitContracts: {
|
|
1328
1440
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1361,6 +1473,10 @@ declare const SonicTestnet: {
|
|
|
1361
1473
|
readonly fastConfirmations: 1;
|
|
1362
1474
|
};
|
|
1363
1475
|
};
|
|
1476
|
+
readonly forwarderSupported: {
|
|
1477
|
+
readonly source: true;
|
|
1478
|
+
readonly destination: true;
|
|
1479
|
+
};
|
|
1364
1480
|
};
|
|
1365
1481
|
readonly kitContracts: {
|
|
1366
1482
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1404,6 +1520,10 @@ declare const Solana: {
|
|
|
1404
1520
|
readonly fastConfirmations: 3;
|
|
1405
1521
|
};
|
|
1406
1522
|
};
|
|
1523
|
+
readonly forwarderSupported: {
|
|
1524
|
+
readonly source: true;
|
|
1525
|
+
readonly destination: false;
|
|
1526
|
+
};
|
|
1407
1527
|
};
|
|
1408
1528
|
readonly kitContracts: {
|
|
1409
1529
|
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
@@ -1446,6 +1566,10 @@ declare const SolanaDevnet: {
|
|
|
1446
1566
|
readonly fastConfirmations: 3;
|
|
1447
1567
|
};
|
|
1448
1568
|
};
|
|
1569
|
+
readonly forwarderSupported: {
|
|
1570
|
+
readonly source: true;
|
|
1571
|
+
readonly destination: false;
|
|
1572
|
+
};
|
|
1449
1573
|
};
|
|
1450
1574
|
readonly kitContracts: {
|
|
1451
1575
|
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
@@ -1471,7 +1595,7 @@ declare const Unichain: {
|
|
|
1471
1595
|
readonly chainId: 130;
|
|
1472
1596
|
readonly isTestnet: false;
|
|
1473
1597
|
readonly explorerUrl: "https://unichain.blockscout.com/tx/{hash}";
|
|
1474
|
-
readonly rpcEndpoints: readonly ["https://
|
|
1598
|
+
readonly rpcEndpoints: readonly ["https://mainnet.unichain.org"];
|
|
1475
1599
|
readonly eurcAddress: null;
|
|
1476
1600
|
readonly usdcAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
1477
1601
|
readonly cctp: {
|
|
@@ -1491,6 +1615,10 @@ declare const Unichain: {
|
|
|
1491
1615
|
readonly fastConfirmations: 1;
|
|
1492
1616
|
};
|
|
1493
1617
|
};
|
|
1618
|
+
readonly forwarderSupported: {
|
|
1619
|
+
readonly source: true;
|
|
1620
|
+
readonly destination: true;
|
|
1621
|
+
};
|
|
1494
1622
|
};
|
|
1495
1623
|
readonly kitContracts: {
|
|
1496
1624
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1535,6 +1663,10 @@ declare const UnichainSepolia: {
|
|
|
1535
1663
|
readonly fastConfirmations: 1;
|
|
1536
1664
|
};
|
|
1537
1665
|
};
|
|
1666
|
+
readonly forwarderSupported: {
|
|
1667
|
+
readonly source: true;
|
|
1668
|
+
readonly destination: true;
|
|
1669
|
+
};
|
|
1538
1670
|
};
|
|
1539
1671
|
readonly kitContracts: {
|
|
1540
1672
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1561,7 +1693,7 @@ declare const WorldChain: {
|
|
|
1561
1693
|
readonly explorerUrl: "https://worldscan.org/tx/{hash}";
|
|
1562
1694
|
readonly rpcEndpoints: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
|
|
1563
1695
|
readonly eurcAddress: null;
|
|
1564
|
-
readonly usdcAddress: "
|
|
1696
|
+
readonly usdcAddress: "0x79A02482A880bCE3F13e09Da970dC34db4CD24d1";
|
|
1565
1697
|
readonly cctp: {
|
|
1566
1698
|
readonly domain: 14;
|
|
1567
1699
|
readonly contracts: {
|
|
@@ -1573,6 +1705,10 @@ declare const WorldChain: {
|
|
|
1573
1705
|
readonly fastConfirmations: 1;
|
|
1574
1706
|
};
|
|
1575
1707
|
};
|
|
1708
|
+
readonly forwarderSupported: {
|
|
1709
|
+
readonly source: true;
|
|
1710
|
+
readonly destination: true;
|
|
1711
|
+
};
|
|
1576
1712
|
};
|
|
1577
1713
|
readonly kitContracts: {
|
|
1578
1714
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1611,6 +1747,10 @@ declare const WorldChainSepolia: {
|
|
|
1611
1747
|
readonly fastConfirmations: 1;
|
|
1612
1748
|
};
|
|
1613
1749
|
};
|
|
1750
|
+
readonly forwarderSupported: {
|
|
1751
|
+
readonly source: true;
|
|
1752
|
+
readonly destination: true;
|
|
1753
|
+
};
|
|
1614
1754
|
};
|
|
1615
1755
|
readonly kitContracts: {
|
|
1616
1756
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1637,7 +1777,7 @@ declare const XDC: {
|
|
|
1637
1777
|
readonly chainId: 50;
|
|
1638
1778
|
readonly isTestnet: false;
|
|
1639
1779
|
readonly explorerUrl: "https://xdcscan.io/tx/{hash}";
|
|
1640
|
-
readonly rpcEndpoints: readonly ["https://erpc.xinfin.network"];
|
|
1780
|
+
readonly rpcEndpoints: readonly ["https://erpc.xdcrpc.com", "https://erpc.xinfin.network"];
|
|
1641
1781
|
readonly eurcAddress: null;
|
|
1642
1782
|
readonly usdcAddress: "0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1";
|
|
1643
1783
|
readonly cctp: {
|
|
@@ -1651,6 +1791,10 @@ declare const XDC: {
|
|
|
1651
1791
|
readonly fastConfirmations: 3;
|
|
1652
1792
|
};
|
|
1653
1793
|
};
|
|
1794
|
+
readonly forwarderSupported: {
|
|
1795
|
+
readonly source: true;
|
|
1796
|
+
readonly destination: false;
|
|
1797
|
+
};
|
|
1654
1798
|
};
|
|
1655
1799
|
readonly kitContracts: {
|
|
1656
1800
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1689,6 +1833,10 @@ declare const XDCApothem: {
|
|
|
1689
1833
|
readonly fastConfirmations: 1;
|
|
1690
1834
|
};
|
|
1691
1835
|
};
|
|
1836
|
+
readonly forwarderSupported: {
|
|
1837
|
+
readonly source: true;
|
|
1838
|
+
readonly destination: false;
|
|
1839
|
+
};
|
|
1692
1840
|
};
|
|
1693
1841
|
readonly kitContracts: {
|
|
1694
1842
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|