rahoTotal # of Unique Voters
    Updated 2023-04-13
    select
    -- date(proposal_start_time) as Proposal_Start_Date,
    -- proposal_id as ID,
    count (distinct voter) as Total
    -- 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

    Run a query to Download Data