iboo-jbj2MVNumber Of Transactions in The Algorand blockchain Over Time( April 25)
    Updated 2022-05-10
    select block_timestamp ::date as date ,
    count (DISTINCT tx_id) as transactions
    from algorand.transactions
    where date >= '2022-05-02'::date - 7
    and tx_id is not NULL
    group by 1
    Run a query to Download Data