datavortexTotals
Updated 2025-01-17
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT
SUM(COALESCE(amount_in_usd, 0)) AS "total swap volume",
COUNT(DISTINCT swapper) AS "total active traders",
COUNT(DISTINCT tx_hash) AS "total swaps"
FROM
aptos.defi.ez_dex_swaps
WHERE
symbol_in = 'DONK'
AND amount_in_usd IS NOT NULL;
QueryRunArchived: QueryRun has been archived