Hossein2023-07-09 03:44 PM
    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 '0x2b2c81e08f1af8835a78bb2a90ae924ace0ea4be' in (token_in, token_out)
    and amount_in_usd > 0
    Run a query to Download Data