@tokemak/tokenlist 0.0.2

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.ts ADDED
@@ -0,0 +1,1385 @@
1
+
2
+ // Types
3
+ import { Address } from "viem";
4
+ export interface INetwork {
5
+ name: string;
6
+ logoURI: string;
7
+ chainId: number;
8
+ }
9
+
10
+ export interface IProtocol {
11
+ logoURI: string;
12
+ name: string;
13
+ audits?: string;
14
+ type: "DEX" | "Lending Market" | "Protocol" | "Portfolio Tracker";
15
+ }
16
+
17
+ export interface IToken {
18
+ address: Address;
19
+ chainId: number;
20
+ decimals: number;
21
+ logoURI: string;
22
+ name: string;
23
+ symbol: string;
24
+ audits?: string;
25
+ extensions?: {
26
+ bridgeMainnetAdapter?: Address;
27
+ bridgeInfo?: {
28
+ [chainId: number]: {
29
+ tokenAddress: Address;
30
+ };
31
+ };
32
+ rebasing?: boolean;
33
+ parentAsset?: string;
34
+ };
35
+ }
36
+
37
+ export interface IAutopool {
38
+ symbol: string;
39
+ logoURI: string;
40
+ description?: string;
41
+ type: "Tokemak" | "Ecosystem";
42
+ }
43
+
44
+ // Constants
45
+ export const TOKEMAK_TOKENLIST_BASE_URL = "https://token-imgs.tokemaklabs.com";
46
+
47
+ export const TOKEMAK_TOKENS_BASE_URL = "https://token-imgs.tokemaklabs.com/tokens";
48
+
49
+ export const TOKEMAK_NETWORKS_BASE_URL = "https://token-imgs.tokemaklabs.com/networks";
50
+
51
+ export const TOKEMAK_PROTOCOLS_BASE_URL = "https://token-imgs.tokemaklabs.com/protocols";
52
+
53
+ export const TOKEMAK_AUTOPOOLS_BASE_URL = "https://token-imgs.tokemaklabs.com/autopools";
54
+
55
+ export const TOKEMAK_LISTS_URL = "https://token-imgs.tokemaklabs.com/lists";
56
+
57
+ // Networks
58
+ export const ETHEREUM_NETWORK: INetwork = {
59
+ "name": "Ethereum",
60
+ "logoURI": "https://token-imgs.tokemaklabs.com/networks/ethereum.png",
61
+ "chainId": 1
62
+ };
63
+
64
+ export const BASE_NETWORK: INetwork = {
65
+ "name": "Base",
66
+ "logoURI": "https://token-imgs.tokemaklabs.com/networks/base.png",
67
+ "chainId": 8453
68
+ };
69
+
70
+ export const OPTIMISM_NETWORK: INetwork = {
71
+ "name": "Optimism",
72
+ "logoURI": "https://token-imgs.tokemaklabs.com/networks/optimism.png",
73
+ "chainId": 10
74
+ };
75
+
76
+ export const ARBITRUM_NETWORK: INetwork = {
77
+ "name": "Arbitrum",
78
+ "logoURI": "https://token-imgs.tokemaklabs.com/networks/arbitrum.png",
79
+ "chainId": 42161
80
+ };
81
+
82
+ export const SONIC_NETWORK: INetwork = {
83
+ "name": "Sonic",
84
+ "logoURI": "https://token-imgs.tokemaklabs.com/networks/sonic.png",
85
+ "chainId": 146
86
+ };
87
+
88
+ // Protocols
89
+ export const CURVE_PROTOCOL: IProtocol = {
90
+ "name": "Curve",
91
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/curve.png",
92
+ "type": "DEX",
93
+ "audits": "https://docs.curve.finance/references/audits/"
94
+ };
95
+
96
+ export const BALANCER_PROTOCOL: IProtocol = {
97
+ "name": "Balancer",
98
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/balancer.png",
99
+ "type": "DEX",
100
+ "audits": "https://balancer.gitbook.io/balancer-v2/security/audits"
101
+ };
102
+
103
+ export const MAVERICK_PROTOCOL: IProtocol = {
104
+ "name": "Maverick",
105
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/maverick.png",
106
+ "type": "DEX",
107
+ "audits": "https://docs.mav.xyz/further-information/security"
108
+ };
109
+
110
+ export const AERODROME_PROTOCOL: IProtocol = {
111
+ "name": "Aerodrome",
112
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/aerodrome.png",
113
+ "type": "DEX",
114
+ "audits": "https://aerodrome.finance/security"
115
+ };
116
+
117
+ export const SUSHI_PROTOCOL: IProtocol = {
118
+ "name": "Sushi",
119
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/sushi.png",
120
+ "type": "DEX"
121
+ };
122
+
123
+ export const BEETS_PROTOCOL: IProtocol = {
124
+ "name": "Beets",
125
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/beets.png",
126
+ "type": "DEX"
127
+ };
128
+
129
+ export const AAVE_PROTOCOL: IProtocol = {
130
+ "name": "Aave",
131
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/aave.png",
132
+ "type": "Lending Market",
133
+ "audits": "https://aave.com/security"
134
+ };
135
+
136
+ export const FLUID_PROTOCOL: IProtocol = {
137
+ "name": "Fluid",
138
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/fluid.png",
139
+ "type": "Lending Market",
140
+ "audits": "https://fluid.guides.instadapp.io/"
141
+ };
142
+
143
+ export const MORPHO_PROTOCOL: IProtocol = {
144
+ "name": "Morpho",
145
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/morpho.png",
146
+ "type": "Lending Market",
147
+ "audits": "https://docs.morpho.org/overview/resources/audits/"
148
+ };
149
+
150
+ export const BALANCERV3_PROTOCOL: IProtocol = {
151
+ "name": "BalancerV3",
152
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/balancerv3.png",
153
+ "type": "DEX",
154
+ "audits": "https://docs.balancer.fi/reference/contracts/security.html"
155
+ };
156
+
157
+ export const ETHENA_PROTOCOL: IProtocol = {
158
+ "name": "Ethena",
159
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/ethena.png",
160
+ "type": "Protocol",
161
+ "audits": "https://docs.ethena.fi/resources/audits"
162
+ };
163
+
164
+ export const MAKER_PROTOCOL: IProtocol = {
165
+ "name": "Maker",
166
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/maker.png",
167
+ "type": "Protocol",
168
+ "audits": "https://docs.makerdao.com/security/security.makerdao.com"
169
+ };
170
+
171
+ export const EULER_PROTOCOL: IProtocol = {
172
+ "name": "Euler",
173
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/euler.png",
174
+ "type": "Lending Market",
175
+ "audits": "https://docs.euler.finance/security/audits"
176
+ };
177
+
178
+ export const SKY_PROTOCOL: IProtocol = {
179
+ "name": "Sky",
180
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/sky.png",
181
+ "type": "Protocol",
182
+ "audits": "https://developers.sky.money/security/security-measures/overview#audits"
183
+ };
184
+
185
+ export const FRAX_PROTOCOL: IProtocol = {
186
+ "name": "Frax",
187
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/frax.png",
188
+ "type": "Protocol",
189
+ "audits": "https://docs.frax.finance/other/audits"
190
+ };
191
+
192
+ export const ANGLE_PROTOCOL: IProtocol = {
193
+ "name": "Angle",
194
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/angle.png",
195
+ "type": "Protocol",
196
+ "audits": "https://docs.angle.money/resources/audits"
197
+ };
198
+
199
+ export const ORIGIN_PROTOCOL: IProtocol = {
200
+ "name": "Origin",
201
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/origin.png",
202
+ "type": "Protocol",
203
+ "audits": "https://docs.originprotocol.com/security-and-risk/audits"
204
+ };
205
+
206
+ export const INVERSE_PROTOCOL: IProtocol = {
207
+ "name": "Inverse",
208
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/inverse.png",
209
+ "type": "Protocol",
210
+ "audits": "https://docs.inverse.finance/inverse-finance/technical/audits"
211
+ };
212
+
213
+ export const LIDO_PROTOCOL: IProtocol = {
214
+ "name": "Lido",
215
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/lido.png",
216
+ "type": "Protocol",
217
+ "audits": "https://github.com/lidofinance/audits"
218
+ };
219
+
220
+ export const SILO_PROTOCOL: IProtocol = {
221
+ "name": "Silo",
222
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/silo.png",
223
+ "type": "Lending Market",
224
+ "audits": "https://docs.silo.finance/docs/audits"
225
+ };
226
+
227
+ export const ZAPPER_PROTOCOL: IProtocol = {
228
+ "name": "Zapper",
229
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/zapper.png",
230
+ "type": "Portfolio Tracker"
231
+ };
232
+
233
+ export const DEBANK_PROTOCOL: IProtocol = {
234
+ "name": "Debank",
235
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/debank.png",
236
+ "type": "Portfolio Tracker"
237
+ };
238
+
239
+ export const LLAMASWAP_PROTOCOL: IProtocol = {
240
+ "name": "LlamaSwap",
241
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/llamaswap.png",
242
+ "type": "Protocol"
243
+ };
244
+
245
+ export const NONE_PROTOCOL: IProtocol = {
246
+ "name": "None",
247
+ "logoURI": "https://token-imgs.tokemaklabs.com/protocols/none.png",
248
+ "type": "Protocol"
249
+ };
250
+
251
+ // Tokens
252
+ export const ETH_TOKEN: IToken = {
253
+ "chainId": 1,
254
+ "address": "0x0000000000000000000000000000000000000000",
255
+ "name": "Ethereum",
256
+ "symbol": "ETH",
257
+ "decimals": 18,
258
+ "extensions": {
259
+ "bridgeInfo": {
260
+ "8453": {
261
+ "tokenAddress": "0x0000000000000000000000000000000000000000"
262
+ }
263
+ }
264
+ },
265
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x0000000000000000000000000000000000000000.png"
266
+ };
267
+
268
+ export const WETH_TOKEN: IToken = {
269
+ "chainId": 1,
270
+ "address": "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2",
271
+ "name": "Wrapped Ether",
272
+ "symbol": "WETH",
273
+ "decimals": 18,
274
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2.png",
275
+ "extensions": {
276
+ "bridgeInfo": {
277
+ "8453": {
278
+ "tokenAddress": "0x4200000000000000000000000000000000000006"
279
+ }
280
+ },
281
+ "parentAsset": "ETH"
282
+ }
283
+ };
284
+
285
+ export const WBTC_TOKEN: IToken = {
286
+ "chainId": 1,
287
+ "address": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
288
+ "name": "Wrapped Bitcoin",
289
+ "symbol": "WBTC",
290
+ "decimals": 8,
291
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599.png"
292
+ };
293
+
294
+ export const TOKE_TOKEN: IToken = {
295
+ "chainId": 1,
296
+ "address": "0x2e9d63788249371f1dfc918a52f8d799f4a38c94",
297
+ "name": "Tokemak",
298
+ "symbol": "TOKE",
299
+ "decimals": 18,
300
+ "audits": "https://docs.tokemak.xyz/developer-docs/security-and-audits",
301
+ "extensions": {
302
+ "bridgeMainnetAdapter": "0x413747b50C78fFb67783ed7Fb9736df5dB37aaBE",
303
+ "bridgeInfo": {
304
+ "10": {
305
+ "tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
306
+ },
307
+ "146": {
308
+ "tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
309
+ },
310
+ "8453": {
311
+ "tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
312
+ },
313
+ "42161": {
314
+ "tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
315
+ }
316
+ }
317
+ },
318
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x2e9d63788249371f1dfc918a52f8d799f4a38c94.png"
319
+ };
320
+
321
+ export const RETH_TOKEN: IToken = {
322
+ "chainId": 1,
323
+ "address": "0xae78736cd615f374d3085123a210448e74fc6393",
324
+ "name": "Rocket Pool ETH",
325
+ "symbol": "rETH",
326
+ "decimals": 18,
327
+ "audits": "https://rocketpool.net/protocol/security",
328
+ "extensions": {
329
+ "bridgeInfo": {
330
+ "8453": {
331
+ "tokenAddress": "0xb6fe221fe9eef5aba221c348ba20a1bf5e73624c"
332
+ }
333
+ }
334
+ },
335
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xae78736cd615f374d3085123a210448e74fc6393.png"
336
+ };
337
+
338
+ export const STETH_TOKEN: IToken = {
339
+ "chainId": 1,
340
+ "address": "0xae7ab96520de3a18e5e111b5eaab095312d7fe84",
341
+ "name": "Lido Staked Ether",
342
+ "symbol": "stETH",
343
+ "decimals": 18,
344
+ "audits": "https://github.com/lidofinance/audits",
345
+ "extensions": {
346
+ "rebasing": true
347
+ },
348
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xae7ab96520de3a18e5e111b5eaab095312d7fe84.png"
349
+ };
350
+
351
+ export const WSTETH_TOKEN: IToken = {
352
+ "chainId": 1,
353
+ "address": "0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0",
354
+ "name": "Wrapped stETH",
355
+ "symbol": "wstETH",
356
+ "decimals": 18,
357
+ "audits": "https://github.com/lidofinance/audits",
358
+ "extensions": {
359
+ "bridgeInfo": {
360
+ "8453": {
361
+ "tokenAddress": "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452"
362
+ }
363
+ },
364
+ "parentAsset": "stETH"
365
+ },
366
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0.png"
367
+ };
368
+
369
+ export const SWETH_TOKEN: IToken = {
370
+ "chainId": 1,
371
+ "address": "0xf951e335afb289353dc249e82926178eac7ded78",
372
+ "name": "Swell Ethereum",
373
+ "symbol": "swETH",
374
+ "decimals": 18,
375
+ "audits": "https://docs.swellnetwork.io/swell-staking/risks/smart-contract-audits",
376
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xf951e335afb289353dc249e82926178eac7ded78.png"
377
+ };
378
+
379
+ export const FRXETH_TOKEN: IToken = {
380
+ "chainId": 1,
381
+ "address": "0x5e8422345238f34275888049021821e8e08caa1f",
382
+ "name": "Frax Ether",
383
+ "symbol": "frxETH",
384
+ "decimals": 18,
385
+ "audits": "https://docs.frax.finance/other/audits",
386
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x5e8422345238f34275888049021821e8e08caa1f.png"
387
+ };
388
+
389
+ export const SFRXETH_TOKEN: IToken = {
390
+ "chainId": 1,
391
+ "address": "0xac3e018457b222d93114458476f3e3416abbe38f",
392
+ "name": "Staked Frax Ether",
393
+ "symbol": "sfrxETH",
394
+ "decimals": 18,
395
+ "audits": "https://docs.frax.finance/other/audits",
396
+ "extensions": {
397
+ "bridgeInfo": {
398
+ "8453": {
399
+ "tokenAddress": "0x1f55a02a049033e3419a8e2975cf3f572f4e6e9a"
400
+ }
401
+ }
402
+ },
403
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xac3e018457b222d93114458476f3e3416abbe38f.png"
404
+ };
405
+
406
+ export const WEETH_TOKEN: IToken = {
407
+ "chainId": 1,
408
+ "address": "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
409
+ "name": "Wrapped eETH",
410
+ "symbol": "weETH",
411
+ "decimals": 18,
412
+ "audits": "https://etherfi.gitbook.io/etherfi/security/audits",
413
+ "extensions": {
414
+ "bridgeInfo": {
415
+ "8453": {
416
+ "tokenAddress": "0x04C0599Ae5A44757c0af6F9eC3b93da8976c150A"
417
+ }
418
+ }
419
+ },
420
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee.png"
421
+ };
422
+
423
+ export const EETH_TOKEN: IToken = {
424
+ "chainId": 1,
425
+ "address": "0x35fa164735182de50811e8e2e824cfb9b6118ac2",
426
+ "name": "ether.fi Staked ETH",
427
+ "symbol": "eETH",
428
+ "decimals": 18,
429
+ "audits": "https://etherfi.gitbook.io/etherfi/security/audits",
430
+ "extensions": {
431
+ "rebasing": true
432
+ },
433
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x35fa164735182de50811e8e2e824cfb9b6118ac2.png"
434
+ };
435
+
436
+ export const CBETH_TOKEN: IToken = {
437
+ "chainId": 1,
438
+ "address": "0xbe9895146f7af43049ca1c1ae358b0541ea49704",
439
+ "name": "Coinbase Wrapped Staked ETH",
440
+ "symbol": "cbETH",
441
+ "decimals": 18,
442
+ "audits": "https://blog.openzeppelin.com/coinbase-liquid-staking-token-audit",
443
+ "extensions": {
444
+ "bridgeInfo": {
445
+ "10": {
446
+ "tokenAddress": "0xadDb6A0412DE1BA0F936DCaeb8Aaa24578dcF3B2"
447
+ },
448
+ "8453": {
449
+ "tokenAddress": "0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22"
450
+ },
451
+ "42161": {
452
+ "tokenAddress": "0x1DEBd73E752bEaF79865Fd6446b0c970EaE7732f"
453
+ }
454
+ }
455
+ },
456
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbe9895146f7af43049ca1c1ae358b0541ea49704.png"
457
+ };
458
+
459
+ export const OSETH_TOKEN: IToken = {
460
+ "chainId": 1,
461
+ "address": "0xf1c9acdc66974dfb6decb12aa385b9cd01190e38",
462
+ "name": "StakeWise Staked ETH",
463
+ "symbol": "osETH",
464
+ "decimals": 18,
465
+ "audits": "https://github.com/stakewise/v3-core/tree/main/audits",
466
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xf1c9acdc66974dfb6decb12aa385b9cd01190e38.png"
467
+ };
468
+
469
+ export const EZETH_TOKEN: IToken = {
470
+ "chainId": 1,
471
+ "address": "0xbf5495Efe5DB9ce00f80364C8B423567e58d2110",
472
+ "name": "Renzo Restaked ETH",
473
+ "symbol": "ezETH",
474
+ "decimals": 18,
475
+ "audits": "https://docs.renzoprotocol.com/docs/security/audits",
476
+ "extensions": {
477
+ "bridgeInfo": {
478
+ "8453": {
479
+ "tokenAddress": "0x2416092f143378750bb29b79eD961ab195CcEea5"
480
+ }
481
+ }
482
+ },
483
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbf5495efe5db9ce00f80364c8b423567e58d2110.png"
484
+ };
485
+
486
+ export const PXETH_TOKEN: IToken = {
487
+ "chainId": 1,
488
+ "address": "0x04c154b66cb340f3ae24111cc767e0184ed00cc6",
489
+ "name": "Dinero Staked ETH",
490
+ "symbol": "pxETH",
491
+ "decimals": 18,
492
+ "audits": "https://dinero.xyz/docs/security",
493
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x04c154b66cb340f3ae24111cc767e0184ed00cc6.png"
494
+ };
495
+
496
+ export const APXETH_TOKEN: IToken = {
497
+ "chainId": 1,
498
+ "address": "0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6",
499
+ "name": "Dinero apxETH",
500
+ "symbol": "apxETH",
501
+ "decimals": 18,
502
+ "audits": "https://dinero.xyz/docs/security",
503
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x9ba021b0a9b958b5e75ce9f6dff97c7ee52cb3e6.png"
504
+ };
505
+
506
+ export const OETH_TOKEN: IToken = {
507
+ "chainId": 1,
508
+ "address": "0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3",
509
+ "name": "Origin Ether",
510
+ "symbol": "oETH",
511
+ "decimals": 18,
512
+ "audits": "https://docs.originprotocol.com/security-and-risk/audits",
513
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x856c4efb76c1d1ae02e20ceb03a2a6a08b0b8dc3.png"
514
+ };
515
+
516
+ export const RSETH_TOKEN: IToken = {
517
+ "chainId": 1,
518
+ "address": "0xa1290d69c65a6fe4df752f95823fae25cb99e5a7",
519
+ "name": "Kelp DAO Restaked ETH",
520
+ "symbol": "rsETH",
521
+ "decimals": 18,
522
+ "audits": "https://kelp.gitbook.io/kelp/audits",
523
+ "extensions": {
524
+ "bridgeInfo": {
525
+ "8453": {
526
+ "tokenAddress": "0x1Bc71130A0e39942a7658878169764Bbd8A45993"
527
+ }
528
+ }
529
+ },
530
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa1290d69c65a6fe4df752f95823fae25cb99e5a7.png"
531
+ };
532
+
533
+ export const ETHX_TOKEN: IToken = {
534
+ "chainId": 1,
535
+ "address": "0xa35b1b31ce002fbf2058d22f30f95d405200a15b",
536
+ "name": "Stader ETHx",
537
+ "symbol": "ETHx",
538
+ "decimals": 18,
539
+ "audits": "https://staderlabs.gitbook.io/ethereum/ethx-security",
540
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa35b1b31ce002fbf2058d22f30f95d405200a15b.png"
541
+ };
542
+
543
+ export const RSWETH_TOKEN: IToken = {
544
+ "chainId": 1,
545
+ "address": "0xfae103dc9cf190ed75350761e95403b7b8afa6c0",
546
+ "name": "Restaked Swell ETH",
547
+ "symbol": "rswETH",
548
+ "decimals": 18,
549
+ "audits": "https://docs.swellnetwork.io/swell-staking/risks/smart-contract-audits",
550
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xfae103dc9cf190ed75350761e95403b7b8afa6c0.png"
551
+ };
552
+
553
+ export const USDC_TOKEN: IToken = {
554
+ "chainId": 1,
555
+ "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
556
+ "name": "USDC",
557
+ "symbol": "USDC",
558
+ "decimals": 6,
559
+ "extensions": {
560
+ "bridgeInfo": {
561
+ "146": {
562
+ "tokenAddress": "0x29219dd400f2Bf60E5a23d13Be72B486D4038894"
563
+ },
564
+ "8453": {
565
+ "tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
566
+ }
567
+ }
568
+ },
569
+ "audits": "https://www.circle.com/transparency",
570
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48.png"
571
+ };
572
+
573
+ export const PUFETH_TOKEN: IToken = {
574
+ "chainId": 1,
575
+ "address": "0xD9A442856C234a39a81a089C06451EBAa4306a72",
576
+ "name": "pufETH",
577
+ "symbol": "pufETH",
578
+ "decimals": 18,
579
+ "audits": "https://github.com/PufferFinance/puffer-contracts/tree/master/audits",
580
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xd9a442856c234a39a81a089c06451ebaa4306a72.png"
581
+ };
582
+
583
+ export const SUSDE_TOKEN: IToken = {
584
+ "address": "0x9d39a5de30e57443bff2a8307a4256c8797a3497",
585
+ "chainId": 1,
586
+ "decimals": 18,
587
+ "symbol": "sUSDe",
588
+ "name": "Staked USDe",
589
+ "audits": "https://docs.ethena.fi/resources/audits",
590
+ "extensions": {
591
+ "parentAsset": "USDe"
592
+ },
593
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x9d39a5de30e57443bff2a8307a4256c8797a3497.png"
594
+ };
595
+
596
+ export const SUSDS_TOKEN: IToken = {
597
+ "address": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd",
598
+ "chainId": 1,
599
+ "decimals": 18,
600
+ "symbol": "sUSDS",
601
+ "name": "Savings USDS",
602
+ "audits": "https://developers.sky.money/security/security-measures/overview#audits",
603
+ "extensions": {
604
+ "parentAsset": "USDS",
605
+ "bridgeInfo": {
606
+ "8453": {
607
+ "tokenAddress": "0x5875eEE11Cf8398102FdAd704C9E96607675467a"
608
+ }
609
+ }
610
+ },
611
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa3931d71877c0e7a3148cb7eb4463524fec27fbd.png"
612
+ };
613
+
614
+ export const USDS_TOKEN: IToken = {
615
+ "address": "0xdc035d45d973e3ec169d2276ddab16f1e407384f",
616
+ "chainId": 1,
617
+ "decimals": 18,
618
+ "symbol": "USDS",
619
+ "name": "USDS",
620
+ "extensions": {
621
+ "bridgeInfo": {
622
+ "8453": {
623
+ "tokenAddress": "0x820C137fa70C8691f0e44Dc420a5e53c168921Dc"
624
+ }
625
+ }
626
+ },
627
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xdc035d45d973e3ec169d2276ddab16f1e407384f.png"
628
+ };
629
+
630
+ export const SCRVUSD_TOKEN: IToken = {
631
+ "address": "0x0655977feb2f289a4ab78af67bab0d17aab84367",
632
+ "chainId": 1,
633
+ "decimals": 18,
634
+ "symbol": "scrvUSD",
635
+ "name": "Savings crvUSD",
636
+ "audits": "https://docs.curve.finance/security/security/#security-audits",
637
+ "extensions": {
638
+ "parentAsset": "crvUSD",
639
+ "bridgeInfo": {
640
+ "8453": {
641
+ "tokenAddress": "0x646A737B9B6024e49f5908762B3fF73e65B5160c"
642
+ }
643
+ }
644
+ },
645
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x0655977feb2f289a4ab78af67bab0d17aab84367.png"
646
+ };
647
+
648
+ export const DAI_TOKEN: IToken = {
649
+ "address": "0x6b175474e89094c44da98b954eedeac495271d0f",
650
+ "chainId": 1,
651
+ "decimals": 18,
652
+ "symbol": "DAI",
653
+ "name": "Dai Stablecoin",
654
+ "audits": "https://docs.makerdao.com/security/security.makerdao.com",
655
+ "extensions": {
656
+ "bridgeInfo": {
657
+ "8453": {
658
+ "tokenAddress": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb"
659
+ }
660
+ }
661
+ },
662
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x6b175474e89094c44da98b954eedeac495271d0f.png"
663
+ };
664
+
665
+ export const USDE_TOKEN: IToken = {
666
+ "address": "0x4c9edd5852cd905f086c759e8383e09bff1e68b3",
667
+ "chainId": 1,
668
+ "decimals": 18,
669
+ "symbol": "USDe",
670
+ "name": "USDe",
671
+ "audits": "https://docs.ethena.fi/resources/audits",
672
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png"
673
+ };
674
+
675
+ export const USDT_TOKEN: IToken = {
676
+ "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
677
+ "chainId": 1,
678
+ "decimals": 6,
679
+ "symbol": "USDT",
680
+ "name": "Tether USD",
681
+ "audits": "https://tether.to/ru/transparency/?tab=reports",
682
+ "extensions": {
683
+ "bridgeInfo": {
684
+ "146": {
685
+ "tokenAddress": "0x6047828dc181963ba44974801FF68e538dA5eaF9"
686
+ },
687
+ "8453": {
688
+ "tokenAddress": "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2"
689
+ }
690
+ }
691
+ },
692
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xdac17f958d2ee523a2206206994597c13d831ec7.png"
693
+ };
694
+
695
+ export const CRVUSD_TOKEN: IToken = {
696
+ "address": "0xf939e0a03fb07f59a73314e73794be0e57ac1b4e",
697
+ "chainId": 1,
698
+ "decimals": 18,
699
+ "symbol": "crvUSD",
700
+ "name": "Curve.Fi USD Stablecoin",
701
+ "audits": "https://docs.curve.finance/security/security/#security-audits",
702
+ "extensions": {
703
+ "bridgeInfo": {
704
+ "8453": {
705
+ "tokenAddress": "0x417Ac0e078398C154EdFadD9Ef675d30Be60Af93"
706
+ }
707
+ }
708
+ },
709
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xf939e0a03fb07f59a73314e73794be0e57ac1b4e.png"
710
+ };
711
+
712
+ export const GHO_TOKEN: IToken = {
713
+ "address": "0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f",
714
+ "chainId": 1,
715
+ "decimals": 18,
716
+ "symbol": "GHO",
717
+ "name": "Gho Token",
718
+ "audits": "https://github.com/aave/gho-public/blob/main/audits/Aave%20GHO%20Audit%20Report%20Updated%20-%20August%202022.pdf",
719
+ "extensions": {
720
+ "bridgeInfo": {
721
+ "8453": {
722
+ "tokenAddress": "0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee"
723
+ }
724
+ }
725
+ },
726
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f.png"
727
+ };
728
+
729
+ export const FRAX_TOKEN: IToken = {
730
+ "address": "0x853d955acef822db058eb8505911ed77f175b99e",
731
+ "chainId": 1,
732
+ "decimals": 18,
733
+ "symbol": "FRAX",
734
+ "name": "Frax",
735
+ "audits": "https://docs.frax.finance/other/audits",
736
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x853d955acef822db058eb8505911ed77f175b99e.png"
737
+ };
738
+
739
+ export const GYD_TOKEN: IToken = {
740
+ "address": "0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a",
741
+ "chainId": 1,
742
+ "decimals": 18,
743
+ "symbol": "GYD",
744
+ "name": "Gyro Dollar",
745
+ "audits": "https://docs.gyro.finance/audit-reports",
746
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xe07f9d810a48ab5c3c914ba3ca53af14e4491e8a.png"
747
+ };
748
+
749
+ export const USR_TOKEN: IToken = {
750
+ "chainId": 1,
751
+ "address": "0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110",
752
+ "name": "Resolv USR",
753
+ "symbol": "USR",
754
+ "decimals": 18,
755
+ "audits": "https://docs.resolv.xyz/litepaper/resources/security",
756
+ "extensions": {
757
+ "bridgeInfo": {
758
+ "8453": {
759
+ "tokenAddress": "0x35E5dB674D8e93a03d814FA0ADa70731efe8a4b9"
760
+ }
761
+ }
762
+ },
763
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x66a1e37c9b0eaddca17d3662d6c05f4decf3e110.png"
764
+ };
765
+
766
+ export const SDAI_TOKEN: IToken = {
767
+ "chainId": 1,
768
+ "address": "0x83f20f44975d03b1b09e64809b757c47f942beea",
769
+ "name": "Savings Dai",
770
+ "symbol": "SDAI",
771
+ "decimals": 18,
772
+ "audits": "https://docs.makerdao.com/security/security.makerdao.com",
773
+ "extensions": {
774
+ "parentAsset": "DAI"
775
+ },
776
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x83f20f44975d03b1b09e64809b757c47f942beea.png"
777
+ };
778
+
779
+ export const SFRAX_TOKEN: IToken = {
780
+ "chainId": 1,
781
+ "address": "0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32",
782
+ "name": "Staked FRAX",
783
+ "symbol": "SFRAX",
784
+ "decimals": 18,
785
+ "audits": "https://docs.frax.finance/other/audits",
786
+ "extensions": {
787
+ "parentAsset": "FRAX"
788
+ },
789
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32.png"
790
+ };
791
+
792
+ export const FRXUSD_TOKEN: IToken = {
793
+ "chainId": 1,
794
+ "address": "0xcacd6fd266af91b8aed52accc382b4e165586e29",
795
+ "name": "Frax USD",
796
+ "symbol": "FRXUSD",
797
+ "decimals": 18,
798
+ "audits": "https://docs.frax.finance/other/audits",
799
+ "extensions": {
800
+ "bridgeInfo": {
801
+ "146": {
802
+ "tokenAddress": "0x80Eede496655FB9047dd39d9f418d5483ED600df"
803
+ }
804
+ }
805
+ },
806
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xcacd6fd266af91b8aed52accc382b4e165586e29.png"
807
+ };
808
+
809
+ export const SFRXUSD_TOKEN: IToken = {
810
+ "chainId": 1,
811
+ "address": "0xcf62f905562626cfcdd2261162a51fd02fc9c5b6",
812
+ "name": "Staked Frax USD",
813
+ "symbol": "SFRXUSD",
814
+ "decimals": 18,
815
+ "audits": "https://docs.frax.finance/other/audits",
816
+ "extensions": {
817
+ "parentAsset": "FRXUSD"
818
+ },
819
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xcf62f905562626cfcdd2261162a51fd02fc9c5b6.png"
820
+ };
821
+
822
+ export const WAUSDT_TOKEN: IToken = {
823
+ "chainId": 1,
824
+ "address": "0x7Bc3485026Ac48b6cf9BaF0A377477Fff5703Af8",
825
+ "name": "Wrapped Aave USDT",
826
+ "symbol": "waUSDT",
827
+ "decimals": 18,
828
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x7bc3485026ac48b6cf9baf0a377477fff5703af8.png",
829
+ "audits": "https://docs.aave.com/security/audits"
830
+ };
831
+
832
+ export const WAGHO_TOKEN: IToken = {
833
+ "chainId": 1,
834
+ "address": "0xC71Ea051a5F82c67ADcF634c36FFE6334793D24C",
835
+ "name": "Wrapped Aave GHO",
836
+ "symbol": "waGHO",
837
+ "decimals": 18,
838
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xc71ea051a5f82c67adcf634c36ffe6334793d24c.png",
839
+ "audits": "https://docs.aave.com/security/audits",
840
+ "extensions": {
841
+ "parentAsset": "GHO"
842
+ }
843
+ };
844
+
845
+ export const WAUSDC_TOKEN: IToken = {
846
+ "chainId": 1,
847
+ "address": "0xD4fa2D31b7968E448877f69A96DE69f5de8cD23E",
848
+ "name": "Wrapped Aave USDC",
849
+ "symbol": "waUSDC",
850
+ "decimals": 6,
851
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xd4fa2d31b7968e448877f69a96de69f5de8cd23e.png",
852
+ "audits": "https://docs.aave.com/security/audits"
853
+ };
854
+
855
+ export const WRSETH_TOKEN: IToken = {
856
+ "chainId": 8453,
857
+ "address": "0xedfa23602d0ec14714057867a78d01e94176bea0",
858
+ "name": "Wrapped Kelp DAO Restaked ETH",
859
+ "symbol": "wrsETH",
860
+ "decimals": 18,
861
+ "audits": "https://kelp.gitbook.io/kelp/audits",
862
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/base/0xedfa23602d0ec14714057867a78d01e94176bea0.png"
863
+ };
864
+
865
+ export const S_TOKEN: IToken = {
866
+ "chainId": 146,
867
+ "address": "0x0000000000000000000000000000000000000000",
868
+ "name": "Sonic",
869
+ "symbol": "S",
870
+ "decimals": 18,
871
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0x0000000000000000000000000000000000000000.png"
872
+ };
873
+
874
+ export const WS_TOKEN: IToken = {
875
+ "chainId": 146,
876
+ "address": "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38",
877
+ "name": "Wrapped Sonic",
878
+ "symbol": "wS",
879
+ "decimals": 18,
880
+ "extensions": {
881
+ "parentAsset": "S"
882
+ },
883
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0x039e2fb66102314ce7b64ce5ce3e5183bc94ad38.png"
884
+ };
885
+
886
+ export const DOLA_TOKEN: IToken = {
887
+ "chainId": 1,
888
+ "address": "0x865377367054516e17014ccded1e7d814edc9ce4",
889
+ "name": "Dola",
890
+ "symbol": "DOLA",
891
+ "decimals": 18,
892
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x865377367054516e17014ccded1e7d814edc9ce4.png"
893
+ };
894
+
895
+ export const SDOLA_TOKEN: IToken = {
896
+ "chainId": 1,
897
+ "address": "0xb45ad160634c528cc3d2926d9807104fa3157305",
898
+ "name": "Staked Dola",
899
+ "symbol": "sDOLA",
900
+ "decimals": 18,
901
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xb45ad160634c528cc3d2926d9807104fa3157305.png"
902
+ };
903
+
904
+ export const REUSD_TOKEN: IToken = {
905
+ "chainId": 1,
906
+ "address": "0x57ab1e0003f623289cd798b1824be09a793e4bec",
907
+ "name": "Resupply USD",
908
+ "symbol": "REUSD",
909
+ "decimals": 18,
910
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x57ab1e0003f623289cd798b1824be09a793e4bec.png"
911
+ };
912
+
913
+ export const EUSD_TOKEN: IToken = {
914
+ "chainId": 1,
915
+ "address": "0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f",
916
+ "name": "Electronic USD",
917
+ "symbol": "EUSD",
918
+ "decimals": 18,
919
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa0d69e286b938e21cbf7e51d71f6a4c8918f482f.png"
920
+ };
921
+
922
+ export const DEUSD_TOKEN: IToken = {
923
+ "chainId": 1,
924
+ "address": "0x15700b564ca08d9439c58ca5053166e8317aa138",
925
+ "name": "Elixir deUSD",
926
+ "symbol": "deUSD",
927
+ "decimals": 18,
928
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x15700b564ca08d9439c58ca5053166e8317aa138.png"
929
+ };
930
+
931
+ export const ALUSD_TOKEN: IToken = {
932
+ "chainId": 1,
933
+ "address": "0xbc6da0fe9ad5f3b0d58160288917aa56653660e9",
934
+ "name": "Alchemix USD",
935
+ "symbol": "alUSD",
936
+ "decimals": 18,
937
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png"
938
+ };
939
+
940
+ export const SYRUPUSDC_TOKEN: IToken = {
941
+ "chainId": 1,
942
+ "address": "0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b",
943
+ "name": "Syrup USDC",
944
+ "symbol": "syrupUSDC",
945
+ "decimals": 18,
946
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x80ac24aa929eaf5013f6436cda2a7ba190f5cc0b.png"
947
+ };
948
+
949
+ export const STS_TOKEN: IToken = {
950
+ "chainId": 146,
951
+ "address": "0xE5DA20F15420aD15DE0fa650600aFc998bbE3955",
952
+ "name": "Beets Staked Sonic",
953
+ "symbol": "stS",
954
+ "decimals": 18,
955
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0xe5da20f15420ad15de0fa650600afc998bbe3955.png"
956
+ };
957
+
958
+ export const OS_TOKEN: IToken = {
959
+ "chainId": 146,
960
+ "address": "0xb1e25689D55734FD3ffFc939c4C3Eb52DFf8A794",
961
+ "name": "Origin Sonic",
962
+ "symbol": "OS",
963
+ "decimals": 18,
964
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0xb1e25689d55734fd3fffc939c4c3eb52dff8a794.png"
965
+ };
966
+
967
+ export const WOS_TOKEN: IToken = {
968
+ "chainId": 146,
969
+ "address": "0x9F0dF7799f6FDAd409300080cfF680f5A23df4b1",
970
+ "name": "Wrapped Origin Sonic",
971
+ "symbol": "wOS",
972
+ "decimals": 18,
973
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0x9f0df7799f6fdad409300080cff680f5a23df4b1.png"
974
+ };
975
+
976
+ export const ANS_TOKEN: IToken = {
977
+ "chainId": 146,
978
+ "address": "0x0C4E186Eae8aCAA7F7de1315D5AD174BE39Ec987",
979
+ "name": "Angles Staked Sonic",
980
+ "symbol": "anS",
981
+ "decimals": 18,
982
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0x0c4e186eae8acaa7f7de1315d5ad174be39ec987.png"
983
+ };
984
+
985
+ export const WANS_TOKEN: IToken = {
986
+ "chainId": 146,
987
+ "address": "0xfA85Fe5A8F5560e9039C04f2b0a90dE1415aBD70",
988
+ "name": "Wrapped Angles Staked Sonic",
989
+ "symbol": "wanS",
990
+ "decimals": 18,
991
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0xfa85fe5a8f5560e9039c04f2b0a90de1415abd70.png"
992
+ };
993
+
994
+ export const SCUSD_TOKEN: IToken = {
995
+ "chainId": 146,
996
+ "address": "0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE",
997
+ "name": "Sonic USD",
998
+ "symbol": "scUSD",
999
+ "decimals": 18,
1000
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0xd3dce716f3ef535c5ff8d041c1a41c3bd89b97ae.png"
1001
+ };
1002
+
1003
+ export const STKSCUSD_TOKEN: IToken = {
1004
+ "chainId": 146,
1005
+ "address": "0x4D85bA8c3918359c78Ed09581E5bc7578ba932ba",
1006
+ "name": "Staked Sonic USD",
1007
+ "symbol": "stkscUSD",
1008
+ "decimals": 18,
1009
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0x4d85ba8c3918359c78ed09581e5bc7578ba932ba.png"
1010
+ };
1011
+
1012
+ export const WSTKSCUSD_TOKEN: IToken = {
1013
+ "chainId": 146,
1014
+ "address": "0x9fb76f7ce5FCeAA2C42887ff441D46095E494206",
1015
+ "name": "Wrapped Staked Sonic USD",
1016
+ "symbol": "wstkscUSD",
1017
+ "decimals": 18,
1018
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/sonic/0x9fb76f7ce5fceaa2c42887ff441d46095e494206.png"
1019
+ };
1020
+
1021
+ export const BOLD_TOKEN: IToken = {
1022
+ "chainId": 1,
1023
+ "address": "0x6440f144b7e50d6a8439336510312d2f54beb01d",
1024
+ "name": "Liquity BOLD",
1025
+ "symbol": "BOLD",
1026
+ "decimals": 18,
1027
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x6440f144b7e50d6a8439336510312d2f54beb01d.png"
1028
+ };
1029
+
1030
+ export const LUSD_TOKEN: IToken = {
1031
+ "chainId": 1,
1032
+ "address": "0x5f98805a4e8be255a32880fdec7f6728c6568ba0",
1033
+ "name": "Liquity USD",
1034
+ "symbol": "LUSD",
1035
+ "decimals": 18,
1036
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x5f98805a4e8be255a32880fdec7f6728c6568ba0.png"
1037
+ };
1038
+
1039
+ export const WSTUSR_TOKEN: IToken = {
1040
+ "chainId": 1,
1041
+ "address": "0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055",
1042
+ "name": "Resolv wstUSR",
1043
+ "symbol": "wstUSR",
1044
+ "decimals": 18,
1045
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x1202f5c7b4b9e47a1a484e8b270be34dbbc75055.png"
1046
+ };
1047
+
1048
+ export const LVLUSD_TOKEN: IToken = {
1049
+ "chainId": 1,
1050
+ "address": "0x7c1156e515aa1a2e851674120074968c905aaf37",
1051
+ "name": "Level USD",
1052
+ "symbol": "lvlUSD",
1053
+ "decimals": 18,
1054
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x7c1156e515aa1a2e851674120074968c905aaf37.png"
1055
+ };
1056
+
1057
+ export const IETHV2_TOKEN: IToken = {
1058
+ "chainId": 1,
1059
+ "address": "0xA0D3707c569ff8C87FA923d3823eC5D81c98Be78",
1060
+ "name": "Fluid Lite stETH",
1061
+ "symbol": "iETHv2",
1062
+ "decimals": 18,
1063
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xa0d3707c569ff8c87fa923d3823ec5d81c98be78.png"
1064
+ };
1065
+
1066
+ export const SILO_TOKEN: IToken = {
1067
+ "chainId": 1,
1068
+ "address": "0xf0b2dd79324a66d2108c961d680f7616e1486bb0",
1069
+ "name": "Silo Finance",
1070
+ "symbol": "SILO",
1071
+ "decimals": 18,
1072
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xf0b2dd79324a66d2108c961d680f7616e1486bb0.png"
1073
+ };
1074
+
1075
+ export const XSILO_TOKEN: IToken = {
1076
+ "chainId": 1,
1077
+ "address": "0xdd4c6FD31Ccf66E250790643947675153c221A91",
1078
+ "name": "XSilo",
1079
+ "symbol": "XSILO",
1080
+ "decimals": 18,
1081
+ "logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xdd4c6fd31ccf66e250790643947675153c221a91.png"
1082
+ };
1083
+
1084
+ // Autopools
1085
+ export const AUTOETH_AUTOPOOL: IAutopool = {
1086
+ "symbol": "autoETH",
1087
+ "description": "ETH LSTs on Ethereum deployed across integrated DEXs.",
1088
+ "type": "Tokemak",
1089
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1090
+ };
1091
+
1092
+ export const BALETH_AUTOPOOL: IAutopool = {
1093
+ "symbol": "balETH",
1094
+ "description": "ETH LSTs and LRTs deployed across Balancer.",
1095
+ "type": "Ecosystem",
1096
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/balETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1097
+ };
1098
+
1099
+ export const BASEETH_AUTOPOOL: IAutopool = {
1100
+ "symbol": "baseETH",
1101
+ "description": "ETH LSTs and LRTs deployed across integrated DEXs and lending protocols on Base.",
1102
+ "type": "Tokemak",
1103
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1104
+ };
1105
+
1106
+ export const AUTOLRT_AUTOPOOL: IAutopool = {
1107
+ "symbol": "autoLRT",
1108
+ "description": "ETH LRTs deployed across integrated DEXs.",
1109
+ "type": "Tokemak",
1110
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoLRT\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1111
+ };
1112
+
1113
+ export const DINEROETH_AUTOPOOL: IAutopool = {
1114
+ "symbol": "dineroETH",
1115
+ "description": "Autopool optimizing pxETH LP positions.",
1116
+ "type": "Ecosystem",
1117
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/dineroETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1118
+ };
1119
+
1120
+ export const AUTOUSD_AUTOPOOL: IAutopool = {
1121
+ "symbol": "autoUSD",
1122
+ "description": "Blue-chip USD stablecoins deployed across integrated DEXs and lending protocols.",
1123
+ "type": "Tokemak",
1124
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1125
+ };
1126
+
1127
+ export const BASEUSD_AUTOPOOL: IAutopool = {
1128
+ "symbol": "baseUSD",
1129
+ "description": "USD stablecoins deployed across integrated DEXs and lending protocols on Base.",
1130
+ "type": "Tokemak",
1131
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1132
+ };
1133
+
1134
+ export const AUTOS_AUTOPOOL: IAutopool = {
1135
+ "symbol": "autoS",
1136
+ "description": "S deployed across integrated destinations on Sonic.",
1137
+ "type": "Ecosystem",
1138
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoS\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1139
+ };
1140
+
1141
+ export const AUTODOLA_AUTOPOOL: IAutopool = {
1142
+ "symbol": "autoDOLA",
1143
+ "description": "DOLA deployed across USD-denominated destinations.",
1144
+ "type": "Ecosystem",
1145
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoDOLA\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1146
+ };
1147
+
1148
+ export const MORPHOUSD_AUTOPOOL: IAutopool = {
1149
+ "symbol": "morphoUSD",
1150
+ "description": "USD stablecoins deployed deployed across Morpho.",
1151
+ "type": "Ecosystem",
1152
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/morphoUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1153
+ };
1154
+
1155
+ export const PENDLEUSD_AUTOPOOL: IAutopool = {
1156
+ "symbol": "pendleUSD",
1157
+ "description": "USD stablecoins deployed across Pendle.",
1158
+ "type": "Ecosystem",
1159
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/pendleUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1160
+ };
1161
+
1162
+ export const SONICUSD_AUTOPOOL: IAutopool = {
1163
+ "symbol": "sonicUSD",
1164
+ "description": "USD stablecoins deployed across integrated destinations on Sonic.",
1165
+ "type": "Ecosystem",
1166
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/sonicUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1167
+ };
1168
+
1169
+ export const TURBOUSD_AUTOPOOL: IAutopool = {
1170
+ "symbol": "turboUSD",
1171
+ "description": "Emerging USD stablecoins deployed across integrated DEXs and lending protocols.",
1172
+ "type": "Tokemak",
1173
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/turboUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1174
+ };
1175
+
1176
+ export const SILOUSD_AUTOPOOL: IAutopool = {
1177
+ "symbol": "siloUSD",
1178
+ "description": "USD stablecoins deployed across integrated destinations on Silo.",
1179
+ "type": "Tokemak",
1180
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/siloUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1181
+ };
1182
+
1183
+ export const SILOETH_AUTOPOOL: IAutopool = {
1184
+ "symbol": "siloETH",
1185
+ "description": "ETH deployed across integrated destinations on Silo.",
1186
+ "type": "Tokemak",
1187
+ "logoURI": "https://token-imgs.tokemaklabs.com/autopools/siloETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
1188
+ };
1189
+
1190
+ // Arrays of all items
1191
+ export const ALL_NETWORKS: INetwork[] = [
1192
+ ETHEREUM_NETWORK,
1193
+ BASE_NETWORK,
1194
+ OPTIMISM_NETWORK,
1195
+ ARBITRUM_NETWORK,
1196
+ SONIC_NETWORK
1197
+ ];
1198
+
1199
+ export const ALL_PROTOCOLS: IProtocol[] = [
1200
+ CURVE_PROTOCOL,
1201
+ BALANCER_PROTOCOL,
1202
+ MAVERICK_PROTOCOL,
1203
+ AERODROME_PROTOCOL,
1204
+ SUSHI_PROTOCOL,
1205
+ BEETS_PROTOCOL,
1206
+ AAVE_PROTOCOL,
1207
+ FLUID_PROTOCOL,
1208
+ MORPHO_PROTOCOL,
1209
+ BALANCERV3_PROTOCOL,
1210
+ ETHENA_PROTOCOL,
1211
+ MAKER_PROTOCOL,
1212
+ EULER_PROTOCOL,
1213
+ SKY_PROTOCOL,
1214
+ FRAX_PROTOCOL,
1215
+ ANGLE_PROTOCOL,
1216
+ ORIGIN_PROTOCOL,
1217
+ INVERSE_PROTOCOL,
1218
+ LIDO_PROTOCOL,
1219
+ SILO_PROTOCOL,
1220
+ ZAPPER_PROTOCOL,
1221
+ DEBANK_PROTOCOL,
1222
+ LLAMASWAP_PROTOCOL,
1223
+ NONE_PROTOCOL
1224
+ ];
1225
+
1226
+ export const ALL_TOKENS: IToken[] = [
1227
+ ETH_TOKEN,
1228
+ WETH_TOKEN,
1229
+ WBTC_TOKEN,
1230
+ TOKE_TOKEN,
1231
+ RETH_TOKEN,
1232
+ STETH_TOKEN,
1233
+ WSTETH_TOKEN,
1234
+ SWETH_TOKEN,
1235
+ FRXETH_TOKEN,
1236
+ SFRXETH_TOKEN,
1237
+ WEETH_TOKEN,
1238
+ EETH_TOKEN,
1239
+ CBETH_TOKEN,
1240
+ OSETH_TOKEN,
1241
+ EZETH_TOKEN,
1242
+ PXETH_TOKEN,
1243
+ APXETH_TOKEN,
1244
+ OETH_TOKEN,
1245
+ RSETH_TOKEN,
1246
+ ETHX_TOKEN,
1247
+ RSWETH_TOKEN,
1248
+ USDC_TOKEN,
1249
+ PUFETH_TOKEN,
1250
+ SUSDE_TOKEN,
1251
+ SUSDS_TOKEN,
1252
+ USDS_TOKEN,
1253
+ SCRVUSD_TOKEN,
1254
+ DAI_TOKEN,
1255
+ USDE_TOKEN,
1256
+ USDT_TOKEN,
1257
+ CRVUSD_TOKEN,
1258
+ GHO_TOKEN,
1259
+ FRAX_TOKEN,
1260
+ GYD_TOKEN,
1261
+ USR_TOKEN,
1262
+ SDAI_TOKEN,
1263
+ SFRAX_TOKEN,
1264
+ FRXUSD_TOKEN,
1265
+ SFRXUSD_TOKEN,
1266
+ WAUSDT_TOKEN,
1267
+ WAGHO_TOKEN,
1268
+ WAUSDC_TOKEN,
1269
+ WRSETH_TOKEN,
1270
+ S_TOKEN,
1271
+ WS_TOKEN,
1272
+ DOLA_TOKEN,
1273
+ SDOLA_TOKEN,
1274
+ REUSD_TOKEN,
1275
+ EUSD_TOKEN,
1276
+ DEUSD_TOKEN,
1277
+ ALUSD_TOKEN,
1278
+ SYRUPUSDC_TOKEN,
1279
+ STS_TOKEN,
1280
+ OS_TOKEN,
1281
+ WOS_TOKEN,
1282
+ ANS_TOKEN,
1283
+ WANS_TOKEN,
1284
+ SCUSD_TOKEN,
1285
+ STKSCUSD_TOKEN,
1286
+ WSTKSCUSD_TOKEN,
1287
+ BOLD_TOKEN,
1288
+ LUSD_TOKEN,
1289
+ WSTUSR_TOKEN,
1290
+ LVLUSD_TOKEN,
1291
+ IETHV2_TOKEN,
1292
+ SILO_TOKEN,
1293
+ XSILO_TOKEN
1294
+ ];
1295
+
1296
+ export const ALL_AUTOPOOLS: IAutopool[] = [
1297
+ AUTOETH_AUTOPOOL,
1298
+ BALETH_AUTOPOOL,
1299
+ BASEETH_AUTOPOOL,
1300
+ AUTOLRT_AUTOPOOL,
1301
+ DINEROETH_AUTOPOOL,
1302
+ AUTOUSD_AUTOPOOL,
1303
+ BASEUSD_AUTOPOOL,
1304
+ AUTOS_AUTOPOOL,
1305
+ AUTODOLA_AUTOPOOL,
1306
+ MORPHOUSD_AUTOPOOL,
1307
+ PENDLEUSD_AUTOPOOL,
1308
+ SONICUSD_AUTOPOOL,
1309
+ TURBOUSD_AUTOPOOL,
1310
+ SILOUSD_AUTOPOOL,
1311
+ SILOETH_AUTOPOOL
1312
+ ];
1313
+
1314
+ // Token Lists
1315
+
1316
+ export const FAV_BASE_USD_TOKENS: IToken[] = [
1317
+ USDC_TOKEN,
1318
+ CRVUSD_TOKEN,
1319
+ USDT_TOKEN,
1320
+ USR_TOKEN,
1321
+ GHO_TOKEN
1322
+ ];
1323
+
1324
+ export const FAV_ETH_TOKENS: IToken[] = [
1325
+ ETH_TOKEN,
1326
+ WETH_TOKEN,
1327
+ STETH_TOKEN,
1328
+ RETH_TOKEN,
1329
+ USDC_TOKEN,
1330
+ PXETH_TOKEN
1331
+ ];
1332
+
1333
+ export const FAV_SONIC_TOKENS: IToken[] = [
1334
+ S_TOKEN,
1335
+ WS_TOKEN,
1336
+ USDC_TOKEN,
1337
+ USDT_TOKEN,
1338
+ OS_TOKEN
1339
+ ];
1340
+
1341
+ export const FAV_USD_TOKENS: IToken[] = [
1342
+ USDC_TOKEN,
1343
+ USDT_TOKEN,
1344
+ USDE_TOKEN,
1345
+ DAI_TOKEN,
1346
+ GHO_TOKEN
1347
+ ];
1348
+
1349
+ export const SWAP_ENABLED: IToken[] = [
1350
+ ETH_TOKEN,
1351
+ WETH_TOKEN,
1352
+ WBTC_TOKEN,
1353
+ USDC_TOKEN,
1354
+ STETH_TOKEN,
1355
+ USDT_TOKEN,
1356
+ WSTETH_TOKEN,
1357
+ CBETH_TOKEN,
1358
+ FRAX_TOKEN,
1359
+ RETH_TOKEN,
1360
+ OETH_TOKEN,
1361
+ OSETH_TOKEN,
1362
+ PXETH_TOKEN,
1363
+ ETHX_TOKEN,
1364
+ CRVUSD_TOKEN,
1365
+ DAI_TOKEN,
1366
+ USDS_TOKEN,
1367
+ USDE_TOKEN,
1368
+ GHO_TOKEN,
1369
+ USR_TOKEN,
1370
+ EZETH_TOKEN,
1371
+ RSETH_TOKEN,
1372
+ RSWETH_TOKEN,
1373
+ SWETH_TOKEN,
1374
+ DOLA_TOKEN
1375
+ ];
1376
+
1377
+ export const SWAP_ENABLED_SONIC: IToken[] = [
1378
+ S_TOKEN,
1379
+ WS_TOKEN,
1380
+ USDC_TOKEN,
1381
+ USDT_TOKEN,
1382
+ OS_TOKEN,
1383
+ SCUSD_TOKEN,
1384
+ FRXUSD_TOKEN
1385
+ ];