Pine AnalyticsTEST
Updated 2024-08-15
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 tab1 as (
select
ORIGIN_FROM_ADDRESS
from ethereum.defi.ez_dex_swaps
where platform in ('uniswap-v2', 'uniswap-v3')
and block_timestamp > '2024-01-01'
UNION ALL
select
ORIGIN_FROM_ADDRESS
from arbitrum.defi.ez_dex_swaps
where platform in ('uniswap-v2', 'uniswap-v3')
and block_timestamp > '2024-01-01'
UNION ALL
select
ORIGIN_FROM_ADDRESS
from optimism.defi.ez_dex_swaps
where platform in ('uniswap-v2', 'uniswap-v3')
and block_timestamp > '2024-01-01'
UNION ALL
select
ORIGIN_FROM_ADDRESS
from bsc.defi.ez_dex_swaps
where platform in ('uniswap-v2', 'uniswap-v3')
and block_timestamp > '2024-01-01'
UNION ALL
select
QueryRunArchived: QueryRun has been archived