permaryLiquidations
Updated 2024-12-20
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 liquidation_data as (
select
extract(month from block_timestamp) as month,
'arbitrum' as chain,
count(*) as total_liquidations,
sum(amount_quote) as liquidation_value_usd
from arbitrum.vertex.ez_liquidations
where block_timestamp >= '2024-01-01' and block_timestamp < '2025-01-01'
group by extract(month from block_timestamp)
union all
select
extract(month from block_timestamp) as month,
'sei' as chain,
count(*) as total_liquidations,
sum(amount_quote) as liquidation_value_usd
from sei.vertex.ez_liquidations
where block_timestamp >= '2024-01-01' and block_timestamp < '2025-01-01'
group by extract(month from block_timestamp)
union all
select
extract(month from block_timestamp) as month,
'mantle' as chain,
count(*) as total_liquidations,
sum(amount_quote) as liquidation_value_usd
from mantle.vertex.ez_liquidations
where block_timestamp >= '2024-01-01' and block_timestamp < '2025-01-01'
group by extract(month from block_timestamp)
union all
select
extract(month from block_timestamp) as month,
QueryRunArchived: QueryRun has been archived