datavortexrandom-crimson
    Updated 2024-11-18
    SELECT
    tvl.date AS "Date",
    tvl.chain AS "Chain",
    tvl.tvl_usd AS "TVL (USD)"
    FROM
    external.defillama.fact_chain_tvl tvl
    WHERE
    tvl.chain = 'NEAR'
    ORDER BY
    tvl.date DESC -- Sort by the most recent date first
    LIMIT 1; -- Limit to the latest record

    QueryRunArchived: QueryRun has been archived