@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/chains.mjs CHANGED
@@ -300,6 +300,10 @@ defineChain({
300
300
  confirmations: 1,
301
301
  },
302
302
  },
303
+ forwarderSupported: {
304
+ source: false,
305
+ destination: false,
306
+ },
303
307
  },
304
308
  });
305
309
 
@@ -333,6 +337,10 @@ defineChain({
333
337
  confirmations: 1,
334
338
  },
335
339
  },
340
+ forwarderSupported: {
341
+ source: false,
342
+ destination: false,
343
+ },
336
344
  },
337
345
  });
338
346
 
@@ -392,6 +400,10 @@ const ArcTestnet = defineChain({
392
400
  fastConfirmations: 1,
393
401
  },
394
402
  },
403
+ forwarderSupported: {
404
+ source: true,
405
+ destination: true,
406
+ },
395
407
  },
396
408
  kitContracts: {
397
409
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -436,6 +448,10 @@ const Arbitrum = defineChain({
436
448
  fastConfirmations: 1,
437
449
  },
438
450
  },
451
+ forwarderSupported: {
452
+ source: true,
453
+ destination: true,
454
+ },
439
455
  },
440
456
  kitContracts: {
441
457
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -480,6 +496,10 @@ const ArbitrumSepolia = defineChain({
480
496
  fastConfirmations: 1,
481
497
  },
482
498
  },
499
+ forwarderSupported: {
500
+ source: true,
501
+ destination: true,
502
+ },
483
503
  },
484
504
  kitContracts: {
485
505
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -524,6 +544,10 @@ const Avalanche = defineChain({
524
544
  fastConfirmations: 1,
525
545
  },
526
546
  },
547
+ forwarderSupported: {
548
+ source: true,
549
+ destination: true,
550
+ },
527
551
  },
528
552
  kitContracts: {
529
553
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -567,6 +591,10 @@ const AvalancheFuji = defineChain({
567
591
  fastConfirmations: 1,
568
592
  },
569
593
  },
594
+ forwarderSupported: {
595
+ source: true,
596
+ destination: true,
597
+ },
570
598
  },
571
599
  rpcEndpoints: ['https://api.avax-test.network/ext/bc/C/rpc'],
572
600
  kitContracts: {
@@ -612,6 +640,10 @@ const Base = defineChain({
612
640
  fastConfirmations: 1,
613
641
  },
614
642
  },
643
+ forwarderSupported: {
644
+ source: true,
645
+ destination: true,
646
+ },
615
647
  },
616
648
  kitContracts: {
617
649
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -656,6 +688,10 @@ const BaseSepolia = defineChain({
656
688
  fastConfirmations: 1,
657
689
  },
658
690
  },
691
+ forwarderSupported: {
692
+ source: true,
693
+ destination: true,
694
+ },
659
695
  },
660
696
  kitContracts: {
661
697
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -742,6 +778,10 @@ const Codex = defineChain({
742
778
  fastConfirmations: 1,
743
779
  },
744
780
  },
781
+ forwarderSupported: {
782
+ source: true,
783
+ destination: false,
784
+ },
745
785
  },
746
786
  kitContracts: {
747
787
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -780,6 +820,10 @@ const CodexTestnet = defineChain({
780
820
  fastConfirmations: 1,
781
821
  },
782
822
  },
823
+ forwarderSupported: {
824
+ source: true,
825
+ destination: false,
826
+ },
783
827
  },
784
828
  kitContracts: {
785
829
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -824,6 +868,10 @@ const Ethereum = defineChain({
824
868
  fastConfirmations: 2,
825
869
  },
826
870
  },
871
+ forwarderSupported: {
872
+ source: true,
873
+ destination: true,
874
+ },
827
875
  },
828
876
  kitContracts: {
829
877
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -868,6 +916,10 @@ const EthereumSepolia = defineChain({
868
916
  fastConfirmations: 2,
869
917
  },
870
918
  },
919
+ forwarderSupported: {
920
+ source: true,
921
+ destination: true,
922
+ },
871
923
  },
