mariyaNumber of transactions on Algorand blockchain over time
    Updated 2022-05-14
    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