Skip to content

Commit

Permalink
fix disable count swap for derivation
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Aug 21, 2024
1 parent 2b4c88e commit 3494cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dexs/cyberperp/cyberperp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const getData = async (timestamp: number) => {
const data = response.volumeStats[0];
dailyVolume = dailyVolume
.plus(new BigNumber(data.mint))
.plus(new BigNumber(data.swap))
// .plus(new BigNumber(data.swap)) // is not list spot
.plus(new BigNumber(data.burn))
.plus(new BigNumber(data.margin))
.dividedBy(new BigNumber(1e30));
Expand Down

0 comments on commit 3494cf4

Please sign in to comment.