BlockTracker% of expressed vs. regular transactions
    Updated 2025-01-12
    with base as (
    select
    id,
    created_at,
    amount,
    INITCAP(call : chain) as src_chain,
    INITCAP(call : returnValues : destinationChain) as dest_Chain,
    call : returnValues : symbol as symbol,
    lower(coalesce (call : transaction : to , call : returnValues : destinationContractAddress)) as contract,
    call : transaction : "from" as sender,
    SIMPLIFIED_STATUS,
    status,
    time_spent
    from axelar.axelscan.fact_gmp

    )

    select
    date_trunc('week', created_at) as date,
    case when time_spent : call_express_executed is not null then 'expressed' else 'regular' end as boost,
    src_chain,
    count(id) as n_txns
    from base
    where contract = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    group by 1 , 2 ,3



    Last run: 3 months ago
    DATE
    BOOST
    SRC_CHAIN
    N_TXNS
    1
    2023-12-18 00:00:00.000expressedOsmosis1271
    2
    2024-06-24 00:00:00.000expressedLinea886
    3
    2024-07-08 00:00:00.000regularScroll182
    4
    2024-09-09 00:00:00.000expressedMoonbeam210
    5
    2024-10-21 00:00:00.000regularPolygon207
    6
    2023-05-15 00:00:00.000expressedFantom551
    7
    2024-02-19 00:00:00.000expressedOsmosis2170
    8
    2024-02-19 00:00:00.000expressedAvalanche454
    9
    2024-04-15 00:00:00.000expressedPolygon1848
    10
    2024-04-15 00:00:00.000expressedKujira65
    11
    2024-06-17 00:00:00.000expressedMantle80
    12
    2024-09-23 00:00:00.000expressedBinance1022
    13
    2024-09-23 00:00:00.000regularFantom180
    14
    2024-10-28 00:00:00.000regularOsmosis587
    15
    2024-11-25 00:00:00.000regularLava107
    16
    2023-06-26 00:00:00.000expressedAvalanche536
    17
    2023-08-07 00:00:00.000regularArbitrum177
    18
    2024-01-08 00:00:00.000regularEthereum1063
    19
    2024-07-22 00:00:00.000expressedMantle157
    20
    2024-07-08 00:00:00.000regularCelestia2
    ...
    3478
    177KB
    12s