MLDZMNno_app over tome 2022
    Updated 2022-06-30
    select
    BLOCK_TIMESTAMP::date as day,
    count(distinct TX_id) as number_apps,
    count(distinct sender) as number_wallets

    from flipside_prod_db.algorand.application_call_transaction
    where BLOCK_TIMESTAMP between '2022-01-01' and '2022-06-29'
    group by 1

    Run a query to Download Data