Ericmoore_11now name
Updated 2024-12-16
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
platform,
SUM(amount_in_usd) AS total_volume_usd
FROM
aptos.defi.ez_dex_swaps
WHERE
block_timestamp >= '2024-10-01'
AND block_timestamp < '2025-01-01'
GROUP BY
platform
ORDER BY
total_volume_usd DESC;
QueryRunArchived: QueryRun has been archived