TX_COUNT_CATEGORY | NUM_SWAPPERS | |
---|---|---|
1 | 1 Transaction | 3834 |
2 | 2 Transactions | 829 |
3 | >10 Transactions | 617 |
4 | 3-5 Transactions | 562 |
5 | 6-10 Transactions | 264 |
damidezDistribution of tx
Updated 2025-02-25
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
›
⌄
WITH swapper_tx_count AS (
SELECT
sender,
COUNT(distinct tx_hash) AS tx_count
FROM (
SELECT sender, tx_hash FROM avalanche.defi.ez_dex_swaps WHERE symbol_in = 'sAVAX'
UNION ALL
SELECT sender, tx_hash FROM avalanche.defi.ez_dex_swaps WHERE symbol_out = 'sAVAX'
) AS combined_swaps
GROUP BY sender
)
SELECT
CASE
WHEN tx_count = 1 THEN '1 Transaction'
WHEN tx_count = 2 THEN '2 Transactions'
WHEN tx_count BETWEEN 3 AND 5 THEN '3-5 Transactions'
WHEN tx_count BETWEEN 6 AND 10 THEN '6-10 Transactions'
ELSE '>10 Transactions'
END AS tx_count_category,
COUNT(sender) AS num_swappers
FROM swapper_tx_count
GROUP BY tx_count_category
ORDER BY num_swappers DESC;
Last run: about 2 months ago
5
123B
7s