MLDZMNfNFT8
    Updated 2022-09-17
    select
    Label as NFT_project,
    count(distinct BUYER_ADDRESS) as purchasers,
    sum(PRICE_USD) as volume
    from ethereum.core.ez_nft_sales x join ethereum.core.dim_labels y on x.NFT_ADDRESS=y.ADDRESS
    where Price_USD is not NULL and BLOCK_TIMESTAMP >= '2022-05-01' and PLATFORM_NAME='opensea'
    group by 1
    order by 3 desc
    limit 10
    Run a query to Download Data