rezarwzTransactions & Cumulative Transactions
    Updated 2025-03-28
    SELECT
    date_trunc('{{Time_Frame}}', block_timestamp) as Date,
    COUNT(tx_hash) as transaction_count,
    SUM(transaction_count) OVER (
    ORDER BY
    Date asc
    ) AS cumulative_transaction_count
    FROM
    swell.core.fact_transactions
    where
    TX_SUCCEEDED = TRUE
    group by
    1
    Last run: 17 days ago
    DATE
    TRANSACTION_COUNT
    CUMULATIVE_TRANSACTION_COUNT
    1
    2025-01-19 00:00:00.000487222477726
    2
    2024-11-30 00:00:00.00043200157571
    3
    2025-03-14 00:00:00.000465095096673
    4
    2025-02-13 00:00:00.000484803696107
    5
    2025-02-17 00:00:00.000484693890729
    6
    2024-11-27 00:00:00.0002764827648
    7
    2025-03-02 00:00:00.000485544515203
    8
    2025-01-10 00:00:00.000474642050394
    9
    2025-03-22 00:00:00.000462015469307
    10
    2025-02-16 00:00:00.000483433842260
    11
    2025-02-04 00:00:00.000498623262168
    12
    2024-12-20 00:00:00.000476981064213
    13
    2025-02-15 00:00:00.000490403793917
    14
    2025-03-15 00:00:00.000459485142621
    15
    2025-03-19 00:00:00.000472985329607
    16
    2025-02-27 00:00:00.000488304370318
    17
    2025-02-23 00:00:00.000469824175232
    18
    2025-03-03 00:00:00.000493824564585
    19
    2024-12-06 00:00:00.00045379425138
    20
    2024-12-05 00:00:00.00045582379759
    ...
    122
    5KB
    2s