Skip to content

Commit

Permalink
Update index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mantasfam committed Sep 25, 2024
1 parent 0eea3f1 commit 046671c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/factory/providers/solana/orca/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ async function tvl(params: ITvlParams): Promise<Partial<ITvlReturn>> {
}

const poolInfo = (await axios.get(WHIRLPOOL_Endpoint)).data;
const filteredPools = poolInfo.whirlpools.filter((pool) => pool.tvl >= 1000);
const filteredPools = poolInfo.whirlpools.filter((pool) => pool.tvl >= 5000);

const promisesForTokenBalance = [];
filteredPools.forEach((pool) => {
Expand Down

0 comments on commit 046671c

Please sign in to comment.