flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
transaction fee in ETH
SocioCrypto
transaction fee in ETH
Updated 2023-05-20
Copy Reference
Fork
9
1
2
3
4
5
6
7
8
›
⌄
SELECT
date_Trunc
(
'day'
,
block_timestamp
)
as
date
,
avg
(
tx_fee
)
as
avg_txn_per_daye
,
-- average transaction per block
sum
(
tx_fee
)
as
sum_tx_fee
FROM
arbitrum
.
core
.
fact_transactions
WHERE
date
<=
CURRENT_DATE
-
1
GROUP
BY
date
--, name
ORDER
BY
date
DESC
Results
Run a query to Download Data