TRANSACTIONS | USERS | ACTIVE_DAYS | DAILY_AVERAGE_TRANSACTIONS | DAILY_AVERAGE_USERS | |
---|---|---|---|---|---|
1 | 2183536 | 254944 | 584 | 3738.931507 | 436.547945 |
Afonso_DiazGeneral
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: 28 days ago
1
45B
4s