File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ type ExtraFarmTokens = Extract<
3636 | "PT_corn_pumpBTC_26DEC2024"
3737 | "pumpBTC"
3838 | "PT_sUSDe_27MAR2025"
39+ | "DVstETH"
40+ | "beraSTONE"
3941> ;
4042
4143// tokens with apy among them
@@ -66,6 +68,7 @@ type ExtraTokensWithAPY = Extract<
6668 | "PT_corn_eBTC_27MAR2025"
6769 | "PT_corn_pumpBTC_26DEC2024"
6870 | "PT_sUSDe_27MAR2025"
71+ | "DVstETH"
6972> ;
7073
7174// LRT & LST tokens among them
@@ -101,6 +104,8 @@ const EXTRA_FARM_TOKENS: Record<ExtraFarmTokens, true> = {
101104 PT_corn_pumpBTC_26DEC2024 : true ,
102105 pumpBTC : true ,
103106 PT_sUSDe_27MAR2025 : true ,
107+ DVstETH : true ,
108+ beraSTONE : true ,
104109} ;
105110
106111export const isExtraFarmToken = ( t : unknown ) : t is ExtraFarmTokens => {
@@ -126,6 +131,7 @@ const EXTRA_TOKENS_WITH_APY: Record<ExtraTokensWithAPY, true> = {
126131 steakLRT : true ,
127132 amphrETH : true ,
128133 pufETH : true ,
134+ DVstETH : true ,
129135
130136 PT_ezETH_26DEC2024 : true ,
131137 PT_eETH_26DEC2024 : true ,
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ export type ExtendedProtocols =
1717 | "Puffer"
1818 | "Mellow"
1919 | "Lombard"
20- | "pumpBTC" ;
20+ | "pumpBTC"
21+ | "Stakestone" ;
2122
2223const PROTOCOL_DATA : Record < ExtendedProtocols , ProtocolData > = {
2324 Uniswap : {
@@ -160,6 +161,10 @@ const PROTOCOL_DATA: Record<ExtendedProtocols, ProtocolData> = {
160161 name : "Equalizer" ,
161162 icon : "/protocols/equalizer.svg" ,
162163 } ,
164+ Stakestone : {
165+ name : "Stakestone" ,
166+ icon : "/protocols/stakestone.svg" ,
167+ } ,
163168} ;
164169
165170export const isExtendedProtocol = ( t : unknown ) : t is ExtendedProtocols =>
You can’t perform that action at this time.
0 commit comments