rahoVoting Times
Updated 2022-10-25
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_votes as(
select
date(proposal_start_time) as start_date,
date(proposal_end_time) as end_date,
date(vote_timestamp) as vote_date,
space_id,
proposal_id,
proposal_title,
voter,
vote_option,
voting_power
from ethereum.core.ez_snapshot
where space_id = 'ens.eth'
or space_id = 'uniswap'
or space_id = 'sushigov.eth'
or space_id = 'aave.eth'
or space_id = 'gitcoindao.eth'
or space_id = 'balancer.eth'
or space_id = 'lido-snapshot.eth'
or space_id = 'opcollective.eth'
or space_id = '1inch.eth'
or space_id = 'ybaby.eth'
or space_id = 'pooltogether.eth'
or space_id = 'bancornetwork.eth'
or space_id = 'frax.eth'
or space_id = 'index-coop.eth'
or space_id = 'shapeshiftdao.eth'
),
date_trends as (
select
start_date,
proposal_title,
replace(proposal_title,',','' ) as proposaln,
space_id,
voter,