flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
The total volume of fees based on the day
superfly
The total volume of fees based on the day
Updated 2024-10-25
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
BLOCK_TIMESTAMP
::
date
AS
date
,
SUM
(
TX_FEE
)
AS
total_fee
FROM
base
.
core
.
fact_transactions
WHERE
TX_HASH
IN
(
SELECT
TX_HASH
FROM
base
.
defi
.
ez_dex_swaps
WHERE
PLATFORM
=
'alienbase'
)
GROUP
BY
1
ORDER
BY
1
;
Results
QueryRunArchived: QueryRun has been archived