vahid-2jsEENblock and wallets per day of last 6 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 '6 month'
    group by date_trunc('day', block_timestamp)
    Run a query to Download Data