# on receiving block 952674 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-07T01:36:24Z # as written in the block header 2026-06-07T01:36:09Z $ uptime # since last reboot 01:36:24 up 79 days, 16:29, 0 users, load average: 2.24, 2.33, 2.41 $ battery.sh 163%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1262360 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.6G .bitcoin/chainstate 125.4G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.7G 475.7G 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 952674 $ BH=$(bitcoin-cli getblockhash 952674); echo $BH 000000000000000000017988df97b66bef3665f7152a63c86051dbe0cee9c98a $ bitcoin-cli getblockheader 000000000000000000017988df97b66bef3665f7152a63c86051dbe0cee9c98a { "hash": "000000000000000000017988df97b66bef3665f7152a63c86051dbe0cee9c98a", "confirmations": 1, "height": 952674, "version": 537149440, "versionHex": "20044000", "merkleroot": "75e53d58ad70e577dc88dab398a157c99c27dbcbf1604b45e7918da760e2ecab", "time": 1780796169, "mediantime": 1780793190, "nonce": 4005465750, "bits": "1702068f", "target": "00000000000000000002068f0000000000000000000000000000000000000000", "difficulty": 138955357012247.3, "chainwork": "00000000000000000000000000000000000000012def12a8bf11b99254b41f16", "nTx": 4898, "previousblockhash": "000000000000000000019b07eb21281cd696dc2cd1eeeff3cbb63fb94d65e06e" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 7988 df97 b66b ef36 65f7 152a 63c8 6.51 dbe. cee9 c98a $ : 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 952674 sf: ...1 6.51 dbe. c98a $ : 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 . 952674 sk: c98a 94 $ : 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 . 952674 ak: 5.84 94 $ : Following is the jointkode 952674 jk: c98a 5.84 94 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 102404, "bytes": 42821454, "usage": 247928504, "total_fee": 0.08013428, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 187 ## Current epoch estimation is -5.17% ## 1122 of 2016, i.e. 55%, 894 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.429482551257285e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli getnetworkhashps 2016 949535 9.770940180508523e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 952674, "bestblock": "000000000000000000017988df97b66bef3665f7152a63c86051dbe0cee9c98a", "txouts": 165599842, "bogosize": 12972167871, "muhash": "f7925e0af819ac0c8525f8b989c7bf74ebefcdab1e98a097f4146a6e18f87f9b", "total_amount": 20039379.27671468, "total_unspendable_amount": 230.09828532, "block_info": { "prevout_spent": 1462.02070391, "coinbase": 3.13705421, "new_outputs_ex_coinbase": 1462.00864970, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 952674 { "avgfee": 246, "avgfeerate": 1, "avgtxsize": 343, "blockhash": "000000000000000000017988df97b66bef3665f7152a63c86051dbe0cee9c98a", "feerate_percentiles": [ 0, 0, 1, 1, 2 ], "height": 952674, "ins": 8026, "maxfee": 118488, "maxfeerate": 37, "maxtxsize": 62713, "medianfee": 75, "mediantime": 1780793190, "mediantxsize": 221, "minfee": 0, "minfeerate": 0, "mintxsize": 150, "outs": 10377, "subsidy": 312500000, "swtotal_size": 1615854, "swtotal_weight": 3720498, "swtxs": 4861, "time": 1780796169, "total_out": 146200864970, "total_size": 1683698, "total_weight": 3991874, "totalfee": 1205421, "txs": 4898, "utxo_increase": 2351, "utxo_size_inc": 170104, "utxo_increase_actual": -1396, "utxo_size_inc_actual": -97462 } $ bitcoin-cli getnettotals { "totalbytesrecv": 13151532278, "totalbytessent": 31210976975, "timemillis": 1780796184809, "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 15 1 16 out 10 0 10 2 total 25 1 26 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70486, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70486 } } $ halving.sh 952674 ===================================== Bitcoin Block Halving prediction ===================================== bc=952674 gbt=1231006505 bbt=1780796169 This is average time to mine a block (1780796169-1231006505)/952674 bts=577.1009672763534258797596 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sat Mar 18 03:31:37 UTC 2028 ------------------------------------- Next palindrome will be 953359 predicted to happen at this time: Thu Jun 11 15:24:43 UTC 2026 ------------------------------------- Current mining epoch number is 472. The next fortnight happens in block 953568 and probably around this time: Sat Jun 13 00:54:57 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 a36e34210a5cc0a3 81dc8ee6128d747f86eb0d78229414e273d4144cfbdd4b11bcf01333d2748ba5 1aec1bac4b0eebf2 c7769ee2db44df50a290278b4db982ffa53feefdb2526c7cc24861d052967304 73de5eebc05742a6 c937a9b2936eef93005a904c4b3967eaf4927361fd9dde6276dbfcd363eff34d 86f6fa06256969ae d675402e1cd8f01ed7f6e6607a23eb91e817de9701bbde48bd69fb924677ce06 9b16af95296382dc 5f5a5519c59dbabd4444631d052eaa1903dcf89f3c3c0f4529ce343601dc2c7b fa2af8ad07202d1d 2de8a64aeca5e9c88580518f33b303e320ed9b71a98a8bb0c5d3bf5883535cfa 64f653e31ff905c2 e09a7d2d067c6c4eaeda427ca641ae2822ec693b98007674f2780a19396e05be $ niceblack.sh $BH $BC ____ _________ / __ \/ ____/__ \ / /_/ /___ \ __/ / \__, /___/ // __/ /____/_____//____/ ____________ __ / ___/__ / // / / __ \ / / // /_ / /_/ / / /__ __/ \____/ /_/ /_/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 7988 df97 b66b 1f | | 2. ef36 65f7 152a 63c8 2f | | 3. 6.51 dbe. cee9 c98a 3f | '=== ==== ==== ==== ==== ===' jk: c98a 5.84 94