Multipartite(Auto-updating) USD Non-RUNE Total Value Locked (at end of each day)
    Updated 2024-01-29
    --Since the block_pool_depths table reflects when depths have changed,
    --it is more accurately representative to get end-of-day values
    --rather than start-of-day values.

    WITH
    pricerefs AS
    (
    SELECT DISTINCT DATE(block_timestamp) AS date,
    rune_e8 AS rune_e8_ref,
    asset_e8 AS asset_e8_ref
    FROM thorchain.defi.fact_block_pool_depths
    WHERE pool_name = 'BNB.BUSD-BD1'
    --At present BNB.BUSD is hard-coded as the reference pool,
    --but other approaches are to check the deepest USD stablecoin pool
    --or to take a median of the stablecoin pools.
    QUALIFY block_timestamp = MAX(block_timestamp) OVER(PARTITION BY date)
    ),

    pools_rune AS
    (
    SELECT DATE(block_timestamp) AS date, pool_name, rune_e8
    FROM thorchain.defi.fact_block_pool_depths
    WHERE (pool_name LIKE '%.%') AND (pool_name NOT LIKE 'THOR.%') AND (asset_e8 > 0) AND (rune_e8 > 0)
    QUALIFY block_timestamp = MAX(block_timestamp) OVER(PARTITION BY date, pool_name)
    ),

    pooled_rune AS
    (
    SELECT date, SUM(rune_e8) AS pooled_rune_e8
    FROM pools_rune
    GROUP BY date
    )

    SELECT pooled_rune.date,
    asset_e8_ref / rune_e8_ref AS USD_price_of_RUNE,
    POWER(10,-8) * pooled_rune_e8 AS total_pooled_RUNE,
    Last run: about 1 year agoAuto-refreshes every 24 hours
    DATE
    USD_PRICE_OF_RUNE
    TOTAL_POOLED_RUNE
    USD_NONRUNE_TVL
    1
    2024-01-29 00:00:00.0004.28808633320972.2151229142883194.462057
    2
    2024-01-28 00:00:00.0004.27708633378507.1726661142762745.72911
    3
    2024-01-27 00:00:00.0004.30290734069391.0713602146597421.326693
    4
    2024-01-26 00:00:00.0004.33053634144032.5655087147861962.210108
    5
    2024-01-25 00:00:00.0004.02843234722929.6731665139878961.029133
    6
    2024-01-24 00:00:00.0004.07336134500773.3949207140534104.816707
    7
    2024-01-23 00:00:00.0003.97045334721409.0854106137859722.867396
    8
    2024-01-22 00:00:00.0003.94704135175645.8430206138839716.343882
    9
    2024-01-21 00:00:00.0004.21221535093761.8780055147822470.188963
    10
    2024-01-20 00:00:00.0004.11549335205723.8603016144888910.107004
    11
    2024-01-19 00:00:00.0004.19685135304898.1826733148169397.242851
    12
    2024-01-18 00:00:00.0004.05599335615436.0879301144455959.464592
    13
    2024-01-17 00:00:00.0004.29234735552632.0907663152604233.696904
    14
    2024-01-16 00:00:00.0004.7300334251291.2154718162009634.987918
    15
    2024-01-15 00:00:00.0004.56500634840740.9327028159048191.402234
    16
    2024-01-14 00:00:00.0004.44726734775044.3968359154653907.369583
    17
    2024-01-13 00:00:00.0004.59066233989679.0193891156035127.866507
    18
    2024-01-12 00:00:00.0004.56232834348294.4417388156708185.483789
    19
    2024-01-11 00:00:00.0005.1151533392354.279226170806900.991383
    20
    2024-01-10 00:00:00.0005.03746733398316.2633756168242916.032318
    ...
    1001
    69KB
    180s