PapasotArbitrum and Optimism new users
    Updated 2023-06-01
    with arbi_old as (select distinct(from_address) as arbi_old_users
    from arbitrum.core.fact_transactions
    where block_timestamp <= CURRENT_DATE - 210),

    opti_old as (select distinct(from_address) as opti_old_users
    from optimism.core.fact_transactions
    where block_timestamp <= CURRENT_DATE - 210)

    select date_trunc('day', block_timestamp) as day,
    'Arbitrum',
    count(distinct(from_address)) as new_user_count,
    count(distinct(tx_hash)) as tx_count
    from arbitrum.core.fact_transactions
    where from_address not in (select arbi_old_users from arbi_old)
    group by 1
    union
    select date_trunc('day', block_timestamp) as day,
    'Optimism',
    count(distinct(from_address)),
    count(distinct(tx_hash))
    from optimism.core.fact_transactions
    where from_address not in (select opti_old_users from opti_old)
    group by 1
    order by 1 desc
    Run a query to Download Data