Ericmoore_11Aptos Dex1
Updated 2024-12-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
DATE_TRUNC('month', block_timestamp) AS month,
platform,
SUM(amount_in_usd) AS total_volume_usd,
COUNT(tx_hash) AS total_transactions,
COUNT(DISTINCT swapper) AS active_wallets
FROM
aptos.defi.ez_dex_swaps
WHERE
block_timestamp >= '2024-10-01'
AND block_timestamp < CURRENT_DATE
GROUP BY
platform, month
ORDER BY month ASC
QueryRunArchived: QueryRun has been archived