--0x4200000000000000000000000000000000000042
select
sum(amount_in_usd) as Total_bought_optimism,
origin_from_address as user
from optimism.sushi.ez_swaps
where block_timestamp::date >= '2022-11-01' and token_in = '0x4200000000000000000000000000000000000042'
group by 2
order by 1 DESC
limit 10