Hossein2023-07-10 09:26 AM
    Updated 2023-07-10
    select
    count(distinct tx_hash) as swaps,
    count(distinct sender) as swappers,
    sum(amount_in_usd) as volume_usd,
    avg(amount_in_usd) as average_volume_usd
    from avalanche.core.ez_dex_swaps
    where '0xc3344870d52688874b06d844e0c36cc39fc727f6' in (token_in, token_out)
    and amount_in_usd > 0
    Run a query to Download Data