# on receiving block 954963 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-23T05:56:22Z # as written in the block header 2026-06-23T05:56:11Z $ uptime # since last reboot 05:56:22 up 95 days, 20:49, 0 users, load average: 2.10, 2.11, 2.30 $ battery.sh 176%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1211420 kB $ du -h -d1 .bitcoin/ 12.3G .bitcoin/indexes 4.7G .bitcoin/signet 2.7M .bitcoin/wallets 97.8G .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 435.0G 475.5G 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 getblockcount); echo $BC 954963 $ BH=$(bitcoin-cli getblockhash 954963); echo $BH 00000000000000000001034511c68f4c341d326fb33027b3239c66feb2a3757c $ bitcoin-cli getblockheader 00000000000000000001034511c68f4c341d326fb33027b3239c66feb2a3757c { "hash": "00000000000000000001034511c68f4c341d326fb33027b3239c66feb2a3757c", "confirmations": 1, "height": 954963, "version": 701743104, "versionHex": "29d3c000", "merkleroot": "16195618347533d32402a0c34c3b5a661f7041500d0f9bc07dd0fecb47c03958", "time": 1782194171, "mediantime": 1782193165, "nonce": 1083508889, "bits": "170240c3", "target": "0000000000000000000240c30000000000000000000000000000000000000000", "difficulty": 124932866006548.2, "chainwork": "000000000000000000000000000000000000000132138cfb1bc7aa6ebe353644", "nTx": 6362, "previousblockhash": "000000000000000000022363f14c7f78a9542a7289b1a64ac98be75345d1a38b" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 .345 11c6 8f4c 341d 326f b33. 27b3 239c 66fe b2a3 757c $ : 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 954963 sf: ...1 .345 b33. 757c $ : 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 . 954963 sk: 757c 94 $ : 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 . 954963 ak: 8d82 94 $ : Following is the jointkode 954963 jk: 757c 8d82 94 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 92994, "bytes": 41929179, "usage": 239096664, "total_fee": 0.07453334, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 29, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 177 ## Current epoch estimation is +4.41% ## 1395 of 2016, i.e. 69%, 621 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.334252087016945e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 954963, "bestblock": "00000000000000000001034511c68f4c341d326fb33027b3239c66feb2a3757c", "txouts": 165916445, "bogosize": 12995526161, "muhash": "a6963520b8e72252596fbf7305c74e09cf862fc35c52d847d2f2a0c6b623c25c", "total_amount": 20046532.38967510, "total_unspendable_amount": 230.11032490, "block_info": { "prevout_spent": 3675.02239995, "coinbase": 3.13671893, "new_outputs_ex_coinbase": 3675.01068102, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 954963 { "avgfee": 184, "avgfeerate": 1, "avgtxsize": 253, "blockhash": "00000000000000000001034511c68f4c341d326fb33027b3239c66feb2a3757c", "feerate_percentiles": [ 0, 0, 0, 1, 2 ], "height": 954963, "ins": 7588, "maxfee": 99750, "maxfeerate": 75, "maxtxsize": 53650, "medianfee": 73, "mediantime": 1782193165, "mediantxsize": 221, "minfee": 0, "minfeerate": 0, "mintxsize": 150, "outs": 13034, "subsidy": 312500000, "swtotal_size": 1596491, "swtotal_weight": 3939494, "swtxs": 6322, "time": 1782194171, "total_out": 367501068102, "total_size": 1609595, "total_weight": 3991910, "totalfee": 1171893, "txs": 6362, "utxo_increase": 5446, "utxo_size_inc": 386429, "utxo_increase_actual": -419, "utxo_size_inc_actual": -31049 } $ bitcoin-cli getnettotals { "totalbytesrecv": 20247818495, "totalbytessent": 48572392759, "timemillis": 1782194183047, "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.0.0rc4 - server 70016/Satoshi:31.0.0/ ipv4 npr total block in 16 1 17 out 10 0 10 2 total 26 1 27 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70570, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70570 } } $ halving.sh 954963 ===================================== Bitcoin Block Halving prediction ===================================== bc=954963 gbt=1231006505 bbt=1782194171 This is average time to mine a block (1782194171-1231006505)/954963 bts=577.1816173175114454576298 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sun Mar 19 03:03:00 UTC 2028 ------------------------------------- Next palindrome will be 955559 predicted to happen at this time: Sat Jun 27 05:29:31 UTC 2026 ------------------------------------- Current mining epoch number is 473. The next fortnight happens in block 955584 and probably around this time: Sat Jun 27 09:30:00 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 11 "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 84608400b0618562 7af1f5e36df042df722c4e6516461e5e0547d35e006641145b12d3f789d981f4 ef3a6d90dc8a7969 9770384ff891a3fa3925eb26e308f37ff09278693afb5f05cf84b3d9f47db49c fc278733e46be66c 1597c416e76b4fadb799ce92a460fe9ea4a2ab6664a1d37564ad0ab5d64865fe b7266bc85703b5ce 001a767265acfe17de15a76f1ebc4b5e78decef702d8f01febb1238cb3174db5 53dba6f7fe9f3b60 55440d6909918c1f52734657be00ac5095a8a717fb3ff984c4821a395f671edd 97270bf950ef68c4 86e1377c6fadaf02fb7c8425826fb87bc450d03379c8a7f5506afb5c0c5b45b1 017e52f8a139908a 967d1a2a0079ca1c898f1e98635cf0f26172572ae5d0e9730d1d06c09455b922 b01d2b787bf75f0f 9a3b6f43bbd8ee1503d89704fdd6f4d0185926db397979d85655782bf47c5784 b2aeeb4c7efa9b7e 6667c02a7910f8624aab7a120d8c5d65d4e16329f720e8fdbd4a22480c41764b b8ba77042d092702 70993f86c837221943f59e3058569536b059cb37ae008129773dfe602c30e593 47753e635e17f93a e1e9660f05fc8c2f61b3f4822b982d1700b2b3a0e7cfb987334949293e84656b $ niceblack.sh $BH $BC ##### ####### # # # # # # ###### ###### # # # # ####### # # # # # ##### ##### # ##### ##### ##### # # # # # # # # # # ###### ###### ##### # # # # # # # # # # ##### ##### ##### ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 .345 11c6 8f4c 1f | | 2. 341d 326f b33. 27b3 2f | | 3. 239c 66fe b2a3 757c 3f | '=== ==== ==== ==== ==== ===' jk: 757c 8d82 94