# on receiving block 961100 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-08-05T01:50:23Z # as written in the block header 2026-08-05T01:50:03Z $ uptime # since last reboot 01:50:23 up 39 days, 18:21, 0 users, load average: 1.91, 3.08, 2.64 $ battery.sh 173%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1449076 kB $ du -h -d1 .bitcoin/ 12.4G .bitcoin/indexes 4.8G .bitcoin/signet 87.9M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 125.9G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.8G 475.7G 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 961100 $ BH=$(bitcoin-cli getblockhash 961100); echo $BH 000000000000000000005a6c3cda8814882b068b99f9677c97381f0b8a9e6817 $ bitcoin-cli getblockheader 000000000000000000005a6c3cda8814882b068b99f9677c97381f0b8a9e6817 { "hash": "000000000000000000005a6c3cda8814882b068b99f9677c97381f0b8a9e6817", "confirmations": 1, "height": 961100, "version": 872415232, "versionHex": "34000000", "merkleroot": "d6f05a6d9529ef5f74a46f92d246bc9a9e0a6b12d06cfc270ce2b89777bb6f75", "time": 1785894603, "mediantime": 1785893366, "nonce": 2382833337, "bits": "17023ad4", "target": "000000000000000000023ad40000000000000000000000000000000000000000", "difficulty": 126231507121868.2, "chainwork": "00000000000000000000000000000000000000013d0e647234a5c78def23cf2b", "nTx": 5784, "previousblockhash": "000000000000000000001f8e145bcbcc5064c6f39cdac1883d35209dc8077b98" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... 5a6c 3cda 8814 882b .68b 99f9 677c 9738 1f.b 8a9e 6817 $ : 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 961100 sf: .68b 1f.b 6817 $ : 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 . 961100 sk: 6817 95 $ : 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 . 961100 ak: f43d 95 $ : Following is the jointkode 961100 jk: 6817 f43d 95 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 79168, "bytes": 41464204, "usage": 230953640, "total_fee": 0.06889902, "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 166 ## Current epoch estimation is +0.02% ## 1484 of 2016, i.e. 73%, 532 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.02655544158488e+20 $ bitcoin-cli getnetworkhashps 2016 959615 9.024150401602381e+20 $ bitcoin-cli getnetworkhashps 2016 957599 9.102434559868438e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 961100, "bestblock": "000000000000000000005a6c3cda8814882b068b99f9677c97381f0b8a9e6817", "txouts": 165854743, "bogosize": 12990006071, "muhash": "b8bf7096eee26b25d6f2d75594e1bf317fe191895b14a4968844931e6b624336", "total_amount": 20065710.51033705, "total_unspendable_amount": 230.11466295, "block_info": { "prevout_spent": 3601.04083945, "coinbase": 3.13577074, "new_outputs_ex_coinbase": 3601.03006871, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 961100 { "avgfee": 186, "avgfeerate": 1, "avgtxsize": 308, "blockhash": "000000000000000000005a6c3cda8814882b068b99f9677c97381f0b8a9e6817", "feerate_percentiles": [ 0, 0, 0, 1, 3 ], "height": 961100, "ins": 6737, "maxfee": 56440, "maxfeerate": 232, "maxtxsize": 375274, "medianfee": 49, "mediantime": 1785893366, "mediantxsize": 221, "minfee": 10, "minfeerate": 0, "mintxsize": 66, "outs": 12331, "subsidy": 312500000, "swtotal_size": 1686709, "swtotal_weight": 3603628, "swtxs": 5029, "time": 1785894603, "total_out": 360103006871, "total_size": 1783764, "total_weight": 3991848, "totalfee": 1077074, "txs": 5784, "utxo_increase": 5594, "utxo_size_inc": 406723, "utxo_increase_actual": 734, "utxo_size_inc_actual": 58701 } $ bitcoin-cli getnettotals { "totalbytesrecv": 10369187623, "totalbytessent": 29686889523, "timemillis": 1785894623724, "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 22 2 24 out 10 0 10 2 total 32 2 34 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 67317, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 67317 } } $ halving.sh 961100 ===================================== Bitcoin Block Halving prediction ===================================== bc=961100 gbt=1231006505 bbt=1785894603 This is average time to mine a block (1785894603-1231006505)/961100 bts=577.3462913887302166993895 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 21 03:04:48 UTC 2028 ------------------------------------- Next palindrome will be 961169 predicted to happen at this time: Wed Aug 5 12:53:59 UTC 2026 ------------------------------------- Current mining epoch number is 476. The next fortnight happens in block 961632 and probably around this time: Sat Aug 8 15:09:11 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 12 "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 7c4f608b0cf6551c cc570924c61e83ee40945c6866fe37d61fb491e9b039caffe39b7c961aa327a9 17c5d52541864cf5 727bf350f23657318e9d6973442352be8d9c7ac21610655dc58536b73b2498ed ccd420fd617cec80 6d85490a48d530cda2708acf5d4721a7acd43c4df62c796fe988c9c1228785dc ed712570c0f6307e be0782496af2f2c40cc4dd479d8585a0b7812de66653fc1ded7881def0655d5d 3e0a6e87c1749097 005301c989fc2de3f688db45a27a1cd295590215bdd2f7dbfe38949297c4846b c49cefef72c83743 8756f662b2bbd92f57ef6e8dae94a4f28641c58ec1d5c7ddbbd15941dbf40e3a 00542cf8910da25f 6390e8ba181fe1a1600c96de5866d935a8dd574f0222abd9a6695d297f630b50 c68c34d8322e64c2 3086c94fe431b65d76cf23ef6003dec732a40606f404707f8fa480213a7055dd ddbb65ede94a56fd 6bd16a4a3465c599f766b192eee3abbcaf905066e63ff20981d99596084fadda f34eeef4f8715fe7 66c347a941a3c70c5c86ad8b386063ba5392258a37792b64de1fea7e7a41898c d1dbabe9aff4a221 18a3d78a0c8ecf35d3dc1d95f31c613a5cb7d7b4a1c8382cfeedb82e954d7997 d9b7bcd1fd5f6beb a82101616df8bf309c131c82e7a6b7a9b7176e84e81ad98b466aebb0f322a969 $ niceblack.sh $BH $BC ___ __ _ _ ___ ___ / _ \ / /_ / | / |/ _ \ / _ \ | (_) | '_ \| | | | | | | | | | \__, | (_) | | | | |_| | |_| | /_/ \___/|_| |_|\___/ \___/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. .... 5a6c 3cda 8814 1f | | 2. 882b .68b 99f9 677c 2f | | 3. 9738 1f.b 8a9e 6817 3f | '=== ==== ==== ==== ==== ===' jk: 6817 f43d 95