Skip to content

Commit 377851a

Browse files
committed
feat: add bera
1 parent 982f542 commit 377851a

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/apy/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ type ExtraFarmTokens = Extract<
3838
| "pumpBTC"
3939
| "PT_sUSDe_27MAR2025"
4040
| "DVstETH"
41+
| "beraSTONE"
4142
>;
4243

4344
// tokens with apy among them
@@ -105,6 +106,7 @@ const EXTRA_FARM_TOKENS: Record<ExtraFarmTokens, true> = {
105106
pumpBTC: true,
106107
PT_sUSDe_27MAR2025: true,
107108
DVstETH: true,
109+
beraSTONE: true,
108110
};
109111

110112
export const isExtraFarmToken = (t: unknown): t is ExtraFarmTokens => {

src/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)