Eman-RazDistribution of Tokens Purchased with SAND (SAND -> Tokens)
    Updated 2023-04-19
    select sum(amount_in_usd) as "Volume (USD)", sum(amount_in) as "Volume", symbol_out
    from ethereum.core.ez_dex_swaps
    where symbol_in='SAND' and block_timestamp::date>='2021-01-01'
    group by 3
    order by 1 desc
    limit 40
    Run a query to Download Data