mehrancrypto-dxoepqUntitled Query
    Updated 2022-08-31
    with tx1 as (
    SELECT ADDRESS
    from ethereum.core.dim_labels
    where LABEL_TYPE = 'nft'
    and LABEL ilike '%cryptopunk%'
    )
    SELECT *
    from tx1 B , ethereum.core.ez_nft_sales A
    where NFT_ADDRESS = ADDRESS
    and BUYER_ADDRESS <> '0x0000000000000000000000000000000000000000'
    and (CURRENCY_SYMBOL = 'ETH'
    or CURRENCY_SYMBOL = 'WETH')
    and PRICe_USD is not null
    order by PRICe_USD desc
    limit 100


    Run a query to Download Data