nickpayiatis_total number of transactions over time
    Updated 2023-01-03
    select block_timestamp::Date as date, count(*) as Transactions,
    sum(Transactions) over (order by date asc rows between unbounded preceding and current row) as Cumulative_transactions
    from algorand.transactions
    group by block_timestamp::Date
    Run a query to Download Data