@circle-fin/bridge-kit 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +190 -0
- package/QUICKSTART.md +1147 -0
- package/README.md +478 -0
- package/chains.cjs.js +2250 -0
- package/chains.cjs.js.map +1 -0
- package/chains.d.ts +1088 -0
- package/chains.mjs +2225 -0
- package/chains.mjs.map +1 -0
- package/index.cjs.js +4862 -0
- package/index.cjs.js.map +1 -0
- package/index.d.ts +4048 -0
- package/index.mjs +4858 -0
- package/index.mjs.map +1 -0
- package/package.json +46 -0
package/chains.d.ts
ADDED
|
@@ -0,0 +1,1088 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2025, 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 supported by this library.
|
|
21
|
+
* @enum
|
|
22
|
+
* @category Enums
|
|
23
|
+
* @description Provides string identifiers for each supported blockchain.
|
|
24
|
+
*/
|
|
25
|
+
declare enum Blockchain {
|
|
26
|
+
Algorand = "Algorand",
|
|
27
|
+
Algorand_Testnet = "Algorand_Testnet",
|
|
28
|
+
Aptos = "Aptos",
|
|
29
|
+
Aptos_Testnet = "Aptos_Testnet",
|
|
30
|
+
Arbitrum = "Arbitrum",
|
|
31
|
+
Arbitrum_Sepolia = "Arbitrum_Sepolia",
|
|
32
|
+
Avalanche = "Avalanche",
|
|
33
|
+
Avalanche_Fuji = "Avalanche_Fuji",
|
|
34
|
+
Base = "Base",
|
|
35
|
+
Base_Sepolia = "Base_Sepolia",
|
|
36
|
+
Celo = "Celo",
|
|
37
|
+
Celo_Alfajores_Testnet = "Celo_Alfajores_Testnet",
|
|
38
|
+
Codex = "Codex",
|
|
39
|
+
Codex_Testnet = "Codex_Testnet",
|
|
40
|
+
Ethereum = "Ethereum",
|
|
41
|
+
Ethereum_Sepolia = "Ethereum_Sepolia",
|
|
42
|
+
Hedera = "Hedera",
|
|
43
|
+
Hedera_Testnet = "Hedera_Testnet",
|
|
44
|
+
HyperEVM = "HyperEVM",
|
|
45
|
+
HyperEVM_Testnet = "HyperEVM_Testnet",
|
|
46
|
+
Ink = "Ink",
|
|
47
|
+
Ink_Testnet = "Ink_Testnet",
|
|
48
|
+
Linea = "Linea",
|
|
49
|
+
Linea_Sepolia = "Linea_Sepolia",
|
|
50
|
+
NEAR = "NEAR",
|
|
51
|
+
NEAR_Testnet = "NEAR_Testnet",
|
|
52
|
+
Noble = "Noble",
|
|
53
|
+
Noble_Testnet = "Noble_Testnet",
|
|
54
|
+
Optimism = "Optimism",
|
|
55
|
+
Optimism_Sepolia = "Optimism_Sepolia",
|
|
56
|
+
Polkadot_Asset_Hub = "Polkadot_Asset_Hub",
|
|
57
|
+
Polkadot_Westmint = "Polkadot_Westmint",
|
|
58
|
+
Plume = "Plume",
|
|
59
|
+
Plume_Testnet = "Plume_Testnet",
|
|
60
|
+
Polygon = "Polygon",
|
|
61
|
+
Polygon_Amoy_Testnet = "Polygon_Amoy_Testnet",
|
|
62
|
+
Sei = "Sei",
|
|
63
|
+
Sei_Testnet = "Sei_Testnet",
|
|
64
|
+
Solana = "Solana",
|
|
65
|
+
Solana_Devnet = "Solana_Devnet",
|
|
66
|
+
Sonic = "Sonic",
|
|
67
|
+
Sonic_Testnet = "Sonic_Testnet",
|
|
68
|
+
Stellar = "Stellar",
|
|
69
|
+
Stellar_Testnet = "Stellar_Testnet",
|
|
70
|
+
Sui = "Sui",
|
|
71
|
+
Sui_Testnet = "Sui_Testnet",
|
|
72
|
+
Unichain = "Unichain",
|
|
73
|
+
Unichain_Sepolia = "Unichain_Sepolia",
|
|
74
|
+
World_Chain = "World_Chain",
|
|
75
|
+
World_Chain_Sepolia = "World_Chain_Sepolia",
|
|
76
|
+
XDC = "XDC",
|
|
77
|
+
XDC_Apothem = "XDC_Apothem",
|
|
78
|
+
ZKSync_Era = "ZKSync_Era",
|
|
79
|
+
ZKSync_Sepolia = "ZKSync_Sepolia"
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Arbitrum Mainnet chain definition
|
|
84
|
+
* @remarks
|
|
85
|
+
* This represents the official production network for the Arbitrum blockchain.
|
|
86
|
+
*/
|
|
87
|
+
declare const Arbitrum: {
|
|
88
|
+
readonly type: "evm";
|
|
89
|
+
readonly chain: Blockchain.Arbitrum;
|
|
90
|
+
readonly name: "Arbitrum";
|
|
91
|
+
readonly title: "Arbitrum Mainnet";
|
|
92
|
+
readonly nativeCurrency: {
|
|
93
|
+
readonly name: "Ether";
|
|
94
|
+
readonly symbol: "ETH";
|
|
95
|
+
readonly decimals: 18;
|
|
96
|
+
};
|
|
97
|
+
readonly chainId: 42161;
|
|
98
|
+
readonly isTestnet: false;
|
|
99
|
+
readonly explorerUrl: "https://arbiscan.io/tx/{hash}";
|
|
100
|
+
readonly rpcEndpoints: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
101
|
+
readonly eurcAddress: null;
|
|
102
|
+
readonly usdcAddress: "0xaf88d065e77c8cc2239327c5edb3a432268e5831";
|
|
103
|
+
readonly cctp: {
|
|
104
|
+
readonly domain: 3;
|
|
105
|
+
readonly contracts: {
|
|
106
|
+
readonly v1: {
|
|
107
|
+
readonly type: "split";
|
|
108
|
+
readonly tokenMessenger: "0x19330d10D9Cc8751218eaf51E8885D058642E08A";
|
|
109
|
+
readonly messageTransmitter: "0xC30362313FBBA5cf9163F0bb16a0e01f01A896ca";
|
|
110
|
+
readonly confirmations: 65;
|
|
111
|
+
};
|
|
112
|
+
readonly v2: {
|
|
113
|
+
readonly type: "split";
|
|
114
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
115
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
116
|
+
readonly confirmations: 65;
|
|
117
|
+
readonly fastConfirmations: 1;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
readonly kitContracts: {
|
|
122
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Arbitrum Sepolia Testnet chain definition
|
|
128
|
+
* @remarks
|
|
129
|
+
* This represents the official test network for the Arbitrum blockchain on Sepolia.
|
|
130
|
+
*/
|
|
131
|
+
declare const ArbitrumSepolia: {
|
|
132
|
+
readonly type: "evm";
|
|
133
|
+
readonly chain: Blockchain.Arbitrum_Sepolia;
|
|
134
|
+
readonly name: "Arbitrum Sepolia";
|
|
135
|
+
readonly title: "Arbitrum Sepolia Testnet";
|
|
136
|
+
readonly nativeCurrency: {
|
|
137
|
+
readonly name: "Sepolia Ether";
|
|
138
|
+
readonly symbol: "ETH";
|
|
139
|
+
readonly decimals: 18;
|
|
140
|
+
};
|
|
141
|
+
readonly chainId: 421614;
|
|
142
|
+
readonly isTestnet: true;
|
|
143
|
+
readonly explorerUrl: "https://sepolia.arbiscan.io/tx/{hash}";
|
|
144
|
+
readonly rpcEndpoints: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
145
|
+
readonly eurcAddress: null;
|
|
146
|
+
readonly usdcAddress: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d";
|
|
147
|
+
readonly cctp: {
|
|
148
|
+
readonly domain: 3;
|
|
149
|
+
readonly contracts: {
|
|
150
|
+
readonly v1: {
|
|
151
|
+
readonly type: "split";
|
|
152
|
+
readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
|
|
153
|
+
readonly messageTransmitter: "0xaCF1ceeF35caAc005e15888dDb8A3515C41B4872";
|
|
154
|
+
readonly confirmations: 65;
|
|
155
|
+
};
|
|
156
|
+
readonly v2: {
|
|
157
|
+
readonly type: "split";
|
|
158
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
159
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
160
|
+
readonly confirmations: 65;
|
|
161
|
+
readonly fastConfirmations: 1;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
readonly kitContracts: {
|
|
166
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
167
|
+
};
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* Avalanche Mainnet chain definition
|
|
172
|
+
* @remarks
|
|
173
|
+
* This represents the official production network for the Avalanche blockchain.
|
|
174
|
+
*/
|
|
175
|
+
declare const Avalanche: {
|
|
176
|
+
readonly type: "evm";
|
|
177
|
+
readonly chain: Blockchain.Avalanche;
|
|
178
|
+
readonly name: "Avalanche";
|
|
179
|
+
readonly title: "Avalanche Mainnet";
|
|
180
|
+
readonly nativeCurrency: {
|
|
181
|
+
readonly name: "Avalanche";
|
|
182
|
+
readonly symbol: "AVAX";
|
|
183
|
+
readonly decimals: 18;
|
|
184
|
+
};
|
|
185
|
+
readonly chainId: 43114;
|
|
186
|
+
readonly isTestnet: false;
|
|
187
|
+
readonly explorerUrl: "https://subnets.avax.network/c-chain/tx/{hash}";
|
|
188
|
+
readonly rpcEndpoints: readonly ["https://api.avax.network/ext/bc/C/rpc"];
|
|
189
|
+
readonly eurcAddress: "0xc891eb4cbdeff6e073e859e987815ed1505c2acd";
|
|
190
|
+
readonly usdcAddress: "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E";
|
|
191
|
+
readonly cctp: {
|
|
192
|
+
readonly domain: 1;
|
|
193
|
+
readonly contracts: {
|
|
194
|
+
readonly v1: {
|
|
195
|
+
readonly type: "split";
|
|
196
|
+
readonly tokenMessenger: "0x6b25532e1060ce10cc3b0a99e5683b91bfde6982";
|
|
197
|
+
readonly messageTransmitter: "0x8186359af5f57fbb40c6b14a588d2a59c0c29880";
|
|
198
|
+
readonly confirmations: 1;
|
|
199
|
+
};
|
|
200
|
+
readonly v2: {
|
|
201
|
+
readonly type: "split";
|
|
202
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
203
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
204
|
+
readonly confirmations: 1;
|
|
205
|
+
readonly fastConfirmations: 1;
|
|
206
|
+
};
|
|
207
|
+
};
|
|
208
|
+
};
|
|
209
|
+
readonly kitContracts: {
|
|
210
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Avalanche Fuji Testnet chain definition
|
|
216
|
+
* @remarks
|
|
217
|
+
* This represents the official test network for the Avalanche blockchain.
|
|
218
|
+
*/
|
|
219
|
+
declare const AvalancheFuji: {
|
|
220
|
+
readonly type: "evm";
|
|
221
|
+
readonly chain: Blockchain.Avalanche_Fuji;
|
|
222
|
+
readonly name: "Avalanche Fuji";
|
|
223
|
+
readonly title: "Avalanche Fuji Testnet";
|
|
224
|
+
readonly nativeCurrency: {
|
|
225
|
+
readonly name: "Avalanche";
|
|
226
|
+
readonly symbol: "AVAX";
|
|
227
|
+
readonly decimals: 18;
|
|
228
|
+
};
|
|
229
|
+
readonly chainId: 43113;
|
|
230
|
+
readonly isTestnet: true;
|
|
231
|
+
readonly explorerUrl: "https://subnets-test.avax.network/c-chain/tx/{hash}";
|
|
232
|
+
readonly eurcAddress: "0x5e44db7996c682e92a960b65ac713a54ad815c6b";
|
|
233
|
+
readonly usdcAddress: "0x5425890298aed601595a70ab815c96711a31bc65";
|
|
234
|
+
readonly cctp: {
|
|
235
|
+
readonly domain: 1;
|
|
236
|
+
readonly contracts: {
|
|
237
|
+
readonly v1: {
|
|
238
|
+
readonly type: "split";
|
|
239
|
+
readonly tokenMessenger: "0xeb08f243e5d3fcff26a9e38ae5520a669f4019d0";
|
|
240
|
+
readonly messageTransmitter: "0xa9fb1b3009dcb79e2fe346c16a604b8fa8ae0a79";
|
|
241
|
+
readonly confirmations: 1;
|
|
242
|
+
};
|
|
243
|
+
readonly v2: {
|
|
244
|
+
readonly type: "split";
|
|
245
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
246
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
247
|
+
readonly confirmations: 1;
|
|
248
|
+
readonly fastConfirmations: 1;
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
readonly rpcEndpoints: readonly ["https://api.avax-test.network/ext/bc/C/rpc"];
|
|
253
|
+
readonly kitContracts: {
|
|
254
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
255
|
+
};
|
|
256
|
+
};
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* Base chain definition
|
|
260
|
+
* @remarks
|
|
261
|
+
* This represents the official production network for the Base blockchain.
|
|
262
|
+
*/
|
|
263
|
+
declare const Base: {
|
|
264
|
+
readonly type: "evm";
|
|
265
|
+
readonly chain: Blockchain.Base;
|
|
266
|
+
readonly name: "Base";
|
|
267
|
+
readonly title: "Base Mainnet";
|
|
268
|
+
readonly nativeCurrency: {
|
|
269
|
+
readonly name: "Ether";
|
|
270
|
+
readonly symbol: "ETH";
|
|
271
|
+
readonly decimals: 18;
|
|
272
|
+
};
|
|
273
|
+
readonly chainId: 8453;
|
|
274
|
+
readonly isTestnet: false;
|
|
275
|
+
readonly explorerUrl: "https://basescan.org/tx/{hash}";
|
|
276
|
+
readonly rpcEndpoints: readonly ["https://mainnet.base.org", "https://base.publicnode.com"];
|
|
277
|
+
readonly eurcAddress: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
|
|
278
|
+
readonly usdcAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
|
|
279
|
+
readonly cctp: {
|
|
280
|
+
readonly domain: 6;
|
|
281
|
+
readonly contracts: {
|
|
282
|
+
readonly v1: {
|
|
283
|
+
readonly type: "split";
|
|
284
|
+
readonly tokenMessenger: "0x1682Ae6375C4E4A97e4B583BC394c861A46D8962";
|
|
285
|
+
readonly messageTransmitter: "0xAD09780d193884d503182aD4588450C416D6F9D4";
|
|
286
|
+
readonly confirmations: 65;
|
|
287
|
+
};
|
|
288
|
+
readonly v2: {
|
|
289
|
+
readonly type: "split";
|
|
290
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
291
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
292
|
+
readonly confirmations: 65;
|
|
293
|
+
readonly fastConfirmations: 1;
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
readonly kitContracts: {
|
|
298
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
299
|
+
};
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Base Sepolia Testnet chain definition
|
|
304
|
+
* @remarks
|
|
305
|
+
* This represents the official test network for the Base blockchain on Sepolia.
|
|
306
|
+
*/
|
|
307
|
+
declare const BaseSepolia: {
|
|
308
|
+
readonly type: "evm";
|
|
309
|
+
readonly chain: Blockchain.Base_Sepolia;
|
|
310
|
+
readonly name: "Base Sepolia";
|
|
311
|
+
readonly title: "Base Sepolia Testnet";
|
|
312
|
+
readonly nativeCurrency: {
|
|
313
|
+
readonly name: "Sepolia Ether";
|
|
314
|
+
readonly symbol: "ETH";
|
|
315
|
+
readonly decimals: 18;
|
|
316
|
+
};
|
|
317
|
+
readonly chainId: 84532;
|
|
318
|
+
readonly isTestnet: true;
|
|
319
|
+
readonly explorerUrl: "https://sepolia.basescan.org/tx/{hash}";
|
|
320
|
+
readonly rpcEndpoints: readonly ["https://sepolia.base.org"];
|
|
321
|
+
readonly eurcAddress: "0x808456652fdb597867f38412077A9182bf77359F";
|
|
322
|
+
readonly usdcAddress: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
|
|
323
|
+
readonly cctp: {
|
|
324
|
+
readonly domain: 6;
|
|
325
|
+
readonly contracts: {
|
|
326
|
+
readonly v1: {
|
|
327
|
+
readonly type: "split";
|
|
328
|
+
readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
|
|
329
|
+
readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
|
|
330
|
+
readonly confirmations: 65;
|
|
331
|
+
};
|
|
332
|
+
readonly v2: {
|
|
333
|
+
readonly type: "split";
|
|
334
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
335
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
336
|
+
readonly confirmations: 65;
|
|
337
|
+
readonly fastConfirmations: 1;
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
readonly kitContracts: {
|
|
342
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
343
|
+
};
|
|
344
|
+
};
|
|
345
|
+
|
|
346
|
+
/**
|
|
347
|
+
* Codex Mainnet chain definition
|
|
348
|
+
* @remarks
|
|
349
|
+
* This represents the main network for the Codex blockchain.
|
|
350
|
+
*/
|
|
351
|
+
declare const Codex: {
|
|
352
|
+
readonly type: "evm";
|
|
353
|
+
readonly chain: Blockchain.Codex;
|
|
354
|
+
readonly name: "Codex Mainnet";
|
|
355
|
+
readonly title: "Codex Mainnet";
|
|
356
|
+
readonly nativeCurrency: {
|
|
357
|
+
readonly name: "ETH";
|
|
358
|
+
readonly symbol: "ETH";
|
|
359
|
+
readonly decimals: 18;
|
|
360
|
+
};
|
|
361
|
+
readonly chainId: 81224;
|
|
362
|
+
readonly isTestnet: false;
|
|
363
|
+
readonly explorerUrl: "https://explorer.codex.xyz/tx/{hash}";
|
|
364
|
+
readonly rpcEndpoints: readonly ["https://rpc.codex.xyz"];
|
|
365
|
+
readonly eurcAddress: null;
|
|
366
|
+
readonly usdcAddress: "0xd996633a415985DBd7D6D12f4A4343E31f5037cf";
|
|
367
|
+
readonly cctp: {
|
|
368
|
+
readonly domain: 12;
|
|
369
|
+
readonly contracts: {
|
|
370
|
+
readonly v2: {
|
|
371
|
+
readonly type: "split";
|
|
372
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
373
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
374
|
+
readonly confirmations: 65;
|
|
375
|
+
readonly fastConfirmations: 1;
|
|
376
|
+
};
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
readonly kitContracts: {
|
|
380
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* Codex Testnet chain definition
|
|
386
|
+
* @remarks
|
|
387
|
+
* This represents the test network for the Codex blockchain.
|
|
388
|
+
*/
|
|
389
|
+
declare const CodexTestnet: {
|
|
390
|
+
readonly type: "evm";
|
|
391
|
+
readonly chain: Blockchain.Codex_Testnet;
|
|
392
|
+
readonly name: "Codex Testnet";
|
|
393
|
+
readonly title: "Codex Testnet";
|
|
394
|
+
readonly nativeCurrency: {
|
|
395
|
+
readonly name: "ETH";
|
|
396
|
+
readonly symbol: "ETH";
|
|
397
|
+
readonly decimals: 18;
|
|
398
|
+
};
|
|
399
|
+
readonly chainId: 812242;
|
|
400
|
+
readonly isTestnet: true;
|
|
401
|
+
readonly explorerUrl: "https://explorer.codex-stg.xyz/tx/{hash}";
|
|
402
|
+
readonly rpcEndpoints: readonly ["https://rpc.codex-stg.xyz"];
|
|
403
|
+
readonly eurcAddress: null;
|
|
404
|
+
readonly usdcAddress: "0x6d7f141b6819C2c9CC2f818e6ad549E7Ca090F8f";
|
|
405
|
+
readonly cctp: {
|
|
406
|
+
readonly domain: 12;
|
|
407
|
+
readonly contracts: {
|
|
408
|
+
readonly v2: {
|
|
409
|
+
readonly type: "split";
|
|
410
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
411
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
412
|
+
readonly confirmations: 65;
|
|
413
|
+
readonly fastConfirmations: 1;
|
|
414
|
+
};
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
readonly kitContracts: {
|
|
418
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
419
|
+
};
|
|
420
|
+
};
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* Ethereum Mainnet chain definition
|
|
424
|
+
* @remarks
|
|
425
|
+
* This represents the official production network for the Ethereum blockchain.
|
|
426
|
+
*/
|
|
427
|
+
declare const Ethereum: {
|
|
428
|
+
readonly type: "evm";
|
|
429
|
+
readonly chain: Blockchain.Ethereum;
|
|
430
|
+
readonly name: "Ethereum";
|
|
431
|
+
readonly title: "Ethereum Mainnet";
|
|
432
|
+
readonly nativeCurrency: {
|
|
433
|
+
readonly name: "Ether";
|
|
434
|
+
readonly symbol: "ETH";
|
|
435
|
+
readonly decimals: 18;
|
|
436
|
+
};
|
|
437
|
+
readonly chainId: 1;
|
|
438
|
+
readonly isTestnet: false;
|
|
439
|
+
readonly explorerUrl: "https://etherscan.io/tx/{hash}";
|
|
440
|
+
readonly rpcEndpoints: readonly ["https://eth.merkle.io", "https://ethereum.publicnode.com"];
|
|
441
|
+
readonly eurcAddress: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
|
|
442
|
+
readonly usdcAddress: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
|
|
443
|
+
readonly cctp: {
|
|
444
|
+
readonly domain: 0;
|
|
445
|
+
readonly contracts: {
|
|
446
|
+
readonly v1: {
|
|
447
|
+
readonly type: "split";
|
|
448
|
+
readonly tokenMessenger: "0xbd3fa81b58ba92a82136038b25adec7066af3155";
|
|
449
|
+
readonly messageTransmitter: "0x0a992d191deec32afe36203ad87d7d289a738f81";
|
|
450
|
+
readonly confirmations: 65;
|
|
451
|
+
};
|
|
452
|
+
readonly v2: {
|
|
453
|
+
readonly type: "split";
|
|
454
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
455
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
456
|
+
readonly confirmations: 65;
|
|
457
|
+
readonly fastConfirmations: 2;
|
|
458
|
+
};
|
|
459
|
+
};
|
|
460
|
+
};
|
|
461
|
+
readonly kitContracts: {
|
|
462
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
463
|
+
};
|
|
464
|
+
};
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* Ethereum Sepolia Testnet chain definition
|
|
468
|
+
* @remarks
|
|
469
|
+
* This represents the official test network for the Ethereum blockchain on Sepolia.
|
|
470
|
+
*/
|
|
471
|
+
declare const EthereumSepolia: {
|
|
472
|
+
readonly type: "evm";
|
|
473
|
+
readonly chain: Blockchain.Ethereum_Sepolia;
|
|
474
|
+
readonly name: "Ethereum Sepolia";
|
|
475
|
+
readonly title: "Ethereum Sepolia Testnet";
|
|
476
|
+
readonly nativeCurrency: {
|
|
477
|
+
readonly name: "Sepolia Ether";
|
|
478
|
+
readonly symbol: "ETH";
|
|
479
|
+
readonly decimals: 18;
|
|
480
|
+
};
|
|
481
|
+
readonly chainId: 11155111;
|
|
482
|
+
readonly isTestnet: true;
|
|
483
|
+
readonly explorerUrl: "https://sepolia.etherscan.io/tx/{hash}";
|
|
484
|
+
readonly rpcEndpoints: readonly ["https://sepolia.drpc.org"];
|
|
485
|
+
readonly eurcAddress: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
|
|
486
|
+
readonly usdcAddress: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
|
|
487
|
+
readonly cctp: {
|
|
488
|
+
readonly domain: 0;
|
|
489
|
+
readonly contracts: {
|
|
490
|
+
readonly v1: {
|
|
491
|
+
readonly type: "split";
|
|
492
|
+
readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
|
|
493
|
+
readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
|
|
494
|
+
readonly confirmations: 65;
|
|
495
|
+
};
|
|
496
|
+
readonly v2: {
|
|
497
|
+
readonly type: "split";
|
|
498
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
499
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
500
|
+
readonly confirmations: 65;
|
|
501
|
+
readonly fastConfirmations: 2;
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
readonly kitContracts: {
|
|
506
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
507
|
+
};
|
|
508
|
+
};
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* Linea Mainnet chain definition
|
|
512
|
+
* @remarks
|
|
513
|
+
* This represents the official production network for the Linea blockchain.
|
|
514
|
+
*/
|
|
515
|
+
declare const Linea: {
|
|
516
|
+
readonly type: "evm";
|
|
517
|
+
readonly chain: Blockchain.Linea;
|
|
518
|
+
readonly name: "Linea";
|
|
519
|
+
readonly title: "Linea Mainnet";
|
|
520
|
+
readonly nativeCurrency: {
|
|
521
|
+
readonly name: "Ether";
|
|
522
|
+
readonly symbol: "ETH";
|
|
523
|
+
readonly decimals: 18;
|
|
524
|
+
};
|
|
525
|
+
readonly chainId: 59144;
|
|
526
|
+
readonly isTestnet: false;
|
|
527
|
+
readonly explorerUrl: "https://lineascan.build/tx/{hash}";
|
|
528
|
+
readonly rpcEndpoints: readonly ["https://rpc.linea.build"];
|
|
529
|
+
readonly eurcAddress: null;
|
|
530
|
+
readonly usdcAddress: "0x176211869ca2b568f2a7d4ee941e073a821ee1ff";
|
|
531
|
+
readonly cctp: {
|
|
532
|
+
readonly domain: 11;
|
|
533
|
+
readonly contracts: {
|
|
534
|
+
readonly v2: {
|
|
535
|
+
readonly type: "split";
|
|
536
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
537
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
538
|
+
readonly confirmations: 1;
|
|
539
|
+
readonly fastConfirmations: 1;
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
readonly kitContracts: {
|
|
544
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
545
|
+
};
|
|
546
|
+
};
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Linea Sepolia Testnet chain definition
|
|
550
|
+
* @remarks
|
|
551
|
+
* This represents the official test network for the Linea blockchain on Sepolia.
|
|
552
|
+
*/
|
|
553
|
+
declare const LineaSepolia: {
|
|
554
|
+
readonly type: "evm";
|
|
555
|
+
readonly chain: Blockchain.Linea_Sepolia;
|
|
556
|
+
readonly name: "Linea Sepolia";
|
|
557
|
+
readonly title: "Linea Sepolia Testnet";
|
|
558
|
+
readonly nativeCurrency: {
|
|
559
|
+
readonly name: "Sepolia Ether";
|
|
560
|
+
readonly symbol: "ETH";
|
|
561
|
+
readonly decimals: 18;
|
|
562
|
+
};
|
|
563
|
+
readonly chainId: 59141;
|
|
564
|
+
readonly isTestnet: true;
|
|
565
|
+
readonly explorerUrl: "https://sepolia.lineascan.build/tx/{hash}";
|
|
566
|
+
readonly rpcEndpoints: readonly ["https://rpc.sepolia.linea.build"];
|
|
567
|
+
readonly eurcAddress: null;
|
|
568
|
+
readonly usdcAddress: "0xfece4462d57bd51a6a552365a011b95f0e16d9b7";
|
|
569
|
+
readonly cctp: {
|
|
570
|
+
readonly domain: 11;
|
|
571
|
+
readonly contracts: {
|
|
572
|
+
readonly v2: {
|
|
573
|
+
readonly type: "split";
|
|
574
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
575
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
576
|
+
readonly confirmations: 1;
|
|
577
|
+
readonly fastConfirmations: 1;
|
|
578
|
+
};
|
|
579
|
+
};
|
|
580
|
+
};
|
|
581
|
+
readonly kitContracts: {
|
|
582
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
583
|
+
};
|
|
584
|
+
};
|
|
585
|
+
|
|
586
|
+
/**
|
|
587
|
+
* Optimism Mainnet chain definition
|
|
588
|
+
* @remarks
|
|
589
|
+
* This represents the official production network for the Optimism blockchain.
|
|
590
|
+
*/
|
|
591
|
+
declare const Optimism: {
|
|
592
|
+
readonly type: "evm";
|
|
593
|
+
readonly chain: Blockchain.Optimism;
|
|
594
|
+
readonly name: "Optimism";
|
|
595
|
+
readonly title: "Optimism Mainnet";
|
|
596
|
+
readonly nativeCurrency: {
|
|
597
|
+
readonly name: "Ether";
|
|
598
|
+
readonly symbol: "ETH";
|
|
599
|
+
readonly decimals: 18;
|
|
600
|
+
};
|
|
601
|
+
readonly chainId: 10;
|
|
602
|
+
readonly isTestnet: false;
|
|
603
|
+
readonly explorerUrl: "https://optimistic.etherscan.io/tx/{hash}";
|
|
604
|
+
readonly rpcEndpoints: readonly ["https://mainnet.optimism.io"];
|
|
605
|
+
readonly eurcAddress: null;
|
|
606
|
+
readonly usdcAddress: "0x0b2c639c533813f4aa9d7837caf62653d097ff85";
|
|
607
|
+
readonly cctp: {
|
|
608
|
+
readonly domain: 2;
|
|
609
|
+
readonly contracts: {
|
|
610
|
+
readonly v1: {
|
|
611
|
+
readonly type: "split";
|
|
612
|
+
readonly tokenMessenger: "0x2B4069517957735bE00ceE0fadAE88a26365528f";
|
|
613
|
+
readonly messageTransmitter: "0x0a992d191deec32afe36203ad87d7d289a738f81";
|
|
614
|
+
readonly confirmations: 65;
|
|
615
|
+
};
|
|
616
|
+
readonly v2: {
|
|
617
|
+
readonly type: "split";
|
|
618
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
619
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
620
|
+
readonly confirmations: 65;
|
|
621
|
+
readonly fastConfirmations: 1;
|
|
622
|
+
};
|
|
623
|
+
};
|
|
624
|
+
};
|
|
625
|
+
readonly kitContracts: {
|
|
626
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* Optimism Sepolia Testnet chain definition
|
|
632
|
+
* @remarks
|
|
633
|
+
* This represents the official test network for the Optimism blockchain on Sepolia.
|
|
634
|
+
*/
|
|
635
|
+
declare const OptimismSepolia: {
|
|
636
|
+
readonly type: "evm";
|
|
637
|
+
readonly chain: Blockchain.Optimism_Sepolia;
|
|
638
|
+
readonly name: "Optimism Sepolia";
|
|
639
|
+
readonly title: "Optimism Sepolia Testnet";
|
|
640
|
+
readonly nativeCurrency: {
|
|
641
|
+
readonly name: "Sepolia Ether";
|
|
642
|
+
readonly symbol: "ETH";
|
|
643
|
+
readonly decimals: 18;
|
|
644
|
+
};
|
|
645
|
+
readonly chainId: 11155420;
|
|
646
|
+
readonly isTestnet: true;
|
|
647
|
+
readonly explorerUrl: "https://sepolia-optimistic.etherscan.io/tx/{hash}";
|
|
648
|
+
readonly rpcEndpoints: readonly ["https://sepolia.optimism.io"];
|
|
649
|
+
readonly eurcAddress: null;
|
|
650
|
+
readonly usdcAddress: "0x5fd84259d66Cd46123540766Be93DFE6D43130D7";
|
|
651
|
+
readonly cctp: {
|
|
652
|
+
readonly domain: 2;
|
|
653
|
+
readonly contracts: {
|
|
654
|
+
readonly v1: {
|
|
655
|
+
readonly type: "split";
|
|
656
|
+
readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
|
|
657
|
+
readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
|
|
658
|
+
readonly confirmations: 65;
|
|
659
|
+
};
|
|
660
|
+
readonly v2: {
|
|
661
|
+
readonly type: "split";
|
|
662
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
663
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
664
|
+
readonly confirmations: 65;
|
|
665
|
+
readonly fastConfirmations: 1;
|
|
666
|
+
};
|
|
667
|
+
};
|
|
668
|
+
};
|
|
669
|
+
readonly kitContracts: {
|
|
670
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* Polygon Mainnet chain definition
|
|
676
|
+
* @remarks
|
|
677
|
+
* This represents the official production network for the Polygon blockchain.
|
|
678
|
+
*/
|
|
679
|
+
declare const Polygon: {
|
|
680
|
+
readonly type: "evm";
|
|
681
|
+
readonly chain: Blockchain.Polygon;
|
|
682
|
+
readonly name: "Polygon";
|
|
683
|
+
readonly title: "Polygon Mainnet";
|
|
684
|
+
readonly nativeCurrency: {
|
|
685
|
+
readonly name: "POL";
|
|
686
|
+
readonly symbol: "POL";
|
|
687
|
+
readonly decimals: 18;
|
|
688
|
+
};
|
|
689
|
+
readonly chainId: 137;
|
|
690
|
+
readonly isTestnet: false;
|
|
691
|
+
readonly explorerUrl: "https://polygonscan.com/tx/{hash}";
|
|
692
|
+
readonly rpcEndpoints: readonly ["https://polygon-rpc.com", "https://polygon.publicnode.com"];
|
|
693
|
+
readonly eurcAddress: null;
|
|
694
|
+
readonly usdcAddress: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
|
|
695
|
+
readonly cctp: {
|
|
696
|
+
readonly domain: 7;
|
|
697
|
+
readonly contracts: {
|
|
698
|
+
readonly v1: {
|
|
699
|
+
readonly type: "split";
|
|
700
|
+
readonly tokenMessenger: "0x9daF8c91AEFAE50b9c0E69629D3F6Ca40cA3B3FE";
|
|
701
|
+
readonly messageTransmitter: "0xF3be9355363857F3e001be68856A2f96b4C39Ba9";
|
|
702
|
+
readonly confirmations: 200;
|
|
703
|
+
};
|
|
704
|
+
readonly v2: {
|
|
705
|
+
readonly type: "split";
|
|
706
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
707
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
708
|
+
readonly confirmations: 33;
|
|
709
|
+
readonly fastConfirmations: 13;
|
|
710
|
+
};
|
|
711
|
+
};
|
|
712
|
+
};
|
|
713
|
+
readonly kitContracts: {
|
|
714
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
715
|
+
};
|
|
716
|
+
};
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* Polygon Amoy Testnet chain definition
|
|
720
|
+
* @remarks
|
|
721
|
+
* This represents the official test network for the Polygon blockchain.
|
|
722
|
+
*/
|
|
723
|
+
declare const PolygonAmoy: {
|
|
724
|
+
readonly type: "evm";
|
|
725
|
+
readonly chain: Blockchain.Polygon_Amoy_Testnet;
|
|
726
|
+
readonly name: "Polygon Amoy";
|
|
727
|
+
readonly title: "Polygon Amoy Testnet";
|
|
728
|
+
readonly nativeCurrency: {
|
|
729
|
+
readonly name: "POL";
|
|
730
|
+
readonly symbol: "POL";
|
|
731
|
+
readonly decimals: 18;
|
|
732
|
+
};
|
|
733
|
+
readonly chainId: 80002;
|
|
734
|
+
readonly isTestnet: true;
|
|
735
|
+
readonly explorerUrl: "https://amoy.polygonscan.com/tx/{hash}";
|
|
736
|
+
readonly rpcEndpoints: readonly ["https://rpc-amoy.polygon.technology"];
|
|
737
|
+
readonly eurcAddress: null;
|
|
738
|
+
readonly usdcAddress: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
|
|
739
|
+
readonly cctp: {
|
|
740
|
+
readonly domain: 7;
|
|
741
|
+
readonly contracts: {
|
|
742
|
+
readonly v1: {
|
|
743
|
+
readonly type: "split";
|
|
744
|
+
readonly tokenMessenger: "0x9f3B8679c73C2Fef8b59B4f3444d4e156fb70AA5";
|
|
745
|
+
readonly messageTransmitter: "0x7865fAfC2db2093669d92c0F33AeEF291086BEFD";
|
|
746
|
+
readonly confirmations: 200;
|
|
747
|
+
};
|
|
748
|
+
readonly v2: {
|
|
749
|
+
readonly type: "split";
|
|
750
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
751
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
752
|
+
readonly confirmations: 33;
|
|
753
|
+
readonly fastConfirmations: 13;
|
|
754
|
+
};
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
readonly kitContracts: {
|
|
758
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
759
|
+
};
|
|
760
|
+
};
|
|
761
|
+
|
|
762
|
+
/**
|
|
763
|
+
* Sonic Mainnet chain definition
|
|
764
|
+
* @remarks
|
|
765
|
+
* This represents the official production network for the Sonic blockchain.
|
|
766
|
+
*/
|
|
767
|
+
declare const Sonic: {
|
|
768
|
+
readonly type: "evm";
|
|
769
|
+
readonly chain: Blockchain.Sonic;
|
|
770
|
+
readonly name: "Sonic";
|
|
771
|
+
readonly title: "Sonic Mainnet";
|
|
772
|
+
readonly nativeCurrency: {
|
|
773
|
+
readonly name: "Sonic";
|
|
774
|
+
readonly symbol: "S";
|
|
775
|
+
readonly decimals: 18;
|
|
776
|
+
};
|
|
777
|
+
readonly chainId: 146;
|
|
778
|
+
readonly isTestnet: false;
|
|
779
|
+
readonly explorerUrl: "https://sonicscan.org/tx/{hash}";
|
|
780
|
+
readonly rpcEndpoints: readonly ["https://rpc.soniclabs.com"];
|
|
781
|
+
readonly eurcAddress: null;
|
|
782
|
+
readonly usdcAddress: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894";
|
|
783
|
+
readonly cctp: {
|
|
784
|
+
readonly domain: 13;
|
|
785
|
+
readonly contracts: {
|
|
786
|
+
readonly v2: {
|
|
787
|
+
readonly type: "split";
|
|
788
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
789
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
790
|
+
readonly confirmations: 1;
|
|
791
|
+
readonly fastConfirmations: 1;
|
|
792
|
+
};
|
|
793
|
+
};
|
|
794
|
+
};
|
|
795
|
+
readonly kitContracts: {
|
|
796
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
797
|
+
};
|
|
798
|
+
};
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* Sonic Blaze Testnet chain definition
|
|
802
|
+
* @remarks
|
|
803
|
+
* This represents the official test network for the Sonic blockchain.
|
|
804
|
+
*/
|
|
805
|
+
declare const SonicTestnet: {
|
|
806
|
+
readonly type: "evm";
|
|
807
|
+
readonly chain: Blockchain.Sonic_Testnet;
|
|
808
|
+
readonly name: "Sonic Blaze Testnet";
|
|
809
|
+
readonly title: "Sonic Blaze Testnet";
|
|
810
|
+
readonly nativeCurrency: {
|
|
811
|
+
readonly name: "Sonic";
|
|
812
|
+
readonly symbol: "S";
|
|
813
|
+
readonly decimals: 18;
|
|
814
|
+
};
|
|
815
|
+
readonly chainId: 57054;
|
|
816
|
+
readonly isTestnet: true;
|
|
817
|
+
readonly explorerUrl: "https://testnet.sonicscan.org/tx/{hash}";
|
|
818
|
+
readonly rpcEndpoints: readonly ["https://rpc.blaze.soniclabs.com"];
|
|
819
|
+
readonly eurcAddress: null;
|
|
820
|
+
readonly usdcAddress: "0xA4879Fed32Ecbef99399e5cbC247E533421C4eC6";
|
|
821
|
+
readonly cctp: {
|
|
822
|
+
readonly domain: 13;
|
|
823
|
+
readonly contracts: {
|
|
824
|
+
readonly v2: {
|
|
825
|
+
readonly type: "split";
|
|
826
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
827
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
828
|
+
readonly confirmations: 1;
|
|
829
|
+
readonly fastConfirmations: 1;
|
|
830
|
+
};
|
|
831
|
+
};
|
|
832
|
+
};
|
|
833
|
+
readonly kitContracts: {
|
|
834
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
835
|
+
};
|
|
836
|
+
};
|
|
837
|
+
|
|
838
|
+
/**
|
|
839
|
+
* Solana Mainnet chain definition
|
|
840
|
+
* @remarks
|
|
841
|
+
* This represents the official production network for the Solana blockchain.
|
|
842
|
+
*/
|
|
843
|
+
declare const Solana: {
|
|
844
|
+
readonly type: "solana";
|
|
845
|
+
readonly chain: Blockchain.Solana;
|
|
846
|
+
readonly name: "Solana";
|
|
847
|
+
readonly title: "Solana Mainnet";
|
|
848
|
+
readonly nativeCurrency: {
|
|
849
|
+
readonly name: "Solana";
|
|
850
|
+
readonly symbol: "SOL";
|
|
851
|
+
readonly decimals: 9;
|
|
852
|
+
};
|
|
853
|
+
readonly isTestnet: false;
|
|
854
|
+
readonly explorerUrl: "https://solscan.io/tx/{hash}";
|
|
855
|
+
readonly rpcEndpoints: readonly ["https://api.mainnet-beta.solana.com"];
|
|
856
|
+
readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
|
|
857
|
+
readonly usdcAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
|
|
858
|
+
readonly cctp: {
|
|
859
|
+
readonly domain: 5;
|
|
860
|
+
readonly contracts: {
|
|
861
|
+
readonly v1: {
|
|
862
|
+
readonly type: "split";
|
|
863
|
+
readonly tokenMessenger: "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3";
|
|
864
|
+
readonly messageTransmitter: "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd";
|
|
865
|
+
readonly confirmations: 32;
|
|
866
|
+
};
|
|
867
|
+
readonly v2: {
|
|
868
|
+
readonly type: "split";
|
|
869
|
+
readonly tokenMessenger: "CCTPV2vPZJS2u2BBsUoscuikbYjnpFmbFsvVuJdgUMQe";
|
|
870
|
+
readonly messageTransmitter: "CCTPV2Sm4AdWt5296sk4P66VBZ7bEhcARwFaaS9YPbeC";
|
|
871
|
+
readonly confirmations: 32;
|
|
872
|
+
readonly fastConfirmations: 3;
|
|
873
|
+
};
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
readonly kitContracts: {
|
|
877
|
+
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
878
|
+
};
|
|
879
|
+
};
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* Solana Devnet chain definition
|
|
883
|
+
* @remarks
|
|
884
|
+
* This represents the development test network for the Solana blockchain.
|
|
885
|
+
*/
|
|
886
|
+
declare const SolanaDevnet: {
|
|
887
|
+
readonly type: "solana";
|
|
888
|
+
readonly chain: Blockchain.Solana_Devnet;
|
|
889
|
+
readonly name: "Solana Devnet";
|
|
890
|
+
readonly title: "Solana Development Network";
|
|
891
|
+
readonly nativeCurrency: {
|
|
892
|
+
readonly name: "Solana";
|
|
893
|
+
readonly symbol: "SOL";
|
|
894
|
+
readonly decimals: 9;
|
|
895
|
+
};
|
|
896
|
+
readonly isTestnet: true;
|
|
897
|
+
readonly explorerUrl: "https://solscan.io/tx/{hash}?cluster=devnet";
|
|
898
|
+
readonly eurcAddress: "HzwqbKZw8HxMN6bF2yFZNrht3c2iXXzpKcFu7uBEDKtr";
|
|
899
|
+
readonly usdcAddress: "4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU";
|
|
900
|
+
readonly cctp: {
|
|
901
|
+
readonly domain: 5;
|
|
902
|
+
readonly contracts: {
|
|
903
|
+
readonly v1: {
|
|
904
|
+
readonly type: "split";
|
|
905
|
+
readonly tokenMessenger: "CCTPiPYPc6AsJuwueEnWgSgucamXDZwBd53dQ11YiKX3";
|
|
906
|
+
readonly messageTransmitter: "CCTPmbSD7gX1bxKPAmg77w8oFzNFpaQiQUWD43TKaecd";
|
|
907
|
+
readonly confirmations: 32;
|
|
908
|
+
};
|
|
909
|
+
readonly v2: {
|
|
910
|
+
readonly type: "split";
|
|
911
|
+
readonly tokenMessenger: "CCTPV2vPZJS2u2BBsUoscuikbYjnpFmbFsvVuJdgUMQe";
|
|
912
|
+
readonly messageTransmitter: "CCTPV2Sm4AdWt5296sk4P66VBZ7bEhcARwFaaS9YPbeC";
|
|
913
|
+
readonly confirmations: 32;
|
|
914
|
+
readonly fastConfirmations: 3;
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
};
|
|
918
|
+
readonly kitContracts: {
|
|
919
|
+
readonly bridge: "DFaauJEjmiHkPs1JG89A4p95hDWi9m9SAEERY1LQJiC3";
|
|
920
|
+
};
|
|
921
|
+
readonly rpcEndpoints: readonly ["https://api.devnet.solana.com"];
|
|
922
|
+
};
|
|
923
|
+
|
|
924
|
+
/**
|
|
925
|
+
* Unichain Mainnet chain definition
|
|
926
|
+
* @remarks
|
|
927
|
+
* This represents the official production network for the Unichain blockchain.
|
|
928
|
+
*/
|
|
929
|
+
declare const Unichain: {
|
|
930
|
+
readonly type: "evm";
|
|
931
|
+
readonly chain: Blockchain.Unichain;
|
|
932
|
+
readonly name: "Unichain";
|
|
933
|
+
readonly title: "Unichain Mainnet";
|
|
934
|
+
readonly nativeCurrency: {
|
|
935
|
+
readonly name: "Uni";
|
|
936
|
+
readonly symbol: "UNI";
|
|
937
|
+
readonly decimals: 18;
|
|
938
|
+
};
|
|
939
|
+
readonly chainId: 130;
|
|
940
|
+
readonly isTestnet: false;
|
|
941
|
+
readonly explorerUrl: "https://unichain.blockscout.com/tx/{hash}";
|
|
942
|
+
readonly rpcEndpoints: readonly ["https://rpc.unichain.org", "https://mainnet.unichain.org"];
|
|
943
|
+
readonly eurcAddress: null;
|
|
944
|
+
readonly usdcAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
945
|
+
readonly cctp: {
|
|
946
|
+
readonly domain: 10;
|
|
947
|
+
readonly contracts: {
|
|
948
|
+
readonly v1: {
|
|
949
|
+
readonly type: "split";
|
|
950
|
+
readonly tokenMessenger: "0x4e744b28E787c3aD0e810eD65A24461D4ac5a762";
|
|
951
|
+
readonly messageTransmitter: "0x353bE9E2E38AB1D19104534e4edC21c643Df86f4";
|
|
952
|
+
readonly confirmations: 65;
|
|
953
|
+
};
|
|
954
|
+
readonly v2: {
|
|
955
|
+
readonly type: "split";
|
|
956
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cf5d";
|
|
957
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
958
|
+
readonly confirmations: 65;
|
|
959
|
+
readonly fastConfirmations: 1;
|
|
960
|
+
};
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
readonly kitContracts: {
|
|
964
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
965
|
+
};
|
|
966
|
+
};
|
|
967
|
+
|
|
968
|
+
/**
|
|
969
|
+
* Unichain Sepolia Testnet chain definition
|
|
970
|
+
* @remarks
|
|
971
|
+
* This represents the official test network for the Unichain blockchain.
|
|
972
|
+
*/
|
|
973
|
+
declare const UnichainSepolia: {
|
|
974
|
+
readonly type: "evm";
|
|
975
|
+
readonly chain: Blockchain.Unichain_Sepolia;
|
|
976
|
+
readonly name: "Unichain Sepolia";
|
|
977
|
+
readonly title: "Unichain Sepolia Testnet";
|
|
978
|
+
readonly nativeCurrency: {
|
|
979
|
+
readonly name: "Sepolia Uni";
|
|
980
|
+
readonly symbol: "UNI";
|
|
981
|
+
readonly decimals: 18;
|
|
982
|
+
};
|
|
983
|
+
readonly chainId: 1301;
|
|
984
|
+
readonly isTestnet: true;
|
|
985
|
+
readonly explorerUrl: "https://unichain-sepolia.blockscout.com/tx/{hash}";
|
|
986
|
+
readonly rpcEndpoints: readonly ["https://sepolia.unichain.org"];
|
|
987
|
+
readonly eurcAddress: null;
|
|
988
|
+
readonly usdcAddress: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
|
|
989
|
+
readonly cctp: {
|
|
990
|
+
readonly domain: 10;
|
|
991
|
+
readonly contracts: {
|
|
992
|
+
readonly v1: {
|
|
993
|
+
readonly type: "split";
|
|
994
|
+
readonly tokenMessenger: "0x8ed94B8dAd2Dc5453862ea5e316A8e71AAed9782";
|
|
995
|
+
readonly messageTransmitter: "0xbc498c326533d675cf571B90A2Ced265ACb7d086";
|
|
996
|
+
readonly confirmations: 65;
|
|
997
|
+
};
|
|
998
|
+
readonly v2: {
|
|
999
|
+
readonly type: "split";
|
|
1000
|
+
readonly tokenMessenger: "0x8FE6B999Dc680CcFDD5Bf7EB0974218be2542DAA";
|
|
1001
|
+
readonly messageTransmitter: "0xE737e5cEBEEBa77EFE34D4aa090756590b1CE275";
|
|
1002
|
+
readonly confirmations: 65;
|
|
1003
|
+
readonly fastConfirmations: 1;
|
|
1004
|
+
};
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
1007
|
+
readonly kitContracts: {
|
|
1008
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1009
|
+
};
|
|
1010
|
+
};
|
|
1011
|
+
|
|
1012
|
+
/**
|
|
1013
|
+
* World Chain chain definition
|
|
1014
|
+
* @remarks
|
|
1015
|
+
* This represents the main network for the World Chain blockchain.
|
|
1016
|
+
*/
|
|
1017
|
+
declare const WorldChain: {
|
|
1018
|
+
readonly type: "evm";
|
|
1019
|
+
readonly chain: Blockchain.World_Chain;
|
|
1020
|
+
readonly name: "World Chain";
|
|
1021
|
+
readonly title: "World Chain";
|
|
1022
|
+
readonly nativeCurrency: {
|
|
1023
|
+
readonly name: "Ether";
|
|
1024
|
+
readonly symbol: "ETH";
|
|
1025
|
+
readonly decimals: 18;
|
|
1026
|
+
};
|
|
1027
|
+
readonly chainId: 480;
|
|
1028
|
+
readonly isTestnet: false;
|
|
1029
|
+
readonly explorerUrl: "https://worldscan.org/tx/{hash}";
|
|
1030
|
+
readonly rpcEndpoints: readonly ["https://worldchain-mainnet.g.alchemy.com/public"];
|
|
1031
|
+
readonly eurcAddress: null;
|
|
1032
|
+
readonly usdcAddress: "0x79A02482A880bCe3F13E09da970dC34dB4cD24D1";
|
|
1033
|
+
readonly cctp: {
|
|
1034
|
+
readonly domain: 14;
|
|
1035
|
+
readonly contracts: {
|
|
1036
|
+
readonly v2: {
|
|
1037
|
+
readonly type: "split";
|
|
1038
|
+
readonly tokenMessenger: "0x28b5a0e9C621a5BadaA536219b3a228C8168cF5d";
|
|
1039
|
+
readonly messageTransmitter: "0x81D40F21F12A8F0E3252Bccb954D722d4c464B64";
|
|
1040
|
+
readonly confirmations: 65;
|
|
1041
|
+
readonly fastConfirmations: 1;
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
readonly kitContracts: {
|
|
1046
|
+
readonly bridge: "0xB3FA262d0fB521cc93bE83d87b322b8A23DAf3F0";
|
|
1047
|
+
};
|
|
1048
|
+
};
|
|
1049
|
+
|
|
1050
|
+
/**
|
|
1051
|
+
* World Chain Sepolia chain definition
|
|
1052
|
+
* @remarks
|
|
1053
|
+
* This represents the test network for the World Chain blockchain.
|
|
1054
|
+
*/
|
|
1055
|
+
declare const WorldChainSepolia: {
|
|
1056
|
+
readonly type: "evm";
|
|
1057
|
+
readonly chain: Blockchain.World_Chain_Sepolia;
|
|
1058
|
+
readonly name: "World Chain Sepolia";
|
|
1059
|
+
readonly title: "World Chain Sepolia";
|
|
1060
|
+
readonly nativeCurrency: {
|
|
1061
|
+
readonly name: "Ether";
|
|
1062
|
+
readonly symbol: "ETH";
|
|
1063
|
+
readonly decimals: 18;
|
|
1064
|
+
};
|
|
1065
|
+
readonly chainId: 4801;
|
|
1066
|
+
readonly isTestnet: true;
|
|
1067
|
+
readonly explorerUrl: "https://sepolia.worldscan.org/tx/{hash}";
|
|
1068
|
+
readonly rpcEndpoints: readonly ["https://worldchain-sepolia.drpc.org", "https://worldchain-sepolia.g.alchemy.com/public"];
|
|
1069
|
+
readonly eurcAddress: null;
|
|
1070
|
+
readonly usdcAddress: "0x66145f38cBAC35Ca6F1Dfb4914dF98F1614aeA88";
|
|
1071
|
+
readonly cctp: {
|
|
1072
|
+
readonly domain: 14;
|
|
1073
|
+
readonly contracts: {
|
|
1074
|
+
readonly v2: {
|
|
1075
|
+
readonly type: "split";
|
|
1076
|
+
readonly tokenMessenger: "0x8fe6b999dc680ccfdd5bf7eb0974218be2542daa";
|
|
1077
|
+
readonly messageTransmitter: "0xe737e5cebeeba77efe34d4aa090756590b1ce275";
|
|
1078
|
+
readonly confirmations: 65;
|
|
1079
|
+
readonly fastConfirmations: 1;
|
|
1080
|
+
};
|
|
1081
|
+
};
|
|
1082
|
+
};
|
|
1083
|
+
readonly kitContracts: {
|
|
1084
|
+
readonly bridge: "0xC5567a5E3370d4DBfB0540025078e283e36A363d";
|
|
1085
|
+
};
|
|
1086
|
+
};
|
|
1087
|
+
|
|
1088
|
+
export { Arbitrum, ArbitrumSepolia, Avalanche, AvalancheFuji, Base, BaseSepolia, Codex, CodexTestnet, Ethereum, EthereumSepolia, Linea, LineaSepolia, Optimism, OptimismSepolia, Polygon, PolygonAmoy, Solana, SolanaDevnet, Sonic, SonicTestnet, Unichain, UnichainSepolia, WorldChain, WorldChainSepolia };
|