WEEK | SYMBOL | Deposit | Withdraw | CUM_DEP | CUM_WITH | TVL (Token Amount) | |
---|---|---|---|---|---|---|---|
1 | 2025-02-17 00:00:00.000 | FastUSD | 0.03140957054 | -0.02 | 969.389080873 | -737.442799255 | 231.946281618 |
2 | 2025-04-28 00:00:00.000 | FastUSD | 10.560836276 | -10 | 1001.314290788 | -747.442799255 | 253.871491533 |
3 | 2024-11-18 00:00:00.000 | FastUSD | 828.708160101 | -736.536608822 | 839.959651621 | -737.422799255 | 102.536852366 |
4 | 2024-12-16 00:00:00.000 | FastUSD | 17.990469182 | 0 | 969.357671302 | -737.422799255 | 231.934872048 |
5 | 2025-04-14 00:00:00.000 | FastUSD | 19.983764009 | 0 | 990.753454511 | -737.442799255 | 253.310655256 |
6 | 2025-03-31 00:00:00.000 | FastUSD | 1.38060963 | 0 | 970.769690502 | -737.442799255 | 233.326891248 |
7 | 2024-11-11 00:00:00.000 | FastUSD | 11.25149152 | -0.8861904324 | 11.25149152 | -0.8861904324 | 10.365301087 |
8 | 2024-11-25 00:00:00.000 | FastUSD | 111.4075505 | 0 | 951.36720212 | -737.422799255 | 213.944402866 |
hessWeekly FastUSD TVL
Updated 1 day ago
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 price as ( select hour::date as date,
lower('0x63E37028c1740303e8456962E6ddf98359FE0BDc') as token_address,
avg(price) as avg_price
from sei.price.ez_prices_hourly
where symbol = 'WSEI'
and hour::date = current_date
group by 1
UNION
select hour::date as date,
lower('0x49561C4a905f7acCdaCAec5e3C17113d5f1C5a3b') as token_address,
avg(price) as avg_price
from sei.price.ez_prices_hourly
where symbol = 'ISEI'
and hour::date = current_date
group by 1
UNION
select hour::date as date,
lower('0xD43E6Bf43654A7B4985f87C77686f7900D59F1eD') as token_address,
avg(price) as avg_price
from sei.price.ez_prices_hourly
where token_address = '0x3894085ef7ff0f0aedf52e2a2704928d1ec074f1'
and hour::date = current_date
group by 1
UNION
select hour::date as date,
lower('0x1e3BcEb9AD3dc3f80820d29039C1A46e28d3A573') as token_address,
avg(price) as avg_price
from sei.price.ez_prices_hourly
where token_address = '0xb75d0b03c06a926e488e2659df1a861f860bd3d1'
and hour::date = current_date
group by 1
UNION
select hour::date as date,
lower('0x821A366145dd54c11Dab879abABc8907A084216C') as token_address,
avg(price) as avg_price
from sei.price.ez_prices_hourly
Last run: 1 day ago
8
794B
3s