datavortexAverage Daily Volume
Updated 2024-11-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
blockchain,
TO_CHAR(block_timestamp, 'YYYY-MM') AS Month,
SUM(amount_in_usd) AS TotalMonthlyVolume
FROM
crosschain.defi.ez_dex_swaps
WHERE
blockchain IN ('ethereum', 'solana')
AND block_timestamp BETWEEN '2024-07-01' AND '2024-09-30'
GROUP BY
blockchain,
TO_CHAR(block_timestamp, 'YYYY-MM')
ORDER BY
blockchain,
Month;
QueryRunArchived: QueryRun has been archived