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