@circle-fin/app-kit 1.14.0 → 1.15.1
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 +72 -0
- package/README.md +3 -3
- package/bridge.cjs +7464 -454
- package/bridge.d.cts +585 -61
- package/bridge.d.mts +585 -61
- package/bridge.d.ts +585 -61
- package/bridge.mjs +7464 -454
- package/chains.cjs +146 -5
- package/chains.d.cts +108 -2
- package/chains.d.mts +108 -2
- package/chains.d.ts +108 -2
- package/chains.mjs +146 -6
- package/context.d.cts +522 -57
- package/context.d.mts +522 -57
- package/context.d.ts +522 -57
- package/earn.cjs +478 -181
- package/earn.d.cts +522 -57
- package/earn.d.mts +522 -57
- package/earn.d.ts +522 -57
- package/earn.mjs +478 -181
- package/estimateBridge.cjs +7464 -457
- package/estimateBridge.d.cts +643 -82
- package/estimateBridge.d.mts +643 -82
- package/estimateBridge.d.ts +643 -82
- package/estimateBridge.mjs +7464 -457
- package/estimateSwap.cjs +528 -185
- package/estimateSwap.d.cts +522 -57
- package/estimateSwap.d.mts +522 -57
- package/estimateSwap.d.ts +522 -57
- package/estimateSwap.mjs +528 -185
- package/index.cjs +11548 -2936
- package/index.d.cts +5073 -1738
- package/index.d.mts +5073 -1738
- package/index.d.ts +5073 -1738
- package/index.mjs +11547 -2937
- package/package.json +17 -6
- package/server.cjs +10040 -0
- package/server.cjs.map +1 -0
- package/server.d.cts +2467 -0
- package/server.d.mts +2467 -0
- package/server.d.ts +2467 -0
- package/server.mjs +10028 -0
- package/server.mjs.map +1 -0
- package/swap.cjs +528 -185
- package/swap.d.cts +522 -57
- package/swap.d.mts +522 -57
- package/swap.d.ts +522 -57
- package/swap.mjs +528 -185
- package/unifiedBalance.cjs +742 -44
- package/unifiedBalance.d.cts +223 -1
- package/unifiedBalance.d.mts +223 -1
- package/unifiedBalance.d.ts +223 -1
- package/unifiedBalance.mjs +742 -44
package/chains.d.mts
CHANGED
|
@@ -33,9 +33,10 @@ declare enum Blockchain {
|
|
|
33
33
|
Algorand_Testnet = "Algorand_Testnet",
|
|
34
34
|
Aptos = "Aptos",
|
|
35
35
|
Aptos_Testnet = "Aptos_Testnet",
|
|
36
|
-
Arc_Testnet = "Arc_Testnet",
|
|
37
36
|
Arbitrum = "Arbitrum",
|
|
38
37
|
Arbitrum_Sepolia = "Arbitrum_Sepolia",
|
|
38
|
+
Arc = "Arc",
|
|
39
|
+
Arc_Testnet = "Arc_Testnet",
|
|
39
40
|
Avalanche = "Avalanche",
|
|
40
41
|
Avalanche_Fuji = "Avalanche_Fuji",
|
|
41
42
|
Base = "Base",
|
|
@@ -102,6 +103,72 @@ declare enum Blockchain {
|
|
|
102
103
|
ZKSync_Sepolia = "ZKSync_Sepolia"
|
|
103
104
|
}
|
|
104
105
|
|
|
106
|
+
/**
|
|
107
|
+
* Arc Mainnet chain definition
|
|
108
|
+
* @remarks
|
|
109
|
+
* This represents the official production network for the Arc blockchain,
|
|
110
|
+
* Circle's EVM-compatible Layer-1 designed for stablecoin finance
|
|
111
|
+
* and asset tokenization. Arc uses USDC as the native gas token and
|
|
112
|
+
* features the Malachite Byzantine Fault Tolerant (BFT) consensus
|
|
113
|
+
* engine for sub-second finality.
|
|
114
|
+
*/
|
|
115
|
+
declare const Arc: {
|
|
116
|
+
readonly type: "evm";
|
|
117
|
+
readonly chain: Blockchain.Arc;
|
|
118
|
+
readonly name: "Arc";
|
|
119
|
+
readonly title: "Arc Mainnet";
|
|
120
|
+
readonly nativeCurrency: {
|
|
121
|
+
readonly name: "USDC";
|
|
122
|
+
readonly symbol: "USDC";
|
|
123
|
+
readonly decimals: 18;
|
|
124
|
+
};
|
|
125
|
+
readonly chainId: 5042;
|
|
126
|
+
readonly isTestnet: false;
|
|
127
|
+
readonly explorerUrl: "https://explorer.arc.io/tx/{hash}";
|
|
128
|
+
readonly rpcEndpoints: readonly ["https://rpc.mainnet.arc.io/"];
|
|
129
|
+
readonly eurcAddress: "0xbEf5f6d51CB62b58e6A8f77868681825C6fe21c1";
|
|
130
|
+
readonly usdcAddress: "0x3600000000000000000000000000000000000000";
|
|
131
|
+
readonly usdtAddress: null;
|
|
132
|
+
readonly cctp: {
|
|
133
|
+
readonly domain: 26;
|
|
134
|
+
readonly contracts: {
|
|
135
|
+
readonly v2: {
|
|
136
|
+
readonly type: "split";
|
|
137
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
138
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
139
|
+
readonly confirmations: 1;
|
|
140
|
+
readonly fastConfirmations: 1;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
readonly forwarderSupported: {
|
|
144
|
+
readonly source: false;
|
|
145
|
+
readonly destination: true;
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
readonly cctpx: {
|
|
149
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
150
|
+
};
|
|
151
|
+
readonly kitContracts: {
|
|
152
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
153
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
154
|
+
};
|
|
155
|
+
readonly gateway: {
|
|
156
|
+
readonly domain: 26;
|
|
157
|
+
readonly contracts: {
|
|
158
|
+
readonly v1: {
|
|
159
|
+
readonly wallet: "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE";
|
|
160
|
+
readonly minter: "0x2222222d7164433c4C09B0b0D809a9b52C04C205";
|
|
161
|
+
readonly depositForHandler: "0x16529813203f77E036576666336554a1210dce4D";
|
|
162
|
+
readonly genericExecutor: "0xFa7be2f04F3Ad4ca969260729c6d45B5625984A7";
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
readonly forwarderSupported: {
|
|
166
|
+
readonly source: true;
|
|
167
|
+
readonly destination: true;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
|
|
105
172
|
/**
|
|
106
173
|
* Arc Testnet chain definition
|
|
107
174
|
* @remarks
|
|
@@ -145,6 +212,9 @@ declare const ArcTestnet: {
|
|
|
145
212
|
readonly destination: true;
|
|
146
213
|
};
|
|
147
214
|
};
|
|
215
|
+
readonly cctpx: {
|
|
216
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
217
|
+
};
|
|
148
218
|
readonly kitContracts: {
|
|
149
219
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
150
220
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -211,6 +281,9 @@ declare const Arbitrum: {
|
|
|
211
281
|
readonly destination: true;
|
|
212
282
|
};
|
|
213
283
|
};
|
|
284
|
+
readonly cctpx: {
|
|
285
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
286
|
+
};
|
|
214
287
|
readonly kitContracts: {
|
|
215
288
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
216
289
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -275,6 +348,9 @@ declare const ArbitrumSepolia: {
|
|
|
275
348
|
readonly destination: true;
|
|
276
349
|
};
|
|
277
350
|
};
|
|
351
|
+
readonly cctpx: {
|
|
352
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
353
|
+
};
|
|
278
354
|
readonly kitContracts: {
|
|
279
355
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
280
356
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -339,6 +415,9 @@ declare const Avalanche: {
|
|
|
339
415
|
readonly destination: true;
|
|
340
416
|
};
|
|
341
417
|
};
|
|
418
|
+
readonly cctpx: {
|
|
419
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
420
|
+
};
|
|
342
421
|
readonly kitContracts: {
|
|
343
422
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
344
423
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -405,6 +484,9 @@ declare const AvalancheFuji: {
|
|
|
405
484
|
};
|
|
406
485
|
};
|
|
407
486
|
readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
487
|
+
readonly cctpx: {
|
|
488
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
489
|
+
};
|
|
408
490
|
readonly kitContracts: {
|
|
409
491
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
410
492
|
};
|
|
@@ -470,6 +552,9 @@ declare const Base: {
|
|
|
470
552
|
readonly destination: true;
|
|
471
553
|
};
|
|
472
554
|
};
|
|
555
|
+
readonly cctpx: {
|
|
556
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
557
|
+
};
|
|
473
558
|
readonly kitContracts: {
|
|
474
559
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
475
560
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -534,6 +619,9 @@ declare const BaseSepolia: {
|
|
|
534
619
|
readonly destination: true;
|
|
535
620
|
};
|
|
536
621
|
};
|
|
622
|
+
readonly cctpx: {
|
|
623
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
624
|
+
};
|
|
537
625
|
readonly kitContracts: {
|
|
538
626
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
539
627
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -686,6 +774,9 @@ declare const Ethereum: {
|
|
|
686
774
|
readonly destination: true;
|
|
687
775
|
};
|
|
688
776
|
};
|
|
777
|
+
readonly cctpx: {
|
|
778
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
779
|
+
};
|
|
689
780
|
readonly kitContracts: {
|
|
690
781
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
691
782
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -750,6 +841,9 @@ declare const EthereumSepolia: {
|
|
|
750
841
|
readonly destination: true;
|
|
751
842
|
};
|
|
752
843
|
};
|
|
844
|
+
readonly cctpx: {
|
|
845
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
846
|
+
};
|
|
753
847
|
readonly kitContracts: {
|
|
754
848
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
755
849
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -1113,6 +1207,9 @@ declare const Optimism: {
|
|
|
1113
1207
|
readonly destination: true;
|
|
1114
1208
|
};
|
|
1115
1209
|
};
|
|
1210
|
+
readonly cctpx: {
|
|
1211
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
1212
|
+
};
|
|
1116
1213
|
readonly kitContracts: {
|
|
1117
1214
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1118
1215
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -1177,6 +1274,9 @@ declare const OptimismSepolia: {
|
|
|
1177
1274
|
readonly destination: true;
|
|
1178
1275
|
};
|
|
1179
1276
|
};
|
|
1277
|
+
readonly cctpx: {
|
|
1278
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
1279
|
+
};
|
|
1180
1280
|
readonly kitContracts: {
|
|
1181
1281
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1182
1282
|
};
|
|
@@ -1422,6 +1522,9 @@ declare const Polygon: {
|
|
|
1422
1522
|
readonly destination: true;
|
|
1423
1523
|
};
|
|
1424
1524
|
};
|
|
1525
|
+
readonly cctpx: {
|
|
1526
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
1527
|
+
};
|
|
1425
1528
|
readonly kitContracts: {
|
|
1426
1529
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1427
1530
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -1488,6 +1591,9 @@ declare const PolygonAmoy: {
|
|
|
1488
1591
|
readonly destination: true;
|
|
1489
1592
|
};
|
|
1490
1593
|
};
|
|
1594
|
+
readonly cctpx: {
|
|
1595
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
1596
|
+
};
|
|
1491
1597
|
readonly kitContracts: {
|
|
1492
1598
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1493
1599
|
};
|
|
@@ -2288,4 +2394,4 @@ declare const XLayerTestnet: {
|
|
|
2288
2394
|
};
|
|
2289
2395
|
};
|
|
2290
2396
|
|
|
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 };
|
|
2397
|
+
export { Arbitrum, ArbitrumSepolia, Arc, 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 };
|
package/chains.d.ts
CHANGED
|
@@ -33,9 +33,10 @@ declare enum Blockchain {
|
|
|
33
33
|
Algorand_Testnet = "Algorand_Testnet",
|
|
34
34
|
Aptos = "Aptos",
|
|
35
35
|
Aptos_Testnet = "Aptos_Testnet",
|
|
36
|
-
Arc_Testnet = "Arc_Testnet",
|
|
37
36
|
Arbitrum = "Arbitrum",
|
|
38
37
|
Arbitrum_Sepolia = "Arbitrum_Sepolia",
|
|
38
|
+
Arc = "Arc",
|
|
39
|
+
Arc_Testnet = "Arc_Testnet",
|
|
39
40
|
Avalanche = "Avalanche",
|
|
40
41
|
Avalanche_Fuji = "Avalanche_Fuji",
|
|
41
42
|
Base = "Base",
|
|
@@ -102,6 +103,72 @@ declare enum Blockchain {
|
|
|
102
103
|
ZKSync_Sepolia = "ZKSync_Sepolia"
|
|
103
104
|
}
|
|
104
105
|
|
|
106
|
+
/**
|
|
107
|
+
* Arc Mainnet chain definition
|
|
108
|
+
* @remarks
|
|
109
|
+
* This represents the official production network for the Arc blockchain,
|
|
110
|
+
* Circle's EVM-compatible Layer-1 designed for stablecoin finance
|
|
111
|
+
* and asset tokenization. Arc uses USDC as the native gas token and
|
|
112
|
+
* features the Malachite Byzantine Fault Tolerant (BFT) consensus
|
|
113
|
+
* engine for sub-second finality.
|
|
114
|
+
*/
|
|
115
|
+
declare const Arc: {
|
|
116
|
+
readonly type: "evm";
|
|
117
|
+
readonly chain: Blockchain.Arc;
|
|
118
|
+
readonly name: "Arc";
|
|
119
|
+
readonly title: "Arc Mainnet";
|
|
120
|
+
readonly nativeCurrency: {
|
|
121
|
+
readonly name: "USDC";
|
|
122
|
+
readonly symbol: "USDC";
|
|
123
|
+
readonly decimals: 18;
|
|
124
|
+
};
|
|
125
|
+
readonly chainId: 5042;
|
|
126
|
+
readonly isTestnet: false;
|
|
127
|
+
readonly explorerUrl: "https://explorer.arc.io/tx/{hash}";
|
|
128
|
+
readonly rpcEndpoints: readonly ["https://rpc.mainnet.arc.io/"];
|
|
129
|
+
readonly eurcAddress: "0xbEf5f6d51CB62b58e6A8f77868681825C6fe21c1";
|
|
130
|
+
readonly usdcAddress: "0x3600000000000000000000000000000000000000";
|
|
131
|
+
readonly usdtAddress: null;
|
|
132
|
+
readonly cctp: {
|
|
133
|
+
readonly domain: 26;
|
|
134
|
+
readonly contracts: {
|
|
135
|
+
readonly v2: {
|
|
136
|
+
readonly type: "split";
|
|
137
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
138
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
139
|
+
readonly confirmations: 1;
|
|
140
|
+
readonly fastConfirmations: 1;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
readonly forwarderSupported: {
|
|
144
|
+
readonly source: false;
|
|
145
|
+
readonly destination: true;
|
|
146
|
+
};
|
|
147
|
+
};
|
|
148
|
+
readonly cctpx: {
|
|
149
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
150
|
+
};
|
|
151
|
+
readonly kitContracts: {
|
|
152
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
153
|
+
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
154
|
+
};
|
|
155
|
+
readonly gateway: {
|
|
156
|
+
readonly domain: 26;
|
|
157
|
+
readonly contracts: {
|
|
158
|
+
readonly v1: {
|
|
159
|
+
readonly wallet: "0x77777777Dcc4d5A8B6E418Fd04D8997ef11000eE";
|
|
160
|
+
readonly minter: "0x2222222d7164433c4C09B0b0D809a9b52C04C205";
|
|
161
|
+
readonly depositForHandler: "0x16529813203f77E036576666336554a1210dce4D";
|
|
162
|
+
readonly genericExecutor: "0xFa7be2f04F3Ad4ca969260729c6d45B5625984A7";
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
readonly forwarderSupported: {
|
|
166
|
+
readonly source: true;
|
|
167
|
+
readonly destination: true;
|
|
168
|
+
};
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
|
|
105
172
|
/**
|
|
106
173
|
* Arc Testnet chain definition
|
|
107
174
|
* @remarks
|
|
@@ -145,6 +212,9 @@ declare const ArcTestnet: {
|
|
|
145
212
|
readonly destination: true;
|
|
146
213
|
};
|
|
147
214
|
};
|
|
215
|
+
readonly cctpx: {
|
|
216
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
217
|
+
};
|
|
148
218
|
readonly kitContracts: {
|
|
149
219
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
150
220
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -211,6 +281,9 @@ declare const Arbitrum: {
|
|
|
211
281
|
readonly destination: true;
|
|
212
282
|
};
|
|
213
283
|
};
|
|
284
|
+
readonly cctpx: {
|
|
285
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
286
|
+
};
|
|
214
287
|
readonly kitContracts: {
|
|
215
288
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
216
289
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -275,6 +348,9 @@ declare const ArbitrumSepolia: {
|
|
|
275
348
|
readonly destination: true;
|
|
276
349
|
};
|
|
277
350
|
};
|
|
351
|
+
readonly cctpx: {
|
|
352
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
353
|
+
};
|
|
278
354
|
readonly kitContracts: {
|
|
279
355
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
280
356
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -339,6 +415,9 @@ declare const Avalanche: {
|
|
|
339
415
|
readonly destination: true;
|
|
340
416
|
};
|
|
341
417
|
};
|
|
418
|
+
readonly cctpx: {
|
|
419
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
420
|
+
};
|
|
342
421
|
readonly kitContracts: {
|
|
343
422
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
344
423
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -405,6 +484,9 @@ declare const AvalancheFuji: {
|
|
|
405
484
|
};
|
|
406
485
|
};
|
|
407
486
|
readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
487
|
+
readonly cctpx: {
|
|
488
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
489
|
+
};
|
|
408
490
|
readonly kitContracts: {
|
|
409
491
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
410
492
|
};
|
|
@@ -470,6 +552,9 @@ declare const Base: {
|
|
|
470
552
|
readonly destination: true;
|
|
471
553
|
};
|
|
472
554
|
};
|
|
555
|
+
readonly cctpx: {
|
|
556
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
557
|
+
};
|
|
473
558
|
readonly kitContracts: {
|
|
474
559
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
475
560
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -534,6 +619,9 @@ declare const BaseSepolia: {
|
|
|
534
619
|
readonly destination: true;
|
|
535
620
|
};
|
|
536
621
|
};
|
|
622
|
+
readonly cctpx: {
|
|
623
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
624
|
+
};
|
|
537
625
|
readonly kitContracts: {
|
|
538
626
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
539
627
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -686,6 +774,9 @@ declare const Ethereum: {
|
|
|
686
774
|
readonly destination: true;
|
|
687
775
|
};
|
|
688
776
|
};
|
|
777
|
+
readonly cctpx: {
|
|
778
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
779
|
+
};
|
|
689
780
|
readonly kitContracts: {
|
|
690
781
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
691
782
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -750,6 +841,9 @@ declare const EthereumSepolia: {
|
|
|
750
841
|
readonly destination: true;
|
|
751
842
|
};
|
|
752
843
|
};
|
|
844
|
+
readonly cctpx: {
|
|
845
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
846
|
+
};
|
|
753
847
|
readonly kitContracts: {
|
|
754
848
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
755
849
|
readonly adapter: "0xBBD70b01a1CAbc96d5b7b129Ae1AAabdf50dd40b";
|
|
@@ -1113,6 +1207,9 @@ declare const Optimism: {
|
|
|
1113
1207
|
readonly destination: true;
|
|
1114
1208
|
};
|
|
1115
1209
|
};
|
|
1210
|
+
readonly cctpx: {
|
|
1211
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
1212
|
+
};
|
|
1116
1213
|
readonly kitContracts: {
|
|
1117
1214
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1118
1215
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -1177,6 +1274,9 @@ declare const OptimismSepolia: {
|
|
|
1177
1274
|
readonly destination: true;
|
|
1178
1275
|
};
|
|
1179
1276
|
};
|
|
1277
|
+
readonly cctpx: {
|
|
1278
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
1279
|
+
};
|
|
1180
1280
|
readonly kitContracts: {
|
|
1181
1281
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1182
1282
|
};
|
|
@@ -1422,6 +1522,9 @@ declare const Polygon: {
|
|
|
1422
1522
|
readonly destination: true;
|
|
1423
1523
|
};
|
|
1424
1524
|
};
|
|
1525
|
+
readonly cctpx: {
|
|
1526
|
+
readonly serviceAddress: "0x431871229103b780868f8C6BB820cd16ECf942BC";
|
|
1527
|
+
};
|
|
1425
1528
|
readonly kitContracts: {
|
|
1426
1529
|
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1427
1530
|
readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
|
|
@@ -1488,6 +1591,9 @@ declare const PolygonAmoy: {
|
|
|
1488
1591
|
readonly destination: true;
|
|
1489
1592
|
};
|
|
1490
1593
|
};
|
|
1594
|
+
readonly cctpx: {
|
|
1595
|
+
readonly serviceAddress: "0x63753E722bd2C2A5DF6EE19C5106662208B81077";
|
|
1596
|
+
};
|
|
1491
1597
|
readonly kitContracts: {
|
|
1492
1598
|
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1493
1599
|
};
|
|
@@ -2288,4 +2394,4 @@ declare const XLayerTestnet: {
|
|
|
2288
2394
|
};
|
|
2289
2395
|
};
|
|
2290
2396
|
|
|
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 };
|
|
2397
|
+
export { Arbitrum, ArbitrumSepolia, Arc, 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 };
|