MLDZMNab16
    Updated 2023-09-14
    select
    TOKENID as mint,
    count(distinct tx_hash) as sale_no,
    count(distinct BUYER_ADDRESS) as buyers
    --sum(PRICE) as volume,
    --avg(price_USD) as volume_usd
    from ethereum.core.ez_nft_sales
    where price_usd is not NULL
    and CREATOR_FEE_USD is not null
    and PROJECT_NAME='art blocks'
    group by 1
    order by 2 desc limit 5
    Run a query to Download Data