Skip to content

Commit

Permalink
fix: add volumeUsdMonth to token getAllWithAggregation query
Browse files Browse the repository at this point in the history
  • Loading branch information
tmrdlt authored and kenodressel committed Aug 6, 2024
1 parent 6d21829 commit f49a43d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/database/token/token-db.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ export class TokenDbService {
count(p.id)::integer AS "pairs",
volume_usd (t.id, INTERVAL '1 DAY') AS "volumeUsdDay",
volume_usd (t.id, INTERVAL '1 WEEK') AS "volumeUsdWeek",
volume_usd (t.id, INTERVAL '1 MONTH') AS "volumeUsdMonth",
volume_usd (t.id, INTERVAL '1 YEAR') AS "volumeUsdYear",
volume_usd (t.id, INTERVAL '100 YEAR') AS "volumeUsdAll",
(
Expand Down

0 comments on commit f49a43d

Please sign in to comment.