@gardenfi/orderbook 2.5.3-beta.0 → 2.5.3-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1212 @@
1
+ import { Network } from '@gardenfi/utils';
2
+ import { BlockchainType, Chain, ChainsByBlockchainType } from './asset.types';
3
+ import { ChainAsset } from '../chainAsset/chainAsset';
4
+
5
+ export declare enum OrderStatus {
6
+ Created = "Created",
7
+ InitiateDetected = "Initiate Detected",
8
+ Initiated = "Initiated",
9
+ AwaitingRedeem = "Awaiting Redeem",
10
+ RedeemDetected = "Redeem Detected",
11
+ Redeemed = "Redeemed",
12
+ AwaitingRefund = "Awaiting Refund",
13
+ RefundDetected = "Refund Detected",
14
+ Refunded = "Refunded",
15
+ Expired = "Expired"
16
+ }
17
+ export declare enum OrderLifecycle {
18
+ refunded = "refunded",
19
+ expired = "expired",
20
+ completed = "completed",
21
+ inProgress = "in-progress",
22
+ notInitiated = "not-initiated",
23
+ all = "all",
24
+ pending = "pending",
25
+ fulfilled = "fulfilled"
26
+ }
27
+ export declare const Config: {
28
+ readonly solana_localnet: {
29
+ readonly type: BlockchainType.solana;
30
+ readonly SOL: {
31
+ name: string;
32
+ decimals: number;
33
+ symbol: string;
34
+ atomicSwapAddress: string;
35
+ tokenAddress: string;
36
+ };
37
+ readonly network: Network.LOCALNET;
38
+ };
39
+ readonly arbitrum_localnet: {
40
+ readonly type: BlockchainType.evm;
41
+ readonly WBTC: {
42
+ name: string;
43
+ decimals: number;
44
+ symbol: string;
45
+ atomicSwapAddress: string;
46
+ tokenAddress: string;
47
+ };
48
+ readonly network: Network.LOCALNET;
49
+ };
50
+ readonly ethereum_localnet: {
51
+ readonly type: BlockchainType.evm;
52
+ readonly WBTC: {
53
+ name: string;
54
+ decimals: number;
55
+ symbol: string;
56
+ atomicSwapAddress: string;
57
+ tokenAddress: string;
58
+ };
59
+ readonly network: Network.LOCALNET;
60
+ };
61
+ readonly bitcoin_regtest: {
62
+ readonly type: BlockchainType.bitcoin;
63
+ readonly BTC: {
64
+ name: string;
65
+ decimals: number;
66
+ symbol: string;
67
+ atomicSwapAddress: string;
68
+ tokenAddress: string;
69
+ };
70
+ readonly network: Network.LOCALNET;
71
+ };
72
+ readonly starknet_devnet: {
73
+ readonly type: BlockchainType.starknet;
74
+ readonly STRK: {
75
+ name: string;
76
+ decimals: number;
77
+ symbol: string;
78
+ atomicSwapAddress: string;
79
+ tokenAddress: string;
80
+ };
81
+ readonly ETH: {
82
+ name: string;
83
+ decimals: number;
84
+ symbol: string;
85
+ atomicSwapAddress: string;
86
+ tokenAddress: string;
87
+ };
88
+ readonly network: Network.LOCALNET;
89
+ };
90
+ readonly solana_testnet: {
91
+ readonly type: BlockchainType.solana;
92
+ readonly network: Network.TESTNET;
93
+ readonly SOL: {
94
+ readonly name: "Solana";
95
+ readonly decimals: 9;
96
+ readonly symbol: "SOL";
97
+ readonly logo: "https://garden-finance.imgix.net/chain_images/solana.png";
98
+ readonly tokenAddress: "primary";
99
+ readonly atomicSwapAddress: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF_primary";
100
+ };
101
+ readonly USDC: {
102
+ readonly name: "USD Coin";
103
+ readonly decimals: 6;
104
+ readonly symbol: "USDC";
105
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
106
+ readonly tokenAddress: "5JbWjyLdYKTuykpq2itWbdRcZkhK3hs6fiH62pkmLYZi";
107
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU_5JbWjyLdYKTuykpq2itWbdRcZkhK3hs6fiH62pkmLYZi";
108
+ };
109
+ readonly cbBTC: {
110
+ readonly name: "Coinbase Wrapped Bitcoin";
111
+ readonly decimals: 8;
112
+ readonly symbol: "cbBTC";
113
+ readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
114
+ readonly tokenAddress: "CL8C4gsaEQyWPxL4Zn7dcnZ8LKvPYqHmv4ipMax4cDUL";
115
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU_CL8C4gsaEQyWPxL4Zn7dcnZ8LKvPYqHmv4ipMax4cDUL";
116
+ };
117
+ };
118
+ readonly bitcoin_testnet: {
119
+ readonly type: BlockchainType.bitcoin;
120
+ readonly network: Network.TESTNET;
121
+ readonly BTC: {
122
+ readonly name: "Bitcoin";
123
+ readonly decimals: 8;
124
+ readonly symbol: "BTC";
125
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
126
+ readonly tokenAddress: "primary";
127
+ readonly atomicSwapAddress: "primary";
128
+ };
129
+ };
130
+ readonly ethereum_sepolia: {
131
+ readonly type: BlockchainType.evm;
132
+ readonly network: Network.TESTNET;
133
+ readonly WBTC: {
134
+ readonly name: "Wrapped Bitcoin";
135
+ readonly decimals: 8;
136
+ readonly symbol: "WBTC";
137
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
138
+ readonly tokenAddress: "0xE918A5a47b8e0AFAC2382bC5D1e981613e63fB07";
139
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
140
+ };
141
+ readonly USDC: {
142
+ readonly name: "USD Coin";
143
+ readonly decimals: 6;
144
+ readonly symbol: "USDC";
145
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
146
+ readonly tokenAddress: "0xadDD620EA6D20f4f9c24fff3BC039E497ceBEDc2";
147
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
148
+ };
149
+ };
150
+ readonly arbitrum_sepolia: {
151
+ readonly type: BlockchainType.evm;
152
+ readonly network: Network.TESTNET;
153
+ readonly iBTC: {
154
+ readonly name: "iBTC";
155
+ readonly decimals: 8;
156
+ readonly symbol: "iBTC";
157
+ readonly logo: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
158
+ readonly atomicSwapAddress: "0x7e8c18fa79bd4014cfCf49294Bf315139eD39f45";
159
+ readonly tokenAddress: "0x685437f025c5f33A94818408C286bc1F023201Fc";
160
+ };
161
+ readonly WBTC: {
162
+ readonly name: "Wrapped Bitcoin";
163
+ readonly decimals: 8;
164
+ readonly symbol: "WBTC";
165
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
166
+ readonly atomicSwapAddress: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
167
+ readonly tokenAddress: "0x1c287717c886794ac9f5DF3987195431Ceb3456E";
168
+ };
169
+ readonly USDC: {
170
+ readonly name: "USD Coin";
171
+ readonly decimals: 6;
172
+ readonly symbol: "USDC";
173
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
174
+ readonly atomicSwapAddress: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
175
+ readonly tokenAddress: "0xC90Ad72eCc10a52a681ceDAE6EbBD3470A0c829";
176
+ };
177
+ readonly SEED: {
178
+ readonly name: "Seed";
179
+ readonly decimals: 18;
180
+ readonly symbol: "SEED";
181
+ readonly logo: "https://garden.imgix.net/token-images/seed.svg";
182
+ readonly atomicSwapAddress: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
183
+ readonly tokenAddress: "0x432B43764548c3E47eA65aAdeB91D75C84DBcC2c";
184
+ };
185
+ };
186
+ readonly base_sepolia: {
187
+ readonly type: BlockchainType.evm;
188
+ readonly network: Network.TESTNET;
189
+ readonly iBTC: {
190
+ readonly name: "iBTC";
191
+ readonly decimals: 8;
192
+ readonly symbol: "iBTC";
193
+ readonly logo: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
194
+ readonly atomicSwapAddress: "0x46F1Ba9C9d89C34F9dbC4085F6B1f9965c589ca1";
195
+ readonly tokenAddress: "0x0b0D554D9573bAe1a7556d220847f45182918B28";
196
+ };
197
+ readonly WBTC: {
198
+ readonly name: "Wrapped Bitcoin";
199
+ readonly decimals: 8;
200
+ readonly symbol: "WBTC";
201
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
202
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
203
+ readonly tokenAddress: "0xD8a6E3FCA403d79b6AD6216b60527F51cc967D39";
204
+ };
205
+ readonly USDT: {
206
+ readonly name: "Tether USD";
207
+ readonly decimals: 6;
208
+ readonly symbol: "USDT";
209
+ readonly logo: "https://garden.imgix.net/token-images/usdt.svg";
210
+ readonly atomicSwapAddress: "0x917cfef972d667dC0FeC76806cB5623585B81493";
211
+ readonly tokenAddress: "0xeaE7721d779276eb0f5837e2fE260118724a2Ba4";
212
+ };
213
+ readonly USDC: {
214
+ readonly name: "USD Coin";
215
+ readonly decimals: 6;
216
+ readonly symbol: "USDC";
217
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
218
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
219
+ readonly tokenAddress: "0x1ac7A0ebf13a996D5915e212900bE2d074f94988";
220
+ };
221
+ };
222
+ readonly bera_testnet: {
223
+ readonly type: BlockchainType.evm;
224
+ readonly network: Network.TESTNET;
225
+ };
226
+ readonly citrea_testnet: {
227
+ readonly type: BlockchainType.evm;
228
+ readonly network: Network.TESTNET;
229
+ readonly WCBTC: {
230
+ readonly name: "Wrapped Citrea Bitcoin";
231
+ readonly decimals: 18;
232
+ readonly symbol: "WCBTC";
233
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
234
+ readonly atomicSwapAddress: "0xD8e99df8cf77E7383c2f2a84bC6384b2DF88CAd3";
235
+ readonly tokenAddress: "0x8d0c9d1c17aE5e40ffF9bE350f57840E9E66Cd93";
236
+ };
237
+ readonly WBTC: {
238
+ readonly name: "Wrapped Bitcoin";
239
+ readonly decimals: 8;
240
+ readonly symbol: "WBTC";
241
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
242
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
243
+ readonly tokenAddress: "0x3edA22460259b29433704dda71cc921F528165Ea";
244
+ };
245
+ readonly CBTC: {
246
+ readonly name: "Citrea Bitcoin";
247
+ readonly decimals: 18;
248
+ readonly symbol: "CBTC";
249
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
250
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
251
+ readonly tokenAddress: "primary";
252
+ };
253
+ readonly CBBTC: {
254
+ readonly name: "Citrea Bridged Bitcoin";
255
+ readonly decimals: 8;
256
+ readonly symbol: "CBBTC";
257
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
258
+ readonly atomicSwapAddress: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
259
+ readonly tokenAddress: "0xeAa998aF280a62Ae08BaE4f9fa59C9b30e6BD306";
260
+ };
261
+ readonly USDC: {
262
+ readonly name: "USD Coin";
263
+ readonly decimals: 6;
264
+ readonly symbol: "USDC";
265
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
266
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
267
+ readonly tokenAddress: "0xCdA8661fDA031deFCc9BdD88C0e12669Cac47Fb0";
268
+ };
269
+ readonly USDT: {
270
+ readonly name: "Tether USD";
271
+ readonly decimals: 6;
272
+ readonly symbol: "USDT";
273
+ readonly logo: "https://garden.imgix.net/token-images/usdt.svg";
274
+ readonly atomicSwapAddress: "0x917cfef972d667dC0FeC76806cB5623585B81493";
275
+ readonly tokenAddress: "0xF5cFE09b852Ddb164cF6Db419B9c11aAb5F30cb6";
276
+ };
277
+ };
278
+ readonly monad_testnet: {
279
+ readonly type: BlockchainType.evm;
280
+ readonly network: Network.TESTNET;
281
+ readonly cbBTC: {
282
+ readonly name: "Coinbase Wrapped Bitcoin";
283
+ readonly decimals: 8;
284
+ readonly symbol: "cbBTC";
285
+ readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
286
+ readonly atomicSwapAddress: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
287
+ readonly tokenAddress: "0x6b6303fAb8eC7232b4f2a7b9fa58E5216F608fcb";
288
+ };
289
+ readonly USDC: {
290
+ readonly name: "USD Coin";
291
+ readonly decimals: 6;
292
+ readonly symbol: "USDC";
293
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
294
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
295
+ readonly tokenAddress: "0xf817257fed379853cde0fa4f97ab987181b1e5ea";
296
+ };
297
+ };
298
+ readonly starknet_sepolia: {
299
+ readonly type: BlockchainType.starknet;
300
+ readonly network: Network.TESTNET;
301
+ readonly WBTC: {
302
+ readonly name: "Wrapped Bitcoin";
303
+ readonly decimals: 8;
304
+ readonly symbol: "WBTC";
305
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
306
+ readonly atomicSwapAddress: "0x06579d255314109429a4477d89629bc2b94f529ae01979c2f8014f9246482603";
307
+ readonly tokenAddress: "0x496bef3ed20371382fbe0ca6a5a64252c5c848f9f1f0cccf8110fc4def912d5";
308
+ };
309
+ };
310
+ readonly sui_testnet: {
311
+ readonly type: BlockchainType.sui;
312
+ readonly network: Network.TESTNET;
313
+ readonly SUI: {
314
+ readonly name: "SUI";
315
+ readonly decimals: 9;
316
+ readonly symbol: "SUI";
317
+ readonly logo: "https://garden-finance.imgix.net/chain_images/sui.svg";
318
+ readonly tokenAddress: "0x2::sui::SUI";
319
+ readonly atomicSwapAddress: "0x5c438715b7dcc02d12ab92449153a1e5ade2301620d5bf60aa748f006726d369";
320
+ };
321
+ };
322
+ readonly hyperliquid_testnet: {
323
+ readonly type: BlockchainType.evm;
324
+ readonly network: Network.TESTNET;
325
+ };
326
+ readonly bnbchain_testnet: {
327
+ readonly type: BlockchainType.evm;
328
+ readonly network: Network.TESTNET;
329
+ readonly WBTC: {
330
+ readonly name: "Wrapped Bitcoin";
331
+ readonly decimals: 8;
332
+ readonly symbol: "WBTC";
333
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
334
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
335
+ readonly tokenAddress: "0x39f3294352208905fc6ebf033954E6c6455CdB4C";
336
+ };
337
+ };
338
+ readonly bitcoin: {
339
+ readonly type: BlockchainType.bitcoin;
340
+ readonly network: Network.MAINNET;
341
+ readonly BTC: {
342
+ readonly name: "Bitcoin";
343
+ readonly decimals: 8;
344
+ readonly symbol: "BTC";
345
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
346
+ readonly atomicSwapAddress: "primary";
347
+ readonly tokenAddress: "primary";
348
+ };
349
+ };
350
+ readonly base: {
351
+ readonly type: BlockchainType.evm;
352
+ readonly network: Network.MAINNET;
353
+ readonly USDC: {
354
+ readonly name: "USD Coin";
355
+ readonly decimals: 6;
356
+ readonly symbol: "USDC";
357
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
358
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
359
+ readonly tokenAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
360
+ };
361
+ readonly cBBTC: {
362
+ readonly name: "Coinbase Wrapped BTC";
363
+ readonly decimals: 8;
364
+ readonly symbol: "cBBTC";
365
+ readonly logo: "https://coin-images.coingecko.com/coins/images/51336/large/cbbtc.png?1730814747";
366
+ readonly atomicSwapAddress: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
367
+ readonly tokenAddress: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
368
+ };
369
+ };
370
+ readonly arbitrum: {
371
+ readonly type: BlockchainType.evm;
372
+ readonly network: Network.MAINNET;
373
+ readonly WBTC: {
374
+ readonly name: "Wrapped Bitcoin";
375
+ readonly decimals: 8;
376
+ readonly symbol: "WBTC";
377
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
378
+ readonly atomicSwapAddress: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
379
+ readonly tokenAddress: "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f";
380
+ };
381
+ readonly USDC: {
382
+ readonly name: "USD Coin";
383
+ readonly decimals: 6;
384
+ readonly symbol: "USDC";
385
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
386
+ readonly atomicSwapAddress: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
387
+ readonly tokenAddress: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831";
388
+ };
389
+ readonly iBTC: {
390
+ readonly name: "iBTC";
391
+ readonly decimals: 8;
392
+ readonly symbol: "iBTC";
393
+ readonly logo: "https://garden.imgix.net/token-images/iBTC.png";
394
+ readonly atomicSwapAddress: "0x7e8c18fa79bd4014cfCf49294Bf315139eD39f45";
395
+ readonly tokenAddress: "0x050C24dBf1eEc17babE5fc585F06116A259CC77A";
396
+ };
397
+ readonly SEED: {
398
+ readonly name: "Seed Token";
399
+ readonly decimals: 18;
400
+ readonly symbol: "SEED";
401
+ readonly logo: "https://garden.imgix.net/token-images/seed.svg";
402
+ readonly atomicSwapAddress: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
403
+ readonly tokenAddress: "0x86f65121804D2Cdbef79F9f072D4e0c2eEbABC08";
404
+ };
405
+ };
406
+ readonly ethereum: {
407
+ readonly type: BlockchainType.evm;
408
+ readonly network: Network.MAINNET;
409
+ readonly ETH: {
410
+ readonly name: "Ethereum";
411
+ readonly decimals: 18;
412
+ readonly symbol: "ETH";
413
+ readonly logo: "https://garden.imgix.net/chain_images/ethereum.svg";
414
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
415
+ readonly tokenAddress: "primary";
416
+ };
417
+ readonly USDC: {
418
+ readonly name: "USD Coin";
419
+ readonly decimals: 6;
420
+ readonly symbol: "USDC";
421
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
422
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
423
+ readonly tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48";
424
+ };
425
+ readonly WBTC: {
426
+ readonly name: "Wrapped Bitcoin";
427
+ readonly decimals: 8;
428
+ readonly symbol: "WBTC";
429
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
430
+ readonly atomicSwapAddress: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
431
+ readonly tokenAddress: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599";
432
+ };
433
+ readonly cBBTC: {
434
+ readonly name: "Coinbase Wrapped BTC";
435
+ readonly decimals: 8;
436
+ 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
+ readonly decimals: 8;
444
+ readonly symbol: "iBTC";
445
+ readonly logo: "https://garden.imgix.net/token-images/iBTC.png";
446
+ readonly atomicSwapAddress: "0x3aebBC6Dd1d024BE1C579E18e2EB92667B6f3579";
447
+ readonly tokenAddress: "0x20157DBAbb84e3BBFE68C349d0d44E48AE7B5AD2";
448
+ };
449
+ readonly SEED: {
450
+ readonly name: "Seed Token";
451
+ readonly decimals: 18;
452
+ readonly symbol: "SEED";
453
+ readonly logo: "https://garden.imgix.net/token-images/seed.svg";
454
+ readonly atomicSwapAddress: "0xCE511De667885f92B8c36fcfC79C3B5bEb875463";
455
+ readonly tokenAddress: "0x5eed99d066a8CaF10f3E4327c1b3D8b673485eED";
456
+ };
457
+ };
458
+ readonly solana: {
459
+ readonly type: BlockchainType.solana;
460
+ readonly network: Network.MAINNET;
461
+ readonly SOL: {
462
+ readonly name: "Solana";
463
+ readonly decimals: 9;
464
+ readonly symbol: "SOL";
465
+ readonly logo: "https://garden-finance.imgix.net/chain_images/solana.png";
466
+ readonly atomicSwapAddress: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF";
467
+ readonly tokenAddress: "primary";
468
+ };
469
+ readonly USDC: {
470
+ readonly name: "USD Coin";
471
+ readonly decimals: 6;
472
+ readonly symbol: "USDC";
473
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
474
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
475
+ readonly tokenAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
476
+ };
477
+ readonly cBBTC: {
478
+ readonly name: "Coinbase Wrapped BTC";
479
+ readonly decimals: 8;
480
+ readonly symbol: "cBBTC";
481
+ readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
482
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
483
+ readonly tokenAddress: "cbbtcf3aa214zXHbiAZQwf4122FBYbraNdFqgw4iMij";
484
+ };
485
+ };
486
+ readonly bera: {
487
+ readonly type: BlockchainType.evm;
488
+ readonly network: Network.MAINNET;
489
+ readonly LBTC: {
490
+ readonly name: "Lombard BTC";
491
+ readonly decimals: 8;
492
+ readonly symbol: "LBTC";
493
+ readonly logo: "https://garden.imgix.net/token-images/LBTC.svg";
494
+ readonly atomicSwapAddress: "0x84A396920d8B8CA2e69bD9503Bc1B2f73f1b8b33";
495
+ readonly tokenAddress: "0xecAc9C5F704e954931349Da37F60E39f515c11c1";
496
+ };
497
+ };
498
+ readonly starknet: {
499
+ readonly type: BlockchainType.starknet;
500
+ readonly network: Network.MAINNET;
501
+ readonly WBTC: {
502
+ readonly name: "Wrapped Bitcoin";
503
+ readonly decimals: 8;
504
+ readonly symbol: "WBTC";
505
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
506
+ readonly atomicSwapAddress: "0x7defd8eb3b770005ab1ca5f89ad31f98fb5bc3c52deaeafd130be3b49f967b4";
507
+ readonly tokenAddress: "0x3fe2b97c1fd336e750087d68b9b867997fd64a2661ff3ca5a7c771641e8e7ac";
508
+ };
509
+ };
510
+ readonly sui: {
511
+ readonly type: BlockchainType.sui;
512
+ readonly network: Network.MAINNET;
513
+ readonly SUI: {
514
+ readonly name: "Sui";
515
+ readonly decimals: 9;
516
+ readonly symbol: "SUI";
517
+ readonly logo: "https://garden-finance.imgix.net/chain_images/sui.svg";
518
+ readonly atomicSwapAddress: "0xa4f4e653547e98d4b541378e14db2393a09aff4b829f158b133d2eb3c3a942b5";
519
+ readonly tokenAddress: "0x2::sui::SUI";
520
+ };
521
+ };
522
+ readonly hyperliquid: {
523
+ readonly type: BlockchainType.evm;
524
+ readonly network: Network.MAINNET;
525
+ readonly uBTC: {
526
+ readonly name: "uBTC";
527
+ readonly decimals: 8;
528
+ readonly symbol: "uBTC";
529
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
530
+ readonly atomicSwapAddress: "0xDC74a45e86DEdf1fF7c6dac77e0c2F082f9E4F72";
531
+ readonly tokenAddress: "0x9FDBdA0A5e284c32744D2f17Ee5c74B284993463";
532
+ };
533
+ };
534
+ readonly unichain: {
535
+ readonly type: BlockchainType.evm;
536
+ readonly network: Network.MAINNET;
537
+ readonly WBTC: {
538
+ readonly name: "Wrapped Bitcoin";
539
+ readonly decimals: 8;
540
+ readonly symbol: "WBTC";
541
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
542
+ readonly atomicSwapAddress: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
543
+ readonly tokenAddress: "0x927B51f251480a681271180DA4de28D44EC4AfB8";
544
+ };
545
+ readonly USDC: {
546
+ readonly name: "USD Coin";
547
+ readonly decimals: 6;
548
+ readonly symbol: "USDC";
549
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
550
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
551
+ readonly tokenAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
552
+ };
553
+ };
554
+ readonly corn: {
555
+ readonly type: BlockchainType.evm;
556
+ readonly network: Network.MAINNET;
557
+ readonly BTCN: {
558
+ readonly name: "Bitcorn";
559
+ readonly decimals: 18;
560
+ readonly symbol: "BTCN";
561
+ readonly logo: "https://garden.imgix.net/token-images/bitcorn.svg";
562
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
563
+ readonly tokenAddress: "primary";
564
+ };
565
+ };
566
+ readonly botanix: {
567
+ readonly type: BlockchainType.evm;
568
+ readonly network: Network.MAINNET;
569
+ readonly BTC: {
570
+ readonly name: "Botanix Bitcoin";
571
+ readonly decimals: 18;
572
+ readonly symbol: "BTC";
573
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
574
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
575
+ readonly tokenAddress: "primary";
576
+ };
577
+ };
578
+ readonly bnbchain: {
579
+ readonly type: BlockchainType.evm;
580
+ readonly network: Network.MAINNET;
581
+ readonly BTCB: {
582
+ readonly name: "BTCB";
583
+ readonly decimals: 18;
584
+ readonly symbol: "BTCB";
585
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
586
+ readonly atomicSwapAddress: "0xe74784E5A45528fDEcB257477DD6bd31c8ef0761";
587
+ readonly tokenAddress: "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c";
588
+ };
589
+ readonly USDC: {
590
+ readonly name: "USD Coin";
591
+ readonly decimals: 18;
592
+ readonly symbol: "USDC";
593
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
594
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
595
+ readonly tokenAddress: "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d";
596
+ };
597
+ };
598
+ readonly core: {
599
+ readonly type: BlockchainType.evm;
600
+ readonly network: Network.MAINNET;
601
+ readonly WBTC: {
602
+ readonly name: "Wrapped Bitcoin";
603
+ readonly decimals: 8;
604
+ readonly symbol: "WBTC";
605
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
606
+ readonly atomicSwapAddress: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
607
+ readonly tokenAddress: "0x5832f53d147b3d6Cd4578B9CBD62425C7ea9d0Bd";
608
+ };
609
+ };
610
+ };
611
+ export declare const Chains: Record<Chain, Chain>;
612
+ export declare const Assets: import('./utils').AssetsType<{
613
+ readonly solana_localnet: {
614
+ readonly type: BlockchainType.solana;
615
+ readonly SOL: {
616
+ name: string;
617
+ decimals: number;
618
+ symbol: string;
619
+ atomicSwapAddress: string;
620
+ tokenAddress: string;
621
+ };
622
+ readonly network: Network.LOCALNET;
623
+ };
624
+ readonly arbitrum_localnet: {
625
+ readonly type: BlockchainType.evm;
626
+ readonly WBTC: {
627
+ name: string;
628
+ decimals: number;
629
+ symbol: string;
630
+ atomicSwapAddress: string;
631
+ tokenAddress: string;
632
+ };
633
+ readonly network: Network.LOCALNET;
634
+ };
635
+ readonly ethereum_localnet: {
636
+ readonly type: BlockchainType.evm;
637
+ readonly WBTC: {
638
+ name: string;
639
+ decimals: number;
640
+ symbol: string;
641
+ atomicSwapAddress: string;
642
+ tokenAddress: string;
643
+ };
644
+ readonly network: Network.LOCALNET;
645
+ };
646
+ readonly bitcoin_regtest: {
647
+ readonly type: BlockchainType.bitcoin;
648
+ readonly BTC: {
649
+ name: string;
650
+ decimals: number;
651
+ symbol: string;
652
+ atomicSwapAddress: string;
653
+ tokenAddress: string;
654
+ };
655
+ readonly network: Network.LOCALNET;
656
+ };
657
+ readonly starknet_devnet: {
658
+ readonly type: BlockchainType.starknet;
659
+ readonly STRK: {
660
+ name: string;
661
+ decimals: number;
662
+ symbol: string;
663
+ atomicSwapAddress: string;
664
+ tokenAddress: string;
665
+ };
666
+ readonly ETH: {
667
+ name: string;
668
+ decimals: number;
669
+ symbol: string;
670
+ atomicSwapAddress: string;
671
+ tokenAddress: string;
672
+ };
673
+ readonly network: Network.LOCALNET;
674
+ };
675
+ readonly solana_testnet: {
676
+ readonly type: BlockchainType.solana;
677
+ readonly network: Network.TESTNET;
678
+ readonly SOL: {
679
+ readonly name: "Solana";
680
+ readonly decimals: 9;
681
+ readonly symbol: "SOL";
682
+ readonly logo: "https://garden-finance.imgix.net/chain_images/solana.png";
683
+ readonly tokenAddress: "primary";
684
+ readonly atomicSwapAddress: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF_primary";
685
+ };
686
+ readonly USDC: {
687
+ readonly name: "USD Coin";
688
+ readonly decimals: 6;
689
+ readonly symbol: "USDC";
690
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
691
+ readonly tokenAddress: "5JbWjyLdYKTuykpq2itWbdRcZkhK3hs6fiH62pkmLYZi";
692
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU_5JbWjyLdYKTuykpq2itWbdRcZkhK3hs6fiH62pkmLYZi";
693
+ };
694
+ readonly cbBTC: {
695
+ readonly name: "Coinbase Wrapped Bitcoin";
696
+ readonly decimals: 8;
697
+ readonly symbol: "cbBTC";
698
+ readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
699
+ readonly tokenAddress: "CL8C4gsaEQyWPxL4Zn7dcnZ8LKvPYqHmv4ipMax4cDUL";
700
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU_CL8C4gsaEQyWPxL4Zn7dcnZ8LKvPYqHmv4ipMax4cDUL";
701
+ };
702
+ };
703
+ readonly bitcoin_testnet: {
704
+ readonly type: BlockchainType.bitcoin;
705
+ readonly network: Network.TESTNET;
706
+ readonly BTC: {
707
+ readonly name: "Bitcoin";
708
+ readonly decimals: 8;
709
+ readonly symbol: "BTC";
710
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
711
+ readonly tokenAddress: "primary";
712
+ readonly atomicSwapAddress: "primary";
713
+ };
714
+ };
715
+ readonly ethereum_sepolia: {
716
+ readonly type: BlockchainType.evm;
717
+ readonly network: Network.TESTNET;
718
+ readonly WBTC: {
719
+ readonly name: "Wrapped Bitcoin";
720
+ readonly decimals: 8;
721
+ readonly symbol: "WBTC";
722
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
723
+ readonly tokenAddress: "0xE918A5a47b8e0AFAC2382bC5D1e981613e63fB07";
724
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
725
+ };
726
+ readonly USDC: {
727
+ readonly name: "USD Coin";
728
+ readonly decimals: 6;
729
+ readonly symbol: "USDC";
730
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
731
+ readonly tokenAddress: "0xadDD620EA6D20f4f9c24fff3BC039E497ceBEDc2";
732
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
733
+ };
734
+ };
735
+ readonly arbitrum_sepolia: {
736
+ readonly type: BlockchainType.evm;
737
+ readonly network: Network.TESTNET;
738
+ readonly iBTC: {
739
+ readonly name: "iBTC";
740
+ readonly decimals: 8;
741
+ readonly symbol: "iBTC";
742
+ readonly logo: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
743
+ readonly atomicSwapAddress: "0x7e8c18fa79bd4014cfCf49294Bf315139eD39f45";
744
+ readonly tokenAddress: "0x685437f025c5f33A94818408C286bc1F023201Fc";
745
+ };
746
+ readonly WBTC: {
747
+ readonly name: "Wrapped Bitcoin";
748
+ readonly decimals: 8;
749
+ readonly symbol: "WBTC";
750
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
751
+ readonly atomicSwapAddress: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
752
+ readonly tokenAddress: "0x1c287717c886794ac9f5DF3987195431Ceb3456E";
753
+ };
754
+ readonly USDC: {
755
+ readonly name: "USD Coin";
756
+ readonly decimals: 6;
757
+ readonly symbol: "USDC";
758
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
759
+ readonly atomicSwapAddress: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
760
+ readonly tokenAddress: "0xC90Ad72eCc10a52a681ceDAE6EbBD3470A0c829";
761
+ };
762
+ readonly SEED: {
763
+ readonly name: "Seed";
764
+ readonly decimals: 18;
765
+ readonly symbol: "SEED";
766
+ readonly logo: "https://garden.imgix.net/token-images/seed.svg";
767
+ readonly atomicSwapAddress: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
768
+ readonly tokenAddress: "0x432B43764548c3E47eA65aAdeB91D75C84DBcC2c";
769
+ };
770
+ };
771
+ readonly base_sepolia: {
772
+ readonly type: BlockchainType.evm;
773
+ readonly network: Network.TESTNET;
774
+ readonly iBTC: {
775
+ readonly name: "iBTC";
776
+ readonly decimals: 8;
777
+ readonly symbol: "iBTC";
778
+ readonly logo: "https://garden.imgix.net/token-images/dlcBTCIcon.svg";
779
+ readonly atomicSwapAddress: "0x46F1Ba9C9d89C34F9dbC4085F6B1f9965c589ca1";
780
+ readonly tokenAddress: "0x0b0D554D9573bAe1a7556d220847f45182918B28";
781
+ };
782
+ readonly WBTC: {
783
+ readonly name: "Wrapped Bitcoin";
784
+ readonly decimals: 8;
785
+ readonly symbol: "WBTC";
786
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
787
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
788
+ readonly tokenAddress: "0xD8a6E3FCA403d79b6AD6216b60527F51cc967D39";
789
+ };
790
+ readonly USDT: {
791
+ readonly name: "Tether USD";
792
+ readonly decimals: 6;
793
+ readonly symbol: "USDT";
794
+ readonly logo: "https://garden.imgix.net/token-images/usdt.svg";
795
+ readonly atomicSwapAddress: "0x917cfef972d667dC0FeC76806cB5623585B81493";
796
+ readonly tokenAddress: "0xeaE7721d779276eb0f5837e2fE260118724a2Ba4";
797
+ };
798
+ readonly USDC: {
799
+ readonly name: "USD Coin";
800
+ readonly decimals: 6;
801
+ readonly symbol: "USDC";
802
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
803
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
804
+ readonly tokenAddress: "0x1ac7A0ebf13a996D5915e212900bE2d074f94988";
805
+ };
806
+ };
807
+ readonly bera_testnet: {
808
+ readonly type: BlockchainType.evm;
809
+ readonly network: Network.TESTNET;
810
+ };
811
+ readonly citrea_testnet: {
812
+ readonly type: BlockchainType.evm;
813
+ readonly network: Network.TESTNET;
814
+ readonly WCBTC: {
815
+ readonly name: "Wrapped Citrea Bitcoin";
816
+ readonly decimals: 18;
817
+ readonly symbol: "WCBTC";
818
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
819
+ readonly atomicSwapAddress: "0xD8e99df8cf77E7383c2f2a84bC6384b2DF88CAd3";
820
+ readonly tokenAddress: "0x8d0c9d1c17aE5e40ffF9bE350f57840E9E66Cd93";
821
+ };
822
+ readonly WBTC: {
823
+ readonly name: "Wrapped Bitcoin";
824
+ readonly decimals: 8;
825
+ readonly symbol: "WBTC";
826
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
827
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
828
+ readonly tokenAddress: "0x3edA22460259b29433704dda71cc921F528165Ea";
829
+ };
830
+ readonly CBTC: {
831
+ readonly name: "Citrea Bitcoin";
832
+ readonly decimals: 18;
833
+ readonly symbol: "CBTC";
834
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
835
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
836
+ readonly tokenAddress: "primary";
837
+ };
838
+ readonly CBBTC: {
839
+ readonly name: "Citrea Bridged Bitcoin";
840
+ readonly decimals: 8;
841
+ readonly symbol: "CBBTC";
842
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
843
+ readonly atomicSwapAddress: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
844
+ readonly tokenAddress: "0xeAa998aF280a62Ae08BaE4f9fa59C9b30e6BD306";
845
+ };
846
+ readonly USDC: {
847
+ readonly name: "USD Coin";
848
+ readonly decimals: 6;
849
+ readonly symbol: "USDC";
850
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
851
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
852
+ readonly tokenAddress: "0xCdA8661fDA031deFCc9BdD88C0e12669Cac47Fb0";
853
+ };
854
+ readonly USDT: {
855
+ readonly name: "Tether USD";
856
+ readonly decimals: 6;
857
+ readonly symbol: "USDT";
858
+ readonly logo: "https://garden.imgix.net/token-images/usdt.svg";
859
+ readonly atomicSwapAddress: "0x917cfef972d667dC0FeC76806cB5623585B81493";
860
+ readonly tokenAddress: "0xF5cFE09b852Ddb164cF6Db419B9c11aAb5F30cb6";
861
+ };
862
+ };
863
+ readonly monad_testnet: {
864
+ readonly type: BlockchainType.evm;
865
+ readonly network: Network.TESTNET;
866
+ readonly cbBTC: {
867
+ readonly name: "Coinbase Wrapped Bitcoin";
868
+ readonly decimals: 8;
869
+ readonly symbol: "cbBTC";
870
+ readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
871
+ readonly atomicSwapAddress: "0x8656d38352CD90ca55881eBd0AF6822839b435A8";
872
+ readonly tokenAddress: "0x6b6303fAb8eC7232b4f2a7b9fa58E5216F608fcb";
873
+ };
874
+ readonly USDC: {
875
+ readonly name: "USD Coin";
876
+ readonly decimals: 6;
877
+ readonly symbol: "USDC";
878
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
879
+ readonly atomicSwapAddress: "0x730Be401ef981D199a0560C87DfdDaFd3EC1C493";
880
+ readonly tokenAddress: "0xf817257fed379853cde0fa4f97ab987181b1e5ea";
881
+ };
882
+ };
883
+ readonly starknet_sepolia: {
884
+ readonly type: BlockchainType.starknet;
885
+ readonly network: Network.TESTNET;
886
+ readonly WBTC: {
887
+ readonly name: "Wrapped Bitcoin";
888
+ readonly decimals: 8;
889
+ readonly symbol: "WBTC";
890
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
891
+ readonly atomicSwapAddress: "0x06579d255314109429a4477d89629bc2b94f529ae01979c2f8014f9246482603";
892
+ readonly tokenAddress: "0x496bef3ed20371382fbe0ca6a5a64252c5c848f9f1f0cccf8110fc4def912d5";
893
+ };
894
+ };
895
+ readonly sui_testnet: {
896
+ readonly type: BlockchainType.sui;
897
+ readonly network: Network.TESTNET;
898
+ readonly SUI: {
899
+ readonly name: "SUI";
900
+ readonly decimals: 9;
901
+ readonly symbol: "SUI";
902
+ readonly logo: "https://garden-finance.imgix.net/chain_images/sui.svg";
903
+ readonly tokenAddress: "0x2::sui::SUI";
904
+ readonly atomicSwapAddress: "0x5c438715b7dcc02d12ab92449153a1e5ade2301620d5bf60aa748f006726d369";
905
+ };
906
+ };
907
+ readonly hyperliquid_testnet: {
908
+ readonly type: BlockchainType.evm;
909
+ readonly network: Network.TESTNET;
910
+ };
911
+ readonly bnbchain_testnet: {
912
+ readonly type: BlockchainType.evm;
913
+ readonly network: Network.TESTNET;
914
+ readonly WBTC: {
915
+ readonly name: "Wrapped Bitcoin";
916
+ readonly decimals: 8;
917
+ readonly symbol: "WBTC";
918
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
919
+ readonly atomicSwapAddress: "0xd1E0Ba2b165726b3a6051b765d4564d030FDcf50";
920
+ readonly tokenAddress: "0x39f3294352208905fc6ebf033954E6c6455CdB4C";
921
+ };
922
+ };
923
+ readonly bitcoin: {
924
+ readonly type: BlockchainType.bitcoin;
925
+ readonly network: Network.MAINNET;
926
+ readonly BTC: {
927
+ readonly name: "Bitcoin";
928
+ readonly decimals: 8;
929
+ readonly symbol: "BTC";
930
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
931
+ readonly atomicSwapAddress: "primary";
932
+ readonly tokenAddress: "primary";
933
+ };
934
+ };
935
+ readonly base: {
936
+ readonly type: BlockchainType.evm;
937
+ readonly network: Network.MAINNET;
938
+ readonly USDC: {
939
+ readonly name: "USD Coin";
940
+ readonly decimals: 6;
941
+ readonly symbol: "USDC";
942
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
943
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
944
+ readonly tokenAddress: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
945
+ };
946
+ readonly cBBTC: {
947
+ readonly name: "Coinbase Wrapped BTC";
948
+ readonly decimals: 8;
949
+ readonly symbol: "cBBTC";
950
+ readonly logo: "https://coin-images.coingecko.com/coins/images/51336/large/cbbtc.png?1730814747";
951
+ readonly atomicSwapAddress: "0xe35d025d0f0d9492db4700FE8646f7F89150eC04";
952
+ readonly tokenAddress: "0xcbB7C0000aB88B473b1f5aFd9ef808440eed33Bf";
953
+ };
954
+ };
955
+ readonly arbitrum: {
956
+ readonly type: BlockchainType.evm;
957
+ readonly network: Network.MAINNET;
958
+ readonly WBTC: {
959
+ readonly name: "Wrapped Bitcoin";
960
+ readonly decimals: 8;
961
+ readonly symbol: "WBTC";
962
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
963
+ readonly atomicSwapAddress: "0xb5AE9785349186069C48794a763DB39EC756B1cF";
964
+ readonly tokenAddress: "0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f";
965
+ };
966
+ readonly USDC: {
967
+ readonly name: "USD Coin";
968
+ readonly decimals: 6;
969
+ readonly symbol: "USDC";
970
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
971
+ readonly atomicSwapAddress: "0x8E12d730756457B99ce6E6AbFd60eBe751dA169B";
972
+ readonly tokenAddress: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831";
973
+ };
974
+ readonly iBTC: {
975
+ readonly name: "iBTC";
976
+ readonly decimals: 8;
977
+ readonly symbol: "iBTC";
978
+ readonly logo: "https://garden.imgix.net/token-images/iBTC.png";
979
+ readonly atomicSwapAddress: "0x7e8c18fa79bd4014cfCf49294Bf315139eD39f45";
980
+ readonly tokenAddress: "0x050C24dBf1eEc17babE5fc585F06116A259CC77A";
981
+ };
982
+ readonly SEED: {
983
+ readonly name: "Seed Token";
984
+ readonly decimals: 18;
985
+ readonly symbol: "SEED";
986
+ readonly logo: "https://garden.imgix.net/token-images/seed.svg";
987
+ readonly atomicSwapAddress: "0xFBD30cB9313fe580031A7E0258693E1cec002803";
988
+ readonly tokenAddress: "0x86f65121804D2Cdbef79F9f072D4e0c2eEbABC08";
989
+ };
990
+ };
991
+ readonly ethereum: {
992
+ readonly type: BlockchainType.evm;
993
+ readonly network: Network.MAINNET;
994
+ readonly ETH: {
995
+ readonly name: "Ethereum";
996
+ readonly decimals: 18;
997
+ readonly symbol: "ETH";
998
+ readonly logo: "https://garden.imgix.net/chain_images/ethereum.svg";
999
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
1000
+ readonly tokenAddress: "primary";
1001
+ };
1002
+ readonly USDC: {
1003
+ readonly name: "USD Coin";
1004
+ readonly decimals: 6;
1005
+ readonly symbol: "USDC";
1006
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
1007
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
1008
+ readonly tokenAddress: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48";
1009
+ };
1010
+ readonly WBTC: {
1011
+ readonly name: "Wrapped Bitcoin";
1012
+ readonly decimals: 8;
1013
+ readonly symbol: "WBTC";
1014
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
1015
+ readonly atomicSwapAddress: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
1016
+ readonly tokenAddress: "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599";
1017
+ };
1018
+ readonly cBBTC: {
1019
+ readonly name: "Coinbase Wrapped BTC";
1020
+ readonly decimals: 8;
1021
+ 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
+ readonly decimals: 8;
1029
+ readonly symbol: "iBTC";
1030
+ readonly logo: "https://garden.imgix.net/token-images/iBTC.png";
1031
+ readonly atomicSwapAddress: "0x3aebBC6Dd1d024BE1C579E18e2EB92667B6f3579";
1032
+ readonly tokenAddress: "0x20157DBAbb84e3BBFE68C349d0d44E48AE7B5AD2";
1033
+ };
1034
+ readonly SEED: {
1035
+ readonly name: "Seed Token";
1036
+ readonly decimals: 18;
1037
+ readonly symbol: "SEED";
1038
+ readonly logo: "https://garden.imgix.net/token-images/seed.svg";
1039
+ readonly atomicSwapAddress: "0xCE511De667885f92B8c36fcfC79C3B5bEb875463";
1040
+ readonly tokenAddress: "0x5eed99d066a8CaF10f3E4327c1b3D8b673485eED";
1041
+ };
1042
+ };
1043
+ readonly solana: {
1044
+ readonly type: BlockchainType.solana;
1045
+ readonly network: Network.MAINNET;
1046
+ readonly SOL: {
1047
+ readonly name: "Solana";
1048
+ readonly decimals: 9;
1049
+ readonly symbol: "SOL";
1050
+ readonly logo: "https://garden-finance.imgix.net/chain_images/solana.png";
1051
+ readonly atomicSwapAddress: "2bag6xpshpvPe7SJ9nSDLHpxqhEAoHPGpEkjNSv7gxoF";
1052
+ readonly tokenAddress: "primary";
1053
+ };
1054
+ readonly USDC: {
1055
+ readonly name: "USD Coin";
1056
+ readonly decimals: 6;
1057
+ readonly symbol: "USDC";
1058
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
1059
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
1060
+ readonly tokenAddress: "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v";
1061
+ };
1062
+ readonly cBBTC: {
1063
+ readonly name: "Coinbase Wrapped BTC";
1064
+ readonly decimals: 8;
1065
+ readonly symbol: "cBBTC";
1066
+ readonly logo: "https://garden.imgix.net/token-images/cbBTC.svg";
1067
+ readonly atomicSwapAddress: "gdnvdMCHJgnidtU7SL8RkRshHPvDJU1pdfZEpoLvqdU";
1068
+ readonly tokenAddress: "cbbtcf3aa214zXHbiAZQwf4122FBYbraNdFqgw4iMij";
1069
+ };
1070
+ };
1071
+ readonly bera: {
1072
+ readonly type: BlockchainType.evm;
1073
+ readonly network: Network.MAINNET;
1074
+ readonly LBTC: {
1075
+ readonly name: "Lombard BTC";
1076
+ readonly decimals: 8;
1077
+ readonly symbol: "LBTC";
1078
+ readonly logo: "https://garden.imgix.net/token-images/LBTC.svg";
1079
+ readonly atomicSwapAddress: "0x84A396920d8B8CA2e69bD9503Bc1B2f73f1b8b33";
1080
+ readonly tokenAddress: "0xecAc9C5F704e954931349Da37F60E39f515c11c1";
1081
+ };
1082
+ };
1083
+ readonly starknet: {
1084
+ readonly type: BlockchainType.starknet;
1085
+ readonly network: Network.MAINNET;
1086
+ readonly WBTC: {
1087
+ readonly name: "Wrapped Bitcoin";
1088
+ readonly decimals: 8;
1089
+ readonly symbol: "WBTC";
1090
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
1091
+ readonly atomicSwapAddress: "0x7defd8eb3b770005ab1ca5f89ad31f98fb5bc3c52deaeafd130be3b49f967b4";
1092
+ readonly tokenAddress: "0x3fe2b97c1fd336e750087d68b9b867997fd64a2661ff3ca5a7c771641e8e7ac";
1093
+ };
1094
+ };
1095
+ readonly sui: {
1096
+ readonly type: BlockchainType.sui;
1097
+ readonly network: Network.MAINNET;
1098
+ readonly SUI: {
1099
+ readonly name: "Sui";
1100
+ readonly decimals: 9;
1101
+ readonly symbol: "SUI";
1102
+ readonly logo: "https://garden-finance.imgix.net/chain_images/sui.svg";
1103
+ readonly atomicSwapAddress: "0xa4f4e653547e98d4b541378e14db2393a09aff4b829f158b133d2eb3c3a942b5";
1104
+ readonly tokenAddress: "0x2::sui::SUI";
1105
+ };
1106
+ };
1107
+ readonly hyperliquid: {
1108
+ readonly type: BlockchainType.evm;
1109
+ readonly network: Network.MAINNET;
1110
+ readonly uBTC: {
1111
+ readonly name: "uBTC";
1112
+ readonly decimals: 8;
1113
+ readonly symbol: "uBTC";
1114
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
1115
+ readonly atomicSwapAddress: "0xDC74a45e86DEdf1fF7c6dac77e0c2F082f9E4F72";
1116
+ readonly tokenAddress: "0x9FDBdA0A5e284c32744D2f17Ee5c74B284993463";
1117
+ };
1118
+ };
1119
+ readonly unichain: {
1120
+ readonly type: BlockchainType.evm;
1121
+ readonly network: Network.MAINNET;
1122
+ readonly WBTC: {
1123
+ readonly name: "Wrapped Bitcoin";
1124
+ readonly decimals: 8;
1125
+ readonly symbol: "WBTC";
1126
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
1127
+ readonly atomicSwapAddress: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
1128
+ readonly tokenAddress: "0x927B51f251480a681271180DA4de28D44EC4AfB8";
1129
+ };
1130
+ readonly USDC: {
1131
+ readonly name: "USD Coin";
1132
+ readonly decimals: 6;
1133
+ readonly symbol: "USDC";
1134
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
1135
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
1136
+ readonly tokenAddress: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
1137
+ };
1138
+ };
1139
+ readonly corn: {
1140
+ readonly type: BlockchainType.evm;
1141
+ readonly network: Network.MAINNET;
1142
+ readonly BTCN: {
1143
+ readonly name: "Bitcorn";
1144
+ readonly decimals: 18;
1145
+ readonly symbol: "BTCN";
1146
+ readonly logo: "https://garden.imgix.net/token-images/bitcorn.svg";
1147
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
1148
+ readonly tokenAddress: "primary";
1149
+ };
1150
+ };
1151
+ readonly botanix: {
1152
+ readonly type: BlockchainType.evm;
1153
+ readonly network: Network.MAINNET;
1154
+ readonly BTC: {
1155
+ readonly name: "Botanix Bitcoin";
1156
+ readonly decimals: 18;
1157
+ readonly symbol: "BTC";
1158
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
1159
+ readonly atomicSwapAddress: "0xE413743B51f3cC8b3ac24addf50D18fa138cB0Bb";
1160
+ readonly tokenAddress: "primary";
1161
+ };
1162
+ };
1163
+ readonly bnbchain: {
1164
+ readonly type: BlockchainType.evm;
1165
+ readonly network: Network.MAINNET;
1166
+ readonly BTCB: {
1167
+ readonly name: "BTCB";
1168
+ readonly decimals: 18;
1169
+ readonly symbol: "BTCB";
1170
+ readonly logo: "https://garden.imgix.net/token-images/bitcoin.svg";
1171
+ readonly atomicSwapAddress: "0xe74784E5A45528fDEcB257477DD6bd31c8ef0761";
1172
+ readonly tokenAddress: "0x7130d2A12B9BCbFAe4f2634d864A1Ee1Ce3Ead9c";
1173
+ };
1174
+ readonly USDC: {
1175
+ readonly name: "USD Coin";
1176
+ readonly decimals: 18;
1177
+ readonly symbol: "USDC";
1178
+ readonly logo: "https://garden.imgix.net/token-images/usdc.svg";
1179
+ readonly atomicSwapAddress: "0x5fA58e4E89c85B8d678Ade970bD6afD4311aF17E";
1180
+ readonly tokenAddress: "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d";
1181
+ };
1182
+ };
1183
+ readonly core: {
1184
+ readonly type: BlockchainType.evm;
1185
+ readonly network: Network.MAINNET;
1186
+ readonly WBTC: {
1187
+ readonly name: "Wrapped Bitcoin";
1188
+ readonly decimals: 8;
1189
+ readonly symbol: "WBTC";
1190
+ readonly logo: "https://garden.imgix.net/token-images/wbtc.svg";
1191
+ readonly atomicSwapAddress: "0xD781a2abB3FCB9fC0D1Dd85697c237d06b75fe95";
1192
+ readonly tokenAddress: "0x5832f53d147b3d6Cd4578B9CBD62425C7ea9d0Bd";
1193
+ };
1194
+ };
1195
+ }>;
1196
+ export declare const isMainnet: (chain: Chain) => boolean;
1197
+ 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";
1199
+ export declare const isBitcoin: (chain: Chain) => chain is "bitcoin" | "bitcoin_regtest" | "bitcoin_testnet";
1200
+ export declare const isSolana: (chain: Chain) => chain is "solana" | "solana_localnet" | "solana_testnet";
1201
+ export declare const isStarknet: (chain: Chain) => chain is "starknet" | "starknet_devnet" | "starknet_sepolia";
1202
+ export declare const isSui: (chain: Chain) => chain is "sui" | "sui_testnet";
1203
+ export declare const getBlockchainType: (chain: Chain) => BlockchainType;
1204
+ export declare const NATIVE_TOKENS: {
1205
+ evm: string;
1206
+ solana: string;
1207
+ sui: string;
1208
+ };
1209
+ export declare const isEvmNativeToken: (chain: Chain, tokenAddress: string) => boolean;
1210
+ export declare const isSolanaNativeToken: (chain: Chain, tokenAddress: string) => boolean;
1211
+ export declare const isSuiNativeToken: (chain: Chain, tokenAddress: string) => boolean;
1212
+ export declare const isNativeToken: (asset: ChainAsset) => boolean;