TRADER_CATEGORY | TOTAL_TRADERS | |
---|---|---|
1 | 0-100 | 32909 |
2 | 100-500 | 11782 |
3 | 500-1000 | 4228 |
4 | 1000-5000 | 4845 |
5 | 5001-10000 | 823 |
6 | 10000-50000 | 1036 |
7 | 50000-100000 | 240 |
8 | 100000+ | 12740 |
datavortexTraders Category
Updated 2025-03-02
999
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 all_trades AS (
SELECT
'Ethereum' AS chain,
origin_from_address,
SUM(amount_in_usd) AS total_volume
FROM
ethereum.defi.ez_dex_swaps
WHERE
pool_name IN (
'USD0-LBTC 3000 60 UNI-V3 LP',
'WBTC-LBTC 100 1 UNI-V3 LP',
'eBTC-LBTC 500 10 UNI-V3 LP',
'LBTC-WETH',
'LBTC-cbBTC 500 10 UNI-V3 LP',
'WBTC-LBTC 500 10 UNI-V3 LP'
)
GROUP BY
1,
2
UNION
ALL
SELECT
'Base' AS chain,
origin_from_address,
SUM(amount_in_usd) AS total_volume
FROM
base.defi.ez_dex_swaps
WHERE
pool_name IN (
'cbBTC-LBTC 3000 60 UNI-V3 LP',
'cbBTC-0xeca...11c1 0 1 ASLP',
'Balancer LBTC/cbBTC',
'cbBTC-LBTC'
)
GROUP BY
1,
Last run: 2 months ago
8
151B
4s