ML6Number of wallets in past 2 months per day 1
    Updated 2022-06-17
    select count(distinct eth_from_address),to_date(block_timestamp) as date
    from
    ethereum.core.ez_eth_transfers
    where
    eth_to_address='0xabea9132b05a70803a4e85094fd0e1800777fbef'
    and date > getdate() - interval '60 days'
    group by 2
    Run a query to Download Data