Skip to content

Commit

Permalink
unstable vaults reaching EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
superbeefyboy committed Nov 4, 2020
1 parent deff22c commit 8cd3c93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/features/configure/pools.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ export const pools = [
earnedTokenAddress: '0x214e640c638fbe68Fb24e11BfBd8Cd7d6cb8E37b',
earnContractAddress: '0x214e640c638fbe68Fb24e11BfBd8Cd7d6cb8E37b',
defaultApy: '20000.00',
unstableApy: false,
unstableApy: true,
pricePerFullShare: 1,
pastPricePerFullShare: 1,
tvl: 0,
oracle: 'coingecko',
oracleId: 'pancakeswap-token',
oraclePrice: 0,
fallbackPrice: 0.45,
fallbackPrice: 0,
depositsPaused: true,
status: 'active',
status: 'dead',
},

{
Expand All @@ -62,7 +62,7 @@ export const pools = [
earnedTokenAddress: '0xD8bC83E80C88263b8494E8f48FdDEba6261C9B1c',
earnContractAddress: '0xD8bC83E80C88263b8494E8f48FdDEba6261C9B1c',
defaultApy: '20000.00',
unstableApy: false,
unstableApy: true,
pricePerFullShare: 1,
pastPricePerFullShare: 1,
tvl: 0,
Expand All @@ -87,7 +87,7 @@ export const pools = [
earnedTokenAddress: '0x489afbAED0Ea796712c9A6d366C16CA3876D8184',
earnContractAddress: '0x489afbAED0Ea796712c9A6d366C16CA3876D8184',
defaultApy: '20000.00',
unstableApy: false,
unstableApy: true,
pricePerFullShare: 1,
pastPricePerFullShare: 1,
tvl: 0,
Expand Down
2 changes: 1 addition & 1 deletion src/features/vault/sections/SectionPools.js
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ export default function SectionPools() {
<Grid item xs={5} md={2} container justify="center" alignItems="center">
<Grid item>
<Typography className={classes.iconContainerMainTitle} variant="body2" gutterBottom noWrap>
{calcDaily(depositedApy)}
{pool.unstableApy ? '??? %' : calcDaily(depositedApy)}
</Typography>
<Typography className={classes.iconContainerSubTitle} variant="body2">
{t('Vault-APYDaily')}
Expand Down

0 comments on commit 8cd3c93

Please sign in to comment.