Abolfazl_771025top 10 seller by volume (USD) of sales
    Updated 2022-10-14
    select
    distinct seller_address as seller,
    count(distinct tx_hash) as "sales count",
    sum(price_usd) as "sales volume (USD)"
    from optimism.core.ez_nft_sales
    where nft_address = lower('0xB8Df6Cc3050cC02F967Db1eE48330bA23276A492')
    and origin_from_address != seller_address
    group by 1
    order by 3 DESC
    limit 10
    Run a query to Download Data