Afonso_DiazOvertime
Updated 2024-09-06
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
swappers as (
select
distinct origin_from_address as user
from
ethereum.core.ez_token_transfers
where
to_address = lower('0x37a8f295612602f2774d331e562be9e61B83a327')
and tx_hash in (
select
tx_hash
from
ethereum.uniswapv3.ez_swaps
)
union
select
distinct origin_from_address as user
from
ethereum.core.ez_native_transfers
where
to_address = lower('0x37a8f295612602f2774d331e562be9e61B83a327')
and tx_hash in (
select
tx_hash
from
ethereum.uniswapv3.ez_swaps
)
),
lps as (
select
QueryRunArchived: QueryRun has been archived