@circle-fin/bridge-kit 1.4.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.cjs CHANGED
@@ -62,6 +62,8 @@ var Blockchain;
62
62
  Blockchain["Ink_Testnet"] = "Ink_Testnet";
63
63
  Blockchain["Linea"] = "Linea";
64
64
  Blockchain["Linea_Sepolia"] = "Linea_Sepolia";
65
+ Blockchain["Monad"] = "Monad";
66
+ Blockchain["Monad_Testnet"] = "Monad_Testnet";
65
67
  Blockchain["NEAR"] = "NEAR";
66
68
  Blockchain["NEAR_Testnet"] = "NEAR_Testnet";
67
69
  Blockchain["Noble"] = "Noble";
@@ -153,6 +155,7 @@ exports.BridgeChain = void 0;
153
155
  BridgeChain["HyperEVM"] = "HyperEVM";
154
156
  BridgeChain["Ink"] = "Ink";
155
157
  BridgeChain["Linea"] = "Linea";
158
+ BridgeChain["Monad"] = "Monad";
156
159
  BridgeChain["Optimism"] = "Optimism";
157
160
  BridgeChain["Plume"] = "Plume";
158
161
  BridgeChain["Polygon"] = "Polygon";
@@ -172,6 +175,7 @@ exports.BridgeChain = void 0;
172
175
  BridgeChain["HyperEVM_Testnet"] = "HyperEVM_Testnet";
173
176
  BridgeChain["Ink_Testnet"] = "Ink_Testnet";
174
177
  BridgeChain["Linea_Sepolia"] = "Linea_Sepolia";
178
+ BridgeChain["Monad_Testnet"] = "Monad_Testnet";
175
179
  BridgeChain["Optimism_Sepolia"] = "Optimism_Sepolia";
176
180
  BridgeChain["Plume_Testnet"] = "Plume_Testnet";
177
181
  BridgeChain["Polygon_Amoy_Testnet"] = "Polygon_Amoy_Testnet";
@@ -298,6 +302,10 @@ defineChain({
298
302
  confirmations: 1,
299
303
  },
300
304
  },
305
+ forwarderSupported: {
306
+ source: false,
307
+ destination: false,
308
+ },
301
309
  },
302
310
  });
303
311
 
@@ -331,6 +339,10 @@ defineChain({
331
339
  confirmations: 1,
332
340
  },
333
341
  },
342
+ forwarderSupported: {
343
+ source: false,
344
+ destination: false,
345
+ },
334
346
  },
335
347
  });
336
348
 
@@ -390,6 +402,10 @@ const ArcTestnet = defineChain({
390
402
  fastConfirmations: 1,
391
403
  },
392
404
  },
405
+ forwarderSupported: {
406
+ source: true,
407
+ destination: true,
408
+ },
393
409
  },
394
410
  kitContracts: {
395
411
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -434,6 +450,10 @@ const Arbitrum = defineChain({
434
450
  fastConfirmations: 1,
435
451
  },
436
452
  },
453
+ forwarderSupported: {
454
+ source: true,
455
+ destination: true,
456
+ },
437
457
  },
438
458
  kitContracts: {
439
459
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -478,6 +498,10 @@ const ArbitrumSepolia = defineChain({
478
498
  fastConfirmations: 1,
479
499
  },
480
500
  },
501
+ forwarderSupported: {
502
+ source: true,
503
+ destination: true,
504
+ },
481
505
  },
482
506
  kitContracts: {
483
507
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -522,6 +546,10 @@ const Avalanche = defineChain({
522
546
  fastConfirmations: 1,
523
547
  },
524
548
  },
549
+ forwarderSupported: {
550
+ source: true,
551
+ destination: true,
552
+ },
525
553
  },
526
554
  kitContracts: {
527
555
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -565,6 +593,10 @@ const AvalancheFuji = defineChain({
565
593
  fastConfirmations: 1,
566
594
  },
567
595
  },
596
+ forwarderSupported: {
597
+ source: true,
598
+ destination: true,
599
+ },
568
600
  },
569
601
  rpcEndpoints: ['https://api.avax-test.network/ext/bc/C/rpc'],
570
602
  kitContracts: {
@@ -610,6 +642,10 @@ const Base = defineChain({
610
642
  fastConfirmations: 1,
611
643
  },
612
644
  },
645
+ forwarderSupported: {
646
+ source: true,
647
+ destination: true,
648
+ },
613
649
  },
