zero-knowledge proofs visualized as actions, block chain, orchar

Visualizing Orchard Actions

Explore the world of Orchard shielded transactions with stunning visuals and insightful Bash scripts for data extraction and analysis.

February 12, 2025· 1 min read
63 score

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 

Related Articles