Eman-RazTop 20 SAND Buyers based Purchase Volume
    Updated 2023-04-20
    select origin_from_address as buyer, sum(amount_out) as "Purchase Volume", sum(amount_out_usd) as "Purchase Volume (USD)"
    from ethereum.core.ez_dex_swaps
    where symbol_out='SAND' and block_timestamp::date>='2021-01-01'
    group by 1
    order by 2 desc
    limit 20
    Run a query to Download Data