WAITING_HOURS | AMOUNT | |
---|---|---|
1 | 51 | 26501.817905422 |
lidoWithdrawal Requests in Queue
Updated 13 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
-- summarizes the data on ETH in the withdrawal queue
SELECT
MAX("waiting time,hours") AS waiting_hours
, SUM("Amount, Ξ") AS amount
FROM(
SELECT
value[0]::text AS status,
value[1]::variant AS requestor,
value[2]::text AS tx_hash,
value[3]::real AS "Amount, Ξ",
value[4]::timestamp_ntz AS "time of request",
value[5]::text AS "finalized time",
value[6]::integer AS "waiting time,hours"
FROM (
SELECT
livequery.live.udf_api('https://flipsidecrypto.xyz/api/queries/4a192e04-d966-42b8-90e0-76cf7fdc4c92/latest-run') as response
), lateral FLATTEN (input => response:data:result:rows)
)
Last run: about 13 hours agoAuto-refreshes every 24 hours
1
22B
5s