Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rumpel: add re7LRT and re7rwBTC #11790

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion projects/rumpel/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ const TOKENS = {
SUSDE: ADDRESSES.ethereum.sUSDe,
USDE: ADDRESSES.ethereum.USDe,
WSTETH: ADDRESSES.ethereum.WSTETH,
WBTC: ADDRESSES.ethereum.WBTC,
WEETH: "0xCd5fE23C85820F7B72D0926FC9b05b43E359b7ee",
WEETHS: "0x917ceE801a67f933F2e6b33fC0cD1ED2d5909D88",
MSTETH: "0x49446A0874197839D15395B908328a74ccc96Bc0",
STETH: ADDRESSES.ethereum.STETH,
RSUSDE: "0x82f5104b23FF2FA54C2345F821dAc9369e9E0B26",
RSTETH: "0x7a4effd87c2f3c55ca251080b1343b605f327e3a",
RE7LRT: "0x84631c0d0081FDe56DeB72F6DE77abBbF6A9f93a",
RE7RWBTC: "0x7F43fDe12A40dE708d908Fb3b9BFB8540d9Ce444",
KUSDE: "0xBE3cA34D0E877A1Fc889BD5231D65477779AFf4e",
KWEETH: "0x2DABcea55a12d73191AeCe59F508b191Fb68AdaC",
DC_WSTETH_COLLATERAL: "0xC329400492c6ff2438472D4651Ad17389fCb843a",
Expand All @@ -43,7 +46,7 @@ async function tvl(api) {

async function sumBaseTokens() {
return api.sumTokens({
owners, tokens: [TOKENS.AGETH, TOKENS.WEETH, TOKENS.USDE, TOKENS.SUSDE, TOKENS.MSTETH, TOKENS.WSTETH, TOKENS.STETH,]
owners, tokens: [TOKENS.AGETH, TOKENS.WEETH, TOKENS.USDE, TOKENS.SUSDE, TOKENS.MSTETH, TOKENS.WSTETH, TOKENS.STETH,TOKENS.WBTC,]
})
}

Expand Down Expand Up @@ -86,6 +89,8 @@ async function tvl(api) {
TOKENS.MSTETH,
TOKENS.RSUSDE,
TOKENS.RSTETH,
TOKENS.RE7LRT,
TOKENS.RE7RWBTC,
]
return api.sumTokens({ owners, tokens })
}
Expand Down
Loading