Yousefi_1994 Amount of USDC deposit into PoolTogether per user in the last month
    Updated 2022-06-22
    select
    origin_from_address as address,
    sum(amount) as amount_of_usdc
    from ethereum.core.ez_token_transfers
    where to_address = '0xd89a09084555a7d0abe7b111b1f78dfeddd638be'
    and contract_address = '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
    and origin_function_signature = '0xffaad6a5'
    and block_timestamp::date >= current_date - 30
    group by address
    order by amount_of_usdc desc

    Run a query to Download Data