Updated 2022-11-20
    select block_timestamp::Date as date,
    Description,
    count (distinct tx_id) as Votes_Count,
    count (distinct voter) as Voters_Count
    from osmosis.core.fact_governance_votes t1 join osmosis.core.dim_vote_options t2 on t1.vote_option = t2.vote_id
    where tx_status = 'SUCCEEDED'
    and proposal_id in ('362')
    group by 1,2
    order by 1
    Run a query to Download Data