hessCurrent Pools TVL [USD]
    Updated 2025-01-29
    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
    CURRENT_POOL_SIZE
    1
    192048331.114038
    1
    20B
    2s