PapasotAlgorand Applications daily count
    Updated 2022-06-27
    SELECT
    date_trunc('day',block_timestamp) as block_day,
    count(tx_id),
    count(sender),
    count(DISTINCT sender)
    from algorand.application_call_transaction
    where block_timestamp >= '2021-07-01'
    group by block_day
    order by block_day
    Run a query to Download Data