Vote | Size | Vote Share | |
---|---|---|---|
1 | Abstain | 12426457.0715921 | 4.41 |
2 | No | 103941535.617094 | 36.91 |
3 | Yes | 165236706.583125 | 58.68 |
MostlyData_SIMD228 Vote - Casted Vote
Updated 2 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from SIMD228 Vote - Claims share (bars @ https://flipsidecrypto.xyz/studio/queries/9212a7df-f450-4d1a-9147-3d9b3ac5d00b
-- tot_supply = 379050125089013001
-- tot_val = 1349
with date_filter as(
select
-- just to reduce table size and make the process faster
--cast('2024-05-17' as timestamp) as start_date,
--cast('2024-05-27' as timestamp) as end_date
cast('2025-03-04' as timestamp) as start_date,
cast('2025-03-15' as timestamp) as end_date
)
,simd_votes_raw_data as(
select
tx_from as vote_account,
case
when tx_to = 'YESsimd228111111111111111111111111111111111' then 'Yes'
when tx_to = 'nosimd2281111111111111111111111111111111111' then 'No'
when tx_to = 'ABSTA1Nsimd22811111111111111111111111111111' then 'Abstain'
end as vote_type,
amount
from solana.core.fact_transfers t
inner join date_filter df
on t.block_timestamp between df.start_date and df.end_date
where
(tx_to = 'YESsimd228111111111111111111111111111111111'
or tx_to = 'nosimd2281111111111111111111111111111111111'
or tx_to = 'ABSTA1Nsimd22811111111111111111111111111111')
and mint = 's228VmFcuiEfroSCQTvEp1pYUownL7JRZMTd7FqHJVK'
)
,aggregate_vote as(
Last run: about 2 hours agoAuto-refreshes every 12 hours
3
96B
24s