alitaslimiVotes Over Time
Updated 2023-03-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
SELECT
DATE_TRUNC(month, block_timestamp) AS "Date",
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
"Date",
"Support"
ORDER BY
"Date" DESC,
"Support" DESC
Run a query to Download Data