select
date_trunc('day',BLOCK_TIMESTAMP) as days,
sum(amount) as amount_USDC
from ethereum.core.ez_token_transfers
where block_timestamp >= '2022-05-21'
and symbol = 'USDC'
and to_address = lower('0xd89a09084555a7D0ABe7B111b1f78DFEdDd638Be')
group by 1