elsinaVotes distribution
    Updated 2022-07-06
    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