Skip to content

Commit f3aa799

Browse files
committed
removed pool meta & filtering
1 parent 4ec9781 commit f3aa799

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/adaptors/zealousswap/index.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// - We use `apr` from our API as `apyBase` (already annualized %).
77
// - If `apr` is missing, we fall back to fee APR from volume * feeRate.
88
// - We include `apyReward` only if our API reports a positive `farmApr`.
9-
// - Only emit pools with `hasUSDValues === true` and tvl > 10000 to avoid noise.
9+
// - Only emit pools with `hasUSDValues === true`.
1010

1111
const axios = require("axios");
1212

@@ -67,12 +67,11 @@ async function apy() {
6767
: [],
6868
underlyingTokens: [p.token0?.address, p.token1?.address].filter(Boolean),
6969
url: "https://app.zealousswap.com/liquidity",
70-
poolMeta: "Zealous Swap spot pool",
7170
volumeUsd1d: toNumber(p.volumeUSD),
7271
});
7372
}
7473

75-
return results.filter(x => Number.isFinite(x.tvlUsd) && x.tvlUsd >= 10000);
74+
return results.filter(x => Number.isFinite(x.tvlUsd));
7675
}
7776

7877
module.exports = {

0 commit comments

Comments
 (0)