CHAIN | TVL_USD | |
---|---|---|
1 | Axelar | 962294824 |
2 | Cardano | 362901898 |
3 | Sei | 272915631 |
4 | zkSync Era | 256394045 |
5 | Thorchain | 222502577 |
6 | Kava | 208267654 |
7 | Starknet | 138866014 |
8 | Injective | 94039647 |
9 | Celo | 85957463 |
10 | Klaytn | 84914171 |
11 | Fantom | 58302394 |
Eman-RazTVL Comparision
Updated 2025-02-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with tvl_data as (select chain, tvl_usd
from external.defillama.fact_chain_tvl
where date= current_date -1
and chain in ('Thorchain','Starknet','Cardano','Sei','Kava','Fantom','Klaytn','Injective','Celo','zkSync Era')
union all
select 'Axelar' as chain, round(value:"TVL") as tvl_usd
from (select livequery.live.udf_api('https://flipsidecrypto.xyz/api/v1/queries/407cc25d-ee04-4e75-899c-85c18eeef420/data/latest')
as response), lateral FLATTEN (input => response:data))
select chain, tvl_usd
from tvl_data
order by 2 desc
Last run: 2 months ago
11
234B
4s