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