DATETIME | CUM_TX | TX_7D_CHANGE | TX_30D_CHANGE | CUM_USER | USER_7D_CHANGE | USER_30D_CHANGE | CUM_VOL | VOL_7D_CHANGE | VOL_30D_CHANGE | |
---|---|---|---|---|---|---|---|---|---|---|
1 | 2025-04-18 00:00:00.000 | 866381 | 3.7884 | 21.0203 | 413021 | 2.7761 | 13.5278 | 857956116242.62 | 12.79030261 | 86.133402292 |
tkvresearchyeasty-violet
Updated 7 days ago
999
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 full_table as
(
--Base
select BLOCK_TIMESTAMP,
TX_HASH,
EVENT_NAME,
INITIATOR as address,
FLASHLOAN_TOKEN_SYMBOL as token,
FLASHLOAN_AMOUNT as amt,
FLASHLOAN_AMOUNT_USD as amt_usd
from ethereum.defi.ez_lending_flashloans
where platform = 'Morpho Blue'
union all
select BLOCK_TIMESTAMP,
TX_HASH,
EVENT_NAME,
DEPOSITOR as address,
TOKEN_SYMBOL as token,
AMOUNT as amt,
AMOUNT_USD as amt_usd
from base.defi.ez_lending_deposits
where platform = 'Morpho Blue'
union all
select BLOCK_TIMESTAMP,
TX_HASH,
EVENT_NAME,
BORROWER as address,
TOKEN_SYMBOL as token,
AMOUNT as amt,
AMOUNT_USD as amt_usd
from base.defi.ez_lending_borrows
where platform = 'Morpho Blue'
union all
select BLOCK_TIMESTAMP,
TX_HASH,
EVENT_NAME,
Last run: 7 days ago
1
114B
8s