SYMBOL | TRANSACTIONS | USERS | VOLUME_USD | AVERAGE_AMOUNT_USD | |
---|---|---|---|---|---|
1 | weETH.base | 1597 | 522 | 25431652.11 | 15128.88287329 |
2 | DAI | 11442 | 4046 | 88443755.71 | 7290.121637817 |
3 | wstETH | 41471 | 9106 | 359538654.2 | 8383.590313855 |
4 | WELL | 2400 | 487 | 8060908.36 | 3336.468692053 |
5 | rETH | 8438 | 5733 | 21314863.41 | 2465.856479639 |
6 | AERO | 65521 | 9851 | 506045796.53 | 7538.632689231 |
7 | USDC | 138502 | 36590 | 8437161000.86 | 58024.847673824 |
8 | cbETH | 21450 | 11760 | 125239499.48 | 5692.963292877 |
9 | EURC | 7844 | 1023 | 264170303.24 | 29084.036468127 |
10 | USDbC | 36139 | 22097 | 151895084.11 | 4184.322308201 |
11 | VIRTUAL | 1778 | 598 | 2475636.64 | 1378.416837416 |
12 | cbBTC | 24687 | 2252 | 400968447.49 | 15635.345973484 |
13 | WETH | 605344 | 4786 | 9868874971.81 | 16045.437945381 |
Afonso_DiazDeposit Assets
Updated 2025-03-14
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
main as (
select
tx_hash,
block_timestamp,
borrower as user,
token_symbol as symbol,
amount_usd,
'Borrow' as event_name
from
base.defi.ez_lending_borrows
where
platform = 'Moonwell'
union all
select
tx_hash,
block_timestamp,
depositor as user,
token_symbol as symbol,
amount_usd,
'Deposit' as event_name
from
base.defi.ez_lending_deposits
where
platform = 'Moonwell'
union all
select
tx_hash,
block_timestamp,
depositor as user,
token_symbol as symbol,
Last run: 21 days ago
13
633B
3s