mucryptoNumber of cross chain protocols 2023-12-05 09:23 PM
    Updated 2023-12-05
    with resps as
    (select defillama.get('/protocols', {}) as resp)

    select
    value:category as category,
    count(value:name) as n_of_protocols
    from resps,
    lateral flatten (input => resp:data)
    group by 1
    having category = 'Cross Chain'
    Run a query to Download Data