jimmysandngno6
Updated 2022-10-17
99
1
2
3
4
5
6
7
8
9
10
›
⌄
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