MLDZMNab16
Updated 2023-09-14
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
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