i_danTotal Tx & Users Monthly
    Updated 8 days ago
    SELECT
    date_trunc('month', block_timestamp) AS month
    , COUNT(DISTINCT tx_hash) AS transactions
    , SUM(transactions) OVER (ORDER BY month) AS total_transactions
    , COUNT(tx_hash) AS tx_all
    , SUM(tx_all) OVER (ORDER BY month) AS total_tx_all
    , COUNT(DISTINCT from_address) AS users

    FROM base.core.fact_transactions
    GROUP BY 1
    ORDER BY 1 DESC
    --LIMIT 10
    Last run: 8 days ago
    MONTH
    TRANSACTIONS
    TOTAL_TRANSACTIONS
    TX_ALL
    TOTAL_TX_ALL
    USERS
    1
    2025-04-01 00:00:00.00096387492200704407963874922007044071058066
    2
    2025-03-01 00:00:00.0002323373182191065658232337318219106565819917553
    3
    2025-02-01 00:00:00.0002086068671958728340208606867195872834016732251
    4
    2025-01-01 00:00:00.0003310528271750121473331052827175012147322152491
    5
    2024-12-01 00:00:00.0002621055361419068646262105536141906864623447611
    6
    2024-11-01 00:00:00.0002213926621156963110221392662115696311018680731
    7
    2024-10-01 00:00:00.00018162048993557044818162048993557044823086416
    8
    2024-09-01 00:00:00.00013890125975394995913890125975394995922295549
    9
    2024-08-01 00:00:00.00012212356261504870012212356261504870014153297
    10
    2024-07-01 00:00:00.00011111230849292513811111230849292513811511048
    11
    2024-06-01 00:00:00.00090693463381812830906934633818128307393976
    12
    2024-05-01 00:00:00.00067203902291119367672039022911193673963929
    13
    2024-04-01 00:00:00.00082932613223915465829326132239154653946396
    14
    2024-03-01 00:00:00.00035413261140982852354132611409828523109297
    15
    2024-02-01 00:00:00.00013457390105569591134573901055695911192037
    16
    2024-01-01 00:00:00.00010993591921122011099359192112201886219
    17
    2023-12-01 00:00:00.000921086881118610921086881118610846547
    18
    2023-11-01 00:00:00.000867982071907742867982071907742691634
    19
    2023-10-01 00:00:00.000164582226322792216458222632279221283516
    20
    2023-09-01 00:00:00.00026056971467697002605697146769700827756
    23
    2KB
    555s