VAL | VOTING_POWER | VOTE_POWER_PERCENT | CUMULATIVE_VOTE_POWER | |
---|---|---|---|---|
1 | kingnodes 👑 | 348131520.797705 | 0.057552342508 | 0.057552342508 |
2 | Figment | 338554685.588847 | 0.055969121032 | 0.11352146354 |
3 | Hype INFRA | 309493383.610011 | 0.051164770075 | 0.164686233615 |
4 | seivaloper1n8dkzn66f9ys8kfcdsmrtcz9003ummhxxe6g23 | 300604669.570374 | 0.049695307288 | 0.214381540903 |
5 | sei0 | 299381583.588072 | 0.049493109385 | 0.263874650288 |
6 | sei1 | 294225227.542252 | 0.048640671868 | 0.312515322156 |
7 | RHINO | 265845252.00648 | 0.04394895631 | 0.356464278466 |
8 | Blockscope.net | 241007600.91941 | 0.039842850091 | 0.396307128557 |
9 | ContributionDAO | 215190187.729158 | 0.035574771742 | 0.431881900299 |
10 | Anchorage Digital | 213475258.057243 | 0.035291263315 | 0.467173163614 |
11 | STAKEME | 197810900.551516 | 0.032701665952 | 0.499874829566 |
12 | Everstake | 181015323.604301 | 0.029925057861 | 0.529799887427 |
13 | Brochain | 153811621.008344 | 0.025427801176 | 0.555227688603 |
14 | Flipside | 151252212.200805 | 0.025004685303 | 0.580232373906 |
15 | Cros-nest | 140054738.511662 | 0.023153543414 | 0.60338591732 |
16 | MantiCore | 139082992.667323 | 0.022992896514 | 0.626378813834 |
17 | Cosmostation | 135171209.297916 | 0.022346209033 | 0.648725022867 |
18 | polkachu.com | 134329098.745712 | 0.022206993156 | 0.670932016023 |
19 | Shinlabs | 113387798.146749 | 0.018745023088 | 0.689677039111 |
20 | Stakin | 109833875.764088 | 0.018157496404 | 0.707834535515 |
SalehValidators Stats
Updated 2023-12-24Copy Reference Fork
999
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
›
⌄
with
delegate AS (
with
tb AS (
select
BLOCK_TIMESTAMP,
TX_ID,
ATTRIBUTE_VALUE AS val
from
sei.core.fact_msg_attributes
where
MSG_TYPE = 'delegate' and ATTRIBUTE_KEY = 'validator'
)
select
tb.BLOCK_TIMESTAMP,
TX_ID,
'delegate' AS Action,
SUBSTR(ATTRIBUTE_VALUE, 1, len(ATTRIBUTE_VALUE) -4)::Int / 1e6 AS Amount,
val,
null AS src_val
from
sei.core.fact_msg_attributes
inner join tb using (TX_ID)
where MSG_TYPE = 'delegate' and ATTRIBUTE_KEY = 'amount'
),
undelegate AS (
with
tb AS (
select
BLOCK_TIMESTAMP,
TX_ID,
ATTRIBUTE_VALUE AS val
from
sei.core.fact_msg_attributes
where MSG_TYPE = 'unbond' and ATTRIBUTE_KEY = 'validator'
)
Last run: over 1 year ago
56
4KB
287s