Afonso_Diazgrouping txns
Updated 2024-10-25
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
main as (
select
tx_hash,
block_timestamp,
borrower as user,
token_symbol as symbol,
amount_usd,
'Borrow' as event_name
from
arbitrum.defi.ez_lending_borrows
where
platform ilike 'radiant%'
and amount_usd <1e6
union all
select
tx_hash,
block_timestamp,
depositor as user,
token_symbol as symbol,
amount_usd,
'Deposit' as event_name
from
arbitrum.defi.ez_lending_deposits
where
platform ilike 'radiant%'
and amount_usd <1e6
union all
select
tx_hash,
block_timestamp,
QueryRunArchived: QueryRun has been archived