Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
slasher125 committed Nov 29, 2023
1 parent 03110ff commit 1b5f482
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/adaptors/gamma/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const EXCHANGES_API = {
uniswapv3: '',
quickswap: 'quickswap/',
zyberswap: 'zyberswap/',
// thena: 'thena/',
thena: 'thena/',
retro: 'retro/',
ascent: 'ascent/',
camelot: 'camelot/',
Expand All @@ -27,7 +27,7 @@ const EXCHANGES_CHAINS = {
uniswapv3: ["ethereum", "optimism", "polygon", "arbitrum", "celo", "bsc"],
quickswap: ["polygon", "polygon_zkevm"],
zyberswap: ["arbitrum"],
// thena: ["bsc"],
thena: ["bsc"],
retro: ["polygon"],
ascent: ["polygon"],
camelot: ["arbitrum"],
Expand Down Expand Up @@ -354,7 +354,7 @@ const getApy = async () => {
...i,
apyReward: x.includes(i.pool) ? null : i.apyReward,
rewardTokens: x.includes(i.pool) ? null : i.rewardTokens,
}));
})).filter(p => p.chain != 'Binance');
};

module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion src/adaptors/thena-fusion/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const getApy = async () => {
...i,
apyReward: x.includes(i.pool) ? null : i.apyReward,
rewardTokens: x.includes(i.pool) ? null : i.rewardTokens,
}));
})).filter(i => i.chain === 'Binance');
};

module.exports = {
Expand Down

0 comments on commit 1b5f482

Please sign in to comment.