rajsTerra Daily Txs
Updated 2023-01-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
-- *
date_trunc('hour', block_timestamp) as date,
sum(fee) / count(*) as avg_tx_fee,
sum(fee) as total_tx_fee,
count(*) as no_of_txs,
count(*)/(60*60) as tps,
count(distinct tx_sender) as no_of_active_users,
count(case when tx_succeeded = 'TRUE' then 1 end) / count(*) * 100 as pct_successful_txs
from terra.core.fact_transactions
group by 1
order by 1 desc
-- limit 3
Run a query to Download Data