h4wkTPM 2
    Updated 2023-04-16
    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