Withdrawer | Total Withdraw Transactions | Total Withdrawn Volume | Avg Withdrawn Amount | |
---|---|---|---|---|
1 | 38017 | 157712 | 1163117215.20031 | 10142.19631151 |
datavortexWITHDRAWALS
Updated 2025-05-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
SELECT
COUNT(DISTINCT sender_id) AS "Withdrawer",
COUNT(DISTINCT tx_hash) AS "Total Withdraw Transactions",
SUM(amount_usd) AS "Total Withdrawn Volume",
AVG(amount_usd) AS "Avg Withdrawn Amount"
FROM
near.defi.ez_lending
WHERE
symbol IN (
'USDT',
'USDt',
'DAI',
'FRAX',
'USDT.e',
'USDC.e',
'USN'
)
AND actions ='withdraw_succeeded';
Last run: 12 days ago
1
48B
16s