@gardenfi/orderbook 2.5.3-beta.2 → 2.5.3-beta.20
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/dist/index.cjs +1 -1
- package/dist/index.js +25 -21
- package/dist/index10.cjs +1 -0
- package/dist/index10.js +188 -0
- package/dist/index11.cjs +1 -0
- package/dist/index11.js +219 -0
- package/dist/index12.cjs +1 -0
- package/dist/index12.js +31 -0
- package/dist/index4.cjs +1 -1
- package/dist/index4.js +700 -292
- package/dist/index7.cjs +1 -1
- package/dist/index7.js +4 -4
- package/dist/src/index.d.ts +5 -1
- package/dist/src/lib/assetManager/AssetManager.d.ts +82 -0
- package/dist/src/lib/assetManager/index.d.ts +2 -0
- package/dist/src/lib/assetManager/routeValidator/routeValidator.d.ts +76 -0
- package/dist/src/lib/assetManager/types.d.ts +39 -0
- package/dist/src/lib/assetManager/utils.d.ts +9 -0
- package/dist/src/lib/constants/asset.d.ts +1271 -455
- package/dist/src/lib/constants/asset.types.d.ts +15 -9
- package/dist/src/lib/orderbook/orderbook.types.d.ts +7 -1
- package/package.json +4 -3
|
@@ -91,132 +91,235 @@ export declare const Config: {
|
|
|
91
91
|
readonly type: BlockchainType.solana;
|
|
92
92
|
readonly network: Network.TESTNET;
|
|
93
93
|
readonly SOL: {
|
|
94
|
+
readonly id: "solana_testnet:sol";
|
|
94
95
|
readonly name: "Solana";
|
|
95
|
-
readonly decimals: 9;
|
|
96
96
|
readonly symbol: "SOL";
|
|
97
|
-
readonly
|
|
98
|
-
readonly
|
|
99
|
-
readonly
|
|
97
|
+
readonly decimals: 9;
|
|
98
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/solana.png";
|
|
99
|
+
readonly chain: "solana:103";
|
|
100
|
+
readonly htlc: {
|
|
101
|
+
readonly address: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF";
|
|
102
|
+
readonly schema: "solana:htlc";
|
|
103
|
+
};
|
|
104
|
+
readonly token: null;
|
|
100
105
|
};
|
|
101
106
|
readonly USDC: {
|
|
107
|
+
readonly id: "solana_testnet:usdc";
|
|
102
108
|
readonly name: "USD Coin";
|
|
103
|
-
readonly decimals: 6;
|
|
104
109
|
readonly symbol: "USDC";
|
|
105
|
-
readonly
|
|
106
|
-
readonly
|
|
107
|
-
readonly
|
|
110
|
+
readonly decimals: 6;
|
|
111
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
112
|
+
readonly chain: "solana:103";
|
|
113
|
+
readonly htlc: {
|
|
114
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
115
|
+
readonly schema: "solana:htlc_spltoken";
|
|
116
|
+
};
|
|
117
|
+
readonly token: {
|
|
118
|
+
readonly address: "5JbWjyLdYKTuykpq2itWbdRcZkhK3hs6fiH62pkmLYZi";
|
|
119
|
+
readonly schema: null;
|
|
120
|
+
};
|
|
108
121
|
};
|
|
109
122
|
readonly cbBTC: {
|
|
123
|
+
readonly id: "solana_testnet:cbbtc";
|
|
110
124
|
readonly name: "Coinbase Wrapped Bitcoin";
|
|
111
|
-
readonly decimals: 8;
|
|
112
125
|
readonly symbol: "cbBTC";
|
|
113
|
-
readonly
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
126
|
+
readonly decimals: 8;
|
|
127
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
128
|
+
readonly chain: "solana:103";
|
|
129
|
+
readonly htlc: {
|
|
130
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
131
|
+
readonly schema: "solana:htlc_spltoken";
|
|
132
|
+
};
|
|
133
|
+
readonly token: {
|
|
134
|
+
readonly address: "CL8C4gsaEQyWPxL4Zn7dcnZ8LKvPYqHmv4ipMax4cDUL";
|
|
135
|
+
readonly schema: null;
|
|
136
|
+
};
|
|
116
137
|
};
|
|
117
138
|
};
|
|
118
139
|
readonly bitcoin_testnet: {
|
|
119
140
|
readonly type: BlockchainType.bitcoin;
|
|
120
141
|
readonly network: Network.TESTNET;
|
|
121
142
|
readonly BTC: {
|
|
143
|
+
readonly id: "bitcoin_testnet:btc";
|
|
122
144
|
readonly name: "Bitcoin";
|
|
123
|
-
readonly decimals: 8;
|
|
124
145
|
readonly symbol: "BTC";
|
|
125
|
-
readonly
|
|
126
|
-
readonly
|
|
127
|
-
readonly
|
|
146
|
+
readonly decimals: 8;
|
|
147
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
148
|
+
readonly chain: "bitcoin";
|
|
149
|
+
readonly htlc: null;
|
|
150
|
+
readonly token: null;
|
|
128
151
|
};
|
|
129
152
|
};
|
|
130
153
|
readonly ethereum_sepolia: {
|
|
131
154
|
readonly type: BlockchainType.evm;
|
|
132
155
|
readonly network: Network.TESTNET;
|
|
133
156
|
readonly WBTC: {
|
|
157
|
+
readonly id: "ethereum_sepolia:wbtc";
|
|
134
158
|
readonly name: "Wrapped Bitcoin";
|
|
135
|
-
readonly decimals: 8;
|
|
136
159
|
readonly symbol: "WBTC";
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
160
|
+
readonly decimals: 8;
|
|
161
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
162
|
+
readonly chain: "evm:11155111";
|
|
163
|
+
readonly htlc: {
|
|
164
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
165
|
+
readonly schema: "evm:htlc_erc20";
|
|
166
|
+
};
|
|
167
|
+
readonly token: {
|
|
168
|
+
readonly address: "0xE918A5a47b8e0AFAC2382bC5D1e981613e63fB07";
|
|
169
|
+
readonly schema: "evm:erc20";
|
|
170
|
+
};
|
|
140
171
|
};
|
|
141
172
|
readonly USDC: {
|
|
173
|
+
readonly id: "ethereum_sepolia:usdc";
|
|
142
174
|
readonly name: "USD Coin";
|
|
143
|
-
readonly decimals: 6;
|
|
144
175
|
readonly symbol: "USDC";
|
|
145
|
-
readonly
|
|
146
|
-
readonly
|
|
147
|
-
readonly
|
|
176
|
+
readonly decimals: 6;
|
|
177
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
178
|
+
readonly chain: "evm:11155111";
|
|
179
|
+
readonly htlc: {
|
|
180
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
181
|
+
readonly schema: "evm:htlc_erc20";
|
|
182
|
+
};
|
|
183
|
+
readonly token: {
|
|
184
|
+
readonly address: "0xadDD620EA6D20f4f9c24fff3BC039E497ceBEDc2";
|
|
185
|
+
readonly schema: "evm:erc20";
|
|
186
|
+
};
|
|
148
187
|
};
|
|
149
188
|
};
|
|
150
189
|
readonly arbitrum_sepolia: {
|
|
151
190
|
readonly type: BlockchainType.evm;
|
|
152
191
|
readonly network: Network.TESTNET;
|
|
153
192
|
readonly iBTC: {
|
|
193
|
+
readonly id: "arbitrum_sepolia:ibtc";
|
|
154
194
|
readonly name: "iBTC";
|
|
155
|
-
readonly decimals: 8;
|
|
156
195
|
readonly symbol: "iBTC";
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
159
|
-
readonly
|
|
196
|
+
readonly decimals: 8;
|
|
197
|
+
readonly icon: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
|
|
198
|
+
readonly chain: "evm:421614";
|
|
199
|
+
readonly htlc: {
|
|
200
|
+
readonly address: "0x7e8c18fa79bd4014cfCf49294Bf315139eD39f45";
|
|
201
|
+
readonly schema: "evm:htlc_erc20";
|
|
202
|
+
};
|
|
203
|
+
readonly token: {
|
|
204
|
+
readonly address: "0x685437f025c5f33A94818408C286bc1F023201Fc";
|
|
205
|
+
readonly schema: "evm:erc20";
|
|
206
|
+
};
|
|
160
207
|
};
|
|
161
208
|
readonly WBTC: {
|
|
209
|
+
readonly id: "arbitrum_sepolia:wbtc";
|
|
162
210
|
readonly name: "Wrapped Bitcoin";
|
|
163
|
-
readonly decimals: 8;
|
|
164
211
|
readonly symbol: "WBTC";
|
|
165
|
-
readonly
|
|
166
|
-
readonly
|
|
167
|
-
readonly
|
|
212
|
+
readonly decimals: 8;
|
|
213
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
214
|
+
readonly chain: "evm:421614";
|
|
215
|
+
readonly htlc: {
|
|
216
|
+
readonly address: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
|
|
217
|
+
readonly schema: "evm:htlc_erc20";
|
|
218
|
+
};
|
|
219
|
+
readonly token: {
|
|
220
|
+
readonly address: "0x1c287717c886794ac9f5DF3987195431Ceb3456E";
|
|
221
|
+
readonly schema: "evm:erc20";
|
|
222
|
+
};
|
|
168
223
|
};
|
|
169
224
|
readonly USDC: {
|
|
225
|
+
readonly id: "arbitrum_sepolia:usdc";
|
|
170
226
|
readonly name: "USD Coin";
|
|
171
|
-
readonly decimals: 6;
|
|
172
227
|
readonly symbol: "USDC";
|
|
173
|
-
readonly
|
|
174
|
-
readonly
|
|
175
|
-
readonly
|
|
228
|
+
readonly decimals: 6;
|
|
229
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
230
|
+
readonly chain: "evm:421614";
|
|
231
|
+
readonly htlc: {
|
|
232
|
+
readonly address: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
|
|
233
|
+
readonly schema: "evm:htlc_erc20";
|
|
234
|
+
};
|
|
235
|
+
readonly token: {
|
|
236
|
+
readonly address: "0xC90Ad772eCc10a52a681ceDAE6EbBD3470A0c829";
|
|
237
|
+
readonly schema: "evm:erc20";
|
|
238
|
+
};
|
|
176
239
|
};
|
|
177
240
|
readonly SEED: {
|
|
241
|
+
readonly id: "arbitrum_sepolia:seed";
|
|
178
242
|
readonly name: "Seed";
|
|
179
|
-
readonly decimals: 18;
|
|
180
243
|
readonly symbol: "SEED";
|
|
181
|
-
readonly
|
|
182
|
-
readonly
|
|
183
|
-
readonly
|
|
244
|
+
readonly decimals: 18;
|
|
245
|
+
readonly icon: "https://garden.imgix.net/token-images/SEED.svg";
|
|
246
|
+
readonly chain: "evm:421614";
|
|
247
|
+
readonly htlc: {
|
|
248
|
+
readonly address: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
|
|
249
|
+
readonly schema: "evm:htlc_erc20";
|
|
250
|
+
};
|
|
251
|
+
readonly token: {
|
|
252
|
+
readonly address: "0x432B43764548c3E47eA65aAdeB91D75C84DBcC2c";
|
|
253
|
+
readonly schema: "evm:erc20";
|
|
254
|
+
};
|
|
184
255
|
};
|
|
185
256
|
};
|
|
186
257
|
readonly base_sepolia: {
|
|
187
258
|
readonly type: BlockchainType.evm;
|
|
188
259
|
readonly network: Network.TESTNET;
|
|
189
260
|
readonly iBTC: {
|
|
261
|
+
readonly id: "base_sepolia:ibtc";
|
|
190
262
|
readonly name: "iBTC";
|
|
191
|
-
readonly decimals: 8;
|
|
192
263
|
readonly symbol: "iBTC";
|
|
193
|
-
readonly
|
|
194
|
-
readonly
|
|
195
|
-
readonly
|
|
264
|
+
readonly decimals: 8;
|
|
265
|
+
readonly icon: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
|
|
266
|
+
readonly chain: "evm:84532";
|
|
267
|
+
readonly htlc: {
|
|
268
|
+
readonly address: "0x46F1Ba9C9d89C34F9dbC4085F6B1f9965c589ca1";
|
|
269
|
+
readonly schema: "evm:htlc_erc20";
|
|
270
|
+
};
|
|
271
|
+
readonly token: {
|
|
272
|
+
readonly address: "0x0b0D554D9573bAe1a7556d220847f45182918B28";
|
|
273
|
+
readonly schema: "evm:erc20";
|
|
274
|
+
};
|
|
196
275
|
};
|
|
197
276
|
readonly WBTC: {
|
|
277
|
+
readonly id: "base_sepolia:wbtc";
|
|
198
278
|
readonly name: "Wrapped Bitcoin";
|
|
199
|
-
readonly decimals: 8;
|
|
200
279
|
readonly symbol: "WBTC";
|
|
201
|
-
readonly
|
|
202
|
-
readonly
|
|
203
|
-
readonly
|
|
280
|
+
readonly decimals: 8;
|
|
281
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
282
|
+
readonly chain: "evm:84532";
|
|
283
|
+
readonly htlc: {
|
|
284
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
285
|
+
readonly schema: "evm:htlc_erc20";
|
|
286
|
+
};
|
|
287
|
+
readonly token: {
|
|
288
|
+
readonly address: "0xD8a6E3FCA403d79b6AD6216b60527F51cc967D39";
|
|
289
|
+
readonly schema: "evm:erc20";
|
|
290
|
+
};
|
|
204
291
|
};
|
|
205
292
|
readonly USDT: {
|
|
293
|
+
readonly id: "base_sepolia:usdt";
|
|
206
294
|
readonly name: "Tether USD";
|
|
207
|
-
readonly decimals: 6;
|
|
208
295
|
readonly symbol: "USDT";
|
|
209
|
-
readonly
|
|
210
|
-
readonly
|
|
211
|
-
readonly
|
|
296
|
+
readonly decimals: 6;
|
|
297
|
+
readonly icon: "https://garden.imgix.net/token-images/usdt.svg";
|
|
298
|
+
readonly chain: "evm:84532";
|
|
299
|
+
readonly htlc: {
|
|
300
|
+
readonly address: "0x917cfef972d667dC0FeC76806cB5623585B81493";
|
|
301
|
+
readonly schema: "evm:htlc_erc20";
|
|
302
|
+
};
|
|
303
|
+
readonly token: {
|
|
304
|
+
readonly address: "0xeaE7721d779276eb0f5837e2fE260118724a2Ba4";
|
|
305
|
+
readonly schema: "evm:erc20";
|
|
306
|
+
};
|
|
212
307
|
};
|
|
213
308
|
readonly USDC: {
|
|
309
|
+
readonly id: "base_sepolia:usdc";
|
|
214
310
|
readonly name: "USD Coin";
|
|
215
|
-
readonly decimals: 6;
|
|
216
311
|
readonly symbol: "USDC";
|
|
217
|
-
readonly
|
|
218
|
-
readonly
|
|
219
|
-
readonly
|
|
312
|
+
readonly decimals: 6;
|
|
313
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
314
|
+
readonly chain: "evm:84532";
|
|
315
|
+
readonly htlc: {
|
|
316
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
317
|
+
readonly schema: "evm:htlc_erc20";
|
|
318
|
+
};
|
|
319
|
+
readonly token: {
|
|
320
|
+
readonly address: "0x1ac7A0ebf13a996D5915e212900bE2d074f94988";
|
|
321
|
+
readonly schema: "evm:erc20";
|
|
322
|
+
};
|
|
220
323
|
};
|
|
221
324
|
};
|
|
222
325
|
readonly bera_testnet: {
|
|
@@ -227,96 +330,173 @@ export declare const Config: {
|
|
|
227
330
|
readonly type: BlockchainType.evm;
|
|
228
331
|
readonly network: Network.TESTNET;
|
|
229
332
|
readonly WCBTC: {
|
|
333
|
+
readonly id: "citrea_testnet:wcbtc";
|
|
230
334
|
readonly name: "Wrapped Citrea Bitcoin";
|
|
231
|
-
readonly decimals: 18;
|
|
232
335
|
readonly symbol: "WCBTC";
|
|
233
|
-
readonly
|
|
234
|
-
readonly
|
|
235
|
-
readonly
|
|
336
|
+
readonly decimals: 18;
|
|
337
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
338
|
+
readonly chain: "evm:5115";
|
|
339
|
+
readonly htlc: {
|
|
340
|
+
readonly address: "0xD8e99df8cf77E7383c2f2a84bC6384b2DF88CAd3";
|
|
341
|
+
readonly schema: "evm:htlc_erc20";
|
|
342
|
+
};
|
|
343
|
+
readonly token: {
|
|
344
|
+
readonly address: "0x8d0c9d1c17aE5e40ffF9bE350f57840E9E66Cd93";
|
|
345
|
+
readonly schema: "evm:erc20";
|
|
346
|
+
};
|
|
236
347
|
};
|
|
237
348
|
readonly WBTC: {
|
|
349
|
+
readonly id: "citrea_testnet:wbtc";
|
|
238
350
|
readonly name: "Wrapped Bitcoin";
|
|
239
|
-
readonly decimals: 8;
|
|
240
351
|
readonly symbol: "WBTC";
|
|
241
|
-
readonly
|
|
242
|
-
readonly
|
|
243
|
-
readonly
|
|
352
|
+
readonly decimals: 8;
|
|
353
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
354
|
+
readonly chain: "evm:5115";
|
|
355
|
+
readonly htlc: {
|
|
356
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
357
|
+
readonly schema: "evm:htlc_erc20";
|
|
358
|
+
};
|
|
359
|
+
readonly token: {
|
|
360
|
+
readonly address: "0x3edA22460259b29433704dda71cc921F528165Ea";
|
|
361
|
+
readonly schema: "evm:erc20";
|
|
362
|
+
};
|
|
244
363
|
};
|
|
245
364
|
readonly CBTC: {
|
|
365
|
+
readonly id: "citrea_testnet:cbtc";
|
|
246
366
|
readonly name: "Citrea Bitcoin";
|
|
247
|
-
readonly decimals: 18;
|
|
248
367
|
readonly symbol: "CBTC";
|
|
249
|
-
readonly
|
|
250
|
-
readonly
|
|
251
|
-
readonly
|
|
368
|
+
readonly decimals: 18;
|
|
369
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
370
|
+
readonly chain: "evm:5115";
|
|
371
|
+
readonly htlc: {
|
|
372
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
373
|
+
readonly schema: "evm:htlc";
|
|
374
|
+
};
|
|
375
|
+
readonly token: null;
|
|
252
376
|
};
|
|
253
377
|
readonly CBBTC: {
|
|
254
|
-
readonly
|
|
255
|
-
readonly
|
|
378
|
+
readonly id: "citrea_testnet:cbbtc";
|
|
379
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
256
380
|
readonly symbol: "CBBTC";
|
|
257
|
-
readonly
|
|
258
|
-
readonly
|
|
259
|
-
readonly
|
|
381
|
+
readonly decimals: 8;
|
|
382
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
383
|
+
readonly chain: "evm:5115";
|
|
384
|
+
readonly htlc: {
|
|
385
|
+
readonly address: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
|
|
386
|
+
readonly schema: "evm:htlc_erc20";
|
|
387
|
+
};
|
|
388
|
+
readonly token: {
|
|
389
|
+
readonly address: "0xeAa998aF280a62Ae08BaE4f9fa59C9b30e6BD306";
|
|
390
|
+
readonly schema: "evm:erc20";
|
|
391
|
+
};
|
|
260
392
|
};
|
|
261
393
|
readonly USDC: {
|
|
394
|
+
readonly id: "citrea_testnet:usdc";
|
|
262
395
|
readonly name: "USD Coin";
|
|
263
|
-
readonly decimals: 6;
|
|
264
396
|
readonly symbol: "USDC";
|
|
265
|
-
readonly
|
|
266
|
-
readonly
|
|
267
|
-
readonly
|
|
397
|
+
readonly decimals: 6;
|
|
398
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
399
|
+
readonly chain: "evm:5115";
|
|
400
|
+
readonly htlc: {
|
|
401
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
402
|
+
readonly schema: "evm:htlc_erc20";
|
|
403
|
+
};
|
|
404
|
+
readonly token: {
|
|
405
|
+
readonly address: "0xCdA8661fDA031deFCc9BdD88C0e12669Cac47Fb0";
|
|
406
|
+
readonly schema: "evm:erc20";
|
|
407
|
+
};
|
|
268
408
|
};
|
|
269
409
|
readonly USDT: {
|
|
410
|
+
readonly id: "citrea_testnet:usdt";
|
|
270
411
|
readonly name: "Tether USD";
|
|
271
|
-
readonly decimals: 6;
|
|
272
412
|
readonly symbol: "USDT";
|
|
273
|
-
readonly
|
|
274
|
-
readonly
|
|
275
|
-
readonly
|
|
413
|
+
readonly decimals: 6;
|
|
414
|
+
readonly icon: "https://garden.imgix.net/token-images/usdt.svg";
|
|
415
|
+
readonly chain: "evm:5115";
|
|
416
|
+
readonly htlc: {
|
|
417
|
+
readonly address: "0x917cfef972d667dC0FeC76806cB5623585B81493";
|
|
418
|
+
readonly schema: "evm:htlc_erc20";
|
|
419
|
+
};
|
|
420
|
+
readonly token: {
|
|
421
|
+
readonly address: "0xF5cFE09b852Ddb164cF6Db419B9c11aAb5F30cb6";
|
|
422
|
+
readonly schema: "evm:erc20";
|
|
423
|
+
};
|
|
276
424
|
};
|
|
277
425
|
};
|
|
278
426
|
readonly monad_testnet: {
|
|
279
427
|
readonly type: BlockchainType.evm;
|
|
280
428
|
readonly network: Network.TESTNET;
|
|
281
|
-
readonly
|
|
429
|
+
readonly cBBTC: {
|
|
430
|
+
readonly id: "monad_testnet:cbbtc";
|
|
282
431
|
readonly name: "Coinbase Wrapped Bitcoin";
|
|
432
|
+
readonly symbol: "cBBTC";
|
|
283
433
|
readonly decimals: 8;
|
|
284
|
-
readonly
|
|
285
|
-
readonly
|
|
286
|
-
readonly
|
|
287
|
-
|
|
434
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
435
|
+
readonly chain: "evm:10143";
|
|
436
|
+
readonly htlc: {
|
|
437
|
+
readonly address: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
|
|
438
|
+
readonly schema: "evm:htlc_erc20";
|
|
439
|
+
};
|
|
440
|
+
readonly token: {
|
|
441
|
+
readonly address: "0x6b6303fAb8eC7232b4f2a7b9fa58E5216F608fcb";
|
|
442
|
+
readonly schema: "evm:erc20";
|
|
443
|
+
};
|
|
288
444
|
};
|
|
289
445
|
readonly USDC: {
|
|
446
|
+
readonly id: "monad_testnet:usdc";
|
|
290
447
|
readonly name: "USD Coin";
|
|
291
|
-
readonly decimals: 6;
|
|
292
448
|
readonly symbol: "USDC";
|
|
293
|
-
readonly
|
|
294
|
-
readonly
|
|
295
|
-
readonly
|
|
449
|
+
readonly decimals: 6;
|
|
450
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
451
|
+
readonly chain: "evm:10143";
|
|
452
|
+
readonly htlc: {
|
|
453
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
454
|
+
readonly schema: "evm:htlc_erc20";
|
|
455
|
+
};
|
|
456
|
+
readonly token: {
|
|
457
|
+
readonly address: "0xf817257fed379853cde0fa4f97ab987181b1e5ea";
|
|
458
|
+
readonly schema: "evm:erc20";
|
|
459
|
+
};
|
|
296
460
|
};
|
|
297
461
|
};
|
|
298
462
|
readonly starknet_sepolia: {
|
|
299
463
|
readonly type: BlockchainType.starknet;
|
|
300
464
|
readonly network: Network.TESTNET;
|
|
301
465
|
readonly WBTC: {
|
|
466
|
+
readonly id: "starknet_sepolia:wbtc";
|
|
302
467
|
readonly name: "Wrapped Bitcoin";
|
|
303
|
-
readonly decimals: 8;
|
|
304
468
|
readonly symbol: "WBTC";
|
|
305
|
-
readonly
|
|
306
|
-
readonly
|
|
307
|
-
readonly
|
|
469
|
+
readonly decimals: 8;
|
|
470
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
471
|
+
readonly chain: "starknet:393402133025997798000961";
|
|
472
|
+
readonly htlc: {
|
|
473
|
+
readonly address: "0x06579d255314109429a4477d89629bc2b94f529ae01979c2f8014f9246482603";
|
|
474
|
+
readonly schema: "starknet:htlc_erc20";
|
|
475
|
+
};
|
|
476
|
+
readonly token: {
|
|
477
|
+
readonly address: "0x496bef3ed20371382fbe0ca6a5a64252c5c848f9f1f0cccf8110fc4def912d5";
|
|
478
|
+
readonly schema: "starknet:erc20";
|
|
479
|
+
};
|
|
308
480
|
};
|
|
309
481
|
};
|
|
310
482
|
readonly sui_testnet: {
|
|
311
483
|
readonly type: BlockchainType.sui;
|
|
312
484
|
readonly network: Network.TESTNET;
|
|
313
485
|
readonly SUI: {
|
|
486
|
+
readonly id: "sui_testnet:sui";
|
|
314
487
|
readonly name: "SUI";
|
|
315
|
-
readonly decimals: 9;
|
|
316
488
|
readonly symbol: "SUI";
|
|
317
|
-
readonly
|
|
318
|
-
readonly
|
|
319
|
-
readonly
|
|
489
|
+
readonly decimals: 9;
|
|
490
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/sui.svg";
|
|
491
|
+
readonly chain: "sui";
|
|
492
|
+
readonly htlc: {
|
|
493
|
+
readonly address: "0x5c438715b7dcc02d12ab92449153a1e5ade2301620d5bf60aa748f006726d369";
|
|
494
|
+
readonly schema: null;
|
|
495
|
+
};
|
|
496
|
+
readonly token: {
|
|
497
|
+
readonly address: "0x2::sui::SUI";
|
|
498
|
+
readonly schema: null;
|
|
499
|
+
};
|
|
320
500
|
};
|
|
321
501
|
};
|
|
322
502
|
readonly hyperliquid_testnet: {
|
|
@@ -327,286 +507,514 @@ export declare const Config: {
|
|
|
327
507
|
readonly type: BlockchainType.evm;
|
|
328
508
|
readonly network: Network.TESTNET;
|
|
329
509
|
readonly WBTC: {
|
|
510
|
+
readonly id: "bnbchain_testnet:wbtc";
|
|
330
511
|
readonly name: "Wrapped Bitcoin";
|
|
331
|
-
readonly decimals: 8;
|
|
332
512
|
readonly symbol: "WBTC";
|
|
333
|
-
readonly
|
|
334
|
-
readonly
|
|
335
|
-
readonly
|
|
513
|
+
readonly decimals: 8;
|
|
514
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
515
|
+
readonly chain: "evm:97";
|
|
516
|
+
readonly htlc: {
|
|
517
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
518
|
+
readonly schema: "evm:htlc_erc20";
|
|
519
|
+
};
|
|
520
|
+
readonly token: {
|
|
521
|
+
readonly address: "0x39f3294352208905fc6ebf033954E6c6455CdB4C";
|
|
522
|
+
readonly schema: "evm:erc20";
|
|
523
|
+
};
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
readonly alpen_testnet: {
|
|
527
|
+
readonly type: BlockchainType.evm;
|
|
528
|
+
readonly network: Network.TESTNET;
|
|
529
|
+
readonly sBTC: {
|
|
530
|
+
readonly id: "alpen_testnet:sbtc";
|
|
531
|
+
readonly name: "Signet Bitcoin";
|
|
532
|
+
readonly symbol: "sBTC";
|
|
533
|
+
readonly decimals: 18;
|
|
534
|
+
readonly icon: "https://avatars.githubusercontent.com/u/113091135";
|
|
535
|
+
readonly chain: "evm:2892";
|
|
536
|
+
readonly htlc: {
|
|
537
|
+
readonly address: "0x39269522737a4a155F78EC1B1BDb86288c1Fcf67";
|
|
538
|
+
readonly schema: "evm:htlc";
|
|
539
|
+
};
|
|
540
|
+
readonly token: null;
|
|
541
|
+
};
|
|
542
|
+
readonly USDC: {
|
|
543
|
+
readonly id: "alpen_testnet:usdc";
|
|
544
|
+
readonly name: "USD Coin";
|
|
545
|
+
readonly symbol: "USDC";
|
|
546
|
+
readonly decimals: 6;
|
|
547
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
548
|
+
readonly chain: "evm:2892";
|
|
549
|
+
readonly htlc: {
|
|
550
|
+
readonly address: "0x45b0d0c85bEb4512610fC2627CCB1587A7a044d4";
|
|
551
|
+
readonly schema: "evm:htlc_erc20";
|
|
552
|
+
};
|
|
553
|
+
readonly token: {
|
|
554
|
+
readonly address: "0x9753D0481fC7e18797877B4e731B496439c849dE";
|
|
555
|
+
readonly schema: "evm:erc20";
|
|
556
|
+
};
|
|
336
557
|
};
|
|
337
558
|
};
|
|
338
559
|
readonly bitcoin: {
|
|
339
560
|
readonly type: BlockchainType.bitcoin;
|
|
340
561
|
readonly network: Network.MAINNET;
|
|
341
562
|
readonly BTC: {
|
|
563
|
+
readonly id: "bitcoin:btc";
|
|
342
564
|
readonly name: "Bitcoin";
|
|
343
|
-
readonly decimals: 8;
|
|
344
565
|
readonly symbol: "BTC";
|
|
345
|
-
readonly
|
|
346
|
-
readonly
|
|
347
|
-
readonly
|
|
566
|
+
readonly decimals: 8;
|
|
567
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
568
|
+
readonly chain: "bitcoin";
|
|
569
|
+
readonly htlc: null;
|
|
570
|
+
readonly token: null;
|
|
348
571
|
};
|
|
349
572
|
};
|
|
350
573
|
readonly base: {
|
|
351
574
|
readonly type: BlockchainType.evm;
|
|
352
575
|
readonly network: Network.MAINNET;
|
|
353
576
|
readonly USDC: {
|
|
577
|
+
readonly id: "base:usdc";
|
|
354
578
|
readonly name: "USD Coin";
|
|
355
|
-
readonly decimals: 6;
|
|
356
579
|
readonly symbol: "USDC";
|
|
357
|
-
readonly
|
|
358
|
-
readonly
|
|
359
|
-
readonly
|
|
580
|
+
readonly decimals: 6;
|
|
581
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
582
|
+
readonly chain: "evm:8453";
|
|
583
|
+
readonly htlc: {
|
|
584
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
585
|
+
readonly schema: "evm:htlc_erc20";
|
|
586
|
+
};
|
|
587
|
+
readonly token: {
|
|
588
|
+
readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
|
|
589
|
+
readonly schema: "evm:erc20";
|
|
590
|
+
};
|
|
360
591
|
};
|
|
361
592
|
readonly cBBTC: {
|
|
362
|
-
readonly
|
|
363
|
-
readonly
|
|
593
|
+
readonly id: "base:cbbtc";
|
|
594
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
364
595
|
readonly symbol: "cBBTC";
|
|
365
|
-
readonly
|
|
366
|
-
readonly
|
|
367
|
-
readonly
|
|
596
|
+
readonly decimals: 8;
|
|
597
|
+
readonly icon: "https://coin-images.coingecko.com/coins/images/51336/large/cbbtc.png?1730814747";
|
|
598
|
+
readonly chain: "evm:8453";
|
|
599
|
+
readonly htlc: {
|
|
600
|
+
readonly address: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
|
|
601
|
+
readonly schema: "evm:htlc_erc20";
|
|
602
|
+
};
|
|
603
|
+
readonly token: {
|
|
604
|
+
readonly address: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
|
|
605
|
+
readonly schema: "evm:erc20";
|
|
606
|
+
};
|
|
368
607
|
};
|
|
369
608
|
};
|
|
370
609
|
readonly arbitrum: {
|
|
371
610
|
readonly type: BlockchainType.evm;
|
|
372
611
|
readonly network: Network.MAINNET;
|
|
373
612
|
readonly WBTC: {
|
|
613
|
+
readonly id: "arbitrum:wbtc";
|
|
374
614
|
readonly name: "Wrapped Bitcoin";
|
|
375
|
-
readonly decimals: 8;
|
|
376
615
|
readonly symbol: "WBTC";
|
|
377
|
-
readonly
|
|
378
|
-
readonly
|
|
379
|
-
readonly
|
|
616
|
+
readonly decimals: 8;
|
|
617
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
618
|
+
readonly chain: "evm:42161";
|
|
619
|
+
readonly htlc: {
|
|
620
|
+
readonly address: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
|
|
621
|
+
readonly schema: "evm:htlc_erc20";
|
|
622
|
+
};
|
|
623
|
+
readonly token: {
|
|
624
|
+
readonly address: "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f";
|
|
625
|
+
readonly schema: "evm:erc20";
|
|
626
|
+
};
|
|
380
627
|
};
|
|
381
628
|
readonly USDC: {
|
|
629
|
+
readonly id: "arbitrum:usdc";
|
|
382
630
|
readonly name: "USD Coin";
|
|
383
|
-
readonly decimals: 6;
|
|
384
631
|
readonly symbol: "USDC";
|
|
385
|
-
readonly
|
|
386
|
-
readonly
|
|
387
|
-
readonly
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
readonly
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
632
|
+
readonly decimals: 6;
|
|
633
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
634
|
+
readonly chain: "evm:42161";
|
|
635
|
+
readonly htlc: {
|
|
636
|
+
readonly address: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
|
|
637
|
+
readonly schema: "evm:htlc_erc20";
|
|
638
|
+
};
|
|
639
|
+
readonly token: {
|
|
640
|
+
readonly address: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831";
|
|
641
|
+
readonly schema: "evm:erc20";
|
|
642
|
+
};
|
|
396
643
|
};
|
|
397
644
|
readonly SEED: {
|
|
398
|
-
readonly
|
|
399
|
-
readonly
|
|
645
|
+
readonly id: "arbitrum:seed";
|
|
646
|
+
readonly name: "SEED";
|
|
400
647
|
readonly symbol: "SEED";
|
|
401
|
-
readonly
|
|
402
|
-
readonly
|
|
403
|
-
readonly
|
|
648
|
+
readonly decimals: 18;
|
|
649
|
+
readonly icon: "https://garden.imgix.net/token-images/SEED.svg";
|
|
650
|
+
readonly chain: "evm:42161";
|
|
651
|
+
readonly htlc: {
|
|
652
|
+
readonly address: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
|
|
653
|
+
readonly schema: "evm:htlc_erc20";
|
|
654
|
+
};
|
|
655
|
+
readonly token: {
|
|
656
|
+
readonly address: "0x86f65121804D2Cdbef79F9f072D4e0c2eEbABC08";
|
|
657
|
+
readonly schema: "evm:erc20";
|
|
658
|
+
};
|
|
404
659
|
};
|
|
405
660
|
};
|
|
406
661
|
readonly ethereum: {
|
|
407
662
|
readonly type: BlockchainType.evm;
|
|
408
663
|
readonly network: Network.MAINNET;
|
|
409
664
|
readonly ETH: {
|
|
665
|
+
readonly id: "ethereum:eth";
|
|
410
666
|
readonly name: "Ethereum";
|
|
411
|
-
readonly decimals: 18;
|
|
412
667
|
readonly symbol: "ETH";
|
|
413
|
-
readonly
|
|
414
|
-
readonly
|
|
415
|
-
readonly
|
|
668
|
+
readonly decimals: 18;
|
|
669
|
+
readonly icon: "https://garden.imgix.net/chain_images/ethereum.svg";
|
|
670
|
+
readonly chain: "evm:1";
|
|
671
|
+
readonly htlc: {
|
|
672
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
673
|
+
readonly schema: "evm:htlc";
|
|
674
|
+
};
|
|
675
|
+
readonly token: null;
|
|
416
676
|
};
|
|
417
677
|
readonly USDC: {
|
|
678
|
+
readonly id: "ethereum:usdc";
|
|
418
679
|
readonly name: "USD Coin";
|
|
419
|
-
readonly decimals: 6;
|
|
420
680
|
readonly symbol: "USDC";
|
|
421
|
-
readonly
|
|
422
|
-
readonly
|
|
423
|
-
readonly
|
|
681
|
+
readonly decimals: 6;
|
|
682
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
683
|
+
readonly chain: "evm:1";
|
|
684
|
+
readonly htlc: {
|
|
685
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
686
|
+
readonly schema: "evm:htlc_erc20";
|
|
687
|
+
};
|
|
688
|
+
readonly token: {
|
|
689
|
+
readonly address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48";
|
|
690
|
+
readonly schema: "evm:erc20";
|
|
691
|
+
};
|
|
424
692
|
};
|
|
425
693
|
readonly WBTC: {
|
|
694
|
+
readonly id: "ethereum:wbtc";
|
|
426
695
|
readonly name: "Wrapped Bitcoin";
|
|
427
|
-
readonly decimals: 8;
|
|
428
696
|
readonly symbol: "WBTC";
|
|
429
|
-
readonly
|
|
430
|
-
readonly
|
|
431
|
-
readonly
|
|
697
|
+
readonly decimals: 8;
|
|
698
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
699
|
+
readonly chain: "evm:1";
|
|
700
|
+
readonly htlc: {
|
|
701
|
+
readonly address: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
|
|
702
|
+
readonly schema: "evm:htlc_erc20";
|
|
703
|
+
};
|
|
704
|
+
readonly token: {
|
|
705
|
+
readonly address: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599";
|
|
706
|
+
readonly schema: "evm:erc20";
|
|
707
|
+
};
|
|
432
708
|
};
|
|
433
709
|
readonly cBBTC: {
|
|
434
|
-
readonly
|
|
435
|
-
readonly
|
|
710
|
+
readonly id: "ethereum:cbbtc";
|
|
711
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
436
712
|
readonly symbol: "cBBTC";
|
|
437
|
-
readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
438
|
-
readonly atomicSwapAddress: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
|
|
439
|
-
readonly tokenAddress: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
|
|
440
|
-
};
|
|
441
|
-
readonly iBTC: {
|
|
442
|
-
readonly name: "iBTC";
|
|
443
713
|
readonly decimals: 8;
|
|
444
|
-
readonly
|
|
445
|
-
readonly
|
|
446
|
-
readonly
|
|
447
|
-
|
|
714
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
715
|
+
readonly chain: "evm:1";
|
|
716
|
+
readonly htlc: {
|
|
717
|
+
readonly address: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
|
|
718
|
+
readonly schema: "evm:htlc_erc20";
|
|
719
|
+
};
|
|
720
|
+
readonly token: {
|
|
721
|
+
readonly address: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
|
|
722
|
+
readonly schema: "evm:erc20";
|
|
723
|
+
};
|
|
448
724
|
};
|
|
449
725
|
readonly SEED: {
|
|
450
|
-
readonly
|
|
451
|
-
readonly
|
|
726
|
+
readonly id: "ethereum:seed";
|
|
727
|
+
readonly name: "SEED";
|
|
452
728
|
readonly symbol: "SEED";
|
|
453
|
-
readonly
|
|
454
|
-
readonly
|
|
455
|
-
readonly
|
|
729
|
+
readonly decimals: 18;
|
|
730
|
+
readonly icon: "https://garden.imgix.net/token-images/SEED.svg";
|
|
731
|
+
readonly chain: "evm:1";
|
|
732
|
+
readonly htlc: {
|
|
733
|
+
readonly address: "0xCE511De667885f92B8c36fcfC79C3B5bEb875463";
|
|
734
|
+
readonly schema: "evm:htlc_erc20";
|
|
735
|
+
};
|
|
736
|
+
readonly token: {
|
|
737
|
+
readonly address: "0x5eed99d066a8CaF10f3E4327c1b3D8b673485eED";
|
|
738
|
+
readonly schema: "evm:erc20";
|
|
739
|
+
};
|
|
456
740
|
};
|
|
457
741
|
};
|
|
458
742
|
readonly solana: {
|
|
459
743
|
readonly type: BlockchainType.solana;
|
|
460
744
|
readonly network: Network.MAINNET;
|
|
461
745
|
readonly SOL: {
|
|
746
|
+
readonly id: "solana:sol";
|
|
462
747
|
readonly name: "Solana";
|
|
463
|
-
readonly decimals: 9;
|
|
464
748
|
readonly symbol: "SOL";
|
|
465
|
-
readonly
|
|
466
|
-
readonly
|
|
467
|
-
readonly
|
|
749
|
+
readonly decimals: 9;
|
|
750
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/solana.png";
|
|
751
|
+
readonly chain: "solana:101";
|
|
752
|
+
readonly htlc: {
|
|
753
|
+
readonly address: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF";
|
|
754
|
+
readonly schema: "solana:htlc";
|
|
755
|
+
};
|
|
756
|
+
readonly token: null;
|
|
468
757
|
};
|
|
469
758
|
readonly USDC: {
|
|
759
|
+
readonly id: "solana:usdc";
|
|
470
760
|
readonly name: "USD Coin";
|
|
471
|
-
readonly decimals: 6;
|
|
472
761
|
readonly symbol: "USDC";
|
|
473
|
-
readonly
|
|
474
|
-
readonly
|
|
475
|
-
readonly
|
|
762
|
+
readonly decimals: 6;
|
|
763
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
764
|
+
readonly chain: "solana:101";
|
|
765
|
+
readonly htlc: {
|
|
766
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
767
|
+
readonly schema: "solana:htlc_spltoken";
|
|
768
|
+
};
|
|
769
|
+
readonly token: {
|
|
770
|
+
readonly address: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
|
|
771
|
+
readonly schema: "primary";
|
|
772
|
+
};
|
|
476
773
|
};
|
|
477
774
|
readonly cBBTC: {
|
|
478
|
-
readonly
|
|
479
|
-
readonly
|
|
775
|
+
readonly id: "solana:cbbtc";
|
|
776
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
480
777
|
readonly symbol: "cBBTC";
|
|
481
|
-
readonly
|
|
482
|
-
readonly
|
|
483
|
-
readonly
|
|
778
|
+
readonly decimals: 8;
|
|
779
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
780
|
+
readonly chain: "solana:101";
|
|
781
|
+
readonly htlc: {
|
|
782
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
783
|
+
readonly schema: "solana:htlc_spltoken";
|
|
784
|
+
};
|
|
785
|
+
readonly token: {
|
|
786
|
+
readonly address: "cbbtcf3aa214zXHbiAZQwf4122FBYbraNdFqgw4iMij";
|
|
787
|
+
readonly schema: "primary";
|
|
788
|
+
};
|
|
484
789
|
};
|
|
485
790
|
};
|
|
486
791
|
readonly bera: {
|
|
487
792
|
readonly type: BlockchainType.evm;
|
|
488
793
|
readonly network: Network.MAINNET;
|
|
489
794
|
readonly LBTC: {
|
|
490
|
-
readonly
|
|
491
|
-
readonly
|
|
795
|
+
readonly id: "bera:lbtc";
|
|
796
|
+
readonly name: "Lombard Bitcoin";
|
|
492
797
|
readonly symbol: "LBTC";
|
|
493
|
-
readonly
|
|
494
|
-
readonly
|
|
495
|
-
readonly
|
|
798
|
+
readonly decimals: 8;
|
|
799
|
+
readonly icon: "https://garden.imgix.net/token-images/LBTC.svg";
|
|
800
|
+
readonly chain: "evm:80094";
|
|
801
|
+
readonly htlc: {
|
|
802
|
+
readonly address: "0x84A396920d8B8CA2e69bD9503Bc1B2f73f1b8b33";
|
|
803
|
+
readonly schema: "evm:htlc_erc20";
|
|
804
|
+
};
|
|
805
|
+
readonly token: {
|
|
806
|
+
readonly address: "0xecAc9C5F704e954931349Da37F60E39f515c11c1";
|
|
807
|
+
readonly schema: "evm:erc20";
|
|
808
|
+
};
|
|
496
809
|
};
|
|
497
810
|
};
|
|
498
811
|
readonly starknet: {
|
|
499
812
|
readonly type: BlockchainType.starknet;
|
|
500
813
|
readonly network: Network.MAINNET;
|
|
501
814
|
readonly WBTC: {
|
|
815
|
+
readonly id: "starknet:wbtc";
|
|
502
816
|
readonly name: "Wrapped Bitcoin";
|
|
503
|
-
readonly decimals: 8;
|
|
504
817
|
readonly symbol: "WBTC";
|
|
505
|
-
readonly
|
|
506
|
-
readonly
|
|
507
|
-
readonly
|
|
818
|
+
readonly decimals: 8;
|
|
819
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
820
|
+
readonly chain: "starknet:23448594291968334";
|
|
821
|
+
readonly htlc: {
|
|
822
|
+
readonly address: "0x7defd8eb3b770005ab1ca5f89ad31f98fb5bc3c52deaeafd130be3b49f967b4";
|
|
823
|
+
readonly schema: "starknet:htlc_erc20";
|
|
824
|
+
};
|
|
825
|
+
readonly token: {
|
|
826
|
+
readonly address: "0x3fe2b97c1fd336e750087d68b9b867997fd64a2661ff3ca5a7c771641e8e7ac";
|
|
827
|
+
readonly schema: "starknet:erc20";
|
|
828
|
+
};
|
|
508
829
|
};
|
|
509
830
|
};
|
|
510
831
|
readonly sui: {
|
|
511
832
|
readonly type: BlockchainType.sui;
|
|
512
833
|
readonly network: Network.MAINNET;
|
|
513
834
|
readonly SUI: {
|
|
514
|
-
readonly
|
|
515
|
-
readonly
|
|
835
|
+
readonly id: "sui:sui";
|
|
836
|
+
readonly name: "SUI";
|
|
516
837
|
readonly symbol: "SUI";
|
|
517
|
-
readonly
|
|
518
|
-
readonly
|
|
519
|
-
readonly
|
|
838
|
+
readonly decimals: 9;
|
|
839
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/sui.svg";
|
|
840
|
+
readonly chain: "sui:0";
|
|
841
|
+
readonly htlc: {
|
|
842
|
+
readonly address: "0xa4f4e653547e98d4b541378e14db2393a09aff4b829f158b133d2eb3c3a942b5";
|
|
843
|
+
readonly schema: null;
|
|
844
|
+
};
|
|
845
|
+
readonly token: {
|
|
846
|
+
readonly address: "0x2::sui::SUI";
|
|
847
|
+
readonly schema: null;
|
|
848
|
+
};
|
|
520
849
|
};
|
|
521
850
|
};
|
|
522
851
|
readonly hyperliquid: {
|
|
523
852
|
readonly type: BlockchainType.evm;
|
|
524
853
|
readonly network: Network.MAINNET;
|
|
525
854
|
readonly uBTC: {
|
|
526
|
-
readonly
|
|
527
|
-
readonly
|
|
855
|
+
readonly id: "hyperliquid:ubtc";
|
|
856
|
+
readonly name: "Unit Bitcoin";
|
|
528
857
|
readonly symbol: "uBTC";
|
|
529
|
-
readonly
|
|
530
|
-
readonly
|
|
531
|
-
readonly
|
|
858
|
+
readonly decimals: 8;
|
|
859
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
860
|
+
readonly chain: "evm:999";
|
|
861
|
+
readonly htlc: {
|
|
862
|
+
readonly address: "0xDC74a45e86DEdf1fF7c6dac77e0c2F082f9E4F72";
|
|
863
|
+
readonly schema: "evm:htlc_erc20";
|
|
864
|
+
};
|
|
865
|
+
readonly token: {
|
|
866
|
+
readonly address: "0x9FDBdA0A5e284c32744D2f17Ee5c74B284993463";
|
|
867
|
+
readonly schema: "evm:erc20";
|
|
868
|
+
};
|
|
532
869
|
};
|
|
533
870
|
};
|
|
534
871
|
readonly unichain: {
|
|
535
872
|
readonly type: BlockchainType.evm;
|
|
536
873
|
readonly network: Network.MAINNET;
|
|
537
874
|
readonly WBTC: {
|
|
875
|
+
readonly id: "unichain:wbtc";
|
|
538
876
|
readonly name: "Wrapped Bitcoin";
|
|
539
|
-
readonly decimals: 8;
|
|
540
877
|
readonly symbol: "WBTC";
|
|
541
|
-
readonly
|
|
542
|
-
readonly
|
|
543
|
-
readonly
|
|
878
|
+
readonly decimals: 8;
|
|
879
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
880
|
+
readonly chain: "evm:130";
|
|
881
|
+
readonly htlc: {
|
|
882
|
+
readonly address: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
|
|
883
|
+
readonly schema: "evm:htlc_erc20";
|
|
884
|
+
};
|
|
885
|
+
readonly token: {
|
|
886
|
+
readonly address: "0x927B51f251480a681271180DA4de28D44EC4AfB8";
|
|
887
|
+
readonly schema: "evm:erc20";
|
|
888
|
+
};
|
|
544
889
|
};
|
|
545
890
|
readonly USDC: {
|
|
891
|
+
readonly id: "unichain:usdc";
|
|
546
892
|
readonly name: "USD Coin";
|
|
547
|
-
readonly decimals: 6;
|
|
548
893
|
readonly symbol: "USDC";
|
|
549
|
-
readonly
|
|
550
|
-
readonly
|
|
551
|
-
readonly
|
|
894
|
+
readonly decimals: 6;
|
|
895
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
896
|
+
readonly chain: "evm:130";
|
|
897
|
+
readonly htlc: {
|
|
898
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
899
|
+
readonly schema: "evm:htlc_erc20";
|
|
900
|
+
};
|
|
901
|
+
readonly token: {
|
|
902
|
+
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
903
|
+
readonly schema: "evm:erc20";
|
|
904
|
+
};
|
|
552
905
|
};
|
|
553
906
|
};
|
|
554
907
|
readonly corn: {
|
|
555
908
|
readonly type: BlockchainType.evm;
|
|
556
909
|
readonly network: Network.MAINNET;
|
|
557
910
|
readonly BTCN: {
|
|
911
|
+
readonly id: "corn:btcn";
|
|
558
912
|
readonly name: "Bitcorn";
|
|
559
|
-
readonly decimals: 18;
|
|
560
913
|
readonly symbol: "BTCN";
|
|
561
|
-
readonly
|
|
562
|
-
readonly
|
|
563
|
-
readonly
|
|
914
|
+
readonly decimals: 18;
|
|
915
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcorn.svg";
|
|
916
|
+
readonly chain: "evm:21000000";
|
|
917
|
+
readonly htlc: {
|
|
918
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
919
|
+
readonly schema: "evm:htlc";
|
|
920
|
+
};
|
|
921
|
+
readonly token: null;
|
|
564
922
|
};
|
|
565
923
|
};
|
|
566
924
|
readonly botanix: {
|
|
567
925
|
readonly type: BlockchainType.evm;
|
|
568
926
|
readonly network: Network.MAINNET;
|
|
569
927
|
readonly BTC: {
|
|
928
|
+
readonly id: "botanix:btc";
|
|
570
929
|
readonly name: "Botanix Bitcoin";
|
|
571
|
-
readonly decimals: 18;
|
|
572
930
|
readonly symbol: "BTC";
|
|
573
|
-
readonly
|
|
574
|
-
readonly
|
|
575
|
-
readonly
|
|
931
|
+
readonly decimals: 18;
|
|
932
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
933
|
+
readonly chain: "evm:3637";
|
|
934
|
+
readonly htlc: {
|
|
935
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
936
|
+
readonly schema: "evm:htlc";
|
|
937
|
+
};
|
|
938
|
+
readonly token: null;
|
|
576
939
|
};
|
|
577
940
|
};
|
|
578
941
|
readonly bnbchain: {
|
|
579
942
|
readonly type: BlockchainType.evm;
|
|
580
943
|
readonly network: Network.MAINNET;
|
|
581
944
|
readonly BTCB: {
|
|
582
|
-
readonly
|
|
583
|
-
readonly
|
|
945
|
+
readonly id: "bnbchain:btcb";
|
|
946
|
+
readonly name: "Binance Bitcoin";
|
|
584
947
|
readonly symbol: "BTCB";
|
|
585
|
-
readonly
|
|
586
|
-
readonly
|
|
587
|
-
readonly
|
|
948
|
+
readonly decimals: 18;
|
|
949
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
950
|
+
readonly chain: "evm:56";
|
|
951
|
+
readonly htlc: {
|
|
952
|
+
readonly address: "0xe74784E5A45528fDEcB257477DD6bd31c8ef0761";
|
|
953
|
+
readonly schema: "evm:htlc_erc20";
|
|
954
|
+
};
|
|
955
|
+
readonly token: {
|
|
956
|
+
readonly address: "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c";
|
|
957
|
+
readonly schema: "evm:erc20";
|
|
958
|
+
};
|
|
588
959
|
};
|
|
589
960
|
readonly USDC: {
|
|
961
|
+
readonly id: "bnbchain:usdc";
|
|
590
962
|
readonly name: "USD Coin";
|
|
591
|
-
readonly decimals: 18;
|
|
592
963
|
readonly symbol: "USDC";
|
|
593
|
-
readonly
|
|
594
|
-
readonly
|
|
595
|
-
readonly
|
|
964
|
+
readonly decimals: 18;
|
|
965
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
966
|
+
readonly chain: "evm:56";
|
|
967
|
+
readonly htlc: {
|
|
968
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
969
|
+
readonly schema: "evm:htlc_erc20";
|
|
970
|
+
};
|
|
971
|
+
readonly token: {
|
|
972
|
+
readonly address: "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d";
|
|
973
|
+
readonly schema: "evm:erc20";
|
|
974
|
+
};
|
|
975
|
+
};
|
|
976
|
+
readonly BNB: {
|
|
977
|
+
readonly id: "bnbchain:bnb";
|
|
978
|
+
readonly name: "BNB";
|
|
979
|
+
readonly symbol: "BNB";
|
|
980
|
+
readonly decimals: 18;
|
|
981
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/bnb.png";
|
|
982
|
+
readonly chain: "evm:56";
|
|
983
|
+
readonly htlc: {
|
|
984
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
985
|
+
readonly schema: "evm:htlc";
|
|
986
|
+
};
|
|
987
|
+
readonly token: null;
|
|
596
988
|
};
|
|
597
989
|
};
|
|
598
990
|
readonly core: {
|
|
599
991
|
readonly type: BlockchainType.evm;
|
|
600
992
|
readonly network: Network.MAINNET;
|
|
601
993
|
readonly WBTC: {
|
|
994
|
+
readonly id: "core:wbtc";
|
|
602
995
|
readonly name: "Wrapped Bitcoin";
|
|
603
|
-
readonly decimals: 8;
|
|
604
996
|
readonly symbol: "WBTC";
|
|
605
|
-
readonly
|
|
606
|
-
readonly
|
|
607
|
-
readonly
|
|
997
|
+
readonly decimals: 8;
|
|
998
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
999
|
+
readonly chain: "evm:1116";
|
|
1000
|
+
readonly htlc: {
|
|
1001
|
+
readonly address: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
|
|
1002
|
+
readonly schema: "evm:htlc_erc20";
|
|
1003
|
+
};
|
|
1004
|
+
readonly token: {
|
|
1005
|
+
readonly address: "0x5832f53d147b3d6Cd4578B9CBD62425C7ea9d0Bd";
|
|
1006
|
+
readonly schema: "evm:erc20";
|
|
1007
|
+
};
|
|
608
1008
|
};
|
|
609
1009
|
};
|
|
1010
|
+
readonly hypercore: {
|
|
1011
|
+
readonly type: BlockchainType.evm;
|
|
1012
|
+
readonly network: Network.MAINNET;
|
|
1013
|
+
};
|
|
1014
|
+
readonly hypercore_testnet: {
|
|
1015
|
+
readonly type: BlockchainType.evm;
|
|
1016
|
+
readonly network: Network.TESTNET;
|
|
1017
|
+
};
|
|
610
1018
|
};
|
|
611
1019
|
export declare const Chains: Record<Chain, Chain>;
|
|
612
1020
|
export declare const Assets: import('./utils').AssetsType<{
|
|
@@ -676,132 +1084,235 @@ export declare const Assets: import('./utils').AssetsType<{
|
|
|
676
1084
|
readonly type: BlockchainType.solana;
|
|
677
1085
|
readonly network: Network.TESTNET;
|
|
678
1086
|
readonly SOL: {
|
|
1087
|
+
readonly id: "solana_testnet:sol";
|
|
679
1088
|
readonly name: "Solana";
|
|
680
|
-
readonly decimals: 9;
|
|
681
1089
|
readonly symbol: "SOL";
|
|
682
|
-
readonly
|
|
683
|
-
readonly
|
|
684
|
-
readonly
|
|
1090
|
+
readonly decimals: 9;
|
|
1091
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/solana.png";
|
|
1092
|
+
readonly chain: "solana:103";
|
|
1093
|
+
readonly htlc: {
|
|
1094
|
+
readonly address: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF";
|
|
1095
|
+
readonly schema: "solana:htlc";
|
|
1096
|
+
};
|
|
1097
|
+
readonly token: null;
|
|
685
1098
|
};
|
|
686
1099
|
readonly USDC: {
|
|
1100
|
+
readonly id: "solana_testnet:usdc";
|
|
687
1101
|
readonly name: "USD Coin";
|
|
688
|
-
readonly decimals: 6;
|
|
689
1102
|
readonly symbol: "USDC";
|
|
690
|
-
readonly
|
|
691
|
-
readonly
|
|
692
|
-
readonly
|
|
1103
|
+
readonly decimals: 6;
|
|
1104
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1105
|
+
readonly chain: "solana:103";
|
|
1106
|
+
readonly htlc: {
|
|
1107
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
1108
|
+
readonly schema: "solana:htlc_spltoken";
|
|
1109
|
+
};
|
|
1110
|
+
readonly token: {
|
|
1111
|
+
readonly address: "5JbWjyLdYKTuykpq2itWbdRcZkhK3hs6fiH62pkmLYZi";
|
|
1112
|
+
readonly schema: null;
|
|
1113
|
+
};
|
|
693
1114
|
};
|
|
694
1115
|
readonly cbBTC: {
|
|
1116
|
+
readonly id: "solana_testnet:cbbtc";
|
|
695
1117
|
readonly name: "Coinbase Wrapped Bitcoin";
|
|
696
|
-
readonly decimals: 8;
|
|
697
1118
|
readonly symbol: "cbBTC";
|
|
698
|
-
readonly
|
|
699
|
-
readonly
|
|
700
|
-
readonly
|
|
1119
|
+
readonly decimals: 8;
|
|
1120
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
1121
|
+
readonly chain: "solana:103";
|
|
1122
|
+
readonly htlc: {
|
|
1123
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
1124
|
+
readonly schema: "solana:htlc_spltoken";
|
|
1125
|
+
};
|
|
1126
|
+
readonly token: {
|
|
1127
|
+
readonly address: "CL8C4gsaEQyWPxL4Zn7dcnZ8LKvPYqHmv4ipMax4cDUL";
|
|
1128
|
+
readonly schema: null;
|
|
1129
|
+
};
|
|
701
1130
|
};
|
|
702
1131
|
};
|
|
703
1132
|
readonly bitcoin_testnet: {
|
|
704
1133
|
readonly type: BlockchainType.bitcoin;
|
|
705
1134
|
readonly network: Network.TESTNET;
|
|
706
1135
|
readonly BTC: {
|
|
1136
|
+
readonly id: "bitcoin_testnet:btc";
|
|
707
1137
|
readonly name: "Bitcoin";
|
|
708
|
-
readonly decimals: 8;
|
|
709
1138
|
readonly symbol: "BTC";
|
|
710
|
-
readonly
|
|
711
|
-
readonly
|
|
712
|
-
readonly
|
|
1139
|
+
readonly decimals: 8;
|
|
1140
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1141
|
+
readonly chain: "bitcoin";
|
|
1142
|
+
readonly htlc: null;
|
|
1143
|
+
readonly token: null;
|
|
713
1144
|
};
|
|
714
1145
|
};
|
|
715
1146
|
readonly ethereum_sepolia: {
|
|
716
1147
|
readonly type: BlockchainType.evm;
|
|
717
1148
|
readonly network: Network.TESTNET;
|
|
718
1149
|
readonly WBTC: {
|
|
1150
|
+
readonly id: "ethereum_sepolia:wbtc";
|
|
719
1151
|
readonly name: "Wrapped Bitcoin";
|
|
720
|
-
readonly decimals: 8;
|
|
721
1152
|
readonly symbol: "WBTC";
|
|
722
|
-
readonly
|
|
723
|
-
readonly
|
|
724
|
-
readonly
|
|
1153
|
+
readonly decimals: 8;
|
|
1154
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1155
|
+
readonly chain: "evm:11155111";
|
|
1156
|
+
readonly htlc: {
|
|
1157
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
1158
|
+
readonly schema: "evm:htlc_erc20";
|
|
1159
|
+
};
|
|
1160
|
+
readonly token: {
|
|
1161
|
+
readonly address: "0xE918A5a47b8e0AFAC2382bC5D1e981613e63fB07";
|
|
1162
|
+
readonly schema: "evm:erc20";
|
|
1163
|
+
};
|
|
725
1164
|
};
|
|
726
1165
|
readonly USDC: {
|
|
1166
|
+
readonly id: "ethereum_sepolia:usdc";
|
|
727
1167
|
readonly name: "USD Coin";
|
|
728
|
-
readonly decimals: 6;
|
|
729
1168
|
readonly symbol: "USDC";
|
|
730
|
-
readonly
|
|
731
|
-
readonly
|
|
732
|
-
readonly
|
|
1169
|
+
readonly decimals: 6;
|
|
1170
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1171
|
+
readonly chain: "evm:11155111";
|
|
1172
|
+
readonly htlc: {
|
|
1173
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
1174
|
+
readonly schema: "evm:htlc_erc20";
|
|
1175
|
+
};
|
|
1176
|
+
readonly token: {
|
|
1177
|
+
readonly address: "0xadDD620EA6D20f4f9c24fff3BC039E497ceBEDc2";
|
|
1178
|
+
readonly schema: "evm:erc20";
|
|
1179
|
+
};
|
|
733
1180
|
};
|
|
734
1181
|
};
|
|
735
1182
|
readonly arbitrum_sepolia: {
|
|
736
1183
|
readonly type: BlockchainType.evm;
|
|
737
1184
|
readonly network: Network.TESTNET;
|
|
738
1185
|
readonly iBTC: {
|
|
1186
|
+
readonly id: "arbitrum_sepolia:ibtc";
|
|
739
1187
|
readonly name: "iBTC";
|
|
740
|
-
readonly decimals: 8;
|
|
741
1188
|
readonly symbol: "iBTC";
|
|
742
|
-
readonly
|
|
743
|
-
readonly
|
|
744
|
-
readonly
|
|
1189
|
+
readonly decimals: 8;
|
|
1190
|
+
readonly icon: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
|
|
1191
|
+
readonly chain: "evm:421614";
|
|
1192
|
+
readonly htlc: {
|
|
1193
|
+
readonly address: "0x7e8c18fa79bd4014cfCf49294Bf315139eD39f45";
|
|
1194
|
+
readonly schema: "evm:htlc_erc20";
|
|
1195
|
+
};
|
|
1196
|
+
readonly token: {
|
|
1197
|
+
readonly address: "0x685437f025c5f33A94818408C286bc1F023201Fc";
|
|
1198
|
+
readonly schema: "evm:erc20";
|
|
1199
|
+
};
|
|
745
1200
|
};
|
|
746
1201
|
readonly WBTC: {
|
|
1202
|
+
readonly id: "arbitrum_sepolia:wbtc";
|
|
747
1203
|
readonly name: "Wrapped Bitcoin";
|
|
748
|
-
readonly decimals: 8;
|
|
749
1204
|
readonly symbol: "WBTC";
|
|
750
|
-
readonly
|
|
751
|
-
readonly
|
|
752
|
-
readonly
|
|
1205
|
+
readonly decimals: 8;
|
|
1206
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1207
|
+
readonly chain: "evm:421614";
|
|
1208
|
+
readonly htlc: {
|
|
1209
|
+
readonly address: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
|
|
1210
|
+
readonly schema: "evm:htlc_erc20";
|
|
1211
|
+
};
|
|
1212
|
+
readonly token: {
|
|
1213
|
+
readonly address: "0x1c287717c886794ac9f5DF3987195431Ceb3456E";
|
|
1214
|
+
readonly schema: "evm:erc20";
|
|
1215
|
+
};
|
|
753
1216
|
};
|
|
754
1217
|
readonly USDC: {
|
|
1218
|
+
readonly id: "arbitrum_sepolia:usdc";
|
|
755
1219
|
readonly name: "USD Coin";
|
|
756
|
-
readonly decimals: 6;
|
|
757
1220
|
readonly symbol: "USDC";
|
|
758
|
-
readonly
|
|
759
|
-
readonly
|
|
760
|
-
readonly
|
|
1221
|
+
readonly decimals: 6;
|
|
1222
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1223
|
+
readonly chain: "evm:421614";
|
|
1224
|
+
readonly htlc: {
|
|
1225
|
+
readonly address: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
|
|
1226
|
+
readonly schema: "evm:htlc_erc20";
|
|
1227
|
+
};
|
|
1228
|
+
readonly token: {
|
|
1229
|
+
readonly address: "0xC90Ad772eCc10a52a681ceDAE6EbBD3470A0c829";
|
|
1230
|
+
readonly schema: "evm:erc20";
|
|
1231
|
+
};
|
|
761
1232
|
};
|
|
762
1233
|
readonly SEED: {
|
|
1234
|
+
readonly id: "arbitrum_sepolia:seed";
|
|
763
1235
|
readonly name: "Seed";
|
|
764
|
-
readonly decimals: 18;
|
|
765
1236
|
readonly symbol: "SEED";
|
|
766
|
-
readonly
|
|
767
|
-
readonly
|
|
768
|
-
readonly
|
|
1237
|
+
readonly decimals: 18;
|
|
1238
|
+
readonly icon: "https://garden.imgix.net/token-images/SEED.svg";
|
|
1239
|
+
readonly chain: "evm:421614";
|
|
1240
|
+
readonly htlc: {
|
|
1241
|
+
readonly address: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
|
|
1242
|
+
readonly schema: "evm:htlc_erc20";
|
|
1243
|
+
};
|
|
1244
|
+
readonly token: {
|
|
1245
|
+
readonly address: "0x432B43764548c3E47eA65aAdeB91D75C84DBcC2c";
|
|
1246
|
+
readonly schema: "evm:erc20";
|
|
1247
|
+
};
|
|
769
1248
|
};
|
|
770
1249
|
};
|
|
771
1250
|
readonly base_sepolia: {
|
|
772
1251
|
readonly type: BlockchainType.evm;
|
|
773
1252
|
readonly network: Network.TESTNET;
|
|
774
1253
|
readonly iBTC: {
|
|
1254
|
+
readonly id: "base_sepolia:ibtc";
|
|
775
1255
|
readonly name: "iBTC";
|
|
776
|
-
readonly decimals: 8;
|
|
777
1256
|
readonly symbol: "iBTC";
|
|
778
|
-
readonly
|
|
779
|
-
readonly
|
|
780
|
-
readonly
|
|
1257
|
+
readonly decimals: 8;
|
|
1258
|
+
readonly icon: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
|
|
1259
|
+
readonly chain: "evm:84532";
|
|
1260
|
+
readonly htlc: {
|
|
1261
|
+
readonly address: "0x46F1Ba9C9d89C34F9dbC4085F6B1f9965c589ca1";
|
|
1262
|
+
readonly schema: "evm:htlc_erc20";
|
|
1263
|
+
};
|
|
1264
|
+
readonly token: {
|
|
1265
|
+
readonly address: "0x0b0D554D9573bAe1a7556d220847f45182918B28";
|
|
1266
|
+
readonly schema: "evm:erc20";
|
|
1267
|
+
};
|
|
781
1268
|
};
|
|
782
1269
|
readonly WBTC: {
|
|
1270
|
+
readonly id: "base_sepolia:wbtc";
|
|
783
1271
|
readonly name: "Wrapped Bitcoin";
|
|
784
|
-
readonly decimals: 8;
|
|
785
1272
|
readonly symbol: "WBTC";
|
|
786
|
-
readonly
|
|
787
|
-
readonly
|
|
788
|
-
readonly
|
|
1273
|
+
readonly decimals: 8;
|
|
1274
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1275
|
+
readonly chain: "evm:84532";
|
|
1276
|
+
readonly htlc: {
|
|
1277
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
1278
|
+
readonly schema: "evm:htlc_erc20";
|
|
1279
|
+
};
|
|
1280
|
+
readonly token: {
|
|
1281
|
+
readonly address: "0xD8a6E3FCA403d79b6AD6216b60527F51cc967D39";
|
|
1282
|
+
readonly schema: "evm:erc20";
|
|
1283
|
+
};
|
|
789
1284
|
};
|
|
790
1285
|
readonly USDT: {
|
|
1286
|
+
readonly id: "base_sepolia:usdt";
|
|
791
1287
|
readonly name: "Tether USD";
|
|
792
|
-
readonly decimals: 6;
|
|
793
1288
|
readonly symbol: "USDT";
|
|
794
|
-
readonly
|
|
795
|
-
readonly
|
|
796
|
-
readonly
|
|
1289
|
+
readonly decimals: 6;
|
|
1290
|
+
readonly icon: "https://garden.imgix.net/token-images/usdt.svg";
|
|
1291
|
+
readonly chain: "evm:84532";
|
|
1292
|
+
readonly htlc: {
|
|
1293
|
+
readonly address: "0x917cfef972d667dC0FeC76806cB5623585B81493";
|
|
1294
|
+
readonly schema: "evm:htlc_erc20";
|
|
1295
|
+
};
|
|
1296
|
+
readonly token: {
|
|
1297
|
+
readonly address: "0xeaE7721d779276eb0f5837e2fE260118724a2Ba4";
|
|
1298
|
+
readonly schema: "evm:erc20";
|
|
1299
|
+
};
|
|
797
1300
|
};
|
|
798
1301
|
readonly USDC: {
|
|
1302
|
+
readonly id: "base_sepolia:usdc";
|
|
799
1303
|
readonly name: "USD Coin";
|
|
800
|
-
readonly decimals: 6;
|
|
801
1304
|
readonly symbol: "USDC";
|
|
802
|
-
readonly
|
|
803
|
-
readonly
|
|
804
|
-
readonly
|
|
1305
|
+
readonly decimals: 6;
|
|
1306
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1307
|
+
readonly chain: "evm:84532";
|
|
1308
|
+
readonly htlc: {
|
|
1309
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
1310
|
+
readonly schema: "evm:htlc_erc20";
|
|
1311
|
+
};
|
|
1312
|
+
readonly token: {
|
|
1313
|
+
readonly address: "0x1ac7A0ebf13a996D5915e212900bE2d074f94988";
|
|
1314
|
+
readonly schema: "evm:erc20";
|
|
1315
|
+
};
|
|
805
1316
|
};
|
|
806
1317
|
};
|
|
807
1318
|
readonly bera_testnet: {
|
|
@@ -812,96 +1323,173 @@ export declare const Assets: import('./utils').AssetsType<{
|
|
|
812
1323
|
readonly type: BlockchainType.evm;
|
|
813
1324
|
readonly network: Network.TESTNET;
|
|
814
1325
|
readonly WCBTC: {
|
|
1326
|
+
readonly id: "citrea_testnet:wcbtc";
|
|
815
1327
|
readonly name: "Wrapped Citrea Bitcoin";
|
|
816
|
-
readonly decimals: 18;
|
|
817
1328
|
readonly symbol: "WCBTC";
|
|
818
|
-
readonly
|
|
819
|
-
readonly
|
|
820
|
-
readonly
|
|
1329
|
+
readonly decimals: 18;
|
|
1330
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1331
|
+
readonly chain: "evm:5115";
|
|
1332
|
+
readonly htlc: {
|
|
1333
|
+
readonly address: "0xD8e99df8cf77E7383c2f2a84bC6384b2DF88CAd3";
|
|
1334
|
+
readonly schema: "evm:htlc_erc20";
|
|
1335
|
+
};
|
|
1336
|
+
readonly token: {
|
|
1337
|
+
readonly address: "0x8d0c9d1c17aE5e40ffF9bE350f57840E9E66Cd93";
|
|
1338
|
+
readonly schema: "evm:erc20";
|
|
1339
|
+
};
|
|
821
1340
|
};
|
|
822
1341
|
readonly WBTC: {
|
|
1342
|
+
readonly id: "citrea_testnet:wbtc";
|
|
823
1343
|
readonly name: "Wrapped Bitcoin";
|
|
824
|
-
readonly decimals: 8;
|
|
825
1344
|
readonly symbol: "WBTC";
|
|
826
|
-
readonly
|
|
827
|
-
readonly
|
|
828
|
-
readonly
|
|
1345
|
+
readonly decimals: 8;
|
|
1346
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1347
|
+
readonly chain: "evm:5115";
|
|
1348
|
+
readonly htlc: {
|
|
1349
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
1350
|
+
readonly schema: "evm:htlc_erc20";
|
|
1351
|
+
};
|
|
1352
|
+
readonly token: {
|
|
1353
|
+
readonly address: "0x3edA22460259b29433704dda71cc921F528165Ea";
|
|
1354
|
+
readonly schema: "evm:erc20";
|
|
1355
|
+
};
|
|
829
1356
|
};
|
|
830
1357
|
readonly CBTC: {
|
|
1358
|
+
readonly id: "citrea_testnet:cbtc";
|
|
831
1359
|
readonly name: "Citrea Bitcoin";
|
|
832
|
-
readonly decimals: 18;
|
|
833
1360
|
readonly symbol: "CBTC";
|
|
834
|
-
readonly
|
|
835
|
-
readonly
|
|
836
|
-
readonly
|
|
1361
|
+
readonly decimals: 18;
|
|
1362
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1363
|
+
readonly chain: "evm:5115";
|
|
1364
|
+
readonly htlc: {
|
|
1365
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
1366
|
+
readonly schema: "evm:htlc";
|
|
1367
|
+
};
|
|
1368
|
+
readonly token: null;
|
|
837
1369
|
};
|
|
838
1370
|
readonly CBBTC: {
|
|
839
|
-
readonly
|
|
840
|
-
readonly
|
|
1371
|
+
readonly id: "citrea_testnet:cbbtc";
|
|
1372
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
841
1373
|
readonly symbol: "CBBTC";
|
|
842
|
-
readonly
|
|
843
|
-
readonly
|
|
844
|
-
readonly
|
|
1374
|
+
readonly decimals: 8;
|
|
1375
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1376
|
+
readonly chain: "evm:5115";
|
|
1377
|
+
readonly htlc: {
|
|
1378
|
+
readonly address: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
|
|
1379
|
+
readonly schema: "evm:htlc_erc20";
|
|
1380
|
+
};
|
|
1381
|
+
readonly token: {
|
|
1382
|
+
readonly address: "0xeAa998aF280a62Ae08BaE4f9fa59C9b30e6BD306";
|
|
1383
|
+
readonly schema: "evm:erc20";
|
|
1384
|
+
};
|
|
845
1385
|
};
|
|
846
1386
|
readonly USDC: {
|
|
1387
|
+
readonly id: "citrea_testnet:usdc";
|
|
847
1388
|
readonly name: "USD Coin";
|
|
848
|
-
readonly decimals: 6;
|
|
849
1389
|
readonly symbol: "USDC";
|
|
850
|
-
readonly
|
|
851
|
-
readonly
|
|
852
|
-
readonly
|
|
1390
|
+
readonly decimals: 6;
|
|
1391
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1392
|
+
readonly chain: "evm:5115";
|
|
1393
|
+
readonly htlc: {
|
|
1394
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
1395
|
+
readonly schema: "evm:htlc_erc20";
|
|
1396
|
+
};
|
|
1397
|
+
readonly token: {
|
|
1398
|
+
readonly address: "0xCdA8661fDA031deFCc9BdD88C0e12669Cac47Fb0";
|
|
1399
|
+
readonly schema: "evm:erc20";
|
|
1400
|
+
};
|
|
853
1401
|
};
|
|
854
1402
|
readonly USDT: {
|
|
1403
|
+
readonly id: "citrea_testnet:usdt";
|
|
855
1404
|
readonly name: "Tether USD";
|
|
856
|
-
readonly decimals: 6;
|
|
857
1405
|
readonly symbol: "USDT";
|
|
858
|
-
readonly
|
|
859
|
-
readonly
|
|
860
|
-
readonly
|
|
1406
|
+
readonly decimals: 6;
|
|
1407
|
+
readonly icon: "https://garden.imgix.net/token-images/usdt.svg";
|
|
1408
|
+
readonly chain: "evm:5115";
|
|
1409
|
+
readonly htlc: {
|
|
1410
|
+
readonly address: "0x917cfef972d667dC0FeC76806cB5623585B81493";
|
|
1411
|
+
readonly schema: "evm:htlc_erc20";
|
|
1412
|
+
};
|
|
1413
|
+
readonly token: {
|
|
1414
|
+
readonly address: "0xF5cFE09b852Ddb164cF6Db419B9c11aAb5F30cb6";
|
|
1415
|
+
readonly schema: "evm:erc20";
|
|
1416
|
+
};
|
|
861
1417
|
};
|
|
862
1418
|
};
|
|
863
1419
|
readonly monad_testnet: {
|
|
864
1420
|
readonly type: BlockchainType.evm;
|
|
865
1421
|
readonly network: Network.TESTNET;
|
|
866
|
-
readonly
|
|
1422
|
+
readonly cBBTC: {
|
|
1423
|
+
readonly id: "monad_testnet:cbbtc";
|
|
867
1424
|
readonly name: "Coinbase Wrapped Bitcoin";
|
|
1425
|
+
readonly symbol: "cBBTC";
|
|
868
1426
|
readonly decimals: 8;
|
|
869
|
-
readonly
|
|
870
|
-
readonly
|
|
871
|
-
readonly
|
|
872
|
-
|
|
1427
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
1428
|
+
readonly chain: "evm:10143";
|
|
1429
|
+
readonly htlc: {
|
|
1430
|
+
readonly address: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
|
|
1431
|
+
readonly schema: "evm:htlc_erc20";
|
|
1432
|
+
};
|
|
1433
|
+
readonly token: {
|
|
1434
|
+
readonly address: "0x6b6303fAb8eC7232b4f2a7b9fa58E5216F608fcb";
|
|
1435
|
+
readonly schema: "evm:erc20";
|
|
1436
|
+
};
|
|
873
1437
|
};
|
|
874
1438
|
readonly USDC: {
|
|
1439
|
+
readonly id: "monad_testnet:usdc";
|
|
875
1440
|
readonly name: "USD Coin";
|
|
876
|
-
readonly decimals: 6;
|
|
877
1441
|
readonly symbol: "USDC";
|
|
878
|
-
readonly
|
|
879
|
-
readonly
|
|
880
|
-
readonly
|
|
1442
|
+
readonly decimals: 6;
|
|
1443
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1444
|
+
readonly chain: "evm:10143";
|
|
1445
|
+
readonly htlc: {
|
|
1446
|
+
readonly address: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
|
|
1447
|
+
readonly schema: "evm:htlc_erc20";
|
|
1448
|
+
};
|
|
1449
|
+
readonly token: {
|
|
1450
|
+
readonly address: "0xf817257fed379853cde0fa4f97ab987181b1e5ea";
|
|
1451
|
+
readonly schema: "evm:erc20";
|
|
1452
|
+
};
|
|
881
1453
|
};
|
|
882
1454
|
};
|
|
883
1455
|
readonly starknet_sepolia: {
|
|
884
1456
|
readonly type: BlockchainType.starknet;
|
|
885
1457
|
readonly network: Network.TESTNET;
|
|
886
1458
|
readonly WBTC: {
|
|
1459
|
+
readonly id: "starknet_sepolia:wbtc";
|
|
887
1460
|
readonly name: "Wrapped Bitcoin";
|
|
888
|
-
readonly decimals: 8;
|
|
889
1461
|
readonly symbol: "WBTC";
|
|
890
|
-
readonly
|
|
891
|
-
readonly
|
|
892
|
-
readonly
|
|
1462
|
+
readonly decimals: 8;
|
|
1463
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1464
|
+
readonly chain: "starknet:393402133025997798000961";
|
|
1465
|
+
readonly htlc: {
|
|
1466
|
+
readonly address: "0x06579d255314109429a4477d89629bc2b94f529ae01979c2f8014f9246482603";
|
|
1467
|
+
readonly schema: "starknet:htlc_erc20";
|
|
1468
|
+
};
|
|
1469
|
+
readonly token: {
|
|
1470
|
+
readonly address: "0x496bef3ed20371382fbe0ca6a5a64252c5c848f9f1f0cccf8110fc4def912d5";
|
|
1471
|
+
readonly schema: "starknet:erc20";
|
|
1472
|
+
};
|
|
893
1473
|
};
|
|
894
1474
|
};
|
|
895
1475
|
readonly sui_testnet: {
|
|
896
1476
|
readonly type: BlockchainType.sui;
|
|
897
1477
|
readonly network: Network.TESTNET;
|
|
898
1478
|
readonly SUI: {
|
|
1479
|
+
readonly id: "sui_testnet:sui";
|
|
899
1480
|
readonly name: "SUI";
|
|
900
|
-
readonly decimals: 9;
|
|
901
1481
|
readonly symbol: "SUI";
|
|
902
|
-
readonly
|
|
903
|
-
readonly
|
|
904
|
-
readonly
|
|
1482
|
+
readonly decimals: 9;
|
|
1483
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/sui.svg";
|
|
1484
|
+
readonly chain: "sui";
|
|
1485
|
+
readonly htlc: {
|
|
1486
|
+
readonly address: "0x5c438715b7dcc02d12ab92449153a1e5ade2301620d5bf60aa748f006726d369";
|
|
1487
|
+
readonly schema: null;
|
|
1488
|
+
};
|
|
1489
|
+
readonly token: {
|
|
1490
|
+
readonly address: "0x2::sui::SUI";
|
|
1491
|
+
readonly schema: null;
|
|
1492
|
+
};
|
|
905
1493
|
};
|
|
906
1494
|
};
|
|
907
1495
|
readonly hyperliquid_testnet: {
|
|
@@ -912,293 +1500,521 @@ export declare const Assets: import('./utils').AssetsType<{
|
|
|
912
1500
|
readonly type: BlockchainType.evm;
|
|
913
1501
|
readonly network: Network.TESTNET;
|
|
914
1502
|
readonly WBTC: {
|
|
1503
|
+
readonly id: "bnbchain_testnet:wbtc";
|
|
915
1504
|
readonly name: "Wrapped Bitcoin";
|
|
916
|
-
readonly decimals: 8;
|
|
917
1505
|
readonly symbol: "WBTC";
|
|
918
|
-
readonly
|
|
919
|
-
readonly
|
|
920
|
-
readonly
|
|
1506
|
+
readonly decimals: 8;
|
|
1507
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1508
|
+
readonly chain: "evm:97";
|
|
1509
|
+
readonly htlc: {
|
|
1510
|
+
readonly address: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
|
|
1511
|
+
readonly schema: "evm:htlc_erc20";
|
|
1512
|
+
};
|
|
1513
|
+
readonly token: {
|
|
1514
|
+
readonly address: "0x39f3294352208905fc6ebf033954E6c6455CdB4C";
|
|
1515
|
+
readonly schema: "evm:erc20";
|
|
1516
|
+
};
|
|
1517
|
+
};
|
|
1518
|
+
};
|
|
1519
|
+
readonly alpen_testnet: {
|
|
1520
|
+
readonly type: BlockchainType.evm;
|
|
1521
|
+
readonly network: Network.TESTNET;
|
|
1522
|
+
readonly sBTC: {
|
|
1523
|
+
readonly id: "alpen_testnet:sbtc";
|
|
1524
|
+
readonly name: "Signet Bitcoin";
|
|
1525
|
+
readonly symbol: "sBTC";
|
|
1526
|
+
readonly decimals: 18;
|
|
1527
|
+
readonly icon: "https://avatars.githubusercontent.com/u/113091135";
|
|
1528
|
+
readonly chain: "evm:2892";
|
|
1529
|
+
readonly htlc: {
|
|
1530
|
+
readonly address: "0x39269522737a4a155F78EC1B1BDb86288c1Fcf67";
|
|
1531
|
+
readonly schema: "evm:htlc";
|
|
1532
|
+
};
|
|
1533
|
+
readonly token: null;
|
|
1534
|
+
};
|
|
1535
|
+
readonly USDC: {
|
|
1536
|
+
readonly id: "alpen_testnet:usdc";
|
|
1537
|
+
readonly name: "USD Coin";
|
|
1538
|
+
readonly symbol: "USDC";
|
|
1539
|
+
readonly decimals: 6;
|
|
1540
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1541
|
+
readonly chain: "evm:2892";
|
|
1542
|
+
readonly htlc: {
|
|
1543
|
+
readonly address: "0x45b0d0c85bEb4512610fC2627CCB1587A7a044d4";
|
|
1544
|
+
readonly schema: "evm:htlc_erc20";
|
|
1545
|
+
};
|
|
1546
|
+
readonly token: {
|
|
1547
|
+
readonly address: "0x9753D0481fC7e18797877B4e731B496439c849dE";
|
|
1548
|
+
readonly schema: "evm:erc20";
|
|
1549
|
+
};
|
|
921
1550
|
};
|
|
922
1551
|
};
|
|
923
1552
|
readonly bitcoin: {
|
|
924
1553
|
readonly type: BlockchainType.bitcoin;
|
|
925
1554
|
readonly network: Network.MAINNET;
|
|
926
1555
|
readonly BTC: {
|
|
1556
|
+
readonly id: "bitcoin:btc";
|
|
927
1557
|
readonly name: "Bitcoin";
|
|
928
|
-
readonly decimals: 8;
|
|
929
1558
|
readonly symbol: "BTC";
|
|
930
|
-
readonly
|
|
931
|
-
readonly
|
|
932
|
-
readonly
|
|
1559
|
+
readonly decimals: 8;
|
|
1560
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1561
|
+
readonly chain: "bitcoin";
|
|
1562
|
+
readonly htlc: null;
|
|
1563
|
+
readonly token: null;
|
|
933
1564
|
};
|
|
934
1565
|
};
|
|
935
1566
|
readonly base: {
|
|
936
1567
|
readonly type: BlockchainType.evm;
|
|
937
1568
|
readonly network: Network.MAINNET;
|
|
938
1569
|
readonly USDC: {
|
|
1570
|
+
readonly id: "base:usdc";
|
|
939
1571
|
readonly name: "USD Coin";
|
|
940
|
-
readonly decimals: 6;
|
|
941
1572
|
readonly symbol: "USDC";
|
|
942
|
-
readonly
|
|
943
|
-
readonly
|
|
944
|
-
readonly
|
|
1573
|
+
readonly decimals: 6;
|
|
1574
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1575
|
+
readonly chain: "evm:8453";
|
|
1576
|
+
readonly htlc: {
|
|
1577
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
1578
|
+
readonly schema: "evm:htlc_erc20";
|
|
1579
|
+
};
|
|
1580
|
+
readonly token: {
|
|
1581
|
+
readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
|
|
1582
|
+
readonly schema: "evm:erc20";
|
|
1583
|
+
};
|
|
945
1584
|
};
|
|
946
1585
|
readonly cBBTC: {
|
|
947
|
-
readonly
|
|
948
|
-
readonly
|
|
1586
|
+
readonly id: "base:cbbtc";
|
|
1587
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
949
1588
|
readonly symbol: "cBBTC";
|
|
950
|
-
readonly
|
|
951
|
-
readonly
|
|
952
|
-
readonly
|
|
1589
|
+
readonly decimals: 8;
|
|
1590
|
+
readonly icon: "https://coin-images.coingecko.com/coins/images/51336/large/cbbtc.png?1730814747";
|
|
1591
|
+
readonly chain: "evm:8453";
|
|
1592
|
+
readonly htlc: {
|
|
1593
|
+
readonly address: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
|
|
1594
|
+
readonly schema: "evm:htlc_erc20";
|
|
1595
|
+
};
|
|
1596
|
+
readonly token: {
|
|
1597
|
+
readonly address: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
|
|
1598
|
+
readonly schema: "evm:erc20";
|
|
1599
|
+
};
|
|
953
1600
|
};
|
|
954
1601
|
};
|
|
955
1602
|
readonly arbitrum: {
|
|
956
1603
|
readonly type: BlockchainType.evm;
|
|
957
1604
|
readonly network: Network.MAINNET;
|
|
958
1605
|
readonly WBTC: {
|
|
1606
|
+
readonly id: "arbitrum:wbtc";
|
|
959
1607
|
readonly name: "Wrapped Bitcoin";
|
|
960
|
-
readonly decimals: 8;
|
|
961
1608
|
readonly symbol: "WBTC";
|
|
962
|
-
readonly
|
|
963
|
-
readonly
|
|
964
|
-
readonly
|
|
1609
|
+
readonly decimals: 8;
|
|
1610
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1611
|
+
readonly chain: "evm:42161";
|
|
1612
|
+
readonly htlc: {
|
|
1613
|
+
readonly address: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
|
|
1614
|
+
readonly schema: "evm:htlc_erc20";
|
|
1615
|
+
};
|
|
1616
|
+
readonly token: {
|
|
1617
|
+
readonly address: "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f";
|
|
1618
|
+
readonly schema: "evm:erc20";
|
|
1619
|
+
};
|
|
965
1620
|
};
|
|
966
1621
|
readonly USDC: {
|
|
1622
|
+
readonly id: "arbitrum:usdc";
|
|
967
1623
|
readonly name: "USD Coin";
|
|
968
|
-
readonly decimals: 6;
|
|
969
1624
|
readonly symbol: "USDC";
|
|
970
|
-
readonly
|
|
971
|
-
readonly
|
|
972
|
-
readonly
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
readonly
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
1625
|
+
readonly decimals: 6;
|
|
1626
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1627
|
+
readonly chain: "evm:42161";
|
|
1628
|
+
readonly htlc: {
|
|
1629
|
+
readonly address: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
|
|
1630
|
+
readonly schema: "evm:htlc_erc20";
|
|
1631
|
+
};
|
|
1632
|
+
readonly token: {
|
|
1633
|
+
readonly address: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831";
|
|
1634
|
+
readonly schema: "evm:erc20";
|
|
1635
|
+
};
|
|
981
1636
|
};
|
|
982
1637
|
readonly SEED: {
|
|
983
|
-
readonly
|
|
984
|
-
readonly
|
|
1638
|
+
readonly id: "arbitrum:seed";
|
|
1639
|
+
readonly name: "SEED";
|
|
985
1640
|
readonly symbol: "SEED";
|
|
986
|
-
readonly
|
|
987
|
-
readonly
|
|
988
|
-
readonly
|
|
1641
|
+
readonly decimals: 18;
|
|
1642
|
+
readonly icon: "https://garden.imgix.net/token-images/SEED.svg";
|
|
1643
|
+
readonly chain: "evm:42161";
|
|
1644
|
+
readonly htlc: {
|
|
1645
|
+
readonly address: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
|
|
1646
|
+
readonly schema: "evm:htlc_erc20";
|
|
1647
|
+
};
|
|
1648
|
+
readonly token: {
|
|
1649
|
+
readonly address: "0x86f65121804D2Cdbef79F9f072D4e0c2eEbABC08";
|
|
1650
|
+
readonly schema: "evm:erc20";
|
|
1651
|
+
};
|
|
989
1652
|
};
|
|
990
1653
|
};
|
|
991
1654
|
readonly ethereum: {
|
|
992
1655
|
readonly type: BlockchainType.evm;
|
|
993
1656
|
readonly network: Network.MAINNET;
|
|
994
1657
|
readonly ETH: {
|
|
1658
|
+
readonly id: "ethereum:eth";
|
|
995
1659
|
readonly name: "Ethereum";
|
|
996
|
-
readonly decimals: 18;
|
|
997
1660
|
readonly symbol: "ETH";
|
|
998
|
-
readonly
|
|
999
|
-
readonly
|
|
1000
|
-
readonly
|
|
1661
|
+
readonly decimals: 18;
|
|
1662
|
+
readonly icon: "https://garden.imgix.net/chain_images/ethereum.svg";
|
|
1663
|
+
readonly chain: "evm:1";
|
|
1664
|
+
readonly htlc: {
|
|
1665
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
1666
|
+
readonly schema: "evm:htlc";
|
|
1667
|
+
};
|
|
1668
|
+
readonly token: null;
|
|
1001
1669
|
};
|
|
1002
1670
|
readonly USDC: {
|
|
1671
|
+
readonly id: "ethereum:usdc";
|
|
1003
1672
|
readonly name: "USD Coin";
|
|
1004
|
-
readonly decimals: 6;
|
|
1005
1673
|
readonly symbol: "USDC";
|
|
1006
|
-
readonly
|
|
1007
|
-
readonly
|
|
1008
|
-
readonly
|
|
1674
|
+
readonly decimals: 6;
|
|
1675
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1676
|
+
readonly chain: "evm:1";
|
|
1677
|
+
readonly htlc: {
|
|
1678
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
1679
|
+
readonly schema: "evm:htlc_erc20";
|
|
1680
|
+
};
|
|
1681
|
+
readonly token: {
|
|
1682
|
+
readonly address: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48";
|
|
1683
|
+
readonly schema: "evm:erc20";
|
|
1684
|
+
};
|
|
1009
1685
|
};
|
|
1010
1686
|
readonly WBTC: {
|
|
1687
|
+
readonly id: "ethereum:wbtc";
|
|
1011
1688
|
readonly name: "Wrapped Bitcoin";
|
|
1012
|
-
readonly decimals: 8;
|
|
1013
1689
|
readonly symbol: "WBTC";
|
|
1014
|
-
readonly
|
|
1015
|
-
readonly
|
|
1016
|
-
readonly
|
|
1690
|
+
readonly decimals: 8;
|
|
1691
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1692
|
+
readonly chain: "evm:1";
|
|
1693
|
+
readonly htlc: {
|
|
1694
|
+
readonly address: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
|
|
1695
|
+
readonly schema: "evm:htlc_erc20";
|
|
1696
|
+
};
|
|
1697
|
+
readonly token: {
|
|
1698
|
+
readonly address: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599";
|
|
1699
|
+
readonly schema: "evm:erc20";
|
|
1700
|
+
};
|
|
1017
1701
|
};
|
|
1018
1702
|
readonly cBBTC: {
|
|
1019
|
-
readonly
|
|
1020
|
-
readonly
|
|
1703
|
+
readonly id: "ethereum:cbbtc";
|
|
1704
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
1021
1705
|
readonly symbol: "cBBTC";
|
|
1022
|
-
readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
1023
|
-
readonly atomicSwapAddress: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
|
|
1024
|
-
readonly tokenAddress: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
|
|
1025
|
-
};
|
|
1026
|
-
readonly iBTC: {
|
|
1027
|
-
readonly name: "iBTC";
|
|
1028
1706
|
readonly decimals: 8;
|
|
1029
|
-
readonly
|
|
1030
|
-
readonly
|
|
1031
|
-
readonly
|
|
1032
|
-
|
|
1707
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
1708
|
+
readonly chain: "evm:1";
|
|
1709
|
+
readonly htlc: {
|
|
1710
|
+
readonly address: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
|
|
1711
|
+
readonly schema: "evm:htlc_erc20";
|
|
1712
|
+
};
|
|
1713
|
+
readonly token: {
|
|
1714
|
+
readonly address: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
|
|
1715
|
+
readonly schema: "evm:erc20";
|
|
1716
|
+
};
|
|
1033
1717
|
};
|
|
1034
1718
|
readonly SEED: {
|
|
1035
|
-
readonly
|
|
1036
|
-
readonly
|
|
1719
|
+
readonly id: "ethereum:seed";
|
|
1720
|
+
readonly name: "SEED";
|
|
1037
1721
|
readonly symbol: "SEED";
|
|
1038
|
-
readonly
|
|
1039
|
-
readonly
|
|
1040
|
-
readonly
|
|
1722
|
+
readonly decimals: 18;
|
|
1723
|
+
readonly icon: "https://garden.imgix.net/token-images/SEED.svg";
|
|
1724
|
+
readonly chain: "evm:1";
|
|
1725
|
+
readonly htlc: {
|
|
1726
|
+
readonly address: "0xCE511De667885f92B8c36fcfC79C3B5bEb875463";
|
|
1727
|
+
readonly schema: "evm:htlc_erc20";
|
|
1728
|
+
};
|
|
1729
|
+
readonly token: {
|
|
1730
|
+
readonly address: "0x5eed99d066a8CaF10f3E4327c1b3D8b673485eED";
|
|
1731
|
+
readonly schema: "evm:erc20";
|
|
1732
|
+
};
|
|
1041
1733
|
};
|
|
1042
1734
|
};
|
|
1043
1735
|
readonly solana: {
|
|
1044
1736
|
readonly type: BlockchainType.solana;
|
|
1045
1737
|
readonly network: Network.MAINNET;
|
|
1046
1738
|
readonly SOL: {
|
|
1739
|
+
readonly id: "solana:sol";
|
|
1047
1740
|
readonly name: "Solana";
|
|
1048
|
-
readonly decimals: 9;
|
|
1049
1741
|
readonly symbol: "SOL";
|
|
1050
|
-
readonly
|
|
1051
|
-
readonly
|
|
1052
|
-
readonly
|
|
1742
|
+
readonly decimals: 9;
|
|
1743
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/solana.png";
|
|
1744
|
+
readonly chain: "solana:101";
|
|
1745
|
+
readonly htlc: {
|
|
1746
|
+
readonly address: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF";
|
|
1747
|
+
readonly schema: "solana:htlc";
|
|
1748
|
+
};
|
|
1749
|
+
readonly token: null;
|
|
1053
1750
|
};
|
|
1054
1751
|
readonly USDC: {
|
|
1752
|
+
readonly id: "solana:usdc";
|
|
1055
1753
|
readonly name: "USD Coin";
|
|
1056
|
-
readonly decimals: 6;
|
|
1057
1754
|
readonly symbol: "USDC";
|
|
1058
|
-
readonly
|
|
1059
|
-
readonly
|
|
1060
|
-
readonly
|
|
1755
|
+
readonly decimals: 6;
|
|
1756
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1757
|
+
readonly chain: "solana:101";
|
|
1758
|
+
readonly htlc: {
|
|
1759
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
1760
|
+
readonly schema: "solana:htlc_spltoken";
|
|
1761
|
+
};
|
|
1762
|
+
readonly token: {
|
|
1763
|
+
readonly address: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
|
|
1764
|
+
readonly schema: "primary";
|
|
1765
|
+
};
|
|
1061
1766
|
};
|
|
1062
1767
|
readonly cBBTC: {
|
|
1063
|
-
readonly
|
|
1064
|
-
readonly
|
|
1768
|
+
readonly id: "solana:cbbtc";
|
|
1769
|
+
readonly name: "Coinbase Wrapped Bitcoin";
|
|
1065
1770
|
readonly symbol: "cBBTC";
|
|
1066
|
-
readonly
|
|
1067
|
-
readonly
|
|
1068
|
-
readonly
|
|
1771
|
+
readonly decimals: 8;
|
|
1772
|
+
readonly icon: "https://garden.imgix.net/token-images/cbBTC.svg";
|
|
1773
|
+
readonly chain: "solana:101";
|
|
1774
|
+
readonly htlc: {
|
|
1775
|
+
readonly address: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
|
|
1776
|
+
readonly schema: "solana:htlc_spltoken";
|
|
1777
|
+
};
|
|
1778
|
+
readonly token: {
|
|
1779
|
+
readonly address: "cbbtcf3aa214zXHbiAZQwf4122FBYbraNdFqgw4iMij";
|
|
1780
|
+
readonly schema: "primary";
|
|
1781
|
+
};
|
|
1069
1782
|
};
|
|
1070
1783
|
};
|
|
1071
1784
|
readonly bera: {
|
|
1072
1785
|
readonly type: BlockchainType.evm;
|
|
1073
1786
|
readonly network: Network.MAINNET;
|
|
1074
1787
|
readonly LBTC: {
|
|
1075
|
-
readonly
|
|
1076
|
-
readonly
|
|
1788
|
+
readonly id: "bera:lbtc";
|
|
1789
|
+
readonly name: "Lombard Bitcoin";
|
|
1077
1790
|
readonly symbol: "LBTC";
|
|
1078
|
-
readonly
|
|
1079
|
-
readonly
|
|
1080
|
-
readonly
|
|
1791
|
+
readonly decimals: 8;
|
|
1792
|
+
readonly icon: "https://garden.imgix.net/token-images/LBTC.svg";
|
|
1793
|
+
readonly chain: "evm:80094";
|
|
1794
|
+
readonly htlc: {
|
|
1795
|
+
readonly address: "0x84A396920d8B8CA2e69bD9503Bc1B2f73f1b8b33";
|
|
1796
|
+
readonly schema: "evm:htlc_erc20";
|
|
1797
|
+
};
|
|
1798
|
+
readonly token: {
|
|
1799
|
+
readonly address: "0xecAc9C5F704e954931349Da37F60E39f515c11c1";
|
|
1800
|
+
readonly schema: "evm:erc20";
|
|
1801
|
+
};
|
|
1081
1802
|
};
|
|
1082
1803
|
};
|
|
1083
1804
|
readonly starknet: {
|
|
1084
1805
|
readonly type: BlockchainType.starknet;
|
|
1085
1806
|
readonly network: Network.MAINNET;
|
|
1086
1807
|
readonly WBTC: {
|
|
1808
|
+
readonly id: "starknet:wbtc";
|
|
1087
1809
|
readonly name: "Wrapped Bitcoin";
|
|
1088
|
-
readonly decimals: 8;
|
|
1089
1810
|
readonly symbol: "WBTC";
|
|
1090
|
-
readonly
|
|
1091
|
-
readonly
|
|
1092
|
-
readonly
|
|
1811
|
+
readonly decimals: 8;
|
|
1812
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1813
|
+
readonly chain: "starknet:23448594291968334";
|
|
1814
|
+
readonly htlc: {
|
|
1815
|
+
readonly address: "0x7defd8eb3b770005ab1ca5f89ad31f98fb5bc3c52deaeafd130be3b49f967b4";
|
|
1816
|
+
readonly schema: "starknet:htlc_erc20";
|
|
1817
|
+
};
|
|
1818
|
+
readonly token: {
|
|
1819
|
+
readonly address: "0x3fe2b97c1fd336e750087d68b9b867997fd64a2661ff3ca5a7c771641e8e7ac";
|
|
1820
|
+
readonly schema: "starknet:erc20";
|
|
1821
|
+
};
|
|
1093
1822
|
};
|
|
1094
1823
|
};
|
|
1095
1824
|
readonly sui: {
|
|
1096
1825
|
readonly type: BlockchainType.sui;
|
|
1097
1826
|
readonly network: Network.MAINNET;
|
|
1098
1827
|
readonly SUI: {
|
|
1099
|
-
readonly
|
|
1100
|
-
readonly
|
|
1828
|
+
readonly id: "sui:sui";
|
|
1829
|
+
readonly name: "SUI";
|
|
1101
1830
|
readonly symbol: "SUI";
|
|
1102
|
-
readonly
|
|
1103
|
-
readonly
|
|
1104
|
-
readonly
|
|
1831
|
+
readonly decimals: 9;
|
|
1832
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/sui.svg";
|
|
1833
|
+
readonly chain: "sui:0";
|
|
1834
|
+
readonly htlc: {
|
|
1835
|
+
readonly address: "0xa4f4e653547e98d4b541378e14db2393a09aff4b829f158b133d2eb3c3a942b5";
|
|
1836
|
+
readonly schema: null;
|
|
1837
|
+
};
|
|
1838
|
+
readonly token: {
|
|
1839
|
+
readonly address: "0x2::sui::SUI";
|
|
1840
|
+
readonly schema: null;
|
|
1841
|
+
};
|
|
1105
1842
|
};
|
|
1106
1843
|
};
|
|
1107
1844
|
readonly hyperliquid: {
|
|
1108
1845
|
readonly type: BlockchainType.evm;
|
|
1109
1846
|
readonly network: Network.MAINNET;
|
|
1110
1847
|
readonly uBTC: {
|
|
1111
|
-
readonly
|
|
1112
|
-
readonly
|
|
1848
|
+
readonly id: "hyperliquid:ubtc";
|
|
1849
|
+
readonly name: "Unit Bitcoin";
|
|
1113
1850
|
readonly symbol: "uBTC";
|
|
1114
|
-
readonly
|
|
1115
|
-
readonly
|
|
1116
|
-
readonly
|
|
1851
|
+
readonly decimals: 8;
|
|
1852
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1853
|
+
readonly chain: "evm:999";
|
|
1854
|
+
readonly htlc: {
|
|
1855
|
+
readonly address: "0xDC74a45e86DEdf1fF7c6dac77e0c2F082f9E4F72";
|
|
1856
|
+
readonly schema: "evm:htlc_erc20";
|
|
1857
|
+
};
|
|
1858
|
+
readonly token: {
|
|
1859
|
+
readonly address: "0x9FDBdA0A5e284c32744D2f17Ee5c74B284993463";
|
|
1860
|
+
readonly schema: "evm:erc20";
|
|
1861
|
+
};
|
|
1117
1862
|
};
|
|
1118
1863
|
};
|
|
1119
1864
|
readonly unichain: {
|
|
1120
1865
|
readonly type: BlockchainType.evm;
|
|
1121
1866
|
readonly network: Network.MAINNET;
|
|
1122
1867
|
readonly WBTC: {
|
|
1868
|
+
readonly id: "unichain:wbtc";
|
|
1123
1869
|
readonly name: "Wrapped Bitcoin";
|
|
1124
|
-
readonly decimals: 8;
|
|
1125
1870
|
readonly symbol: "WBTC";
|
|
1126
|
-
readonly
|
|
1127
|
-
readonly
|
|
1128
|
-
readonly
|
|
1871
|
+
readonly decimals: 8;
|
|
1872
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1873
|
+
readonly chain: "evm:130";
|
|
1874
|
+
readonly htlc: {
|
|
1875
|
+
readonly address: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
|
|
1876
|
+
readonly schema: "evm:htlc_erc20";
|
|
1877
|
+
};
|
|
1878
|
+
readonly token: {
|
|
1879
|
+
readonly address: "0x927B51f251480a681271180DA4de28D44EC4AfB8";
|
|
1880
|
+
readonly schema: "evm:erc20";
|
|
1881
|
+
};
|
|
1129
1882
|
};
|
|
1130
1883
|
readonly USDC: {
|
|
1884
|
+
readonly id: "unichain:usdc";
|
|
1131
1885
|
readonly name: "USD Coin";
|
|
1132
|
-
readonly decimals: 6;
|
|
1133
1886
|
readonly symbol: "USDC";
|
|
1134
|
-
readonly
|
|
1135
|
-
readonly
|
|
1136
|
-
readonly
|
|
1887
|
+
readonly decimals: 6;
|
|
1888
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1889
|
+
readonly chain: "evm:130";
|
|
1890
|
+
readonly htlc: {
|
|
1891
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
1892
|
+
readonly schema: "evm:htlc_erc20";
|
|
1893
|
+
};
|
|
1894
|
+
readonly token: {
|
|
1895
|
+
readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
|
|
1896
|
+
readonly schema: "evm:erc20";
|
|
1897
|
+
};
|
|
1137
1898
|
};
|
|
1138
1899
|
};
|
|
1139
1900
|
readonly corn: {
|
|
1140
1901
|
readonly type: BlockchainType.evm;
|
|
1141
1902
|
readonly network: Network.MAINNET;
|
|
1142
1903
|
readonly BTCN: {
|
|
1904
|
+
readonly id: "corn:btcn";
|
|
1143
1905
|
readonly name: "Bitcorn";
|
|
1144
|
-
readonly decimals: 18;
|
|
1145
1906
|
readonly symbol: "BTCN";
|
|
1146
|
-
readonly
|
|
1147
|
-
readonly
|
|
1148
|
-
readonly
|
|
1907
|
+
readonly decimals: 18;
|
|
1908
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcorn.svg";
|
|
1909
|
+
readonly chain: "evm:21000000";
|
|
1910
|
+
readonly htlc: {
|
|
1911
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
1912
|
+
readonly schema: "evm:htlc";
|
|
1913
|
+
};
|
|
1914
|
+
readonly token: null;
|
|
1149
1915
|
};
|
|
1150
1916
|
};
|
|
1151
1917
|
readonly botanix: {
|
|
1152
1918
|
readonly type: BlockchainType.evm;
|
|
1153
1919
|
readonly network: Network.MAINNET;
|
|
1154
1920
|
readonly BTC: {
|
|
1921
|
+
readonly id: "botanix:btc";
|
|
1155
1922
|
readonly name: "Botanix Bitcoin";
|
|
1156
|
-
readonly decimals: 18;
|
|
1157
1923
|
readonly symbol: "BTC";
|
|
1158
|
-
readonly
|
|
1159
|
-
readonly
|
|
1160
|
-
readonly
|
|
1924
|
+
readonly decimals: 18;
|
|
1925
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1926
|
+
readonly chain: "evm:3637";
|
|
1927
|
+
readonly htlc: {
|
|
1928
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
1929
|
+
readonly schema: "evm:htlc";
|
|
1930
|
+
};
|
|
1931
|
+
readonly token: null;
|
|
1161
1932
|
};
|
|
1162
1933
|
};
|
|
1163
1934
|
readonly bnbchain: {
|
|
1164
1935
|
readonly type: BlockchainType.evm;
|
|
1165
1936
|
readonly network: Network.MAINNET;
|
|
1166
1937
|
readonly BTCB: {
|
|
1167
|
-
readonly
|
|
1168
|
-
readonly
|
|
1938
|
+
readonly id: "bnbchain:btcb";
|
|
1939
|
+
readonly name: "Binance Bitcoin";
|
|
1169
1940
|
readonly symbol: "BTCB";
|
|
1170
|
-
readonly
|
|
1171
|
-
readonly
|
|
1172
|
-
readonly
|
|
1941
|
+
readonly decimals: 18;
|
|
1942
|
+
readonly icon: "https://garden.imgix.net/token-images/bitcoin.svg";
|
|
1943
|
+
readonly chain: "evm:56";
|
|
1944
|
+
readonly htlc: {
|
|
1945
|
+
readonly address: "0xe74784E5A45528fDEcB257477DD6bd31c8ef0761";
|
|
1946
|
+
readonly schema: "evm:htlc_erc20";
|
|
1947
|
+
};
|
|
1948
|
+
readonly token: {
|
|
1949
|
+
readonly address: "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c";
|
|
1950
|
+
readonly schema: "evm:erc20";
|
|
1951
|
+
};
|
|
1173
1952
|
};
|
|
1174
1953
|
readonly USDC: {
|
|
1954
|
+
readonly id: "bnbchain:usdc";
|
|
1175
1955
|
readonly name: "USD Coin";
|
|
1176
|
-
readonly decimals: 18;
|
|
1177
1956
|
readonly symbol: "USDC";
|
|
1178
|
-
readonly
|
|
1179
|
-
readonly
|
|
1180
|
-
readonly
|
|
1957
|
+
readonly decimals: 18;
|
|
1958
|
+
readonly icon: "https://garden.imgix.net/token-images/usdc.svg";
|
|
1959
|
+
readonly chain: "evm:56";
|
|
1960
|
+
readonly htlc: {
|
|
1961
|
+
readonly address: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
|
|
1962
|
+
readonly schema: "evm:htlc_erc20";
|
|
1963
|
+
};
|
|
1964
|
+
readonly token: {
|
|
1965
|
+
readonly address: "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d";
|
|
1966
|
+
readonly schema: "evm:erc20";
|
|
1967
|
+
};
|
|
1968
|
+
};
|
|
1969
|
+
readonly BNB: {
|
|
1970
|
+
readonly id: "bnbchain:bnb";
|
|
1971
|
+
readonly name: "BNB";
|
|
1972
|
+
readonly symbol: "BNB";
|
|
1973
|
+
readonly decimals: 18;
|
|
1974
|
+
readonly icon: "https://garden-finance.imgix.net/chain_images/bnb.png";
|
|
1975
|
+
readonly chain: "evm:56";
|
|
1976
|
+
readonly htlc: {
|
|
1977
|
+
readonly address: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
|
|
1978
|
+
readonly schema: "evm:htlc";
|
|
1979
|
+
};
|
|
1980
|
+
readonly token: null;
|
|
1181
1981
|
};
|
|
1182
1982
|
};
|
|
1183
1983
|
readonly core: {
|
|
1184
1984
|
readonly type: BlockchainType.evm;
|
|
1185
1985
|
readonly network: Network.MAINNET;
|
|
1186
1986
|
readonly WBTC: {
|
|
1987
|
+
readonly id: "core:wbtc";
|
|
1187
1988
|
readonly name: "Wrapped Bitcoin";
|
|
1188
|
-
readonly decimals: 8;
|
|
1189
1989
|
readonly symbol: "WBTC";
|
|
1190
|
-
readonly
|
|
1191
|
-
readonly
|
|
1192
|
-
readonly
|
|
1990
|
+
readonly decimals: 8;
|
|
1991
|
+
readonly icon: "https://garden.imgix.net/token-images/wbtc.svg";
|
|
1992
|
+
readonly chain: "evm:1116";
|
|
1993
|
+
readonly htlc: {
|
|
1994
|
+
readonly address: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
|
|
1995
|
+
readonly schema: "evm:htlc_erc20";
|
|
1996
|
+
};
|
|
1997
|
+
readonly token: {
|
|
1998
|
+
readonly address: "0x5832f53d147b3d6Cd4578B9CBD62425C7ea9d0Bd";
|
|
1999
|
+
readonly schema: "evm:erc20";
|
|
2000
|
+
};
|
|
1193
2001
|
};
|
|
1194
2002
|
};
|
|
2003
|
+
readonly hypercore: {
|
|
2004
|
+
readonly type: BlockchainType.evm;
|
|
2005
|
+
readonly network: Network.MAINNET;
|
|
2006
|
+
};
|
|
2007
|
+
readonly hypercore_testnet: {
|
|
2008
|
+
readonly type: BlockchainType.evm;
|
|
2009
|
+
readonly network: Network.TESTNET;
|
|
2010
|
+
};
|
|
1195
2011
|
}>;
|
|
1196
2012
|
export declare const isMainnet: (chain: Chain) => boolean;
|
|
1197
2013
|
export declare function is<T extends BlockchainType>(type: T): (chain: Chain) => chain is Extract<Chain, ChainsByBlockchainType<T>>;
|
|
1198
|
-
export declare const isEVM: (chain: Chain) => chain is "arbitrum_localnet" | "ethereum_localnet" | "ethereum_sepolia" | "arbitrum_sepolia" | "base_sepolia" | "bera_testnet" | "citrea_testnet" | "monad_testnet" | "hyperliquid_testnet" | "bnbchain_testnet" | "base" | "arbitrum" | "ethereum" | "bera" | "hyperliquid" | "unichain" | "corn" | "botanix" | "bnbchain" | "core";
|
|
2014
|
+
export declare const isEVM: (chain: Chain) => chain is "arbitrum_localnet" | "ethereum_localnet" | "ethereum_sepolia" | "arbitrum_sepolia" | "base_sepolia" | "bera_testnet" | "citrea_testnet" | "monad_testnet" | "hyperliquid_testnet" | "bnbchain_testnet" | "alpen_testnet" | "base" | "arbitrum" | "ethereum" | "bera" | "hyperliquid" | "unichain" | "corn" | "botanix" | "bnbchain" | "core" | "hypercore" | "hypercore_testnet";
|
|
1199
2015
|
export declare const isBitcoin: (chain: Chain) => chain is "bitcoin" | "bitcoin_regtest" | "bitcoin_testnet";
|
|
1200
|
-
export declare const isSolana: (chain: Chain) => chain is "
|
|
1201
|
-
export declare const isStarknet: (chain: Chain) => chain is "
|
|
2016
|
+
export declare const isSolana: (chain: Chain) => chain is "solana_localnet" | "solana_testnet" | "solana";
|
|
2017
|
+
export declare const isStarknet: (chain: Chain) => chain is "starknet_devnet" | "starknet_sepolia" | "starknet";
|
|
1202
2018
|
export declare const isSui: (chain: Chain) => chain is "sui" | "sui_testnet";
|
|
1203
2019
|
export declare const getBlockchainType: (chain: Chain) => BlockchainType;
|
|
1204
2020
|
export declare const NATIVE_TOKENS: {
|