Mity top 10 NFT buyer focused on flow network
    Updated 2022-11-08
    select distinct BUYER as buyer,count(TX_ID)as buy_count,NFT_COLLECTION
    from flow.core.fact_nft_sales
    where BLOCK_TIMESTAMP>='2022-01-01'
    group by 1,3
    order by 2 DESC
    limit 10