rezarwzTransactions & Cumulative Transactions
    Updated 1 hour ago
    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: about 1 hour ago
    DATE
    TRANSACTION_COUNT
    CUMULATIVE_TRANSACTION_COUNT
    1
    2025-04-26 00:00:00.000606857148676
    2
    2024-12-20 00:00:00.000476981064213
    3
    2025-04-25 00:00:00.000475587087991
    4
    2025-02-04 00:00:00.000498623262168
    5
    2025-03-02 00:00:00.000485544515203
    6
    2025-03-22 00:00:00.000462015469307
    7
    2025-02-16 00:00:00.000483433842260
    8
    2025-01-10 00:00:00.000474642050394
    9
    2025-01-19 00:00:00.000487222477726
    10
    2024-11-30 00:00:00.00043200157571
    11
    2025-03-14 00:00:00.000465095096673
    12
    2025-02-15 00:00:00.000490403793917
    13
    2025-03-15 00:00:00.000459485142621
    14
    2025-03-19 00:00:00.000472985329607
    15
    2025-04-12 00:00:00.000467636474084
    16
    2025-04-16 00:00:00.000478246662623
    17
    2025-03-31 00:00:00.000483215895958
    18
    2024-11-27 00:00:00.0002764827648
    19
    2025-02-13 00:00:00.000484803696107
    20
    2025-02-17 00:00:00.000484693890729
    ...
    152
    6KB
    2s