kasadeghTotal number of depositors per day
    Updated 2022-06-29
    select date(block_timestamp) as "date",count(distinct eth_from_address) "Total number of depositors "
    from
    ethereum.core.ez_eth_transfers
    where
    eth_to_address = '0xae0ee0a63a2ce6baeeffe56e7714fb4efe48d419'
    group by "date"
    order by "date"

    Run a query to Download Data