872
924
  kitContracts: {
873
925
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -954,6 +1006,10 @@ const HyperEVM = defineChain({
954
1006
  fastConfirmations: 1,
955
1007
  },
956
1008
  },
1009
+ forwarderSupported: {
1010
+ source: true,
1011
+ destination: true,
1012
+ },
957
1013
  },
958
1014
  kitContracts: {
959
1015
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -993,6 +1049,10 @@ const HyperEVMTestnet = defineChain({
993
1049
  fastConfirmations: 1,
994
1050
  },
995
1051
  },
1052
+ forwarderSupported: {
1053
+ source: true,
1054
+ destination: true,
1055
+ },
996
1056
  },
997
1057
  kitContracts: {
998
1058
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1036,6 +1096,10 @@ const Ink = defineChain({
1036
1096
  fastConfirmations: 1,
1037
1097
  },
1038
1098
  },
1099
+ forwarderSupported: {
1100
+ source: true,
1101
+ destination: true,
1102
+ },
1039
1103
  },
1040
1104
  kitContracts: {
1041
1105
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1078,6 +1142,10 @@ const InkTestnet = defineChain({
1078
1142
  fastConfirmations: 1,
1079
1143
  },
1080
1144
  },
1145
+ forwarderSupported: {
1146
+ source: true,
1147
+ destination: true,
1148
+ },
1081
1149
  },
1082
1150
  kitContracts: {
1083
1151
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1116,6 +1184,10 @@ const Linea = defineChain({
1116
1184
  fastConfirmations: 1,
1117
1185
  },
1118
1186
  },
1187
+ forwarderSupported: {
1188
+ source: true,
1189
+ destination: true,
1190
+ },
1119
1191
  },
1120
1192
  kitContracts: {
1121
1193
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1154,6 +1226,10 @@ const LineaSepolia = defineChain({
1154
1226
  fastConfirmations: 1,
1155
1227
  },
1156
1228
  },
1229
+ forwarderSupported: {
1230
+ source: true,
1231
+ destination: true,
1232
+ },
1157
1233
  },
1158
1234
  kitContracts: {
1159
1235
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1194,6 +1270,10 @@ const Monad = defineChain({
1194
1270
  fastConfirmations: 1,
1195
1271
  },
1196
1272
  },
1273
+ forwarderSupported: {
1274
+ source: true,
1275
+ destination: true,
1276
+ },
1197
1277
  },
1198
1278
  kitContracts: {
1199
1279
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1234,6 +1314,10 @@ const MonadTestnet = defineChain({
1234
1314
  fastConfirmations: 1,
1235
1315
  },
1236
1316
  },
1317
+ forwarderSupported: {
1318
+ source: true,
1319
+ destination: true,
1320
+ },
1237
1321
  },
1238
1322
  kitContracts: {
1239
1323
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1315,6 +1399,10 @@ defineChain({
1315
1399
  confirmations: 1,
1316
1400
  },
1317
1401
  },
1402
+ forwarderSupported: {
1403
+ source: false,
1404
+ destination: false,
1405
+ },
1318
1406
  },
1319
1407
  });
1320
1408
 
@@ -1347,6 +1435,10 @@ defineChain({
1347
1435
  confirmations: 1,
1348
1436
  },
1349
1437
  },
1438
+ forwarderSupported: {
1439
+ source: false,
1440
+ destination: false,
1441
+ },
1350
1442
  },
1351
1443
  });
1352
1444
 
@@ -1388,6 +1480,10 @@ const Optimism = defineChain({
1388
1480
  fastConfirmations: 1,
1389
1481
  },
1390
1482
  },
1483
+ forwarderSupported: {
1484
+ source: true,
1485
+ destination: true,
1486
+ },
1391
1487
  },
1392
1488
  kitContracts: {
1393
1489
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1432,6 +1528,10 @@ const OptimismSepolia = defineChain({
1432
1528
  fastConfirmations: 1,
1433
1529
  },
1434
1530
  },
1531
+ forwarderSupported: {
1532
+ source: true,
1533
+ destination: true,
1534
+ },
1435
1535
  },
