Skip to content

Commit

Permalink
fix prevent spike
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Aug 28, 2024
1 parent 2dab357 commit deb5963
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dexs/jellyverse/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ const v2Graphs = (chain: Chain) => {
return acc;
}, { dailyVolume: 0, dailyFees: 0 });

if (dailyVolume > 1_000_000_000) {
return {}
}

return {
dailyVolume: dailyVolume.toString(),
dailyFees: dailyFees.toString(),
Expand Down

0 comments on commit deb5963

Please sign in to comment.