614
650
  kitContracts: {
615
651
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -654,6 +690,10 @@ const BaseSepolia = defineChain({
654
690
  fastConfirmations: 1,
655
691
  },
656
692
  },
693
+ forwarderSupported: {
694
+ source: true,
695
+ destination: true,
696
+ },
657
697
  },
658
698
  kitContracts: {
659
699
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -740,6 +780,10 @@ const Codex = defineChain({
740
780
  fastConfirmations: 1,
741
781
  },
742
782
  },
783
+ forwarderSupported: {
784
+ source: true,
785
+ destination: false,
786
+ },
743
787
  },
744
788
  kitContracts: {
745
789
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -778,6 +822,10 @@ const CodexTestnet = defineChain({
778
822
  fastConfirmations: 1,
779
823
  },
780
824
  },
825
+ forwarderSupported: {
826
+ source: true,
827
+ destination: false,
828
+ },
781
829
  },
782
830
  kitContracts: {
783
831
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -822,6 +870,10 @@ const Ethereum = defineChain({
822
870
  fastConfirmations: 2,
823
871
  },
824
872
  },
873
+ forwarderSupported: {
874
+ source: true,
875
+ destination: true,
876
+ },
825
877
  },
826
878
  kitContracts: {
827
879
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -866,6 +918,10 @@ const EthereumSepolia = defineChain({
866
918
  fastConfirmations: 2,
867
919
  },
868
920
  },
921
+ forwarderSupported: {
922
+ source: true,
923
+ destination: true,
924
+ },
869
925
  },
870
926
  kitContracts: {
871
927
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -952,6 +1008,10 @@ const HyperEVM = defineChain({
952
1008
  fastConfirmations: 1,
953
1009
  },
954
1010
  },
1011
+ forwarderSupported: {
1012
+ source: true,
1013
+ destination: true,
1014
+ },
955
1015
  },
956
1016
  kitContracts: {
957
1017
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -991,6 +1051,10 @@ const HyperEVMTestnet = defineChain({
991
1051
  fastConfirmations: 1,
992
1052
  },
993
1053
  },
1054
+ forwarderSupported: {
1055
+ source: true,
1056
+ destination: true,
1057
+ },
994
1058
  },
995
1059
  kitContracts: {
996
1060
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1034,6 +1098,10 @@ const Ink = defineChain({
1034
1098
  fastConfirmations: 1,
1035
1099
  },
1036
1100
  },
1101
+ forwarderSupported: {
1102
+ source: true,
1103
+ destination: true,
1104
+ },
1037
1105
  },
1038
1106
  kitContracts: {
1039
1107
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1076,6 +1144,10 @@ const InkTestnet = defineChain({
1076
1144
  fastConfirmations: 1,
1077
1145
  },
1078
1146
  },
1147
+ forwarderSupported: {
1148
+ source: true,
1149
+ destination: true,
1150
+ },
1079
1151
  },
1080
1152
  kitContracts: {
1081
1153
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1114,6 +1186,10 @@ const Linea = defineChain({
1114
1186
  fastConfirmations: 1,
1115
1187
  },
1116
1188
  },
1189
+ forwarderSupported: {
1190
+ source: true,
1191
+ destination: true,
1192
+ },
1117
1193
  },
