SocioAnalyticaNakamoto Coefficient
    Updated 2024-02-11
    -- forked from BlockTracker / Cosmos Active Validators' Stats @ https://flipsidecrypto.xyz/BlockTracker/q/_wQ5bFoJtUiL/cosmos-active-validators-stats

    with json as (
    SELECT livequery.live.udf_api ('https://api.flipsidecrypto.com/api/v2/queries/92d28ac2-933b-44e6-98c1-c61bac6eebc3/data/latest') as resp
    )

    ,
    account as (
    SELECT value:ADDRESS as address,
    value:ACCOUNT_ADDRESS as account_address
    FROM json,
    LATERAL FLATTEN(input => resp:data)
    )
    SELECT
    rank,
    label,
    round(delegator_shares/1e6,2) as voting_power,
    round(100 * voting_power / total_staked.total_value_staked,2) as "Rate of Share %",
    round(sum("Rate of Share %") over (ORDER BY rank),2) as "Cumulative Share %",
    to_number('50') as "50%",
    to_number('33.33') as "Nakamoto Coefficient Line"
    FROM cosmos.gov.fact_validators a
    JOIN account b using(address)
    CROSS JOIN (
    SELECT
    sum(delegator_shares/1e6) as total_value_staked
    FROM
    cosmos.gov.fact_validators a
    JOIN account b using(address)
    ) AS total_staked
    ORDER BY rank



    Last run: about 1 year agoAuto-refreshes every 3 hours
    RANK
    LABEL
    VOTING_POWER
    Rate of Share %
    Cumulative Share %
    50%
    Nakamoto Coefficient Line
    1
    1Coinbase Custody22923488.479.219.215033
    2
    2SG-117381696.966.9816.195033
    3
    3Everstake10143613.624.0720.265033
    4
    4Zero Knowledge Validator (ZKV)9561917.13.8424.15033
    5
    5Binance Node8997859.363.6127.715033
    6
    6Cosmostation8923954.633.5831.295033
    7
    7Allnodes ⚡️ 0% fee8730043.593.5134.85033
    8
    8DokiaCapital8483841.733.4138.215033
    9
    9GAME6364805.822.5640.775033
    10
    10🐠stake.fish6155793.262.4743.245033
    11
    11Sikka5780718.952.3245.565033
    12
    12NO! Fee to 2025 💸 | melea.xyz5510655.552.2147.775033
    13
    13P2P.ORG - P2P Validator4957247.011.9949.765033
    14
    14Ledger4784362.731.9251.685033
    15
    15Kraken4704397.451.8953.575033
    16
    16Provalidator4537579.671.8255.395033
    17
    17Chorus One4508703.11.8157.25033
    18
    18Informal Systems4492855.61.8595033
    19
    19Upbit Staking3765612.31.5160.515033
    20
    20PRYZM | StakeDrop3598097.991.4561.965033
    ...
    180
    8KB
    4s