MLDZMNab10
    Updated 2023-09-14
    select
    distinct BUYER_ADDRESS as buyer,
    count(distinct tx_hash) as sale_no,
    sum(PRICE) as volume,
    sum(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 4 desc limit 10
    Run a query to Download Data