CartanGroupProposal Votes
Updated 2023-03-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
-- https://snapshot.org/#/apecoin.eth/proposal/0x79ae5f9eb3c710179cfbf706fa451459ddd18d4b0bce37c22aae601128efe927
SELECT
vote_timestamp as block_time,
voter as address,
array_to_string((vote_option), '') as vote,
case when vote = 1 then 'In-Favor'
when vote = 2 then 'Against' end as choice,
voting_power as "$APE Voted"
FROM ethereum.core.ez_snapshot
WHERE "SPACE_ID" = 'apecoin.eth'
AND proposal_id = '0x2485aa565a28902bd33bbba1f91e9c7b66cf34010bd25c4bef82cd8e341071d8'
ORDER BY vote_timestamp DESC
Run a query to Download Data