MLDZMNfNFT8
Updated 2022-09-17
9
1
2
3
4
5
6
7
8
9
›
⌄
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