Abolfazl_771025Top 10 buyer by count of buy
    Updated 2022-12-09
    select
    DISTINCT BUYER_ADDRESS as buyers,
    count (TX_HASH) as "sales count",
    sum(price_usd) as "sales volume (USD)"
    from ethereum.core.ez_nft_sales
    where PLATFORM_NAME='blur'
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data