datavortexliquidation risk
Updated 2025-01-21
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 DepositorVolumes AS (
SELECT
sender_id,
SUM(amount_usd) AS total_deposited
FROM
near.defi.ez_lending
WHERE
symbol IN ('USDT', 'USDt', 'DAI', 'FRAX', 'USDT.e', 'USDC.e', 'USN')
AND actions IN ('deposit', 'deposit_to_reserve')
GROUP BY
sender_id
),
BorrowerVolumes AS (
SELECT
sender_id,
SUM(amount_usd) AS total_borrowed
FROM
near.defi.ez_lending
WHERE
symbol IN ('USDT', 'USDt', 'DAI', 'FRAX', 'USDT.e', 'USDC.e', 'USN')
AND actions IN ('borrow')
AND amount_usd IS NOT NULL
GROUP BY
sender_id
),
TopDepositors AS (
SELECT
sender_id,
SUM(total_deposited) AS total_deposited
FROM
DepositorVolumes
GROUP BY
sender_id
),
TopBorrowers AS (
SELECT
QueryRunArchived: QueryRun has been archived