Sbhn_NPdaily gnosis stats
Updated 2022-10-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select date_trunc('day',block_timestamp) as date,
count(DISTINCT tx_hash) as txs,
sum(txs) over (order by date) as cum_txs,
count(DISTINCT from_address) as users,
sum(users) over (order by date) as cum_users,
sum(tx_fee) as fee,
avg(tx_fee) as average_fee,
avg(gas_used) as gas,
sum(cumulative_gas_used) as cum_gas
from gnosis.core.fact_transactions
where block_timestamp >= '2022-10-01'
and status = 'SUCCESS'
group by 1
order by 1
Run a query to Download Data