flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
Median Gas Prices
nethermindnarut
Median Gas Prices
Updated 2023-04-28
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
BLOCK_TIMESTAMP
::
DATE
AS
Day
,
MEDIAN
(
FEE
/
GAS_USED
)
AS
Gas_Price_UATOM
FROM
cosmos
.
core
.
fact_transactions
WHERE
BLOCK_TIMESTAMP
>=
{
{
start_date
}
}
AND
FEE_DENOM
=
'uatom'
GROUP
BY
BLOCK_TIMESTAMP
::
DATE
ORDER
BY
Day
;
Results
Run a query to Download Data