Afonso_DiazGrouping swappers
Updated 2025-03-30
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
transfers as (
select
tx_hash,
block_timestamp,
origin_from_address,
'ETH' as symbol,
amount,
amount_usd,
from_address,
to_address
from
boba.core.ez_native_transfers
where
origin_from_address in (from_address, to_address)
and origin_to_address = '0xac4c6e212a361c968f1725b4d055b47e63f80b75'
union all
select
tx_hash,
block_timestamp,
origin_from_address,
symbol,
amount,
amount_usd,
from_address,
to_address
from
boba.core.ez_token_transfers
where
origin_from_address in (from_address, to_address)
and origin_to_address = '0xac4c6e212a361c968f1725b4d055b47e63f80b75'
),
QueryRunArchived: QueryRun has been archived