1118
1194
  kitContracts: {
1119
1195
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1152,6 +1228,98 @@ const LineaSepolia = defineChain({
1152
1228
  fastConfirmations: 1,
1153
1229
  },
1154
1230
  },
1231
+ forwarderSupported: {
1232
+ source: true,
1233
+ destination: true,
1234
+ },
1235
+ },
1236
+ kitContracts: {
1237
+ bridge: BRIDGE_CONTRACT_EVM_TESTNET,
1238
+ },
1239
+ });
1240
+
1241
+ /**
1242
+ * Monad Mainnet chain definition
1243
+ * @remarks
1244
+ * This represents the official production network for the Monad blockchain.
1245
+ * Monad is a high-performance EVM-compatible Layer-1 blockchain featuring
1246
+ * over 10,000 TPS, sub-second finality, and near-zero gas fees.
1247
+ */
1248
+ const Monad = defineChain({
1249
+ type: 'evm',
1250
+ chain: Blockchain.Monad,
1251
+ name: 'Monad',
1252
+ title: 'Monad Mainnet',
1253
+ nativeCurrency: {
1254
+ name: 'Monad',
1255
+ symbol: 'MON',
1256
+ decimals: 18,
1257
+ },
1258
+ chainId: 143,
1259
+ isTestnet: false,
1260
+ explorerUrl: 'https://monadscan.com/tx/{hash}',
1261
+ rpcEndpoints: ['https://rpc.monad.xyz'],
1262
+ eurcAddress: null,
1263
+ usdcAddress: '0x754704Bc059F8C67012fEd69BC8A327a5aafb603',
1264
+ cctp: {
1265
+ domain: 15,
1266
+ contracts: {
1267
+ v2: {
1268
+ type: 'split',
1269
+ tokenMessenger: '0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d',
1270
+ messageTransmitter: '0x81D40F21F12A8F0E3252Bccb954D722d4c464B64',
1271
+ confirmations: 1,
1272
+ fastConfirmations: 1,
1273
+ },
1274
+ },
1275
+ forwarderSupported: {
1276
+ source: true,
1277
+ destination: true,
1278
+ },
1279
+ },
1280
+ kitContracts: {
1281
+ bridge: BRIDGE_CONTRACT_EVM_MAINNET,
1282
+ },
1283
+ });
1284
+
1285
+ /**
1286
+ * Monad Testnet chain definition
1287
+ * @remarks
1288
+ * This represents the official test network for the Monad blockchain.
1289
+ * Monad is a high-performance EVM-compatible Layer-1 blockchain featuring
1290
+ * over 10,000 TPS, sub-second finality, and near-zero gas fees.
1291
+ */
1292
+ const MonadTestnet = defineChain({
1293
+ type: 'evm',
1294
+ chain: Blockchain.Monad_Testnet,
1295
+ name: 'Monad Testnet',
1296
+ title: 'Monad Testnet',
1297
+ nativeCurrency: {
1298
+ name: 'Monad',
1299
+ symbol: 'MON',
1300
+ decimals: 18,
1301
+ },
1302
+ chainId: 10143,
1303
+ isTestnet: true,
1304
+ explorerUrl: 'https://testnet.monadscan.com/tx/{hash}',
1305
+ rpcEndpoints: ['https://testnet-rpc.monad.xyz'],
1306
+ eurcAddress: null,
1307
+ usdcAddress: '0x534b2f3A21130d7a60830c2Df862319e593943A3',
1308
+ cctp: {
1309
+ domain: 15,
1310
+ contracts: {
1311
+ v2: {
1312
+ type: 'split',
1313
+ tokenMessenger: '0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA',
1314
+ messageTransmitter: '0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275',
1315
+ confirmations: 1,
1316
+ fastConfirmations: 1,
1317
+ },
1318
+ },
1319
+ forwarderSupported: {
1320
+ source: true,
1321
+ destination: true,
1322
+ },
1155
1323
  },
1156
1324
  kitContracts: {
1157
1325
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1233,6 +1401,10 @@ defineChain({
1233
1401
  confirmations: 1,
1234
1402
  },
1235
1403
  },
1404
+ forwarderSupported: {
1405
+ source: false,
1406
+ destination: false,
1407
+ },
1236
1408
  },
1237
1409
  });
1238
1410
 
@@ -1265,6 +1437,10 @@ defineChain({
1265
1437
  confirmations: 1,
1266
1438
  },
1267
1439
  },
1440
+ forwarderSupported: {
1441
+ source: false,
1442
+ destination: false,
1443
+ },
1268
1444
  },
1269
1445
  });
1270
1446
 
@@ -1306,6 +1482,10 @@ const Optimism = defineChain({
1306
1482
  fastConfirmations: 1,
1307
1483
  },
1308
1484
  },
1485
+ forwarderSupported: {
1486
+ source: true,
1487
+ destination: true,
1488
+ },
1309
1489
  },
1310
1490
  kitContracts: {
1311
1491
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1350,6 +1530,10 @@ const OptimismSepolia = defineChain({
1350
1530
  fastConfirmations: 1,
1351
1531
  },
1352
1532
  },
1533
+ forwarderSupported: {
1534
+ source: true,
1535
+ destination: true,
1536
+ },
1353
1537
  },
