shadilTotal number of Cryptopunk NFT buyers in over time
    Updated 2022-08-29
    select count (distinct buyer_address) as total_wallets,
    date_trunc('day', block_timestamp) as date_time
    from ethereum.core.ez_nft_sales ens
    where ens.project_name ilike 'CRYPTOPUNKS%'
    and ens.event_type in ('redeem', 'sale')
    group by date_time
    Run a query to Download Data