ngxuan885Getting Your Feet Wet, Part 1 new wallets
    Updated 2022-03-15
    with new_wallets as ( select min(block_timestamp::date) as first_tx, TX_FROM[0] as address
    from terra.transactions GROUP by 2 )

    select first_tx,count(address) as counts
    from new_wallets where first_tx >= CURRENT_DATE - 90
    GROUP by 1 order by 1

    Run a query to Download Data