1354
1538
  kitContracts: {
1355
1539
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1390,6 +1574,10 @@ const Plume = defineChain({
1390
1574
  fastConfirmations: 1,
1391
1575
  },
1392
1576
  },
1577
+ forwarderSupported: {
1578
+ source: true,
1579
+ destination: false,
1580
+ },
1393
1581
  },
1394
1582
  kitContracts: {
1395
1583
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1429,6 +1617,10 @@ const PlumeTestnet = defineChain({
1429
1617
  fastConfirmations: 1,
1430
1618
  },
1431
1619
  },
1620
+ forwarderSupported: {
1621
+ source: true,
1622
+ destination: false,
1623
+ },
1432
1624
  },
1433
1625
  kitContracts: {
1434
1626
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1519,6 +1711,10 @@ const Polygon = defineChain({
1519
1711
  fastConfirmations: 13,
1520
1712
  },
1521
1713
  },
1714
+ forwarderSupported: {
1715
+ source: true,
1716
+ destination: true,
1717
+ },
1522
1718
  },
1523
1719
  kitContracts: {
1524
1720
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1563,6 +1759,10 @@ const PolygonAmoy = defineChain({
1563
1759
  fastConfirmations: 13,
1564
1760
  },
1565
1761
  },
1762
+ forwarderSupported: {
1763
+ source: true,
1764
+ destination: true,
1765
+ },
1566
1766
  },
1567
1767
  kitContracts: {
1568
1768
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1603,6 +1803,10 @@ const Sei = defineChain({
1603
1803
  fastConfirmations: 1,
1604
1804
  },
1605
1805
  },
1806
+ forwarderSupported: {
1807
+ source: true,
1808
+ destination: true,
1809
+ },
1606
1810
  },
1607
1811
  kitContracts: {
1608
1812
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1642,6 +1846,10 @@ const SeiTestnet = defineChain({
1642
1846
  fastConfirmations: 1,
1643
1847
  },
1644
1848
  },
1849
+ forwarderSupported: {
1850
+ source: true,
1851
+ destination: true,
1852
+ },
1645
1853
  },
1646
1854
  kitContracts: {
1647
1855
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1680,6 +1888,10 @@ const Sonic = defineChain({
1680
1888
  fastConfirmations: 1,
1681
1889
  },
1682
1890
  },
1891
+ forwarderSupported: {
1892
+ source: true,
1893
+ destination: true,
1894
+ },
1683
1895
  },
1684
1896
  kitContracts: {
1685
1897
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -1718,6 +1930,10 @@ const SonicTestnet = defineChain({
1718
1930
  fastConfirmations: 1,
1719
1931
  },
1720
1932
  },
1933
+ forwarderSupported: {
1934
+ source: true,
1935
+ destination: true,
1936
+ },
1721
1937
  },
1722
1938
  kitContracts: {
1723
1939
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -1761,6 +1977,10 @@ const Solana = defineChain({
1761
1977
  fastConfirmations: 3,
1762
1978
  },
1763
1979
  },
1980
+ forwarderSupported: {
1981
+ source: true,
1982
+ destination: false,
1983
+ },
1764
1984
  },
1765
1985
  kitContracts: {
1766
1986
  bridge: 'DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3',
@@ -1803,6 +2023,10 @@ const SolanaDevnet = defineChain({
1803
2023
  fastConfirmations: 3,
1804
2024
  },
1805
2025
  },
2026
+ forwarderSupported: {
2027
+ source: true,
2028
+ destination: false,
2029
+ },
1806
2030
  },
1807
2031
  kitContracts: {
1808
2032
  bridge: 'DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3',
@@ -1886,6 +2110,10 @@ defineChain({
1886
2110
  confirmations: 1,
1887
2111
  },
1888
2112
  },
2113
+ forwarderSupported: {
2114
+ source: false,
2115
+ destination: false,
2116
+ },
1889
2117
  },
1890
2118
  });
1891
2119
 
@@ -1919,6 +2147,10 @@ defineChain({
1919
2147
  confirmations: 1,
1920
2148
  },
1921
2149
  },
2150
+ forwarderSupported: {
2151
+ source: false,
2152
+ destination: false,
2153
+ },
1922
2154
  },
1923
2155
  });
1924
2156
 
