afonsoTop 10 Voter on Cosmos Network in terms of Vote transactions
    Updated 2023-01-12
    select
    voter,
    sum(coalesce(vote_weight, 0)) as total_voting_weight
    from cosmos.core.fact_governance_votes a
    join cosmos.core.fact_governance_submit_proposal b
    using(proposal_id)
    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data