SandeshTx_types Cerastes Upgrade
    Updated 2025-03-20
    select
    date_trunc('day',block_timestamp) as block_date
    , case
    when tx_type =0 then 'Legacy'
    when tx_type = 2 then 'DynamicFee'
    when tx_type =100 then 'Sponsored'
    when tx_type = 3 then 'AccessList'
    when tx_type = 1 then 'Typed'
    else 'other'
    end as transaction_type
    , count(tx_hash) as txns
    , sum (tx_fee) as fees
    from ronin.core.fact_transactions
    where block_timestamp>='2025-03-01'
    group by 1,2
    Last run: about 1 month ago
    BLOCK_DATE
    TRANSACTION_TYPE
    TXNS
    FEES
    1
    2025-03-17 00:00:00.000Legacy6347011009.707381558
    2
    2025-03-15 00:00:00.000Sponsored683314.767242105
    3
    2025-03-14 00:00:00.000DynamicFee25332228.55849343
    4
    2025-03-13 00:00:00.000DynamicFee20438186.562244115
    5
    2025-03-05 00:00:00.000Sponsored824317.901056859
    6
    2025-03-16 00:00:00.000Sponsored656514.510506248
    7
    2025-03-08 00:00:00.000DynamicFee20000126.526727433
    8
    2025-03-17 00:00:00.000AccessList10.000441
    9
    2025-03-04 00:00:00.000Sponsored677415.108998373
    10
    2025-03-08 00:00:00.000Typed1541.584619165
    11
    2025-03-15 00:00:00.000DynamicFee26936227.250152906
    12
    2025-03-18 00:00:00.000DynamicFee4224031011.57344666
    13
    2025-03-14 00:00:00.000Sponsored694115.513527484
    14
    2025-03-04 00:00:00.000Legacy6519811810.600094981
    15
    2025-03-09 00:00:00.000DynamicFee26293167.129773322
    16
    2025-03-02 00:00:00.000DynamicFee21606165.787715753
    17
    2025-03-06 00:00:00.000DynamicFee23743136.471459725
    18
    2025-03-19 00:00:00.000DynamicFee4797901179.743914333
    19
    2025-03-01 00:00:00.000Legacy8566611871.93258682
    20
    2025-03-16 00:00:00.000Legacy7430001407.767397298
    80
    4KB
    2s