permaryMonthly ledger operations
    Updated 5 days ago
    select
    date_trunc('month', block_timestamp) as month,
    sum(operation_count) as total_ledger_operations
    from stellar.core.fact_ledgers
    group by month
    order by month;

    Last run: 5 days ago
    MONTH
    TOTAL_LEDGER_OPERATIONS
    1
    2024-01-01 00:00:00.000282404889
    2
    2024-02-01 00:00:00.000230928314
    3
    2024-03-01 00:00:00.000234839080
    4
    2024-04-01 00:00:00.000256777575
    5
    2024-05-01 00:00:00.000259268555
    6
    2024-06-01 00:00:00.000226940107
    7
    2024-07-01 00:00:00.000225594986
    8
    2024-08-01 00:00:00.000214018639
    9
    2024-09-01 00:00:00.000210741621
    10
    2024-10-01 00:00:00.000189024013
    11
    2024-11-01 00:00:00.000202304180
    12
    2024-12-01 00:00:00.000165954547
    13
    2025-01-01 00:00:00.000150392608
    14
    2025-02-01 00:00:00.000138418703
    15
    2025-03-01 00:00:00.00076910960
    15
    570B
    2s