datavortexTotals
    Updated 2025-01-17
    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