# on receiving block 312674 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-07-11T06:58:56Z # as written in the block header 2026-07-11T06:57:50Z $ uptime # since last reboot 06:58:56 up 14 days, 23:29, 0 users, load average: 0.92, 0.78, 0.84 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2189360 kB $ du -h -d1 .bitcoin/signet 311M .bitcoin/signet/indexes 21M .bitcoin/signet/wallets 496M .bitcoin/signet/blocks 3.9G .bitcoin/signet/chainstate 4.7G .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 312674 $ BH=$(bitcoin-cli -signet getblockhash 312674); echo $BH 0000001449fcb8169a9f6f276335021eecbec41e16976afc937778daf7202ec9 $ bitcoin-cli -signet getblockheader 0000001449fcb8169a9f6f276335021eecbec41e16976afc937778daf7202ec9 { "hash": "0000001449fcb8169a9f6f276335021eecbec41e16976afc937778daf7202ec9", "confirmations": 1, "height": 312674, "version": 536870912, "versionHex": "20000000", "merkleroot": "00b223ad33e3a7ed18c7cfd66b9d38d0b270d7c2c7fbbfcefbe50c6fc4362961", "time": 1783753070, "mediantime": 1783750091, "nonce": 282597352, "bits": "1d14ab71", "target": "00000014ab710000000000000000000000000000000000000000000000000000", "difficulty": 0.04837927401929265, "chainwork": "00000000000000000000000000000000000000000000000000000ee9db7eb9de", "nTx": 68, "previousblockhash": "000000009cd309f361082773e1c0e323a6cd19642c1ac6ad11aa0c7ee9a4275f" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ..14 49fc b816 9a9f 6f27 6335 .21e ecbe c41e 1697 6afc 9377 78da f72. 2ec9 $ : 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 312674 sf: ..14 .21e f72. 2ec9 $ : 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 . 312674 sk: 2ec9 c1 $ : 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 . 312674 ak: .3e2 c1 $ : Following is the jointkode 312674 jk: 2ec9 .3e2 c1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 1, "bytes": 142, "usage": 1384, "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 174 ## Current epoch estimation is -0.17% ## 194 of 2016, i.e. 9%, 1822 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 345652.8695267458 $ bitcoin-cli -signet getnetworkhashps 2016 312479 346247.1658164694 $ bitcoin-cli -signet getnetworkhashps 2016 310463 337230.1211738132 $ bitcoin-cli -signet getblockstats 312674 { "avgfee": 82232, "avgfeerate": 77, "avgtxsize": 1698, "blockhash": "0000001449fcb8169a9f6f276335021eecbec41e16976afc937778daf7202ec9", "feerate_percentiles": [ 1, 2, 3, 3, 3 ], "height": 312674, "ins": 107, "maxfee": 5194752, "maxfeerate": 31388, "maxtxsize": 42853, "medianfee": 308, "mediantime": 1783750091, "mediantxsize": 277, "minfee": 14, "minfeerate": 0, "mintxsize": 142, "outs": 1531, "subsidy": 2500000000, "swtotal_size": 113645, "swtotal_weight": 282593, "swtxs": 66, "time": 1783753070, "total_out": 3119793229319, "total_size": 113787, "total_weight": 283161, "totalfee": 5509564, "txs": 68, "utxo_increase": 1424, "utxo_size_inc": 105773, "utxo_increase_actual": 1384, "utxo_size_inc_actual": 100704 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 566963, "totalbytessent": 11230248, "timemillis": 1783753136919, "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.0rc1 signet - server 70016/Satoshi:31.1.0/ ipv4 total block manual in 13 13 out 11 11 2 1 total 24 24 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 921, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 921 } } ### v2_peerinfo are in v2_peerinfo-signet.txt $ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c 8 "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 82b27e77426c9cf3 ba4d455ae8e6348298bfe922b76397b047229e6fd8a093609569ce3666eb3c11 d93d2e33982b129d b397aa11603c9726c4fe4e4b7f23e1ecf6ebfa95ffa6108d945cc220459316f9 d3a35fabb60fb123 89eb9ddf03d29b951cde923a7f28606e7df2ee42f02fba74bd3f62a217ba292c 318db5aec0bb42f2 3db570b1b3bd6de4944d6fc1a067ae44cb2172e0d3eb2c8af98d37ce15caaa41 9c92af8aca057984 4a3cd65a70c20953f645fea5e5af6a7cc0f01eae12af3928fa2496641334deb8 a4dda9c03849be5c a41beaf146ae3e5532a2ad5a4ca5a70901563f3982418473ef5b937e8bbeb673 9c42b131cbafed94 361b1dbdd2a2af96786c82688176f8d719caf94e1ee65b74ced5364a255ba209 cee39cec2ed5e9f2 2ed4b06236fe26f4901a2c2edd9b169ed8bf511cb88e9e60acccf3512ea805cf $ niceblack.sh $BH $BC | | | _ \ | _ \ _| | / _.__/_|\___/\__|_\_\ __ /_ |_ ) / __ /| | _ \ | / _ \ /__ _| ___/ _|___|\___/_/ _| ,----- .123 4567 89ab cdef -----, | | | .. .... ..14 49fc b816 .f | | 1. 9a9f 6f27 6335 .21e 1f | | 2. ecbe c41e 1697 6afc 2f | | 3. 9377 78da f72. 2ec9 3f | '=== ==== ==== ==== ==== ===' jk: 2ec9 .3e2 c1