flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
fees derived from transaction
iboo-jbj2MV
fees derived from transaction
Updated 2022-03-31
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
9
›
⌄
SELECT
date_trunc
(
'day'
,
block_timestamp
)
as
day
,
--mld
fee
[
0
]
:
denom
::
string
as
currency
,
sum
(
fee
[
0
]
:
amount
)
/
POW
(
10
,
6
)
as
total_fee
FROM
terra
.
transactions
WHERE
currency
IS
NOT
NULL
and
(
currency
=
'uusd'
)
GROUP
BY
1
,
2
ORDER
BY
1
DESC
Results
Run a query to Download Data