@circle-fin/app-kit 1.12.1 → 1.14.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 +115 -0
- package/README.md +31 -12
- package/bridge.cjs +3231 -340
- package/bridge.d.cts +141 -17
- package/bridge.d.mts +141 -17
- package/bridge.d.ts +141 -17
- package/bridge.mjs +3233 -342
- package/chains.cjs +261 -8
- package/chains.d.cts +135 -1
- package/chains.d.mts +135 -1
- package/chains.d.ts +135 -1
- package/chains.mjs +260 -9
- package/context.d.cts +141 -17
- package/context.d.mts +141 -17
- package/context.d.ts +141 -17
- package/earn.cjs +887 -63
- package/earn.d.cts +141 -17
- package/earn.d.mts +141 -17
- package/earn.d.ts +141 -17
- package/earn.mjs +883 -63
- package/estimateBridge.cjs +3231 -340
- package/estimateBridge.d.cts +257 -18
- package/estimateBridge.d.mts +257 -18
- package/estimateBridge.d.ts +257 -18
- package/estimateBridge.mjs +3233 -342
- package/estimateSwap.cjs +988 -146
- package/estimateSwap.d.cts +141 -17
- package/estimateSwap.d.mts +141 -17
- package/estimateSwap.d.ts +141 -17
- package/estimateSwap.mjs +987 -146
- package/index.cjs +6828 -894
- package/index.d.cts +1621 -258
- package/index.d.mts +1621 -258
- package/index.d.ts +1621 -258
- package/index.mjs +6830 -896
- package/package.json +6 -6
- package/swap.cjs +988 -146
- package/swap.d.cts +148 -18
- package/swap.d.mts +148 -18
- package/swap.d.ts +148 -18
- package/swap.mjs +987 -146
- package/unifiedBalance.cjs +22219 -9689
- package/unifiedBalance.d.cts +620 -162
- package/unifiedBalance.d.mts +620 -162
- package/unifiedBalance.d.ts +620 -162
- package/unifiedBalance.mjs +22348 -9819
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;
|
|
@@ -153,6 +156,7 @@ declare const ArcTestnet: {
|
|
|
153
156
|
readonly wallet: "0x0077777d7EBA4688BDeF3E311b846F25870A19B9";
|
|
154
157
|
readonly minter: "0x0022222ABE238Cc2C7Bb1f21003F0a260052475B";
|
|
155
158
|
readonly depositForHandler: "0xD05E7D2E7d30b92c5F17d7d0fC575fce231F1A48";
|
|
159
|
+
readonly genericExecutor: "0xEdC81040756AcCfF070c21D37b265b9D0b5Ba45e";
|
|
156
160
|
};
|
|
157
161
|
};
|
|
158
162
|
readonly forwarderSupported: {
|
|
@@ -196,6 +200,7 @@ declare const Arbitrum: {
|
|
|
196
200
|
readonly v2: {
|
|
197
201
|
readonly type: "split";
|
|
198
202
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
203
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
199
204
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
200
205
|
readonly confirmations: 65;
|
|
201
206
|
readonly fastConfirmations: 1;
|
|
@@ -259,6 +264,7 @@ declare const ArbitrumSepolia: {
|
|
|
259
264
|
readonly v2: {
|
|
260
265
|
readonly type: "split";
|
|
261
266
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
267
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
262
268
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
263
269
|
readonly confirmations: 65;
|
|
264
270
|
readonly fastConfirmations: 1;
|
|
@@ -322,6 +328,7 @@ declare const Avalanche: {
|
|
|
322
328
|
readonly v2: {
|
|
323
329
|
readonly type: "split";
|
|
324
330
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
331
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
325
332
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
326
333
|
readonly confirmations: 1;
|
|
327
334
|
readonly fastConfirmations: 1;
|
|
@@ -342,6 +349,8 @@ declare const Avalanche: {
|
|
|
342
349
|
readonly v1: {
|
|
343
350
|
readonly wallet: "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE";
|
|
344
351
|
readonly minter: "0x2222222d7164433c4C09B0b0D809a9b52C04C205";
|
|
352
|
+
readonly depositForHandler: "0x16529813203f77E036576666336554a1210dce4D";
|
|
353
|
+
readonly genericExecutor: "0xFa7be2f04F3Ad4ca969260729c6d45B5625984A7";
|
|
345
354
|
};
|
|
346
355
|
};
|
|
347
356
|
readonly forwarderSupported: {
|
|
@@ -384,6 +393,7 @@ declare const AvalancheFuji: {
|
|
|
384
393
|
readonly v2: {
|
|
385
394
|
readonly type: "split";
|
|
386
395
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
396
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
387
397
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
388
398
|
readonly confirmations: 1;
|
|
389
399
|
readonly fastConfirmations: 1;
|
|
@@ -404,6 +414,8 @@ declare const AvalancheFuji: {
|
|
|
404
414
|
readonly v1: {
|
|
405
415
|
readonly wallet: "0x0077777d7EBA4688BDeF3E311b846F25870A19B9";
|
|
406
416
|
readonly minter: "0x0022222ABE238Cc2C7Bb1f21003F0a260052475B";
|
|
417
|
+
readonly depositForHandler: "0xD05E7D2E7d30b92c5F17d7d0fC575fce231F1A48";
|
|
418
|
+
readonly genericExecutor: "0xEdC81040756AcCfF070c21D37b265b9D0b5Ba45e";
|
|
407
419
|
};
|
|
408
420
|
};
|
|
409
421
|
readonly forwarderSupported: {
|
|
@@ -447,6 +459,7 @@ declare const Base: {
|
|
|
447
459
|
readonly v2: {
|
|
448
460
|
readonly type: "split";
|
|
449
461
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
462
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
450
463
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
451
464
|
readonly confirmations: 65;
|
|
452
465
|
readonly fastConfirmations: 1;
|
|
@@ -510,6 +523,7 @@ declare const BaseSepolia: {
|
|
|
510
523
|
readonly v2: {
|
|
511
524
|
readonly type: "split";
|
|
512
525
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
526
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
513
527
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
514
528
|
readonly confirmations: 65;
|
|
515
529
|
readonly fastConfirmations: 1;
|
|
@@ -567,6 +581,7 @@ declare const Codex: {
|
|
|
567
581
|
readonly v2: {
|
|
568
582
|
readonly type: "split";
|
|
569
583
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
584
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
570
585
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
571
586
|
readonly confirmations: 65;
|
|
572
587
|
readonly fastConfirmations: 1;
|
|
@@ -610,6 +625,7 @@ declare const CodexTestnet: {
|
|
|
610
625
|
readonly v2: {
|
|
611
626
|
readonly type: "split";
|
|
612
627
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
628
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
613
629
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
614
630
|
readonly confirmations: 65;
|
|
615
631
|
readonly fastConfirmations: 1;
|
|
@@ -659,6 +675,7 @@ declare const Ethereum: {
|
|
|
659
675
|
readonly v2: {
|
|
660
676
|
readonly type: "split";
|
|
661
677
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
678
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
662
679
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
663
680
|
readonly confirmations: 65;
|
|
664
681
|
readonly fastConfirmations: 2;
|
|
@@ -722,6 +739,7 @@ declare const EthereumSepolia: {
|
|
|
722
739
|
readonly v2: {
|
|
723
740
|
readonly type: "split";
|
|
724
741
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
742
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
725
743
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
726
744
|
readonly confirmations: 65;
|
|
727
745
|
readonly fastConfirmations: 2;
|
|
@@ -781,6 +799,7 @@ declare const HyperEVM: {
|
|
|
781
799
|
readonly v2: {
|
|
782
800
|
readonly type: "split";
|
|
783
801
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
802
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
784
803
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
785
804
|
readonly confirmations: 1;
|
|
786
805
|
readonly fastConfirmations: 1;
|
|
@@ -839,6 +858,7 @@ declare const HyperEVMTestnet: {
|
|
|
839
858
|
readonly v2: {
|
|
840
859
|
readonly type: "split";
|
|
841
860
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
861
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
842
862
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
843
863
|
readonly confirmations: 1;
|
|
844
864
|
readonly fastConfirmations: 1;
|
|
@@ -897,6 +917,7 @@ declare const Ink: {
|
|
|
897
917
|
readonly v2: {
|
|
898
918
|
readonly type: "split";
|
|
899
919
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
920
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
900
921
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
901
922
|
readonly confirmations: 65;
|
|
902
923
|
readonly fastConfirmations: 1;
|
|
@@ -942,6 +963,7 @@ declare const InkTestnet: {
|
|
|
942
963
|
readonly v2: {
|
|
943
964
|
readonly type: "split";
|
|
944
965
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
966
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
945
967
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
946
968
|
readonly confirmations: 65;
|
|
947
969
|
readonly fastConfirmations: 1;
|
|
@@ -985,6 +1007,7 @@ declare const Linea: {
|
|
|
985
1007
|
readonly v2: {
|
|
986
1008
|
readonly type: "split";
|
|
987
1009
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1010
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
988
1011
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
989
1012
|
readonly confirmations: 1;
|
|
990
1013
|
readonly fastConfirmations: 1;
|
|
@@ -1029,6 +1052,7 @@ declare const LineaSepolia: {
|
|
|
1029
1052
|
readonly v2: {
|
|
1030
1053
|
readonly type: "split";
|
|
1031
1054
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
1055
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1032
1056
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1033
1057
|
readonly confirmations: 1;
|
|
1034
1058
|
readonly fastConfirmations: 1;
|
|
@@ -1078,6 +1102,7 @@ declare const Optimism: {
|
|
|
1078
1102
|
readonly v2: {
|
|
1079
1103
|
readonly type: "split";
|
|
1080
1104
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1105
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1081
1106
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1082
1107
|
readonly confirmations: 65;
|
|
1083
1108
|
readonly fastConfirmations: 1;
|
|
@@ -1141,6 +1166,7 @@ declare const OptimismSepolia: {
|
|
|
1141
1166
|
readonly v2: {
|
|
1142
1167
|
readonly type: "split";
|
|
1143
1168
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
1169
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1144
1170
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1145
1171
|
readonly confirmations: 65;
|
|
1146
1172
|
readonly fastConfirmations: 1;
|
|
@@ -1169,6 +1195,96 @@ declare const OptimismSepolia: {
|
|
|
1169
1195
|
};
|
|
1170
1196
|
};
|
|
1171
1197
|
|
|
1198
|
+
/**
|
|
1199
|
+
* Plasma Mainnet chain definition
|
|
1200
|
+
* @remarks
|
|
1201
|
+
* This represents the official production network for the Plasma blockchain.
|
|
1202
|
+
* Plasma is an EVM-equivalent Layer 1 blockchain purpose-built for global
|
|
1203
|
+
* stablecoin payments, with deterministic BFT finality (PlasmaBFT/Fast-HotStuff).
|
|
1204
|
+
*/
|
|
1205
|
+
declare const Plasma: {
|
|
1206
|
+
readonly type: "evm";
|
|
1207
|
+
readonly chain: Blockchain.Plasma;
|
|
1208
|
+
readonly name: "Plasma";
|
|
1209
|
+
readonly title: "Plasma Mainnet";
|
|
1210
|
+
readonly nativeCurrency: {
|
|
1211
|
+
readonly name: "Plasma";
|
|
1212
|
+
readonly symbol: "XPL";
|
|
1213
|
+
readonly decimals: 18;
|
|
1214
|
+
};
|
|
1215
|
+
readonly chainId: 9745;
|
|
1216
|
+
readonly isTestnet: false;
|
|
1217
|
+
readonly explorerUrl: "https://plasmascan.to/tx/{hash}";
|
|
1218
|
+
readonly rpcEndpoints: readonly ["https://rpc.plasma.to"];
|
|
1219
|
+
readonly eurcAddress: "0x3EE196E78d4d4248b849B8E1C7F44C5457FAFD2C";
|
|
1220
|
+
readonly usdcAddress: "0x2d661C89D812261039AF9764eceaAee884f5F67F";
|
|
1221
|
+
readonly usdtAddress: null;
|
|
1222
|
+
readonly cctp: {
|
|
1223
|
+
readonly domain: 33;
|
|
1224
|
+
readonly contracts: {
|
|
1225
|
+
readonly v2: {
|
|
1226
|
+
readonly type: "split";
|
|
1227
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1228
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1229
|
+
readonly confirmations: 3;
|
|
1230
|
+
readonly fastConfirmations: 1;
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
readonly forwarderSupported: {
|
|
1234
|
+
readonly source: false;
|
|
1235
|
+
readonly destination: false;
|
|
1236
|
+
};
|
|
1237
|
+
};
|
|
1238
|
+
readonly kitContracts: {
|
|
1239
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1240
|
+
};
|
|
1241
|
+
};
|
|
1242
|
+
|
|
1243
|
+
/**
|
|
1244
|
+
* Plasma Testnet chain definition
|
|
1245
|
+
* @remarks
|
|
1246
|
+
* This represents the official test network for the Plasma blockchain.
|
|
1247
|
+
* Plasma is an EVM-equivalent Layer 1 blockchain purpose-built for global
|
|
1248
|
+
* stablecoin payments, with deterministic BFT finality (PlasmaBFT/Fast-HotStuff).
|
|
1249
|
+
*/
|
|
1250
|
+
declare const PlasmaTestnet: {
|
|
1251
|
+
readonly type: "evm";
|
|
1252
|
+
readonly chain: Blockchain.Plasma_Testnet;
|
|
1253
|
+
readonly name: "Plasma Testnet";
|
|
1254
|
+
readonly title: "Plasma Testnet";
|
|
1255
|
+
readonly nativeCurrency: {
|
|
1256
|
+
readonly name: "Plasma";
|
|
1257
|
+
readonly symbol: "XPL";
|
|
1258
|
+
readonly decimals: 18;
|
|
1259
|
+
};
|
|
1260
|
+
readonly chainId: 9746;
|
|
1261
|
+
readonly isTestnet: true;
|
|
1262
|
+
readonly explorerUrl: "https://testnet.plasmascan.to/tx/{hash}";
|
|
1263
|
+
readonly rpcEndpoints: readonly ["https://testnet-rpc.plasma.to"];
|
|
1264
|
+
readonly eurcAddress: "0x98AfA0F93Dd993B736399f9074eDcEBD1985A330";
|
|
1265
|
+
readonly usdcAddress: "0xE67Fb267022cBA8064Dd388CC2FED724F3120D9D";
|
|
1266
|
+
readonly usdtAddress: null;
|
|
1267
|
+
readonly cctp: {
|
|
1268
|
+
readonly domain: 33;
|
|
1269
|
+
readonly contracts: {
|
|
1270
|
+
readonly v2: {
|
|
1271
|
+
readonly type: "split";
|
|
1272
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1273
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1274
|
+
readonly confirmations: 3;
|
|
1275
|
+
readonly fastConfirmations: 1;
|
|
1276
|
+
};
|
|
1277
|
+
};
|
|
1278
|
+
readonly forwarderSupported: {
|
|
1279
|
+
readonly source: false;
|
|
1280
|
+
readonly destination: false;
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
readonly kitContracts: {
|
|
1284
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1285
|
+
};
|
|
1286
|
+
};
|
|
1287
|
+
|
|
1172
1288
|
/**
|
|
1173
1289
|
* Plume Mainnet chain definition
|
|
1174
1290
|
* @remarks
|
|
@@ -1199,6 +1315,7 @@ declare const Plume: {
|
|
|
1199
1315
|
readonly v2: {
|
|
1200
1316
|
readonly type: "split";
|
|
1201
1317
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1318
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1202
1319
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1203
1320
|
readonly confirmations: 65;
|
|
1204
1321
|
readonly fastConfirmations: 1;
|
|
@@ -1244,6 +1361,7 @@ declare const PlumeTestnet: {
|
|
|
1244
1361
|
readonly v2: {
|
|
1245
1362
|
readonly type: "split";
|
|
1246
1363
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1364
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1247
1365
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1248
1366
|
readonly confirmations: 65;
|
|
1249
1367
|
readonly fastConfirmations: 1;
|
|
@@ -1293,6 +1411,7 @@ declare const Polygon: {
|
|
|
1293
1411
|
readonly v2: {
|
|
1294
1412
|
readonly type: "split";
|
|
1295
1413
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1414
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1296
1415
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1297
1416
|
readonly confirmations: 33;
|
|
1298
1417
|
readonly fastConfirmations: 13;
|
|
@@ -1313,6 +1432,8 @@ declare const Polygon: {
|
|
|
1313
1432
|
readonly v1: {
|
|
1314
1433
|
readonly wallet: "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE";
|
|
1315
1434
|
readonly minter: "0x2222222d7164433c4C09B0b0D809a9b52C04C205";
|
|
1435
|
+
readonly depositForHandler: "0x16529813203f77E036576666336554a1210dce4D";
|
|
1436
|
+
readonly genericExecutor: "0xFa7be2f04F3Ad4ca969260729c6d45B5625984A7";
|
|
1316
1437
|
};
|
|
1317
1438
|
};
|
|
1318
1439
|
readonly forwarderSupported: {
|
|
@@ -1356,6 +1477,7 @@ declare const PolygonAmoy: {
|
|
|
1356
1477
|
readonly v2: {
|
|
1357
1478
|
readonly type: "split";
|
|
1358
1479
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1480
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1359
1481
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1360
1482
|
readonly confirmations: 33;
|
|
1361
1483
|
readonly fastConfirmations: 13;
|
|
@@ -1375,6 +1497,8 @@ declare const PolygonAmoy: {
|
|
|
1375
1497
|
readonly v1: {
|
|
1376
1498
|
readonly wallet: "0x0077777d7EBA4688BDeF3E311b846F25870A19B9";
|
|
1377
1499
|
readonly minter: "0x0022222ABE238Cc2C7Bb1f21003F0a260052475B";
|
|
1500
|
+
readonly depositForHandler: "0xD05E7D2E7d30b92c5F17d7d0fC575fce231F1A48";
|
|
1501
|
+
readonly genericExecutor: "0xEdC81040756AcCfF070c21D37b265b9D0b5Ba45e";
|
|
1378
1502
|
};
|
|
1379
1503
|
};
|
|
1380
1504
|
readonly forwarderSupported: {
|
|
@@ -1414,6 +1538,7 @@ declare const Sei: {
|
|
|
1414
1538
|
readonly v2: {
|
|
1415
1539
|
readonly type: "split";
|
|
1416
1540
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1541
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1417
1542
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1418
1543
|
readonly confirmations: 1;
|
|
1419
1544
|
readonly fastConfirmations: 1;
|
|
@@ -1472,6 +1597,7 @@ declare const SeiTestnet: {
|
|
|
1472
1597
|
readonly v2: {
|
|
1473
1598
|
readonly type: "split";
|
|
1474
1599
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1600
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1475
1601
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1476
1602
|
readonly confirmations: 1;
|
|
1477
1603
|
readonly fastConfirmations: 1;
|
|
@@ -1528,6 +1654,7 @@ declare const Sonic: {
|
|
|
1528
1654
|
readonly v2: {
|
|
1529
1655
|
readonly type: "split";
|
|
1530
1656
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1657
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1531
1658
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1532
1659
|
readonly confirmations: 1;
|
|
1533
1660
|
readonly fastConfirmations: 1;
|
|
@@ -1585,6 +1712,7 @@ declare const SonicTestnet: {
|
|
|
1585
1712
|
readonly v2: {
|
|
1586
1713
|
readonly type: "split";
|
|
1587
1714
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1715
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1588
1716
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1589
1717
|
readonly confirmations: 1;
|
|
1590
1718
|
readonly fastConfirmations: 1;
|
|
@@ -1769,6 +1897,7 @@ declare const Unichain: {
|
|
|
1769
1897
|
readonly v2: {
|
|
1770
1898
|
readonly type: "split";
|
|
1771
1899
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
1900
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1772
1901
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1773
1902
|
readonly confirmations: 65;
|
|
1774
1903
|
readonly fastConfirmations: 1;
|
|
@@ -1832,6 +1961,7 @@ declare const UnichainSepolia: {
|
|
|
1832
1961
|
readonly v2: {
|
|
1833
1962
|
readonly type: "split";
|
|
1834
1963
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1964
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1835
1965
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1836
1966
|
readonly confirmations: 65;
|
|
1837
1967
|
readonly fastConfirmations: 1;
|
|
@@ -1888,6 +2018,7 @@ declare const WorldChain: {
|
|
|
1888
2018
|
readonly v2: {
|
|
1889
2019
|
readonly type: "split";
|
|
1890
2020
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cF5d";
|
|
2021
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
1891
2022
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1892
2023
|
readonly confirmations: 65;
|
|
1893
2024
|
readonly fastConfirmations: 1;
|
|
@@ -1945,6 +2076,7 @@ declare const WorldChainSepolia: {
|
|
|
1945
2076
|
readonly v2: {
|
|
1946
2077
|
readonly type: "split";
|
|
1947
2078
|
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
2079
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
1948
2080
|
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1949
2081
|
readonly confirmations: 65;
|
|
1950
2082
|
readonly fastConfirmations: 1;
|
|
@@ -2003,6 +2135,7 @@ declare const XDC: {
|
|
|
2003
2135
|
readonly v2: {
|
|
2004
2136
|
readonly type: "split";
|
|
2005
2137
|
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
2138
|
+
readonly tokenMessengerWithFees: "0x71f54F818671cD0D7ea140Da213e5C8b5C92a408";
|
|
2006
2139
|
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
2007
2140
|
readonly confirmations: 3;
|
|
2008
2141
|
readonly fastConfirmations: 3;
|
|
@@ -2047,6 +2180,7 @@ declare const XDCApothem: {
|
|
|
2047
2180
|
readonly v2: {
|
|
2048
2181
|
readonly type: "split";
|
|
2049
2182
|
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
2183
|
+
readonly tokenMessengerWithFees: "0x8745D906D67C346E5eb1aEEED38Eb87F34DF0C0A";
|
|
2050
2184
|
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
2051
2185
|
readonly confirmations: 3;
|
|
2052
2186
|
readonly fastConfirmations: 1;
|
|
@@ -2154,4 +2288,4 @@ declare const XLayerTestnet: {
|
|
|
2154
2288
|
};
|
|
2155
2289
|
};
|
|
2156
2290
|
|
|
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 };
|
|
2291
|
+
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 };
|