Skip to content

Instantly share code, notes, and snippets.

@lfaoro
Created February 13, 2025 15:42
Show Gist options
  • Save lfaoro/dac9bbcbf28955ad8a7dc4ad6cdfe33e to your computer and use it in GitHub Desktop.
Save lfaoro/dac9bbcbf28955ad8a7dc4ad6cdfe33e to your computer and use it in GitHub Desktop.
Bitcoin's PoW in bash
#!/usr/bin/env bash
set -euo pipefail
usage() {
echo "Usage: $0 <data> <difficulty>"
echo "Example: $0 \"$(date -u +%N)\" 3"
echo
echo "Parameters:"
echo " data - Input data to hash (typically a timestamp)"
echo " difficulty - Number of leading zeros required in hash"
exit 1
}
# calculate double SHA256 hash
calculate_hash() {
local input="$1"
echo -n "$input" | sha256sum | awk '{print $1}' | xxd -r -p | sha256sum | awk '{print $1}'
}
if [ "$#" -ne 2 ]; then
usage
fi
data="$1"
difficulty="$2"
if ! [[ "$difficulty" =~ ^[0-9]+$ ]]; then
echo "error: difficulty must be a positive number"
exit 1
fi
target=$(printf '%0*d' "$difficulty" 0)
# proof of work loop
nonce=0
while true; do
hash=$(calculate_hash "$data$nonce")
if [[ $hash == "$target"* ]]; then
printf "hash: %s\nnonce: %d\ndata: %s\n" "$hash" "$nonce" "$data"
exit 0
fi
((nonce++))
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment