flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
LUNA price
boomer77
LUNA price
Updated 2021-11-11
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
date_trunc
(
'day'
,
block_timestamp
)
as
days
,
avg
(
event_amount
)
as
amt
,
avg
(
event_amount_usd
)
as
usd
,
usd
/
amt
as
LUNA_price
from
terra
.
transfers
where
event_currency
=
'LUNA'
and
days
<
CURRENT_DATE
group
by
1
order
by
1
desc
limit
14
Results
Run a query to Download Data