rahofor/against
Updated 2022-12-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
›
⌄
with
all_votes as (
select
voter,
vote_option,
voting_power,
proposal_title
from
ethereum.core.ez_snapshot
where
space_id = 'aave.eth'
and proposal_title = '[ARC] Gauntlet <> Aave Renewal'
order by
voting_power desc
),
voters as (
select
voter,
voting_power,
vote_option,
proposal_title
from
all_votes
group by
3,
1,
2
)
select
*
from
voters
Run a query to Download Data