Hessishuni - tokens arb traders lvl
Updated 2024-09-17
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
tokens_list as
(SELECT block_timestamp,
PLATFORM,
TOKEN_IN as token,
TX_HASH,
origin_from_address as trader
from arbitrum.defi.ez_dex_swaps
where
PLATFORM ilike '%uniswap%'
union
SELECT block_timestamp,
PLATFORM,
TOKEN_out as token,
TX_HASH,
origin_from_address as trader
from arbitrum.defi.ez_dex_swaps
where
PLATFORM ilike '%uniswap%'),
valid_tokens as (
select DISTINCT token
from tokens_list
GROUP by 1
having count(distinct tx_hash) > 9),
tokensx as (
SELECT
DISTINCT token ,
QueryRunArchived: QueryRun has been archived