hessAxelar Chain TVL (USD)
    Updated 2024-09-16
    with tvl as ( select *
    from external.defillama.fact_protocol_tvl
    where protocol ilike '%axelar%')

    select date::date as date,
    chain,
    sum(chain_tvl) as tvl
    from tvl
    group by 1,2
    order by 1 asc
    QueryRunArchived: QueryRun has been archived