mondov2023-05-04 09:39 PM
    Updated 2023-05-04
    SELECT count(*) as number_of_transactions,
    sum(COALESCE(amount_in_usd,0) + COALESCE(amount_out_usd,0)) as volume,
    count(DISTINCT platform) as platforms
    FROM avalanche.core.ez_dex_swaps
    WHERE ORIGIN_FROM_ADDRESS = '{{address}}'

    Run a query to Download Data