permaryTransaction breakdown
    Updated 4 days ago
    SELECT
    DATE_TRUNC('month', t.block_timestamp) AS month,
    dl.label_type AS transaction_category,
    COUNT(*) AS total_transactions
    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 IS NOT NULL -- Exclude transactions with no label
    GROUP BY 1, 2
    ORDER BY 1, 3 DESC;



    Last run: 4 days ago
    MONTH
    TRANSACTION_CATEGORY
    TOTAL_TRANSACTIONS
    1
    2025-01-01 00:00:00.000games24029955
    2
    2025-01-01 00:00:00.000token1013226
    3
    2025-01-01 00:00:00.000nft534513
    4
    2025-01-01 00:00:00.000dex200554
    5
    2025-01-01 00:00:00.000cex26882
    6
    2025-01-01 00:00:00.000operator2
    7
    2025-02-01 00:00:00.000games19875199
    8
    2025-02-01 00:00:00.000token885503
    9
    2025-02-01 00:00:00.000nft408234
    10
    2025-02-01 00:00:00.000dex125775
    11
    2025-02-01 00:00:00.000dapp78977
    12
    2025-02-01 00:00:00.000cex30090
    13
    2025-03-01 00:00:00.000games17124525
    14
    2025-03-01 00:00:00.000token962004
    15
    2025-03-01 00:00:00.000nft375447
    16
    2025-03-01 00:00:00.000dex112667
    17
    2025-03-01 00:00:00.000cex22383
    18
    2025-03-01 00:00:00.000dapp11282
    19
    2025-03-01 00:00:00.000operator9
    19
    796B
    4s