alitaslimiMaster Query
Updated 2023-03-10
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
proposals AS (
SELECT
block_number,
start_voting_period,
end_voting_period,
block_timestamp,
governance_contract,
proposal_id,
status,
proposer,
proposal_tx
FROM
ethereum.aave.ez_proposals
),
votes AS (
SELECT
block_number,
block_timestamp,
governance_contract,
proposal_id,
support,
voting_power / POW(10, 18) AS voting_power,
voter,
tx_hash
FROM
ethereum.aave.ez_votes
)
SELECT
*
FROM
proposals
Run a query to Download Data