Abolfazl_771025Top 10 user by count of sale
    Updated 2022-12-21
    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
    Run a query to Download Data