rezarwzTotal TXs & Cumulative Trend
    Updated 5 days ago
    SELECT
    date_trunc('{{interval}}', block_Timestamp) as date,
    count(DISTINCT tx_hash) as "# of Txs",
    sum("# of Txs") over (
    ORDER by
    date
    ) as "Total Txs"
    FROM
    blast.core.fact_Transactions
    where block_timestamp::date is not null
    GROUP by
    1
    order by 1 asc
    Last run: 5 days agoAuto-refreshes every 24 hours
    DATE
    # of Txs
    Total Txs
    1
    2024-02-01 00:00:00.000613905613905
    2
    2024-03-01 00:00:00.0001197282912586734
    3
    2024-04-01 00:00:00.0001495614527542879
    4
    2024-05-01 00:00:00.0002075024148293120
    5
    2024-06-01 00:00:00.0002753163075824750
    6
    2024-07-01 00:00:00.0002120191097026660
    7
    2024-08-01 00:00:00.00032148954129175614
    8
    2024-09-01 00:00:00.00017958398147134012
    9
    2024-10-01 00:00:00.00020232038167366050
    10
    2024-11-01 00:00:00.00016576892183942942
    11
    2024-12-01 00:00:00.00013908441197851383
    12
    2025-01-01 00:00:00.00013501990211353373
    13
    2025-02-01 00:00:00.00010577341221930714
    14
    2025-03-01 00:00:00.00016662216238592930
    15
    2025-04-01 00:00:00.0001375579239968509
    15
    695B
    566s