TXS | ACCOUNTS | AVG_TX_PER_DAY | SUCCESS_RATE | AVG_TPS | |
---|---|---|---|---|---|
1 | 242388065 | 544470 | 4661308.942308 | 36.248203 | 53.950335 |
pouya_22Stellar Stats
Updated 2025-02-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with tps as (
select
block_timestamp::date as date,
count(distinct TRANSACTION_HASH) / (24 * 60 * 60) as tps
from stellar.core.fact_transactions
where block_timestamp >= '2025-01-01'
group by 1)
select
count(distinct transaction_hash) as txs,
count(distinct account) as accounts,
txs / count(distinct block_timestamp::date) as avg_tx_per_day,
(sum(CASE WHEN successful THEN 1 ELSE 0 end) * 100) / txs AS success_rate,
(select avg(tps) from tps) as avg_tps
from stellar.core.fact_transactions
where block_timestamp >= '2025-01-01'
Last run: 23 days ago
1
55B
24s