mucryptoCombined TVL of synthetic protocols 2023-11-10 08:39 PM
    Updated 2023-11-10
    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 = 'Synthetics'
    group by 1
    Run a query to Download Data