permaryTop 10 games txn on Ronin
    Updated 4 days ago
    SELECT
    dl.label AS game_name,
    COUNT(*) AS total_transactions,
    count (distinct from_address) as Users
    FROM ronin.core.fact_transactions t
    LEFT JOIN ronin.core.dim_labels dl
    ON t.to_address = dl.address
    WHERE t.block_timestamp >= '2025-01-01'
    AND t.block_timestamp < '2025-04-01'
    AND dl.label_type = 'games' -- Filtering for game contracts
    GROUP BY 1
    ORDER BY 2 DESC
    LIMIT 10;


    Last run: 4 days ago
    GAME_NAME
    TOTAL_TRANSACTIONS
    USERS
    1
    pixels224180691054021
    2
    axie16438910387002
    3
    the machines arena9017058172457
    4
    apeiron4255882169140
    5
    kalodium39643292466
    6
    wild forest2775004397174
    7
    axie infinity157600060385
    8
    tanto kit57542485540
    9
    reward multiplier67711566
    10
    forkast22281053
    10
    289B
    7s