CONTRACT_NAME | TOTAL_WITHDRAWAL_TRANSACTIONS | TOTAL_WITHDRAWALS_USD | |
---|---|---|---|
1 | EVK Vault eWETH-1 | 394 | 14248292.0135335 |
2 | EVK Vault eweETH-1 | 129 | 11994197.1740786 |
3 | Wrapped Ether | 14356 | 10597371.3697604 |
4 | EVK Vault eezETH-1 | 74 | 3543043.6798312 |
5 | EVK Vault epzETH-1 | 33 | 2797679.2970735 |
6 | EVK Vault eswETH-1 | 26 | 546052.805657292 |
7 | EVK Vault ewstETH-1 | 67 | 496754.289864118 |
8 | EVK Vault ersETH-1 | 51 | 490466.865845089 |
9 | EVK Vault erswETH-1 | 46 | 312814.515118876 |
10 | tsWeethRsETH | 8 | 30998.123737646 |
11 | tsRSwellSwell | 11 | 14480.093416477 |
12 | tsRswethWeeth | 2 | 9205.226203634 |
13 | tsPzethEzeth | 6 | 3705.767280876 |
14 | tsEnaUsde | 8 | 465.682742166 |
15 | EVK Vault eWETH-2 | 1 | 80.5227 |
16 | tsSwellETH | 6 | 0.03233670771 |
cryptodatadiveWithdrawal Volume Per Asset
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 Withdraw_CTE AS (
SELECT
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
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(symbol) AS symbol,
date_trunc('day', hour) AS price_date,
price,
decimals,
ROW_NUMBER() OVER (PARTITION BY LOWER(symbol), date_trunc('day', hour) ORDER BY hour DESC) AS rn
FROM ethereum.price.ez_prices_hourly
WHERE LOWER(symbol) IN ('swell', 'weth', 'usde', 'ena')
),
filtered_prices AS (
Last run: 21 days ago
16
621B
4s