PLATFORM | STAKES | STAKERS | MU_ADDR | SERVICEID | |
---|---|---|---|---|---|
1 | Quickstart Beta - Hobbyist | 209 | 44 | 44 | 44 |
2 | Quickstart Beta - Expert | 252 | 59 | 59 | 59 |
3 | Pearl Beta | 4131 | 534 | 528 | 528 |
4 | Everest | 255 | 17 | 17 | 17 |
5 | Coastal | 771 | 113 | 112 | 112 |
6 | Alpine | 336 | 79 | 79 | 79 |
7 | Alpha | 401 | 71 | 73 | 71 |
SniperShare of Stakes by Platform
Updated 2025-02-16
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
›
⌄
with tbl as ( select block_timestamp,
PROGRAM_NAME,
tx_hash,
MULTISIG_ADDRESS,
ORIGIN_FROM_ADDRESS ,
OWNER_ADDRESS,
SERVICE_ID
from crosschain.olas.ez_service_staking
)
select
PROGRAM_NAME as platform,
count(DISTINCT tx_hash) as stakes,
count(DISTINCT ORIGIN_FROM_ADDRESS) as stakers,
count(DISTINCT MULTISIG_ADDRESS) as mu_addr,
count (DISTINCT SERVICE_ID) as serviceId,
from tbl
group by 1
order by 1 desc
Last run: about 2 months ago
7
219B
2s