# on receiving block 954503 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-20T05:18:43Z # as written in the block header 2026-06-20T05:18:05Z $ uptime # since last reboot 05:18:43 up 92 days, 20:11, 0 users, load average: 3.54, 3.03, 2.57 $ battery.sh 163%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1241340 kB $ du -h -d1 .bitcoin/ 12.3G .bitcoin/indexes 4.6G .bitcoin/signet 2.7M .bitcoin/wallets 97.7G .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.6G 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 954503 $ BH=$(bitcoin-cli getblockhash 954503); echo $BH 00000000000000000000afe92dcad6882d81cbe2515dae957f39163597903f30 $ bitcoin-cli getblockheader 00000000000000000000afe92dcad6882d81cbe2515dae957f39163597903f30 { "hash": "00000000000000000000afe92dcad6882d81cbe2515dae957f39163597903f30", "confirmations": 1, "height": 954503, "version": 615694336, "versionHex": "24b2c000", "merkleroot": "2055531e697b6c2d95bf9158af9d52481275dd1f79c1509fc9f1602e441cf818", "time": 1781932685, "mediantime": 1781928789, "nonce": 2065015028, "bits": "170240c3", "target": "0000000000000000000240c30000000000000000000000000000000000000000", "difficulty": 124932866006548.2, "chainwork": "0000000000000000000000000000000000000001314760531d8a9ffc807059c8", "nTx": 1716, "previousblockhash": "0000000000000000000035d687310cc97b0001f325177f01cd0d1fe0074edefa" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... afe9 2dca d688 2d81 cbe2 515d ae95 7f39 1635 979. 3f3. $ : 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 954503 sf: 979. 3f3. $ : 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 . 954503 sk: 3f3. 95 $ : 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 . 954503 ak: 8cac 95 $ : Following is the jointkode 954503 jk: 3f30 8cac 95 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 104534, "bytes": 44276151, "usage": 254975544, "total_fee": 0.09391179, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 286, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 212 ## Current epoch estimation is +1.49% ## 935 of 2016, i.e. 46%, 1081 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.072981813343292e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 954503, "bestblock": "00000000000000000000afe92dcad6882d81cbe2515dae957f39163597903f30", "txouts": 165868332, "bogosize": 12991729787, "muhash": "7baf1a88dad379b3ff78aa1f0571b6bc15326bc016a536edb4058e60ec2151ac", "total_amount": 20045094.88988846, "total_unspendable_amount": 230.11011154, "block_info": { "prevout_spent": 1970.41725420, "coinbase": 3.13543103, "new_outputs_ex_coinbase": 1970.40682317, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 954503 { "avgfee": 608, "avgfeerate": 1, "avgtxsize": 473, "blockhash": "00000000000000000000afe92dcad6882d81cbe2515dae957f39163597903f30", "feerate_percentiles": [ 1, 1, 1, 2, 3 ], "height": 954503, "ins": 4309, "maxfee": 32900, "maxfeerate": 100, "maxtxsize": 36950, "medianfee": 284, "mediantime": 1781928789, "mediantxsize": 223, "minfee": 99, "minfeerate": 1, "mintxsize": 150, "outs": 5326, "subsidy": 312500000, "swtotal_size": 755518, "swtotal_weight": 1860337, "swtxs": 1615, "time": 1781932685, "total_out": 197040682317, "total_size": 812780, "total_weight": 2089385, "totalfee": 1043103, "txs": 1716, "utxo_increase": 1017, "utxo_size_inc": 79182, "utxo_increase_actual": 991, "utxo_size_inc_actual": 76302 } $ bitcoin-cli getnettotals { "totalbytesrecv": 18794599557, "totalbytessent": 44972311030, "timemillis": 1781932723639, "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 16 1 17 out 10 0 10 2 total 26 1 27 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70489, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70489 } } $ halving.sh 954503 ===================================== Bitcoin Block Halving prediction ===================================== bc=954503 gbt=1231006505 bbt=1781932685 This is average time to mine a block (1781932685-1231006505)/954503 bts=577.1858263558874556837896 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sun Mar 19 04:16:39 UTC 2028 ------------------------------------- Next palindrome will be 955559 predicted to happen at this time: Sat Jun 27 06:36:33 UTC 2026 ------------------------------------- Current mining epoch number is 473. The next fortnight happens in block 955584 and probably around this time: Sat Jun 27 10:37:02 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. .... afe9 2dca d688 1f | | 2. 2d81 cbe2 515d ae95 2f | | 3. 7f39 1635 979. 3f3. 3f | '=== ==== ==== ==== ==== ===' jk: 3f3. 8cac 95