Yousefi_1994Proposal 362 - Total Votes
    Updated 2022-11-24
    with proposal_362_governance_votes as (
    select
    block_timestamp,
    tx_id,
    voter,
    vote_option,
    vote_weight
    from osmosis.core.fact_governance_votes votes
    where proposal_id = 362
    and tx_status = 'SUCCEEDED'
    )

    select
    count(distinct tx_id) as "Number of Votes",
    count(distinct voter) as "Number of Voters"
    from proposal_362_governance_votes
    Run a query to Download Data