mattkstewMerry Christmas, Transactions 7
    Updated 2023-01-07
    select
    date_trunc('day', block_timestamp) as date1,
    status,
    count(*)


    from optimism.core.fact_transactions
    where date1 > current_date - 60
    group by 1, 2
    Run a query to Download Data