mlhdaily USDC deposits to pooltogether in last month
    Updated 2022-06-21
    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
    Run a query to Download Data