1436
1536
  kitContracts: {
1437
1537
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1472,6 +1572,10 @@ const Plume = defineChain({
1472
1572
  fastConfirmations: 1,
1473
1573
  },
1474
1574
  },
1575
+ forwarderSupported: {
1576
+ source: true,
1577
+ destination: false,
1578
+ },
1475
1579
  },
1476
1580
  kitContracts: {
1477
1581
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1511,6 +1615,10 @@ const PlumeTestnet = defineChain({
1511
1615
  fastConfirmations: 1,
1512
1616
  },
1513
1617
  },
1618
+ forwarderSupported: {
1619
+ source: true,
1620
+ destination: false,
1621
+ },
1514
1622
  },
1515
1623
  kitContracts: {
1516
1624
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1601,6 +1709,10 @@ const Polygon = defineChain({
1601
1709
  fastConfirmations: 13,
1602
1710
  },
1603
1711
  },
1712
+ forwarderSupported: {
1713
+ source: true,
1714
+ destination: true,
1715
+ },
1604
1716
  },
1605
1717
  kitContracts: {
1606
1718
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1645,6 +1757,10 @@ const PolygonAmoy = defineChain({
1645
1757
  fastConfirmations: 13,
1646
1758
  },
1647
1759
  },
1760
+ forwarderSupported: {
1761
+ source: true,
1762
+ destination: true,
1763
+ },
1648
1764
  },
1649
1765
  kitContracts: {
1650
1766
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1685,6 +1801,10 @@ const Sei = defineChain({
1685
1801
  fastConfirmations: 1,
1686
1802
  },
1687
1803
  },
1804
+ forwarderSupported: {
1805
+ source: true,
1806
+ destination: true,
1807
+ },
1688
1808
  },
1689
1809
  kitContracts: {
1690
1810
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1724,6 +1844,10 @@ const SeiTestnet = defineChain({
1724
1844
  fastConfirmations: 1,
1725
1845
  },
1726
1846
  },
1847
+ forwarderSupported: {
1848
+ source: true,
1849
+ destination: true,
1850
+ },
1727
1851
  },
1728
1852
  kitContracts: {
1729
1853
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1762,6 +1886,10 @@ const Sonic = defineChain({
1762
1886
  fastConfirmations: 1,
1763
1887
  },
1764
1888
  },
1889
+ forwarderSupported: {
1890
+ source: true,
1891
+ destination: true,
1892
+ },
1765
1893
  },
1766
1894
  kitContracts: {
1767
1895
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1800,6 +1928,10 @@ const SonicTestnet = defineChain({
1800
1928
  fastConfirmations: 1,
1801
1929
  },
1802
1930
  },
1931
+ forwarderSupported: {
1932
+ source: true,
1933
+ destination: true,
1934
+ },
1803
1935
  },
1804
1936
  kitContracts: {
1805
1937
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1843,6 +1975,10 @@ const Solana = defineChain({
1843
1975
  fastConfirmations: 3,
1844
1976
  },
1845
1977
  },
1978
+ forwarderSupported: {
1979
+ source: true,
1980
+ destination: false,
1981
+ },
1846
1982
  },
1847
1983
  kitContracts: {
1848
1984
  bridge: 'DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3',
@@ -1885,6 +2021,10 @@ const SolanaDevnet = defineChain({
1885
2021
  fastConfirmations: 3,
1886
2022
  },
1887
2023
  },
2024
+ forwarderSupported: {
2025
+ source: true,
2026
+ destination: false,
2027
+ },
1888
2028
  },
1889
2029
  kitContracts: {
1890
2030
  bridge: 'DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3',
@@ -1968,6 +2108,10 @@ defineChain({
1968
2108
  confirmations: 1,
1969
2109
  },
1970
2110
  },
2111
+ forwarderSupported: {
2112
+ source: false,
2113
+ destination: false,
2114
+ },
1971
2115
  },
1972
2116
  });
1973
2117
 
@@ -2001,6 +2145,10 @@ defineChain({
2001
2145
  confirmations: 1,
2002
2146
  },
2003
2147
  },
