StangFASTdate time
Updated 2025-03-11
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select
date_trunc( 'month' , a.block_timestamp ) as "monthly" ,
count( distinct a.tx_fee ) as "transactions"
from
avalanche.core.fact_transactions a
where
year( a.block_timestamp ) = 2024 and
a.block_timestamp >= dateadd( 'month' , -6 , current_date )
group by 1
order by 1 desc
QueryRunArchived: QueryRun has been archived