select
seller_address as Top_10_addresses,
count(price_usd) AS price_usd
from ethereum.core.ez_nft_sales left outer join ethereum.core.dim_labels
on nft_address = address
where label like 'cryptopunks'
and price_usd is not null
group by 1
order by 2 DESC
limit 10