@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/CHANGELOG.md +36 -0
- package/QUICKSTART.md +2 -2
- package/README.md +110 -13
- package/chains.cjs +261 -3
- package/chains.d.ts +236 -4
- package/chains.mjs +260 -4
- package/index.cjs +2043 -99
- package/index.d.ts +4148 -2106
- package/index.mjs +2037 -102
- package/package.json +4 -3
package/chains.mjs
CHANGED
|
@@ -60,6 +60,8 @@ var Blockchain;
|
|
|
60
60
|
Blockchain["Ink_Testnet"] = "Ink_Testnet";
|
|
61
61
|
Blockchain["Linea"] = "Linea";
|
|
62
62
|
Blockchain["Linea_Sepolia"] = "Linea_Sepolia";
|
|
63
|
+
Blockchain["Monad"] = "Monad";
|
|
64
|
+
Blockchain["Monad_Testnet"] = "Monad_Testnet";
|
|
63
65
|
Blockchain["NEAR"] = "NEAR";
|
|
64
66
|
Blockchain["NEAR_Testnet"] = "NEAR_Testnet";
|
|
65
67
|
Blockchain["Noble"] = "Noble";
|
|
@@ -151,6 +153,7 @@ var BridgeChain;
|
|
|
151
153
|
BridgeChain["HyperEVM"] = "HyperEVM";
|
|
152
154
|
BridgeChain["Ink"] = "Ink";
|
|
153
155
|
BridgeChain["Linea"] = "Linea";
|
|
156
|
+
BridgeChain["Monad"] = "Monad";
|
|
154
157
|
BridgeChain["Optimism"] = "Optimism";
|
|
155
158
|
BridgeChain["Plume"] = "Plume";
|
|
156
159
|
BridgeChain["Polygon"] = "Polygon";
|
|
@@ -170,6 +173,7 @@ var BridgeChain;
|
|
|
170
173
|
BridgeChain["HyperEVM_Testnet"] = "HyperEVM_Testnet";
|
|
171
174
|
BridgeChain["Ink_Testnet"] = "Ink_Testnet";
|
|
172
175
|
BridgeChain["Linea_Sepolia"] = "Linea_Sepolia";
|
|
176
|
+
BridgeChain["Monad_Testnet"] = "Monad_Testnet";
|
|
173
177
|
BridgeChain["Optimism_Sepolia"] = "Optimism_Sepolia";
|
|
174
178
|
BridgeChain["Plume_Testnet"] = "Plume_Testnet";
|
|
175
179
|
BridgeChain["Polygon_Amoy_Testnet"] = "Polygon_Amoy_Testnet";
|
|
@@ -296,6 +300,10 @@ defineChain({
|
|
|
296
300
|
confirmations: 1,
|
|
297
301
|
},
|
|
298
302
|
},
|
|
303
|
+
forwarderSupported: {
|
|
304
|
+
source: false,
|
|
305
|
+
destination: false,
|
|
306
|
+
},
|
|
299
307
|
},
|
|
300
308
|
});
|
|
301
309
|
|
|
@@ -329,6 +337,10 @@ defineChain({
|
|
|
329
337
|
confirmations: 1,
|
|
330
338
|
},
|
|
331
339
|
},
|
|
340
|
+
forwarderSupported: {
|
|
341
|
+
source: false,
|
|
342
|
+
destination: false,
|
|
343
|
+
},
|
|
332
344
|
},
|
|
333
345
|
});
|
|
334
346
|
|
|
@@ -388,6 +400,10 @@ const ArcTestnet = defineChain({
|
|
|
388
400
|
fastConfirmations: 1,
|
|
389
401
|
},
|
|
390
402
|
},
|
|
403
|
+
forwarderSupported: {
|
|
404
|
+
source: true,
|
|
405
|
+
destination: true,
|
|
406
|
+
},
|
|
391
407
|
},
|
|
392
408
|
kitContracts: {
|
|
393
409
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -432,6 +448,10 @@ const Arbitrum = defineChain({
|
|
|
432
448
|
fastConfirmations: 1,
|
|
433
449
|
},
|
|
434
450
|
},
|
|
451
|
+
forwarderSupported: {
|
|
452
|
+
source: true,
|
|
453
|
+
destination: true,
|
|
454
|
+
},
|
|
435
455
|
},
|
|
436
456
|
kitContracts: {
|
|
437
457
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -476,6 +496,10 @@ const ArbitrumSepolia = defineChain({
|
|
|
476
496
|
fastConfirmations: 1,
|
|
477
497
|
},
|
|
478
498
|
},
|
|
499
|
+
forwarderSupported: {
|
|
500
|
+
source: true,
|
|
501
|
+
destination: true,
|
|
502
|
+
},
|
|
479
503
|
},
|
|
480
504
|
kitContracts: {
|
|
481
505
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -520,6 +544,10 @@ const Avalanche = defineChain({
|
|
|
520
544
|
fastConfirmations: 1,
|
|
521
545
|
},
|
|
522
546
|
},
|
|
547
|
+
forwarderSupported: {
|
|
548
|
+
source: true,
|
|
549
|
+
destination: true,
|
|
550
|
+
},
|
|
523
551
|
},
|
|
524
552
|
kitContracts: {
|
|
525
553
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -563,6 +591,10 @@ const AvalancheFuji = defineChain({
|
|
|
563
591
|
fastConfirmations: 1,
|
|
564
592
|
},
|
|
565
593
|
},
|
|
594
|
+
forwarderSupported: {
|
|
595
|
+
source: true,
|
|
596
|
+
destination: true,
|
|
597
|
+
},
|
|
566
598
|
},
|
|
567
599
|
rpcEndpoints: ['https://api.avax-test.network/ext/bc/C/rpc'],
|
|
568
600
|
kitContracts: {
|
|
@@ -608,6 +640,10 @@ const Base = defineChain({
|
|
|
608
640
|
fastConfirmations: 1,
|
|
609
641
|
},
|
|
610
642
|
},
|
|
643
|
+
forwarderSupported: {
|
|
644
|
+
source: true,
|
|
645
|
+
destination: true,
|
|
646
|
+
},
|
|
611
647
|
},
|
|
612
648
|
kitContracts: {
|
|
613
649
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -652,6 +688,10 @@ const BaseSepolia = defineChain({
|
|
|
652
688
|
fastConfirmations: 1,
|
|
653
689
|
},
|
|
654
690
|
},
|
|
691
|
+
forwarderSupported: {
|
|
692
|
+
source: true,
|
|
693
|
+
destination: true,
|
|
694
|
+
},
|
|
655
695
|
},
|
|
656
696
|
kitContracts: {
|
|
657
697
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -738,6 +778,10 @@ const Codex = defineChain({
|
|
|
738
778
|
fastConfirmations: 1,
|
|
739
779
|
},
|
|
740
780
|
},
|
|
781
|
+
forwarderSupported: {
|
|
782
|
+
source: true,
|
|
783
|
+
destination: false,
|
|
784
|
+
},
|
|
741
785
|
},
|
|
742
786
|
kitContracts: {
|
|
743
787
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -776,6 +820,10 @@ const CodexTestnet = defineChain({
|
|
|
776
820
|
fastConfirmations: 1,
|
|
777
821
|
},
|
|
778
822
|
},
|
|
823
|
+
forwarderSupported: {
|
|
824
|
+
source: true,
|
|
825
|
+
destination: false,
|
|
826
|
+
},
|
|
779
827
|
},
|
|
780
828
|
kitContracts: {
|
|
781
829
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -820,6 +868,10 @@ const Ethereum = defineChain({
|
|
|
820
868
|
fastConfirmations: 2,
|
|
821
869
|
},
|
|
822
870
|
},
|
|
871
|
+
forwarderSupported: {
|
|
872
|
+
source: true,
|
|
873
|
+
destination: true,
|
|
874
|
+
},
|
|
823
875
|
},
|
|
824
876
|
kitContracts: {
|
|
825
877
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -864,6 +916,10 @@ const EthereumSepolia = defineChain({
|
|
|
864
916
|
fastConfirmations: 2,
|
|
865
917
|
},
|
|
866
918
|
},
|
|
919
|
+
forwarderSupported: {
|
|
920
|
+
source: true,
|
|
921
|
+
destination: true,
|
|
922
|
+
},
|
|
867
923
|
},
|
|
868
924
|
kitContracts: {
|
|
869
925
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -950,6 +1006,10 @@ const HyperEVM = defineChain({
|
|
|
950
1006
|
fastConfirmations: 1,
|
|
951
1007
|
},
|
|
952
1008
|
},
|
|
1009
|
+
forwarderSupported: {
|
|
1010
|
+
source: true,
|
|
1011
|
+
destination: true,
|
|
1012
|
+
},
|
|
953
1013
|
},
|
|
954
1014
|
kitContracts: {
|
|
955
1015
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -989,6 +1049,10 @@ const HyperEVMTestnet = defineChain({
|
|
|
989
1049
|
fastConfirmations: 1,
|
|
990
1050
|
},
|
|
991
1051
|
},
|
|
1052
|
+
forwarderSupported: {
|
|
1053
|
+
source: true,
|
|
1054
|
+
destination: true,
|
|
1055
|
+
},
|
|
992
1056
|
},
|
|
993
1057
|
kitContracts: {
|
|
994
1058
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1032,6 +1096,10 @@ const Ink = defineChain({
|
|
|
1032
1096
|
fastConfirmations: 1,
|
|
1033
1097
|
},
|
|
1034
1098
|
},
|
|
1099
|
+
forwarderSupported: {
|
|
1100
|
+
source: true,
|
|
1101
|
+
destination: true,
|
|
1102
|
+
},
|
|
1035
1103
|
},
|
|
1036
1104
|
kitContracts: {
|
|
1037
1105
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1074,6 +1142,10 @@ const InkTestnet = defineChain({
|
|
|
1074
1142
|
fastConfirmations: 1,
|
|
1075
1143
|
},
|
|
1076
1144
|
},
|
|
1145
|
+
forwarderSupported: {
|
|
1146
|
+
source: true,
|
|
1147
|
+
destination: true,
|
|
1148
|
+
},
|
|
1077
1149
|
},
|
|
1078
1150
|
kitContracts: {
|
|
1079
1151
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1112,6 +1184,10 @@ const Linea = defineChain({
|
|
|
1112
1184
|
fastConfirmations: 1,
|
|
1113
1185
|
},
|
|
1114
1186
|
},
|
|
1187
|
+
forwarderSupported: {
|
|
1188
|
+
source: true,
|
|
1189
|
+
destination: true,
|
|
1190
|
+
},
|
|
1115
1191
|
},
|
|
1116
1192
|
kitContracts: {
|
|
1117
1193
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1150,6 +1226,98 @@ const LineaSepolia = defineChain({
|
|
|
1150
1226
|
fastConfirmations: 1,
|
|
1151
1227
|
},
|
|
1152
1228
|
},
|
|
1229
|
+
forwarderSupported: {
|
|
1230
|
+
source: true,
|
|
1231
|
+
destination: true,
|
|
1232
|
+
},
|
|
1233
|
+
},
|
|
1234
|
+
kitContracts: {
|
|
1235
|
+
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
1236
|
+
},
|
|
1237
|
+
});
|
|
1238
|
+
|
|
1239
|
+
/**
|
|
1240
|
+
* Monad Mainnet chain definition
|
|
1241
|
+
* @remarks
|
|
1242
|
+
* This represents the official production network for the Monad blockchain.
|
|
1243
|
+
* Monad is a high-performance EVM-compatible Layer-1 blockchain featuring
|
|
1244
|
+
* over 10,000 TPS, sub-second finality, and near-zero gas fees.
|
|
1245
|
+
*/
|
|
1246
|
+
const Monad = defineChain({
|
|
1247
|
+
type: 'evm',
|
|
1248
|
+
chain: Blockchain.Monad,
|
|
1249
|
+
name: 'Monad',
|
|
1250
|
+
title: 'Monad Mainnet',
|
|
1251
|
+
nativeCurrency: {
|
|
1252
|
+
name: 'Monad',
|
|
1253
|
+
symbol: 'MON',
|
|
1254
|
+
decimals: 18,
|
|
1255
|
+
},
|
|
1256
|
+
chainId: 143,
|
|
1257
|
+
isTestnet: false,
|
|
1258
|
+
explorerUrl: 'https://monadscan.com/tx/{hash}',
|
|
1259
|
+
rpcEndpoints: ['https://rpc.monad.xyz'],
|
|
1260
|
+
eurcAddress: null,
|
|
1261
|
+
usdcAddress: '0x754704Bc059F8C67012fEd69BC8A327a5aafb603',
|
|
1262
|
+
cctp: {
|
|
1263
|
+
domain: 15,
|
|
1264
|
+
contracts: {
|
|
1265
|
+
v2: {
|
|
1266
|
+
type: 'split',
|
|
1267
|
+
tokenMessenger: '0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d',
|
|
1268
|
+
messageTransmitter: '0x81D40F21F12A8F0E3252Bccb954D722d4c464B64',
|
|
1269
|
+
confirmations: 1,
|
|
1270
|
+
fastConfirmations: 1,
|
|
1271
|
+
},
|
|
1272
|
+
},
|
|
1273
|
+
forwarderSupported: {
|
|
1274
|
+
source: true,
|
|
1275
|
+
destination: true,
|
|
1276
|
+
},
|
|
1277
|
+
},
|
|
1278
|
+
kitContracts: {
|
|
1279
|
+
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
1280
|
+
},
|
|
1281
|
+
});
|
|
1282
|
+
|
|
1283
|
+
/**
|
|
1284
|
+
* Monad Testnet chain definition
|
|
1285
|
+
* @remarks
|
|
1286
|
+
* This represents the official test network for the Monad blockchain.
|
|
1287
|
+
* Monad is a high-performance EVM-compatible Layer-1 blockchain featuring
|
|
1288
|
+
* over 10,000 TPS, sub-second finality, and near-zero gas fees.
|
|
1289
|
+
*/
|
|
1290
|
+
const MonadTestnet = defineChain({
|
|
1291
|
+
type: 'evm',
|
|
1292
|
+
chain: Blockchain.Monad_Testnet,
|
|
1293
|
+
name: 'Monad Testnet',
|
|
1294
|
+
title: 'Monad Testnet',
|
|
1295
|
+
nativeCurrency: {
|
|
1296
|
+
name: 'Monad',
|
|
1297
|
+
symbol: 'MON',
|
|
1298
|
+
decimals: 18,
|
|
1299
|
+
},
|
|
1300
|
+
chainId: 10143,
|
|
1301
|
+
isTestnet: true,
|
|
1302
|
+
explorerUrl: 'https://testnet.monadscan.com/tx/{hash}',
|
|
1303
|
+
rpcEndpoints: ['https://testnet-rpc.monad.xyz'],
|
|
1304
|
+
eurcAddress: null,
|
|
1305
|
+
usdcAddress: '0x534b2f3A21130d7a60830c2Df862319e593943A3',
|
|
1306
|
+
cctp: {
|
|
1307
|
+
domain: 15,
|
|
1308
|
+
contracts: {
|
|
1309
|
+
v2: {
|
|
1310
|
+
type: 'split',
|
|
1311
|
+
tokenMessenger: '0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA',
|
|
1312
|
+
messageTransmitter: '0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275',
|
|
1313
|
+
confirmations: 1,
|
|
1314
|
+
fastConfirmations: 1,
|
|
1315
|
+
},
|
|
1316
|
+
},
|
|
1317
|
+
forwarderSupported: {
|
|
1318
|
+
source: true,
|
|
1319
|
+
destination: true,
|
|
1320
|
+
},
|
|
1153
1321
|
},
|
|
1154
1322
|
kitContracts: {
|
|
1155
1323
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1231,6 +1399,10 @@ defineChain({
|
|
|
1231
1399
|
confirmations: 1,
|
|
1232
1400
|
},
|
|
1233
1401
|
},
|
|
1402
|
+
forwarderSupported: {
|
|
1403
|
+
source: false,
|
|
1404
|
+
destination: false,
|
|
1405
|
+
},
|
|
1234
1406
|
},
|
|
1235
1407
|
});
|
|
1236
1408
|
|
|
@@ -1263,6 +1435,10 @@ defineChain({
|
|
|
1263
1435
|
confirmations: 1,
|
|
1264
1436
|
},
|
|
1265
1437
|
},
|
|
1438
|
+
forwarderSupported: {
|
|
1439
|
+
source: false,
|
|
1440
|
+
destination: false,
|
|
1441
|
+
},
|
|
1266
1442
|
},
|
|
1267
1443
|
});
|
|
1268
1444
|
|
|
@@ -1304,6 +1480,10 @@ const Optimism = defineChain({
|
|
|
1304
1480
|
fastConfirmations: 1,
|
|
1305
1481
|
},
|
|
1306
1482
|
},
|
|
1483
|
+
forwarderSupported: {
|
|
1484
|
+
source: true,
|
|
1485
|
+
destination: true,
|
|
1486
|
+
},
|
|
1307
1487
|
},
|
|
1308
1488
|
kitContracts: {
|
|
1309
1489
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1348,6 +1528,10 @@ const OptimismSepolia = defineChain({
|
|
|
1348
1528
|
fastConfirmations: 1,
|
|
1349
1529
|
},
|
|
1350
1530
|
},
|
|
1531
|
+
forwarderSupported: {
|
|
1532
|
+
source: true,
|
|
1533
|
+
destination: true,
|
|
1534
|
+
},
|
|
1351
1535
|
},
|
|
1352
1536
|
kitContracts: {
|
|
1353
1537
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1388,6 +1572,10 @@ const Plume = defineChain({
|
|
|
1388
1572
|
fastConfirmations: 1,
|
|
1389
1573
|
},
|
|
1390
1574
|
},
|
|
1575
|
+
forwarderSupported: {
|
|
1576
|
+
source: true,
|
|
1577
|
+
destination: false,
|
|
1578
|
+
},
|
|
1391
1579
|
},
|
|
1392
1580
|
kitContracts: {
|
|
1393
1581
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1427,6 +1615,10 @@ const PlumeTestnet = defineChain({
|
|
|
1427
1615
|
fastConfirmations: 1,
|
|
1428
1616
|
},
|
|
1429
1617
|
},
|
|
1618
|
+
forwarderSupported: {
|
|
1619
|
+
source: true,
|
|
1620
|
+
destination: false,
|
|
1621
|
+
},
|
|
1430
1622
|
},
|
|
1431
1623
|
kitContracts: {
|
|
1432
1624
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1517,6 +1709,10 @@ const Polygon = defineChain({
|
|
|
1517
1709
|
fastConfirmations: 13,
|
|
1518
1710
|
},
|
|
1519
1711
|
},
|
|
1712
|
+
forwarderSupported: {
|
|
1713
|
+
source: true,
|
|
1714
|
+
destination: true,
|
|
1715
|
+
},
|
|
1520
1716
|
},
|
|
1521
1717
|
kitContracts: {
|
|
1522
1718
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1561,6 +1757,10 @@ const PolygonAmoy = defineChain({
|
|
|
1561
1757
|
fastConfirmations: 13,
|
|
1562
1758
|
},
|
|
1563
1759
|
},
|
|
1760
|
+
forwarderSupported: {
|
|
1761
|
+
source: true,
|
|
1762
|
+
destination: true,
|
|
1763
|
+
},
|
|
1564
1764
|
},
|
|
1565
1765
|
kitContracts: {
|
|
1566
1766
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1601,6 +1801,10 @@ const Sei = defineChain({
|
|
|
1601
1801
|
fastConfirmations: 1,
|
|
1602
1802
|
},
|
|
1603
1803
|
},
|
|
1804
|
+
forwarderSupported: {
|
|
1805
|
+
source: true,
|
|
1806
|
+
destination: true,
|
|
1807
|
+
},
|
|
1604
1808
|
},
|
|
1605
1809
|
kitContracts: {
|
|
1606
1810
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1640,6 +1844,10 @@ const SeiTestnet = defineChain({
|
|
|
1640
1844
|
fastConfirmations: 1,
|
|
1641
1845
|
},
|
|
1642
1846
|
},
|
|
1847
|
+
forwarderSupported: {
|
|
1848
|
+
source: true,
|
|
1849
|
+
destination: true,
|
|
1850
|
+
},
|
|
1643
1851
|
},
|
|
1644
1852
|
kitContracts: {
|
|
1645
1853
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1678,6 +1886,10 @@ const Sonic = defineChain({
|
|
|
1678
1886
|
fastConfirmations: 1,
|
|
1679
1887
|
},
|
|
1680
1888
|
},
|
|
1889
|
+
forwarderSupported: {
|
|
1890
|
+
source: true,
|
|
1891
|
+
destination: true,
|
|
1892
|
+
},
|
|
1681
1893
|
},
|
|
1682
1894
|
kitContracts: {
|
|
1683
1895
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -1716,6 +1928,10 @@ const SonicTestnet = defineChain({
|
|
|
1716
1928
|
fastConfirmations: 1,
|
|
1717
1929
|
},
|
|
1718
1930
|
},
|
|
1931
|
+
forwarderSupported: {
|
|
1932
|
+
source: true,
|
|
1933
|
+
destination: true,
|
|
1934
|
+
},
|
|
1719
1935
|
},
|
|
1720
1936
|
kitContracts: {
|
|
1721
1937
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -1759,6 +1975,10 @@ const Solana = defineChain({
|
|
|
1759
1975
|
fastConfirmations: 3,
|
|
1760
1976
|
},
|
|
1761
1977
|
},
|
|
1978
|
+
forwarderSupported: {
|
|
1979
|
+
source: true,
|
|
1980
|
+
destination: false,
|
|
1981
|
+
},
|
|
1762
1982
|
},
|
|
1763
1983
|
kitContracts: {
|
|
1764
1984
|
bridge: 'DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3',
|
|
@@ -1801,6 +2021,10 @@ const SolanaDevnet = defineChain({
|
|
|
1801
2021
|
fastConfirmations: 3,
|
|
1802
2022
|
},
|
|
1803
2023
|
},
|
|
2024
|
+
forwarderSupported: {
|
|
2025
|
+
source: true,
|
|
2026
|
+
destination: false,
|
|
2027
|
+
},
|
|
1804
2028
|
},
|
|
1805
2029
|
kitContracts: {
|
|
1806
2030
|
bridge: 'DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3',
|
|
@@ -1884,6 +2108,10 @@ defineChain({
|
|
|
1884
2108
|
confirmations: 1,
|
|
1885
2109
|
},
|
|
1886
2110
|
},
|
|
2111
|
+
forwarderSupported: {
|
|
2112
|
+
source: false,
|
|
2113
|
+
destination: false,
|
|
2114
|
+
},
|
|
1887
2115
|
},
|
|
1888
2116
|
});
|
|
1889
2117
|
|
|
@@ -1917,6 +2145,10 @@ defineChain({
|
|
|
1917
2145
|
confirmations: 1,
|
|
1918
2146
|
},
|
|
1919
2147
|
},
|
|
2148
|
+
forwarderSupported: {
|
|
2149
|
+
source: false,
|
|
2150
|
+
destination: false,
|
|
2151
|
+
},
|
|
1920
2152
|
},
|
|
1921
2153
|
});
|
|
1922
2154
|
|
|
@@ -1938,7 +2170,7 @@ const Unichain = defineChain({
|
|
|
1938
2170
|
chainId: 130,
|
|
1939
2171
|
isTestnet: false,
|
|
1940
2172
|
explorerUrl: 'https://unichain.blockscout.com/tx/{hash}',
|
|
1941
|
-
rpcEndpoints: ['https://
|
|
2173
|
+
rpcEndpoints: ['https://mainnet.unichain.org'],
|
|
1942
2174
|
eurcAddress: null,
|
|
1943
2175
|
usdcAddress: '0x078D782b760474a361dDA0AF3839290b0EF57AD6',
|
|
1944
2176
|
cctp: {
|
|
@@ -1958,6 +2190,10 @@ const Unichain = defineChain({
|
|
|
1958
2190
|
fastConfirmations: 1,
|
|
1959
2191
|
},
|
|
1960
2192
|
},
|
|
2193
|
+
forwarderSupported: {
|
|
2194
|
+
source: true,
|
|
2195
|
+
destination: true,
|
|
2196
|
+
},
|
|
1961
2197
|
},
|
|
1962
2198
|
kitContracts: {
|
|
1963
2199
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -2002,6 +2238,10 @@ const UnichainSepolia = defineChain({
|
|
|
2002
2238
|
fastConfirmations: 1,
|
|
2003
2239
|
},
|
|
2004
2240
|
},
|
|
2241
|
+
forwarderSupported: {
|
|
2242
|
+
source: true,
|
|
2243
|
+
destination: true,
|
|
2244
|
+
},
|
|
2005
2245
|
},
|
|
2006
2246
|
kitContracts: {
|
|
2007
2247
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -2028,7 +2268,7 @@ const WorldChain = defineChain({
|
|
|
2028
2268
|
explorerUrl: 'https://worldscan.org/tx/{hash}',
|
|
2029
2269
|
rpcEndpoints: ['https://worldchain-mainnet.g.alchemy.com/public'],
|
|
2030
2270
|
eurcAddress: null,
|
|
2031
|
-
usdcAddress: '
|
|
2271
|
+
usdcAddress: '0x79A02482A880bCE3F13e09Da970dC34db4CD24d1',
|
|
2032
2272
|
cctp: {
|
|
2033
2273
|
domain: 14,
|
|
2034
2274
|
contracts: {
|
|
@@ -2040,6 +2280,10 @@ const WorldChain = defineChain({
|
|
|
2040
2280
|
fastConfirmations: 1,
|
|
2041
2281
|
},
|
|
2042
2282
|
},
|
|
2283
|
+
forwarderSupported: {
|
|
2284
|
+
source: true,
|
|
2285
|
+
destination: true,
|
|
2286
|
+
},
|
|
2043
2287
|
},
|
|
2044
2288
|
kitContracts: {
|
|
2045
2289
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -2081,6 +2325,10 @@ const WorldChainSepolia = defineChain({
|
|
|
2081
2325
|
fastConfirmations: 1,
|
|
2082
2326
|
},
|
|
2083
2327
|
},
|
|
2328
|
+
forwarderSupported: {
|
|
2329
|
+
source: true,
|
|
2330
|
+
destination: true,
|
|
2331
|
+
},
|
|
2084
2332
|
},
|
|
2085
2333
|
kitContracts: {
|
|
2086
2334
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -2107,7 +2355,7 @@ const XDC = defineChain({
|
|
|
2107
2355
|
chainId: 50,
|
|
2108
2356
|
isTestnet: false,
|
|
2109
2357
|
explorerUrl: 'https://xdcscan.io/tx/{hash}',
|
|
2110
|
-
rpcEndpoints: ['https://erpc.xinfin.network'],
|
|
2358
|
+
rpcEndpoints: ['https://erpc.xdcrpc.com', 'https://erpc.xinfin.network'],
|
|
2111
2359
|
eurcAddress: null,
|
|
2112
2360
|
usdcAddress: '0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1',
|
|
2113
2361
|
cctp: {
|
|
@@ -2121,6 +2369,10 @@ const XDC = defineChain({
|
|
|
2121
2369
|
fastConfirmations: 3,
|
|
2122
2370
|
},
|
|
2123
2371
|
},
|
|
2372
|
+
forwarderSupported: {
|
|
2373
|
+
source: true,
|
|
2374
|
+
destination: false,
|
|
2375
|
+
},
|
|
2124
2376
|
},
|
|
2125
2377
|
kitContracts: {
|
|
2126
2378
|
bridge: BRIDGE_CONTRACT_EVM_MAINNET,
|
|
@@ -2159,6 +2411,10 @@ const XDCApothem = defineChain({
|
|
|
2159
2411
|
fastConfirmations: 1,
|
|
2160
2412
|
},
|
|
2161
2413
|
},
|
|
2414
|
+
forwarderSupported: {
|
|
2415
|
+
source: true,
|
|
2416
|
+
destination: false,
|
|
2417
|
+
},
|
|
2162
2418
|
},
|
|
2163
2419
|
kitContracts: {
|
|
2164
2420
|
bridge: BRIDGE_CONTRACT_EVM_TESTNET,
|
|
@@ -2400,5 +2656,5 @@ z.union([
|
|
|
2400
2656
|
})),
|
|
2401
2657
|
]);
|
|
2402
2658
|
|
|
2403
|
-
export { Arbitrum, ArbitrumSepolia, ArcTestnet, Avalanche, AvalancheFuji, Base, BaseSepolia, BridgeChain, Codex, CodexTestnet, Ethereum, EthereumSepolia, HyperEVM, HyperEVMTestnet, Ink, InkTestnet, Linea, LineaSepolia, Optimism, OptimismSepolia, Plume, PlumeTestnet, Polygon, PolygonAmoy, Sei, SeiTestnet, Solana, SolanaDevnet, Sonic, SonicTestnet, Unichain, UnichainSepolia, WorldChain, WorldChainSepolia, XDC, XDCApothem };
|
|
2659
|
+
export { Arbitrum, ArbitrumSepolia, ArcTestnet, Avalanche, AvalancheFuji, Base, BaseSepolia, BridgeChain, Codex, CodexTestnet, Ethereum, EthereumSepolia, HyperEVM, HyperEVMTestnet, Ink, InkTestnet, Linea, LineaSepolia, Monad, MonadTestnet, Optimism, OptimismSepolia, Plume, PlumeTestnet, Polygon, PolygonAmoy, Sei, SeiTestnet, Solana, SolanaDevnet, Sonic, SonicTestnet, Unichain, UnichainSepolia, WorldChain, WorldChainSepolia, XDC, XDCApothem };
|
|
2404
2660
|
//# sourceMappingURL=chains.mjs.map
|