mucryptoCombined TVL, Services 2023-10-06 08:50 PM
    Updated 2023-10-06
    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 = 'Services'
    group by 1
    Run a query to Download Data