Skip to content

Commit

Permalink
feat: add DVstETH
Browse files Browse the repository at this point in the history
  • Loading branch information
essserrr committed Jan 20, 2025
1 parent 2d8f1f8 commit 851284d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/apy/lido/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const TOKENS: Record<NetworkType, Record<Address, string>> = {
"0x7a4EffD87C2f3C55CA251080b1343b605f327E3a": "rstETH",
"0xBEEF69Ac7870777598A04B2bd4771c71212E6aBc": "steakLRT",
"0x5fD13359Ba15A84B76f7F87568309040176167cd": "amphrETH",
"0x5E362eb2c0706Bd1d134689eC75176018385430B": "DVstETH",
},
Optimism: {
"0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb": "wstETH",
Expand Down
27 changes: 26 additions & 1 deletion src/points/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ type PointsType =
| "babylon"
| "veda"
| "karak"
| "pumpBTC";
| "pumpBTC"
| "obol"
| "ssv";

interface PointsReward {
name: string;
Expand Down Expand Up @@ -130,6 +132,19 @@ const REWARDS_BASE_INFO = {
multiplier,
type: "pumpBTC",
}),

obol: (multiplier: PointsReward["multiplier"]): PointsReward => ({
name: "Obol",
units: "points",
multiplier,
type: "obol",
}),
ssv: (multiplier: PointsReward["multiplier"]): PointsReward => ({
name: "SSV",
units: "points",
multiplier,
type: "ssv",
}),
};

export interface PointsInfo {
Expand Down Expand Up @@ -283,6 +298,16 @@ export const POINTS_INFO_BY_NETWORK: Record<NetworkType, Array<PointsInfo>> = {
symbol: "stkcvxllamathena",
rewards: [REWARDS_BASE_INFO.ethena(30_00n)],
},

{
address: "0x5E362eb2c0706Bd1d134689eC75176018385430B",
symbol: "DVstETH",
rewards: [
REWARDS_BASE_INFO.mellow(2_00n),
REWARDS_BASE_INFO.obol(1_00n),
REWARDS_BASE_INFO.ssv(1_00n),
],
},
],
Arbitrum: [
{
Expand Down

0 comments on commit 851284d

Please sign in to comment.