Eman-RazNumber of Transactions Over Time
    Updated 2025-02-03
    select date_trunc('{{Time_Frame}}',block_timestamp) as "Date",
    count(distinct tx_hash) as "Txns Count", status as "Transaction Status"
    from aurora.core.fact_transactions
    where block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}'
    and status<>'Series 3'
    group by 1, 3
    order by 1
    Last run: 3 months ago
    Date
    Txns Count
    Transaction Status
    1
    2024-01-01 00:00:00.00043654FAIL
    2
    2024-01-01 00:00:00.000446266SUCCESS
    3
    2024-02-01 00:00:00.000380185SUCCESS
    4
    2024-02-01 00:00:00.00024667FAIL
    5
    2024-03-01 00:00:00.00032597FAIL
    6
    2024-03-01 00:00:00.000434634SUCCESS
    7
    2024-04-01 00:00:00.000386823SUCCESS
    8
    2024-04-01 00:00:00.00010901FAIL
    9
    2024-05-01 00:00:00.0006505FAIL
    10
    2024-05-01 00:00:00.000382142SUCCESS
    11
    2024-06-01 00:00:00.0001412476SUCCESS
    12
    2024-06-01 00:00:00.0005243FAIL
    13
    2024-07-01 00:00:00.0007240FAIL
    14
    2024-07-01 00:00:00.0001060921SUCCESS
    15
    2024-08-01 00:00:00.00016778FAIL
    16
    2024-08-01 00:00:00.000599865SUCCESS
    17
    2024-09-01 00:00:00.0004960FAIL
    18
    2024-09-01 00:00:00.000471702SUCCESS
    19
    2024-10-01 00:00:00.000484786SUCCESS
    20
    2024-10-01 00:00:00.0003853FAIL
    28
    1KB
    2s