Last active
June 12, 2021 16:44
-
-
Save mutatrum/264cfa84af5fc3dc0b107bcb3ba10893 to your computer and use it in GitHub Desktop.
Print a taproot signalling block diagram
This file contains hidden or 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
#!/bin/bash | |
BLOCKCHAININFO=$(bitcoin-cli getblockchaininfo) | |
BLOCKS=$(echo "$BLOCKCHAININFO" | jq .blocks) | |
TAPROOT=$(echo "$BLOCKCHAININFO" | jq .softforks.taproot.bip9) | |
SINCE=$(echo "$TAPROOT" | jq .since) | |
PERIOD=$(echo "$TAPROOT" | jq .statistics.period) | |
BLOCKS=$(echo "$BLOCKCHAININFO" | jq .blocks) | |
PERIOD_COUNT=$(((BLOCKS - SINCE) / PERIOD)) | |
SINCE=$((SINCE + (PERIOD * PERIOD_COUNT))) | |
ELAPSED=$(echo "$TAPROOT" | jq .statistics.elapsed) | |
for BLOCK in $(seq "$SINCE" $((SINCE + ELAPSED - 1))); do | |
HASH=$(bitcoin-cli getblockhash "$BLOCK") | |
HEADER=$(bitcoin-cli getblockheader "$HASH") | |
VERSION=$(echo "$HEADER" | jq .version) | |
SIGNAL=$(((VERSION & 3758096388) == 536870916)) | |
case $SIGNAL in | |
(1) echo -n "🟩";; | |
(0) echo -n "🟥";; | |
esac | |
if ((($BLOCK + 1) % 48 == 0)); then echo; fi | |
done | |
echo | |
PERCENTAGE=`echo $BLOCKCHAININFO | jq '.softforks.taproot.bip9.statistics | .count / .elapsed * 100'` | |
echo $PERCENTAGE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Infinite version