flyingfish1.2. Tx & Fees All-Time
Updated 2024-12-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
select
date_trunc(day, block_timestamp) as "Date"
, count(tx_id) as "Transactions"
, count_if(succeeded) as "Successful Transactions"
, "Transactions" - "Successful Transactions" as "Failed Transactions"
, avg("Transactions") over (order by "Date" rows between 7 preceding and current row) as "7 Day Avg. Tx"
from eclipse.core.fact_transactions
where block_timestamp < current_date
group by 1
order by "Date"
QueryRunArchived: QueryRun has been archived