Skip to content

Commit

Permalink
osmosis harcode tvl upper limit
Browse files Browse the repository at this point in the history
  • Loading branch information
slasher125 committed Jan 28, 2025
1 parent ef95239 commit 5449ce7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/adaptors/osmosis-dex/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ const apy = async () => {
};
});

return utils.removeDuplicates(data.filter((p) => p && utils.keepFinite(p)));
return utils.removeDuplicates(
data.filter((p) => p && utils.keepFinite(p) && p.tvlUsd < 50e6)
);
};

module.exports = {
Expand Down

0 comments on commit 5449ce7

Please sign in to comment.