select
PROJECT_NAME as collection
,count(distinct SELLER_ADDRESS) as sellers
--,count(distinct BUYER_ADDRESS) as buyers
--,count(distinct TX_HASH) as sell_count
,count(distinct TOKENID) as nft_sold
--,sum(PRICE) as volume
from bsc.nft.ez_nft_sales
where PROJECT_NAME is not null
group by 1
order by 2 desc
limit 10