ArioBase and Priority Fees
    Updated 2025-03-25
    with non_vote as (select
    date_trunc(day, block_timestamp) as day,

    sum(case
    when fee/ARRAY_SIZE(signers)/1e9>0.000005 then 0.000005*ARRAY_SIZE(signers)
    else fee/1e9 end)
    as non_vote_txn_base,
    sum(non_vote_txn_base) over(order by day) as CUM_Base_Fee,
    sum(case
    when fee/ARRAY_SIZE(signers)/1e9>0.000005 then fee/1e9-0.000005*ARRAY_SIZE(signers)
    else 0 end)
    as non_vote_txn_priority,
    sum(non_vote_txn_priority) over(order by day) as Cum_Priority_Fee
    from solana.core.fact_transactions
    where block_timestamp > current_date - 60
    group by 1
    )
    select * from non_vote
    order by day desc
    Last run: 10 days ago
    DAY
    NON_VOTE_TXN_BASE
    CUM_BASE_FEE
    NON_VOTE_TXN_PRIORITY
    CUM_PRIORITY_FEE
    1
    2025-03-25 00:00:00.000126.97421530754.5536051792.82513808489.73712
    2
    2025-03-24 00:00:00.000504.25888530627.579397274.335858806696.91199
    3
    2025-03-23 00:00:00.000488.31188530123.3205054074.532663799422.576132
    4
    2025-03-22 00:00:00.000433.5801229635.008623018.678156795348.043469
    5
    2025-03-21 00:00:00.000423.54270529201.42852891.179838792329.365313
    6
    2025-03-20 00:00:00.000439.65795528777.8857955222.774381789438.185475
    7
    2025-03-19 00:00:00.000502.4197428338.227845044.333525784215.411094
    8
    2025-03-18 00:00:00.000506.75355527835.80814764.884141779171.077569
    9
    2025-03-17 00:00:00.000493.80984527329.0545455649.430675774406.193428
    10
    2025-03-16 00:00:00.000420.92234526835.24474677.410365768756.762753
    11
    2025-03-15 00:00:00.000450.92070526414.3223555502.270573764079.352388
    12
    2025-03-14 00:00:00.000463.3719225963.401655217.610869758577.081815
    13
    2025-03-13 00:00:00.000465.3496925500.029735716.413364753359.470946
    14
    2025-03-12 00:00:00.000483.4413725034.680045802.21022747643.057582
    15
    2025-03-11 00:00:00.000455.16814524551.238675286.848623741840.847362
    16
    2025-03-10 00:00:00.000469.00870524096.0705255453.661926736553.998739
    17
    2025-03-09 00:00:00.000445.53167523627.061824706.01464731100.336813
    18
    2025-03-08 00:00:00.000466.14037523181.5301455497.619017726394.322173
    19
    2025-03-07 00:00:00.000543.8356622715.389779055.163026720896.703156
    20
    2025-03-06 00:00:00.000492.02008522171.554116435.076409711841.54013
    61
    5KB
    437s