vahid-2jsEENblock and wallets per day of last 12 months
    Updated 2022-06-28
    select count(BLOCK_ID) , count(SENDER) ,date_trunc('day', block_timestamp)
    from algorand.application_call_transaction
    where
    block_timestamp > current_date - interval '12 month' and year(block_timestamp) =2021
    group by date_trunc('day', block_timestamp)
    Run a query to Download Data