# on receiving block 955403 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-25T21:57:35Z # as written in the block header 2026-06-25T21:57:26Z $ uptime # since last reboot 21:57:35 up 12:51, 0 users, load average: 1.21, 1.19, 1.04 $ battery.sh 98%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2318236 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.6G .bitcoin/chainstate 125.3G .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 955403 $ BH=$(bitcoin-cli getblockhash 955403); echo $BH 00000000000000000000d2e2bb1c730f6749742a30ea38524722266c775148fb $ bitcoin-cli getblockheader 00000000000000000000d2e2bb1c730f6749742a30ea38524722266c775148fb { "hash": "00000000000000000000d2e2bb1c730f6749742a30ea38524722266c775148fb", "confirmations": 1, "height": 955403, "version": 704643072, "versionHex": "2a000000", "merkleroot": "79e33b30c334d9d693ce2ab1d33f83c691fff918eb47aaa02cf6ab488233cc90", "time": 1782424646, "mediantime": 1782422807, "nonce": 2535154650, "bits": "170240c3", "target": "0000000000000000000240c30000000000000000000000000000000000000000", "difficulty": 124932866006548.2, "chainwork": "000000000000000000000000000000000000000132d6d9163b7c7cc5c1a399dc", "nTx": 5910, "previousblockhash": "00000000000000000001f7b3840cd397c336642b5847213087c0b67b406bf891" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... d2e2 bb1c 73.f 6749 742a 3.ea 3852 4722 266c 7751 48fb $ : 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 955403 sf: 73.f 3.ea 48fb $ : 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 . 955403 sk: 48fb 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 . 955403 ak: 5fce 95 $ : Following is the jointkode 955403 jk: 48fb 5fce 95 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 36400, "bytes": 8346949, "usage": 56746720, "total_fee": 0.02112835, "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 252 ## Current epoch estimation is +6.55% ## 1835 of 2016, i.e. 91%, 181 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.525131622923275e+20 $ bitcoin-cli getnetworkhashps 2016 953567 8.939523168672514e+20 $ bitcoin-cli getnetworkhashps 2016 951551 9.944499015556698e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 955403, "bestblock": "00000000000000000000d2e2bb1c730f6749742a30ea38524722266c775148fb", "txouts": 165972068, "bogosize": 12999540412, "muhash": "12c26bd043f53cd202a1c084feb8ac1c0e2a5d2f8760db20f4052c127219c5d0", "total_amount": 20047907.38966005, "total_unspendable_amount": 230.11033995, "block_info": { "prevout_spent": 2925.97021236, "coinbase": 3.13981937, "new_outputs_ex_coinbase": 2925.95539299, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 955403 { "avgfee": 250, "avgfeerate": 1, "avgtxsize": 277, "blockhash": "00000000000000000000d2e2bb1c730f6749742a30ea38524722266c775148fb", "feerate_percentiles": [ 0, 0, 0, 1, 3 ], "height": 955403, "ins": 7488, "maxfee": 67500, "maxfeerate": 300, "maxtxsize": 47399, "medianfee": 75, "mediantime": 1782422807, "mediantxsize": 221, "minfee": 54, "minfeerate": 0, "mintxsize": 150, "outs": 12854, "subsidy": 312500000, "swtotal_size": 1619211, "swtotal_weight": 3910098, "swtxs": 5835, "time": 1782424646, "total_out": 292595539299, "total_size": 1639629, "total_weight": 3991770, "totalfee": 1481937, "txs": 5910, "utxo_increase": 5366, "utxo_size_inc": 386289, "utxo_increase_actual": 716, "utxo_size_inc_actual": 54442 } $ bitcoin-cli getnettotals { "totalbytesrecv": 296852768, "totalbytessent": 523887013, "timemillis": 1782424656212, "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 955403 ===================================== Bitcoin Block Halving prediction ===================================== bc=955403 gbt=1231006505 bbt=1782424646 This is average time to mine a block (1782424646-1231006505)/955403 bts=577.1570361857392265470942 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sat Mar 18 19:52:50 UTC 2028 ------------------------------------- Next palindrome will be 955559 predicted to happen at this time: Fri Jun 26 22:58:02 UTC 2026 ------------------------------------- Current mining epoch number is 473. The next fortnight happens in block 955584 and probably around this time: Sat Jun 27 02:58:31 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. .... d2e2 bb1c 73.f 1f | | 2. 6749 742a 3.ea 3852 2f | | 3. 4722 266c 7751 48fb 3f | '=== ==== ==== ==== ==== ===' jk: 48fb 5fce 95