mattkstewMega Terra Wallets 1
    Updated 2023-01-04
    with tab1 as (
    select
    tx_sender,
    min(block_timestamp) as min_date

    from terra.core.fact_transactions
    group by 1
    )


    select
    date_trunc('week', min_date) as date1,
    count(*) as value

    from tab1
    group by 1
    order by 1
    Run a query to Download Data