vendettaAAVE 3 copy
Updated 2023-02-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- forked from 6f2b67bc-b0f8-4e0a-b2fe-08ae2e926287
select
date_TRUNC('day', ethereum.aave.ez_liquidations.BLOCK_TIMESTAMP),
sum(LIQUIDATED_AMOUNT_USD),
count(distinct LIQUIDATOR)
from ethereum.aave.ez_flashloans left outer join ethereum.aave.ez_liquidations
on ethereum.aave.ez_flashloans.tx_hash = ethereum.aave.ez_liquidations.tx_hash
where LIQUIDATED_AMOUNT_USD < 1e9
group by 1
Run a query to Download Data