shadilSnapshot top 5 proposals with highest number of voters
    Updated 2022-08-30
    select top 5 proposal_id, count(distinct voter) as total_voters
    from ethereum.core.ez_snapshot
    group by proposal_id
    order by total_voters desc
    Run a query to Download Data