ML6Top 10 Number of Sellers
    Updated 2022-09-05
    select count(1),seller
    from flow.core.ez_nft_sales as s inner join flow.core.dim_allday_metadata as m
    on s.nft_id=m.nft_id
    where s.NFT_COLLECTION='A.e4cf4bdc1751c65d.AllDay'
    group by 2
    order by 1 DESC
    limit 10
    Run a query to Download Data