select
date_trunc('day', block_timestamp) as block_day,
sum(amount) as total_sushi_added
from ethereum.udm_events
where to_address = '0x8798249c2e607446efb7ad49ec89dd1865ff4272'
and block_day >= '2021-11-1' and block_day <= '2021-12-27'
group by 1
order by 1