0xHaM-dnear decentralization progress 2 copy
    Updated 3 days ago
    -- forked from adriaparcerisas / near decentralization progress 2 @ https://flipsidecrypto.xyz/adriaparcerisas/q/WGe1TM1KhWDl/near-decentralization-progress-2

    -- forked from near decentralization progress 1 @ https://flipsidecrypto.xyz/edit/queries/5905c42c-700a-4360-9d7e-bba62331f8f5

    WITH
    totals as (
    SELECT
    date as months,
    count(distinct address) as validators,
    sum(balance) as cumulative_near_delegated
    FROM near.gov.fact_staking_pool_daily_balances
    group by 1
    ),
    ranking3 as (
    SELECT
    date as month,
    address as validator,
    balance as total_near_delegated,
    cumulative_near_delegated
    FROM near.gov.fact_staking_pool_daily_balances x
    join totals y on date=y.months
    ),
    stats as (
    SELECT
    month,
    33 as bizantine_fault_tolerance,
    cumulative_near_delegated,
    (cumulative_near_delegated*bizantine_fault_tolerance)/100 as threshold--,
    --sum(total_sol_delegated) over (partition by month order by validator_ranks asc) as total_sol_delegated_by_ranks,
    --count(distinct vote_accounts) as validators
    from ranking3
    ),
    stats2 as (
    select *,
    1 as numbering,
    sum(numbering) over (partition by month order by total_near_delegated desc) as rank
    Last run: 3 days ago
    MONTH
    NAKAMOTO_COEFF
    1
    2025-06-09 00:00:00.00010
    2
    2025-06-08 00:00:00.00010
    3
    2025-06-07 00:00:00.00010
    4
    2025-06-06 00:00:00.00010
    5
    2025-06-05 00:00:00.00010
    6
    2025-06-04 00:00:00.00010
    7
    2025-06-03 00:00:00.00010
    8
    2025-06-02 00:00:00.00010
    9
    2025-06-01 00:00:00.00010
    10
    2025-05-31 00:00:00.00010
    11
    2025-05-30 00:00:00.00010
    12
    2025-05-29 00:00:00.00010
    13
    2025-05-28 00:00:00.00010
    14
    2025-05-27 00:00:00.00010
    15
    2025-05-26 00:00:00.00010
    16
    2025-05-25 00:00:00.00010
    17
    2025-05-24 00:00:00.00010
    18
    2025-05-23 00:00:00.00010
    19
    2025-05-22 00:00:00.00010
    20
    2025-05-21 00:00:00.00011
    ...
    1750
    52KB
    56s