# on receiving block 315660 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-08-01T00:13:26Z # as written in the block header 2026-08-01T00:13:23Z $ uptime # since last reboot 00:13:26 up 35 days, 16:44, 0 users, load average: 1.41, 1.67, 1.78 $ battery.sh 146%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1547944 kB $ du -h -d1 .bitcoin/signet 320M .bitcoin/signet/indexes 21M .bitcoin/signet/wallets 458M .bitcoin/signet/blocks 4.0G .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 315660 $ BH=$(bitcoin-cli -signet getblockhash 315660); echo $BH 0000000fe313e495c5b70c0dcf051e8871920751bd1cc6a5485a1466ea355157 $ bitcoin-cli -signet getblockheader 0000000fe313e495c5b70c0dcf051e8871920751bd1cc6a5485a1466ea355157 { "hash": "0000000fe313e495c5b70c0dcf051e8871920751bd1cc6a5485a1466ea355157", "confirmations": 1, "height": 315660, "version": 536870912, "versionHex": "20000000", "merkleroot": "f202dd83ab084d4693b80a46010baa66655651893b6ac0f4aa755c4910f9ecf8", "time": 1785543203, "mediantime": 1785540385, "nonce": 16942709, "bits": "1d14d6ea", "target": "00000014d6ea0000000000000000000000000000000000000000000000000000", "difficulty": 0.04798504544795561, "chainwork": "00000000000000000000000000000000000000000000000000000f79dc5fb4ad", "nTx": 184, "previousblockhash": "00000006ff3ca6e063027b3027526bf2e4e06216f07cbc218db560105436feb0" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ...f e313 e495 c5b7 .c.d cf.5 1e88 7192 .751 bd1c c6a5 485a 1466 ea35 5157 $ : 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 315660 sf: ...f .c.d cf.5 .751 M $ : 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 . 315660 sk: 5157 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 . 315660 ak: f59a b1 $ : Following is the jointkode 315660 jk: 5157 f59a b1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 4, "bytes": 602, "usage": 11120, "total_fee": 0.00003250, "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 226 ## Current epoch estimation is +0.61% ## 1164 of 2016, i.e. 57%, 852 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 345596.5288880452 $ bitcoin-cli -signet getnetworkhashps 2016 314495 343484.4943123722 $ bitcoin-cli -signet getnetworkhashps 2016 312479 346247.1658164694 $ bitcoin-cli -signet getblockstats 315660 { "avgfee": 1074, "avgfeerate": 2, "avgtxsize": 547, "blockhash": "0000000fe313e495c5b70c0dcf051e8871920751bd1cc6a5485a1466ea355157", "feerate_percentiles": [ 0, 0, 1, 5, 6 ], "height": 315660, "ins": 232, "maxfee": 31144, "maxfeerate": 13, "maxtxsize": 31195, "medianfee": 770, "mediantime": 1785540385, "mediantxsize": 205, "minfee": 14, "minfeerate": 0, "mintxsize": 142, "outs": 2025, "subsidy": 2500000000, "swtotal_size": 100055, "swtotal_weight": 339059, "swtxs": 182, "time": 1785543203, "total_out": 2283534827672, "total_size": 100197, "total_weight": 339627, "totalfee": 196630, "txs": 184, "utxo_increase": 1793, "utxo_size_inc": 132874, "utxo_increase_actual": 1757, "utxo_size_inc_actual": 128175 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 177273524, "totalbytessent": 4538758868, "timemillis": 1785543206504, "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 7 7 out 11 11 2 1 total 18 18 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 982, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 982 } } ### v2_peerinfo are in v2_peerinfo-signet.txt $ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c 15 "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 7338c08342087a97 8381be066ea5bfff4ec6343b2cceafdaa0d3a4b583f6d8034780bcccaecd6554 82b27e77426c9cf3 8d9b96ae5404bfa3fda413f8c9e9beb3478813a3fa3efffe614c67140fec5e73 318db5aec0bb42f2 497be3fa635a9b8efddd021e5c47d57e7af2aa9c7f370d4b57dcbe5f853d2a07 2df6270d415f3c95 446cb0cb5591af67ff2b0892560d2662bd83086a3d809dbee957d50d27b5bdb0 15efa24ad7cf7ca6 fd7502f4a1e637842e5078469a2c5ba9fb0d0e34457fb8fa55881b6a0fd2693f 35e2a230edacc2ab 3135fdc56f3c5dab003aff6c87f9f2cd2ea66dea870f0f35d6dd808d0a3fe047 38d905a743a73543 74cc20f5697a5b858506e4a526d075fca57c9a196992fc5be497804d58522b62 c0528ddd9e8cb6fc aa9152ad20b610bc03d0385da14d8870e63e986f4dcd4307262e821c1d89fe73 ed507550423d53d2 12bab1a0cbad2298cf7bdee6d8686494a3cf48bccbf0a3bca4e1a4a05ff3d9d1 c1a6a71b41d8531c 402ad7af3b8ea96606883990d7a8b91b6bcd53b29c9888c6a654a06bcd6b44b0 0d2dd137f9694120 fde334b55a65ab45642377768c57e98a29b413a3530522761e46031fbc516f9d 99a5324161152c1b 48e6d400186ed158e75d904a8e8963481aad67fa2fe60414258558675f5905bd $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ ___ , ____ __ __ __ / \/|| / / / \ __/ ||___ | __ | __ | | \ | \|/ \|/ \| | \___/ |\___/ \__/ \__/ \__/ ,----- .123 4567 89ab cdef -----, | | | .. .... ...f e313 e495 .f | | 1. c5b7 .c.d cf.5 1e88 1f | | 2. 7192 .751 bd1c c6a5 2f | | 3. 485a 1466 ea35 5157 3f | '=== ==== ==== ==== ==== ===' jk: 5157 f59a b1