Skip to content

Commit c809fc4

Browse files
committed
feat: add ebra
1 parent 23192e2 commit c809fc4

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

src/sdk/sdk-legacy/apy/index.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

106111
export 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,

src/sdk/sdk-legacy/core/protocols.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ export type ExtendedProtocols =
1717
| "Puffer"
1818
| "Mellow"
1919
| "Lombard"
20-
| "pumpBTC";
20+
| "pumpBTC"
21+
| "Stakestone";
2122

2223
const 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

165170
export const isExtendedProtocol = (t: unknown): t is ExtendedProtocols =>

0 commit comments

Comments
 (0)