SocioAnalyticavalidator not voted yet on proposal 848
    Updated 2024-02-11
    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)
    )
    , main as (
    SELECT
    rank,
    label as validator_name,
    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 %",
    a.address as validator_address,
    b.account_address
    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
    ),
    vote as (
    SELECT
    voter,
    CASE when vote_option = 1 then 'YES'
    when vote_option = 2 then 'ABSTAIN'
    when vote_option = 3 then 'NO'
    Last run: about 1 year agoAuto-refreshes every 3 hours
    VALIDATOR_NAME
    VOTING_POWER
    Rate of Share %
    TYPE
    OPTION
    1
    Coinbase Custody22924646.139.21not voted
    2
    SG-117381722.666.98ABSTAINvoted
    3
    Everstake10127406.734.07ABSTAINvoted
    4
    Zero Knowledge Validator (ZKV)9561784.333.84YESvoted
    5
    Binance Node89980133.62not voted
    6
    Cosmostation8924419.333.59NOvoted
    7
    Allnodes ⚡️ 0% fee8730460.723.51NOvoted
    8
    DokiaCapital8483934.743.41NOvoted
    9
    GAME6364797.022.56YESvoted
    10
    🐠stake.fish6156427.92.47ABSTAINvoted
    11
    Sikka5782769.472.32YESvoted
    12
    NO! Fee to 2025 💸 | melea.xyz5511006.552.21not voted
    13
    P2P.ORG - P2P Validator4957283.761.99NOvoted
    14
    Ledger4791627.641.93not voted
    15
    Kraken4704393.951.89not voted
    16
    Provalidator4537997.041.82NOvoted
    17
    Chorus One4508670.741.81NOvoted
    18
    Informal Systems4492896.981.81YESvoted
    19
    Upbit Staking3764615.871.51not voted
    20
    PRYZM | StakeDrop3572522.091.44NOvoted
    ...
    180
    8KB
    3s