File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 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
1111const 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
7877module . exports = {
You can’t perform that action at this time.
0 commit comments