goverlandGetting Started
Updated 2023-05-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
-- select space_id, PROPOSAL_ID, count(*) cnt, min(VOTE_TIMESTAMP)
-- from ethereum.core.ez_snapshot
-- where true
-- and space_id = 'stgdao.eth'
-- group by space_id, PROPOSAL_ID
-- order by cnt desc
-- limit 100
select count(distinct voter)
from ethereum.core.ez_snapshot
-- where true
-- and space_id = 'stgdao.eth'
-- group by space_id, PROPOSAL_ID
-- order by cnt desc
limit 100
Run a query to Download Data