# on receiving block 955402 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-25T21:50:29Z # as written in the block header 2026-06-25T21:50:21Z $ uptime # since last reboot 21:50:29 up 12:44, 0 users, load average: 1.60, 0.99, 0.90 $ battery.sh 98%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2317168 kB $ du -h -d1 .bitcoin/ 12.3G .bitcoin/indexes 4.6G .bitcoin/signet 2.6M .bitcoin/wallets 97.6G .bitcoin/blocks 18.6M .bitcoin/regtest 10.8G .bitcoin/chainstate 125.4G .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 955402 $ BH=$(bitcoin-cli getblockhash 955402); echo $BH 00000000000000000001f7b3840cd397c336642b5847213087c0b67b406bf891 $ bitcoin-cli getblockheader 00000000000000000001f7b3840cd397c336642b5847213087c0b67b406bf891 { "hash": "00000000000000000001f7b3840cd397c336642b5847213087c0b67b406bf891", "confirmations": 1, "height": 955402, "version": 911384576, "versionHex": "3652a000", "merkleroot": "3898af407fb1e6b6a89846fe95bd2130e21d909094fac9c6bd34a35e7c1acbf9", "time": 1782424221, "mediantime": 1782422376, "nonce": 2948419110, "bits": "170240c3", "target": "0000000000000000000240c30000000000000000000000000000000000000000", "difficulty": 124932866006548.2, "chainwork": "000000000000000000000000000000000000000132d6677596c279f798527a37", "nTx": 5765, "previousblockhash": "00000000000000000001e3b317f092a79688ec8b9eaf5730c2fac80d255d9c87" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 f7b3 84.c d397 c336 642b 5847 213. 87c. b67b 4.6b f891 $ : 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 955402 sf: ...1 84.c 213. 87c. 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 . 955402 sk: f891 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 . 955402 ak: f7.2 74 $ : Following is the jointkode 955402 jk: f891 f7.2 74 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 35747, "bytes": 8102768, "usage": 55376136, "total_fee": 0.02042957, "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 251 ## Current epoch estimation is +6.56% ## 1834 of 2016, i.e. 90%, 182 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.526188173200793e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 955402, "bestblock": "00000000000000000001f7b3840cd397c336642b5847213087c0b67b406bf891", "txouts": 165971352, "bogosize": 12999485970, "muhash": "bb401b978597615db72785e34ba68ea85518c962ffaa734ad3d0628339be855f", "total_amount": 20047904.26466005, "total_unspendable_amount": 230.11033995, "block_info": { "prevout_spent": 2113.17699710, "coinbase": 3.14368795, "new_outputs_ex_coinbase": 2113.15830915, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 955402 { "avgfee": 324, "avgfeerate": 1, "avgtxsize": 277, "blockhash": "00000000000000000001f7b3840cd397c336642b5847213087c0b67b406bf891", "feerate_percentiles": [ 0, 0, 0, 2, 3 ], "height": 955402, "ins": 7420, "maxfee": 76350, "maxfeerate": 100, "maxtxsize": 79355, "medianfee": 75, "mediantime": 1782422376, "mediantxsize": 221, "minfee": 21, "minfeerate": 0, "mintxsize": 150, "outs": 12553, "subsidy": 312500000, "swtotal_size": 1532221, "swtotal_weight": 3731995, "swtxs": 5617, "time": 1782424221, "total_out": 211315830915, "total_size": 1597149, "total_weight": 3991707, "totalfee": 1868795, "txs": 5765, "utxo_increase": 5133, "utxo_size_inc": 367435, "utxo_increase_actual": 654, "utxo_size_inc_actual": 48347 } $ bitcoin-cli getnettotals { "totalbytesrecv": 293050716, "totalbytessent": 517328030, "timemillis": 1782424229940, "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 total block in 15 15 out 10 10 2 total 25 25 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 70434, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 70434 } } $ halving.sh 955402 ===================================== Bitcoin Block Halving prediction ===================================== bc=955402 gbt=1231006505 bbt=1782424221 This is average time to mine a block (1782424221-1231006505)/955402 bts=577.1571954452728325115160 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sat Mar 18 19:55:37 UTC 2028 ------------------------------------- Next palindrome will be 955559 predicted to happen at this time: Fri Jun 26 23:00:34 UTC 2026 ------------------------------------- Current mining epoch number is 473. The next fortnight happens in block 955584 and probably around this time: Sat Jun 27 03:01:03 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 9 "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 b0265499fe63fbac 0d95a79b0c5e7011aabe977dfeb813e363e5b86ef90638c932a9c15f0599b5a9 157efba16f6a0113 d40175815edaed7ca8c6fe8ed822c9a78ecdd697e4685673a7a127b63a6689dd f5bb70896a636fcd 9fed19035d79e89c2663836b4ff3d3eee330ed8dfcd4fc89004f438b7c0af2db d8319943296c3653 476914b67f537348797ced17ad88393600bd30f0e911eb4543c0b287a3806820 5cbe4c270c2c8668 7db1d99c138b08079e0bd45021f7c2abe2764d6c2e11733dd48132f342200126 1fe93c760a32122e 21082ad96cedc0ea145f3f446047b9bdee48aac7ea8ceef5eaed5d034c2347ae 78f8241f35fbf41b 01b97a218c30ef5ca19fd9799d08dcce0aede59059de1d89b193220fe5c977db b7a978c7ce7e2ac4 74b13cc37fb457361b8d091eeb0f3e0a13e8c6e1b4bd062b58ae9e8e4c4a1699 90cf7bd9e346bd74 30d32c13774f45e2e541b7573dba0d3d7f224e5837e7853254fa3e45c3a48a4f $ niceblack.sh $BH $BC __ __ __ / / / /__ ____/ /__ / _ \/ / _ \/ __/ '_/ /_.__/_/\___/\__/_/\_\ ___ ____ ____ ____ ___ ___ / _ \/ __// __// / // _ \|_ | \_, /__ \/__ \/_ _/ // / __/ /___/____/____/ /_/ \___/____/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 f7b3 84.c d397 1f | | 2. c336 642b 5847 213. 2f | | 3. 87c. b67b 4.6b f891 3f | '=== ==== ==== ==== ==== ===' jk: f891 f7.2 74