flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Currently total supply(USD)
0-MID
Currently total supply(USD)
Updated 2023-04-13
Copy Reference
Fork
9
1
2
3
4
5
6
7
›
⌄
with
tab1
as
(
select
BLOCK_HOUR
::
date
as
date
,
UNDERLYING_SYMBOL
,
avg
(
SUPPLY_USD
)
as
supply_amount
from
ethereum
.
compound
.
ez_market_stats
where
date
=
current_date
-
1
group
by
1
,
2
)
select
sum
(
supply_amount
)
as
Currently_supply_amount
from
tab1
Results
Run a query to Download Data