flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
fee amount paid out each day
elsina
fee amount paid out each day
Updated 2022-05-23
Copy Reference
Fork
9
1
2
3
4
5
6
›
⌄
select
block_timestamp
::
date
as
day
,
sum
(
REPLACE
(
fee
,
NVL
(
REGEXP_SUBSTR
(
fee
,
'i.*'
)
,
REGEXP_SUBSTR
(
fee
,
'u.*'
)
)
,
''
)
::
decimal
/
pow
(
10
,
6
)
)
as
fee_amount
from
osmosis
.
core
.
fact_transactions
where
BLOCK_TIMESTAMP
::
date
>=
CURRENT_DATE
-
30
group
by
1
Results
Run a query to Download Data