RON_PRICE | TOTAL_STAKE | TOTAL_REWARDS | TOTAL_N_DELEGATORS | TOTAL_STAKE_USD | N_VALIDATORS | N_DELEGATORS | CURRENT_DELEGATE_AMT | UNDELEGATE_AMT | DELEGATE_AMT | AVG_DELEGATE_AMT | MAX_DELEGATE_AMT | CLAIMED_REWARD | AVG_CLAIMED_REWARD | MAX_CLAIMED_REWARD | CURRENT_DELEGATE_AMT_USD | UNDELEGATE_AMT_USD | DELEGATE_AMT_USD | CLAIMED_REWARD_USD | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | 0.796214 | 249088408 | 59503032 | 315064 | 198327677.687312 | 42 | 77950 | 8306801.04839343 | 74527745.5586035 | 82834546.6069969 | 182.306372795 | 3300000 | 2164274.57005741 | 4.763242666 | 39458.131740921 | 6613991.28994552 | 59340034.4021979 | 65954025.6921434 | 1723225.71252369 |
0xHaM-dTotal
Updated 2025-03-27
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
›
⌄
with eventTb as (
select
block_timestamp,
ORIGIN_FUNCTION_SIGNATURE,
tx_hash,
from_address as delegator,
value as amount,
concat('0x',split(input_data,'000000000000000000000000')[1]) as validator_id
from ronin.core.fact_transactions
where block_timestamp::date>='2024-10-01'
and ORIGIN_FUNCTION_SIGNATURE = '0x5c19a95c' --Delegate
and TO_ADDRESS='0x545edb750eb8769c868429be9586f5857a768758'
union all
select
block_timestamp,
ORIGIN_FUNCTION_SIGNATURE,
tx_hash,
origin_from_address as delegator,
DECODED_LOG:amount/1e18 as amount,
DECODED_LOG:poolId as validator_id
from ronin.core.ez_decoded_event_logs
where block_timestamp::date>='2024-10-01'
and origin_TO_ADDRESS='0x545edb750eb8769c868429be9586f5857a768758'
and ORIGIN_FUNCTION_SIGNATURE in (
'0x4d99dd16' --undelegate
, '0x097e4a9d' -- RewardClaimed
)
and EVENT_NAME in ('Undelegated','RewardClaimed')
)
,
priceTb as (
select
hour,
median(price) as price
Last run: 23 days ago
1
250B
20s