mr_sami7-pmCkDGStep 1: How much have I spent on fees?
    Updated 2021-12-11

    SELECT
    -- date_trunc('week', block_timestamp) as date,
    sum(tx_fee) as total_tx_fees_paid,
    sum(fee_usd) as total_tx_fees_paid_usd
    FROM ethereum.transactions
    WHERE
    from_address = lower('0x4a11Fa53abA6DbC197d2980De951F282ab861b8F')
    -- group by 1

    Run a query to Download Data