BaseVote parameters
Updated 2024-09-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with
snapshot as
(select
count(distinct ID) as "Votes" ,
count(distinct PROPOSAL_ID) as "Proposal Id" ,
count(distinct VOTER) as "Voters" ,
min(distinct datediff('day',PROPOSAL_END_TIME::date,current_date)) as "Last Proposal",
avg (VOTING_POWER) as "Average Voting Power",
Min(VOTING_POWER) as "Min Voting Power",
max(VOTING_POWER) as "Max Voting Power"
from external.snapshot.ez_snapshot
where SPACE_ID = 'toshibase.eth'
)
select * from snapshot
--where "Min Voting Power"::int != 0
QueryRunArchived: QueryRun has been archived