# on receiving block 958031 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-07-14T15:29:15Z # as written in the block header 2026-07-14T15:28:54Z $ uptime # since last reboot 15:29:15 up 18 days, 8:00, 0 users, load average: 1.07, 0.83, 0.84 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2129180 kB $ du -h -d1 .bitcoin/ 12.4G .bitcoin/indexes 4.7G .bitcoin/signet 2.5M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.7G .bitcoin/chainstate 125.7G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.8G 475.6G 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 getblockcount); echo $BC 958031 $ BH=$(bitcoin-cli getblockhash 958031); echo $BH 000000000000000000003a72f8e2d70546b8c34ad8d5fc867bbd129962d79f17 $ bitcoin-cli getblockheader 000000000000000000003a72f8e2d70546b8c34ad8d5fc867bbd129962d79f17 { "hash": "000000000000000000003a72f8e2d70546b8c34ad8d5fc867bbd129962d79f17", "confirmations": 1, "height": 958031, "version": 537026560, "versionHex": "20026000", "merkleroot": "d6a85ad744df089ea5faa1b58727e88dd66b8ad2fc8012c0d4ae8aff4f575508", "time": 1784042934, "mediantime": 1784041498, "nonce": 1294125715, "bits": "1702369d", "target": "00000000000000000002369d0000000000000000000000000000000000000000", "difficulty": 127170500429035.2, "chainwork": "000000000000000000000000000000000000000137a8bff64fc99511a18699e0", "nTx": 6942, "previousblockhash": "000000000000000000001bd64a31832350cf46039b7858e8d1a525143477a355" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... 3a72 f8e2 d7.5 46b8 c34a d8d5 fc86 7bbd 1299 62d7 9f17 $ : 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 958031 sf: d7.5 9f17 $ : 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 . 958031 sk: 9f17 a5 $ : 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 . 958031 ak: 2.d. a5 $ : Following is the jointkode 958031 jk: 9f17 2.d. a5 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 86144, "bytes": 42577581, "usage": 238166192, "total_fee": 0.07364989, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 172 ## Current epoch estimation is +0.58% ## 431 of 2016, i.e. 21%, 1585 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.156122417857975e+20 $ bitcoin-cli getnetworkhashps 2016 957599 9.102434559868438e+20 $ bitcoin-cli getnetworkhashps 2016 955583 9.577176399839705e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 958031, "bestblock": "000000000000000000003a72f8e2d70546b8c34ad8d5fc867bbd129962d79f17", "txouts": 166284970, "bogosize": 13022853979, "muhash": "da58b58331b20ee63a0fb64efc1cb509a1b6a6940017c6b3bf44a98ef442283b", "total_amount": 20056119.88588182, "total_unspendable_amount": 230.11411818, "block_info": { "prevout_spent": 5844.13552771, "coinbase": 3.13306512, "new_outputs_ex_coinbase": 5844.12746259, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 958031 { "avgfee": 116, "avgfeerate": 0, "avgtxsize": 223, "blockhash": "000000000000000000003a72f8e2d70546b8c34ad8d5fc867bbd129962d79f17", "feerate_percentiles": [ 0, 0, 0, 0, 2 ], "height": 958031, "ins": 7405, "maxfee": 23684, "maxfeerate": 125, "maxtxsize": 4380, "medianfee": 47, "mediantime": 1784041498, "mediantxsize": 221, "minfee": 10, "minfeerate": 0, "mintxsize": 94, "outs": 14273, "subsidy": 312500000, "swtotal_size": 1478807, "swtotal_weight": 3702599, "swtxs": 6294, "time": 1784042934, "total_out": 584412746259, "total_size": 1551114, "total_weight": 3991827, "totalfee": 806512, "txs": 6942, "utxo_increase": 6868, "utxo_size_inc": 489974, "utxo_increase_actual": 534, "utxo_size_inc_actual": 39054 } $ bitcoin-cli getnettotals { "totalbytesrecv": 396663537, "totalbytessent": 1059045379, "timemillis": 1784042955615, "uploadtarget": { "timeframe": 86400, "target": 0, "target_reached": false, "serve_historical_blocks": true, "bytes_left_in_cycle": 0, "time_left_in_cycle": 0 } } $ bitcoin-cli -netinfo Bitcoin Core client v31.1.0 - server 70016/Satoshi:31.1.0/ ipv4 npr total block in 15 2 17 out 10 0 10 2 total 25 2 27 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70534, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70534 } } $ halving.sh 958031 ===================================== Bitcoin Block Halving prediction ===================================== bc=958031 gbt=1231006505 bbt=1784042934 This is average time to mine a block (1784042934-1231006505)/958031 bts=577.2630026971959182991799 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Mon Mar 20 02:47:15 UTC 2028 ------------------------------------- Next palindrome will be 958859 predicted to happen at this time: Mon Jul 20 04:15:07 UTC 2026 ------------------------------------- Current mining epoch number is 475. The next fortnight happens in block 959616 and probably around this time: Sat Jul 25 05:38:15 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 9 "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 f6f49f52d9b35cce 9db383bca85562a43fac3fe338ecaa89f63073b4cd08c431cdb434f8fa8923b7 21738575034e4762 62870db9ce479235aab706f3d9705a80a2cab5547ac49f41c66bcb422c1f6f88 e69c06d7a22816c1 53b1748c4542f34864a981c2051b1223713abdc628e4dd05529d39eccf58ed47 ccfcf89fb0868515 5236f2cde543af1cc2f3c5f6a11164c55728de30c67b234d2ef60af41025e2ad 2bce911387a021a9 a77e3b5cb92b624d62d24d2dfea174a15090bb3d3c6c6086e3918c4398b808d3 2601ddc55b6e4c78 14197987890edc8e32c8ad5e36ef5a9c169957a3d9cd33333031deeff9d7165a 1a77173a53970a61 f6b57df4efa9937fa58e8072241bcfe8b7d59de9285c07bf4450e5f14361ffb3 6b50fff0d8c99fdb cb002f760bae09c2ae4bc33b2536f1537ecf3c52380cd2cbc81cf3ada31b4364 9d158a6ff59daf10 8eff7e8903cf926114bb222304fa42b33a0799844a299f2b063f98765d86c503 $ niceblack.sh $BH $BC ___ ____ ___ ___ _____ _ / _ \| ___| ( _ ) / _ \___ // | | (_) |___ \ / _ \ | | | ||_ \| | \__, |___) | (_) | | |_| |__) | | /_/|____/ \___/ \___/____/|_| ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. .... 3a72 f8e2 d7.5 1f | | 2. 46b8 c34a d8d5 fc86 2f | | 3. 7bbd 1299 62d7 9f17 3f | '=== ==== ==== ==== ==== ===' jk: 9f17 2.d. a5