cryptallTHALA stats 2
Updated 2024-07-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
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