LATEST_BLOCK | N_TRANSACTION | ACTIVE_ACCOUNTS | TRANSACTION_COUNT_SUCCESS_ | TRANSACTION_COUNT_FAILED_ | SUCCESS_RATE | TOTAL_FEE_BTC | TOTAL_FEE_USD | AVERAGE_FEE_USD | |
---|---|---|---|---|---|---|---|---|---|
1 | 4214797 | 490507 | 30759 | 481413 | 7461 | 0.984738 | 0.8349004954 | 78524.061391679 | 0.1600875449 |
BlockTrackertotal
Updated 2025-04-30
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
›
⌄
select
max(BLOCK_NUMBER) as LATEST_BLOCK,
count(DISTINCT tx_hash) as n_transaction,
count(distinct from_address) as active_accounts,
count(DISTINCT case when TX_SUCCEEDED = 'TRUE' then tx_hash end) as TRANSACTION_COUNT_SUCCESS_,
count(DISTINCT case when TX_SUCCEEDED = 'FALSE' then tx_hash end) as TRANSACTION_COUNT_FAILED_,
TRANSACTION_COUNT_SUCCESS_ / (TRANSACTION_COUNT_SUCCESS_ + TRANSACTION_COUNT_FAILED_) as success_rate,
sum(tx_fee) as total_fee_btc,
sum(tx_fee * b.price) as total_fee_usd,
sum(tx_fee * b.price) / count(DISTINCT tx_hash) as average_fee_usd
from mezo.testnet.fact_transactions a
left join (
select
price
from crosschain.price.ez_prices_hourly
where blockchain = 'bitcoin'
and is_native = 'TRUE'
qualify row_number() over (order by hour desc) = 1
) b ON TRUE
Last run: 30 days ago
1
87B
3s