@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.d.ts
CHANGED
|
@@ -54,6 +54,8 @@ declare enum Blockchain {
|
|
|
54
54
|
Ink_Testnet = "Ink_Testnet",
|
|
55
55
|
Linea = "Linea",
|
|
56
56
|
Linea_Sepolia = "Linea_Sepolia",
|
|
57
|
+
Monad = "Monad",
|
|
58
|
+
Monad_Testnet = "Monad_Testnet",
|
|
57
59
|
NEAR = "NEAR",
|
|
58
60
|
NEAR_Testnet = "NEAR_Testnet",
|
|
59
61
|
Noble = "Noble",
|
|
@@ -140,6 +142,7 @@ declare enum BridgeChain {
|
|
|
140
142
|
HyperEVM = "HyperEVM",
|
|
141
143
|
Ink = "Ink",
|
|
142
144
|
Linea = "Linea",
|
|
145
|
+
Monad = "Monad",
|
|
143
146
|
Optimism = "Optimism",
|
|
144
147
|
Plume = "Plume",
|
|
145
148
|
Polygon = "Polygon",
|
|
@@ -158,6 +161,7 @@ declare enum BridgeChain {
|
|
|
158
161
|
HyperEVM_Testnet = "HyperEVM_Testnet",
|
|
159
162
|
Ink_Testnet = "Ink_Testnet",
|
|
160
163
|
Linea_Sepolia = "Linea_Sepolia",
|
|
164
|
+
Monad_Testnet = "Monad_Testnet",
|
|
161
165
|
Optimism_Sepolia = "Optimism_Sepolia",
|
|
162
166
|
Plume_Testnet = "Plume_Testnet",
|
|
163
167
|
Polygon_Amoy_Testnet = "Polygon_Amoy_Testnet",
|
|
@@ -205,6 +209,10 @@ declare const ArcTestnet: {
|
|
|
205
209
|
readonly fastConfirmations: 1;
|
|
206
210
|
};
|
|
207
211
|
};
|
|
212
|
+
readonly forwarderSupported: {
|
|
213
|
+
readonly source: true;
|
|
214
|
+
readonly destination: true;
|
|
215
|
+
};
|
|
208
216
|
};
|
|
209
217
|
readonly kitContracts: {
|
|
210
218
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -249,6 +257,10 @@ declare const Arbitrum: {
|
|
|
249
257
|
readonly fastConfirmations: 1;
|
|
250
258
|
};
|
|
251
259
|
};
|
|
260
|
+
readonly forwarderSupported: {
|
|
261
|
+
readonly source: true;
|
|
262
|
+
readonly destination: true;
|
|
263
|
+
};
|
|
252
264
|
};
|
|
253
265
|
readonly kitContracts: {
|
|
254
266
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -293,6 +305,10 @@ declare const ArbitrumSepolia: {
|
|
|
293
305
|
readonly fastConfirmations: 1;
|
|
294
306
|
};
|
|
295
307
|
};
|
|
308
|
+
readonly forwarderSupported: {
|
|
309
|
+
readonly source: true;
|
|
310
|
+
readonly destination: true;
|
|
311
|
+
};
|
|
296
312
|
};
|
|
297
313
|
readonly kitContracts: {
|
|
298
314
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -337,6 +353,10 @@ declare const Avalanche: {
|
|
|
337
353
|
readonly fastConfirmations: 1;
|
|
338
354
|
};
|
|
339
355
|
};
|
|
356
|
+
readonly forwarderSupported: {
|
|
357
|
+
readonly source: true;
|
|
358
|
+
readonly destination: true;
|
|
359
|
+
};
|
|
340
360
|
};
|
|
341
361
|
readonly kitContracts: {
|
|
342
362
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -380,6 +400,10 @@ declare const AvalancheFuji: {
|
|
|
380
400
|
readonly fastConfirmations: 1;
|
|
381
401
|
};
|
|
382
402
|
};
|
|
403
|
+
readonly forwarderSupported: {
|
|
404
|
+
readonly source: true;
|
|
405
|
+
readonly destination: true;
|
|
406
|
+
};
|
|
383
407
|
};
|
|
384
408
|
readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
385
409
|
readonly kitContracts: {
|
|
@@ -425,6 +449,10 @@ declare const Base: {
|
|
|
425
449
|
readonly fastConfirmations: 1;
|
|
426
450
|
};
|
|
427
451
|
};
|
|
452
|
+
readonly forwarderSupported: {
|
|
453
|
+
readonly source: true;
|
|
454
|
+
readonly destination: true;
|
|
455
|
+
};
|
|
428
456
|
};
|
|
429
457
|
readonly kitContracts: {
|
|
430
458
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -469,6 +497,10 @@ declare const BaseSepolia: {
|
|
|
469
497
|
readonly fastConfirmations: 1;
|
|
470
498
|
};
|
|
471
499
|
};
|
|
500
|
+
readonly forwarderSupported: {
|
|
501
|
+
readonly source: true;
|
|
502
|
+
readonly destination: true;
|
|
503
|
+
};
|
|
472
504
|
};
|
|
473
505
|
readonly kitContracts: {
|
|
474
506
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -507,6 +539,10 @@ declare const Codex: {
|
|
|
507
539
|
readonly fastConfirmations: 1;
|
|
508
540
|
};
|
|
509
541
|
};
|
|
542
|
+
readonly forwarderSupported: {
|
|
543
|
+
readonly source: true;
|
|
544
|
+
readonly destination: false;
|
|
545
|
+
};
|
|
510
546
|
};
|
|
511
547
|
readonly kitContracts: {
|
|
512
548
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -545,6 +581,10 @@ declare const CodexTestnet: {
|
|
|
545
581
|
readonly fastConfirmations: 1;
|
|
546
582
|
};
|
|
547
583
|
};
|
|
584
|
+
readonly forwarderSupported: {
|
|
585
|
+
readonly source: true;
|
|
586
|
+
readonly destination: false;
|
|
587
|
+
};
|
|
548
588
|
};
|
|
549
589
|
readonly kitContracts: {
|
|
550
590
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -589,6 +629,10 @@ declare const Ethereum: {
|
|
|
589
629
|
readonly fastConfirmations: 2;
|
|
590
630
|
};
|
|
591
631
|
};
|
|
632
|
+
readonly forwarderSupported: {
|
|
633
|
+
readonly source: true;
|
|
634
|
+
readonly destination: true;
|
|
635
|
+
};
|
|
592
636
|
};
|
|
593
637
|
readonly kitContracts: {
|
|
594
638
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -633,6 +677,10 @@ declare const EthereumSepolia: {
|
|
|
633
677
|
readonly fastConfirmations: 2;
|
|
634
678
|
};
|
|
635
679
|
};
|
|
680
|
+
readonly forwarderSupported: {
|
|
681
|
+
readonly source: true;
|
|
682
|
+
readonly destination: true;
|
|
683
|
+
};
|
|
636
684
|
};
|
|
637
685
|
readonly kitContracts: {
|
|
638
686
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -673,6 +721,10 @@ declare const HyperEVM: {
|
|
|
673
721
|
readonly fastConfirmations: 1;
|
|
674
722
|
};
|
|
675
723
|
};
|
|
724
|
+
readonly forwarderSupported: {
|
|
725
|
+
readonly source: true;
|
|
726
|
+
readonly destination: true;
|
|
727
|
+
};
|
|
676
728
|
};
|
|
677
729
|
readonly kitContracts: {
|
|
678
730
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -712,6 +764,10 @@ declare const HyperEVMTestnet: {
|
|
|
712
764
|
readonly fastConfirmations: 1;
|
|
713
765
|
};
|
|
714
766
|
};
|
|
767
|
+
readonly forwarderSupported: {
|
|
768
|
+
readonly source: true;
|
|
769
|
+
readonly destination: true;
|
|
770
|
+
};
|
|
715
771
|
};
|
|
716
772
|
readonly kitContracts: {
|
|
717
773
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -752,6 +808,10 @@ declare const Ink: {
|
|
|
752
808
|
readonly fastConfirmations: 1;
|
|
753
809
|
};
|
|
754
810
|
};
|
|
811
|
+
readonly forwarderSupported: {
|
|
812
|
+
readonly source: true;
|
|
813
|
+
readonly destination: true;
|
|
814
|
+
};
|
|
755
815
|
};
|
|
756
816
|
readonly kitContracts: {
|
|
757
817
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -791,6 +851,10 @@ declare const InkTestnet: {
|
|
|
791
851
|
readonly fastConfirmations: 1;
|
|
792
852
|
};
|
|
793
853
|
};
|
|
854
|
+
readonly forwarderSupported: {
|
|
855
|
+
readonly source: true;
|
|
856
|
+
readonly destination: true;
|
|
857
|
+
};
|
|
794
858
|
};
|
|
795
859
|
readonly kitContracts: {
|
|
796
860
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -829,6 +893,10 @@ declare const Linea: {
|
|
|
829
893
|
readonly fastConfirmations: 1;
|
|
830
894
|
};
|
|
831
895
|
};
|
|
896
|
+
readonly forwarderSupported: {
|
|
897
|
+
readonly source: true;
|
|
898
|
+
readonly destination: true;
|
|
899
|
+
};
|
|
832
900
|
};
|
|
833
901
|
readonly kitContracts: {
|
|
834
902
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -867,6 +935,98 @@ declare const LineaSepolia: {
|
|
|
867
935
|
readonly fastConfirmations: 1;
|
|
868
936
|
};
|
|
869
937
|
};
|
|
938
|
+
readonly forwarderSupported: {
|
|
939
|
+
readonly source: true;
|
|
940
|
+
readonly destination: true;
|
|
941
|
+
};
|
|
942
|
+
};
|
|
943
|
+
readonly kitContracts: {
|
|
944
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
945
|
+
};
|
|
946
|
+
};
|
|
947
|
+
|
|
948
|
+
/**
|
|
949
|
+
* Monad Mainnet chain definition
|
|
950
|
+
* @remarks
|
|
951
|
+
* This represents the official production network for the Monad blockchain.
|
|
952
|
+
* Monad is a high-performance EVM-compatible Layer-1 blockchain featuring
|
|
953
|
+
* over 10,000 TPS, sub-second finality, and near-zero gas fees.
|
|
954
|
+
*/
|
|
955
|
+
declare const Monad: {
|
|
956
|
+
readonly type: "evm";
|
|
957
|
+
readonly chain: Blockchain.Monad;
|
|
958
|
+
readonly name: "Monad";
|
|
959
|
+
readonly title: "Monad Mainnet";
|
|
960
|
+
readonly nativeCurrency: {
|
|
961
|
+
readonly name: "Monad";
|
|
962
|
+
readonly symbol: "MON";
|
|
963
|
+
readonly decimals: 18;
|
|
964
|
+
};
|
|
965
|
+
readonly chainId: 143;
|
|
966
|
+
readonly isTestnet: false;
|
|
967
|
+
readonly explorerUrl: "https://monadscan.com/tx/{hash}";
|
|
968
|
+
readonly rpcEndpoints: readonly ["https://rpc.monad.xyz"];
|
|
969
|
+
readonly eurcAddress: null;
|
|
970
|
+
readonly usdcAddress: "0x754704Bc059F8C67012fEd69BC8A327a5aafb603";
|
|
971
|
+
readonly cctp: {
|
|
972
|
+
readonly domain: 15;
|
|
973
|
+
readonly contracts: {
|
|
974
|
+
readonly v2: {
|
|
975
|
+
readonly type: "split";
|
|
976
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
977
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
978
|
+
readonly confirmations: 1;
|
|
979
|
+
readonly fastConfirmations: 1;
|
|
980
|
+
};
|
|
981
|
+
};
|
|
982
|
+
readonly forwarderSupported: {
|
|
983
|
+
readonly source: true;
|
|
984
|
+
readonly destination: true;
|
|
985
|
+
};
|
|
986
|
+
};
|
|
987
|
+
readonly kitContracts: {
|
|
988
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
989
|
+
};
|
|
990
|
+
};
|
|
991
|
+
|
|
992
|
+
/**
|
|
993
|
+
* Monad Testnet chain definition
|
|
994
|
+
* @remarks
|
|
995
|
+
* This represents the official test network for the Monad blockchain.
|
|
996
|
+
* Monad is a high-performance EVM-compatible Layer-1 blockchain featuring
|
|
997
|
+
* over 10,000 TPS, sub-second finality, and near-zero gas fees.
|
|
998
|
+
*/
|
|
999
|
+
declare const MonadTestnet: {
|
|
1000
|
+
readonly type: "evm";
|
|
1001
|
+
readonly chain: Blockchain.Monad_Testnet;
|
|
1002
|
+
readonly name: "Monad Testnet";
|
|
1003
|
+
readonly title: "Monad Testnet";
|
|
1004
|
+
readonly nativeCurrency: {
|
|
1005
|
+
readonly name: "Monad";
|
|
1006
|
+
readonly symbol: "MON";
|
|
1007
|
+
readonly decimals: 18;
|
|
1008
|
+
};
|
|
1009
|
+
readonly chainId: 10143;
|
|
1010
|
+
readonly isTestnet: true;
|
|
1011
|
+
readonly explorerUrl: "https://testnet.monadscan.com/tx/{hash}";
|
|
1012
|
+
readonly rpcEndpoints: readonly ["https://testnet-rpc.monad.xyz"];
|
|
1013
|
+
readonly eurcAddress: null;
|
|
1014
|
+
readonly usdcAddress: "0x534b2f3A21130d7a60830c2Df862319e593943A3";
|
|
1015
|
+
readonly cctp: {
|
|
1016
|
+
readonly domain: 15;
|
|
1017
|
+
readonly contracts: {
|
|
1018
|
+
readonly v2: {
|
|
1019
|
+
readonly type: "split";
|
|
1020
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1021
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1022
|
+
readonly confirmations: 1;
|
|
1023
|
+
readonly fastConfirmations: 1;
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
readonly forwarderSupported: {
|
|
1027
|
+
readonly source: true;
|
|
1028
|
+
readonly destination: true;
|
|
1029
|
+
};
|
|
870
1030
|
};
|
|
871
1031
|
readonly kitContracts: {
|
|
872
1032
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -911,6 +1071,10 @@ declare const Optimism: {
|
|
|
911
1071
|
readonly fastConfirmations: 1;
|
|
912
1072
|
};
|
|
913
1073
|
};
|
|
1074
|
+
readonly forwarderSupported: {
|
|
1075
|
+
readonly source: true;
|
|
1076
|
+
readonly destination: true;
|
|
1077
|
+
};
|
|
914
1078
|
};
|
|
915
1079
|
readonly kitContracts: {
|
|
916
1080
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -955,6 +1119,10 @@ declare const OptimismSepolia: {
|
|
|
955
1119
|
readonly fastConfirmations: 1;
|
|
956
1120
|
};
|
|
957
1121
|
};
|
|
1122
|
+
readonly forwarderSupported: {
|
|
1123
|
+
readonly source: true;
|
|
1124
|
+
readonly destination: true;
|
|
1125
|
+
};
|
|
958
1126
|
};
|
|
959
1127
|
readonly kitContracts: {
|
|
960
1128
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -995,6 +1163,10 @@ declare const Plume: {
|
|
|
995
1163
|
readonly fastConfirmations: 1;
|
|
996
1164
|
};
|
|
997
1165
|
};
|
|
1166
|
+
readonly forwarderSupported: {
|
|
1167
|
+
readonly source: true;
|
|
1168
|
+
readonly destination: false;
|
|
1169
|
+
};
|
|
998
1170
|
};
|
|
999
1171
|
readonly kitContracts: {
|
|
1000
1172
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1034,6 +1206,10 @@ declare const PlumeTestnet: {
|
|
|
1034
1206
|
readonly fastConfirmations: 1;
|
|
1035
1207
|
};
|
|
1036
1208
|
};
|
|
1209
|
+
readonly forwarderSupported: {
|
|
1210
|
+
readonly source: true;
|
|
1211
|
+
readonly destination: false;
|
|
1212
|
+
};
|
|
1037
1213
|
};
|
|
1038
1214
|
readonly kitContracts: {
|
|
1039
1215
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1078,6 +1254,10 @@ declare const Polygon: {
|
|
|
1078
1254
|
readonly fastConfirmations: 13;
|
|
1079
1255
|
};
|
|
1080
1256
|
};
|
|
1257
|
+
readonly forwarderSupported: {
|
|
1258
|
+
readonly source: true;
|
|
1259
|
+
readonly destination: true;
|
|
1260
|
+
};
|
|
1081
1261
|
};
|
|
1082
1262
|
readonly kitContracts: {
|
|
1083
1263
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1122,6 +1302,10 @@ declare const PolygonAmoy: {
|
|
|
1122
1302
|
readonly fastConfirmations: 13;
|
|
1123
1303
|
};
|
|
1124
1304
|
};
|
|
1305
|
+
readonly forwarderSupported: {
|
|
1306
|
+
readonly source: true;
|
|
1307
|
+
readonly destination: true;
|
|
1308
|
+
};
|
|
1125
1309
|
};
|
|
1126
1310
|
readonly kitContracts: {
|
|
1127
1311
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1162,6 +1346,10 @@ declare const Sei: {
|
|
|
1162
1346
|
readonly fastConfirmations: 1;
|
|
1163
1347
|
};
|
|
1164
1348
|
};
|
|
1349
|
+
readonly forwarderSupported: {
|
|
1350
|
+
readonly source: true;
|
|
1351
|
+
readonly destination: true;
|
|
1352
|
+
};
|
|
1165
1353
|
};
|
|
1166
1354
|
readonly kitContracts: {
|
|
1167
1355
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1201,6 +1389,10 @@ declare const SeiTestnet: {
|
|
|
1201
1389
|
readonly fastConfirmations: 1;
|
|
1202
1390
|
};
|
|
1203
1391
|
};
|
|
1392
|
+
readonly forwarderSupported: {
|
|
1393
|
+
readonly source: true;
|
|
1394
|
+
readonly destination: true;
|
|
1395
|
+
};
|
|
1204
1396
|
};
|
|
1205
1397
|
readonly kitContracts: {
|
|
1206
1398
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1239,6 +1431,10 @@ declare const Sonic: {
|
|
|
1239
1431
|
readonly fastConfirmations: 1;
|
|
1240
1432
|
};
|
|
1241
1433
|
};
|
|
1434
|
+
readonly forwarderSupported: {
|
|
1435
|
+
readonly source: true;
|
|
1436
|
+
readonly destination: true;
|
|
1437
|
+
};
|
|
1242
1438
|
};
|
|
1243
1439
|
readonly kitContracts: {
|
|
1244
1440
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1277,6 +1473,10 @@ declare const SonicTestnet: {
|
|
|
1277
1473
|
readonly fastConfirmations: 1;
|
|
1278
1474
|
};
|
|
1279
1475
|
};
|
|
1476
|
+
readonly forwarderSupported: {
|
|
1477
|
+
readonly source: true;
|
|
1478
|
+
readonly destination: true;
|
|
1479
|
+
};
|
|
1280
1480
|
};
|
|
1281
1481
|
readonly kitContracts: {
|
|
1282
1482
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1320,6 +1520,10 @@ declare const Solana: {
|
|
|
1320
1520
|
readonly fastConfirmations: 3;
|
|
1321
1521
|
};
|
|
1322
1522
|
};
|
|
1523
|
+
readonly forwarderSupported: {
|
|
1524
|
+
readonly source: true;
|
|
1525
|
+
readonly destination: false;
|
|
1526
|
+
};
|
|
1323
1527
|
};
|
|
1324
1528
|
readonly kitContracts: {
|
|
1325
1529
|
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
@@ -1362,6 +1566,10 @@ declare const SolanaDevnet: {
|
|
|
1362
1566
|
readonly fastConfirmations: 3;
|
|
1363
1567
|
};
|
|
1364
1568
|
};
|
|
1569
|
+
readonly forwarderSupported: {
|
|
1570
|
+
readonly source: true;
|
|
1571
|
+
readonly destination: false;
|
|
1572
|
+
};
|
|
1365
1573
|
};
|
|
1366
1574
|
readonly kitContracts: {
|
|
1367
1575
|
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
@@ -1387,7 +1595,7 @@ declare const Unichain: {
|
|
|
1387
1595
|
readonly chainId: 130;
|
|
1388
1596
|
readonly isTestnet: false;
|
|
1389
1597
|
readonly explorerUrl: "https://unichain.blockscout.com/tx/{hash}";
|
|
1390
|
-
readonly rpcEndpoints: readonly ["https://
|
|
1598
|
+
readonly rpcEndpoints: readonly ["https://mainnet.unichain.org"];
|
|
1391
1599
|
readonly eurcAddress: null;
|
|
1392
1600
|
readonly usdcAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
1393
1601
|
readonly cctp: {
|
|
@@ -1407,6 +1615,10 @@ declare const Unichain: {
|
|
|
1407
1615
|
readonly fastConfirmations: 1;
|
|
1408
1616
|
};
|
|
1409
1617
|
};
|
|
1618
|
+
readonly forwarderSupported: {
|
|
1619
|
+
readonly source: true;
|
|
1620
|
+
readonly destination: true;
|
|
1621
|
+
};
|
|
1410
1622
|
};
|
|
1411
1623
|
readonly kitContracts: {
|
|
1412
1624
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1451,6 +1663,10 @@ declare const UnichainSepolia: {
|
|
|
1451
1663
|
readonly fastConfirmations: 1;
|
|
1452
1664
|
};
|
|
1453
1665
|
};
|
|
1666
|
+
readonly forwarderSupported: {
|
|
1667
|
+
readonly source: true;
|
|
1668
|
+
readonly destination: true;
|
|
1669
|
+
};
|
|
1454
1670
|
};
|
|
1455
1671
|
readonly kitContracts: {
|
|
1456
1672
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1477,7 +1693,7 @@ declare const WorldChain: {
|
|
|
1477
1693
|
readonly explorerUrl: "https://worldscan.org/tx/{hash}";
|
|
1478
1694
|
readonly rpcEndpoints: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
|
|
1479
1695
|
readonly eurcAddress: null;
|
|
1480
|
-
readonly usdcAddress: "
|
|
1696
|
+
readonly usdcAddress: "0x79A02482A880bCE3F13e09Da970dC34db4CD24d1";
|
|
1481
1697
|
readonly cctp: {
|
|
1482
1698
|
readonly domain: 14;
|
|
1483
1699
|
readonly contracts: {
|
|
@@ -1489,6 +1705,10 @@ declare const WorldChain: {
|
|
|
1489
1705
|
readonly fastConfirmations: 1;
|
|
1490
1706
|
};
|
|
1491
1707
|
};
|
|
1708
|
+
readonly forwarderSupported: {
|
|
1709
|
+
readonly source: true;
|
|
1710
|
+
readonly destination: true;
|
|
1711
|
+
};
|
|
1492
1712
|
};
|
|
1493
1713
|
readonly kitContracts: {
|
|
1494
1714
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1527,6 +1747,10 @@ declare const WorldChainSepolia: {
|
|
|
1527
1747
|
readonly fastConfirmations: 1;
|
|
1528
1748
|
};
|
|
1529
1749
|
};
|
|
1750
|
+
readonly forwarderSupported: {
|
|
1751
|
+
readonly source: true;
|
|
1752
|
+
readonly destination: true;
|
|
1753
|
+
};
|
|
1530
1754
|
};
|
|
1531
1755
|
readonly kitContracts: {
|
|
1532
1756
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
@@ -1553,7 +1777,7 @@ declare const XDC: {
|
|
|
1553
1777
|
readonly chainId: 50;
|
|
1554
1778
|
readonly isTestnet: false;
|
|
1555
1779
|
readonly explorerUrl: "https://xdcscan.io/tx/{hash}";
|
|
1556
|
-
readonly rpcEndpoints: readonly ["https://erpc.xinfin.network"];
|
|
1780
|
+
readonly rpcEndpoints: readonly ["https://erpc.xdcrpc.com", "https://erpc.xinfin.network"];
|
|
1557
1781
|
readonly eurcAddress: null;
|
|
1558
1782
|
readonly usdcAddress: "0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1";
|
|
1559
1783
|
readonly cctp: {
|
|
@@ -1567,6 +1791,10 @@ declare const XDC: {
|
|
|
1567
1791
|
readonly fastConfirmations: 3;
|
|
1568
1792
|
};
|
|
1569
1793
|
};
|
|
1794
|
+
readonly forwarderSupported: {
|
|
1795
|
+
readonly source: true;
|
|
1796
|
+
readonly destination: false;
|
|
1797
|
+
};
|
|
1570
1798
|
};
|
|
1571
1799
|
readonly kitContracts: {
|
|
1572
1800
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
@@ -1605,10 +1833,14 @@ declare const XDCApothem: {
|
|
|
1605
1833
|
readonly fastConfirmations: 1;
|
|
1606
1834
|
};
|
|
1607
1835
|
};
|
|
1836
|
+
readonly forwarderSupported: {
|
|
1837
|
+
readonly source: true;
|
|
1838
|
+
readonly destination: false;
|
|
1839
|
+
};
|
|
1608
1840
|
};
|
|
1609
1841
|
readonly kitContracts: {
|
|
1610
1842
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1611
1843
|
};
|
|
1612
1844
|
};
|
|
1613
1845
|
|
|
1614
|
-
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 };
|
|
1846
|
+
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 };
|