animatorUntitled Query
    Updated 2022-06-15
    Select block_timestamp ::date as day,
    Sum (AMOUNT) as eth_deposited,
    Count (distinct ETH_FROM_ADDRESS) as wallets
    From ethereum.core.ez_eth_transfers
    Where
    ETH_TO_ADDRESS = '0xabea9132b05a70803a4e85094fd0e1800777fbef'
    And block_timestamp >'2022-4-17'
    Group by 1
    order by day
    Run a query to Download Data