alitaslimiVotes Overview
Updated 2023-03-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
CASE
WHEN support = TRUE THEN 'For'
WHEN support = False THEN 'Against'
END AS "Support",
COUNT(DISTINCT tx_hash) AS "Votes",
COUNT(DISTINCT voter) AS "Voters",
ROUND(SUM(voting_power) / POW(10, 18)) AS "Voting Powers"
FROM
ethereum.aave.ez_votes
GROUP BY
"Support"
ORDER BY
"Support" DESC
Run a query to Download Data