Updated 2022-08-31
    with tx1 as (
    SELECT ADDRESS
    from ethereum.core.dim_labels
    where LABEL_TYPE = 'nft'
    and LABEL ilike '%cryptopunk%'
    )
    SELECT BLOCK_TIMESTAMP::date as daily , COUNT(*) as tx_num ,
    sum(A.PRICe) as volume ,sum(A.PRICe_USD) as usd , count(DISTINCT BUYER_ADDRESS) as buyers , count(DISTINCT SELLER_ADDRESS) as sellers
    from tx1 B , ethereum.core.ez_nft_sales A
    where NFT_ADDRESS = ADDRESS
    and BLOCK_TIMESTAMP::date >= '2021-01-01'
    and BUYER_ADDRESS <> '0x0000000000000000000000000000000000000000'
    and (CURRENCY_SYMBOL = 'ETH'
    or CURRENCY_SYMBOL = 'WETH')
    and SELLER_ADDRESS <> '0x9b5a5c5800c91af9c965b3bf06ad29caa6d00f9b'
    GROUP by 1

    Run a query to Download Data