apostleoffinanceTOTAL ACTIVE USERS
    Updated 2022-11-17
    SELECT platform,
    COUNT(DISTINCT tx_hash) AS transaction_id,
    COUNT(DISTINCT origin_from_address) AS total_active_users
    FROM ethereum.core.ez_dex_swaps
    WHERE event_name = 'Swap'
    AND platform = 'uniswap-v3'
    GROUP BY 1



    Run a query to Download Data