mattkstewNew Year, Wallets 4
    Updated 2023-01-05
    with tab1 as (
    select
    tx_sender,
    min(block_timestamp) as min_date

    from terra.core.fact_transactions
    group by 1
    )


    select
    count(*) as value

    from tab1
    where min_date > '2023-01-01'
    Run a query to Download Data