mucryptoCombined TVL
    Updated 2024-10-07
    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 = 'SoFi'
    group by 1
    QueryRunArchived: QueryRun has been archived