flyingfishSolana Validators APR
    Updated 2025-05-03
    -- forked from charliemarketplace / top-sol-stakers @ https://flipsidecrypto.xyz/charliemarketplace/q/ZeQJKGM7v04I/top-sol-stakers
    -- APR calculation is based in charliemarketplace query
    -- and improved with a rolling estimation of epoch's in one year

    with last_epoch as (
    select
    max(epoch_earned) as latest_epoch
    from solana.gov.fact_rewards_staking
    )

    , epoch_duration as (
    -- Calculate number of epochs in 1 year for each epoch
    -- Average is based on the current and previous 14 epochs
    -- In average one month has ~14 epochs

    select
    epoch
    , start_block
    , end_block
    , st.block_timestamp as start_timestamp
    , en.block_timestamp as end_timestamp
    , timediff(minute, start_timestamp, end_timestamp) as epoch_minutes
    , avg(epoch_minutes) over (order by epoch rows between 14 preceding and current row) as avg_minutes_last_15_epochs
    , div0(525960, avg_minutes_last_15_epochs) as avg_epochs_in_one_year -- 365.25 * 24 * 60 = 525960 (minutes in 1 year)
    from solana.gov.dim_epoch
    left join solana.core.fact_blocks st on start_block = st.block_id
    left join solana.core.fact_blocks en on end_block = en.block_id
    where 1 = 1
    and epoch <= (select latest_epoch from last_epoch)
    )

    , node_keys as (
    -- get pairs of node_pubkeys's and vote_pubkeys's for each epoch
    select
    epoch
    Last run: 3 months ago
    EPOCH
    Avg. APR (%)
    Median APR (%)
    Sol Staked Weighted Average APR (%)
    Max APR (%)
    1
    7806.8477.0186.7517.087
    2
    7796.8317.0076.7467.073
    3
    7786.8567.0176.7577.082
    4
    7776.9067.0576.7947.128
    5
    7766.8326.9976.7527.082
    6
    7756.8567.0136.7637.1
    7
    7746.857.0146.7727.1
    8
    7736.8967.0526.7917.155
    9
    7726.9247.086.8297.169
    10
    7716.9197.0786.8297.156
    11
    7706.9757.1286.8767.208
    12
    7696.967.1286.8737.213
    13
    7686.9667.1166.8617.196
    14
    7676.9587.1126.8667.198
    15
    7666.9717.1346.8857.222
    16
    7656.9787.1276.8717.21
    17
    7646.997.1426.8857.225
    18
    7636.9617.1566.9137.287
    19
    7627.0637.2186.9647.305
    20
    7617.0267.1776.9147.262
    ...
    180
    5KB
    43s