# on receiving block 946749 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-04-26T14:39:35Z # as written in the block header 2026-04-26T14:39:03Z $ uptime # since last reboot 14:39:35 up 38 days, 5:32, 0 users, load average: 1.97, 1.62, 1.59 $ battery.sh 150%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1664260 kB $ du -h -d1 .bitcoin/ 12.2G .bitcoin/indexes 4.4G .bitcoin/signet 2.7M .bitcoin/wallets 97.6G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 125.0G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 434.4G 476.1G 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 946749 $ BH=$(bitcoin-cli getblockhash 946749); echo $BH 000000000000000000004e6892863249106b3ebc28ca0792ea627dfc7a6a7d39 $ bitcoin-cli getblockheader 000000000000000000004e6892863249106b3ebc28ca0792ea627dfc7a6a7d39 { "hash": "000000000000000000004e6892863249106b3ebc28ca0792ea627dfc7a6a7d39", "confirmations": 1, "height": 946749, "version": 675307520, "versionHex": "28406000", "merkleroot": "f66c2e27ef649ace8e671e468a16fdb5e72fa98fcf4a702a36d3ecf010fa2f0a", "time": 1777214343, "mediantime": 1777211972, "nonce": 655718736, "bits": "17021369", "target": "0000000000000000000213690000000000000000000000000000000000000000", "difficulty": 135594876535256.6, "chainwork": "000000000000000000000000000000000000000122ca7d87ec6f6162bec11734", "nTx": 6225, "previousblockhash": "000000000000000000012ed6432d049ed07dff88cb2bb1ee1b4950e7b8f25704" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... 4e68 9286 3249 1.6b 3ebc 28ca .792 ea62 7dfc 7a6a 7d39 $ : 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 946749 sf: 1.6b .792 7d39 $ : 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 . 946749 sk: 7d39 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 . 946749 ak: 7fe5 95 $ : Following is the jointkode 946749 jk: 7d39 7fe5 95 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 53139, "bytes": 31474737, "usage": 166362384, "total_fee": 0.04175268, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 1, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 132 ## Current epoch estimation is -0.01% ## 1245 of 2016, i.e. 61%, 771 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.702617990709054e+20 $ bitcoin-cli getnetworkhashps 2016 945503 9.704094538460986e+20 $ bitcoin-cli getnetworkhashps 2016 943487 9.942372658458654e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 946749, "bestblock": "000000000000000000004e6892863249106b3ebc28ca0792ea627dfc7a6a7d39", "txouts": 165406063, "bogosize": 12957825233, "muhash": "b74b7f9c75f6596e03e8832825c6a1d130f81786029f45bad96ccf856d257243", "total_amount": 20020863.65344954, "total_unspendable_amount": 230.09655046, "block_info": { "prevout_spent": 217.74754291, "coinbase": 3.12942577, "new_outputs_ex_coinbase": 217.74311714, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 946749 { "avgfee": 71, "avgfeerate": 0, "avgtxsize": 264, "blockhash": "000000000000000000004e6892863249106b3ebc28ca0792ea627dfc7a6a7d39", "feerate_percentiles": [ 0, 0, 0, 0, 1 ], "height": 946749, "ins": 7907, "maxfee": 40035, "maxfeerate": 179, "maxtxsize": 53460, "medianfee": 25, "mediantime": 1777211972, "mediantxsize": 221, "minfee": 0, "minfeerate": 0, "mintxsize": 150, "outs": 12343, "subsidy": 312500000, "swtotal_size": 1624054, "swtotal_weight": 3904825, "swtxs": 6207, "time": 1777214343, "total_out": 21774311714, "total_size": 1645720, "total_weight": 3991489, "totalfee": 442577, "txs": 6225, "utxo_increase": 4436, "utxo_size_inc": 304187, "utxo_increase_actual": -1337, "utxo_size_inc_actual": -105946 } $ bitcoin-cli getnettotals { "totalbytesrecv": 5549992839, "totalbytessent": 12717062923, "timemillis": 1777214375625, "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 17 2 19 out 10 0 10 2 total 27 2 29 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 66584, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 66584 } } $ halving.sh 946749 ===================================== Bitcoin Block Halving prediction ===================================== bc=946749 gbt=1231006505 bbt=1777214343 This is average time to mine a block (1777214343-1231006505)/946749 bts=576.9293245312912595722207 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Thu Mar 16 01:27:52 UTC 2028 ------------------------------------- Next palindrome will be 947749 predicted to happen at this time: Sun May 3 06:54:32 UTC 2026 ------------------------------------- Current mining epoch number is 469. The next fortnight happens in block 947520 and probably around this time: Fri May 1 18:12:35 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 696e648199e8708a 90614791a9d0044285c81f2471cd6321c42db6f9b1d79b21790393c226a6a892 3fe956c76c07f6d7 ebafc850d5580aee06ab9bd6fb0703c9000cff7825ccdfde9e39e5d96ddf7fcb 12767e02f1f87c22 1f205225725ec12e94956bc0583a15f97f3c2b2b51f0c20efb5522c9a9100b63 6ba96c7b88e6725a 38e72a89e5a767b48b95aa939d5c1c7fbb70ec6645f2e48d2b0e9e41266e68af 1aa6113a5e84f800 feb205aa925df10a06f95c40c5993d5bfd77944729558835a8f9e58a1c348e22 dfedb6e389535cfe a320d20f467a1fc432eb18f62d5b2f00c1d5a687f208dfcdd8555b84af6778e4 084064c7606aac23 a3d17535cc3d5e2a4bb26f8ff618e8287b94c47692f46a6494aa008380cd759f 6724225dfb6a4623 64db04f7cd0a30b626f24aa093e053ef17efdd4fff643a9aa4f5b152b4653ab0 2610f42fc40516ce 03de5954eeee971ce35f4ddaab4bd7d9819a8666535f3eac6595d0171b458c14 $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ __ _______ __ / || | / /| | / | \_/||__|_| __ / |__|_\_/| | | |/ \ / | | | | \__// | | ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. .... 4e68 9286 3249 1f | | 2. 1.6b 3ebc 28ca .792 2f | | 3. ea62 7dfc 7a6a 7d39 3f | '=== ==== ==== ==== ==== ===' jk: 7d39 7fe5 95