mexsanUntitled Query
    Updated 2021-11-22

    SELECT
    sum(fee) as total_tx_fees_paid,
    sum(fee_usd) as total_tx_fees_paid_usd
    FROM polygon.transactions
    WHERE
    from_address = lower('wallet address') OR
    to_address = lower('wallet address')

    Run a query to Download Data