rahoSpartan Council: Adam Cochran y/n
    Updated 2023-04-13
    -- 344 proposals total as of 10/3/2022

    with all_votes as(
    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
    ),

    total_proposals as(
    select
    count(distinct Title)
    from all_votes
    ),

    participation as(
    select
    Proposal_Start_Date,
    Title,
    Voter,
    Choice
    from all_votes
    where Voter = lower('0xf07A2439296e07Bc4320AF924E655a01fb69D89C')
    ),

    votes_cast as(
    select
    1 as index,
    Run a query to Download Data