@circle-fin/app-kit 1.12.1 → 1.13.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 +59 -0
- package/README.md +31 -12
- package/bridge.cjs +2214 -186
- package/bridge.d.cts +86 -17
- package/bridge.d.mts +86 -17
- package/bridge.d.ts +86 -17
- package/bridge.mjs +2216 -188
- package/chains.cjs +134 -0
- package/chains.d.cts +126 -1
- package/chains.d.mts +126 -1
- package/chains.d.ts +126 -1
- package/chains.mjs +133 -1
- package/context.d.cts +86 -17
- package/context.d.mts +86 -17
- package/context.d.ts +86 -17
- package/earn.cjs +467 -48
- package/earn.d.cts +86 -17
- package/earn.d.mts +86 -17
- package/earn.d.ts +86 -17
- package/earn.mjs +467 -48
- package/estimateBridge.cjs +2214 -186
- package/estimateBridge.d.cts +196 -18
- package/estimateBridge.d.mts +196 -18
- package/estimateBridge.d.ts +196 -18
- package/estimateBridge.mjs +2216 -188
- package/estimateSwap.cjs +571 -131
- package/estimateSwap.d.cts +86 -17
- package/estimateSwap.d.mts +86 -17
- package/estimateSwap.d.ts +86 -17
- package/estimateSwap.mjs +571 -131
- package/index.cjs +2101 -434
- package/index.d.cts +949 -147
- package/index.d.mts +949 -147
- package/index.d.ts +949 -147
- package/index.mjs +2103 -436
- package/package.json +6 -6
- package/swap.cjs +571 -131
- package/swap.d.cts +93 -18
- package/swap.d.mts +93 -18
- package/swap.d.ts +93 -18
- package/swap.mjs +571 -131
- package/unifiedBalance.cjs +384 -67
- package/unifiedBalance.d.cts +76 -2
- package/unifiedBalance.d.mts +76 -2
- package/unifiedBalance.d.ts +76 -2
- package/unifiedBalance.mjs +384 -67
package/chains.d.mts
CHANGED
|
@@ -72,6 +72,8 @@ declare enum Blockchain {
|
|
|
72
72
|
Optimism_Sepolia = "Optimism_Sepolia",
|
|
73
73
|
Pharos = "Pharos",
|
|
74
74
|
Pharos_Testnet = "Pharos_Testnet",
|
|
75
|
+
Plasma = "Plasma",
|
|
76
|
+
Plasma_Testnet = "Plasma_Testnet",
|
|
75
77
|
Polkadot_Asset_Hub = "Polkadot_Asset_Hub",
|
|
76
78
|
Polkadot_Westmint = "Polkadot_Westmint",
|
|
77
79
|
Plume = "Plume",
|
|
@@ -132,6 +134,7 @@ declare const ArcTestnet: {
|
|
|
132
134
|
readonly v2: {
|
|
133
135
|
readonly type: "split";
|
|
134
136
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
137
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
135
138
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
136
139
|
readonly confirmations: 1;
|
|
137
140
|
readonly fastConfirmations: 1;
|
|
@@ -196,6 +199,7 @@ declare const Arbitrum: {
|
|
|
196
199
|
readonly v2: {
|
|
197
200
|
readonly type: "split";
|
|
198
201
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
202
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
199
203
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
200
204
|
readonly confirmations: 65;
|
|
201
205
|
readonly fastConfirmations: 1;
|
|
@@ -259,6 +263,7 @@ declare const ArbitrumSepolia: {
|
|
|
259
263
|
readonly v2: {
|
|
260
264
|
readonly type: "split";
|
|
261
265
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
266
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
262
267
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
263
268
|
readonly confirmations: 65;
|
|
264
269
|
readonly fastConfirmations: 1;
|
|
@@ -322,6 +327,7 @@ declare const Avalanche: {
|
|
|
322
327
|
readonly v2: {
|
|
323
328
|
readonly type: "split";
|
|
324
329
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
330
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
325
331
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
326
332
|
readonly confirmations: 1;
|
|
327
333
|
readonly fastConfirmations: 1;
|
|
@@ -384,6 +390,7 @@ declare const AvalancheFuji: {
|
|
|
384
390
|
readonly v2: {
|
|
385
391
|
readonly type: "split";
|
|
386
392
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
393
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
387
394
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
388
395
|
readonly confirmations: 1;
|
|
389
396
|
readonly fastConfirmations: 1;
|
|
@@ -447,6 +454,7 @@ declare const Base: {
|
|
|
447
454
|
readonly v2: {
|
|
448
455
|
readonly type: "split";
|
|
449
456
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
457
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
450
458
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
451
459
|
readonly confirmations: 65;
|
|
452
460
|
readonly fastConfirmations: 1;
|
|
@@ -510,6 +518,7 @@ declare const BaseSepolia: {
|
|
|
510
518
|
readonly v2: {
|
|
511
519
|
readonly type: "split";
|
|
512
520
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
521
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
513
522
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
514
523
|
readonly confirmations: 65;
|
|
515
524
|
readonly fastConfirmations: 1;
|
|
@@ -567,6 +576,7 @@ declare const Codex: {
|
|
|
567
576
|
readonly v2: {
|
|
568
577
|
readonly type: "split";
|
|
569
578
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
579
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
570
580
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
571
581
|
readonly confirmations: 65;
|
|
572
582
|
readonly fastConfirmations: 1;
|
|
@@ -610,6 +620,7 @@ declare const CodexTestnet: {
|
|
|
610
620
|
readonly v2: {
|
|
611
621
|
readonly type: "split";
|
|
612
622
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
623
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
613
624
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
614
625
|
readonly confirmations: 65;
|
|
615
626
|
readonly fastConfirmations: 1;
|
|
@@ -659,6 +670,7 @@ declare const Ethereum: {
|
|
|
659
670
|
readonly v2: {
|
|
660
671
|
readonly type: "split";
|
|
661
672
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
673
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
662
674
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
663
675
|
readonly confirmations: 65;
|
|
664
676
|
readonly fastConfirmations: 2;
|
|
@@ -722,6 +734,7 @@ declare const EthereumSepolia: {
|
|
|
722
734
|
readonly v2: {
|
|
723
735
|
readonly type: "split";
|
|
724
736
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
737
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
725
738
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
726
739
|
readonly confirmations: 65;
|
|
727
740
|
readonly fastConfirmations: 2;
|
|
@@ -781,6 +794,7 @@ declare const HyperEVM: {
|
|
|
781
794
|
readonly v2: {
|
|
782
795
|
readonly type: "split";
|
|
783
796
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
797
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
784
798
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
785
799
|
readonly confirmations: 1;
|
|
786
800
|
readonly fastConfirmations: 1;
|
|
@@ -839,6 +853,7 @@ declare const HyperEVMTestnet: {
|
|
|
839
853
|
readonly v2: {
|
|
840
854
|
readonly type: "split";
|
|
841
855
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
856
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
842
857
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
843
858
|
readonly confirmations: 1;
|
|
844
859
|
readonly fastConfirmations: 1;
|
|
@@ -897,6 +912,7 @@ declare const Ink: {
|
|
|
897
912
|
readonly v2: {
|
|
898
913
|
readonly type: "split";
|
|
899
914
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
915
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
900
916
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
901
917
|
readonly confirmations: 65;
|
|
902
918
|
readonly fastConfirmations: 1;
|
|
@@ -942,6 +958,7 @@ declare const InkTestnet: {
|
|
|
942
958
|
readonly v2: {
|
|
943
959
|
readonly type: "split";
|
|
944
960
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
961
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
945
962
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
946
963
|
readonly confirmations: 65;
|
|
947
964
|
readonly fastConfirmations: 1;
|
|
@@ -985,6 +1002,7 @@ declare const Linea: {
|
|
|
985
1002
|
readonly v2: {
|
|
986
1003
|
readonly type: "split";
|
|
987
1004
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1005
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
988
1006
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
989
1007
|
readonly confirmations: 1;
|
|
990
1008
|
readonly fastConfirmations: 1;
|
|
@@ -1029,6 +1047,7 @@ declare const LineaSepolia: {
|
|
|
1029
1047
|
readonly v2: {
|
|
1030
1048
|
readonly type: "split";
|
|
1031
1049
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
1050
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1032
1051
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1033
1052
|
readonly confirmations: 1;
|
|
1034
1053
|
readonly fastConfirmations: 1;
|
|
@@ -1078,6 +1097,7 @@ declare const Optimism: {
|
|
|
1078
1097
|
readonly v2: {
|
|
1079
1098
|
readonly type: "split";
|
|
1080
1099
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1100
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1081
1101
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1082
1102
|
readonly confirmations: 65;
|
|
1083
1103
|
readonly fastConfirmations: 1;
|
|
@@ -1141,6 +1161,7 @@ declare const OptimismSepolia: {
|
|
|
1141
1161
|
readonly v2: {
|
|
1142
1162
|
readonly type: "split";
|
|
1143
1163
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
1164
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1144
1165
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1145
1166
|
readonly confirmations: 65;
|
|
1146
1167
|
readonly fastConfirmations: 1;
|
|
@@ -1169,6 +1190,96 @@ declare const OptimismSepolia: {
|
|
|
1169
1190
|
};
|
|
1170
1191
|
};
|
|
1171
1192
|
|
|
1193
|
+
/**
|
|
1194
|
+
* Plasma Mainnet chain definition
|
|
1195
|
+
* @remarks
|
|
1196
|
+
* This represents the official production network for the Plasma blockchain.
|
|
1197
|
+
* Plasma is an EVM-equivalent Layer 1 blockchain purpose-built for global
|
|
1198
|
+
* stablecoin payments, with deterministic BFT finality (PlasmaBFT/Fast-HotStuff).
|
|
1199
|
+
*/
|
|
1200
|
+
declare const Plasma: {
|
|
1201
|
+
readonly type: "evm";
|
|
1202
|
+
readonly chain: Blockchain.Plasma;
|
|
1203
|
+
readonly name: "Plasma";
|
|
1204
|
+
readonly title: "Plasma Mainnet";
|
|
1205
|
+
readonly nativeCurrency: {
|
|
1206
|
+
readonly name: "Plasma";
|
|
1207
|
+
readonly symbol: "XPL";
|
|
1208
|
+
readonly decimals: 18;
|
|
1209
|
+
};
|
|
1210
|
+
readonly chainId: 9745;
|
|
1211
|
+
readonly isTestnet: false;
|
|
1212
|
+
readonly explorerUrl: "https://plasmascan.to/tx/{hash}";
|
|
1213
|
+
readonly rpcEndpoints: readonly ["https://rpc.plasma.to"];
|
|
1214
|
+
readonly eurcAddress: "0x3EE196E78d4d4248b849B8E1C7F44C5457FAFD2C";
|
|
1215
|
+
readonly usdcAddress: "0x2d661C89D812261039AF9764eceaAee884f5F67F";
|
|
1216
|
+
readonly usdtAddress: null;
|
|
1217
|
+
readonly cctp: {
|
|
1218
|
+
readonly domain: 33;
|
|
1219
|
+
readonly contracts: {
|
|
1220
|
+
readonly v2: {
|
|
1221
|
+
readonly type: "split";
|
|
1222
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1223
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1224
|
+
readonly confirmations: 3;
|
|
1225
|
+
readonly fastConfirmations: 1;
|
|
1226
|
+
};
|
|
1227
|
+
};
|
|
1228
|
+
readonly forwarderSupported: {
|
|
1229
|
+
readonly source: false;
|
|
1230
|
+
readonly destination: false;
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
readonly kitContracts: {
|
|
1234
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* Plasma Testnet chain definition
|
|
1240
|
+
* @remarks
|
|
1241
|
+
* This represents the official test network for the Plasma blockchain.
|
|
1242
|
+
* Plasma is an EVM-equivalent Layer 1 blockchain purpose-built for global
|
|
1243
|
+
* stablecoin payments, with deterministic BFT finality (PlasmaBFT/Fast-HotStuff).
|
|
1244
|
+
*/
|
|
1245
|
+
declare const PlasmaTestnet: {
|
|
1246
|
+
readonly type: "evm";
|
|
1247
|
+
readonly chain: Blockchain.Plasma_Testnet;
|
|
1248
|
+
readonly name: "Plasma Testnet";
|
|
1249
|
+
readonly title: "Plasma Testnet";
|
|
1250
|
+
readonly nativeCurrency: {
|
|
1251
|
+
readonly name: "Plasma";
|
|
1252
|
+
readonly symbol: "XPL";
|
|
1253
|
+
readonly decimals: 18;
|
|
1254
|
+
};
|
|
1255
|
+
readonly chainId: 9746;
|
|
1256
|
+
readonly isTestnet: true;
|
|
1257
|
+
readonly explorerUrl: "https://testnet.plasmascan.to/tx/{hash}";
|
|
1258
|
+
readonly rpcEndpoints: readonly ["https://testnet-rpc.plasma.to"];
|
|
1259
|
+
readonly eurcAddress: "0x98AfA0F93Dd993B736399f9074eDcEBD1985A330";
|
|
1260
|
+
readonly usdcAddress: "0xE67Fb267022cBA8064Dd388CC2FED724F3120D9D";
|
|
1261
|
+
readonly usdtAddress: null;
|
|
1262
|
+
readonly cctp: {
|
|
1263
|
+
readonly domain: 33;
|
|
1264
|
+
readonly contracts: {
|
|
1265
|
+
readonly v2: {
|
|
1266
|
+
readonly type: "split";
|
|
1267
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1268
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1269
|
+
readonly confirmations: 3;
|
|
1270
|
+
readonly fastConfirmations: 1;
|
|
1271
|
+
};
|
|
1272
|
+
};
|
|
1273
|
+
readonly forwarderSupported: {
|
|
1274
|
+
readonly source: false;
|
|
1275
|
+
readonly destination: false;
|
|
1276
|
+
};
|
|
1277
|
+
};
|
|
1278
|
+
readonly kitContracts: {
|
|
1279
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1280
|
+
};
|
|
1281
|
+
};
|
|
1282
|
+
|
|
1172
1283
|
/**
|
|
1173
1284
|
* Plume Mainnet chain definition
|
|
1174
1285
|
* @remarks
|
|
@@ -1199,6 +1310,7 @@ declare const Plume: {
|
|
|
1199
1310
|
readonly v2: {
|
|
1200
1311
|
readonly type: "split";
|
|
1201
1312
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1313
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1202
1314
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1203
1315
|
readonly confirmations: 65;
|
|
1204
1316
|
readonly fastConfirmations: 1;
|
|
@@ -1244,6 +1356,7 @@ declare const PlumeTestnet: {
|
|
|
1244
1356
|
readonly v2: {
|
|
1245
1357
|
readonly type: "split";
|
|
1246
1358
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1359
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1247
1360
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1248
1361
|
readonly confirmations: 65;
|
|
1249
1362
|
readonly fastConfirmations: 1;
|
|
@@ -1293,6 +1406,7 @@ declare const Polygon: {
|
|
|
1293
1406
|
readonly v2: {
|
|
1294
1407
|
readonly type: "split";
|
|
1295
1408
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1409
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1296
1410
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1297
1411
|
readonly confirmations: 33;
|
|
1298
1412
|
readonly fastConfirmations: 13;
|
|
@@ -1356,6 +1470,7 @@ declare const PolygonAmoy: {
|
|
|
1356
1470
|
readonly v2: {
|
|
1357
1471
|
readonly type: "split";
|
|
1358
1472
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1473
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1359
1474
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1360
1475
|
readonly confirmations: 33;
|
|
1361
1476
|
readonly fastConfirmations: 13;
|
|
@@ -1414,6 +1529,7 @@ declare const Sei: {
|
|
|
1414
1529
|
readonly v2: {
|
|
1415
1530
|
readonly type: "split";
|
|
1416
1531
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1532
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1417
1533
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1418
1534
|
readonly confirmations: 1;
|
|
1419
1535
|
readonly fastConfirmations: 1;
|
|
@@ -1472,6 +1588,7 @@ declare const SeiTestnet: {
|
|
|
1472
1588
|
readonly v2: {
|
|
1473
1589
|
readonly type: "split";
|
|
1474
1590
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1591
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1475
1592
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1476
1593
|
readonly confirmations: 1;
|
|
1477
1594
|
readonly fastConfirmations: 1;
|
|
@@ -1528,6 +1645,7 @@ declare const Sonic: {
|
|
|
1528
1645
|
readonly v2: {
|
|
1529
1646
|
readonly type: "split";
|
|
1530
1647
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1648
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1531
1649
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1532
1650
|
readonly confirmations: 1;
|
|
1533
1651
|
readonly fastConfirmations: 1;
|
|
@@ -1585,6 +1703,7 @@ declare const SonicTestnet: {
|
|
|
1585
1703
|
readonly v2: {
|
|
1586
1704
|
readonly type: "split";
|
|
1587
1705
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1706
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1588
1707
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1589
1708
|
readonly confirmations: 1;
|
|
1590
1709
|
readonly fastConfirmations: 1;
|
|
@@ -1769,6 +1888,7 @@ declare const Unichain: {
|
|
|
1769
1888
|
readonly v2: {
|
|
1770
1889
|
readonly type: "split";
|
|
1771
1890
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1891
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1772
1892
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1773
1893
|
readonly confirmations: 65;
|
|
1774
1894
|
readonly fastConfirmations: 1;
|
|
@@ -1832,6 +1952,7 @@ declare const UnichainSepolia: {
|
|
|
1832
1952
|
readonly v2: {
|
|
1833
1953
|
readonly type: "split";
|
|
1834
1954
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1955
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1835
1956
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1836
1957
|
readonly confirmations: 65;
|
|
1837
1958
|
readonly fastConfirmations: 1;
|
|
@@ -1888,6 +2009,7 @@ declare const WorldChain: {
|
|
|
1888
2009
|
readonly v2: {
|
|
1889
2010
|
readonly type: "split";
|
|
1890
2011
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cF5d";
|
|
2012
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1891
2013
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1892
2014
|
readonly confirmations: 65;
|
|
1893
2015
|
readonly fastConfirmations: 1;
|
|
@@ -1945,6 +2067,7 @@ declare const WorldChainSepolia: {
|
|
|
1945
2067
|
readonly v2: {
|
|
1946
2068
|
readonly type: "split";
|
|
1947
2069
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
2070
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1948
2071
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1949
2072
|
readonly confirmations: 65;
|
|
1950
2073
|
readonly fastConfirmations: 1;
|
|
@@ -2003,6 +2126,7 @@ declare const XDC: {
|
|
|
2003
2126
|
readonly v2: {
|
|
2004
2127
|
readonly type: "split";
|
|
2005
2128
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
2129
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
2006
2130
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
2007
2131
|
readonly confirmations: 3;
|
|
2008
2132
|
readonly fastConfirmations: 3;
|
|
@@ -2047,6 +2171,7 @@ declare const XDCApothem: {
|
|
|
2047
2171
|
readonly v2: {
|
|
2048
2172
|
readonly type: "split";
|
|
2049
2173
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
2174
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
2050
2175
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
2051
2176
|
readonly confirmations: 3;
|
|
2052
2177
|
readonly fastConfirmations: 1;
|
|
@@ -2154,4 +2279,4 @@ declare const XLayerTestnet: {
|
|
|
2154
2279
|
};
|
|
2155
2280
|
};
|
|
2156
2281
|
|
|
2157
|
-
export { Arbitrum, ArbitrumSepolia, ArcTestnet, Avalanche, AvalancheFuji, Base, BaseSepolia, 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, XLayer, XLayerTestnet };
|
|
2282
|
+
export { Arbitrum, ArbitrumSepolia, ArcTestnet, Avalanche, AvalancheFuji, Base, BaseSepolia, Codex, CodexTestnet, Ethereum, EthereumSepolia, HyperEVM, HyperEVMTestnet, Ink, InkTestnet, Linea, LineaSepolia, Optimism, OptimismSepolia, Plasma, PlasmaTestnet, Plume, PlumeTestnet, Polygon, PolygonAmoy, Sei, SeiTestnet, Solana, SolanaDevnet, Sonic, SonicTestnet, Unichain, UnichainSepolia, WorldChain, WorldChainSepolia, XDC, XDCApothem, XLayer, XLayerTestnet };
|