headitmanagernumber of Ethereum unique wallets in 2021
    Updated 2022-03-13
    select count(distinct from_address),month(block_timestamp::date) as date
    from ethereum.transactions
    where SUCCESS='TRUE' and year(block_timestamp::date)=2021
    group by date
    Run a query to Download Data