rahoCopy of Voters
    Updated 2023-01-04
    with all_ss as (
    select
    *
    from ethereum.core.ez_snapshot
    where space_id = 'opcollective.eth'
    ),

    calc as (
    select
    count(distinct proposal_author) as prop_authors,
    count(distinct voter) as unique_voters,
    count(distinct proposal_title) as total_proposals
    from all_ss
    )

    select
    *
    from calc