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