adriaparcerisasnear decentralization progress 2
    Updated 13 hours ago
    -- 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
    from ranking3
    ),
    Last run: about 13 hours ago
    MONTH
    NAKAMOTO_COEFF
    1
    2020-08-25 00:00:00.0000
    2
    2020-08-26 00:00:00.0000
    3
    2020-08-27 00:00:00.0000
    4
    2020-08-28 00:00:00.0001
    5
    2020-08-29 00:00:00.0001
    6
    2020-08-30 00:00:00.0001
    7
    2020-08-31 00:00:00.0001
    8
    2020-09-01 00:00:00.0001
    9
    2020-09-02 00:00:00.0002
    10
    2020-09-03 00:00:00.0003
    11
    2020-09-04 00:00:00.0003
    12
    2020-09-05 00:00:00.0003
    13
    2020-09-06 00:00:00.0003
    14
    2020-09-07 00:00:00.0004
    15
    2020-09-08 00:00:00.0004
    16
    2020-09-09 00:00:00.0004
    17
    2020-09-10 00:00:00.0004
    18
    2020-09-11 00:00:00.0005
    19
    2020-09-12 00:00:00.0005
    20
    2020-09-13 00:00:00.0005
    ...
    1721
    51KB
    26s