MostafaUntitled Query
    Updated 2023-09-05
    select sum(amount_out_usd) as "Volume (USD)", symbol_in
    from ethereum.core.ez_dex_swaps
    where token_out='0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce'
    and amount_out_usd is not null
    and symbol_in is not null
    group by 2
    order by 1 desc
    limit 40
    Run a query to Download Data