i_danBaseChain: Monthly Total Transaction Count Since Launch
    Updated 1 day ago
    SELECT
    DATE_TRUNC('month'
    , block_timestamp) AS month
    , COUNT(*) AS transactions_per_month
    , SUM(transactions_per_month) OVER (ORDER BY month) AS cummulative_tx
    FROM
    base.core.fact_transactions
    GROUP BY
    DATE_TRUNC('month'
    , block_timestamp)
    ORDER BY
    1 DESC
    Last run: 1 day ago
    MONTH
    TRANSACTIONS_PER_MONTH
    CUMMULATIVE_TX
    1
    2025-04-01 00:00:00.000153904532206456111
    2
    2025-03-01 00:00:00.0002323373182191065658
    3
    2025-02-01 00:00:00.0002086068671958728340
    4
    2025-01-01 00:00:00.0003310528271750121473
    5
    2024-12-01 00:00:00.0002621055361419068646
    6
    2024-11-01 00:00:00.0002213926621156963110
    7
    2024-10-01 00:00:00.000181620489935570448
    8
    2024-09-01 00:00:00.000138901259753949959
    9
    2024-08-01 00:00:00.000122123562615048700
    10
    2024-07-01 00:00:00.000111112308492925138
    11
    2024-06-01 00:00:00.00090693463381812830
    12
    2024-05-01 00:00:00.00067203902291119367
    13
    2024-04-01 00:00:00.00082932613223915465
    14
    2024-03-01 00:00:00.00035413261140982852
    15
    2024-02-01 00:00:00.00013457390105569591
    16
    2024-01-01 00:00:00.0001099359192112201
    17
    2023-12-01 00:00:00.000921086881118610
    18
    2023-11-01 00:00:00.000867982071907742
    19
    2023-10-01 00:00:00.0001645822263227922
    20
    2023-09-01 00:00:00.0002605697146769700
    23
    1KB
    170s