CURRENT_POOL_SIZE | |
---|---|
1 | 192048331.114038 |
hessCurrent Pools TVL [USD]
Updated 2025-01-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with daily_pools as (
select
pool_name,
day,
ASSET_LIQUIDITY * ASSET_PRICE_USD as pool_size_usd,
RUNE_LIQUIDITY * RUNE_PRICE_USD as rune_size_usd,
(ASSET_LIQUIDITY * ASSET_PRICE_USD) + (RUNE_LIQUIDITY * RUNE_PRICE_USD) as volume
from thorchain.defi.fact_daily_pool_stats
where day = current_date
)
select sum(volume) as current_pool_size
from daily_pools
where volume > 0
Last run: 3 months ago
1
20B
2s