HosseinUntitled Query
    Updated 2023-01-05
    with t as (
    select
    from_address as address,
    block_timestamp
    from optimism.core.fact_transactions
    union all

    select
    to_address as address,
    block_timestamp
    from optimism.core.fact_transactions
    )

    select count(distinct address) as users_count from t
    where block_timestamp::date >= '2022-01-01'
    Run a query to Download Data