freemartianVote Power Status - Options
    Updated 2022-11-21
    with delegations as (
    select
    delegator_address,
    sum(amount)/pow(10,6) as delegation_amount
    from osmosis.core.fact_staking
    where action = 'delegate'
    and TX_STATUS = 'SUCCEEDED'
    group by delegator_address),

    undelegations as (
    select
    delegator_address,
    sum(amount)/pow(10,6) as undelegation_amount
    from osmosis.core.fact_staking
    where action = 'undelegate'
    and TX_STATUS = 'SUCCEEDED'
    group by delegator_address
    ),
    stakes as (
    select
    d.delegator_address as delegator,
    delegation_amount,
    case
    when undelegation_amount is null then 0
    when undelegation_amount is not null then undelegation_amount
    end as undelegation_amount,
    case when delegation_amount - undelegation_amount is null then delegation_amount
    when delegation_amount - undelegation_amount is not null then delegation_amount - undelegation_amount
    end as staked_amount
    from delegations d left join undelegations u on d.delegator_address = u.delegator_address)

    select
    count(distinct tx_id) as vote_count,
    count(distinct voter) as vote_count,
    case
    when vote_option = '1' then 'Yes'
    Run a query to Download Data