# on receiving block 955401 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-25T21:44:48Z # as written in the block header 2026-06-25T21:44:01Z $ uptime # since last reboot 21:44:48 up 12:39, 0 users, load average: 0.51, 0.59, 0.82 $ battery.sh 98%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2322400 kB $ du -h -d1 .bitcoin/ 12.3G .bitcoin/indexes 4.6G .bitcoin/signet 2.6M .bitcoin/wallets 97.6G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 125.3G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.7G 475.7G 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 955401 $ BH=$(bitcoin-cli getblockhash 955401); echo $BH 00000000000000000001e3b317f092a79688ec8b9eaf5730c2fac80d255d9c87 $ bitcoin-cli getblockheader 00000000000000000001e3b317f092a79688ec8b9eaf5730c2fac80d255d9c87 { "hash": "00000000000000000001e3b317f092a79688ec8b9eaf5730c2fac80d255d9c87", "confirmations": 1, "height": 955401, "version": 568901632, "versionHex": "21e8c000", "merkleroot": "ea9b17bdb7314d2f91d8caabf5488beff416bf91d5cec5c36db7c0e50a2adbae", "time": 1782423841, "mediantime": 1782422317, "nonce": 126810057, "bits": "170240c3", "target": "0000000000000000000240c30000000000000000000000000000000000000000", "difficulty": 124932866006548.2, "chainwork": "000000000000000000000000000000000000000132d5f5d4f20877296f015a92", "nTx": 4834, "previousblockhash": "000000000000000000000dcbfabb98ec5fc61411f8a05634c58c679c004ea84e" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 e3b3 17f. 92a7 9688 ec8b 9eaf 573. c2fa c8.d 255d 9c87 $ : 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 955401 sf: ...1 17f. 573. c8.d 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 . 955401 sk: 9c87 84 $ : 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 . 955401 ak: 6654 84 $ : Following is the jointkode 955401 jk: 9c87 6654 84 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 36997, "bytes": 8223548, "usage": 56479808, "total_fee": 0.02283950, "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 277 ## Current epoch estimation is +6.59% ## 1833 of 2016, i.e. 90%, 183 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.528715333689643e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 955401, "bestblock": "00000000000000000001e3b317f092a79688ec8b9eaf5730c2fac80d255d9c87", "txouts": 165970698, "bogosize": 12999437623, "muhash": "1fc6e9af57e3fff992120735bb691c36d6e140bb486dc5fa631b6cebe30cf3d0", "total_amount": 20047901.13966005, "total_unspendable_amount": 230.11033995, "block_info": { "prevout_spent": 15711.87139026, "coinbase": 3.14838279, "new_outputs_ex_coinbase": 15711.84800747, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 955401 { "avgfee": 483, "avgfeerate": 2, "avgtxsize": 319, "blockhash": "00000000000000000001e3b317f092a79688ec8b9eaf5730c2fac80d255d9c87", "feerate_percentiles": [ 0, 0, 1, 2, 3 ], "height": 955401, "ins": 7363, "maxfee": 159800, "maxfeerate": 1005, "maxtxsize": 59044, "medianfee": 141, "mediantime": 1782422317, "mediantxsize": 221, "minfee": 21, "minfeerate": 0, "mintxsize": 150, "outs": 11842, "subsidy": 312500000, "swtotal_size": 1433181, "swtotal_weight": 3542247, "swtxs": 4697, "time": 1782423841, "total_out": 1571184800747, "total_size": 1546443, "total_weight": 3995295, "totalfee": 2338279, "txs": 4834, "utxo_increase": 4479, "utxo_size_inc": 323700, "utxo_increase_actual": 1612, "utxo_size_inc_actual": 117735 } $ bitcoin-cli getnettotals { "totalbytesrecv": 290651507, "totalbytessent": 513155633, "timemillis": 1782423889284, "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 total block in 15 15 out 10 10 2 total 25 25 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70434, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70434 } } $ halving.sh 955401 ===================================== Bitcoin Block Halving prediction ===================================== bc=955401 gbt=1231006505 bbt=1782423841 This is average time to mine a block (1782423841-1231006505)/955401 bts=577.1574018057320374041502 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sat Mar 18 19:59:14 UTC 2028 ------------------------------------- Next palindrome will be 955559 predicted to happen at this time: Fri Jun 26 23:03:51 UTC 2026 ------------------------------------- Current mining epoch number is 473. The next fortnight happens in block 955584 and probably around this time: Sat Jun 27 03:04:20 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 b0265499fe63fbac 0d95a79b0c5e7011aabe977dfeb813e363e5b86ef90638c932a9c15f0599b5a9 157efba16f6a0113 d40175815edaed7ca8c6fe8ed822c9a78ecdd697e4685673a7a127b63a6689dd f5bb70896a636fcd 9fed19035d79e89c2663836b4ff3d3eee330ed8dfcd4fc89004f438b7c0af2db d8319943296c3653 476914b67f537348797ced17ad88393600bd30f0e911eb4543c0b287a3806820 5cbe4c270c2c8668 7db1d99c138b08079e0bd45021f7c2abe2764d6c2e11733dd48132f342200126 1fe93c760a32122e 21082ad96cedc0ea145f3f446047b9bdee48aac7ea8ceef5eaed5d034c2347ae 78f8241f35fbf41b 01b97a218c30ef5ca19fd9799d08dcce0aede59059de1d89b193220fe5c977db b7a978c7ce7e2ac4 74b13cc37fb457361b8d091eeb0f3e0a13e8c6e1b4bd062b58ae9e8e4c4a1699 90cf7bd9e346bd74 30d32c13774f45e2e541b7573dba0d3d7f224e5837e7853254fa3e45c3a48a4f $ niceblack.sh $BH $BC ____ ____________ / __ \/ ____/ ____/ / /_/ /___ \/___ \ \__, /___/ /___/ / /____/_____/_____/ __ __ ____ ___ / // / / __ < / / // /_/ / / / / /__ __/ /_/ / / /_/ \____/_/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 e3b3 17f. 92a7 1f | | 2. 9688 ec8b 9eaf 573. 2f | | 3. c2fa c8.d 255d 9c87 3f | '=== ==== ==== ==== ==== ===' jk: 9c87 6654 84