# on receiving block 307879 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-08T00:52:43Z # as written in the block header 2026-06-08T00:51:06Z $ uptime # since last reboot 00:52:43 up 80 days, 15:45, 0 users, load average: 1.89, 2.60, 2.74 $ battery.sh 156%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1310752 kB $ du -h -d1 .bitcoin/signet 301M .bitcoin/signet/indexes 21M .bitcoin/signet/wallets 556M .bitcoin/signet/blocks 3.7G .bitcoin/signet/chainstate 4.6G .bitcoin/signet $ df -h . Filesystem Size Used Avail Use% Mounted on /dev/sda3 912G 435G 476G 48% / $ bitcoind -version Bitcoin Core daemon version v31.0.0rc4 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 307879 $ BH=$(bitcoin-cli -signet getblockhash 307879); echo $BH 000000002ab3269ed84200678902bde40a41d0fbcc9f9205d8fb843ed8c5e938 $ bitcoin-cli -signet getblockheader 000000002ab3269ed84200678902bde40a41d0fbcc9f9205d8fb843ed8c5e938 { "hash": "000000002ab3269ed84200678902bde40a41d0fbcc9f9205d8fb843ed8c5e938", "confirmations": 1, "height": 307879, "version": 536870912, "versionHex": "20000000", "merkleroot": "ff57591720aaac7a1d954962a881b95f9d1ffe01de634828092325c351f2e727", "time": 1780879866, "mediantime": 1780876208, "nonce": 783837132, "bits": "1d1490f5", "target": "0000001490f50000000000000000000000000000000000000000000000000000", "difficulty": 0.04862263684784939, "chainwork": "00000000000000000000000000000000000000000000000000000e0312101748", "nTx": 9, "previousblockhash": "0000000fe8d4c0fa02233e2ca81e9300bf80c711194f5fec42bbefb70da59ec4" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... 2ab3 269e d842 ..67 89.2 bde4 .a41 d.fb cc9f 92.5 d8fb 843e d8c5 e938 $ : 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 307879 sf: ..67 89.2 .a41 d.fb 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 . 307879 sk: e938 92 $ : 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 . 307879 ak: .9f6 92 $ : Following is the jointkode 307879 jk: e938 .9f6 92 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 44, "bytes": 29320, "usage": 152408, "total_fee": 0.00274540, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 25, "limitclustersize": 101000, "optimal": true } $ gmm.sh 231 ## Current epoch estimation is -0.8% ## 1447 of 2016, i.e. 71%, 569 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 345158.1501888729 $ bitcoin-cli -signet getnetworkhashps 2016 306431 347971.3775737199 $ bitcoin-cli -signet getnetworkhashps 2016 304415 339567.6604445974 $ bitcoin-cli -signet getblockstats 307879 { "avgfee": 218317, "avgfeerate": 17, "avgtxsize": 12715, "blockhash": "000000002ab3269ed84200678902bde40a41d0fbcc9f9205d8fb843ed8c5e938", "feerate_percentiles": [ 17, 17, 17, 17, 17 ], "height": 307879, "ins": 10, "maxfee": 1741669, "maxfeerate": 17, "maxtxsize": 100051, "medianfee": 317, "mediantime": 1780876208, "mediantxsize": 205, "minfee": 154, "minfeerate": 1, "mintxsize": 142, "outs": 19, "subsidy": 2500000000, "swtotal_size": 101583, "swtotal_weight": 404337, "swtxs": 7, "time": 1780879866, "total_out": 82903376717, "total_size": 101725, "total_weight": 404905, "totalfee": 1746538, "txs": 9, "utxo_increase": 9, "utxo_size_inc": 100764, "utxo_increase_actual": 5, "utxo_size_inc_actual": 468 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 754692704, "totalbytessent": 20823763484, "timemillis": 1780879963613, "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.0.0rc4 signet - server 70016/Satoshi:31.0.0/ ipv4 total block manual in 2 2 out 11 11 2 1 total 13 13 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 1264, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 1264 } } ### v2_peerinfo are in v2_peerinfo-signet.txt $ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c 10 "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 efc846ec47160038 96269a130d89552a9f737bfb3f4bddbf3a01f2f1ca9895ba5c59e5d015acbe94 9c92af8aca057984 701608410c0af3d20bfd1be1cd2132402d6550db7715a0ea6885af2028c8192d 2210ce7d3be228b6 73cbd11ce85a2397abf204ff765ef2cde3781be65941b4d17c2476cce9443a8e 2c92bdda6fb6f85d 1d457d6b9a05a9e8dd8ec86a946054780b343adb47ac7d1356ddc2850deba8eb f2734dfe2ce64686 e3e2ebcb081a7c55e9bb65cbed9d00141854ea6794cd0f33e2ea2f070689fc75 563b8894485c6787 02c22093f8c98db7320d693c8b2ca21e7bdf9c111c5702d16d4264bd12a11552 a8e0ddb58abca302 c952478e7cd9e517f1228aa92b5c4175faf3835658ef1b4100e00f76373865f0 1be57ab10ba0682c 9092ad00a0a9d043c32c53ca882e64adfd1f7f398b2f001944ee56ce67da8de5 82b27e77426c9cf3 5bf5bfc1484a1dac481457b1b316b8d3e8dc289a891b876b10557c66477f5a83 2ad3fe8299c6645e 92538c9117e4c7874db46281af7e1de2b928402ca06db000b34030d246c2fcae $ niceblack.sh $BH $BC __ __ __ / / / /__ ____/ /__ / _ \/ / _ \/ __/ '_/ /_.__/_/\___/\__/_/\_\ ____ ___ _______ _______ |_ // _ \/_ ( _ )_ / _ \ _/_