CATEGORY | TOTAL_DEPOSITORS | |
---|---|---|
1 | Plankton (10-100) | 410 |
2 | Microbe (<10) | 354 |
3 | Shrimp (100-500) | 272 |
4 | Crab (1k-10k) | 220 |
5 | Dolphin (10k-50k) | 82 |
6 | Octopus (500-1k) | 79 |
7 | Shark (100k-500k) | 49 |
8 | Large Dolphin (50k-100k) | 26 |
9 | Whale (1M-5M) | 11 |
10 | Orca (500k-1M) | 8 |
11 | Mega Whale (>5M) | 3 |
cryptodatadiveTraders Categories
Updated 2025-04-06
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 D1 AS (
SELECT DISTINCT
contract_name,
contract_address,
origin_from_address AS depositor,
CASE
WHEN decoded_log:wad IS NOT NULL
THEN (decoded_log:wad::int)
ELSE (decoded_log:assets::int)
END AS deposit_amount,
tx_hash,
block_timestamp
FROM swell.core.ez_decoded_event_logs
WHERE event_name = 'Deposit'
),
D2 AS (
SELECT DISTINCT
contract_name,
contract_address,
origin_from_address AS depositor,
(decoded_log:assets[1]::int) AS deposit_amount,
tx_hash,
block_timestamp
FROM swell.core.ez_decoded_event_logs
WHERE event_name = 'Deposits'
),
prices AS (
SELECT
LOWER(name) AS name,
LOWER(symbol) AS symbol,
date_trunc('hour', hour) AS hour,
price,
decimals
FROM ethereum.price.ez_prices_hourly
Last run: 21 days ago
11
267B
2s