permaryTop 10 nft collections
    Updated 2025-04-02
    SELECT
    COALESCE (nt.name,nt.contract_address )AS nft_collection,
    COUNT(*) AS total_nft_transfers,
    COUNT(DISTINCT nt.from_address) + COUNT(DISTINCT nt.to_address) AS total_unique_users,
    -- SUM(nt.amount_usd) AS total_nft_volume_usd
    FROM ronin.nft.ez_nft_transfers nt
    LEFT JOIN ronin.core.dim_labels dl
    ON nt.contract_address = dl.address -- Categorizing by collection name
    WHERE nt.block_timestamp >= '2025-01-01'
    AND nt.block_timestamp < '2025-04-01'
    GROUP BY 1
    ORDER BY 2 DESC;
    limit 10




    Last run: 12 days ago
    NFT_COLLECTION
    TOTAL_NFT_TRANSFERS
    TOTAL_UNIQUE_USERS
    1
    Pixel Dungeons Items26006702246211
    2
    Axie2200773389639
    3
    Axie Consumable Item121469546378
    4
    Wild Forest Units74699015118
    5
    PHZM51009332915
    6
    Axie Material50301045028
    7
    Nyang Kit38678734986
    8
    Jin on a Sailing Ship325224325225
    9
    Ronke on a Sailing Ship270357270358
    10
    Ragnarok Monsters18151211454
    10
    337B
    6s