mucryptoCombined TVL 2024-06-18 12:49 AM
    Updated 2024-06-17
    with resps as
    (select defillama.get('/protocols', {}) as resp)

    select
    value:category as category,
    sum(value:tvl) as "COMBINED TVL"
    from resps,
    lateral flatten (input => resp:data)
    where category = 'Algo-Stables'
    group by 1
    QueryRunArchived: QueryRun has been archived