LABEL | RANKING_SEGMENT | |
---|---|---|
1 | 01. >872.5 | 1-2248 |
2 | 02. 331.5 - 872.5 | 2249-4551 |
3 | 03. 146.9 - 331.5 | 4552-14080 |
4 | 04. 100 - 146.9 | 14081-27532 |
5 | 05. 80 - 100 | 27543-34783 |
6 | 06. 60 - 80 | 34787-47538 |
7 | 07. 40 - 60 | 47547-71016 |
8 | 08. 20 - 40 | 71027-110190 |
9 | 09. 10 - 20 | 110227-168720 |
10 | 10. 6 - 10 | 168812-211425 |
11 | 11. 3 - 6 | 211508-275362 |
12 | 12. 1 - 3 | 275736-404753 |
13 | 13. 0.6 - 1 | 411330-455980 |
14 | 14. 0.3 - 0.6 | 456037-510726 |
15 | 15. 0.1 - 0.3 | 510834-720350 |
16 | 16. 0.0001 - 0.1 | 720879-1929207 |
17 | 17. <0.0001 | 1929493-2851291 |
tkvresearchsorry-fuchsia
Updated 2025-01-29
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_data as
(select
BLOCK_TIMESTAMP,
TX_HASH,
'0x' || SUBSTR(PARSE_JSON(TOPICS)[1]::string, -40) AS user_wallet,
-- '0x' || SUBSTR(PARSE_JSON(TOPICS)[2]::string, -40) AS validator_address,
TOPICS,
utils.udf_hex_to_int(DATA)/power(10,18) as data_raw
FROM berachain.testnet.fact_event_logs
where ORIGIN_TO_ADDRESS = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and
contract_address = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and
TX_SUCCEEDED = 'TRUE'
and
ORIGIN_FUNCTION_SIGNATURE = '0xfb8afcfa'),
undelegate_data as (
select
BLOCK_TIMESTAMP,
TX_HASH,
'0x' || SUBSTR(PARSE_JSON(TOPICS)[1]::string, -40) AS user_wallet,
-- '0x' || SUBSTR(PARSE_JSON(TOPICS)[2]::string, -40) AS validator_address,
TOPICS,
utils.udf_hex_to_int(DATA)/power(10,18) as data_raw
FROM berachain.testnet.fact_event_logs
where
ORIGIN_TO_ADDRESS = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and
contract_address = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and
TX_SUCCEEDED = 'TRUE'
and
ORIGIN_FUNCTION_SIGNATURE = '0xe1f63d2e'
),
Last run: about 1 month ago
17
545B
142s