hessTotal Liquidation
Updated 2024-09-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
with liquidation as (select tx_hash,
trader,
case when amount_quote < 0 then amount_quote*-1 else amount_quote end as vol,
from blast.blitz.ez_liquidations)
select count(DISTINCT tx_hash) as trades,
count(DISTINCT trader) as traders,
SUM(ABS(vol)) as volume,
avg(vol) as avg_volume
from liquidation
QueryRunArchived: QueryRun has been archived