DATE | ACTION_TYPE | N_TXS | N_DELEGATORS | |
---|---|---|---|---|
1 | 2025-03-27 00:00:00.000 | Claim Reward | 175 | 174 |
2 | 2025-03-27 00:00:00.000 | Delegate | 151 | 123 |
3 | 2025-03-27 00:00:00.000 | Undelegate | 82 | 68 |
4 | 2025-03-26 00:00:00.000 | Delegate | 556 | 443 |
5 | 2025-03-26 00:00:00.000 | Claim Reward | 643 | 639 |
6 | 2025-03-26 00:00:00.000 | Undelegate | 410 | 288 |
7 | 2025-03-25 00:00:00.000 | Undelegate | 610 | 472 |
8 | 2025-03-25 00:00:00.000 | Delegate | 665 | 532 |
9 | 2025-03-25 00:00:00.000 | Claim Reward | 653 | 653 |
10 | 2025-03-24 00:00:00.000 | Delegate | 1429 | 980 |
11 | 2025-03-24 00:00:00.000 | Claim Reward | 756 | 755 |
12 | 2025-03-24 00:00:00.000 | Undelegate | 1129 | 660 |
13 | 2025-03-23 00:00:00.000 | Delegate | 614 | 523 |
14 | 2025-03-23 00:00:00.000 | Undelegate | 1312 | 727 |
15 | 2025-03-23 00:00:00.000 | Claim Reward | 619 | 618 |
16 | 2025-03-22 00:00:00.000 | Undelegate | 806 | 674 |
17 | 2025-03-22 00:00:00.000 | Claim Reward | 580 | 579 |
18 | 2025-03-22 00:00:00.000 | Delegate | 505 | 425 |
19 | 2025-03-21 00:00:00.000 | Delegate | 502 | 392 |
20 | 2025-03-21 00:00:00.000 | Undelegate | 674 | 442 |
0xHaM-dUser & Transactions
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::date as p_date,
median(price) as ron_price,
Last run: 18 days ago
...
258
13KB
18s