hessNumber of New Users in New year
    Updated 2023-01-11
    with sender as ( select min(block_timestamp) as dates, tx_sender
    from terra.core.fact_transactions
    group by 2)

    select count(DISTINCT(tx_sender)) as total_user
    from sender
    where dates >= '2023-01-01'

    Run a query to Download Data