MLDZMNALGO number of transactions
    Updated 2022-06-30
    select
    BLOCK_TIMESTAMP::date as day,
    count(distinct tx_id) as no_TX,
    count(distinct sender) as no_users

    from flipside_prod_db.algorand.transactions
    where BLOCK_TIMESTAMP>=CURRENT_DATE-90
    group by 1
    Run a query to Download Data