mucryptoCombined TVL 2024-08-28 09:41 PM
    Updated 2024-08-28
    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 = 'Gaming'
    group by 1
    QueryRunArchived: QueryRun has been archived