TYPE | CATEGORY | USERS | |
---|---|---|---|
1 | BUY | 20-30 transactions | 416 |
2 | SELL | Only One transactions | 3955 |
3 | SELL | 30-40 transactions | 94 |
4 | SELL | 40-50 transactions | 69 |
5 | BUY | 1-10 transactions | 3198 |
6 | SELL | More Than 50 transactions | 334 |
7 | BUY | 40-50 transactions | 742 |
8 | BUY | Only One transactions | 13966 |
9 | BUY | 10-20 transactions | 668 |
10 | BUY | More Than 50 transactions | 393 |
11 | SELL | 10-20 transactions | 438 |
12 | SELL | 1-10 transactions | 3173 |
13 | BUY | 30-40 transactions | 799 |
14 | SELL | 20-30 transactions | 200 |
SniperBreakdown of Users by Swaps copy
Updated 6 days ago
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
›
⌄
with Distribution_users as (select
ORIGIN_FROM_ADDRESS,
case when TOKEN_in = lower('0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7') then 'SELL'
when TOKEN_out = lower('0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7') then 'BUY' end as type,
count(DISTINCT TX_HASH) as transactions,
sum(AMOUNT_IN) as volume_avax,
sum(AMOUNT_IN_USD) as volume_usd,
avg(AMOUNT_IN_USD) as avg_volume_usd,
from avalanche.defi.ez_dex_swaps
where AMOUNT_OUT_USD is NOT NULL
and TOKEN_in =lower('0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7') OR
TOKEN_out = lower('0xFFFF003a6BAD9b743d658048742935fFFE2b6ED7')
group by 1,2)
SELECT
type,
case when transactions <= 1 then 'Only One transactions'
when transactions <= 10 then '1-10 transactions'
when transactions <= 20 then '10-20 transactions'
when transactions <= 30 then '20-30 transactions'
when transactions <= 40 then '30-40 transactions'
when transactions <= 50 then '40-50 transactions'
when transactions > 50 then 'More Than 50 transactions ' end as category ,
count(DISTINCT ORIGIN_FROM_ADDRESS) as users
FROM
Distribution_users
where category is NOT NULL
GROUP BY 1,2
----------------------------
Last run: 6 days ago
14
493B
2s