# on receiving block 957580 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-07-11T14:46:24Z # as written in the block header 2026-07-11T14:45:46Z $ uptime # since last reboot 14:46:24 up 15 days, 7:17, 0 users, load average: 0.43, 0.51, 0.65 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2198568 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.6G .bitcoin/chainstate 125.6G .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.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 957580 $ BH=$(bitcoin-cli getblockhash 957580); echo $BH 000000000000000000008e644610a3fdcd4940eaae3c2b6211a0180fad608b25 $ bitcoin-cli getblockheader 000000000000000000008e644610a3fdcd4940eaae3c2b6211a0180fad608b25 { "hash": "000000000000000000008e644610a3fdcd4940eaae3c2b6211a0180fad608b25", "confirmations": 1, "height": 957580, "version": 537812992, "versionHex": "200e6000", "merkleroot": "c1bef89077f0a66f21d0e040f4cefc376c085e1758d055f85d8cb8d69ec92b57", "time": 1783781146, "mediantime": 1783779393, "nonce": 4238591890, "bits": "17021a42", "target": "000000000000000000021a420000000000000000000000000000000000000000", "difficulty": 133869853540305.4, "chainwork": "000000000000000000000000000000000000000136dc88552a2d260a0e3c6413", "nTx": 5085, "previousblockhash": "00000000000000000000b7c00baad167fa5a897ef5c3f830236503b85b115e0d" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... 8e64 461. a3fd cd49 4.ea ae3c 2b62 11a. 18.f ad6. 8b25 $ : 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 957580 sf: 461. 4.ea 11a. 18.f 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 . 957580 sk: 8b25 65 $ : 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 . 957580 ak: 4c9e 65 $ : Following is the jointkode 957580 jk: 8b25 4c9e 65 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 86803, "bytes": 42618865, "usage": 234379192, "total_fee": 0.07456965, "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 174 ## Current epoch estimation is -4.67% ## 1996 of 2016, i.e. 99%, 20 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.129031357044497e+20 $ bitcoin-cli getnetworkhashps 2016 955583 9.577176399839705e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 957580, "bestblock": "000000000000000000008e644610a3fdcd4940eaae3c2b6211a0180fad608b25", "txouts": 166303996, "bogosize": 13024349845, "muhash": "cb0313540280c8d3244cdfbfe287718d4a556d5b015efa86e36fd69f2e3cb09a", "total_amount": 20054710.51088739, "total_unspendable_amount": 230.11411261, "block_info": { "prevout_spent": 6516.99924274, "coinbase": 3.14068279, "new_outputs_ex_coinbase": 6516.98355995, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 957580 { "avgfee": 308, "avgfeerate": 1, "avgtxsize": 316, "blockhash": "000000000000000000008e644610a3fdcd4940eaae3c2b6211a0180fad608b25", "feerate_percentiles": [ 0, 0, 1, 2, 3 ], "height": 957580, "ins": 7870, "maxfee": 32000, "maxfeerate": 100, "maxtxsize": 76272, "medianfee": 58, "mediantime": 1783779393, "mediantxsize": 221, "minfee": 23, "minfeerate": 0, "mintxsize": 150, "outs": 11616, "subsidy": 312500000, "swtotal_size": 1542523, "swtotal_weight": 3715513, "swtxs": 4972, "time": 1783781146, "total_out": 651698355995, "total_size": 1611511, "total_weight": 3991465, "totalfee": 1568279, "txs": 5085, "utxo_increase": 3746, "utxo_size_inc": 263848, "utxo_increase_actual": 557, "utxo_size_inc_actual": 35106 } $ bitcoin-cli getnettotals { "totalbytesrecv": 169513403, "totalbytessent": 464704682, "timemillis": 1783781185608, "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 16 2 18 out 10 0 10 2 total 26 2 28 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70390, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70390 } } $ halving.sh 957580 ===================================== Bitcoin Block Halving prediction ===================================== bc=957580 gbt=1231006505 bbt=1783781146 This is average time to mine a block (1783781146-1231006505)/957580 bts=577.2614964164911375643418 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Mon Mar 20 02:20:53 UTC 2028 ------------------------------------- Next palindrome will be 957759 predicted to happen at this time: Sun Jul 12 19:27:55 UTC 2026 ------------------------------------- Current mining epoch number is 474. The next fortnight happens in block 957600 and probably around this time: Sat Jul 11 17:58: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 7ed2c99944975ef3 594a740c568feb00cdbcdb60c1603dcf483beaf747791afd3de1ad2369c41f3c 448fe4489f29b4ab 32cf9f5249407d1c5166d0a527dc5535c3845e5b8717d976786bc7b845dc00c4 3616fc47abe591bb eaf20e579d4dce84875fb522541c9a210fcbff6fdb5246f05511e97fd5cefb5f 3f5d21b063816822 c8ad4463673246c6ccfe90e6b08afe2ad6cd593ed6b764aa36e4ba1f094b5be0 bca3f180c71b309b 008c9cc3e3dbceaf86f81c092521b2300c99f5e36704b4339fe44bf424e9af67 781268726fc989b0 0aca0d39c42ac071294019ab2921c6d4b4989f7ed8532b85a8f32f30af239ac5 19fb7307a8fff42b 8955b03b40edfa9b3986eccc57729325d9263ede446308940c7e6d0fea3ded42 470fe6189ad4601f 43ed3acf8c37abd8244a61bc2f67bd8440bc4593c37801ce3e23f7543f9f2210 c30a8ec3df30bb66 6bdf8b26c684435f73d50bff423792400952533e96244be398da19547a84443a b45fe2def933cef3 461e15fcd554949d61805ef7dcb13aa88c1bf55ddb6bbf20cbed42ee70ad8480 d54fc070d84eb39f bd4d037d1882cbea6d7141c621312e2db5e146c100bed863d89c2d1cc026b1fa e80bc98e01a13c7c 46332b30ef75ad6cf3231c53474840f95e4a137e9a985158961ae882e0a0a987 $ niceblack.sh $BH $BC __ __ __ / / / /__ ____/ /__ / _ \/ / _ \/ __/ '_/ /_.__/_/\___/\__/_/\_\ ___ ____________ ___ ___ / _ \/ __/_ / __/( _ )/ _ \ \_, /__ \ / /__ \/ _ / // / /___/____//_/____/\___/\___/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. .... 8e64 461. a3fd 1f | | 2. cd49 4.ea ae3c 2b62 2f | | 3. 11a. 18.f ad6. 8b25 3f | '=== ==== ==== ==== ==== ===' jk: 8b25 4c9e 65