@circle-fin/app-kit 1.0.0 → 1.0.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/chains.d.ts ADDED
@@ -0,0 +1,1723 @@
1
+ /**
2
+ * Copyright (c) 2026, Circle Internet Group, Inc. All rights reserved.
3
+ *
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ *
6
+ * Licensed under the Apache License, Version 2.0 (the "License");
7
+ * you may not use this file except in compliance with the License.
8
+ * You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
18
+
19
+ /**
20
+ * Enumeration of all blockchains known to this library.
21
+ *
22
+ * This enum contains every blockchain that has a chain definition, regardless
23
+ * of whether bridging is currently supported. For chains that support bridging
24
+ * via CCTPv2, see {@link BridgeChain}.
25
+ *
26
+ * @enum
27
+ * @category Enums
28
+ * @description Provides string identifiers for each blockchain with a definition.
29
+ * @see {@link BridgeChain} for the subset of chains that support CCTPv2 bridging.
30
+ */
31
+ declare enum Blockchain {
32
+ Algorand = "Algorand",
33
+ Algorand_Testnet = "Algorand_Testnet",
34
+ Aptos = "Aptos",
35
+ Aptos_Testnet = "Aptos_Testnet",
36
+ Arc_Testnet = "Arc_Testnet",
37
+ Arbitrum = "Arbitrum",
38
+ Arbitrum_Sepolia = "Arbitrum_Sepolia",
39
+ Avalanche = "Avalanche",
40
+ Avalanche_Fuji = "Avalanche_Fuji",
41
+ Base = "Base",
42
+ Base_Sepolia = "Base_Sepolia",
43
+ Celo = "Celo",
44
+ Celo_Alfajores_Testnet = "Celo_Alfajores_Testnet",
45
+ Codex = "Codex",
46
+ Codex_Testnet = "Codex_Testnet",
47
+ Ethereum = "Ethereum",
48
+ Ethereum_Sepolia = "Ethereum_Sepolia",
49
+ Hedera = "Hedera",
50
+ Hedera_Testnet = "Hedera_Testnet",
51
+ HyperEVM = "HyperEVM",
52
+ HyperEVM_Testnet = "HyperEVM_Testnet",
53
+ Ink = "Ink",
54
+ Ink_Testnet = "Ink_Testnet",
55
+ Linea = "Linea",
56
+ Linea_Sepolia = "Linea_Sepolia",
57
+ Monad = "Monad",
58
+ Monad_Testnet = "Monad_Testnet",
59
+ NEAR = "NEAR",
60
+ NEAR_Testnet = "NEAR_Testnet",
61
+ Noble = "Noble",
62
+ Noble_Testnet = "Noble_Testnet",
63
+ Optimism = "Optimism",
64
+ Optimism_Sepolia = "Optimism_Sepolia",
65
+ Polkadot_Asset_Hub = "Polkadot_Asset_Hub",
66
+ Polkadot_Westmint = "Polkadot_Westmint",
67
+ Plume = "Plume",
68
+ Plume_Testnet = "Plume_Testnet",
69
+ Polygon = "Polygon",
70
+ Polygon_Amoy_Testnet = "Polygon_Amoy_Testnet",
71
+ Sei = "Sei",
72
+ Sei_Testnet = "Sei_Testnet",
73
+ Solana = "Solana",
74
+ Solana_Devnet = "Solana_Devnet",
75
+ Sonic = "Sonic",
76
+ Sonic_Testnet = "Sonic_Testnet",
77
+ Stellar = "Stellar",
78
+ Stellar_Testnet = "Stellar_Testnet",
79
+ Sui = "Sui",
80
+ Sui_Testnet = "Sui_Testnet",
81
+ Unichain = "Unichain",
82
+ Unichain_Sepolia = "Unichain_Sepolia",
83
+ World_Chain = "World_Chain",
84
+ World_Chain_Sepolia = "World_Chain_Sepolia",
85
+ XDC = "XDC",
86
+ XDC_Apothem = "XDC_Apothem",
87
+ ZKSync_Era = "ZKSync_Era",
88
+ ZKSync_Sepolia = "ZKSync_Sepolia"
89
+ }
90
+
91
+ /**
92
+ * Arc Testnet chain definition
93
+ * @remarks
94
+ * This represents the test network for the Arc blockchain,
95
+ * Circle's EVM-compatible Layer-1 designed for stablecoin finance
96
+ * and asset tokenization. Arc uses USDC as the native gas token and
97
+ * features the Malachite Byzantine Fault Tolerant (BFT) consensus
98
+ * engine for sub-second finality.
99
+ */
100
+ declare const ArcTestnet: {
101
+ readonly type: "evm";
102
+ readonly chain: Blockchain.Arc_Testnet;
103
+ readonly name: "Arc Testnet";
104
+ readonly title: "ArcTestnet";
105
+ readonly nativeCurrency: {
106
+ readonly name: "USDC";
107
+ readonly symbol: "USDC";
108
+ readonly decimals: 18;
109
+ };
110
+ readonly chainId: 5042002;
111
+ readonly isTestnet: true;
112
+ readonly explorerUrl: "https://testnet.arcscan.app/tx/{hash}";
113
+ readonly rpcEndpoints: readonly ["https://rpc.testnet.arc.network/"];
114
+ readonly eurcAddress: "0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a";
115
+ readonly usdcAddress: "0x3600000000000000000000000000000000000000";
116
+ readonly usdtAddress: null;
117
+ readonly cctp: {
118
+ readonly domain: 26;
119
+ readonly contracts: {
120
+ readonly v2: {
121
+ readonly type: "split";
122
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
123
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
124
+ readonly confirmations: 1;
125
+ readonly fastConfirmations: 1;
126
+ };
127
+ };
128
+ readonly forwarderSupported: {
129
+ readonly source: true;
130
+ readonly destination: true;
131
+ };
132
+ };
133
+ readonly kitContracts: {
134
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
135
+ };
136
+ };
137
+
138
+ /**
139
+ * Arbitrum Mainnet chain definition
140
+ * @remarks
141
+ * This represents the official production network for the Arbitrum blockchain.
142
+ */
143
+ declare const Arbitrum: {
144
+ readonly type: "evm";
145
+ readonly chain: Blockchain.Arbitrum;
146
+ readonly name: "Arbitrum";
147
+ readonly title: "Arbitrum Mainnet";
148
+ readonly nativeCurrency: {
149
+ readonly name: "Ether";
150
+ readonly symbol: "ETH";
151
+ readonly decimals: 18;
152
+ };
153
+ readonly chainId: 42161;
154
+ readonly isTestnet: false;
155
+ readonly explorerUrl: "https://arbiscan.io/tx/{hash}";
156
+ readonly rpcEndpoints: readonly ["https://arb1.arbitrum.io/rpc"];
157
+ readonly eurcAddress: null;
158
+ readonly usdcAddress: "0xaf88d065e77c8cc2239327c5edb3a432268e5831";
159
+ readonly usdtAddress: null;
160
+ readonly cctp: {
161
+ readonly domain: 3;
162
+ readonly contracts: {
163
+ readonly v1: {
164
+ readonly type: "split";
165
+ readonly tokenMessenger: "0x19330d10D9Cc8751218eaf51E8885D058642E08A";
166
+ readonly messageTransmitter: "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca";
167
+ readonly confirmations: 65;
168
+ };
169
+ readonly v2: {
170
+ readonly type: "split";
171
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
172
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
173
+ readonly confirmations: 65;
174
+ readonly fastConfirmations: 1;
175
+ };
176
+ };
177
+ readonly forwarderSupported: {
178
+ readonly source: true;
179
+ readonly destination: true;
180
+ };
181
+ };
182
+ readonly kitContracts: {
183
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
184
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
185
+ };
186
+ };
187
+
188
+ /**
189
+ * Arbitrum Sepolia Testnet chain definition
190
+ * @remarks
191
+ * This represents the official test network for the Arbitrum blockchain on Sepolia.
192
+ */
193
+ declare const ArbitrumSepolia: {
194
+ readonly type: "evm";
195
+ readonly chain: Blockchain.Arbitrum_Sepolia;
196
+ readonly name: "Arbitrum Sepolia";
197
+ readonly title: "Arbitrum Sepolia Testnet";
198
+ readonly nativeCurrency: {
199
+ readonly name: "Sepolia Ether";
200
+ readonly symbol: "ETH";
201
+ readonly decimals: 18;
202
+ };
203
+ readonly chainId: 421614;
204
+ readonly isTestnet: true;
205
+ readonly explorerUrl: "https://sepolia.arbiscan.io/tx/{hash}";
206
+ readonly rpcEndpoints: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
207
+ readonly eurcAddress: null;
208
+ readonly usdcAddress: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d";
209
+ readonly usdtAddress: null;
210
+ readonly cctp: {
211
+ readonly domain: 3;
212
+ readonly contracts: {
213
+ readonly v1: {
214
+ readonly type: "split";
215
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
216
+ readonly messageTransmitter: "0xaCF1ceeF35caAc005e15888dDb8A3515C41B4872";
217
+ readonly confirmations: 65;
218
+ };
219
+ readonly v2: {
220
+ readonly type: "split";
221
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
222
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
223
+ readonly confirmations: 65;
224
+ readonly fastConfirmations: 1;
225
+ };
226
+ };
227
+ readonly forwarderSupported: {
228
+ readonly source: true;
229
+ readonly destination: true;
230
+ };
231
+ };
232
+ readonly kitContracts: {
233
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
234
+ };
235
+ };
236
+
237
+ /**
238
+ * Avalanche Mainnet chain definition
239
+ * @remarks
240
+ * This represents the official production network for the Avalanche blockchain.
241
+ */
242
+ declare const Avalanche: {
243
+ readonly type: "evm";
244
+ readonly chain: Blockchain.Avalanche;
245
+ readonly name: "Avalanche";
246
+ readonly title: "Avalanche Mainnet";
247
+ readonly nativeCurrency: {
248
+ readonly name: "Avalanche";
249
+ readonly symbol: "AVAX";
250
+ readonly decimals: 18;
251
+ };
252
+ readonly chainId: 43114;
253
+ readonly isTestnet: false;
254
+ readonly explorerUrl: "https://subnets.avax.network/c-chain/tx/{hash}";
255
+ readonly rpcEndpoints: readonly ["https://api.avax.network/ext/bc/C/rpc"];
256
+ readonly eurcAddress: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
257
+ readonly usdcAddress: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
258
+ readonly usdtAddress: "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7";
259
+ readonly cctp: {
260
+ readonly domain: 1;
261
+ readonly contracts: {
262
+ readonly v1: {
263
+ readonly type: "split";
264
+ readonly tokenMessenger: "0x6b25532e1060ce10cc3b0a99e5683b91bfde6982";
265
+ readonly messageTransmitter: "0x8186359af5f57fbb40c6b14a588d2a59c0c29880";
266
+ readonly confirmations: 1;
267
+ };
268
+ readonly v2: {
269
+ readonly type: "split";
270
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
271
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
272
+ readonly confirmations: 1;
273
+ readonly fastConfirmations: 1;
274
+ };
275
+ };
276
+ readonly forwarderSupported: {
277
+ readonly source: true;
278
+ readonly destination: true;
279
+ };
280
+ };
281
+ readonly kitContracts: {
282
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
283
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
284
+ };
285
+ };
286
+
287
+ /**
288
+ * Avalanche Fuji Testnet chain definition
289
+ * @remarks
290
+ * This represents the official test network for the Avalanche blockchain.
291
+ */
292
+ declare const AvalancheFuji: {
293
+ readonly type: "evm";
294
+ readonly chain: Blockchain.Avalanche_Fuji;
295
+ readonly name: "Avalanche Fuji";
296
+ readonly title: "Avalanche Fuji Testnet";
297
+ readonly nativeCurrency: {
298
+ readonly name: "Avalanche";
299
+ readonly symbol: "AVAX";
300
+ readonly decimals: 18;
301
+ };
302
+ readonly chainId: 43113;
303
+ readonly isTestnet: true;
304
+ readonly explorerUrl: "https://subnets-test.avax.network/c-chain/tx/{hash}";
305
+ readonly eurcAddress: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
306
+ readonly usdcAddress: "0x5425890298aed601595a70ab815c96711a31bc65";
307
+ readonly usdtAddress: null;
308
+ readonly cctp: {
309
+ readonly domain: 1;
310
+ readonly contracts: {
311
+ readonly v1: {
312
+ readonly type: "split";
313
+ readonly tokenMessenger: "0xeb08f243e5d3fcff26a9e38ae5520a669f4019d0";
314
+ readonly messageTransmitter: "0xa9fb1b3009dcb79e2fe346c16a604b8fa8ae0a79";
315
+ readonly confirmations: 1;
316
+ };
317
+ readonly v2: {
318
+ readonly type: "split";
319
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
320
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
321
+ readonly confirmations: 1;
322
+ readonly fastConfirmations: 1;
323
+ };
324
+ };
325
+ readonly forwarderSupported: {
326
+ readonly source: true;
327
+ readonly destination: true;
328
+ };
329
+ };
330
+ readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
331
+ readonly kitContracts: {
332
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
333
+ };
334
+ };
335
+
336
+ /**
337
+ * Base chain definition
338
+ * @remarks
339
+ * This represents the official production network for the Base blockchain.
340
+ */
341
+ declare const Base: {
342
+ readonly type: "evm";
343
+ readonly chain: Blockchain.Base;
344
+ readonly name: "Base";
345
+ readonly title: "Base Mainnet";
346
+ readonly nativeCurrency: {
347
+ readonly name: "Ether";
348
+ readonly symbol: "ETH";
349
+ readonly decimals: 18;
350
+ };
351
+ readonly chainId: 8453;
352
+ readonly isTestnet: false;
353
+ readonly explorerUrl: "https://basescan.org/tx/{hash}";
354
+ readonly rpcEndpoints: readonly ["https://mainnet.base.org", "https://base.publicnode.com"];
355
+ readonly eurcAddress: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
356
+ readonly usdcAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
357
+ readonly usdtAddress: null;
358
+ readonly cctp: {
359
+ readonly domain: 6;
360
+ readonly contracts: {
361
+ readonly v1: {
362
+ readonly type: "split";
363
+ readonly tokenMessenger: "0x1682Ae6375C4E4A97e4B583BC394c861A46D8962";
364
+ readonly messageTransmitter: "0xAD09780d193884d503182aD4588450C416D6F9D4";
365
+ readonly confirmations: 65;
366
+ };
367
+ readonly v2: {
368
+ readonly type: "split";
369
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
370
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
371
+ readonly confirmations: 65;
372
+ readonly fastConfirmations: 1;
373
+ };
374
+ };
375
+ readonly forwarderSupported: {
376
+ readonly source: true;
377
+ readonly destination: true;
378
+ };
379
+ };
380
+ readonly kitContracts: {
381
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
382
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
383
+ };
384
+ };
385
+
386
+ /**
387
+ * Base Sepolia Testnet chain definition
388
+ * @remarks
389
+ * This represents the official test network for the Base blockchain on Sepolia.
390
+ */
391
+ declare const BaseSepolia: {
392
+ readonly type: "evm";
393
+ readonly chain: Blockchain.Base_Sepolia;
394
+ readonly name: "Base Sepolia";
395
+ readonly title: "Base Sepolia Testnet";
396
+ readonly nativeCurrency: {
397
+ readonly name: "Sepolia Ether";
398
+ readonly symbol: "ETH";
399
+ readonly decimals: 18;
400
+ };
401
+ readonly chainId: 84532;
402
+ readonly isTestnet: true;
403
+ readonly explorerUrl: "https://sepolia.basescan.org/tx/{hash}";
404
+ readonly rpcEndpoints: readonly ["https://sepolia.base.org"];
405
+ readonly eurcAddress: "0x808456652fdb597867f38412077A9182bf77359F";
406
+ readonly usdcAddress: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
407
+ readonly usdtAddress: null;
408
+ readonly cctp: {
409
+ readonly domain: 6;
410
+ readonly contracts: {
411
+ readonly v1: {
412
+ readonly type: "split";
413
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
414
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
415
+ readonly confirmations: 65;
416
+ };
417
+ readonly v2: {
418
+ readonly type: "split";
419
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
420
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
421
+ readonly confirmations: 65;
422
+ readonly fastConfirmations: 1;
423
+ };
424
+ };
425
+ readonly forwarderSupported: {
426
+ readonly source: true;
427
+ readonly destination: true;
428
+ };
429
+ };
430
+ readonly kitContracts: {
431
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
432
+ };
433
+ };
434
+
435
+ /**
436
+ * Codex Mainnet chain definition
437
+ * @remarks
438
+ * This represents the main network for the Codex blockchain.
439
+ */
440
+ declare const Codex: {
441
+ readonly type: "evm";
442
+ readonly chain: Blockchain.Codex;
443
+ readonly name: "Codex Mainnet";
444
+ readonly title: "Codex Mainnet";
445
+ readonly nativeCurrency: {
446
+ readonly name: "ETH";
447
+ readonly symbol: "ETH";
448
+ readonly decimals: 18;
449
+ };
450
+ readonly chainId: 81224;
451
+ readonly isTestnet: false;
452
+ readonly explorerUrl: "https://explorer.codex.xyz/tx/{hash}";
453
+ readonly rpcEndpoints: readonly ["https://rpc.codex.xyz"];
454
+ readonly eurcAddress: null;
455
+ readonly usdcAddress: "0xd996633a415985DBd7D6D12f4A4343E31f5037cf";
456
+ readonly usdtAddress: null;
457
+ readonly cctp: {
458
+ readonly domain: 12;
459
+ readonly contracts: {
460
+ readonly v2: {
461
+ readonly type: "split";
462
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
463
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
464
+ readonly confirmations: 65;
465
+ readonly fastConfirmations: 1;
466
+ };
467
+ };
468
+ readonly forwarderSupported: {
469
+ readonly source: true;
470
+ readonly destination: false;
471
+ };
472
+ };
473
+ readonly kitContracts: {
474
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
475
+ };
476
+ };
477
+
478
+ /**
479
+ * Codex Testnet chain definition
480
+ * @remarks
481
+ * This represents the test network for the Codex blockchain.
482
+ */
483
+ declare const CodexTestnet: {
484
+ readonly type: "evm";
485
+ readonly chain: Blockchain.Codex_Testnet;
486
+ readonly name: "Codex Testnet";
487
+ readonly title: "Codex Testnet";
488
+ readonly nativeCurrency: {
489
+ readonly name: "ETH";
490
+ readonly symbol: "ETH";
491
+ readonly decimals: 18;
492
+ };
493
+ readonly chainId: 812242;
494
+ readonly isTestnet: true;
495
+ readonly explorerUrl: "https://explorer.codex-stg.xyz/tx/{hash}";
496
+ readonly rpcEndpoints: readonly ["https://rpc.codex-stg.xyz"];
497
+ readonly eurcAddress: null;
498
+ readonly usdcAddress: "0x6d7f141b6819C2c9CC2f818e6ad549E7Ca090F8f";
499
+ readonly usdtAddress: null;
500
+ readonly cctp: {
501
+ readonly domain: 12;
502
+ readonly contracts: {
503
+ readonly v2: {
504
+ readonly type: "split";
505
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
506
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
507
+ readonly confirmations: 65;
508
+ readonly fastConfirmations: 1;
509
+ };
510
+ };
511
+ readonly forwarderSupported: {
512
+ readonly source: true;
513
+ readonly destination: false;
514
+ };
515
+ };
516
+ readonly kitContracts: {
517
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
518
+ };
519
+ };
520
+
521
+ /**
522
+ * Ethereum Mainnet chain definition
523
+ * @remarks
524
+ * This represents the official production network for the Ethereum blockchain.
525
+ */
526
+ declare const Ethereum: {
527
+ readonly type: "evm";
528
+ readonly chain: Blockchain.Ethereum;
529
+ readonly name: "Ethereum";
530
+ readonly title: "Ethereum Mainnet";
531
+ readonly nativeCurrency: {
532
+ readonly name: "Ether";
533
+ readonly symbol: "ETH";
534
+ readonly decimals: 18;
535
+ };
536
+ readonly chainId: 1;
537
+ readonly isTestnet: false;
538
+ readonly explorerUrl: "https://etherscan.io/tx/{hash}";
539
+ readonly rpcEndpoints: readonly ["https://eth.merkle.io", "https://ethereum.publicnode.com"];
540
+ readonly eurcAddress: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
541
+ readonly usdcAddress: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
542
+ readonly usdtAddress: "0xdac17f958d2ee523a2206206994597c13d831ec7";
543
+ readonly cctp: {
544
+ readonly domain: 0;
545
+ readonly contracts: {
546
+ readonly v1: {
547
+ readonly type: "split";
548
+ readonly tokenMessenger: "0xbd3fa81b58ba92a82136038b25adec7066af3155";
549
+ readonly messageTransmitter: "0x0a992d191deec32afe36203ad87d7d289a738f81";
550
+ readonly confirmations: 65;
551
+ };
552
+ readonly v2: {
553
+ readonly type: "split";
554
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
555
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
556
+ readonly confirmations: 65;
557
+ readonly fastConfirmations: 2;
558
+ };
559
+ };
560
+ readonly forwarderSupported: {
561
+ readonly source: true;
562
+ readonly destination: true;
563
+ };
564
+ };
565
+ readonly kitContracts: {
566
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
567
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
568
+ };
569
+ };
570
+
571
+ /**
572
+ * Ethereum Sepolia Testnet chain definition
573
+ * @remarks
574
+ * This represents the official test network for the Ethereum blockchain on Sepolia.
575
+ */
576
+ declare const EthereumSepolia: {
577
+ readonly type: "evm";
578
+ readonly chain: Blockchain.Ethereum_Sepolia;
579
+ readonly name: "Ethereum Sepolia";
580
+ readonly title: "Ethereum Sepolia Testnet";
581
+ readonly nativeCurrency: {
582
+ readonly name: "Sepolia Ether";
583
+ readonly symbol: "ETH";
584
+ readonly decimals: 18;
585
+ };
586
+ readonly chainId: 11155111;
587
+ readonly isTestnet: true;
588
+ readonly explorerUrl: "https://sepolia.etherscan.io/tx/{hash}";
589
+ readonly rpcEndpoints: readonly ["https://sepolia.drpc.org"];
590
+ readonly eurcAddress: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
591
+ readonly usdcAddress: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
592
+ readonly usdtAddress: null;
593
+ readonly cctp: {
594
+ readonly domain: 0;
595
+ readonly contracts: {
596
+ readonly v1: {
597
+ readonly type: "split";
598
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
599
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
600
+ readonly confirmations: 65;
601
+ };
602
+ readonly v2: {
603
+ readonly type: "split";
604
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
605
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
606
+ readonly confirmations: 65;
607
+ readonly fastConfirmations: 2;
608
+ };
609
+ };
610
+ readonly forwarderSupported: {
611
+ readonly source: true;
612
+ readonly destination: true;
613
+ };
614
+ };
615
+ readonly kitContracts: {
616
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
617
+ };
618
+ };
619
+
620
+ /**
621
+ * HyperEVM Mainnet chain definition
622
+ * @remarks
623
+ * This represents the official production network for the HyperEVM blockchain.
624
+ * HyperEVM is a Layer 1 blockchain specialized for DeFi and trading applications
625
+ * with native orderbook and matching engine.
626
+ */
627
+ declare const HyperEVM: {
628
+ readonly type: "evm";
629
+ readonly chain: Blockchain.HyperEVM;
630
+ readonly name: "HyperEVM";
631
+ readonly title: "HyperEVM Mainnet";
632
+ readonly nativeCurrency: {
633
+ readonly name: "Hype";
634
+ readonly symbol: "HYPE";
635
+ readonly decimals: 18;
636
+ };
637
+ readonly chainId: 999;
638
+ readonly isTestnet: false;
639
+ readonly explorerUrl: "https://hyperevmscan.io/tx/{hash}";
640
+ readonly rpcEndpoints: readonly ["https://rpc.hyperliquid.xyz/evm"];
641
+ readonly eurcAddress: null;
642
+ readonly usdcAddress: "0xb88339CB7199b77E23DB6E890353E22632Ba630f";
643
+ readonly usdtAddress: null;
644
+ readonly cctp: {
645
+ readonly domain: 19;
646
+ readonly contracts: {
647
+ readonly v2: {
648
+ readonly type: "split";
649
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
650
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
651
+ readonly confirmations: 1;
652
+ readonly fastConfirmations: 1;
653
+ };
654
+ };
655
+ readonly forwarderSupported: {
656
+ readonly source: true;
657
+ readonly destination: true;
658
+ };
659
+ };
660
+ readonly kitContracts: {
661
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
662
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
663
+ };
664
+ };
665
+
666
+ /**
667
+ * HyperEVM Testnet chain definition
668
+ * @remarks
669
+ * This represents the official testnet for the HyperEVM blockchain.
670
+ * Used for development and testing purposes before deploying to mainnet.
671
+ */
672
+ declare const HyperEVMTestnet: {
673
+ readonly type: "evm";
674
+ readonly chain: Blockchain.HyperEVM_Testnet;
675
+ readonly name: "HyperEVM Testnet";
676
+ readonly title: "HyperEVM Test Network";
677
+ readonly nativeCurrency: {
678
+ readonly name: "Hype";
679
+ readonly symbol: "HYPE";
680
+ readonly decimals: 18;
681
+ };
682
+ readonly chainId: 998;
683
+ readonly isTestnet: true;
684
+ readonly explorerUrl: "https://testnet.hyperliquid.xyz/explorer/tx/{hash}";
685
+ readonly rpcEndpoints: readonly ["https://rpc.hyperliquid-testnet.xyz/evm"];
686
+ readonly eurcAddress: null;
687
+ readonly usdcAddress: "0x2B3370eE501B4a559b57D449569354196457D8Ab";
688
+ readonly usdtAddress: null;
689
+ readonly cctp: {
690
+ readonly domain: 19;
691
+ readonly contracts: {
692
+ readonly v2: {
693
+ readonly type: "split";
694
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
695
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
696
+ readonly confirmations: 1;
697
+ readonly fastConfirmations: 1;
698
+ };
699
+ };
700
+ readonly forwarderSupported: {
701
+ readonly source: true;
702
+ readonly destination: true;
703
+ };
704
+ };
705
+ readonly kitContracts: {
706
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
707
+ };
708
+ };
709
+
710
+ /**
711
+ * Ink Mainnet chain definition
712
+ * @remarks
713
+ * This represents the official production network for the Ink blockchain.
714
+ * Ink is a Layer 1 blockchain specialized for DeFi and trading applications
715
+ * with native orderbook and matching engine.
716
+ */
717
+ declare const Ink: {
718
+ readonly type: "evm";
719
+ readonly chain: Blockchain.Ink;
720
+ readonly name: "Ink";
721
+ readonly title: "Ink Mainnet";
722
+ readonly nativeCurrency: {
723
+ readonly name: "Ether";
724
+ readonly symbol: "ETH";
725
+ readonly decimals: 18;
726
+ };
727
+ readonly chainId: 57073;
728
+ readonly isTestnet: false;
729
+ readonly explorerUrl: "https://explorer.inkonchain.com/tx/{hash}";
730
+ readonly rpcEndpoints: readonly ["https://rpc-gel.inkonchain.com", "https://rpc-qnd.inkonchain.com"];
731
+ readonly eurcAddress: null;
732
+ readonly usdcAddress: "0x2D270e6886d130D724215A266106e6832161EAEd";
733
+ readonly usdtAddress: null;
734
+ readonly cctp: {
735
+ readonly domain: 21;
736
+ readonly contracts: {
737
+ readonly v2: {
738
+ readonly type: "split";
739
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
740
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
741
+ readonly confirmations: 65;
742
+ readonly fastConfirmations: 1;
743
+ };
744
+ };
745
+ readonly forwarderSupported: {
746
+ readonly source: true;
747
+ readonly destination: true;
748
+ };
749
+ };
750
+ readonly kitContracts: {
751
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
752
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
753
+ };
754
+ };
755
+
756
+ /**
757
+ * Ink Testnet chain definition
758
+ * @remarks
759
+ * This represents the official testnet for the Ink blockchain.
760
+ * Used for development and testing purposes before deploying to mainnet.
761
+ */
762
+ declare const InkTestnet: {
763
+ readonly type: "evm";
764
+ readonly chain: Blockchain.Ink_Testnet;
765
+ readonly name: "Ink Sepolia";
766
+ readonly title: "Ink Sepolia Testnet";
767
+ readonly nativeCurrency: {
768
+ readonly name: "Sepolia Ether";
769
+ readonly symbol: "ETH";
770
+ readonly decimals: 18;
771
+ };
772
+ readonly chainId: 763373;
773
+ readonly isTestnet: true;
774
+ readonly explorerUrl: "https://explorer-sepolia.inkonchain.com/tx/{hash}";
775
+ readonly rpcEndpoints: readonly ["https://rpc-gel-sepolia.inkonchain.com", "https://rpc-qnd-sepolia.inkonchain.com"];
776
+ readonly eurcAddress: null;
777
+ readonly usdcAddress: "0xFabab97dCE620294D2B0b0e46C68964e326300Ac";
778
+ readonly usdtAddress: null;
779
+ readonly cctp: {
780
+ readonly domain: 21;
781
+ readonly contracts: {
782
+ readonly v2: {
783
+ readonly type: "split";
784
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
785
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
786
+ readonly confirmations: 65;
787
+ readonly fastConfirmations: 1;
788
+ };
789
+ };
790
+ readonly forwarderSupported: {
791
+ readonly source: true;
792
+ readonly destination: true;
793
+ };
794
+ };
795
+ readonly kitContracts: {
796
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
797
+ };
798
+ };
799
+
800
+ /**
801
+ * Linea Mainnet chain definition
802
+ * @remarks
803
+ * This represents the official production network for the Linea blockchain.
804
+ */
805
+ declare const Linea: {
806
+ readonly type: "evm";
807
+ readonly chain: Blockchain.Linea;
808
+ readonly name: "Linea";
809
+ readonly title: "Linea Mainnet";
810
+ readonly nativeCurrency: {
811
+ readonly name: "Ether";
812
+ readonly symbol: "ETH";
813
+ readonly decimals: 18;
814
+ };
815
+ readonly chainId: 59144;
816
+ readonly isTestnet: false;
817
+ readonly explorerUrl: "https://lineascan.build/tx/{hash}";
818
+ readonly rpcEndpoints: readonly ["https://rpc.linea.build"];
819
+ readonly eurcAddress: null;
820
+ readonly usdcAddress: "0x176211869ca2b568f2a7d4ee941e073a821ee1ff";
821
+ readonly usdtAddress: null;
822
+ readonly cctp: {
823
+ readonly domain: 11;
824
+ readonly contracts: {
825
+ readonly v2: {
826
+ readonly type: "split";
827
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
828
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
829
+ readonly confirmations: 1;
830
+ readonly fastConfirmations: 1;
831
+ };
832
+ };
833
+ readonly forwarderSupported: {
834
+ readonly source: true;
835
+ readonly destination: true;
836
+ };
837
+ };
838
+ readonly kitContracts: {
839
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
840
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
841
+ };
842
+ };
843
+
844
+ /**
845
+ * Linea Sepolia Testnet chain definition
846
+ * @remarks
847
+ * This represents the official test network for the Linea blockchain on Sepolia.
848
+ */
849
+ declare const LineaSepolia: {
850
+ readonly type: "evm";
851
+ readonly chain: Blockchain.Linea_Sepolia;
852
+ readonly name: "Linea Sepolia";
853
+ readonly title: "Linea Sepolia Testnet";
854
+ readonly nativeCurrency: {
855
+ readonly name: "Sepolia Ether";
856
+ readonly symbol: "ETH";
857
+ readonly decimals: 18;
858
+ };
859
+ readonly chainId: 59141;
860
+ readonly isTestnet: true;
861
+ readonly explorerUrl: "https://sepolia.lineascan.build/tx/{hash}";
862
+ readonly rpcEndpoints: readonly ["https://rpc.sepolia.linea.build"];
863
+ readonly eurcAddress: null;
864
+ readonly usdcAddress: "0xfece4462d57bd51a6a552365a011b95f0e16d9b7";
865
+ readonly usdtAddress: null;
866
+ readonly cctp: {
867
+ readonly domain: 11;
868
+ readonly contracts: {
869
+ readonly v2: {
870
+ readonly type: "split";
871
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
872
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
873
+ readonly confirmations: 1;
874
+ readonly fastConfirmations: 1;
875
+ };
876
+ };
877
+ readonly forwarderSupported: {
878
+ readonly source: true;
879
+ readonly destination: true;
880
+ };
881
+ };
882
+ readonly kitContracts: {
883
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
884
+ };
885
+ };
886
+
887
+ /**
888
+ * Optimism Mainnet chain definition
889
+ * @remarks
890
+ * This represents the official production network for the Optimism blockchain.
891
+ */
892
+ declare const Optimism: {
893
+ readonly type: "evm";
894
+ readonly chain: Blockchain.Optimism;
895
+ readonly name: "Optimism";
896
+ readonly title: "Optimism Mainnet";
897
+ readonly nativeCurrency: {
898
+ readonly name: "Ether";
899
+ readonly symbol: "ETH";
900
+ readonly decimals: 18;
901
+ };
902
+ readonly chainId: 10;
903
+ readonly isTestnet: false;
904
+ readonly explorerUrl: "https://optimistic.etherscan.io/tx/{hash}";
905
+ readonly rpcEndpoints: readonly ["https://mainnet.optimism.io"];
906
+ readonly eurcAddress: null;
907
+ readonly usdcAddress: "0x0b2c639c533813f4aa9d7837caf62653d097ff85";
908
+ readonly usdtAddress: null;
909
+ readonly cctp: {
910
+ readonly domain: 2;
911
+ readonly contracts: {
912
+ readonly v1: {
913
+ readonly type: "split";
914
+ readonly tokenMessenger: "0x2B4069517957735bE00ceE0fadAE88a26365528f";
915
+ readonly messageTransmitter: "0x0a992d191deec32afe36203ad87d7d289a738f81";
916
+ readonly confirmations: 65;
917
+ };
918
+ readonly v2: {
919
+ readonly type: "split";
920
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
921
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
922
+ readonly confirmations: 65;
923
+ readonly fastConfirmations: 1;
924
+ };
925
+ };
926
+ readonly forwarderSupported: {
927
+ readonly source: true;
928
+ readonly destination: true;
929
+ };
930
+ };
931
+ readonly kitContracts: {
932
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
933
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
934
+ };
935
+ };
936
+
937
+ /**
938
+ * Optimism Sepolia Testnet chain definition
939
+ * @remarks
940
+ * This represents the official test network for the Optimism blockchain on Sepolia.
941
+ */
942
+ declare const OptimismSepolia: {
943
+ readonly type: "evm";
944
+ readonly chain: Blockchain.Optimism_Sepolia;
945
+ readonly name: "Optimism Sepolia";
946
+ readonly title: "Optimism Sepolia Testnet";
947
+ readonly nativeCurrency: {
948
+ readonly name: "Sepolia Ether";
949
+ readonly symbol: "ETH";
950
+ readonly decimals: 18;
951
+ };
952
+ readonly chainId: 11155420;
953
+ readonly isTestnet: true;
954
+ readonly explorerUrl: "https://sepolia-optimistic.etherscan.io/tx/{hash}";
955
+ readonly rpcEndpoints: readonly ["https://sepolia.optimism.io"];
956
+ readonly eurcAddress: null;
957
+ readonly usdcAddress: "0x5fd84259d66Cd46123540766Be93DFE6D43130D7";
958
+ readonly usdtAddress: null;
959
+ readonly cctp: {
960
+ readonly domain: 2;
961
+ readonly contracts: {
962
+ readonly v1: {
963
+ readonly type: "split";
964
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
965
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
966
+ readonly confirmations: 65;
967
+ };
968
+ readonly v2: {
969
+ readonly type: "split";
970
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
971
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
972
+ readonly confirmations: 65;
973
+ readonly fastConfirmations: 1;
974
+ };
975
+ };
976
+ readonly forwarderSupported: {
977
+ readonly source: true;
978
+ readonly destination: true;
979
+ };
980
+ };
981
+ readonly kitContracts: {
982
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
983
+ };
984
+ };
985
+
986
+ /**
987
+ * Plume Mainnet chain definition
988
+ * @remarks
989
+ * This represents the official production network for the Plume blockchain.
990
+ * Plume is a Layer 1 blockchain specialized for DeFi and trading applications
991
+ * with native orderbook and matching engine.
992
+ */
993
+ declare const Plume: {
994
+ readonly type: "evm";
995
+ readonly chain: Blockchain.Plume;
996
+ readonly name: "Plume";
997
+ readonly title: "Plume Mainnet";
998
+ readonly nativeCurrency: {
999
+ readonly name: "Plume";
1000
+ readonly symbol: "PLUME";
1001
+ readonly decimals: 18;
1002
+ };
1003
+ readonly chainId: 98866;
1004
+ readonly isTestnet: false;
1005
+ readonly explorerUrl: "https://explorer.plume.org/tx/{hash}";
1006
+ readonly rpcEndpoints: readonly ["https://rpc.plume.org"];
1007
+ readonly eurcAddress: null;
1008
+ readonly usdcAddress: "0x222365EF19F7947e5484218551B56bb3965Aa7aF";
1009
+ readonly usdtAddress: null;
1010
+ readonly cctp: {
1011
+ readonly domain: 22;
1012
+ readonly contracts: {
1013
+ readonly v2: {
1014
+ readonly type: "split";
1015
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1016
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1017
+ readonly confirmations: 65;
1018
+ readonly fastConfirmations: 1;
1019
+ };
1020
+ };
1021
+ readonly forwarderSupported: {
1022
+ readonly source: true;
1023
+ readonly destination: false;
1024
+ };
1025
+ };
1026
+ readonly kitContracts: {
1027
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1028
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1029
+ };
1030
+ };
1031
+
1032
+ /**
1033
+ * Plume Testnet chain definition
1034
+ * @remarks
1035
+ * This represents the official testnet for the Plume blockchain.
1036
+ * Used for development and testing purposes before deploying to mainnet.
1037
+ */
1038
+ declare const PlumeTestnet: {
1039
+ readonly type: "evm";
1040
+ readonly chain: Blockchain.Plume_Testnet;
1041
+ readonly name: "Plume Testnet";
1042
+ readonly title: "Plume Test Network";
1043
+ readonly nativeCurrency: {
1044
+ readonly name: "Plume";
1045
+ readonly symbol: "PLUME";
1046
+ readonly decimals: 18;
1047
+ };
1048
+ readonly chainId: 98867;
1049
+ readonly isTestnet: true;
1050
+ readonly explorerUrl: "https://testnet-explorer.plume.org/tx/{hash}";
1051
+ readonly rpcEndpoints: readonly ["https://testnet-rpc.plume.org"];
1052
+ readonly eurcAddress: null;
1053
+ readonly usdcAddress: "0xcB5f30e335672893c7eb944B374c196392C19D18";
1054
+ readonly usdtAddress: null;
1055
+ readonly cctp: {
1056
+ readonly domain: 22;
1057
+ readonly contracts: {
1058
+ readonly v2: {
1059
+ readonly type: "split";
1060
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1061
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1062
+ readonly confirmations: 65;
1063
+ readonly fastConfirmations: 1;
1064
+ };
1065
+ };
1066
+ readonly forwarderSupported: {
1067
+ readonly source: true;
1068
+ readonly destination: false;
1069
+ };
1070
+ };
1071
+ readonly kitContracts: {
1072
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1073
+ };
1074
+ };
1075
+
1076
+ /**
1077
+ * Polygon Mainnet chain definition
1078
+ * @remarks
1079
+ * This represents the official production network for the Polygon blockchain.
1080
+ */
1081
+ declare const Polygon: {
1082
+ readonly type: "evm";
1083
+ readonly chain: Blockchain.Polygon;
1084
+ readonly name: "Polygon";
1085
+ readonly title: "Polygon Mainnet";
1086
+ readonly nativeCurrency: {
1087
+ readonly name: "POL";
1088
+ readonly symbol: "POL";
1089
+ readonly decimals: 18;
1090
+ };
1091
+ readonly chainId: 137;
1092
+ readonly isTestnet: false;
1093
+ readonly explorerUrl: "https://polygonscan.com/tx/{hash}";
1094
+ readonly rpcEndpoints: readonly ["https://polygon.publicnode.com", "https://polygon.drpc.org"];
1095
+ readonly eurcAddress: null;
1096
+ readonly usdcAddress: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
1097
+ readonly usdtAddress: null;
1098
+ readonly cctp: {
1099
+ readonly domain: 7;
1100
+ readonly contracts: {
1101
+ readonly v1: {
1102
+ readonly type: "split";
1103
+ readonly tokenMessenger: "0x9daF8c91AEFAE50b9c0E69629D3F6Ca40cA3B3FE";
1104
+ readonly messageTransmitter: "0xF3be9355363857F3e001be68856A2f96b4C39Ba9";
1105
+ readonly confirmations: 200;
1106
+ };
1107
+ readonly v2: {
1108
+ readonly type: "split";
1109
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1110
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1111
+ readonly confirmations: 33;
1112
+ readonly fastConfirmations: 13;
1113
+ };
1114
+ };
1115
+ readonly forwarderSupported: {
1116
+ readonly source: true;
1117
+ readonly destination: true;
1118
+ };
1119
+ };
1120
+ readonly kitContracts: {
1121
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1122
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1123
+ };
1124
+ };
1125
+
1126
+ /**
1127
+ * Polygon Amoy Testnet chain definition
1128
+ * @remarks
1129
+ * This represents the official test network for the Polygon blockchain.
1130
+ */
1131
+ declare const PolygonAmoy: {
1132
+ readonly type: "evm";
1133
+ readonly chain: Blockchain.Polygon_Amoy_Testnet;
1134
+ readonly name: "Polygon Amoy";
1135
+ readonly title: "Polygon Amoy Testnet";
1136
+ readonly nativeCurrency: {
1137
+ readonly name: "POL";
1138
+ readonly symbol: "POL";
1139
+ readonly decimals: 18;
1140
+ };
1141
+ readonly chainId: 80002;
1142
+ readonly isTestnet: true;
1143
+ readonly explorerUrl: "https://amoy.polygonscan.com/tx/{hash}";
1144
+ readonly rpcEndpoints: readonly ["https://rpc-amoy.polygon.technology"];
1145
+ readonly eurcAddress: null;
1146
+ readonly usdcAddress: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
1147
+ readonly usdtAddress: null;
1148
+ readonly cctp: {
1149
+ readonly domain: 7;
1150
+ readonly contracts: {
1151
+ readonly v1: {
1152
+ readonly type: "split";
1153
+ readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
1154
+ readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
1155
+ readonly confirmations: 200;
1156
+ };
1157
+ readonly v2: {
1158
+ readonly type: "split";
1159
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1160
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1161
+ readonly confirmations: 33;
1162
+ readonly fastConfirmations: 13;
1163
+ };
1164
+ };
1165
+ readonly forwarderSupported: {
1166
+ readonly source: true;
1167
+ readonly destination: true;
1168
+ };
1169
+ };
1170
+ readonly kitContracts: {
1171
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1172
+ };
1173
+ };
1174
+
1175
+ /**
1176
+ * Sei Mainnet chain definition
1177
+ * @remarks
1178
+ * This represents the official production network for the Sei blockchain.
1179
+ * Sei is a Layer 1 blockchain specialized for DeFi and trading applications
1180
+ * with native orderbook and matching engine.
1181
+ */
1182
+ declare const Sei: {
1183
+ readonly type: "evm";
1184
+ readonly chain: Blockchain.Sei;
1185
+ readonly name: "Sei";
1186
+ readonly title: "Sei Mainnet";
1187
+ readonly nativeCurrency: {
1188
+ readonly name: "Sei";
1189
+ readonly symbol: "SEI";
1190
+ readonly decimals: 18;
1191
+ };
1192
+ readonly chainId: 1329;
1193
+ readonly isTestnet: false;
1194
+ readonly explorerUrl: "https://seitrace.com/tx/{hash}?chain=pacific-1";
1195
+ readonly rpcEndpoints: readonly ["https://evm-rpc.sei-apis.com"];
1196
+ readonly eurcAddress: null;
1197
+ readonly usdcAddress: "0xe15fC38F6D8c56aF07bbCBe3BAf5708A2Bf42392";
1198
+ readonly usdtAddress: null;
1199
+ readonly cctp: {
1200
+ readonly domain: 16;
1201
+ readonly contracts: {
1202
+ readonly v2: {
1203
+ readonly type: "split";
1204
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1205
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1206
+ readonly confirmations: 1;
1207
+ readonly fastConfirmations: 1;
1208
+ };
1209
+ };
1210
+ readonly forwarderSupported: {
1211
+ readonly source: true;
1212
+ readonly destination: true;
1213
+ };
1214
+ };
1215
+ readonly kitContracts: {
1216
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1217
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1218
+ };
1219
+ };
1220
+
1221
+ /**
1222
+ * Sei Testnet chain definition
1223
+ * @remarks
1224
+ * This represents the official testnet for the Sei blockchain.
1225
+ * Used for development and testing purposes before deploying to mainnet.
1226
+ */
1227
+ declare const SeiTestnet: {
1228
+ readonly type: "evm";
1229
+ readonly chain: Blockchain.Sei_Testnet;
1230
+ readonly name: "Sei Testnet";
1231
+ readonly title: "Sei Test Network";
1232
+ readonly nativeCurrency: {
1233
+ readonly name: "Sei";
1234
+ readonly symbol: "SEI";
1235
+ readonly decimals: 18;
1236
+ };
1237
+ readonly chainId: 1328;
1238
+ readonly isTestnet: true;
1239
+ readonly explorerUrl: "https://seitrace.com/tx/{hash}?chain=atlantic-2";
1240
+ readonly rpcEndpoints: readonly ["https://evm-rpc-testnet.sei-apis.com"];
1241
+ readonly eurcAddress: null;
1242
+ readonly usdcAddress: "0x4fCF1784B31630811181f670Aea7A7bEF803eaED";
1243
+ readonly usdtAddress: null;
1244
+ readonly cctp: {
1245
+ readonly domain: 16;
1246
+ readonly contracts: {
1247
+ readonly v2: {
1248
+ readonly type: "split";
1249
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1250
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1251
+ readonly confirmations: 1;
1252
+ readonly fastConfirmations: 1;
1253
+ };
1254
+ };
1255
+ readonly forwarderSupported: {
1256
+ readonly source: true;
1257
+ readonly destination: true;
1258
+ };
1259
+ };
1260
+ readonly kitContracts: {
1261
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1262
+ };
1263
+ };
1264
+
1265
+ /**
1266
+ * Sonic Mainnet chain definition
1267
+ * @remarks
1268
+ * This represents the official production network for the Sonic blockchain.
1269
+ */
1270
+ declare const Sonic: {
1271
+ readonly type: "evm";
1272
+ readonly chain: Blockchain.Sonic;
1273
+ readonly name: "Sonic";
1274
+ readonly title: "Sonic Mainnet";
1275
+ readonly nativeCurrency: {
1276
+ readonly name: "Sonic";
1277
+ readonly symbol: "S";
1278
+ readonly decimals: 18;
1279
+ };
1280
+ readonly chainId: 146;
1281
+ readonly isTestnet: false;
1282
+ readonly explorerUrl: "https://sonicscan.org/tx/{hash}";
1283
+ readonly rpcEndpoints: readonly ["https://rpc.soniclabs.com"];
1284
+ readonly eurcAddress: null;
1285
+ readonly usdcAddress: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894";
1286
+ readonly usdtAddress: null;
1287
+ readonly cctp: {
1288
+ readonly domain: 13;
1289
+ readonly contracts: {
1290
+ readonly v2: {
1291
+ readonly type: "split";
1292
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1293
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1294
+ readonly confirmations: 1;
1295
+ readonly fastConfirmations: 1;
1296
+ };
1297
+ };
1298
+ readonly forwarderSupported: {
1299
+ readonly source: true;
1300
+ readonly destination: true;
1301
+ };
1302
+ };
1303
+ readonly kitContracts: {
1304
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1305
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1306
+ };
1307
+ };
1308
+
1309
+ /**
1310
+ * Sonic Testnet chain definition
1311
+ * @remarks
1312
+ * This represents the official test network for the Sonic blockchain.
1313
+ */
1314
+ declare const SonicTestnet: {
1315
+ readonly type: "evm";
1316
+ readonly chain: Blockchain.Sonic_Testnet;
1317
+ readonly name: "Sonic Testnet";
1318
+ readonly title: "Sonic Testnet";
1319
+ readonly nativeCurrency: {
1320
+ readonly name: "Sonic";
1321
+ readonly symbol: "S";
1322
+ readonly decimals: 18;
1323
+ };
1324
+ readonly chainId: 14601;
1325
+ readonly isTestnet: true;
1326
+ readonly explorerUrl: "https://testnet.sonicscan.org/tx/{hash}";
1327
+ readonly rpcEndpoints: readonly ["https://rpc.testnet.soniclabs.com"];
1328
+ readonly eurcAddress: null;
1329
+ readonly usdcAddress: "0x0BA304580ee7c9a980CF72e55f5Ed2E9fd30Bc51";
1330
+ readonly usdtAddress: null;
1331
+ readonly cctp: {
1332
+ readonly domain: 13;
1333
+ readonly contracts: {
1334
+ readonly v2: {
1335
+ readonly type: "split";
1336
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1337
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1338
+ readonly confirmations: 1;
1339
+ readonly fastConfirmations: 1;
1340
+ };
1341
+ };
1342
+ readonly forwarderSupported: {
1343
+ readonly source: true;
1344
+ readonly destination: true;
1345
+ };
1346
+ };
1347
+ readonly kitContracts: {
1348
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1349
+ };
1350
+ };
1351
+
1352
+ /**
1353
+ * Solana Mainnet chain definition
1354
+ * @remarks
1355
+ * This represents the official production network for the Solana blockchain.
1356
+ */
1357
+ declare const Solana: {
1358
+ readonly type: "solana";
1359
+ readonly chain: Blockchain.Solana;
1360
+ readonly name: "Solana";
1361
+ readonly title: "Solana Mainnet";
1362
+ readonly nativeCurrency: {
1363
+ readonly name: "Solana";
1364
+ readonly symbol: "SOL";
1365
+ readonly decimals: 9;
1366
+ };
1367
+ readonly isTestnet: false;
1368
+ readonly explorerUrl: "https://solscan.io/tx/{hash}";
1369
+ readonly rpcEndpoints: readonly ["https://api.mainnet-beta.solana.com"];
1370
+ readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
1371
+ readonly usdcAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
1372
+ readonly usdtAddress: "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB";
1373
+ readonly cctp: {
1374
+ readonly domain: 5;
1375
+ readonly contracts: {
1376
+ readonly v1: {
1377
+ readonly type: "split";
1378
+ readonly tokenMessenger: "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3";
1379
+ readonly messageTransmitter: "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd";
1380
+ readonly confirmations: 32;
1381
+ };
1382
+ readonly v2: {
1383
+ readonly type: "split";
1384
+ readonly tokenMessenger: "CCTPV2vPZJS2u2BBsUoscuikbYjnpFmbFsvVuJdgUMQe";
1385
+ readonly messageTransmitter: "CCTPV2Sm4AdWt5296sk4P66VBZ7bEhcARwFaaS9YPbeC";
1386
+ readonly confirmations: 32;
1387
+ readonly fastConfirmations: 3;
1388
+ };
1389
+ };
1390
+ readonly forwarderSupported: {
1391
+ readonly source: true;
1392
+ readonly destination: false;
1393
+ };
1394
+ };
1395
+ readonly kitContracts: {
1396
+ readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
1397
+ };
1398
+ };
1399
+
1400
+ /**
1401
+ * Solana Devnet chain definition
1402
+ * @remarks
1403
+ * This represents the development test network for the Solana blockchain.
1404
+ */
1405
+ declare const SolanaDevnet: {
1406
+ readonly type: "solana";
1407
+ readonly chain: Blockchain.Solana_Devnet;
1408
+ readonly name: "Solana Devnet";
1409
+ readonly title: "Solana Development Network";
1410
+ readonly nativeCurrency: {
1411
+ readonly name: "Solana";
1412
+ readonly symbol: "SOL";
1413
+ readonly decimals: 9;
1414
+ };
1415
+ readonly isTestnet: true;
1416
+ readonly explorerUrl: "https://solscan.io/tx/{hash}?cluster=devnet";
1417
+ readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
1418
+ readonly usdcAddress: "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU";
1419
+ readonly usdtAddress: null;
1420
+ readonly cctp: {
1421
+ readonly domain: 5;
1422
+ readonly contracts: {
1423
+ readonly v1: {
1424
+ readonly type: "split";
1425
+ readonly tokenMessenger: "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3";
1426
+ readonly messageTransmitter: "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd";
1427
+ readonly confirmations: 32;
1428
+ };
1429
+ readonly v2: {
1430
+ readonly type: "split";
1431
+ readonly tokenMessenger: "CCTPV2vPZJS2u2BBsUoscuikbYjnpFmbFsvVuJdgUMQe";
1432
+ readonly messageTransmitter: "CCTPV2Sm4AdWt5296sk4P66VBZ7bEhcARwFaaS9YPbeC";
1433
+ readonly confirmations: 32;
1434
+ readonly fastConfirmations: 3;
1435
+ };
1436
+ };
1437
+ readonly forwarderSupported: {
1438
+ readonly source: true;
1439
+ readonly destination: false;
1440
+ };
1441
+ };
1442
+ readonly kitContracts: {
1443
+ readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
1444
+ };
1445
+ readonly rpcEndpoints: readonly ["https://api.devnet.solana.com"];
1446
+ };
1447
+
1448
+ /**
1449
+ * Unichain Mainnet chain definition
1450
+ * @remarks
1451
+ * This represents the official production network for the Unichain blockchain.
1452
+ */
1453
+ declare const Unichain: {
1454
+ readonly type: "evm";
1455
+ readonly chain: Blockchain.Unichain;
1456
+ readonly name: "Unichain";
1457
+ readonly title: "Unichain Mainnet";
1458
+ readonly nativeCurrency: {
1459
+ readonly name: "Uni";
1460
+ readonly symbol: "UNI";
1461
+ readonly decimals: 18;
1462
+ };
1463
+ readonly chainId: 130;
1464
+ readonly isTestnet: false;
1465
+ readonly explorerUrl: "https://unichain.blockscout.com/tx/{hash}";
1466
+ readonly rpcEndpoints: readonly ["https://mainnet.unichain.org"];
1467
+ readonly eurcAddress: null;
1468
+ readonly usdcAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
1469
+ readonly usdtAddress: null;
1470
+ readonly cctp: {
1471
+ readonly domain: 10;
1472
+ readonly contracts: {
1473
+ readonly v1: {
1474
+ readonly type: "split";
1475
+ readonly tokenMessenger: "0x4e744b28E787c3aD0e810eD65A24461D4ac5a762";
1476
+ readonly messageTransmitter: "0x353bE9E2E38AB1D19104534e4edC21c643Df86f4";
1477
+ readonly confirmations: 65;
1478
+ };
1479
+ readonly v2: {
1480
+ readonly type: "split";
1481
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1482
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1483
+ readonly confirmations: 65;
1484
+ readonly fastConfirmations: 1;
1485
+ };
1486
+ };
1487
+ readonly forwarderSupported: {
1488
+ readonly source: true;
1489
+ readonly destination: true;
1490
+ };
1491
+ };
1492
+ readonly kitContracts: {
1493
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1494
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1495
+ };
1496
+ };
1497
+
1498
+ /**
1499
+ * Unichain Sepolia Testnet chain definition
1500
+ * @remarks
1501
+ * This represents the official test network for the Unichain blockchain.
1502
+ */
1503
+ declare const UnichainSepolia: {
1504
+ readonly type: "evm";
1505
+ readonly chain: Blockchain.Unichain_Sepolia;
1506
+ readonly name: "Unichain Sepolia";
1507
+ readonly title: "Unichain Sepolia Testnet";
1508
+ readonly nativeCurrency: {
1509
+ readonly name: "Sepolia Uni";
1510
+ readonly symbol: "UNI";
1511
+ readonly decimals: 18;
1512
+ };
1513
+ readonly chainId: 1301;
1514
+ readonly isTestnet: true;
1515
+ readonly explorerUrl: "https://unichain-sepolia.blockscout.com/tx/{hash}";
1516
+ readonly rpcEndpoints: readonly ["https://sepolia.unichain.org"];
1517
+ readonly eurcAddress: null;
1518
+ readonly usdcAddress: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
1519
+ readonly usdtAddress: null;
1520
+ readonly cctp: {
1521
+ readonly domain: 10;
1522
+ readonly contracts: {
1523
+ readonly v1: {
1524
+ readonly type: "split";
1525
+ readonly tokenMessenger: "0x8ed94B8dAd2Dc5453862ea5e316A8e71AAed9782";
1526
+ readonly messageTransmitter: "0xbc498c326533d675cf571B90A2Ced265ACb7d086";
1527
+ readonly confirmations: 65;
1528
+ };
1529
+ readonly v2: {
1530
+ readonly type: "split";
1531
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1532
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1533
+ readonly confirmations: 65;
1534
+ readonly fastConfirmations: 1;
1535
+ };
1536
+ };
1537
+ readonly forwarderSupported: {
1538
+ readonly source: true;
1539
+ readonly destination: true;
1540
+ };
1541
+ };
1542
+ readonly kitContracts: {
1543
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1544
+ };
1545
+ };
1546
+
1547
+ /**
1548
+ * World Chain chain definition
1549
+ * @remarks
1550
+ * This represents the main network for the World Chain blockchain.
1551
+ */
1552
+ declare const WorldChain: {
1553
+ readonly type: "evm";
1554
+ readonly chain: Blockchain.World_Chain;
1555
+ readonly name: "World Chain";
1556
+ readonly title: "World Chain";
1557
+ readonly nativeCurrency: {
1558
+ readonly name: "Ether";
1559
+ readonly symbol: "ETH";
1560
+ readonly decimals: 18;
1561
+ };
1562
+ readonly chainId: 480;
1563
+ readonly isTestnet: false;
1564
+ readonly explorerUrl: "https://worldscan.org/tx/{hash}";
1565
+ readonly rpcEndpoints: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
1566
+ readonly eurcAddress: null;
1567
+ readonly usdcAddress: "0x79A02482A880bCE3F13e09Da970dC34db4CD24d1";
1568
+ readonly usdtAddress: null;
1569
+ readonly cctp: {
1570
+ readonly domain: 14;
1571
+ readonly contracts: {
1572
+ readonly v2: {
1573
+ readonly type: "split";
1574
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cF5d";
1575
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1576
+ readonly confirmations: 65;
1577
+ readonly fastConfirmations: 1;
1578
+ };
1579
+ };
1580
+ readonly forwarderSupported: {
1581
+ readonly source: true;
1582
+ readonly destination: true;
1583
+ };
1584
+ };
1585
+ readonly kitContracts: {
1586
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1587
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1588
+ };
1589
+ };
1590
+
1591
+ /**
1592
+ * World Chain Sepolia chain definition
1593
+ * @remarks
1594
+ * This represents the test network for the World Chain blockchain.
1595
+ */
1596
+ declare const WorldChainSepolia: {
1597
+ readonly type: "evm";
1598
+ readonly chain: Blockchain.World_Chain_Sepolia;
1599
+ readonly name: "World Chain Sepolia";
1600
+ readonly title: "World Chain Sepolia";
1601
+ readonly nativeCurrency: {
1602
+ readonly name: "Ether";
1603
+ readonly symbol: "ETH";
1604
+ readonly decimals: 18;
1605
+ };
1606
+ readonly chainId: 4801;
1607
+ readonly isTestnet: true;
1608
+ readonly explorerUrl: "https://sepolia.worldscan.org/tx/{hash}";
1609
+ readonly rpcEndpoints: readonly ["https://worldchain-sepolia.drpc.org", "https://worldchain-sepolia.g.alchemy.com/public"];
1610
+ readonly eurcAddress: null;
1611
+ readonly usdcAddress: "0x66145f38cBAC35Ca6F1Dfb4914dF98F1614aeA88";
1612
+ readonly usdtAddress: null;
1613
+ readonly cctp: {
1614
+ readonly domain: 14;
1615
+ readonly contracts: {
1616
+ readonly v2: {
1617
+ readonly type: "split";
1618
+ readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
1619
+ readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
1620
+ readonly confirmations: 65;
1621
+ readonly fastConfirmations: 1;
1622
+ };
1623
+ };
1624
+ readonly forwarderSupported: {
1625
+ readonly source: true;
1626
+ readonly destination: true;
1627
+ };
1628
+ };
1629
+ readonly kitContracts: {
1630
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1631
+ };
1632
+ };
1633
+
1634
+ /**
1635
+ * XDC Mainnet chain definition
1636
+ * @remarks
1637
+ * This represents the official production network for the XDC blockchain.
1638
+ * XDC is a Layer 1 blockchain specialized for DeFi and trading applications
1639
+ * with native orderbook and matching engine.
1640
+ */
1641
+ declare const XDC: {
1642
+ readonly type: "evm";
1643
+ readonly chain: Blockchain.XDC;
1644
+ readonly name: "XDC";
1645
+ readonly title: "XDC Mainnet";
1646
+ readonly nativeCurrency: {
1647
+ readonly name: "XDC";
1648
+ readonly symbol: "XDC";
1649
+ readonly decimals: 18;
1650
+ };
1651
+ readonly chainId: 50;
1652
+ readonly isTestnet: false;
1653
+ readonly explorerUrl: "https://xdcscan.io/tx/{hash}";
1654
+ readonly rpcEndpoints: readonly ["https://erpc.xdcrpc.com", "https://erpc.xinfin.network"];
1655
+ readonly eurcAddress: null;
1656
+ readonly usdcAddress: "0xfA2958CB79b0491CC627c1557F441eF849Ca8eb1";
1657
+ readonly usdtAddress: null;
1658
+ readonly cctp: {
1659
+ readonly domain: 18;
1660
+ readonly contracts: {
1661
+ readonly v2: {
1662
+ readonly type: "split";
1663
+ readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
1664
+ readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
1665
+ readonly confirmations: 3;
1666
+ readonly fastConfirmations: 3;
1667
+ };
1668
+ };
1669
+ readonly forwarderSupported: {
1670
+ readonly source: true;
1671
+ readonly destination: false;
1672
+ };
1673
+ };
1674
+ readonly kitContracts: {
1675
+ readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
1676
+ readonly adapter: "0x7FB8c7260b63934d8da38aF902f87ae6e284a845";
1677
+ };
1678
+ };
1679
+
1680
+ /**
1681
+ * XDC Apothem Testnet chain definition
1682
+ * @remarks
1683
+ * This represents the official test network for the XDC Network, known as Apothem.
1684
+ */
1685
+ declare const XDCApothem: {
1686
+ readonly type: "evm";
1687
+ readonly chain: Blockchain.XDC_Apothem;
1688
+ readonly name: "Apothem Network";
1689
+ readonly title: "Apothem Network";
1690
+ readonly nativeCurrency: {
1691
+ readonly name: "TXDC";
1692
+ readonly symbol: "TXDC";
1693
+ readonly decimals: 18;
1694
+ };
1695
+ readonly chainId: 51;
1696
+ readonly isTestnet: true;
1697
+ readonly explorerUrl: "https://testnet.xdcscan.com/tx/{hash}";
1698
+ readonly rpcEndpoints: readonly ["https://erpc.apothem.network"];
1699
+ readonly eurcAddress: null;
1700
+ readonly usdcAddress: "0xb5AB69F7bBada22B28e79C8FFAECe55eF1c771D4";
1701
+ readonly usdtAddress: null;
1702
+ readonly cctp: {
1703
+ readonly domain: 18;
1704
+ readonly contracts: {
1705
+ readonly v2: {
1706
+ readonly type: "split";
1707
+ readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
1708
+ readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
1709
+ readonly confirmations: 3;
1710
+ readonly fastConfirmations: 1;
1711
+ };
1712
+ };
1713
+ readonly forwarderSupported: {
1714
+ readonly source: true;
1715
+ readonly destination: false;
1716
+ };
1717
+ };
1718
+ readonly kitContracts: {
1719
+ readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
1720
+ };
1721
+ };
1722
+
1723
+ 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 };