# on receiving block 942666 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-03-28T16:31:48Z # as written in the block header 2026-03-28T16:30:58Z $ uptime # since last reboot 16:31:48 up 9 days, 7:24, 0 users, load average: 1.32, 2.06, 1.94 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2292680 kB $ du -h -d1 .bitcoin/ 12.1G .bitcoin/indexes 4.2G .bitcoin/signet 2.7M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 124.7G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 433.0G 477.4G 48% / $ bitcoind -version Bitcoin Core daemon version v31.0rc2 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 942666 $ BH=$(bitcoin-cli getblockhash 942666); echo $BH 0000000000000000000101fbbac1b664c781280d1583c361444e7a7be9b00b04 $ bitcoin-cli getblockheader 0000000000000000000101fbbac1b664c781280d1583c361444e7a7be9b00b04 { "hash": "0000000000000000000101fbbac1b664c781280d1583c361444e7a7be9b00b04", "confirmations": 1, "height": 942666, "version": 536993792, "versionHex": "2001e000", "merkleroot": "5c2ec19c71f3cf15f6399ba359bb4fef77eb803684456c11bc3cb07f52bf94be", "time": 1774715458, "mediantime": 1774713594, "nonce": 4246288156, "bits": "17021a91", "target": "000000000000000000021a910000000000000000000000000000000000000000", "difficulty": 133793147307542.8, "chainwork": "00000000000000000000000000000000000000011b08a9577cbeca9900dc49e4", "nTx": 3975, "previousblockhash": "00000000000000000000bf476dcb12b48b90823c256656d08960e802f8f868d2" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 .1fb bac1 b664 c781 28.d 1583 c361 444e 7a7b e9b. .b.4 $ : 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 942666 sf: ...1 .1fb 28.d e9b. 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 . 942666 sk: .b.4 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 . 942666 ak: e8b. 74 $ : Following is the jointkode 942666 jk: 0b04 e8b. 74 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 27814, "bytes": 9916367, "usage": 62082552, "total_fee": 0.01151420, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 8, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 115 ## Current epoch estimation is +3.15% ## 1194 of 2016, i.e. 59%, 822 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.877973864370512e+20 $ bitcoin-cli getnetworkhashps 2016 941471 9.575843405435805e+20 $ bitcoin-cli getnetworkhashps 2016 939455 1.037983005536264e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 942666, "bestblock": "0000000000000000000101fbbac1b664c781280d1583c361444e7a7be9b00b04", "txouts": 165134514, "bogosize": 12939817509, "muhash": "01344c04d6d0df33b40f4505f01bc5fa5d91198a2b8a81516f827299553a20df", "total_amount": 20008104.28029523, "total_unspendable_amount": 230.09470477, "block_info": { "prevout_spent": 4635.02055576, "coinbase": 3.14630867, "new_outputs_ex_coinbase": 4634.99924709, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 942666 { "avgfee": 536, "avgfeerate": 2, "avgtxsize": 404, "blockhash": "0000000000000000000101fbbac1b664c781280d1583c361444e7a7be9b00b04", "feerate_percentiles": [ 0, 1, 1, 2, 3 ], "height": 942666, "ins": 7759, "maxfee": 59200, "maxfeerate": 251, "maxtxsize": 37803, "medianfee": 219, "mediantime": 1774713594, "mediantxsize": 222, "minfee": 15, "minfeerate": 0, "mintxsize": 150, "outs": 10110, "subsidy": 312500000, "swtotal_size": 1481286, "swtotal_weight": 3482184, "swtxs": 3763, "time": 1774715458, "total_out": 463499924709, "total_size": 1608692, "total_weight": 3991808, "totalfee": 2130867, "txs": 3975, "utxo_increase": 2351, "utxo_size_inc": 173384, "utxo_increase_actual": 1097, "utxo_size_inc_actual": 80607 } $ bitcoin-cli getnettotals { "totalbytesrecv": 781975016, "totalbytessent": 1376492435, "timemillis": 1774715509305, "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.0rc2 - 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": 63561, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 63561 } } $ halving.sh 942666 ===================================== Bitcoin Block Halving prediction ===================================== bc=942666 gbt=1231006505 bbt=1774715458 This is average time to mine a block (1774715458-1231006505)/942666 bts=576.7773275186253470207400 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 14 05:07:55 UTC 2028 ------------------------------------- Next palindrome will be 943349 predicted to happen at this time: Thu Apr 2 05:56:36 UTC 2026 ------------------------------------- Current mining epoch number is 467. The next fortnight happens in block 943488 and probably around this time: Fri Apr 3 04:12:48 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 53cb09911245d260 50c22bb3c18ff9ccf388cc1dd721210fd780266fa55a7565f136069a70f52e26 070fa09d81bddbfc cb4882d8db9a875b5cdc44096e8f4dfaaa6496ebeaff14c0e7e8011995a1c30c 57b0f3d93065c3d3 b0140909cf87cce0128fa7b18db592b217a535d544f4d609542aa393a01828d2 95533200f3e856ae 25c8f82ea3189e5953d21fd5afb8030ba0d630a32caf680b5052c18d315eadac 89615755e7e06376 28b12b914c7eaf6e76f2149e25788244ec169d3aac1aeb3cf95955ea8d853db9 396fd83d1d6b5e68 0e804e9ee9c2860ee9a7141000fd426c9ebb19d4e0195b1be38d5dcbcaa9ac74 79d2c4cd32da7162 cc1eefe454c765b858260652e87c39cdebfa191255622a7189dc10e95fc34cb6 1fb3bf7327225ba5 dbc754eeb5cbf1a0bfa02053fed0311cc60616485009944be74478cab06b3ef4 21889d03bdb1c6c4 5abb4c1531d351ef81a0c57b91458497b1bc34ee135c9030faee195fbcec59b6 0aead9aeef4e625c 19c77617bc74955097d62c60eab40d6625f761bfa07b79c07fc3aa81acc9d783 $ niceblack.sh $BH $BC ____ __ __ ___ / __ \/ // /|__ \ / /_/ / // /___/ / \__, /__ __/ __/ /____/ /_/ /____/ _____ _____ _____ / ___// ___// ___/ / __ \/ __ \/ __ \ / /_/ / /_/ / /_/ / \____/\____/\____/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 .1fb bac1 b664 1f | | 2. c781 28.d 1583 c361 2f | | 3. 444e 7a7b e9b. .b.4 3f | '=== ==== ==== ==== ==== ===' jk: .b.4 e8b. 74