Progress [%] | Tag | |
---|---|---|
1 | 77.72 | Voting Power |
2 | 70.13 | Validators |
MostlyData_SIMD228 Vote - Claims share (bars)
Updated 23 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 @ https://flipsidecrypto.xyz/studio/queries/5dda3677-6e73-4126-bff8-85b262012cc0
-- 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_claims_raw_data as(
select
tx_id,
signers[0] as vote_account
from solana.core.fact_events_inner e
inner join date_filter df
on e.block_timestamp between df.start_date and df.end_date
where
program_id = 'TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA'
and instruction['parsed']['info']['owner'] = signers[0]
and instruction['parsed']['info']['mint'] = 's228VmFcuiEfroSCQTvEp1pYUownL7JRZMTd7FqHJVK'
)
,simd_claims_amounts as(
select
c.vote_account,
instruction['parsed']['info']['amount'] as claimed_amount
from simd_claims_raw_data c
inner join solana.core.fact_events_inner e
Last run: about 23 hours agoAuto-refreshes every 12 hours
2
45B
254s