superflyOsmosis Proposals by Voting Power and Voters
    Updated 2022-11-23
    SELECT
    Proposal_id,
    SUM(vote_weight) as vote_power,
    count(DISTINCT voter) as voters,
    max(block_timestamp)
    FROM osmosis.core.fact_governance_votes
    WHERE not vote_weight is NULL
    GROUP BY 1
    Run a query to Download Data