flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
Untitled Query
Madi
Untitled Query
Updated 2023-01-03
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
9
›
⌄
with
df
as
(
select
RECORDED_AT
as
block_timestamp
,
TOTAL_SUPPLY
from
osmosis
.
core
.
dim_prices
where
symbol
=
'OSMO'
)
select
date_trunc
(
'day'
,
block_timestamp
)
as
date
,
round
(
avg
(
TOTAL_SUPPLY
)
,
2
)
as
circsuppl
from
df
group
by
1
Results
Run a query to Download Data