# on receiving block 954543 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-20T09:59:04Z # as written in the block header 2026-06-20T09:58:09Z $ uptime # since last reboot 09:59:04 up 93 days, 51 min, 0 users, load average: 3.00, 3.33, 2.96 $ battery.sh 163%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1197472 kB $ du -h -d1 .bitcoin/ 12.3G .bitcoin/indexes 4.6G .bitcoin/signet 2.7M .bitcoin/wallets 97.8G .bitcoin/blocks 18.6M .bitcoin/regtest 10.7G .bitcoin/chainstate 125.6G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.9G 475.5G 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 954543 $ BH=$(bitcoin-cli getblockhash 954543); echo $BH 00000000000000000001620499d1a34b6b379476c28eae50c802eab6fee34238 $ bitcoin-cli getblockheader 00000000000000000001620499d1a34b6b379476c28eae50c802eab6fee34238 { "hash": "00000000000000000001620499d1a34b6b379476c28eae50c802eab6fee34238", "confirmations": 1, "height": 954543, "version": 564011008, "versionHex": "219e2000", "merkleroot": "45401a16ef9cdbf3810180f28e3d49fb53a563a67e3670cda01a4a23d1d5b321", "time": 1781949489, "mediantime": 1781948529, "nonce": 1962119799, "bits": "170240c3", "target": "0000000000000000000240c30000000000000000000000000000000000000000", "difficulty": 124932866006548.2, "chainwork": "00000000000000000000000000000000000000013159216cda9b1032f51d4b90", "nTx": 5575, "previousblockhash": "000000000000000000020c20245527bc89efac2a83016bdd15e148872ece78c3" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 62.4 99d1 a34b 6b37 9476 c28e ae5. c8.2 eab6 fee3 4238 $ : 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 954543 sf: ...1 62.4 ae5. c8.2 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 . 954543 sk: 4238 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 . 954543 ak: 556f 84 $ : Following is the jointkode 954543 jk: 4238 556f 84 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 97666, "bytes": 42194034, "usage": 242452008, "total_fee": 0.07696524, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 290, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 182 ## Current epoch estimation is +1.71% ## 975 of 2016, i.e. 48%, 1041 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.092645708466106e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 954543, "bestblock": "00000000000000000001620499d1a34b6b379476c28eae50c802eab6fee34238", "txouts": 165860878, "bogosize": 12991236011, "muhash": "bb2f3f3378e46a20a0b58f56a7b546a0ba78e06dea0af7e3f65868a4ffee0dfd", "total_amount": 20045219.88988720, "total_unspendable_amount": 230.11011280, "block_info": { "prevout_spent": 4794.09080225, "coinbase": 3.13858346, "new_outputs_ex_coinbase": 4794.07721879, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 954543 { "avgfee": 243, "avgfeerate": 1, "avgtxsize": 282, "blockhash": "00000000000000000001620499d1a34b6b379476c28eae50c802eab6fee34238", "feerate_percentiles": [ 0, 0, 0, 1, 2 ], "height": 954543, "ins": 7434, "maxfee": 76006, "maxfeerate": 695, "maxtxsize": 59043, "medianfee": 75, "mediantime": 1781948529, "mediantxsize": 221, "minfee": 0, "minfeerate": 0, "mintxsize": 150, "outs": 12077, "subsidy": 312500000, "swtotal_size": 1491579, "swtotal_weight": 3652368, "swtxs": 5499, "time": 1781949489, "total_out": 479407721879, "total_size": 1576358, "total_weight": 3991484, "totalfee": 1358346, "txs": 5575, "utxo_increase": 4643, "utxo_size_inc": 332492, "utxo_increase_actual": 172, "utxo_size_inc_actual": 12921 } $ bitcoin-cli getnettotals { "totalbytesrecv": 18925161571, "totalbytessent": 45331926248, "timemillis": 1781949544964, "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": 70483, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70483 } } $ halving.sh 954543 ===================================== Bitcoin Block Halving prediction ===================================== bc=954543 gbt=1231006505 bbt=1781949489 This is average time to mine a block (1781949489-1231006505)/954543 bts=577.1792437017046883119059 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sun Mar 19 02:21:28 UTC 2028 ------------------------------------- Next palindrome will be 955559 predicted to happen at this time: Sat Jun 27 04:51:43 UTC 2026 ------------------------------------- Current mining epoch number is 473. The next fortnight happens in block 955584 and probably around this time: Sat Jun 27 08:52:12 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 10 "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 2cb4c5966aa2a2dd ab6adb9ce70ad7346f301c3c4e6716a07730bf0731096e4b6b6eb38a8c470a12 90991fb939379aee 6251f1f877bc4e774a2acf40ab790e21fc814b1b8eeb57b91bf253e73f419ab2 0010567ed9472d61 a1e862c957030d85e55a88c315a421d3a07ae2172f503d24e4cb1674553d6402 f2c38319bdebb254 b9979ef91ae204b15ee03ba80e2cc143fc83b5037b2253de4287352f64577e33 078860f0f2beb264 14c5bbca73dc16045e4297d5f051f364fe360825b7f409b17302ba632decde08 0741d09e16d1d1b0 aad7485a2b48ef49c51c3d64b46677343d9f6037cde199fa867bc5998d987b2f 9fbd70b0636804bc c3a7a4496d69d9938b0119d9f297c519c6b2c8db8f1eecbe5ef623d3541747aa 3a47e3fa064c17a3 f38eb5b2562515a5127eecd3b9479b7acca6c6bd08ee91c44b34907b220f9209 ba38d46a06bdcdc0 7adea418e7404e2681412ad8adf1e90f78955aa66d4baa153d921b47d061462e $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ __ ____ ____ ___ / || | | | | |/ \ \_/||___|__|_|___|__|_ __/ | \ | \ | \ |\___/ | \___/ |\___/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 62.4 99d1 a34b 1f | | 2. 6b37 9476 c28e ae5. 2f | | 3. c8.2 eab6 fee3 4238 3f | '=== ==== ==== ==== ==== ===' jk: 4238 556f 84