Total Available Votes | Total Available Shares [%] | Stake Program | Available Votes | Available Shares [%] | |
---|---|---|---|---|---|
1 | 62045045.6265067 | 16.37 | SFDP | 40321225609634600 | 10.64 |
2 | 62045045.6265067 | 16.37 | Marinade | 4842229639103840 | 1.28 |
3 | 62045045.6265067 | 16.37 | Jito | 15765020534910800 | 4.16 |
4 | 62045045.6265067 | 16.37 | Blaze | 1116569842857410 | 0.29 |
MostlyData_Share by Stake Program
Updated 2025-03-14
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 Share to claims @ https://flipsidecrypto.xyz/studio/queries/d5e39007-162f-4b12-ab40-b9251a4ef4dc
with stake_data as(
select
*
from solana.gov.fact_stake_accounts
where
epoch = 752
and activation_epoch < 752
and active_stake > 0
and type_stake = 'delegated'
and authorized_staker in (
'mpa4abUkjQoAvPzREkh5Mo75hZhPFQ2FSH6w7dWKuQ5', -- SFDP
'6iQKfEyhr3bZMotVkW6beNZz5CPAkiwvgV2CTje9pVSS', -- Jito
'6WecYymEARvjG5ZyqkrVQ6YkhPfujNzWpSPwNKXHCbV2', -- Blaze
'4bZ6o3eUUNXhKuqjdCnCoPAoLgWiuLYixKaxoa8PpiKk' -- Marinade
)
)
,validators_data as(
select
vote_pubkey,
node_pubkey,
validator_name
from solana.gov.fact_validators
where epoch = 752
)
,stake_by_stake_program as(
select
sd.vote_pubkey,
sd.authorized_staker,
Last run: about 1 month ago
4
225B
6s