select seller_address,
count (distinct tx_hash) as Sales_Count,
count (distinct tokenid) as Tokens_Count,
sum (price_usd) as Total_USD_Volume
from ethereum.core.ez_nft_sales
where nft_address = '0x60bb1e2aa1c9acafb4d34f71585d7e959f387769'
and price_usd > 0
group by 1
order by 4 DESC
limit 10