flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
Hy - RWA - sum tvl
hyperglade
Hy - RWA - sum tvl
Updated 2024-07-05
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
›
⌄
WITH
chains_data
AS
(
SELECT
defillama
.
get
(
'/v2/chains'
,
{
}
)
AS
resp_chains
)
SELECT
SUM
(
chain
.
value
:
tvl
::
FLOAT
)
AS
total_tvl
FROM
chains_data
,
LATERAL
FLATTEN
(
input
=>
chains_data
.
resp_chains
[
'data'
]
)
chain
;
Results
QueryRunArchived: QueryRun has been archived