ML6Number of wallets in past 2 months per day 2
    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='0x99c9fc46f92e8a1c0dec1b1747d010903e884be1'
    and date > getdate() - interval '60 days'
    group by 2
    Run a query to Download Data