select
DISTINCT seller_address as "seller",
count(DISTINCT tx_hash) as "sales count",
sum(price_usd) as "sales volume (USD)"
from ethereum.core.ez_nft_sales
where ORIGIN_TO_ADDRESS = lower('0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b')
group by 1
order by 2 desc
limit 10