NuveveCryptoArchivedTerra Total Weekly Transaction Fees
    Updated 2023-02-02
    select
    date_trunc('week', block_timestamp) as week,
    sum(fee) as tx_fees
    from terra.core.fact_transactions
    where fee_denom = 'uluna'
    group by week
    order by week asc

    Run a query to Download Data