elsinaVotes distribution
Updated 2022-07-06
9
1
2
3
4
5
6
7
›
⌄
select case
when event_inputs:support::integer = 0 then 'Against'
when event_inputs:support::integer = 1 then 'For'
when event_inputs:support::integer = 2 then 'Abstain' end as type, count(*)
from ethereum.core.fact_event_logs
where contract_address = '0x6f3e6272a167e8accb32072d08e0957f9c79223d' and event_name = 'VoteCast'
group by 1
Run a query to Download Data