0xnirmalAlgorand DAU and TXN Count
    Updated 2022-11-23
    SELECT
    block_timestamp::date as days,
    /* count(distinct TX_SENDER) as dau, */
    count(*) as txn
    from algorand.core.fact_transaction
    group by days
    order by days
    Run a query to Download Data