saber-jlDaily distribution of proposal #337 votes
    Updated 2022-11-02
    select trunc(BLOCK_TIMESTAMP, 'day') as date, count(distinct voter), DESCRIPTION
    from osmosis.core.fact_governance_votes gv
    join osmosis.core.dim_vote_options vo
    on gv.VOTE_OPTION = vo.VOTE_ID
    where PROPOSAL_ID = 337
    and TX_STATUS = 'SUCCEEDED'
    group by 1, 3
    order by 1, 3 desc

    Run a query to Download Data