borrower | Total borrows transactions | Total borrowed Volume | avg borrowed amount | |
---|---|---|---|---|
1 | 4547 | 74969 | 490739471.41182 | 9849.064171553 |
datavortexstats
Updated 8 hours ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
SELECT
COUNT(DISTINCT sender_id) AS "borrower",
COUNT(DISTINCT tx_hash) AS "Total borrows transactions",
SUM(amount_usd) AS "Total borrowed Volume",
AVG(amount_usd) AS "avg borrowed amount"
FROM
near.defi.ez_lending
WHERE
symbol IN (
'USDT',
'USDt',
'DAI',
'FRAX',
'USDT.e',
'USDC.e',
'USN'
)
AND actions IN ('borrow')
Last run: about 8 hours ago
1
45B
11s