Token | Total Withdrawal Transactions | Total Withdrawal Volume USD | |
---|---|---|---|
1 | WXDAI | 63906 | 221546392.18 |
2 | USDC | 24470 | 41023070.85 |
3 | GNO | 21455 | 38881155.27 |
4 | EURe | 18808 | 13023625.39 |
5 | WETH | 13547 | 114904995.47 |
6 | wstETH | 10816 | 79500325.94 |
7 | sDAI | 5902 | 148059520.85 |
8 | USDC.e | 1275 | 7763769.08 |
9 | WBTC | 916 | 3961168.72 |
10 | LINK | 509 | 789544.35 |
datavortexToken Used in withdrawals
Updated 2025-04-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
token_symbol AS "Token",
COUNT(DISTINCT tx_hash) AS "Total Withdrawal Transactions",
SUM(amount_usd) AS "Total Withdrawal Volume USD"
FROM
gnosis.defi.ez_lending_withdraws
WHERE
amount_usd IS NOT NULL
GROUP BY
token_symbol
ORDER BY
2 DESC,
3 DESC
LIMIT
10;
Last run: about 1 month ago
10
268B
2s