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