2148
+ forwarderSupported: {
2149
+ source: false,
2150
+ destination: false,
2151
+ },
2004
2152
  },
2005
2153
  });
2006
2154
 
@@ -2022,7 +2170,7 @@ const Unichain = defineChain({
2022
2170
  chainId: 130,
2023
2171
  isTestnet: false,
2024
2172
  explorerUrl: 'https://unichain.blockscout.com/tx/{hash}',
2025
- rpcEndpoints: ['https://rpc.unichain.org', 'https://mainnet.unichain.org'],
2173
+ rpcEndpoints: ['https://mainnet.unichain.org'],
2026
2174
  eurcAddress: null,
2027
2175
  usdcAddress: '0x078D782b760474a361dDA0AF3839290b0EF57AD6',
2028
2176
  cctp: {
@@ -2042,6 +2190,10 @@ const Unichain = defineChain({
2042
2190
  fastConfirmations: 1,
2043
2191
  },
2044
2192
  },
2193
+ forwarderSupported: {
2194
+ source: true,
2195
+ destination: true,
2196
+ },
2045
2197
  },
2046
2198
  kitContracts: {
2047
2199
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -2086,6 +2238,10 @@ const UnichainSepolia = defineChain({
2086
2238
  fastConfirmations: 1,
2087
2239
  },
2088
2240
  },
2241
+ forwarderSupported: {
2242
+ source: true,
2243
+ destination: true,
2244
+ },
2089
2245
  },
2090
2246
  kitContracts: {
2091
2247
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -2112,7 +2268,7 @@ const WorldChain = defineChain({
2112
2268
  explorerUrl: 'https://worldscan.org/tx/{hash}',
2113
2269
  rpcEndpoints: ['https://worldchain-mainnet.g.alchemy.com/public'],
2114
2270
  eurcAddress: null,
2115
- usdcAddress: '0x79A02482A880bCe3F13E09da970dC34dB4cD24D1',
2271
+ usdcAddress: '0x79A02482A880bCE3F13e09Da970dC34db4CD24d1',
2116
2272
  cctp: {
2117
2273
  domain: 14,
2118
2274
  contracts: {
@@ -2124,6 +2280,10 @@ const WorldChain = defineChain({
2124
2280
  fastConfirmations: 1,
2125
2281
  },
2126
2282
  },
2283
+ forwarderSupported: {
2284
+ source: true,
2285
+ destination: true,
2286
+ },
2127
2287
  },
2128
2288
  kitContracts: {
2129
2289
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -2165,6 +2325,10 @@ const WorldChainSepolia = defineChain({
2165
2325
  fastConfirmations: 1,
2166
2326
  },
2167
2327
  },
2328
+ forwarderSupported: {
2329
+ source: true,
2330
+ destination: true,
2331
+ },
2168
2332
  },
2169
2333
  kitContracts: {
2170
2334
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -2191,7 +2355,7 @@ const XDC = defineChain({
2191
2355
  chainId: 50,
2192
2356
  isTestnet: false,
2193
2357
  explorerUrl: 'https://xdcscan.io/tx/{hash}',
2194
- rpcEndpoints: ['https://erpc.xinfin.network'],
2358
+ rpcEndpoints: ['https://erpc.xdcrpc.com', 'https://erpc.xinfin.network'],
2195
2359
  eurcAddress: null,
2196
2360
  usdcAddress: '0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1',
2197
2361
  cctp: {
@@ -2205,6 +2369,10 @@ const XDC = defineChain({
2205
2369
  fastConfirmations: 3,
2206
2370
  },
2207
2371
  },
2372
+ forwarderSupported: {
2373
+ source: true,
2374
+ destination: false,
2375
+ },
2208
2376
  },
2209
2377
  kitContracts: {
2210
2378
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -2243,6 +2411,10 @@ const XDCApothem = defineChain({
2243
2411
  fastConfirmations: 1,
2244
2412
  },
2245
2413
  },
2414
+ forwarderSupported: {
2415
+ source: true,
2416
+ destination: false,
2417
+ },
2246
2418
  },
2247
2419
  kitContracts: {
2248
2420
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,