# on receiving block here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2025-04-22T01:32:41Z # as written in the block header $ uptime # since last reboot 01:32:41 up 78 days, 13:12, 0 users, load average: 0.82, 1.63, 1.95 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.6.37-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2077596 kB $ du -h -d1 .bitcoin/signet 175M .bitcoin/signet/indexes 9.3M .bitcoin/signet/wallets 546M .bitcoin/signet/blocks 995M .bitcoin/signet/chainstate 1.8G .bitcoin/signet $ df -h . Filesystem Size Used Avail Use% Mounted on /dev/sda3 912G 831G 81G 92% / $ bitcoind -version Bitcoin Core daemon version v29.0 Copyright (C) 2009-2025 The Bitcoin Core developers Please contribute if you find Bitcoin Core useful. Visit <https://bitcoincore.org/> for further information about the software. The source code is available from <https://github.com/bitcoin/bitcoin>. This is experimental software. Distributed under the MIT software license, see the accompanying file COPYING or <https://opensource.org/licenses/MIT> $ BC=$(bitcoin-cli -signet getblockcount); echo $BC $ BH=$(bitcoin-cli -signet getblockhash ); echo $BH $ bitcoin-cli -signet getblockheader $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - $ : Following was the shortform $ : from which shortkode came $ last=${BH: -4} $ a=$(echo $BH | cut -b-60 \ | fold -w 4 \ | grep -Ev '^(0000|[^0]{4})$') $ R=$(echo $a $last | cut -b-20) $ printf "%s sf: " $BC $ { echo $R | grep "$last$" \ || echo $R M; } | tr "0\n" ". " echo sf: $ : Following was the shortkode $ : from which anecdote came $ nz=$(echo $BH | fold -w 4 \ | grep -cE '^[^0]{4}$') $ z=$(echo $BH | fold -w 4 \ | grep -c '^0000$') $ nzzs=$(((${nz}<<4)+${z})) $ printf "%s sk: " $BC $ printf "%s %x\n" \ $last \ $nzzs \ | tr 0 . sk: . . $ : Following is an anecdote $ all=$(echo $BH | fold -w 4 \ | sed 's/^/0x/' \ | paste -s | tr '\t' ^) $ printf "%s ak: " $BC $ printf "%04x %02x\n" \ $(($all)) $nzzs \ | tr 0 . ak: ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 1, "bytes": 361, "usage": 1840, "total_fee": 0.00001631, "maxmempool": 300000000, "mempoolminfee": 0.00001000, "minrelaytxfee": 0.00001000, "incrementalrelayfee": 0.00001000, "unbroadcastcount": 0, "fullrbf": true } $ gmm.sh 1507