# on receiving block 956354 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-07-02T11:53:19Z # as written in the block header 2026-07-02T11:52:37Z $ uptime # since last reboot 11:53:19 up 6 days, 4:24, 0 users, load average: 0.62, 0.92, 0.90 $ battery.sh 98%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1820604 kB $ du -h -d1 .bitcoin/ 12.4G .bitcoin/indexes 4.7G .bitcoin/signet 2.7M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.8G .bitcoin/chainstate 125.7G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 435.3G 475.2G 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 956354 $ BH=$(bitcoin-cli getblockhash 956354); echo $BH 000000000000000000012d57fb0849332dca864274759ad47a880c2e042317ad $ bitcoin-cli getblockheader 000000000000000000012d57fb0849332dca864274759ad47a880c2e042317ad { "hash": "000000000000000000012d57fb0849332dca864274759ad47a880c2e042317ad", "confirmations": 1, "height": 956354, "version": 537395200, "versionHex": "20080000", "merkleroot": "fb7e4b8f92da6b7dfcaf21af5c79bfd16bb9962ae8ba89dbc125179f6a5a2690", "time": 1782993157, "mediantime": 1782992099, "nonce": 1757546140, "bits": "17021a42", "target": "000000000000000000021a420000000000000000000000000000000000000000", "difficulty": 133869853540305.4, "chainwork": "000000000000000000000000000000000000000134956fbef62dd14222f464dd", "nTx": 4991, "previousblockhash": "00000000000000000001dabfcbed65c9d39fbfaf00d05fe2e4cdf438fe439d90" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 2d57 fb.8 4933 2dca 8642 7475 9ad4 7a88 .c2e .423 17ad $ : 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 956354 sf: ...1 fb.8 .c2e .423 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 . 956354 sk: 17ad 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 . 956354 ak: bf6c 84 $ : Following is the jointkode 956354 jk: 17ad bf6c 84 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 95492, "bytes": 42414429, "usage": 243375280, "total_fee": 0.07565532, "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 178 ## Current epoch estimation is +0.38% ## 770 of 2016, i.e. 38%, 1246 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.613613014356311e+20 $ bitcoin-cli getnetworkhashps 2016 955583 9.577176399839705e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 956354, "bestblock": "000000000000000000012d57fb0849332dca864274759ad47a880c2e042317ad", "txouts": 166104655, "bogosize": 13009296015, "muhash": "15231aa9da6af1b2854e4bb9bc1fb6cf775b4dcae0163fd5511625ec2074f993", "total_amount": 20050879.26461057, "total_unspendable_amount": 230.11038943, "block_info": { "prevout_spent": 70.37849667, "coinbase": 3.13203259, "new_outputs_ex_coinbase": 70.37146408, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 956354 { "avgfee": 140, "avgfeerate": 0, "avgtxsize": 343, "blockhash": "000000000000000000012d57fb0849332dca864274759ad47a880c2e042317ad", "feerate_percentiles": [ 0, 0, 0, 0, 0 ], "height": 956354, "ins": 9420, "maxfee": 107495, "maxfeerate": 20, "maxtxsize": 148555, "medianfee": 67, "mediantime": 1782992099, "mediantxsize": 221, "minfee": 23, "minfeerate": 0, "mintxsize": 151, "outs": 10086, "subsidy": 312500000, "swtotal_size": 1709893, "swtotal_weight": 3987634, "swtxs": 4985, "time": 1782993157, "total_out": 7037146408, "total_size": 1711860, "total_weight": 3995502, "totalfee": 703259, "txs": 4991, "utxo_increase": 666, "utxo_size_inc": -5863, "utxo_increase_actual": -4190, "utxo_size_inc_actual": -338017 } $ bitcoin-cli getnettotals { "totalbytesrecv": 1662506350, "totalbytessent": 5390469790, "timemillis": 1782993199378, "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 25 1 26 out 10 0 10 2 total 35 1 36 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70643, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70643 } } $ halving.sh 956354 ===================================== Bitcoin Block Halving prediction ===================================== bc=956354 gbt=1231006505 bbt=1782993157 This is average time to mine a block (1782993157-1231006505)/956354 bts=577.1775669076859534377924 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sun Mar 19 01:52:07 UTC 2028 ------------------------------------- Next palindrome will be 956659 predicted to happen at this time: Sat Jul 4 12:46:36 UTC 2026 ------------------------------------- Current mining epoch number is 474. The next fortnight happens in block 957600 and probably around this time: Fri Jul 10 19:38:40 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 8ef81ed84edc8e66 37abe35f119f30f782e35ad2684afc3bf79ba36a789ca884aa97ca23a2608ca1 28782718d1a10376 15307508b621b59b5280db97d3280dd9905191b8c391950c29ca3e00569a7ecf 085251ed06dafa6c e6a128664bcf8982b588730d56795b2d2293e4b0757ad06f7f9c90767cc17b02 b7266bc85703b5ce 87a84a0dcd6c730357edf794e17f52d47f8519a9cd6f5fd0ef43b755c27d50fd 0fb2cfff0d4eed69 d8fe4ecc3e44b633b994939c3852a96fb637adedbba5d9f9cd1f464fbc72d1c3 a3c4562064e43e7b 0bd023825cf68923d4988c2c999f67d20abd3ada901b7f98535869c959686068 7af866239b695ed8 4c66140a8e05e9a36c591540d2fa79224aaef961b59d3c80c018246ffea8db78 2911e879515eaa6b 20d5e2419d17e839893762c933b25ace2dbf6c92f673857815fb91cad1dbafd7 4bd0957d4127de67 3d83ed7f397a650facd4a9e205b8b1ded27522fb8e6c466a6af1154582b94414 64e9583bf407f912 7f40a0db3b551a05907c53701df5aa9f23545984dccc3c28259b5311a1dc6ce6 be071ba9f0b97ed4 83361d273a3fc2edaac81b15abfba76d7895cd3bcabe97db783aa15c543a92f2 $ niceblack.sh $BH $BC | | | _ \ | _ \ _| | / _.__/_|\___/\__|_\_\ _ \ __| / __ / __| | | \_ /__ \ _ \ _ \__ \__ _| _/ ___/\___/___/___/ _| ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 2d57 fb.8 4933 1f | | 2. 2dca 8642 7475 9ad4 2f | | 3. 7a88 .c2e .423 17ad 3f | '=== ==== ==== ==== ==== ===' jk: 17ad bf6c 84