Flipside TeamToken Flow- TVL
    Updated 2024-09-12
    -- forked from MLDZMN / Token Flow- TVL @ https://flipsidecrypto.xyz/MLDZMN/q/ePdBC4QPveqG/token-flow--tvl

    WITH
    base AS (
    SELECT
    livequery.live.udf_api (
    'https://api.llama.fi/v2/historicalChainTvl/Ethereum'
    ) AS response
    ),

    base2 as (
    select
    to_date(tvl.value:date::string) as date,
    tvl.value:tvl as TVL -- This TVL excluding liquid staking according to Defillama
    from base
    join lateral flatten (input => response:data) tvl
    ),

    TVL2 as (select
    DATE,
    TVL_USD -- This TVL contains liquid staking too
    from external.defillama.fact_chain_tvl
    where CHAIN = 'Ethereum'
    and date >= '{{Start_date}}'
    and date < current_date)

    select
    base2.date as day,
    TVL as "TVL (exclude liquid staking)", -- This TVL excluding liquid staking according to Defillama
    TVL_USD as "TVL (include liquid staking)"-- This TVL contains liquid staking too
    from base2
    left join tvl2 on base2.date=tvl2.DATE
    where base2.date >= '{{Start_date}}'
    and base2.date < current_date
    order by day desc;
    QueryRunArchived: QueryRun has been archived