DAILY | TYPE | AMOUNT | TXNS | |
---|---|---|---|---|
1 | 2024-09-14 00:00:00.000 | Undelegate | -1647.2591207 | 578 |
2 | 2024-10-11 00:00:00.000 | Undelegate | -41189.70635808 | 505 |
3 | 2024-06-26 00:00:00.000 | Delegate | 172191.629847559 | 8626 |
4 | 2024-09-26 00:00:00.000 | Delegate | 631004.416890086 | 87811 |
5 | 2024-10-22 00:00:00.000 | Delegate | 381000.935865733 | 51894 |
6 | 2025-01-27 00:00:00.000 | Delegate | 172231.061423942 | 76893 |
7 | 2024-12-24 00:00:00.000 | Undelegate | -44504.005428773 | 609 |
8 | 2024-09-21 00:00:00.000 | Undelegate | -58984.737051886 | 506 |
9 | 2024-07-12 00:00:00.000 | Undelegate | -755.260889084 | 318 |
10 | 2024-11-28 00:00:00.000 | Undelegate | -124397.398467782 | 3212 |
11 | 2024-12-01 00:00:00.000 | Delegate | 322950.514619343 | 90371 |
12 | 2024-10-11 00:00:00.000 | Delegate | 1598026.4861958 | 72213 |
13 | 2025-01-02 00:00:00.000 | Delegate | 482286.277918636 | 90279 |
14 | 2024-09-15 00:00:00.000 | Undelegate | -22364.316338574 | 626 |
15 | 2024-11-14 00:00:00.000 | Undelegate | -8751.830799211 | 732 |
16 | 2024-11-01 00:00:00.000 | Undelegate | -28730.089660191 | 495 |
17 | 2024-10-13 00:00:00.000 | Delegate | 276996.8285258 | 86096 |
18 | 2024-08-20 00:00:00.000 | Undelegate | -244935.184272233 | 493 |
19 | 2024-08-15 00:00:00.000 | Delegate | 912860.790949843 | 52332 |
20 | 2024-07-21 00:00:00.000 | Undelegate | -6269.037636502 | 314 |
Bera TeamDaily Transactions
Updated 2025-01-31
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 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: 3 months ago
...
474
29KB
269s