adriaparcerisasflow tx after axelar 1.2
    Updated 2 days ago
    with txs as (
    select distinct tx_id, block_timestamp, tx_succeeded
    from flow.core.fact_transactions
    UNION
    select distinct tx_hash as tx_id, block_timestamp, tx_succeeded
    from flow.core_evm.fact_transactions
    )
    SELECT
    trunc(block_timestamp,'day') as month,
    --case when block_timestamp<='2025-01-22' then 'Before Axelar Integration' else 'After Axelar Integration' end as period,
    case when tx_succeeded='true' then 'Succeeded' else 'Failed' end as type,
    count(distinct tx_id) as total_transactions
    from txs
    where month<trunc(current_date,'day') and month>='2025-01-01' --and tx_succeeded='true'
    group by 1,2
    order by 1 asc



    Last run: 2 days ago
    MONTH
    TYPE
    TOTAL_TRANSACTIONS
    1
    2025-01-01 00:00:00.000Succeeded222193
    2
    2025-01-01 00:00:00.000Failed12981
    3
    2025-01-02 00:00:00.000Succeeded245677
    4
    2025-01-02 00:00:00.000Failed13726
    5
    2025-01-03 00:00:00.000Succeeded230655
    6
    2025-01-03 00:00:00.000Failed12185
    7
    2025-01-04 00:00:00.000Succeeded235336
    8
    2025-01-04 00:00:00.000Failed10889
    9
    2025-01-05 00:00:00.000Failed132408
    10
    2025-01-05 00:00:00.000Succeeded222578
    11
    2025-01-06 00:00:00.000Failed27554
    12
    2025-01-06 00:00:00.000Succeeded204752
    13
    2025-01-07 00:00:00.000Succeeded258813
    14
    2025-01-07 00:00:00.000Failed7979
    15
    2025-01-08 00:00:00.000Failed9429
    16
    2025-01-08 00:00:00.000Succeeded245214
    17
    2025-01-09 00:00:00.000Succeeded238209
    18
    2025-01-09 00:00:00.000Failed9169
    19
    2025-01-10 00:00:00.000Failed8887
    20
    2025-01-10 00:00:00.000Succeeded180176
    ...
    332
    15KB
    67s