rahoaave-old votes for/ag/t
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
33
34
35
36
›
⌄
with all_ss as (
select
*
from ethereum.core.ez_snapshot
where space_id = 'aave.eth'
and proposal_title != '%Test%'
and proposal_title != 'Final test'
and proposal_title != 'Test Proposal'
),
new_dates as(
select
proposal_title,
proposal_start_time as date,
date_trunc('day', proposal_start_time) as day
from all_ss
),
props as (
select
distinct(proposal_title) as prop_name,
proposal_start_time as beginning,
proposal_end_time as ending
from all_ss
order by beginning asc
),
votes_fora as (
select
voter,
vote_option as choice,
voting_power,
proposal_title,
proposal_end_time
from all_ss
where choice = ['1']
Run a query to Download Data