Orchard Actions
Every Orchard shielded transaction creates an action. Check out the amazing designs the sandblaster created.



#!/bin/bash blockStart="${1}" #1 represent 1st argumentblockEnd="${2}" #2 represent 1st argument for (( i=blockStart; i<=blockEnd; i++ ))do echo "Block: $i" actions=$(./extractOrchardActions.sh $i) #size=$(zcash-cli getblock $i | jq .size) if [ $actions -gt 0 ]; then echo $(echo $i $actions) >> blockOrchardActionsData.md fidone
And,
#!/bin/bash block="${1}" actions=$(./listBlockTXs.sh $block | xargs -n1 ./txDetails.sh | jq .orchard.actions | jq -r 'length' | paste -sd+ - | bc) echo $actions

