# on receiving block 955904 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-29T07:41:19Z # as written in the block header 2026-06-29T07:41:00Z $ uptime # since last reboot 07:41:19 up 3 days, 12 min, 0 users, load average: 0.69, 0.73, 0.83 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2137468 kB $ du -h -d1 .bitcoin/ 12.3G .bitcoin/indexes 4.6G .bitcoin/signet 2.7M .bitcoin/wallets 97.6G .bitcoin/blocks 18.6M .bitcoin/regtest 10.7G .bitcoin/chainstate 125.5G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 435.0G 475.4G 48% / $ bitcoind -version Bitcoin Core daemon version v31.1.0rc1 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 955904 $ BH=$(bitcoin-cli getblockhash 955904); echo $BH 000000000000000000020b5cd174231b5a6a21e33b91811c1569f589e1a72db2 $ bitcoin-cli getblockheader 000000000000000000020b5cd174231b5a6a21e33b91811c1569f589e1a72db2 { "hash": "000000000000000000020b5cd174231b5a6a21e33b91811c1569f589e1a72db2", "confirmations": 1, "height": 955904, "version": 536977408, "versionHex": "2001a000", "merkleroot": "479fc3328e2366856b6f11ff6cbc473c75d5b9dce2728d6f0d0183690a55e44a", "time": 1782718860, "mediantime": 1782716322, "nonce": 1176180092, "bits": "17021a42", "target": "000000000000000000021a420000000000000000000000000000000000000000", "difficulty": 133869853540305.4, "chainwork": "000000000000000000000000000000000000000133bf69a510323d34e4d1329f", "nTx": 5319, "previousblockhash": "00000000000000000001b86d3cf6f7fb8a1c775e749c2c40ea57b50f994c7017" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...2 .b5c d174 231b 5a6a 21e3 3b91 811c 1569 f589 e1a7 2db2 $ : 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 955904 sf: ...2 .b5c 2db2 $ : 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 . 955904 sk: 2db2 a4 $ : 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 . 955904 ak: 14c. a4 $ : Following is the jointkode 955904 jk: 2db2 14c. a4 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 80820, "bytes": 40236449, "usage": 226090176, "total_fee": 0.06942818, "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.81% ## 320 of 2016, i.e. 15%, 1696 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.655394265996182e+20 $ bitcoin-cli getnetworkhashps 2016 955583 9.577176399839705e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 955904, "bestblock": "000000000000000000020b5cd174231b5a6a21e33b91811c1569f589e1a72db2", "txouts": 166115877, "bogosize": 13010249185, "muhash": "2a5831869f2ea180d0864ee9d8f4490e8d458eedb9ace67a799cefc9b531315e", "total_amount": 20049473.01461838, "total_unspendable_amount": 230.11038162, "block_info": { "prevout_spent": 1332.90695818, "coinbase": 3.13698633, "new_outputs_ex_coinbase": 1332.89497185, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 955904 { "avgfee": 225, "avgfeerate": 1, "avgtxsize": 342, "blockhash": "000000000000000000020b5cd174231b5a6a21e33b91811c1569f589e1a72db2", "feerate_percentiles": [ 0, 0, 0, 1, 2 ], "height": 955904, "ins": 6936, "maxfee": 90000, "maxfeerate": 469, "maxtxsize": 87743, "medianfee": 68, "mediantime": 1782716322, "mediantxsize": 221, "minfee": 51, "minfeerate": 0, "mintxsize": 150, "outs": 11206, "subsidy": 312500000, "swtotal_size": 1783536, "swtotal_weight": 3837285, "swtxs": 5255, "time": 1782718860, "total_out": 133289497185, "total_size": 1822207, "total_weight": 3991969, "totalfee": 1198633, "txs": 5319, "utxo_increase": 4270, "utxo_size_inc": 303856, "utxo_increase_actual": -268, "utxo_size_inc_actual": -19595 } $ bitcoin-cli getnettotals { "totalbytesrecv": 318697409, "totalbytessent": 976719541, "timemillis": 1782718880047, "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.0rc1 - server 70016/Satoshi:31.1.0/ ipv4 npr total block in 20 1 21 out 10 0 10 2 total 30 1 31 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70882, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70882 } } $ halving.sh 955904 ===================================== Bitcoin Block Halving prediction ===================================== bc=955904 gbt=1231006505 bbt=1782718860 This is average time to mine a block (1782718860-1231006505)/955904 bts=577.1623278463864086912402 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sat Mar 18 21:25:26 UTC 2028 ------------------------------------- Next palindrome will be 956659 predicted to happen at this time: Sat Jul 4 08:43:37 UTC 2026 ------------------------------------- Current mining epoch number is 474. The next fortnight happens in block 957600 and probably around this time: Fri Jul 10 15:35:27 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 8 "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 752627b3e62d0b44 79d6fc771362365abf309d36c85dca6f4d74aa683d5bdec398cc4e8f6971d020 820698657805a0b3 0328b0e1bab9d92478029469207591188d2ae71f30f2e48494b7cede165ec21a 8ef81ed84edc8e66 37abe35f119f30f782e35ad2684afc3bf79ba36a789ca884aa97ca23a2608ca1 28782718d1a10376 15307508b621b59b5280db97d3280dd9905191b8c391950c29ca3e00569a7ecf 085251ed06dafa6c e6a128664bcf8982b588730d56795b2d2293e4b0757ad06f7f9c90767cc17b02 b7266bc85703b5ce 87a84a0dcd6c730357edf794e17f52d47f8519a9cd6f5fd0ef43b755c27d50fd 0fb2cfff0d4eed69 d8fe4ecc3e44b633b994939c3852a96fb637adedbba5d9f9cd1f464fbc72d1c3 a3c4562064e43e7b 0bd023825cf68923d4988c2c999f67d20abd3ada901b7f98535869c959686068 $ niceblack.sh $BH $BC | | | _ \ | _ \ _| | / _.__/_|\___/\__|_\_\ _ \ __| __| _ \ \ | | \_ /__ \__ \\_ /( |__ _| _/ ___/___/ _/\__/ _| ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...2 .b5c d174 231b 1f | | 2. 5a6a 21e3 3b91 811c 2f | | 3. 1569 f589 e1a7 2db2 3f | '=== ==== ==== ==== ==== ===' jk: 2db2 14c. a4