SocioAnalyticaTotal value staked
Updated 2024-10-10
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_amount as (
SELECT
validator_address,
sum(amount/1e6) as delegate_amount
FROM sei.gov.fact_staking
WHERE action = 'delegate'
AND block_timestamp::date >= '2023-05-23'
AND tx_succeeded = TRUE
GROUP BY 1
)
,
undelegate_amount as (
SELECT
validator_address,
sum(amount/1e6) as undelegate_amount
FROM sei.gov.fact_staking
WHERE action = 'undelegate'
AND block_timestamp::date >= '2023-05-23'
AND tx_succeeded = TRUE
GROUP BY 1
)
,
redelegate_to as (
SELECT
validator_address,
sum(amount/1e6) as redelegate_amount_to
FROM sei.gov.fact_staking
WHERE action = 'redelegate'
AND block_timestamp::date >= '2023-05-23'
AND tx_succeeded = TRUE
GROUP BY 1
)
,
redelegate_from as (
SELECT
REDELEGATE_SOURCE_VALIDATOR_ADDRESS,
QueryRunArchived: QueryRun has been archived