Afonso_Diazby event
Updated 2024-10-26
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 = 'Seamless'
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 = 'Seamless'
union all
select
tx_hash,
block_timestamp,
depositor as user,
token_symbol as symbol,
QueryRunArchived: QueryRun has been archived