rahoaave voters
Updated 2023-01-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with countvoters as (
select
count(distinct(voter)) as voters
from ethereum.aave.ez_votes
),
propstats as (
select
*
from ethereum.aave.ez_proposals
)
select
count(distinct(proposer)) as lifetime_proposers,
count(proposal_id) as total_proposals
from propstats
Run a query to Download Data