@@ -1940,7 +2172,7 @@ const Unichain = defineChain({
1940
2172
  chainId: 130,
1941
2173
  isTestnet: false,
1942
2174
  explorerUrl: 'https://unichain.blockscout.com/tx/{hash}',
1943
- rpcEndpoints: ['https://rpc.unichain.org', 'https://mainnet.unichain.org'],
2175
+ rpcEndpoints: ['https://mainnet.unichain.org'],
1944
2176
  eurcAddress: null,
1945
2177
  usdcAddress: '0x078D782b760474a361dDA0AF3839290b0EF57AD6',
1946
2178
  cctp: {
@@ -1960,6 +2192,10 @@ const Unichain = defineChain({
1960
2192
  fastConfirmations: 1,
1961
2193
  },
1962
2194
  },
2195
+ forwarderSupported: {
2196
+ source: true,
2197
+ destination: true,
2198
+ },
1963
2199
  },
1964
2200
  kitContracts: {
1965
2201
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -2004,6 +2240,10 @@ const UnichainSepolia = defineChain({
2004
2240
  fastConfirmations: 1,
2005
2241
  },
2006
2242
  },
2243
+ forwarderSupported: {
2244
+ source: true,
2245
+ destination: true,
2246
+ },
2007
2247
  },
2008
2248
  kitContracts: {
2009
2249
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -2030,7 +2270,7 @@ const WorldChain = defineChain({
2030
2270
  explorerUrl: 'https://worldscan.org/tx/{hash}',
2031
2271
  rpcEndpoints: ['https://worldchain-mainnet.g.alchemy.com/public'],
2032
2272
  eurcAddress: null,
2033
- usdcAddress: '0x79A02482A880bCe3F13E09da970dC34dB4cD24D1',
2273
+ usdcAddress: '0x79A02482A880bCE3F13e09Da970dC34db4CD24d1',
2034
2274
  cctp: {
2035
2275
  domain: 14,
2036
2276
  contracts: {
@@ -2042,6 +2282,10 @@ const WorldChain = defineChain({
2042
2282
  fastConfirmations: 1,
2043
2283
  },
2044
2284
  },
2285
+ forwarderSupported: {
2286
+ source: true,
2287
+ destination: true,
2288
+ },
2045
2289
  },
2046
2290
  kitContracts: {
2047
2291
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -2083,6 +2327,10 @@ const WorldChainSepolia = defineChain({
2083
2327
  fastConfirmations: 1,
2084
2328
  },
2085
2329
  },
2330
+ forwarderSupported: {
2331
+ source: true,
2332
+ destination: true,
2333
+ },
2086
2334
  },
2087
2335
  kitContracts: {
2088
2336
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -2109,7 +2357,7 @@ const XDC = defineChain({
2109
2357
  chainId: 50,
2110
2358
  isTestnet: false,
2111
2359
  explorerUrl: 'https://xdcscan.io/tx/{hash}',
2112
- rpcEndpoints: ['https://erpc.xinfin.network'],
2360
+ rpcEndpoints: ['https://erpc.xdcrpc.com', 'https://erpc.xinfin.network'],
2113
2361
  eurcAddress: null,
2114
2362
  usdcAddress: '0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1',
2115
2363
  cctp: {
@@ -2123,6 +2371,10 @@ const XDC = defineChain({
2123
2371
  fastConfirmations: 3,
2124
2372
  },
2125
2373
  },
2374
+ forwarderSupported: {
2375
+ source: true,
2376
+ destination: false,
2377
+ },
2126
2378
  },
2127
2379
  kitContracts: {
2128
2380
  bridge: BRIDGE_CONTRACT_EVM_MAINNET,
@@ -2161,6 +2413,10 @@ const XDCApothem = defineChain({
2161
2413
  fastConfirmations: 1,
2162
2414
  },
2163
2415
  },
2416
+ forwarderSupported: {
2417
+ source: true,
2418
+ destination: false,
2419
+ },
2164
2420
  },
2165
2421
  kitContracts: {
2166
2422
  bridge: BRIDGE_CONTRACT_EVM_TESTNET,
@@ -2419,6 +2675,8 @@ exports.Ink = Ink;
2419
2675
  exports.InkTestnet = InkTestnet;
2420
2676
  exports.Linea = Linea;
2421
2677
  exports.LineaSepolia = LineaSepolia;
2678
+ exports.Monad = Monad;
2679
+ exports.MonadTestnet = MonadTestnet;
2422
2680
  exports.Optimism = Optimism;
2423
2681
  exports.OptimismSepolia = OptimismSepolia;
2424
2682
  exports.Plume = Plume;