freemartianWeekly Active Wallets - kimia 2
    Updated 2022-05-05
    with wallets as (
    select tx_from, count (*) as number, date_trunc('week', block_timestamp) as DATE
    from terra.transactions
    where tx_status = 'SUCCEEDED'
    group by tx_from, date
    )

    select count(number), DATE
    from wallets
    where number >= 7
    group by DATE
    Run a query to Download Data