Skip to content
This repository was archived by the owner on Aug 12, 2023. It is now read-only.

Commit 738f730

Browse files
committed
Fix trade volume on token metrics
1 parent c445449 commit 738f730

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/metrics/get-token-volume-metrics.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const getTokenMetrics = async (tokenAddress, period, granularity) => {
6464
fillCount: x.doc_count,
6565
fillVolume: { token: x.fillVolume.value, USD: x.fillVolumeUSD.value },
6666
tradeCount: x.tradeCount.value,
67-
tradeVolume: { token: x.tradeVolume.value, USD: x.tradeVolume.value },
67+
tradeVolume: { token: x.tradeVolume.value, USD: x.tradeVolumeUSD.value },
6868
}));
6969

7070
return metrics;

0 commit comments

Comments
 (0)