select count(distinct origin_from_address) as Users,
date_trunc('month',block_timestamp) as month,
to_char(date_trunc('month',block_timestamp),'mon') as month_order
from optimism.defi.ez_dex_swaps
where platform like 'sushiswap%'
and block_timestamp::date > '2023-12-31'
group by month,month_order
order by month