m0rt3zaCryptopunks - Monthly sales last year
    Updated 2022-08-31
    SELECT date_trunc(MONTH, block_timestamp) as month,
    sum(price_usd) as usd_volume,
    count(DISTINCT tx_hash) as sales_volume
    FROM ethereum.core.ez_nft_sales
    WHERE project_name in ('cryptopunks', 'Wrapped CryptoPunks V1', 'wrapped cryptopunks')
    AND block_timestamp > CURRENT_DATE - 365
    GROUP BY month
    ORDER BY month DESC

    Run a query to Download Data