iboo-jbj2MVShow how many stake actions a day are occurring.
    Updated 2022-04-28
    select block_timestamp::date as date ,
    count (DISTINCT tx_group_id) as num_staking_actions
    from algorand.application_call_transaction

    where TRY_BASE64_DECODE_STRING(tx_message :txn :apaa [0] :: STRING) = 'S'
    and app_id =710543830
    group by 1