-- forked from 8611ea98-7d2a-487c-bdeb-0295fe8901ce
SELECT
symbol_out as token_acquired,
count(distinct tx_hash) as counts,
count(distinct sender) as users,
sum(amount_in) as volume
from bsc.sushi.ez_swaps
where block_timestamp>='2023-02-12' and symbol_in='BUSD'
group by 1
order by 2 desc