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 |
Infinite version
#!/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))
START=$((SINCE + (PERIOD * PERIOD_COUNT)))
ELAPSED=$(echo "$TAPROOT" | jq .statistics.elapsed)
COUNT=0
for BLOCK in $(seq "$SINCE" $((START + 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 "π§"
((COUNT++))
;;
(0) echo -n "π¦"
;;
esac
if (( ($BLOCK + 1) % 56 == 0 )); then echo " "; COUNT=0; fi
done
echo " $COUNT"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This version uses the new (proposed)
period_start
fields and adds testnet support (./taproot.sh -testnet
)Testnet isn't going too well this period:
