Sandeshredelgates trend osmo
Updated 2022-07-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
with restakes as
(
select
block_timestamp,
TX_ID,
currency,
decimal,
DELEGATOR_ADDRESS,
VALIDATOR_ADDRESS as dest,
REDELEGATE_SOURCE_VALIDATOR_ADDRESS as source,
'normal_unstake' as "stake"
from osmosis.core.fact_staking
where action='redelegate'
and TX_STATUS='SUCCEEDED'
)
select
block_timestamp::date as "date",
count(tx_id) as redelgates
from restakes
group by "date"