mucryptoNumber of protocols
    Updated 2024-09-25
    with resps as
    (select defillama.get('/protocols', {}) as resp)

    select
    value:category as category,
    count(value:name) as "NUMBER OF PROTOCOLS"
    from resps,
    lateral flatten (input => resp:data)
    group by 1
    having category = 'Governance Incentives'
    QueryRunArchived: QueryRun has been archived