rajsArbitrum Txs
Updated 2023-04-13Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
date_trunc('hour', block_timestamp) as date,
count(*) as no_of_txs,
count(case when status = 'SUCCESS' then 1 end) / count(*) as pct_of_successful_txs,
count(distinct from_address) as no_of_users,
avg(tx_fee) as avg_tx_fee,
sum(tx_fee) as total_tx_fee,
count(*) / (60*60) as tps
from arbitrum.core.fact_transactions
group by 1
order by 1
Run a query to Download Data