WITHDRAWAL_CATEGORY | TOTAL_WITHDRAWERS | TOTAL_TRANSACTIONS | TOTAL_WITHDRAWALS_USD | |
---|---|---|---|---|
1 | Mega Whales(>100000) | 1180 | 15079 | 15007827935439.4 |
2 | Whales(10000-100000) | 32 | 51 | 1667848.74221931 |
3 | Sharks(1000-10000) | 9 | 10 | 40072.935795748 |
4 | Dolphins(500-1000) | 2 | 2 | 1683.791976604 |
5 | Little Fish(100-500) | 2 | 2 | 488.864743405 |
cryptodatadiveWithdrawal Category
Updated 2025-04-06
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
›
⌄
WITH Withdraw_CTE AS (
SELECT DISTINCT
contract_name,
contract_address,
origin_from_address AS withdrawer,
(decoded_log:assets::int) AS withdrawal_amount,
tx_hash,
date_trunc('day', block_timestamp) AS withdrawal_date
FROM swell.core.ez_decoded_event_logs
WHERE event_name = 'Withdraw'
),
Withdrawal_CTE AS (
SELECT DISTINCT
contract_name,
contract_address,
origin_from_address AS withdrawer,
(decoded_log:wad::int) AS withdrawal_amount,
tx_hash,
date_trunc('day', block_timestamp) AS withdrawal_date
FROM swell.core.ez_decoded_event_logs
WHERE event_name = 'Withdrawal'
),
prices AS (
SELECT
LOWER(name) AS name,
LOWER(symbol) AS symbol,
date_trunc('day', hour) AS price_date,
price,
decimals
FROM ethereum.price.ez_prices_hourly
WHERE LOWER(symbol) IN ('swell', 'weth', 'usde', 'ena')
),
Final_CTE AS (
Last run: 21 days ago
5
231B
53s