Hessishuni - tokens pol traders top 100
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
›
⌄
-- forked from uni - tokens op traders top 100 @ https://flipsidecrypto.xyz/studio/queries/5d31b543-82df-4017-b80e-0d3e3f166c20
with
tokens_list as
(SELECT block_timestamp,
PLATFORM,
TOKEN_IN as tokenx,
symbol_in as sym,
TX_HASH,
origin_from_address as trader
from polygon.defi.ez_dex_swaps
where
PLATFORM ilike '%uniswap%'
union
SELECT block_timestamp,
PLATFORM,
TOKEN_out as tokenx,
symbol_out as sym,
TX_HASH,
origin_from_address as trader
from polygon.defi.ez_dex_swaps
where
PLATFORM ilike '%uniswap%'),
valid_tokens as (
select DISTINCT tokenx
from tokens_list
GROUP by 1
having count(distinct tx_hash) > 9)
QueryRunArchived: QueryRun has been archived