rahoAll Votes
    Updated 2023-04-13
    select
    date(proposal_start_time) as Proposal_Start_Date,
    -- proposal_id as ID,
    proposal_title as Title,
    voter as Voter,
    vote_option as Choice,
    voting_power as Power,
    choices as Options
    from ethereum.core.ez_snapshot
    where (space_id = 'snxgov.eth')
    order by Proposal_Start_Date desc, Title