Skip to content

Commit

Permalink
fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Mar 29, 2024
1 parent 5b11b92 commit 70a1d2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dexs/swych/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ const fetchVolumeStats = async (timestamp: number) => {
convertedTradingVolume24h,
] = [tradingVolume, tradingVolume24h].map(value => convertToUsd(value));
return {
dayVolume: convertedTradingVolume24h.toString(),
timestamp,
dailyVolume: convertedTradingVolume24h.toString(),
totalVolume: convertedTradingVolume.toString(),
};
};
Expand Down

0 comments on commit 70a1d2d

Please sign in to comment.