# on receiving block 315362 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-07-29T23:17:22Z # as written in the block header 2026-07-29T23:17:20Z $ uptime # since last reboot 23:17:22 up 33 days, 15:48, 0 users, load average: 4.81, 2.43, 1.43 $ battery.sh 144%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1619084 kB $ du -h -d1 .bitcoin/signet 318M .bitcoin/signet/indexes 21M .bitcoin/signet/wallets 532M .bitcoin/signet/blocks 3.9G .bitcoin/signet/chainstate 4.8G .bitcoin/signet $ df -h . Filesystem Size Used Avail Use% Mounted on /dev/sda3 912G 435G 476G 48% / $ bitcoind -version Bitcoin Core daemon version v31.1.0 bitcoind Copyright (C) 2009-2026 The Bitcoin Core developers Please contribute if you find Bitcoin Core useful. Visit for further information about the software. The source code is available from . This is experimental software. Distributed under the MIT software license, see the accompanying file COPYING or $ BC=$(bitcoin-cli -signet getblockcount); echo $BC 315362 $ BH=$(bitcoin-cli -signet getblockhash 315362); echo $BH 00000012b4fb3cea652b9a509fd92849c417cf79aa58b756e8098664e7520479 $ bitcoin-cli -signet getblockheader 00000012b4fb3cea652b9a509fd92849c417cf79aa58b756e8098664e7520479 { "hash": "00000012b4fb3cea652b9a509fd92849c417cf79aa58b756e8098664e7520479", "confirmations": 1, "height": 315362, "version": 536870912, "versionHex": "20000000", "merkleroot": "9d770fb4ca65e7bd8e3d96e1b342dbc370404d9f13279debe0fe91ba341b1442", "time": 1785367040, "mediantime": 1785364097, "nonce": 12277752, "bits": "1d14d6ea", "target": "00000014d6ea0000000000000000000000000000000000000000000000000000", "difficulty": 0.04798504544795561, "chainwork": "00000000000000000000000000000000000000000000000000000f6b8fa28603", "nTx": 244, "previousblockhash": "0000000531ea8f5650dc965b9849e52414b04c577388884e51314d03cbd0d18e" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ..12 b4fb 3cea 652b 9a5. 9fd9 2849 c417 cf79 aa58 b756 e8.9 8664 e752 .479 $ : 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 315362 sf: ..12 9a5. e8.9 .479 $ : 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 . 315362 sk: .479 b1 $ : 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 . 315362 ak: 5bce b1 $ : Following is the jointkode 315362 jk: 0479 5bce b1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 1, "bytes": 142, "usage": 3720, "total_fee": 0.00000480, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 1, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 25, "limitclustersize": 101000, "optimal": true } $ gmm.sh 223 ## Current epoch estimation is +0.75% ## 866 of 2016, i.e. 42%, 1150 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 346080.7562390875 $ bitcoin-cli -signet getnetworkhashps 2016 314495 343484.4943123722 $ bitcoin-cli -signet getnetworkhashps 2016 312479 346247.1658164694 $ bitcoin-cli -signet getblockstats 315362 { "avgfee": 849, "avgfeerate": 1, "avgtxsize": 850, "blockhash": "00000012b4fb3cea652b9a509fd92849c417cf79aa58b756e8098664e7520479", "feerate_percentiles": [ 0, 1, 1, 3, 3 ], "height": 315362, "ins": 659, "maxfee": 134880, "maxfeerate": 13, "maxtxsize": 125353, "medianfee": 22, "mediantime": 1785364097, "mediantxsize": 240, "minfee": 14, "minfeerate": 0, "mintxsize": 139, "outs": 1265, "subsidy": 2500000000, "swtotal_size": 206631, "swtotal_weight": 445785, "swtxs": 242, "time": 1785367040, "total_out": 2564097801071, "total_size": 206773, "total_weight": 446353, "totalfee": 206397, "txs": 244, "utxo_increase": 606, "utxo_size_inc": 47555, "utxo_increase_actual": 447, "utxo_size_inc_actual": 33408 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 54898709, "totalbytessent": 1057124706, "timemillis": 1785367042694, "uploadtarget": { "timeframe": 86400, "target": 0, "target_reached": false, "serve_historical_blocks": true, "bytes_left_in_cycle": 0, "time_left_in_cycle": 0 } } $ bitcoin-cli -signet -netinfo Bitcoin Core client v31.1.0 signet - server 70016/Satoshi:31.1.0/ ipv4 total block manual in 8 8 out 11 11 2 1 total 19 19 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 952, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 952 } } ### v2_peerinfo are in v2_peerinfo-signet.txt $ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c 17 "transport_protocol_type": "v2", $ bitcoin-cli getpeerinfo \ | jq -r '.[] | select ( .transport_protocol_type == "v2" ) | .addr + " " + .session_id' \ | while read addr sid do a=$(echo ${addr%\]*} | tr -d '\[' | md5sum | cut -b-16); printf "%s\n\t%s\n" "$a" "$sid" done 9550b66c9c9a91e5 6ef263cfb0efd20ea94ba65a1eee88fd7cbceca02fc82f9621602f67800c1c6c c47f9308f875cb6f 3af78d335d69c04e765dd04d61ae8bf31a7a83a65796840a64d2f363f2136764 acbcec5aeca1972b 8f4f681a39287c8e0609e743b1148ba70d6756e767a2855acb55e57f4ea06158 4645feb2cf906cd2 0af4c6ee891dd14a0b37ae43fd61d9090e3d9c165b4fbeadd16049897e895f31 a9e407828463a7f3 c5721ccd02a4a990f698c771ff2b9a50441e80b50af480ad242dd9c86de7fe69 7338c08342087a97 8381be066ea5bfff4ec6343b2cceafdaa0d3a4b583f6d8034780bcccaecd6554 82b27e77426c9cf3 8d9b96ae5404bfa3fda413f8c9e9beb3478813a3fa3efffe614c67140fec5e73 7407e3f1086351c1 96538e8ee2cc5af1edfda55fee5ff0174e10ddd06101d66558f6a693e837c9c8 af637ac896fc651b 1742fdf1dedba940e83ab360018cad486a3b790945dd0a93683a40d836f68448 318db5aec0bb42f2 497be3fa635a9b8efddd021e5c47d57e7af2aa9c7f370d4b57dcbe5f853d2a07 2df6270d415f3c95 446cb0cb5591af67ff2b0892560d2662bd83086a3d809dbee957d50d27b5bdb0 15efa24ad7cf7ca6 fd7502f4a1e637842e5078469a2c5ba9fb0d0e34457fb8fa55881b6a0fd2693f ccac5f3d92a6d821 23b82cfc1c91f35ec96416db897713f36e8491a1beed8b5e748270f3e3c4ba07 35e2a230edacc2ab 3135fdc56f3c5dab003aff6c87f9f2cd2ea66dea870f0f35d6dd808d0a3fe047 c5c6bb4140ac2bad 5cc42e7a9a2688bf405a8acf0e885a33a133446811f273593471ff96cce759e7 fac4f933c663d2d5 65efb918d47e94c090526f3e7ec0ba34ecbe7f2320460dc8045fe94fbcaf4ca4 38d905a743a73543 74cc20f5697a5b858506e4a526d075fca57c9a196992fc5be497804d58522b62 $ niceblack.sh $BH $BC _|_|_| _| _|_|_|_| _| _|_| _| _|_| _| _|_|_| _| _| _| _|_|_| _| _|_|_| _|_|_| _|_|_| _|_| _| _| _| _| _|_| _|_|_| _| _| _| _| _| _|_|_| _|_| _|_|_|_| ,----- .123 4567 89ab cdef -----, | | | .. .... ..12 b4fb 3cea .f | | 1. 652b 9a5. 9fd9 2849 1f | | 2. c417 cf79 aa58 b756 2f | | 3. e8.9 8664 e752 .479 3f | '=== ==== ==== ==== ==== ===' jk: .479 5bce b1