# on receiving block 949041 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-05-12T06:48:50Z # as written in the block header 2026-05-12T06:48:07Z $ uptime # since last reboot 06:48:50 up 53 days, 21:41, 0 users, load average: 0.97, 1.62, 1.72 $ battery.sh 163%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1644744 kB $ du -h -d1 .bitcoin/ 12.2G .bitcoin/indexes 4.5G .bitcoin/signet 2.6M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 125.2G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.5G 475.9G 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 949041 $ BH=$(bitcoin-cli getblockhash 949041); echo $BH 00000000000000000001af067b5374c4a60b67e85caf4baf6cdafcdc85b35026 $ bitcoin-cli getblockheader 00000000000000000001af067b5374c4a60b67e85caf4baf6cdafcdc85b35026 { "hash": "00000000000000000001af067b5374c4a60b67e85caf4baf6cdafcdc85b35026", "confirmations": 1, "height": 949041, "version": 663764992, "versionHex": "27904000", "merkleroot": "25ddeeb5b807b1d189ac9199b4b2faa1ac3922a8659be62304b1057da687dcb6", "time": 1778568487, "mediantime": 1778563703, "nonce": 3182616390, "bits": "17021ff0", "target": "000000000000000000021ff00000000000000000000000000000000000000000", "difficulty": 132472011079030.5, "chainwork": "00000000000000000000000000000000000000012709bedb2dd69ad576c632f6", "nTx": 3278, "previousblockhash": "00000000000000000000e8f1ebfeaa1d0d78bb0d70252522497eeb171d3b33e4" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 af.6 7b53 74c4 a6.b 67e8 5caf 4baf 6cda fcdc 85b3 5.26 $ : 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 949041 sf: ...1 af.6 a6.b 5.26 $ : 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 . 949041 sk: 5.26 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 . 949041 ak: 33e. 84 $ : Following is the jointkode 949041 jk: 5026 33e. 84 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 94649, "bytes": 39651244, "usage": 226681488, "total_fee": 0.06324713, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 4, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 159 ## Current epoch estimation is +2.41% ## 1521 of 2016, i.e. 75%, 495 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.709652467905078e+20 $ bitcoin-cli getnetworkhashps 2016 947519 9.480332550563884e+20 $ bitcoin-cli getnetworkhashps 2016 945503 9.704094538460986e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 949041, "bestblock": "00000000000000000001af067b5374c4a60b67e85caf4baf6cdafcdc85b35026", "txouts": 165164231, "bogosize": 12940447043, "muhash": "9dbd8760ad8a883b49c4043c9bf2d66e4be53ee5592617c4d812497d97a536b5", "total_amount": 20028026.15304912, "total_unspendable_amount": 230.09695088, "block_info": { "prevout_spent": 7256.56875809, "coinbase": 3.14420737, "new_outputs_ex_coinbase": 7256.54955072, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 949041 { "avgfee": 586, "avgfeerate": 1, "avgtxsize": 463, "blockhash": "00000000000000000001af067b5374c4a60b67e85caf4baf6cdafcdc85b35026", "feerate_percentiles": [ 0, 0, 1, 2, 3 ], "height": 949041, "ins": 7968, "maxfee": 68452, "maxfeerate": 117, "maxtxsize": 80701, "medianfee": 184, "mediantime": 1778563703, "mediantxsize": 222, "minfee": 0, "minfeerate": 0, "mintxsize": 150, "outs": 8719, "subsidy": 312500000, "swtotal_size": 1262808, "swtotal_weight": 2971659, "swtxs": 3112, "time": 1778568487, "total_out": 725654955072, "total_size": 1517822, "total_weight": 3991715, "totalfee": 1920737, "txs": 3278, "utxo_increase": 751, "utxo_size_inc": 53304, "utxo_increase_actual": -631, "utxo_size_inc_actual": -46965 } $ bitcoin-cli getnettotals { "totalbytesrecv": 3426317456, "totalbytessent": 7653313479, "timemillis": 1778568530324, "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 19 1 20 out 10 0 10 2 total 29 1 30 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 67497, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 67497 } } $ halving.sh 949041 ===================================== Bitcoin Block Halving prediction ===================================== bc=949041 gbt=1231006505 bbt=1778568487 This is average time to mine a block (1778568487-1231006505)/949041 bts=576.9628551739543666139117 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Thu Mar 16 11:14:39 UTC 2028 ------------------------------------- Next palindrome will be 949949 predicted to happen at this time: Mon May 18 08:19:29 UTC 2026 ------------------------------------- Current mining epoch number is 470. The next fortnight happens in block 949536 and probably around this time: Fri May 15 14:08:03 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 84608400b0618562 7af1f5e36df042df722c4e6516461e5e0547d35e006641145b12d3f789d981f4 e8bb29e27632bdd7 bd4ad3144c309746e2f9437453ad43af6201afd501ad0a184d6077a55cac482c 435b5a508342952a 63244f2e139188f1bd2d8c83ddf1fa460f402e0d2e8d566ef64d365197831d07 55dd402361b85d80 b3177349e7f2d8b43973c12fbbce53bbc72c683ee1fd6345e72594c3a07f5264 d3b8cc8bc831e058 8b854da52402f2d49f415d475c3afdb17b7202f0ab893f1067019635444c44f4 783f4529892fc45f 12fa7d7c6e66cad060f7af4328a9f941e16f4b1523317bc183a9bc53519c4cfc 36d8f65b283aaede 44fbc3f5261005d3f4bcc44d9419d99583f477ec6d203173fd23e828006caa59 cb16378c56ed11ad 818370af339733257bade9c54550ca89b82abdebd34e07ee33d8d8787a0a05e3 $ niceblack.sh $BH $BC ##### # ##### # # # # # # ###### # # ###### # ####### # # # # # # ##### # ##### ### # # # # # # ## # # # # # # # # # # # # # ####### # # # # # ### # ##### ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 af.6 7b53 74c4 1f | | 2. a6.b 67e8 5caf 4baf 2f | | 3. 6cda fcdc 85b3 5.26 3f | '=== ==== ==== ==== ==== ===' jk: 5.26 33e. 84