mo115BNB Chain Feb Tx Fees *
    Updated 2024-03-08
    -- forked from Litoshi / BNB Chain Feb Tx Fees @ https://flipsidecrypto.xyz/Litoshi/q/xDu__xySj-YL/bnb-chain-feb-tx-fees

    SELECT
    date_trunc('day',block_timestamp) as Date,
    sum(tx_fee) as Total_Transaction_Fee,
    sum(total_transaction_fee) over (order by Date) as cum_transactions
    --count(distinct tx_hash) as Transactions
    from bsc.core.fact_transactions x
    where block_timestamp::date between '2024-02-01' and '2024-02-29'
    group by 1
    order by 2


    QueryRunArchived: QueryRun has been archived