saber-jlrececnt proposal base on vote number and description
    Updated 2022-11-22
    select
    DESCRIPTION,PROPOSAL_ID,
    count(distinct tx_id) as tx_count,
    count(distinct voter) as voter
    from osmosis.core.dim_vote_options vo join osmosis.core.fact_governance_votes gv on vo.vote_id = gv.VOTE_OPTION
    where TX_STATUS = 'SUCCEEDED'
    and PROPOSAL_ID in (355,356,357,358,359,360,361,362,363,365)
    group by 1,2
    Run a query to Download Data