select
tokenid,
count (distinct tx_hash) as sales_count,
sum (price_usd) as total_usd_volume
from optimism.core.ez_nft_sales
where nft_address = lower('0x2831Aa51DE4E3bB318Cf01eAcd8a7FdbB440ac3A')
and price_usd > 0
group by 1
order by 2 DESC
limit 10