hessTotal New Users
    Updated 2023-02-17
    with osmosis as ( select min(block_timestamp) as date, tx_from
    from osmosis.core.fact_transactions
    group by 2)
    ,
    terra as ( select min(block_timestamp) as date, TX_SENDER as tx_from
    from terra.core.fact_transactions
    group by 2)

    select 'Osmosis' as chain, count(DISTINCT(tx_from)) as total_user
    from osmosis
    where date >= '2023-01-01'
    group by 1
    UNION
    select 'Terra' as chain, count(DISTINCT(tx_from)) as total_user
    from terra
    where date >= '2023-01-01'
    group by 1

    Run a query to Download Data