VALIDATOR_ADDRESS | VALIDAT_NAME | DELEGATED_AMOUNT | USERS | |
---|---|---|---|---|
1 | 0xc09a619a872c56c8de1354a4309abbf317938084 | KudasaiJP | 1554065.97151246 | 441092 |
2 | 0x2d764dfeaac00390c69985631aaa7cc3fcfafaff | Infrared | 12130394.7444882 | 416519 |
3 | 0x40495a781095932e2fc8dcca69f5e358711fdd41 | The Honey Jar | 10280165.112733 | 341003 |
4 | 0x0ecbe62654622e14ae882b8c8c65c3f3f54eccf9 | Kodiak Finance | 14382244.5573433 | 283076 |
5 | 0x35c1e9c7803b47af738f37beada3c7c35eed73d4 | Beraland | 7780977.9717904 | 264028 |
6 | 0xc5b889a28950e7f8c1f279f758d8a0ab1c89cc38 | StakeLab | 3687061.29053579 | 227223 |
7 | 0xb791098b00ad377b220f91d7878d19e441388ed8 | 6293753.64393628 | 192055 | |
8 | 0x34d023aca5a227789b45a62d377b5b18a680be01 | beradrome-x-thj | 3214676.14110812 | 178231 |
Bera TeamTop Validators By Number of Delegators
Updated 2025-01-31
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 queue as (select block_timestamp,
tx_hash,
data,
'0x' || SUBSTR(topics[1]::STRING, 27) AS delegator,
'0x' || SUBSTR(topics[2]::STRING, 27) AS validator_address,
ltrim(data, '0x') as decoded,
livequery.utils.udf_hex_to_int(decoded)/pow(10,18) as amount
from berachain.testnet.fact_event_logs
where TOPICS[0] = '0x110aaf2f67d6465fc043087acff06b302e8db1b6b9157d72ee4d4cc5c96bcb9d'
and CONTRACT_ADDRESS = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and ORIGIN_TO_ADDRESS = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and tx_hash not in (select tx_hash from berachain.testnet.fact_event_logs
where origin_function_signature = '0xc2ca9c3a')
)
,
undelegate as (select block_timestamp,
tx_hash,
data,
'0x' || SUBSTR(topics[1]::STRING, 27) AS undelegator,
'0x' || SUBSTR(topics[2]::STRING, 27) AS validator_address,
ltrim(data, '0x') as decoded,
livequery.utils.udf_hex_to_int(decoded)/pow(10,18) as amount
from berachain.testnet.fact_event_logs
where TOPICS[0] = '0xdc232a1d360a44eb299ff026b5f6badfe40d17f95b96da5db7168e88662e9a2c'
and CONTRACT_ADDRESS = '0xbda130737bdd9618301681329bf2e46a016ff9ad'
and ORIGIN_TO_ADDRESS = '0xbda130737bdd9618301681329bf2e46a016ff9ad')
,
active as (select block_timestamp,
tx_hash,
data,
'0x' || SUBSTR(topics[1]::STRING, 27) AS delegator,
'0x' || SUBSTR(topics[2]::STRING, 27) AS validator_address,
ltrim(data, '0x') as decoded,
livequery.utils.udf_hex_to_int(decoded)/pow(10,18) as amount
from berachain.testnet.fact_event_logs
where topics[0] = '0x99966631dd6d6c02c5416ca2369709e025ff974a2f1b3f11c8b74acc67731f0e'
Last run: 2 months ago
8
670B
185s