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