kingharald-ethTop 10 users with the highest number of sales
    Updated 2022-09-13
    select seller,
    sum(price) as total_price,
    count(*) as sales_num
    from flow.core.ez_nft_sales as a
    join (select nft_collection, nft_id from flow.core.dim_allday_metadata) b
    on (a.nft_id = b.nft_id and a.nft_collection = b.nft_collection)
    where a.tx_succeeded = 'TRUE'
    and current_date >= a.block_timestamp::date
    group by seller
    order by sales_num desc
    limit 10
    Run a query to Download Data