Eman-RazTransaction Fee per Year
    Updated 2024-12-30
    select date_trunc('year',block_timestamp) as "Date",
    round(avg(fee/pow(10,6)),4) as "Avg",
    round(median(fee/pow(10,6)),4) as "Median",
    round(sum(fee/pow(10,6)),2) as "Total Fee"
    from axelar.core.fact_transactions
    where fee_denom='uaxl' and tx_succeeded='true'
    group by 1
    order by 1
    Last run: 3 months ago
    Date
    Avg
    Median
    Total Fee
    1
    2021-01-01 00:00:00.0000.02170.0218332.52
    2
    2022-01-01 00:00:00.0000.01280.0053253154.46
    3
    2023-01-01 00:00:00.0000.01550.01411400990.22
    4
    2024-01-01 00:00:00.0000.01410.00712297194.69
    5
    2025-01-01 00:00:00.0000.01120.0065169695.12
    5
    260B
    151s