@tokemak/tokenlist 0.0.2 → 0.1.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.
- package/dist/index.d.ts +23 -1
- package/dist/index.js +269 -19
- package/dist/index.ts +289 -17
- package/package.json +11 -10
package/dist/index.d.ts
CHANGED
|
@@ -33,7 +33,8 @@ export interface IAutopool {
|
|
|
33
33
|
symbol: string;
|
|
34
34
|
logoURI: string;
|
|
35
35
|
description?: string;
|
|
36
|
-
type: "
|
|
36
|
+
type: "Ecosystem" | "Institutional" | "Flagship";
|
|
37
|
+
inactive?: boolean;
|
|
37
38
|
}
|
|
38
39
|
export declare const TOKEMAK_TOKENLIST_BASE_URL = "https://token-imgs.tokemaklabs.com";
|
|
39
40
|
export declare const TOKEMAK_TOKENS_BASE_URL = "https://token-imgs.tokemaklabs.com/tokens";
|
|
@@ -46,6 +47,8 @@ export declare const BASE_NETWORK: INetwork;
|
|
|
46
47
|
export declare const OPTIMISM_NETWORK: INetwork;
|
|
47
48
|
export declare const ARBITRUM_NETWORK: INetwork;
|
|
48
49
|
export declare const SONIC_NETWORK: INetwork;
|
|
50
|
+
export declare const PLASMA_NETWORK: INetwork;
|
|
51
|
+
export declare const LINEA_NETWORK: INetwork;
|
|
49
52
|
export declare const CURVE_PROTOCOL: IProtocol;
|
|
50
53
|
export declare const BALANCER_PROTOCOL: IProtocol;
|
|
51
54
|
export declare const MAVERICK_PROTOCOL: IProtocol;
|
|
@@ -69,11 +72,13 @@ export declare const SILO_PROTOCOL: IProtocol;
|
|
|
69
72
|
export declare const ZAPPER_PROTOCOL: IProtocol;
|
|
70
73
|
export declare const DEBANK_PROTOCOL: IProtocol;
|
|
71
74
|
export declare const LLAMASWAP_PROTOCOL: IProtocol;
|
|
75
|
+
export declare const UNISWAP_PROTOCOL: IProtocol;
|
|
72
76
|
export declare const NONE_PROTOCOL: IProtocol;
|
|
73
77
|
export declare const ETH_TOKEN: IToken;
|
|
74
78
|
export declare const WETH_TOKEN: IToken;
|
|
75
79
|
export declare const WBTC_TOKEN: IToken;
|
|
76
80
|
export declare const TOKE_TOKEN: IToken;
|
|
81
|
+
export declare const AUTO_TOKEN: IToken;
|
|
77
82
|
export declare const RETH_TOKEN: IToken;
|
|
78
83
|
export declare const STETH_TOKEN: IToken;
|
|
79
84
|
export declare const WSTETH_TOKEN: IToken;
|
|
@@ -137,6 +142,14 @@ export declare const LVLUSD_TOKEN: IToken;
|
|
|
137
142
|
export declare const IETHV2_TOKEN: IToken;
|
|
138
143
|
export declare const SILO_TOKEN: IToken;
|
|
139
144
|
export declare const XSILO_TOKEN: IToken;
|
|
145
|
+
export declare const EURC_TOKEN: IToken;
|
|
146
|
+
export declare const XPL_TOKEN: IToken;
|
|
147
|
+
export declare const WXPL_TOKEN: IToken;
|
|
148
|
+
export declare const USDAI_TOKEN: IToken;
|
|
149
|
+
export declare const SUSDAI_TOKEN: IToken;
|
|
150
|
+
export declare const USDO_TOKEN: IToken;
|
|
151
|
+
export declare const USDT0_TOKEN: IToken;
|
|
152
|
+
export declare const PYUSD_TOKEN: IToken;
|
|
140
153
|
export declare const AUTOETH_AUTOPOOL: IAutopool;
|
|
141
154
|
export declare const BALETH_AUTOPOOL: IAutopool;
|
|
142
155
|
export declare const BASEETH_AUTOPOOL: IAutopool;
|
|
@@ -152,13 +165,22 @@ export declare const SONICUSD_AUTOPOOL: IAutopool;
|
|
|
152
165
|
export declare const TURBOUSD_AUTOPOOL: IAutopool;
|
|
153
166
|
export declare const SILOUSD_AUTOPOOL: IAutopool;
|
|
154
167
|
export declare const SILOETH_AUTOPOOL: IAutopool;
|
|
168
|
+
export declare const BASEEUR_AUTOPOOL: IAutopool;
|
|
169
|
+
export declare const ARBUSD_AUTOPOOL: IAutopool;
|
|
170
|
+
export declare const PLASMAUSD_AUTOPOOL: IAutopool;
|
|
171
|
+
export declare const AUTOXPL_AUTOPOOL: IAutopool;
|
|
172
|
+
export declare const LINEAUSD_AUTOPOOL: IAutopool;
|
|
173
|
+
export declare const ANCHRGUSD_AUTOPOOL: IAutopool;
|
|
174
|
+
export declare const INFINIFIUSD_AUTOPOOL: IAutopool;
|
|
155
175
|
export declare const ALL_NETWORKS: INetwork[];
|
|
156
176
|
export declare const ALL_PROTOCOLS: IProtocol[];
|
|
157
177
|
export declare const ALL_TOKENS: IToken[];
|
|
158
178
|
export declare const ALL_AUTOPOOLS: IAutopool[];
|
|
159
179
|
export declare const FAV_BASE_USD_TOKENS: IToken[];
|
|
160
180
|
export declare const FAV_ETH_TOKENS: IToken[];
|
|
181
|
+
export declare const FAV_EURC_TOKENS: IToken[];
|
|
161
182
|
export declare const FAV_SONIC_TOKENS: IToken[];
|
|
162
183
|
export declare const FAV_USD_TOKENS: IToken[];
|
|
163
184
|
export declare const SWAP_ENABLED: IToken[];
|
|
185
|
+
export declare const SWAP_ENABLED_PLASMA: IToken[];
|
|
164
186
|
export declare const SWAP_ENABLED_SONIC: IToken[];
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.SWAP_ENABLED_SONIC = exports.SWAP_ENABLED = exports.FAV_USD_TOKENS = exports.FAV_SONIC_TOKENS = exports.FAV_ETH_TOKENS = exports.FAV_BASE_USD_TOKENS = exports.ALL_AUTOPOOLS = exports.ALL_TOKENS = exports.ALL_PROTOCOLS = exports.ALL_NETWORKS = exports.SILOETH_AUTOPOOL = exports.SILOUSD_AUTOPOOL = exports.TURBOUSD_AUTOPOOL = exports.SONICUSD_AUTOPOOL = exports.PENDLEUSD_AUTOPOOL = exports.MORPHOUSD_AUTOPOOL = exports.AUTODOLA_AUTOPOOL = exports.AUTOS_AUTOPOOL = exports.BASEUSD_AUTOPOOL = exports.AUTOUSD_AUTOPOOL = exports.DINEROETH_AUTOPOOL = exports.AUTOLRT_AUTOPOOL = exports.BASEETH_AUTOPOOL = exports.BALETH_AUTOPOOL = exports.AUTOETH_AUTOPOOL = exports.XSILO_TOKEN = exports.SILO_TOKEN = void 0;
|
|
3
|
+
exports.WEETH_TOKEN = exports.SFRXETH_TOKEN = exports.FRXETH_TOKEN = exports.SWETH_TOKEN = exports.WSTETH_TOKEN = exports.STETH_TOKEN = exports.RETH_TOKEN = exports.AUTO_TOKEN = exports.TOKE_TOKEN = exports.WBTC_TOKEN = exports.WETH_TOKEN = exports.ETH_TOKEN = exports.NONE_PROTOCOL = exports.UNISWAP_PROTOCOL = exports.LLAMASWAP_PROTOCOL = exports.DEBANK_PROTOCOL = exports.ZAPPER_PROTOCOL = exports.SILO_PROTOCOL = exports.LIDO_PROTOCOL = exports.INVERSE_PROTOCOL = exports.ORIGIN_PROTOCOL = exports.ANGLE_PROTOCOL = exports.FRAX_PROTOCOL = exports.SKY_PROTOCOL = exports.EULER_PROTOCOL = exports.MAKER_PROTOCOL = exports.ETHENA_PROTOCOL = exports.BALANCERV3_PROTOCOL = exports.MORPHO_PROTOCOL = exports.FLUID_PROTOCOL = exports.AAVE_PROTOCOL = exports.BEETS_PROTOCOL = exports.SUSHI_PROTOCOL = exports.AERODROME_PROTOCOL = exports.MAVERICK_PROTOCOL = exports.BALANCER_PROTOCOL = exports.CURVE_PROTOCOL = exports.LINEA_NETWORK = exports.PLASMA_NETWORK = exports.SONIC_NETWORK = exports.ARBITRUM_NETWORK = exports.OPTIMISM_NETWORK = exports.BASE_NETWORK = exports.ETHEREUM_NETWORK = exports.TOKEMAK_LISTS_URL = exports.TOKEMAK_AUTOPOOLS_BASE_URL = exports.TOKEMAK_PROTOCOLS_BASE_URL = exports.TOKEMAK_NETWORKS_BASE_URL = exports.TOKEMAK_TOKENS_BASE_URL = exports.TOKEMAK_TOKENLIST_BASE_URL = void 0;
|
|
4
|
+
exports.BOLD_TOKEN = exports.WSTKSCUSD_TOKEN = exports.STKSCUSD_TOKEN = exports.SCUSD_TOKEN = exports.WANS_TOKEN = exports.ANS_TOKEN = exports.WOS_TOKEN = exports.OS_TOKEN = exports.STS_TOKEN = exports.SYRUPUSDC_TOKEN = exports.ALUSD_TOKEN = exports.DEUSD_TOKEN = exports.EUSD_TOKEN = exports.REUSD_TOKEN = exports.SDOLA_TOKEN = exports.DOLA_TOKEN = exports.WS_TOKEN = exports.S_TOKEN = exports.WRSETH_TOKEN = exports.WAUSDC_TOKEN = exports.WAGHO_TOKEN = exports.WAUSDT_TOKEN = exports.SFRXUSD_TOKEN = exports.FRXUSD_TOKEN = exports.SFRAX_TOKEN = exports.SDAI_TOKEN = exports.USR_TOKEN = exports.GYD_TOKEN = exports.FRAX_TOKEN = exports.GHO_TOKEN = exports.CRVUSD_TOKEN = exports.USDT_TOKEN = exports.USDE_TOKEN = exports.DAI_TOKEN = exports.SCRVUSD_TOKEN = exports.USDS_TOKEN = exports.SUSDS_TOKEN = exports.SUSDE_TOKEN = exports.PUFETH_TOKEN = exports.USDC_TOKEN = exports.RSWETH_TOKEN = exports.ETHX_TOKEN = exports.RSETH_TOKEN = exports.OETH_TOKEN = exports.APXETH_TOKEN = exports.PXETH_TOKEN = exports.EZETH_TOKEN = exports.OSETH_TOKEN = exports.CBETH_TOKEN = exports.EETH_TOKEN = void 0;
|
|
5
|
+
exports.SWAP_ENABLED_SONIC = exports.SWAP_ENABLED_PLASMA = exports.SWAP_ENABLED = exports.FAV_USD_TOKENS = exports.FAV_SONIC_TOKENS = exports.FAV_EURC_TOKENS = exports.FAV_ETH_TOKENS = exports.FAV_BASE_USD_TOKENS = exports.ALL_AUTOPOOLS = exports.ALL_TOKENS = exports.ALL_PROTOCOLS = exports.ALL_NETWORKS = exports.INFINIFIUSD_AUTOPOOL = exports.ANCHRGUSD_AUTOPOOL = exports.LINEAUSD_AUTOPOOL = exports.AUTOXPL_AUTOPOOL = exports.PLASMAUSD_AUTOPOOL = exports.ARBUSD_AUTOPOOL = exports.BASEEUR_AUTOPOOL = exports.SILOETH_AUTOPOOL = exports.SILOUSD_AUTOPOOL = exports.TURBOUSD_AUTOPOOL = exports.SONICUSD_AUTOPOOL = exports.PENDLEUSD_AUTOPOOL = exports.MORPHOUSD_AUTOPOOL = exports.AUTODOLA_AUTOPOOL = exports.AUTOS_AUTOPOOL = exports.BASEUSD_AUTOPOOL = exports.AUTOUSD_AUTOPOOL = exports.DINEROETH_AUTOPOOL = exports.AUTOLRT_AUTOPOOL = exports.BASEETH_AUTOPOOL = exports.BALETH_AUTOPOOL = exports.AUTOETH_AUTOPOOL = exports.PYUSD_TOKEN = exports.USDT0_TOKEN = exports.USDO_TOKEN = exports.SUSDAI_TOKEN = exports.USDAI_TOKEN = exports.WXPL_TOKEN = exports.XPL_TOKEN = exports.EURC_TOKEN = exports.XSILO_TOKEN = exports.SILO_TOKEN = exports.IETHV2_TOKEN = exports.LVLUSD_TOKEN = exports.WSTUSR_TOKEN = exports.LUSD_TOKEN = void 0;
|
|
6
6
|
// Constants
|
|
7
7
|
exports.TOKEMAK_TOKENLIST_BASE_URL = "https://token-imgs.tokemaklabs.com";
|
|
8
8
|
exports.TOKEMAK_TOKENS_BASE_URL = "https://token-imgs.tokemaklabs.com/tokens";
|
|
@@ -36,6 +36,16 @@ exports.SONIC_NETWORK = {
|
|
|
36
36
|
"logoURI": "https://token-imgs.tokemaklabs.com/networks/sonic.png",
|
|
37
37
|
"chainId": 146
|
|
38
38
|
};
|
|
39
|
+
exports.PLASMA_NETWORK = {
|
|
40
|
+
"name": "Plasma",
|
|
41
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/networks/plasma.png",
|
|
42
|
+
"chainId": 9745
|
|
43
|
+
};
|
|
44
|
+
exports.LINEA_NETWORK = {
|
|
45
|
+
"name": "Linea",
|
|
46
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/networks/linea.png",
|
|
47
|
+
"chainId": 59144
|
|
48
|
+
};
|
|
39
49
|
// Protocols
|
|
40
50
|
exports.CURVE_PROTOCOL = {
|
|
41
51
|
"name": "Curve",
|
|
@@ -170,6 +180,11 @@ exports.LLAMASWAP_PROTOCOL = {
|
|
|
170
180
|
"logoURI": "https://token-imgs.tokemaklabs.com/protocols/llamaswap.png",
|
|
171
181
|
"type": "Protocol"
|
|
172
182
|
};
|
|
183
|
+
exports.UNISWAP_PROTOCOL = {
|
|
184
|
+
"name": "Uniswap",
|
|
185
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/protocols/uniswap.png",
|
|
186
|
+
"type": "Protocol"
|
|
187
|
+
};
|
|
173
188
|
exports.NONE_PROTOCOL = {
|
|
174
189
|
"name": "None",
|
|
175
190
|
"logoURI": "https://token-imgs.tokemaklabs.com/protocols/none.png",
|
|
@@ -202,6 +217,15 @@ exports.WETH_TOKEN = {
|
|
|
202
217
|
"bridgeInfo": {
|
|
203
218
|
"8453": {
|
|
204
219
|
"tokenAddress": "0x4200000000000000000000000000000000000006"
|
|
220
|
+
},
|
|
221
|
+
"9745": {
|
|
222
|
+
"tokenAddress": "0x9895D81bB462A195b4922ED7De0e3ACD007c32CB"
|
|
223
|
+
},
|
|
224
|
+
"42161": {
|
|
225
|
+
"tokenAddress": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1"
|
|
226
|
+
},
|
|
227
|
+
"59144": {
|
|
228
|
+
"tokenAddress": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f"
|
|
205
229
|
}
|
|
206
230
|
},
|
|
207
231
|
"parentAsset": "ETH"
|
|
@@ -234,13 +258,48 @@ exports.TOKE_TOKEN = {
|
|
|
234
258
|
"8453": {
|
|
235
259
|
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
236
260
|
},
|
|
261
|
+
"9745": {
|
|
262
|
+
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
263
|
+
},
|
|
237
264
|
"42161": {
|
|
238
265
|
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
266
|
+
},
|
|
267
|
+
"59144": {
|
|
268
|
+
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
239
269
|
}
|
|
240
270
|
}
|
|
241
271
|
},
|
|
242
272
|
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x2e9d63788249371f1dfc918a52f8d799f4a38c94.png"
|
|
243
273
|
};
|
|
274
|
+
exports.AUTO_TOKEN = {
|
|
275
|
+
"chainId": 1,
|
|
276
|
+
"address": "0x1Ec8eaa3f68261e793C48486b12092336A03c479",
|
|
277
|
+
"name": "AUTOfinance",
|
|
278
|
+
"symbol": "AUTO",
|
|
279
|
+
"decimals": 18,
|
|
280
|
+
"audits": "https://docs.tokemak.xyz/developer-docs/security-and-audits",
|
|
281
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x1ec8eaa3f68261e793c48486b12092336a03c479.png",
|
|
282
|
+
"extensions": {
|
|
283
|
+
"bridgeMainnetAdapter": "0xb3731daCCd61633b6fe929de46166EfD77D4390e",
|
|
284
|
+
"bridgeInfo": {
|
|
285
|
+
"10": {
|
|
286
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
287
|
+
},
|
|
288
|
+
"8453": {
|
|
289
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
290
|
+
},
|
|
291
|
+
"9745": {
|
|
292
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
293
|
+
},
|
|
294
|
+
"42161": {
|
|
295
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
296
|
+
},
|
|
297
|
+
"59144": {
|
|
298
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
};
|
|
244
303
|
exports.RETH_TOKEN = {
|
|
245
304
|
"chainId": 1,
|
|
246
305
|
"address": "0xae78736cd615f374d3085123a210448e74fc6393",
|
|
@@ -469,6 +528,12 @@ exports.USDC_TOKEN = {
|
|
|
469
528
|
},
|
|
470
529
|
"8453": {
|
|
471
530
|
"tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
|
|
531
|
+
},
|
|
532
|
+
"42161": {
|
|
533
|
+
"tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
|
|
534
|
+
},
|
|
535
|
+
"59144": {
|
|
536
|
+
"tokenAddress": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff"
|
|
472
537
|
}
|
|
473
538
|
}
|
|
474
539
|
},
|
|
@@ -491,10 +556,15 @@ exports.SUSDE_TOKEN = {
|
|
|
491
556
|
"symbol": "sUSDe",
|
|
492
557
|
"name": "Staked USDe",
|
|
493
558
|
"audits": "https://docs.ethena.fi/resources/audits",
|
|
559
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x9d39a5de30e57443bff2a8307a4256c8797a3497.png",
|
|
494
560
|
"extensions": {
|
|
495
|
-
"parentAsset": "USDe"
|
|
496
|
-
|
|
497
|
-
|
|
561
|
+
"parentAsset": "USDe",
|
|
562
|
+
"bridgeInfo": {
|
|
563
|
+
"9745": {
|
|
564
|
+
"tokenAddress": "0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2"
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
}
|
|
498
568
|
};
|
|
499
569
|
exports.SUSDS_TOKEN = {
|
|
500
570
|
"address": "0xa3931d71877c0e7a3148cb7eb4463524fec27fbd",
|
|
@@ -508,6 +578,9 @@ exports.SUSDS_TOKEN = {
|
|
|
508
578
|
"bridgeInfo": {
|
|
509
579
|
"8453": {
|
|
510
580
|
"tokenAddress": "0x5875eEE11Cf8398102FdAd704C9E96607675467a"
|
|
581
|
+
},
|
|
582
|
+
"42161": {
|
|
583
|
+
"tokenAddress": "0xdDb46999F8891663a8F2828d25298f70416d7610"
|
|
511
584
|
}
|
|
512
585
|
}
|
|
513
586
|
},
|
|
@@ -568,7 +641,14 @@ exports.USDE_TOKEN = {
|
|
|
568
641
|
"symbol": "USDe",
|
|
569
642
|
"name": "USDe",
|
|
570
643
|
"audits": "https://docs.ethena.fi/resources/audits",
|
|
571
|
-
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png"
|
|
644
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png",
|
|
645
|
+
"extensions": {
|
|
646
|
+
"bridgeInfo": {
|
|
647
|
+
"9745": {
|
|
648
|
+
"tokenAddress": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34"
|
|
649
|
+
}
|
|
650
|
+
}
|
|
651
|
+
}
|
|
572
652
|
};
|
|
573
653
|
exports.USDT_TOKEN = {
|
|
574
654
|
"address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
|
|
@@ -584,6 +664,12 @@ exports.USDT_TOKEN = {
|
|
|
584
664
|
},
|
|
585
665
|
"8453": {
|
|
586
666
|
"tokenAddress": "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2"
|
|
667
|
+
},
|
|
668
|
+
"42161": {
|
|
669
|
+
"tokenAddress": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
|
|
670
|
+
},
|
|
671
|
+
"59144": {
|
|
672
|
+
"tokenAddress": "0xA219439258ca9da29E9Cc4cE5596924745e12B93"
|
|
587
673
|
}
|
|
588
674
|
}
|
|
589
675
|
},
|
|
@@ -600,6 +686,9 @@ exports.CRVUSD_TOKEN = {
|
|
|
600
686
|
"bridgeInfo": {
|
|
601
687
|
"8453": {
|
|
602
688
|
"tokenAddress": "0x417Ac0e078398C154EdFadD9Ef675d30Be60Af93"
|
|
689
|
+
},
|
|
690
|
+
"42161": {
|
|
691
|
+
"tokenAddress": "0x498Bf2B1e120FeD3ad3D42EA2165E9b73f99C1e5"
|
|
603
692
|
}
|
|
604
693
|
}
|
|
605
694
|
},
|
|
@@ -616,6 +705,9 @@ exports.GHO_TOKEN = {
|
|
|
616
705
|
"bridgeInfo": {
|
|
617
706
|
"8453": {
|
|
618
707
|
"tokenAddress": "0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee"
|
|
708
|
+
},
|
|
709
|
+
"42161": {
|
|
710
|
+
"tokenAddress": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33"
|
|
619
711
|
}
|
|
620
712
|
}
|
|
621
713
|
},
|
|
@@ -811,7 +903,14 @@ exports.ALUSD_TOKEN = {
|
|
|
811
903
|
"name": "Alchemix USD",
|
|
812
904
|
"symbol": "alUSD",
|
|
813
905
|
"decimals": 18,
|
|
814
|
-
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png"
|
|
906
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png",
|
|
907
|
+
"extensions": {
|
|
908
|
+
"bridgeInfo": {
|
|
909
|
+
"42161": {
|
|
910
|
+
"tokenAddress": "0xCB8FA9a76b8e203D8C3797bF438d8FB81Ea3326A"
|
|
911
|
+
}
|
|
912
|
+
}
|
|
913
|
+
}
|
|
815
914
|
};
|
|
816
915
|
exports.SYRUPUSDC_TOKEN = {
|
|
817
916
|
"chainId": 1,
|
|
@@ -941,11 +1040,86 @@ exports.XSILO_TOKEN = {
|
|
|
941
1040
|
"decimals": 18,
|
|
942
1041
|
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xdd4c6fd31ccf66e250790643947675153c221a91.png"
|
|
943
1042
|
};
|
|
1043
|
+
exports.EURC_TOKEN = {
|
|
1044
|
+
"chainId": 8453,
|
|
1045
|
+
"address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
|
|
1046
|
+
"name": "EURC",
|
|
1047
|
+
"symbol": "EURC",
|
|
1048
|
+
"decimals": 6,
|
|
1049
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/base/0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42.png",
|
|
1050
|
+
"extensions": {
|
|
1051
|
+
"bridgeInfo": {
|
|
1052
|
+
"1": {
|
|
1053
|
+
"tokenAddress": "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c"
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
};
|
|
1058
|
+
exports.XPL_TOKEN = {
|
|
1059
|
+
"chainId": 9745,
|
|
1060
|
+
"address": "0x0000000000000000000000000000000000000000",
|
|
1061
|
+
"name": "XPL",
|
|
1062
|
+
"symbol": "XPL",
|
|
1063
|
+
"decimals": 18,
|
|
1064
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x0000000000000000000000000000000000000000.png"
|
|
1065
|
+
};
|
|
1066
|
+
exports.WXPL_TOKEN = {
|
|
1067
|
+
"chainId": 9745,
|
|
1068
|
+
"address": "0x6100E367285b01F48D07953803A2d8dCA5D19873",
|
|
1069
|
+
"name": "Wrapped XPL",
|
|
1070
|
+
"symbol": "wXPL",
|
|
1071
|
+
"decimals": 18,
|
|
1072
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x6100e367285b01f48d07953803a2d8dca5d19873.png"
|
|
1073
|
+
};
|
|
1074
|
+
exports.USDAI_TOKEN = {
|
|
1075
|
+
"chainId": 9745,
|
|
1076
|
+
"address": "0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF",
|
|
1077
|
+
"name": "USDai",
|
|
1078
|
+
"symbol": "USDai",
|
|
1079
|
+
"decimals": 18,
|
|
1080
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png"
|
|
1081
|
+
};
|
|
1082
|
+
exports.SUSDAI_TOKEN = {
|
|
1083
|
+
"chainId": 9745,
|
|
1084
|
+
"address": "0x0B2b2B2076d95dda7817e785989fE353fe955ef9",
|
|
1085
|
+
"name": "Staked USDai",
|
|
1086
|
+
"symbol": "sUSDai",
|
|
1087
|
+
"decimals": 18,
|
|
1088
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x0b2b2b2076d95dda7817e785989fe353fe955ef9.png",
|
|
1089
|
+
"extensions": {
|
|
1090
|
+
"parentAsset": "USDai"
|
|
1091
|
+
}
|
|
1092
|
+
};
|
|
1093
|
+
exports.USDO_TOKEN = {
|
|
1094
|
+
"chainId": 9745,
|
|
1095
|
+
"address": "0x87e617C7484aDE79FcD90db58BEB82B057facb48",
|
|
1096
|
+
"name": "USDO",
|
|
1097
|
+
"symbol": "USDO",
|
|
1098
|
+
"decimals": 18,
|
|
1099
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x87e617c7484ade79fcd90db58beb82b057facb48.png"
|
|
1100
|
+
};
|
|
1101
|
+
exports.USDT0_TOKEN = {
|
|
1102
|
+
"address": "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb",
|
|
1103
|
+
"chainId": 9745,
|
|
1104
|
+
"decimals": 6,
|
|
1105
|
+
"name": "USDT0",
|
|
1106
|
+
"symbol": "USDT0",
|
|
1107
|
+
"audits": "https://tether.to/ru/transparency/?tab=reports",
|
|
1108
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png"
|
|
1109
|
+
};
|
|
1110
|
+
exports.PYUSD_TOKEN = {
|
|
1111
|
+
"address": "0x6c3ea9036406852006290770bedfcaba0e23a0e8",
|
|
1112
|
+
"chainId": 1,
|
|
1113
|
+
"decimals": 6,
|
|
1114
|
+
"name": "PayPal USD",
|
|
1115
|
+
"symbol": "pyUSD",
|
|
1116
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x6c3ea9036406852006290770bedfcaba0e23a0e8.png"
|
|
1117
|
+
};
|
|
944
1118
|
// Autopools
|
|
945
1119
|
exports.AUTOETH_AUTOPOOL = {
|
|
946
1120
|
"symbol": "autoETH",
|
|
947
1121
|
"description": "ETH LSTs on Ethereum deployed across integrated DEXs.",
|
|
948
|
-
"type": "
|
|
1122
|
+
"type": "Flagship",
|
|
949
1123
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
950
1124
|
};
|
|
951
1125
|
exports.BALETH_AUTOPOOL = {
|
|
@@ -957,13 +1131,13 @@ exports.BALETH_AUTOPOOL = {
|
|
|
957
1131
|
exports.BASEETH_AUTOPOOL = {
|
|
958
1132
|
"symbol": "baseETH",
|
|
959
1133
|
"description": "ETH LSTs and LRTs deployed across integrated DEXs and lending protocols on Base.",
|
|
960
|
-
"type": "
|
|
1134
|
+
"type": "Ecosystem",
|
|
961
1135
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
962
1136
|
};
|
|
963
1137
|
exports.AUTOLRT_AUTOPOOL = {
|
|
964
1138
|
"symbol": "autoLRT",
|
|
965
1139
|
"description": "ETH LRTs deployed across integrated DEXs.",
|
|
966
|
-
"type": "
|
|
1140
|
+
"type": "Ecosystem",
|
|
967
1141
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoLRT\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
968
1142
|
};
|
|
969
1143
|
exports.DINEROETH_AUTOPOOL = {
|
|
@@ -975,19 +1149,20 @@ exports.DINEROETH_AUTOPOOL = {
|
|
|
975
1149
|
exports.AUTOUSD_AUTOPOOL = {
|
|
976
1150
|
"symbol": "autoUSD",
|
|
977
1151
|
"description": "Blue-chip USD stablecoins deployed across integrated DEXs and lending protocols.",
|
|
978
|
-
"type": "
|
|
1152
|
+
"type": "Flagship",
|
|
979
1153
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
980
1154
|
};
|
|
981
1155
|
exports.BASEUSD_AUTOPOOL = {
|
|
982
1156
|
"symbol": "baseUSD",
|
|
983
1157
|
"description": "USD stablecoins deployed across integrated DEXs and lending protocols on Base.",
|
|
984
|
-
"type": "
|
|
1158
|
+
"type": "Flagship",
|
|
985
1159
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
986
1160
|
};
|
|
987
1161
|
exports.AUTOS_AUTOPOOL = {
|
|
988
1162
|
"symbol": "autoS",
|
|
989
1163
|
"description": "S deployed across integrated destinations on Sonic.",
|
|
990
1164
|
"type": "Ecosystem",
|
|
1165
|
+
"inactive": true,
|
|
991
1166
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoS\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
992
1167
|
};
|
|
993
1168
|
exports.AUTODOLA_AUTOPOOL = {
|
|
@@ -1000,12 +1175,14 @@ exports.MORPHOUSD_AUTOPOOL = {
|
|
|
1000
1175
|
"symbol": "morphoUSD",
|
|
1001
1176
|
"description": "USD stablecoins deployed deployed across Morpho.",
|
|
1002
1177
|
"type": "Ecosystem",
|
|
1178
|
+
"inactive": true,
|
|
1003
1179
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/morphoUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1004
1180
|
};
|
|
1005
1181
|
exports.PENDLEUSD_AUTOPOOL = {
|
|
1006
1182
|
"symbol": "pendleUSD",
|
|
1007
1183
|
"description": "USD stablecoins deployed across Pendle.",
|
|
1008
1184
|
"type": "Ecosystem",
|
|
1185
|
+
"inactive": true,
|
|
1009
1186
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/pendleUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1010
1187
|
};
|
|
1011
1188
|
exports.SONICUSD_AUTOPOOL = {
|
|
@@ -1017,28 +1194,74 @@ exports.SONICUSD_AUTOPOOL = {
|
|
|
1017
1194
|
exports.TURBOUSD_AUTOPOOL = {
|
|
1018
1195
|
"symbol": "turboUSD",
|
|
1019
1196
|
"description": "Emerging USD stablecoins deployed across integrated DEXs and lending protocols.",
|
|
1020
|
-
"type": "
|
|
1197
|
+
"type": "Ecosystem",
|
|
1198
|
+
"inactive": true,
|
|
1021
1199
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/turboUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1022
1200
|
};
|
|
1023
1201
|
exports.SILOUSD_AUTOPOOL = {
|
|
1024
1202
|
"symbol": "siloUSD",
|
|
1025
1203
|
"description": "USD stablecoins deployed across integrated destinations on Silo.",
|
|
1026
|
-
"type": "
|
|
1204
|
+
"type": "Institutional",
|
|
1027
1205
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/siloUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1028
1206
|
};
|
|
1029
1207
|
exports.SILOETH_AUTOPOOL = {
|
|
1030
1208
|
"symbol": "siloETH",
|
|
1031
1209
|
"description": "ETH deployed across integrated destinations on Silo.",
|
|
1032
|
-
"type": "
|
|
1210
|
+
"type": "Institutional",
|
|
1033
1211
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/siloETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1034
1212
|
};
|
|
1213
|
+
exports.BASEEUR_AUTOPOOL = {
|
|
1214
|
+
"symbol": "baseEUR",
|
|
1215
|
+
"description": "EUR stablecoins deployed across integrated lending protocols on Base.",
|
|
1216
|
+
"type": "Ecosystem",
|
|
1217
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseEUR\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1218
|
+
};
|
|
1219
|
+
exports.ARBUSD_AUTOPOOL = {
|
|
1220
|
+
"symbol": "arbUSD",
|
|
1221
|
+
"description": "USD stablecoins deployed across integrated destinations on Arbitrum.",
|
|
1222
|
+
"type": "Ecosystem",
|
|
1223
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/arbUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1224
|
+
};
|
|
1225
|
+
exports.PLASMAUSD_AUTOPOOL = {
|
|
1226
|
+
"symbol": "plasmaUSD",
|
|
1227
|
+
"description": "USD stablecoins deployed across integrated DEXs and lending protocols on Plasma.",
|
|
1228
|
+
"type": "Ecosystem",
|
|
1229
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/plasmaUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1230
|
+
};
|
|
1231
|
+
exports.AUTOXPL_AUTOPOOL = {
|
|
1232
|
+
"symbol": "autoXPL",
|
|
1233
|
+
"description": "XPL deployed across integrated DEXs on Plasma.",
|
|
1234
|
+
"type": "Ecosystem",
|
|
1235
|
+
"inactive": true,
|
|
1236
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoXPL\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1237
|
+
};
|
|
1238
|
+
exports.LINEAUSD_AUTOPOOL = {
|
|
1239
|
+
"symbol": "lineaUSD",
|
|
1240
|
+
"description": "USD stablecoins deployed across integrated DEXs and lending protocols on Linea.",
|
|
1241
|
+
"type": "Ecosystem",
|
|
1242
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/lineaUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1243
|
+
};
|
|
1244
|
+
exports.ANCHRGUSD_AUTOPOOL = {
|
|
1245
|
+
"symbol": "anchrgUSD",
|
|
1246
|
+
"description": "For Porto institutional users: deposit USDC to earn competitive, sustainable USD yield from transparent, blue-chip sources designed to remain market-neutral. Automated rebalancing optimizes returns with strict onchain safeguards while you remain self-custodial in Porto.",
|
|
1247
|
+
"type": "Institutional",
|
|
1248
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/anchrgUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1249
|
+
};
|
|
1250
|
+
exports.INFINIFIUSD_AUTOPOOL = {
|
|
1251
|
+
"symbol": "infinifiUSD",
|
|
1252
|
+
"description": "Gated InfiniFI Autopool deploying USD across Morpho markets.",
|
|
1253
|
+
"type": "Institutional",
|
|
1254
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/infinifiUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1255
|
+
};
|
|
1035
1256
|
// Arrays of all items
|
|
1036
1257
|
exports.ALL_NETWORKS = [
|
|
1037
1258
|
exports.ETHEREUM_NETWORK,
|
|
1038
1259
|
exports.BASE_NETWORK,
|
|
1039
1260
|
exports.OPTIMISM_NETWORK,
|
|
1040
1261
|
exports.ARBITRUM_NETWORK,
|
|
1041
|
-
exports.SONIC_NETWORK
|
|
1262
|
+
exports.SONIC_NETWORK,
|
|
1263
|
+
exports.PLASMA_NETWORK,
|
|
1264
|
+
exports.LINEA_NETWORK
|
|
1042
1265
|
];
|
|
1043
1266
|
exports.ALL_PROTOCOLS = [
|
|
1044
1267
|
exports.CURVE_PROTOCOL,
|
|
@@ -1064,6 +1287,7 @@ exports.ALL_PROTOCOLS = [
|
|
|
1064
1287
|
exports.ZAPPER_PROTOCOL,
|
|
1065
1288
|
exports.DEBANK_PROTOCOL,
|
|
1066
1289
|
exports.LLAMASWAP_PROTOCOL,
|
|
1290
|
+
exports.UNISWAP_PROTOCOL,
|
|
1067
1291
|
exports.NONE_PROTOCOL
|
|
1068
1292
|
];
|
|
1069
1293
|
exports.ALL_TOKENS = [
|
|
@@ -1071,6 +1295,7 @@ exports.ALL_TOKENS = [
|
|
|
1071
1295
|
exports.WETH_TOKEN,
|
|
1072
1296
|
exports.WBTC_TOKEN,
|
|
1073
1297
|
exports.TOKE_TOKEN,
|
|
1298
|
+
exports.AUTO_TOKEN,
|
|
1074
1299
|
exports.RETH_TOKEN,
|
|
1075
1300
|
exports.STETH_TOKEN,
|
|
1076
1301
|
exports.WSTETH_TOKEN,
|
|
@@ -1133,7 +1358,15 @@ exports.ALL_TOKENS = [
|
|
|
1133
1358
|
exports.LVLUSD_TOKEN,
|
|
1134
1359
|
exports.IETHV2_TOKEN,
|
|
1135
1360
|
exports.SILO_TOKEN,
|
|
1136
|
-
exports.XSILO_TOKEN
|
|
1361
|
+
exports.XSILO_TOKEN,
|
|
1362
|
+
exports.EURC_TOKEN,
|
|
1363
|
+
exports.XPL_TOKEN,
|
|
1364
|
+
exports.WXPL_TOKEN,
|
|
1365
|
+
exports.USDAI_TOKEN,
|
|
1366
|
+
exports.SUSDAI_TOKEN,
|
|
1367
|
+
exports.USDO_TOKEN,
|
|
1368
|
+
exports.USDT0_TOKEN,
|
|
1369
|
+
exports.PYUSD_TOKEN
|
|
1137
1370
|
];
|
|
1138
1371
|
exports.ALL_AUTOPOOLS = [
|
|
1139
1372
|
exports.AUTOETH_AUTOPOOL,
|
|
@@ -1150,7 +1383,14 @@ exports.ALL_AUTOPOOLS = [
|
|
|
1150
1383
|
exports.SONICUSD_AUTOPOOL,
|
|
1151
1384
|
exports.TURBOUSD_AUTOPOOL,
|
|
1152
1385
|
exports.SILOUSD_AUTOPOOL,
|
|
1153
|
-
exports.SILOETH_AUTOPOOL
|
|
1386
|
+
exports.SILOETH_AUTOPOOL,
|
|
1387
|
+
exports.BASEEUR_AUTOPOOL,
|
|
1388
|
+
exports.ARBUSD_AUTOPOOL,
|
|
1389
|
+
exports.PLASMAUSD_AUTOPOOL,
|
|
1390
|
+
exports.AUTOXPL_AUTOPOOL,
|
|
1391
|
+
exports.LINEAUSD_AUTOPOOL,
|
|
1392
|
+
exports.ANCHRGUSD_AUTOPOOL,
|
|
1393
|
+
exports.INFINIFIUSD_AUTOPOOL
|
|
1154
1394
|
];
|
|
1155
1395
|
// Token Lists
|
|
1156
1396
|
exports.FAV_BASE_USD_TOKENS = [
|
|
@@ -1168,6 +1408,11 @@ exports.FAV_ETH_TOKENS = [
|
|
|
1168
1408
|
exports.USDC_TOKEN,
|
|
1169
1409
|
exports.PXETH_TOKEN
|
|
1170
1410
|
];
|
|
1411
|
+
exports.FAV_EURC_TOKENS = [
|
|
1412
|
+
exports.EURC_TOKEN,
|
|
1413
|
+
exports.USDC_TOKEN,
|
|
1414
|
+
exports.USDT_TOKEN
|
|
1415
|
+
];
|
|
1171
1416
|
exports.FAV_SONIC_TOKENS = [
|
|
1172
1417
|
exports.S_TOKEN,
|
|
1173
1418
|
exports.WS_TOKEN,
|
|
@@ -1209,6 +1454,11 @@ exports.SWAP_ENABLED = [
|
|
|
1209
1454
|
exports.SWETH_TOKEN,
|
|
1210
1455
|
exports.DOLA_TOKEN
|
|
1211
1456
|
];
|
|
1457
|
+
exports.SWAP_ENABLED_PLASMA = [
|
|
1458
|
+
exports.USDT_TOKEN,
|
|
1459
|
+
exports.WXPL_TOKEN,
|
|
1460
|
+
exports.XPL_TOKEN
|
|
1461
|
+
];
|
|
1212
1462
|
exports.SWAP_ENABLED_SONIC = [
|
|
1213
1463
|
exports.S_TOKEN,
|
|
1214
1464
|
exports.WS_TOKEN,
|
package/dist/index.ts
CHANGED
|
@@ -38,7 +38,8 @@ export interface IAutopool {
|
|
|
38
38
|
symbol: string;
|
|
39
39
|
logoURI: string;
|
|
40
40
|
description?: string;
|
|
41
|
-
type: "
|
|
41
|
+
type: "Ecosystem" | "Institutional" | "Flagship";
|
|
42
|
+
inactive?: boolean;
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
// Constants
|
|
@@ -85,6 +86,18 @@ export const SONIC_NETWORK: INetwork = {
|
|
|
85
86
|
"chainId": 146
|
|
86
87
|
};
|
|
87
88
|
|
|
89
|
+
export const PLASMA_NETWORK: INetwork = {
|
|
90
|
+
"name": "Plasma",
|
|
91
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/networks/plasma.png",
|
|
92
|
+
"chainId": 9745
|
|
93
|
+
};
|
|
94
|
+
|
|
95
|
+
export const LINEA_NETWORK: INetwork = {
|
|
96
|
+
"name": "Linea",
|
|
97
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/networks/linea.png",
|
|
98
|
+
"chainId": 59144
|
|
99
|
+
};
|
|
100
|
+
|
|
88
101
|
// Protocols
|
|
89
102
|
export const CURVE_PROTOCOL: IProtocol = {
|
|
90
103
|
"name": "Curve",
|
|
@@ -242,6 +255,12 @@ export const LLAMASWAP_PROTOCOL: IProtocol = {
|
|
|
242
255
|
"type": "Protocol"
|
|
243
256
|
};
|
|
244
257
|
|
|
258
|
+
export const UNISWAP_PROTOCOL: IProtocol = {
|
|
259
|
+
"name": "Uniswap",
|
|
260
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/protocols/uniswap.png",
|
|
261
|
+
"type": "Protocol"
|
|
262
|
+
};
|
|
263
|
+
|
|
245
264
|
export const NONE_PROTOCOL: IProtocol = {
|
|
246
265
|
"name": "None",
|
|
247
266
|
"logoURI": "https://token-imgs.tokemaklabs.com/protocols/none.png",
|
|
@@ -276,6 +295,15 @@ export const WETH_TOKEN: IToken = {
|
|
|
276
295
|
"bridgeInfo": {
|
|
277
296
|
"8453": {
|
|
278
297
|
"tokenAddress": "0x4200000000000000000000000000000000000006"
|
|
298
|
+
},
|
|
299
|
+
"9745": {
|
|
300
|
+
"tokenAddress": "0x9895D81bB462A195b4922ED7De0e3ACD007c32CB"
|
|
301
|
+
},
|
|
302
|
+
"42161": {
|
|
303
|
+
"tokenAddress": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1"
|
|
304
|
+
},
|
|
305
|
+
"59144": {
|
|
306
|
+
"tokenAddress": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f"
|
|
279
307
|
}
|
|
280
308
|
},
|
|
281
309
|
"parentAsset": "ETH"
|
|
@@ -310,14 +338,50 @@ export const TOKE_TOKEN: IToken = {
|
|
|
310
338
|
"8453": {
|
|
311
339
|
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
312
340
|
},
|
|
341
|
+
"9745": {
|
|
342
|
+
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
343
|
+
},
|
|
313
344
|
"42161": {
|
|
314
345
|
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
346
|
+
},
|
|
347
|
+
"59144": {
|
|
348
|
+
"tokenAddress": "0x223c0d94dbc8c0e5df1f6b2c75f06c0229c91950"
|
|
315
349
|
}
|
|
316
350
|
}
|
|
317
351
|
},
|
|
318
352
|
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x2e9d63788249371f1dfc918a52f8d799f4a38c94.png"
|
|
319
353
|
};
|
|
320
354
|
|
|
355
|
+
export const AUTO_TOKEN: IToken = {
|
|
356
|
+
"chainId": 1,
|
|
357
|
+
"address": "0x1Ec8eaa3f68261e793C48486b12092336A03c479",
|
|
358
|
+
"name": "AUTOfinance",
|
|
359
|
+
"symbol": "AUTO",
|
|
360
|
+
"decimals": 18,
|
|
361
|
+
"audits": "https://docs.tokemak.xyz/developer-docs/security-and-audits",
|
|
362
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x1ec8eaa3f68261e793c48486b12092336a03c479.png",
|
|
363
|
+
"extensions": {
|
|
364
|
+
"bridgeMainnetAdapter": "0xb3731daCCd61633b6fe929de46166EfD77D4390e",
|
|
365
|
+
"bridgeInfo": {
|
|
366
|
+
"10": {
|
|
367
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
368
|
+
},
|
|
369
|
+
"8453": {
|
|
370
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
371
|
+
},
|
|
372
|
+
"9745": {
|
|
373
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
374
|
+
},
|
|
375
|
+
"42161": {
|
|
376
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
377
|
+
},
|
|
378
|
+
"59144": {
|
|
379
|
+
"tokenAddress": "0x60cff692F42D67D4e367185E70D20164903E8725"
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
};
|
|
384
|
+
|
|
321
385
|
export const RETH_TOKEN: IToken = {
|
|
322
386
|
"chainId": 1,
|
|
323
387
|
"address": "0xae78736cd615f374d3085123a210448e74fc6393",
|
|
@@ -563,6 +627,12 @@ export const USDC_TOKEN: IToken = {
|
|
|
563
627
|
},
|
|
564
628
|
"8453": {
|
|
565
629
|
"tokenAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
|
|
630
|
+
},
|
|
631
|
+
"42161": {
|
|
632
|
+
"tokenAddress": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831"
|
|
633
|
+
},
|
|
634
|
+
"59144": {
|
|
635
|
+
"tokenAddress": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff"
|
|
566
636
|
}
|
|
567
637
|
}
|
|
568
638
|
},
|
|
@@ -587,10 +657,15 @@ export const SUSDE_TOKEN: IToken = {
|
|
|
587
657
|
"symbol": "sUSDe",
|
|
588
658
|
"name": "Staked USDe",
|
|
589
659
|
"audits": "https://docs.ethena.fi/resources/audits",
|
|
660
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x9d39a5de30e57443bff2a8307a4256c8797a3497.png",
|
|
590
661
|
"extensions": {
|
|
591
|
-
"parentAsset": "USDe"
|
|
592
|
-
|
|
593
|
-
|
|
662
|
+
"parentAsset": "USDe",
|
|
663
|
+
"bridgeInfo": {
|
|
664
|
+
"9745": {
|
|
665
|
+
"tokenAddress": "0x211Cc4DD073734dA055fbF44a2b4667d5E5fE5d2"
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
594
669
|
};
|
|
595
670
|
|
|
596
671
|
export const SUSDS_TOKEN: IToken = {
|
|
@@ -605,6 +680,9 @@ export const SUSDS_TOKEN: IToken = {
|
|
|
605
680
|
"bridgeInfo": {
|
|
606
681
|
"8453": {
|
|
607
682
|
"tokenAddress": "0x5875eEE11Cf8398102FdAd704C9E96607675467a"
|
|
683
|
+
},
|
|
684
|
+
"42161": {
|
|
685
|
+
"tokenAddress": "0xdDb46999F8891663a8F2828d25298f70416d7610"
|
|
608
686
|
}
|
|
609
687
|
}
|
|
610
688
|
},
|
|
@@ -669,7 +747,14 @@ export const USDE_TOKEN: IToken = {
|
|
|
669
747
|
"symbol": "USDe",
|
|
670
748
|
"name": "USDe",
|
|
671
749
|
"audits": "https://docs.ethena.fi/resources/audits",
|
|
672
|
-
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png"
|
|
750
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x4c9edd5852cd905f086c759e8383e09bff1e68b3.png",
|
|
751
|
+
"extensions": {
|
|
752
|
+
"bridgeInfo": {
|
|
753
|
+
"9745": {
|
|
754
|
+
"tokenAddress": "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34"
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
}
|
|
673
758
|
};
|
|
674
759
|
|
|
675
760
|
export const USDT_TOKEN: IToken = {
|
|
@@ -686,6 +771,12 @@ export const USDT_TOKEN: IToken = {
|
|
|
686
771
|
},
|
|
687
772
|
"8453": {
|
|
688
773
|
"tokenAddress": "0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2"
|
|
774
|
+
},
|
|
775
|
+
"42161": {
|
|
776
|
+
"tokenAddress": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9"
|
|
777
|
+
},
|
|
778
|
+
"59144": {
|
|
779
|
+
"tokenAddress": "0xA219439258ca9da29E9Cc4cE5596924745e12B93"
|
|
689
780
|
}
|
|
690
781
|
}
|
|
691
782
|
},
|
|
@@ -703,6 +794,9 @@ export const CRVUSD_TOKEN: IToken = {
|
|
|
703
794
|
"bridgeInfo": {
|
|
704
795
|
"8453": {
|
|
705
796
|
"tokenAddress": "0x417Ac0e078398C154EdFadD9Ef675d30Be60Af93"
|
|
797
|
+
},
|
|
798
|
+
"42161": {
|
|
799
|
+
"tokenAddress": "0x498Bf2B1e120FeD3ad3D42EA2165E9b73f99C1e5"
|
|
706
800
|
}
|
|
707
801
|
}
|
|
708
802
|
},
|
|
@@ -720,6 +814,9 @@ export const GHO_TOKEN: IToken = {
|
|
|
720
814
|
"bridgeInfo": {
|
|
721
815
|
"8453": {
|
|
722
816
|
"tokenAddress": "0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee"
|
|
817
|
+
},
|
|
818
|
+
"42161": {
|
|
819
|
+
"tokenAddress": "0x7dfF72693f6A4149b17e7C6314655f6A9F7c8B33"
|
|
723
820
|
}
|
|
724
821
|
}
|
|
725
822
|
},
|
|
@@ -934,7 +1031,14 @@ export const ALUSD_TOKEN: IToken = {
|
|
|
934
1031
|
"name": "Alchemix USD",
|
|
935
1032
|
"symbol": "alUSD",
|
|
936
1033
|
"decimals": 18,
|
|
937
|
-
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png"
|
|
1034
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xbc6da0fe9ad5f3b0d58160288917aa56653660e9.png",
|
|
1035
|
+
"extensions": {
|
|
1036
|
+
"bridgeInfo": {
|
|
1037
|
+
"42161": {
|
|
1038
|
+
"tokenAddress": "0xCB8FA9a76b8e203D8C3797bF438d8FB81Ea3326A"
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
938
1042
|
};
|
|
939
1043
|
|
|
940
1044
|
export const SYRUPUSDC_TOKEN: IToken = {
|
|
@@ -1081,11 +1185,94 @@ export const XSILO_TOKEN: IToken = {
|
|
|
1081
1185
|
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0xdd4c6fd31ccf66e250790643947675153c221a91.png"
|
|
1082
1186
|
};
|
|
1083
1187
|
|
|
1188
|
+
export const EURC_TOKEN: IToken = {
|
|
1189
|
+
"chainId": 8453,
|
|
1190
|
+
"address": "0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42",
|
|
1191
|
+
"name": "EURC",
|
|
1192
|
+
"symbol": "EURC",
|
|
1193
|
+
"decimals": 6,
|
|
1194
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/base/0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42.png",
|
|
1195
|
+
"extensions": {
|
|
1196
|
+
"bridgeInfo": {
|
|
1197
|
+
"1": {
|
|
1198
|
+
"tokenAddress": "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c"
|
|
1199
|
+
}
|
|
1200
|
+
}
|
|
1201
|
+
}
|
|
1202
|
+
};
|
|
1203
|
+
|
|
1204
|
+
export const XPL_TOKEN: IToken = {
|
|
1205
|
+
"chainId": 9745,
|
|
1206
|
+
"address": "0x0000000000000000000000000000000000000000",
|
|
1207
|
+
"name": "XPL",
|
|
1208
|
+
"symbol": "XPL",
|
|
1209
|
+
"decimals": 18,
|
|
1210
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x0000000000000000000000000000000000000000.png"
|
|
1211
|
+
};
|
|
1212
|
+
|
|
1213
|
+
export const WXPL_TOKEN: IToken = {
|
|
1214
|
+
"chainId": 9745,
|
|
1215
|
+
"address": "0x6100E367285b01F48D07953803A2d8dCA5D19873",
|
|
1216
|
+
"name": "Wrapped XPL",
|
|
1217
|
+
"symbol": "wXPL",
|
|
1218
|
+
"decimals": 18,
|
|
1219
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x6100e367285b01f48d07953803a2d8dca5d19873.png"
|
|
1220
|
+
};
|
|
1221
|
+
|
|
1222
|
+
export const USDAI_TOKEN: IToken = {
|
|
1223
|
+
"chainId": 9745,
|
|
1224
|
+
"address": "0x0A1a1A107E45b7Ced86833863f482BC5f4ed82EF",
|
|
1225
|
+
"name": "USDai",
|
|
1226
|
+
"symbol": "USDai",
|
|
1227
|
+
"decimals": 18,
|
|
1228
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x0a1a1a107e45b7ced86833863f482bc5f4ed82ef.png"
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1231
|
+
export const SUSDAI_TOKEN: IToken = {
|
|
1232
|
+
"chainId": 9745,
|
|
1233
|
+
"address": "0x0B2b2B2076d95dda7817e785989fE353fe955ef9",
|
|
1234
|
+
"name": "Staked USDai",
|
|
1235
|
+
"symbol": "sUSDai",
|
|
1236
|
+
"decimals": 18,
|
|
1237
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x0b2b2b2076d95dda7817e785989fe353fe955ef9.png",
|
|
1238
|
+
"extensions": {
|
|
1239
|
+
"parentAsset": "USDai"
|
|
1240
|
+
}
|
|
1241
|
+
};
|
|
1242
|
+
|
|
1243
|
+
export const USDO_TOKEN: IToken = {
|
|
1244
|
+
"chainId": 9745,
|
|
1245
|
+
"address": "0x87e617C7484aDE79FcD90db58BEB82B057facb48",
|
|
1246
|
+
"name": "USDO",
|
|
1247
|
+
"symbol": "USDO",
|
|
1248
|
+
"decimals": 18,
|
|
1249
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0x87e617c7484ade79fcd90db58beb82b057facb48.png"
|
|
1250
|
+
};
|
|
1251
|
+
|
|
1252
|
+
export const USDT0_TOKEN: IToken = {
|
|
1253
|
+
"address": "0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb",
|
|
1254
|
+
"chainId": 9745,
|
|
1255
|
+
"decimals": 6,
|
|
1256
|
+
"name": "USDT0",
|
|
1257
|
+
"symbol": "USDT0",
|
|
1258
|
+
"audits": "https://tether.to/ru/transparency/?tab=reports",
|
|
1259
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/plasma/0xb8ce59fc3717ada4c02eadf9682a9e934f625ebb.png"
|
|
1260
|
+
};
|
|
1261
|
+
|
|
1262
|
+
export const PYUSD_TOKEN: IToken = {
|
|
1263
|
+
"address": "0x6c3ea9036406852006290770bedfcaba0e23a0e8",
|
|
1264
|
+
"chainId": 1,
|
|
1265
|
+
"decimals": 6,
|
|
1266
|
+
"name": "PayPal USD",
|
|
1267
|
+
"symbol": "pyUSD",
|
|
1268
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/tokens/ethereum/0x6c3ea9036406852006290770bedfcaba0e23a0e8.png"
|
|
1269
|
+
};
|
|
1270
|
+
|
|
1084
1271
|
// Autopools
|
|
1085
1272
|
export const AUTOETH_AUTOPOOL: IAutopool = {
|
|
1086
1273
|
"symbol": "autoETH",
|
|
1087
1274
|
"description": "ETH LSTs on Ethereum deployed across integrated DEXs.",
|
|
1088
|
-
"type": "
|
|
1275
|
+
"type": "Flagship",
|
|
1089
1276
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1090
1277
|
};
|
|
1091
1278
|
|
|
@@ -1099,14 +1286,14 @@ export const BALETH_AUTOPOOL: IAutopool = {
|
|
|
1099
1286
|
export const BASEETH_AUTOPOOL: IAutopool = {
|
|
1100
1287
|
"symbol": "baseETH",
|
|
1101
1288
|
"description": "ETH LSTs and LRTs deployed across integrated DEXs and lending protocols on Base.",
|
|
1102
|
-
"type": "
|
|
1289
|
+
"type": "Ecosystem",
|
|
1103
1290
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1104
1291
|
};
|
|
1105
1292
|
|
|
1106
1293
|
export const AUTOLRT_AUTOPOOL: IAutopool = {
|
|
1107
1294
|
"symbol": "autoLRT",
|
|
1108
1295
|
"description": "ETH LRTs deployed across integrated DEXs.",
|
|
1109
|
-
"type": "
|
|
1296
|
+
"type": "Ecosystem",
|
|
1110
1297
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoLRT\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1111
1298
|
};
|
|
1112
1299
|
|
|
@@ -1120,14 +1307,14 @@ export const DINEROETH_AUTOPOOL: IAutopool = {
|
|
|
1120
1307
|
export const AUTOUSD_AUTOPOOL: IAutopool = {
|
|
1121
1308
|
"symbol": "autoUSD",
|
|
1122
1309
|
"description": "Blue-chip USD stablecoins deployed across integrated DEXs and lending protocols.",
|
|
1123
|
-
"type": "
|
|
1310
|
+
"type": "Flagship",
|
|
1124
1311
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1125
1312
|
};
|
|
1126
1313
|
|
|
1127
1314
|
export const BASEUSD_AUTOPOOL: IAutopool = {
|
|
1128
1315
|
"symbol": "baseUSD",
|
|
1129
1316
|
"description": "USD stablecoins deployed across integrated DEXs and lending protocols on Base.",
|
|
1130
|
-
"type": "
|
|
1317
|
+
"type": "Flagship",
|
|
1131
1318
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1132
1319
|
};
|
|
1133
1320
|
|
|
@@ -1135,6 +1322,7 @@ export const AUTOS_AUTOPOOL: IAutopool = {
|
|
|
1135
1322
|
"symbol": "autoS",
|
|
1136
1323
|
"description": "S deployed across integrated destinations on Sonic.",
|
|
1137
1324
|
"type": "Ecosystem",
|
|
1325
|
+
"inactive": true,
|
|
1138
1326
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoS\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1139
1327
|
};
|
|
1140
1328
|
|
|
@@ -1149,6 +1337,7 @@ export const MORPHOUSD_AUTOPOOL: IAutopool = {
|
|
|
1149
1337
|
"symbol": "morphoUSD",
|
|
1150
1338
|
"description": "USD stablecoins deployed deployed across Morpho.",
|
|
1151
1339
|
"type": "Ecosystem",
|
|
1340
|
+
"inactive": true,
|
|
1152
1341
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/morphoUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1153
1342
|
};
|
|
1154
1343
|
|
|
@@ -1156,6 +1345,7 @@ export const PENDLEUSD_AUTOPOOL: IAutopool = {
|
|
|
1156
1345
|
"symbol": "pendleUSD",
|
|
1157
1346
|
"description": "USD stablecoins deployed across Pendle.",
|
|
1158
1347
|
"type": "Ecosystem",
|
|
1348
|
+
"inactive": true,
|
|
1159
1349
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/pendleUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1160
1350
|
};
|
|
1161
1351
|
|
|
@@ -1169,31 +1359,84 @@ export const SONICUSD_AUTOPOOL: IAutopool = {
|
|
|
1169
1359
|
export const TURBOUSD_AUTOPOOL: IAutopool = {
|
|
1170
1360
|
"symbol": "turboUSD",
|
|
1171
1361
|
"description": "Emerging USD stablecoins deployed across integrated DEXs and lending protocols.",
|
|
1172
|
-
"type": "
|
|
1362
|
+
"type": "Ecosystem",
|
|
1363
|
+
"inactive": true,
|
|
1173
1364
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/turboUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1174
1365
|
};
|
|
1175
1366
|
|
|
1176
1367
|
export const SILOUSD_AUTOPOOL: IAutopool = {
|
|
1177
1368
|
"symbol": "siloUSD",
|
|
1178
1369
|
"description": "USD stablecoins deployed across integrated destinations on Silo.",
|
|
1179
|
-
"type": "
|
|
1370
|
+
"type": "Institutional",
|
|
1180
1371
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/siloUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1181
1372
|
};
|
|
1182
1373
|
|
|
1183
1374
|
export const SILOETH_AUTOPOOL: IAutopool = {
|
|
1184
1375
|
"symbol": "siloETH",
|
|
1185
1376
|
"description": "ETH deployed across integrated destinations on Silo.",
|
|
1186
|
-
"type": "
|
|
1377
|
+
"type": "Institutional",
|
|
1187
1378
|
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/siloETH\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1188
1379
|
};
|
|
1189
1380
|
|
|
1381
|
+
export const BASEEUR_AUTOPOOL: IAutopool = {
|
|
1382
|
+
"symbol": "baseEUR",
|
|
1383
|
+
"description": "EUR stablecoins deployed across integrated lending protocols on Base.",
|
|
1384
|
+
"type": "Ecosystem",
|
|
1385
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/baseEUR\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1386
|
+
};
|
|
1387
|
+
|
|
1388
|
+
export const ARBUSD_AUTOPOOL: IAutopool = {
|
|
1389
|
+
"symbol": "arbUSD",
|
|
1390
|
+
"description": "USD stablecoins deployed across integrated destinations on Arbitrum.",
|
|
1391
|
+
"type": "Ecosystem",
|
|
1392
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/arbUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1393
|
+
};
|
|
1394
|
+
|
|
1395
|
+
export const PLASMAUSD_AUTOPOOL: IAutopool = {
|
|
1396
|
+
"symbol": "plasmaUSD",
|
|
1397
|
+
"description": "USD stablecoins deployed across integrated DEXs and lending protocols on Plasma.",
|
|
1398
|
+
"type": "Ecosystem",
|
|
1399
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/plasmaUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1400
|
+
};
|
|
1401
|
+
|
|
1402
|
+
export const AUTOXPL_AUTOPOOL: IAutopool = {
|
|
1403
|
+
"symbol": "autoXPL",
|
|
1404
|
+
"description": "XPL deployed across integrated DEXs on Plasma.",
|
|
1405
|
+
"type": "Ecosystem",
|
|
1406
|
+
"inactive": true,
|
|
1407
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/autoXPL\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1408
|
+
};
|
|
1409
|
+
|
|
1410
|
+
export const LINEAUSD_AUTOPOOL: IAutopool = {
|
|
1411
|
+
"symbol": "lineaUSD",
|
|
1412
|
+
"description": "USD stablecoins deployed across integrated DEXs and lending protocols on Linea.",
|
|
1413
|
+
"type": "Ecosystem",
|
|
1414
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/lineaUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1415
|
+
};
|
|
1416
|
+
|
|
1417
|
+
export const ANCHRGUSD_AUTOPOOL: IAutopool = {
|
|
1418
|
+
"symbol": "anchrgUSD",
|
|
1419
|
+
"description": "For Porto institutional users: deposit USDC to earn competitive, sustainable USD yield from transparent, blue-chip sources designed to remain market-neutral. Automated rebalancing optimizes returns with strict onchain safeguards while you remain self-custodial in Porto.",
|
|
1420
|
+
"type": "Institutional",
|
|
1421
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/anchrgUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1422
|
+
};
|
|
1423
|
+
|
|
1424
|
+
export const INFINIFIUSD_AUTOPOOL: IAutopool = {
|
|
1425
|
+
"symbol": "infinifiUSD",
|
|
1426
|
+
"description": "Gated InfiniFI Autopool deploying USD across Morpho markets.",
|
|
1427
|
+
"type": "Institutional",
|
|
1428
|
+
"logoURI": "https://token-imgs.tokemaklabs.com/autopools/infinifiUSD\n .toLowerCase()\n .replace(/s+/g, \"_\")}.png"
|
|
1429
|
+
};
|
|
1430
|
+
|
|
1190
1431
|
// Arrays of all items
|
|
1191
1432
|
export const ALL_NETWORKS: INetwork[] = [
|
|
1192
1433
|
ETHEREUM_NETWORK,
|
|
1193
1434
|
BASE_NETWORK,
|
|
1194
1435
|
OPTIMISM_NETWORK,
|
|
1195
1436
|
ARBITRUM_NETWORK,
|
|
1196
|
-
SONIC_NETWORK
|
|
1437
|
+
SONIC_NETWORK,
|
|
1438
|
+
PLASMA_NETWORK,
|
|
1439
|
+
LINEA_NETWORK
|
|
1197
1440
|
];
|
|
1198
1441
|
|
|
1199
1442
|
export const ALL_PROTOCOLS: IProtocol[] = [
|
|
@@ -1220,6 +1463,7 @@ export const ALL_PROTOCOLS: IProtocol[] = [
|
|
|
1220
1463
|
ZAPPER_PROTOCOL,
|
|
1221
1464
|
DEBANK_PROTOCOL,
|
|
1222
1465
|
LLAMASWAP_PROTOCOL,
|
|
1466
|
+
UNISWAP_PROTOCOL,
|
|
1223
1467
|
NONE_PROTOCOL
|
|
1224
1468
|
];
|
|
1225
1469
|
|
|
@@ -1228,6 +1472,7 @@ export const ALL_TOKENS: IToken[] = [
|
|
|
1228
1472
|
WETH_TOKEN,
|
|
1229
1473
|
WBTC_TOKEN,
|
|
1230
1474
|
TOKE_TOKEN,
|
|
1475
|
+
AUTO_TOKEN,
|
|
1231
1476
|
RETH_TOKEN,
|
|
1232
1477
|
STETH_TOKEN,
|
|
1233
1478
|
WSTETH_TOKEN,
|
|
@@ -1290,7 +1535,15 @@ export const ALL_TOKENS: IToken[] = [
|
|
|
1290
1535
|
LVLUSD_TOKEN,
|
|
1291
1536
|
IETHV2_TOKEN,
|
|
1292
1537
|
SILO_TOKEN,
|
|
1293
|
-
XSILO_TOKEN
|
|
1538
|
+
XSILO_TOKEN,
|
|
1539
|
+
EURC_TOKEN,
|
|
1540
|
+
XPL_TOKEN,
|
|
1541
|
+
WXPL_TOKEN,
|
|
1542
|
+
USDAI_TOKEN,
|
|
1543
|
+
SUSDAI_TOKEN,
|
|
1544
|
+
USDO_TOKEN,
|
|
1545
|
+
USDT0_TOKEN,
|
|
1546
|
+
PYUSD_TOKEN
|
|
1294
1547
|
];
|
|
1295
1548
|
|
|
1296
1549
|
export const ALL_AUTOPOOLS: IAutopool[] = [
|
|
@@ -1308,7 +1561,14 @@ export const ALL_AUTOPOOLS: IAutopool[] = [
|
|
|
1308
1561
|
SONICUSD_AUTOPOOL,
|
|
1309
1562
|
TURBOUSD_AUTOPOOL,
|
|
1310
1563
|
SILOUSD_AUTOPOOL,
|
|
1311
|
-
SILOETH_AUTOPOOL
|
|
1564
|
+
SILOETH_AUTOPOOL,
|
|
1565
|
+
BASEEUR_AUTOPOOL,
|
|
1566
|
+
ARBUSD_AUTOPOOL,
|
|
1567
|
+
PLASMAUSD_AUTOPOOL,
|
|
1568
|
+
AUTOXPL_AUTOPOOL,
|
|
1569
|
+
LINEAUSD_AUTOPOOL,
|
|
1570
|
+
ANCHRGUSD_AUTOPOOL,
|
|
1571
|
+
INFINIFIUSD_AUTOPOOL
|
|
1312
1572
|
];
|
|
1313
1573
|
|
|
1314
1574
|
// Token Lists
|
|
@@ -1330,6 +1590,12 @@ export const FAV_ETH_TOKENS: IToken[] = [
|
|
|
1330
1590
|
PXETH_TOKEN
|
|
1331
1591
|
];
|
|
1332
1592
|
|
|
1593
|
+
export const FAV_EURC_TOKENS: IToken[] = [
|
|
1594
|
+
EURC_TOKEN,
|
|
1595
|
+
USDC_TOKEN,
|
|
1596
|
+
USDT_TOKEN
|
|
1597
|
+
];
|
|
1598
|
+
|
|
1333
1599
|
export const FAV_SONIC_TOKENS: IToken[] = [
|
|
1334
1600
|
S_TOKEN,
|
|
1335
1601
|
WS_TOKEN,
|
|
@@ -1374,6 +1640,12 @@ export const SWAP_ENABLED: IToken[] = [
|
|
|
1374
1640
|
DOLA_TOKEN
|
|
1375
1641
|
];
|
|
1376
1642
|
|
|
1643
|
+
export const SWAP_ENABLED_PLASMA: IToken[] = [
|
|
1644
|
+
USDT_TOKEN,
|
|
1645
|
+
WXPL_TOKEN,
|
|
1646
|
+
XPL_TOKEN
|
|
1647
|
+
];
|
|
1648
|
+
|
|
1377
1649
|
export const SWAP_ENABLED_SONIC: IToken[] = [
|
|
1378
1650
|
S_TOKEN,
|
|
1379
1651
|
WS_TOKEN,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tokemak/tokenlist",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -11,18 +11,19 @@
|
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
|
13
13
|
},
|
|
14
|
-
"scripts": {
|
|
15
|
-
"lint": "eslint \"src/**/*.ts*\"",
|
|
16
|
-
"clean": "rimraf .turbo node_modules dist",
|
|
17
|
-
"upload": "ts-node scripts/uploadToServer.ts",
|
|
18
|
-
"build": "ts-node scripts/build.ts"
|
|
19
|
-
},
|
|
20
14
|
"devDependencies": {
|
|
21
15
|
"ts-node": "10.9.2",
|
|
22
|
-
"typescript": "
|
|
16
|
+
"typescript": "5.8.3"
|
|
23
17
|
},
|
|
24
18
|
"dependencies": {
|
|
25
|
-
"@aws-sdk/client-s3": "3.
|
|
19
|
+
"@aws-sdk/client-s3": "3.996.0",
|
|
26
20
|
"dotenv": "16.0.0"
|
|
21
|
+
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"lint": "eslint \"**/*.ts\" --ignore-pattern dist",
|
|
24
|
+
"clean": "rimraf .turbo node_modules dist",
|
|
25
|
+
"upload": "ts-node scripts/uploadToServer.ts",
|
|
26
|
+
"build": "ts-node scripts/build.ts",
|
|
27
|
+
"delete": "ts-node scripts/deleteServerItem.ts"
|
|
27
28
|
}
|
|
28
|
-
}
|
|
29
|
+
}
|