cryptallTHALA stats 2
    Updated 2024-07-29
    SELECT
    DATE_TRUNC('week', date) AS week,
    category,
    protocol,
    symbol,
    market_cap,
    SUM(chain_tvl) AS total_chain_tvl
    FROM
    external.defillama.fact_protocol_tvl
    WHERE
    protocol ILIKE '%thala%'
    GROUP BY
    week, category, protocol, symbol, market_cap
    ORDER BY
    week, category, protocol;

    QueryRunArchived: QueryRun has been archived