diff --git a/src/adaptors/gamma/index.js b/src/adaptors/gamma/index.js index 47aea7ff66..3f22987811 100644 --- a/src/adaptors/gamma/index.js +++ b/src/adaptors/gamma/index.js @@ -8,7 +8,7 @@ const EXCHANGES_API = { uniswapv3: '', quickswap: 'quickswap/', zyberswap: 'zyberswap/', - // thena: 'thena/', + thena: 'thena/', retro: 'retro/', ascent: 'ascent/', camelot: 'camelot/', @@ -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"], @@ -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 = { diff --git a/src/adaptors/thena-fusion/index.js b/src/adaptors/thena-fusion/index.js index a2fcf429d8..3f563d5785 100644 --- a/src/adaptors/thena-fusion/index.js +++ b/src/adaptors/thena-fusion/index.js @@ -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 = {