alitaslimiVoters Overview
Updated 2023-02-28
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
voter AS "Voter",
COUNT(DISTINCT tx_hash) AS "Votes",
("Votes" / (SELECT MAX(proposal_id) FROM ethereum.aave.ez_votes)) * 100 AS "Participation",
SUM(voting_power) / POW(10, 18) AS "Voting Power"
FROM
ethereum.aave.ez_votes votes
LEFT JOIN ethereum.core.dim_labels labels ON votes.voter = labels.address
GROUP BY
"Voter"
ORDER BY
"Voting Power" DESC
Run a query to Download Data