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

Sommelier: Add Turbo eETH Vault #1089

Merged
merged 13 commits into from
Nov 23, 2023
15 changes: 15 additions & 0 deletions src/adaptors/sommelier/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const turbogho = '0x0c190ded9be5f512bd72827bdad4003e9cc7975c';
const ethgrowth = '0x6c51041a91c91c86f3f08a72cb4d3f67f1208897';
const turbosteth = '0xfd6db5011b171b05e1ea3b92f9eacaeeb055e971';
const turbosomm = '0x5195222f69c5821f8095ec565e71e18ab6a2298f';
const turboeeth = '0x9a7b4980C6F0FCaa50CD5f288Ad7038f434c692e';

// Rewards are paid out in EVM SOMM
const rewardTokens = ['0xa670d7237398238de01267472c6f13e5b8010fd1'];
Expand Down Expand Up @@ -47,6 +48,7 @@ const stakingPools = {
[ethgrowth]: '0xb1D3948F4DCd7Aa5e89449080F3D88870aD0137A',
// TODO: If we add staking pool for turbo steth, add it here
// TODO: If we add staking pool for turbo somm, add it here
[turboeeth]: '0x596c3f05ba9c6c356527e47989b3ed26e2b3449d',
};

// List of v0815 Cellars
Expand Down Expand Up @@ -337,6 +339,19 @@ const v2p5Pools = [
underlyingTokens: [],
url: 'https://app.sommelier.finance/strategies/Turbo-SOMM',
},
{
pool: `${turboeeth}-ethereum`,
chain,
project,
symbol: 'WETH-EETH',
poolMeta: 'TurboEETH',
tvlUsd: 0,
apyBase: 0,
apyReward: 0,
rewardTokens,
underlyingTokens: [],
url: 'https://app.sommelier.finance/strategies/Turbo-eETH',
},
];

module.exports = {
Expand Down
Loading