Updated 2022-10-17
    select status,
    count(distinct from_address) as "Number of Users",
    count(distinct tx_hash) as "Number of Transactions",
    sum(xdai_value) as "Total xDAI Volume",
    sum(tx_fee) as "Total Fees"
    from
    gnosis.core.fact_transactions
    where
    block_timestamp::date between '2022-10-05' and '2022-10-08'
    group by 1
    Run a query to Download Data