Updated 2025-03-11
    select
    count(distinct tx_hash) as transactions,
    count(distinct from_address) as users,
    sum(tx_fee) as total_tx_fee,
    avg(tx_fee) as average_tx_fee,
    transactions / count(distinct date_trunc('second', block_timestamp)) as tps
    from
    avalanche.dexalot.fact_transactions
    where
    year(block_timestamp) >= 2025
    QueryRunArchived: QueryRun has been archived