Afonso_DiazSuccess Rate Overtime
    Updated 4 days ago
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    from_address as user,
    tx_fee,
    tx_succeeded
    from
    mezo.testnet.fact_transactions
    )

    select
    date_trunc('day', block_timestamp) as date,
    count(distinct tx_hash) as transactions,
    (count(distinct iff(tx_succeeded, tx_hash, null)) / transactions) * 100 as success_rate
    from
    main
    group by 1
    order by 1


    Last run: 4 days ago
    DATE
    TRANSACTIONS
    SUCCESS_RATE
    1
    2025-03-28 00:00:00.0006900
    2
    2025-03-29 00:00:00.000246961.5634
    3
    2025-03-30 00:00:00.000333399.7
    4
    2025-03-31 00:00:00.000142699.5792
    5
    2025-04-01 00:00:00.000194898.768
    6
    2025-04-02 00:00:00.000262997.2233
    7
    2025-04-03 00:00:00.000333797.4228
    8
    2025-04-04 00:00:00.000522497.7412
    9
    2025-04-05 00:00:00.000456397.918
    10
    2025-04-06 00:00:00.000453298.2789
    11
    2025-04-07 00:00:00.000457898.0341
    12
    2025-04-08 00:00:00.0001217997.3397
    13
    2025-04-09 00:00:00.0001336496.8797
    14
    2025-04-10 00:00:00.0001179297.6425
    15
    2025-04-11 00:00:00.0001047097.9465
    16
    2025-04-12 00:00:00.0001180097.822
    17
    2025-04-13 00:00:00.000935498.7706
    18
    2025-04-14 00:00:00.0001212298.6306
    19
    2025-04-15 00:00:00.0001230098.0325
    20
    2025-04-16 00:00:00.0001447897.9417
    35
    1KB
    1s