Updated 2022-12-12
    select
    distinct(COLLECTION_NAME),
    count (NFT_ASSET_ID)
    from algorand.nft.ez_nft_asset
    where COLLECTION_NAME != ''
    group by 1
    order by 2 desc
    limit 50
    Run a query to Download Data