RayyykTHORChain RUNE/FOX Pool (Pool Liquidity)
    Updated 23 hours ago
    with table_1 as (select day,
    asset_liquidity as "FOX Liquidity",
    rune_liquidity as "RUNE Liquidity",
    asset_liquidity * asset_price_usd as fox_liquidity_usd,
    rune_liquidity * rune_price_usd as rune_liquidity_usd,
    fox_liquidity_usd + rune_liquidity_usd as "Total Liquidity USD",
    case when '{{start_date}}' = '' then '10/01/2021'
    else '{{start_date}}'
    end as start_date,
    case when '{{end_date}}' = '' then current_date - 1
    else '{{end_date}}'
    end as end_date,
    row_number() over (partition by date_trunc('{{granularity}}', day) order by day desc) as rn
    from thorchain.defi.fact_daily_pool_stats
    where pool_name = 'ETH.FOX-0XC770EEFAD204B5180DF6A14EE197D99D808EE52D'
    and day >= start_date and day <= end_date)

    select date_trunc('{{granularity}}', day) as day,
    "FOX Liquidity",
    "RUNE Liquidity",
    fox_liquidity_usd,
    rune_liquidity_usd,
    "Total Liquidity USD",
    rn
    from table_1
    where rn = 1
    order by 1 desc
    limit 1000
    Last run: about 23 hours agoAuto-refreshes every 24 hours
    DAY
    FOX Liquidity
    RUNE Liquidity
    FOX_LIQUIDITY_USD
    RUNE_LIQUIDITY_USD
    Total Liquidity USD
    RN
    1
    2025-04-12 00:00:00.0001406648.2534342227696.4350905433676.24067108532476.96976607166153.2104371561
    2
    2025-04-11 00:00:00.0001384370.2754600728136.931918532316.83527164432101.02240017564417.8576718191
    3
    2025-04-10 00:00:00.0001403863.9591967627744.3152734430646.24545213831111.76359606161758.0090481991
    4
    2025-04-09 00:00:00.0001387360.1411304828069.3021618232262.15426528730184.16504416362446.319309451
    5
    2025-04-08 00:00:00.0001389252.5330044828022.8678431328881.42221786230035.39280046358916.8150183241
    6
    2025-04-07 00:00:00.0001425418.2400189628896.0285486531119.85822514331003.88874736862123.7469725111
    7
    2025-04-06 00:00:00.0001422384.5527621728947.8688994531398.26287922732944.11607167264342.3789508981
    8
    2025-04-05 00:00:00.0001361078.5138442930241.4394412235101.48352816335188.88531210270290.3688402651
    9
    2025-04-04 00:00:00.0001372920.6708587229978.261879535255.17654227735155.85452088770411.0310631641
    10
    2025-04-03 00:00:00.0001388228.3029972829574.8213110834533.96243766134590.45750556969124.4199432311
    11
    2025-04-02 00:00:00.0001383087.7734466129680.250295334736.58869640736099.62466386370836.2133602711
    12
    2025-04-01 00:00:00.0001346073.2608209330489.2448641937919.68243398237735.65612919575655.3385631771
    13
    2025-03-31 00:00:00.0001337671.5504043730677.2138508836620.74074322936242.39838762372863.1391308511
    14
    2025-03-30 00:00:00.0001323180.5948905431011.2252003736496.27137628736824.04737808973320.3187543771
    15
    2025-03-29 00:00:00.0001311299.6476420431291.6893444636807.08078113937222.82563204874029.9064131871
    16
    2025-03-28 00:00:00.0001323151.311511531010.7852193538083.05722607538538.25293634176621.3101624151
    17
    2025-03-27 00:00:00.0001342427.918488630564.8755398540310.22389124640721.84626323681032.0701544811
    18
    2025-03-26 00:00:00.0001326990.086344830910.6837834540807.93247721141092.32886821481900.2613454241
    19
    2025-03-25 00:00:00.0001316742.1518646231117.9856843940656.4505731440693.8132403181350.263813451
    20
    2025-03-24 00:00:00.0001300084.0290298631509.4148755141637.04568749842096.36505277283733.410740271
    ...
    1000
    110KB
    2s