kiacryptovote per voters
    Updated 2023-01-12
    with info as (
    select
    voter,
    count(distinct proposal_id) as vote_count,
    'Cosmos' as chain
    from cosmos.core.fact_governance_votes
    where
    tx_succeeded = TRUE
    group by 1

    union all

    select
    voter,
    count(distinct proposal_id) as vote_count,
    'Axelar' as chain
    from axelar.core.fact_governance_votes
    where
    tx_succeeded = TRUE
    group by 1

    union all

    select
    voter,
    count(distinct proposal_id) as vote_count,
    'Osmosis' as chain
    from osmosis.core.fact_governance_votes
    where
    tx_succeeded = TRUE
    group by 1
    union all

    select
    voter,
    Run a query to Download Data