Wikist-oA67h0Gritnova L4 d.2 - Transactions volume for Crypto Punks - si
    Updated 2023-02-07
    select
    date(block_timestamp) as date,
    count(distinct tx_hash) as tx_count,
    count(distinct buyer_address) as active_buyers_wallets,
    sum(price_usd) as usd_volume
    from ethereum.core.ez_nft_sales
    where project_name = 'cryptopunks'
    group by date
    Run a query to Download Data