# on receiving block 948450 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-05-08T10:33:30Z # as written in the block header 2026-05-08T10:33:19Z $ uptime # since last reboot 10:33:30 up 50 days, 1:26, 0 users, load average: 2.09, 1.74, 1.81 $ battery.sh 150%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1905536 kB $ du -h -d1 .bitcoin/ 12.2G .bitcoin/indexes 4.4G .bitcoin/signet 2.6M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 125.1G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.4G 476.0G 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 948450 $ BH=$(bitcoin-cli getblockhash 948450); echo $BH 000000000000000000014aa49f70320bcce82833626ebfe670f006a57b4d85a9 $ bitcoin-cli getblockheader 000000000000000000014aa49f70320bcce82833626ebfe670f006a57b4d85a9 { "hash": "000000000000000000014aa49f70320bcce82833626ebfe670f006a57b4d85a9", "confirmations": 1, "height": 948450, "version": 537567232, "versionHex": "200aa000", "merkleroot": "8bd84a6188c9b2c37b34c57225c770a9434b74c1720fc3fb24992c1148ac0456", "time": 1778236399, "mediantime": 1778234600, "nonce": 3357837114, "bits": "17021ff0", "target": "000000000000000000021ff00000000000000000000000000000000000000000", "difficulty": 132472011079030.5, "chainwork": "000000000000000000000000000000000000000125f3988ec22dca931a783219", "nTx": 6266, "previousblockhash": "000000000000000000012d574641c268d4a85c266c20ecb95c818dd14c11e23e" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 4aa4 9f7. 32.b cce8 2833 626e bfe6 7.f. .6a5 7b4d 85a9 $ : 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 948450 sf: ...1 9f7. 32.b 7.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 . 948450 sk: 85a9 74 $ : 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 . 948450 ak: 563c 74 $ : Following is the jointkode 948450 jk: 85a9 563c 74 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 34013, "bytes": 31187444, "usage": 156322600, "total_fee": 0.04363410, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 2, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 139 ## Current epoch estimation is +1.52% ## 930 of 2016, i.e. 46%, 1086 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.624536266082003e+20 $ bitcoin-cli getnetworkhashps 2016 947519 9.480332550563884e+20 $ bitcoin-cli getnetworkhashps 2016 945503 9.704094538460986e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 948450, "bestblock": "000000000000000000014aa49f70320bcce82833626ebfe670f006a57b4d85a9", "txouts": 164828031, "bogosize": 12915966122, "muhash": "bac8c4b50a7e4588de769093a9957e83ed593863efa70926b7636737093dec14", "total_amount": 20026179.27821162, "total_unspendable_amount": 230.09678838, "block_info": { "prevout_spent": 6178.53045709, "coinbase": 3.13193093, "new_outputs_ex_coinbase": 6178.52352616, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 948450 { "avgfee": 110, "avgfeerate": 0, "avgtxsize": 260, "blockhash": "000000000000000000014aa49f70320bcce82833626ebfe670f006a57b4d85a9", "feerate_percentiles": [ 0, 0, 0, 0, 2 ], "height": 948450, "ins": 7832, "maxfee": 86812, "maxfeerate": 73, "maxtxsize": 93325, "medianfee": 42, "mediantime": 1778234600, "mediantxsize": 221, "minfee": 16, "minfeerate": 0, "mintxsize": 150, "outs": 12677, "subsidy": 312500000, "swtotal_size": 1615521, "swtotal_weight": 3929715, "swtxs": 6219, "time": 1778236399, "total_out": 617852352616, "total_size": 1632012, "total_weight": 3995679, "totalfee": 693093, "txs": 6266, "utxo_increase": 4845, "utxo_size_inc": 345595, "utxo_increase_actual": -937, "utxo_size_inc_actual": -66045 } $ bitcoin-cli getnettotals { "totalbytesrecv": 1981569397, "totalbytessent": 4468521336, "timemillis": 1778236411086, "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 npr total block in 17 1 18 out 10 0 10 2 total 27 1 28 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 65920, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 65920 } } $ halving.sh 948450 ===================================== Bitcoin Block Halving prediction ===================================== bc=948450 gbt=1231006505 bbt=1778236399 This is average time to mine a block (1778236399-1231006505)/948450 bts=576.9722357823440536200604 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Thu Mar 16 13:58:49 UTC 2028 ------------------------------------- Next palindrome will be 948849 predicted to happen at this time: Mon May 11 02:30:10 UTC 2026 ------------------------------------- Current mining epoch number is 470. The next fortnight happens in block 949536 and probably around this time: Fri May 15 16:36:30 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 304f3f4f2dc36be5 83c5f1d773fbcd2cb554d2066dc0d4932ea28e2377128a876c65eee214616368 80498a2486d1edfc dcbddfc89ec8ebc4621ee1cf001fd89cb1263c99b5ccfb9a3605f0af86baabf4 84df2eb6646ffcb6 e1563625553e21951790d3f45aa4f71278f7a5b55885ee20035831ffccb919ac 3b88200106a3f2ec 035ce4c854454959e994b247779eddbb6978345073b7ab4cdda2c340358f4c62 785ecefa522498c6 85d8ec6361474b454e8c1d2f657db7248f34290bce777d36c9acc43c97996714 6fd8cf508542a08c 0b44b930ddaee964a39ed1e061250bfc716131c9da4b425029036628e98a6408 b904c55d58f527b2 53cd9d85cf6dd1012a5e152647e61463c35eba07965434002f56cf53efd5e524 b620dc1a3c540f43 9a68485391d619e1ed9ea8b17f2a7feda4d97e77497596de004d873ac2f9d812 3a4cfb47815bb0f0 966e19aac6499cbda9ddb85e052875f76b0ee2694ec97b5f37d9213ea89c93e3 $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ __ __ ____ __ / || | / \| | | / \ \_/||__|_\__/|__|_|___ | | | | / \ | \| | | | \__/ | \___/ \__/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 4aa4 9f7. 32.b 1f | | 2. cce8 2833 626e bfe6 2f | | 3. 7.f. .6a5 7b4d 85a9 3f | '=== ==== ==== ==== ==== ===' jk: 85a9 563c 74