h4wkTPM 2
Updated 2023-04-16
99
1
2
3
4
5
6
7
8
9
10
›
⌄
select date_trunc(week, block_timestamp) as date,
count(distinct from_address) as unique_user,
count(*)/1440/7 as tx_per_min,
case when status = 'SUCCESS' then 'Success'
else 'Fail' end as type
from optimism.core.fact_transactions
where block_timestamp::date < CURRENT_DATE and block_timestamp::date >= '2022-01-01'
group by date, type
Run a query to Download Data