freemartianTotal Transactions - single
    Updated 2022-12-06
    select
    count(tx_id) as transactions_count,
    count(distinct tx_sender) as unique_wallets,
    sum(fee) as total_fee_luna
    from terra.core.fact_transactions
    where TX_SUCCEEDED = 'TRUE'
    and block_timestamp >= CURRENT_DATE - {{Past_X_Days}}



    Run a query to Download Data