select
    date(block_timestamp) as date,
    count(tx_hash) as transactions,
    sum(avax_value) as avax_value
    from
    avalanche.core.fact_transactions
    group by
    1
    order by
    date asc
    Run a query to Download Data