Elprognerd3- Total new users in 2023
    Updated 2023-04-13
    select
    count(user) as "Total Number of New Users in 2023"
    from (
    select
    tx_sender as user,
    min(block_timestamp) as enterance_date
    from terra.core.fact_transactions
    group by 1
    )
    where enterance_date >= '2023-01-01'
    Run a query to Download Data