Created
February 13, 2025 15:42
-
-
Save lfaoro/dac9bbcbf28955ad8a7dc4ad6cdfe33e to your computer and use it in GitHub Desktop.
Bitcoin's PoW in bash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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