SocioAnalyticavoting trends [validator]
    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
    block_timestamp,
    voter,
    CASE when vote_option = 1 then 'YES'
    when vote_option = 2 then 'ABSTAIN'
    Last run: about 1 year agoAuto-refreshes every 3 hours
    DATE
    TYPE
    TOTAL
    CUM_TOKENS
    1
    2023-11-26 00:00:00.000YES068883248.71
    2
    2023-11-26 00:00:00.000NO064819169.4
    3
    2023-11-26 00:00:00.000ABSTAIN042186985.61
    4
    2023-11-26 00:00:00.000NO WITH VETO0222137.21
    5
    2023-11-25 00:00:00.000YES5705323.9868883248.71
    6
    2023-11-25 00:00:00.000NO1125542.864819169.4
    7
    2023-11-25 00:00:00.000NO WITH VETO0222137.21
    8
    2023-11-25 00:00:00.000ABSTAIN616309.9242186985.61
    9
    2023-11-24 00:00:00.000ABSTAIN1252457.5641570675.69
    10
    2023-11-24 00:00:00.000NO7987546.4763693626.6
    11
    2023-11-24 00:00:00.000YES5834493.4463177924.73
    12
    2023-11-24 00:00:00.000NO WITH VETO0222137.21
    13
    2023-11-23 00:00:00.000ABSTAIN1100544.6140318218.13
    14
    2023-11-23 00:00:00.000YES057343431.29
    15
    2023-11-23 00:00:00.000NO WITH VETO0222137.21
    16
    2023-11-23 00:00:00.000NO5584278.5455706080.13
    17
    2023-11-22 00:00:00.000ABSTAIN113979.5939217673.52
    18
    2023-11-22 00:00:00.000NO WITH VETO0222137.21
    19
    2023-11-22 00:00:00.000NO7894689.0350121801.59
    20
    2023-11-22 00:00:00.000YES2033895.6957343431.29
    68
    4KB
    6s