nimasadjadiCryptopunk Sale prices
    Updated 2022-08-30
    SELECT
    BLOCK_TIMESTAMP,
    PRICE AS PRICE_ETH,
    PRICE_USD
    FROM ethereum.core.ez_nft_sales
    WHERE project_name LIKE 'cryptopunks'
    AND NOT PRICE_USD is NULL
    AND block_timestamp > '2022-06-01'
    AND not price_usd = 0
    ORDER BY 1


    Run a query to Download Data