Hosein-maleki-9555MakerDao - top 5 voters with most number of votes
    Updated 2022-09-06

    with main_tb as (
    select count(DISTINCT tx_hash) as total_votes , voter
    from ethereum.maker.ez_governance_votes
    group by voter
    order by total_votes desc
    limit 5
    )

    select voter , total_votes from main_tb


    Run a query to Download Data