DEPOSITOR | num deposit transactions | total dept volume | |
---|---|---|---|
1 | 0xfbcf4d80d3c267876f6795c02aab10de751da8a4 | 39507 | 1480.11 |
2 | 0xfabbdf8a77005c00edbe0000bdc000644c024322 | 9143 | 2859025.53 |
3 | 0x6bf97afe2d2c790999cded2a8523009eb8a0823f | 6388 | 5167777.83 |
4 | 0x2374da9a66e6321612fb9cca715359db1ae5ee8a | 4100 | 9174796.91 |
5 | 0xe7fefc0f713a5d7f02cc41977a5e0d69dbe7ba22 | 3642 | 1951290.19 |
6 | 0x8f8888e07d5bf2c5f4f7c14ecef37cd6d49d4581 | 1877 | 39938762.3 |
7 | 0x7421ee752e6da4f74ce5fa7f2887a4c995f13613 | 1737 | 2271.52 |
8 | 0xb75af6aac0b676857bd1e0953849593b25f6adec | 1222 | 1911517.06 |
9 | 0x66c0d9152209b51977047b9dc3b0b5bf2339b67c | 1215 | 866908.38 |
10 | 0x5ead411fc6c417689ebb1cf827f6169abf2feed8 | 1179 | 9905090.28 |
datavortexTop Depositors By Volume and Number of Deposits
Updated 2025-04-16
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
depositor,
COUNT(DISTINCT tx_hash) AS "num deposit transactions",
SUM(amount_usd) AS "total dept volume"
FROM gnosis.defi.ez_lending_deposits
GROUP BY depositor
HAVING COUNT(DISTINCT tx_hash) > 1
ORDER BY 2 DESC, 3 DESC
LIMIT 10;
Last run: about 1 month ago
10
625B
2s