# on receiving block 945849 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-04-19T23:53:24Z # as written in the block header 2026-04-19T23:53:16Z $ uptime # since last reboot 23:53:24 up 31 days, 14:46, 0 users, load average: 1.91, 1.84, 1.78 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1874684 kB $ du -h -d1 .bitcoin/ 12.2G .bitcoin/indexes 4.3G .bitcoin/signet 2.7M .bitcoin/wallets 97.7G .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 433.6G 476.9G 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 945849 $ BH=$(bitcoin-cli getblockhash 945849); echo $BH 00000000000000000000703e40b5f7daaf7a4b9527b490e048cea363a1c6037b $ bitcoin-cli getblockheader 00000000000000000000703e40b5f7daaf7a4b9527b490e048cea363a1c6037b { "hash": "00000000000000000000703e40b5f7daaf7a4b9527b490e048cea363a1c6037b", "confirmations": 1, "height": 945849, "version": 540762112, "versionHex": "203b6000", "merkleroot": "d4b0a7e2338ff82824450087ad06a57a5abb055eadbb86d4d42f8acbe457ee85", "time": 1776642796, "mediantime": 1776640739, "nonce": 1922822283, "bits": "17021369", "target": "0000000000000000000213690000000000000000000000000000000000000000", "difficulty": 135594876535256.6, "chainwork": "00000000000000000000000000000000000000012118ed4c37e12f66d7fa4c9c", "nTx": 3692, "previousblockhash": "0000000000000000000125e598b5f31e6f21cef69c4ad8d16363f3fdc72b2428" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... .... 7.3e 4.b5 f7da af7a 4b95 27b4 9.e. 48ce a363 a1c6 .37b $ : 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 945849 sf: 7.3e 4.b5 9.e. .37b $ : 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 . 945849 sk: .37b 75 $ : 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 . 945849 ak: ddfa 75 $ : Following is the jointkode 945849 jk: 037b ddfa 75 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 45874, "bytes": 29953263, "usage": 155623160, "total_fee": 0.03723210, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 66, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 124 ## Current epoch estimation is +1.48% ## 345 of 2016, i.e. 17%, 1671 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.848317688076362e+20 $ bitcoin-cli getnetworkhashps 2016 945503 9.704094538460986e+20 $ bitcoin-cli getnetworkhashps 2016 943487 9.942372658458654e+20 $ bitcoin-cli gettxoutsetinfo muhash { "height": 945849, "bestblock": "00000000000000000000703e40b5f7daaf7a4b9527b490e048cea363a1c6037b", "txouts": 165381907, "bogosize": 12956348546, "muhash": "06df8744429ae4723ee08e23ecad059050f0c9bc6104b2f63b2d07890e919ca7", "total_amount": 20018051.15360258, "total_unspendable_amount": 230.09639742, "block_info": { "prevout_spent": 10626.20825843, "coinbase": 3.14553773, "new_outputs_ex_coinbase": 10626.18772070, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 945849 { "avgfee": 556, "avgfeerate": 2, "avgtxsize": 449, "blockhash": "00000000000000000000703e40b5f7daaf7a4b9527b490e048cea363a1c6037b", "feerate_percentiles": [ 0, 1, 1, 2, 3 ], "height": 945849, "ins": 8541, "maxfee": 123362, "maxfeerate": 303, "maxtxsize": 123781, "medianfee": 212, "mediantime": 1776640739, "mediantxsize": 222, "minfee": 17, "minfeerate": 0, "mintxsize": 150, "outs": 9833, "subsidy": 312500000, "swtotal_size": 1569737, "swtotal_weight": 3635147, "swtxs": 3508, "time": 1776642796, "total_out": 1062618772070, "total_size": 1658817, "total_weight": 3991467, "totalfee": 2053773, "txs": 3692, "utxo_increase": 1292, "utxo_size_inc": 90922, "utxo_increase_actual": 44, "utxo_size_inc_actual": -190 } $ bitcoin-cli getnettotals { "totalbytesrecv": 3464398586, "totalbytessent": 8088160691, "timemillis": 1776642805102, "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 16 16 out 10 10 2 total 26 26 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 66752, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 66752 } } $ halving.sh 945849 ===================================== Bitcoin Block Halving prediction ===================================== bc=945849 gbt=1231006505 bbt=1776642796 This is average time to mine a block (1776642796-1231006505)/945849 bts=576.8740191362266744198340 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Wed Mar 15 09:20:01 UTC 2028 ------------------------------------- Next palindrome will be 946649 predicted to happen at this time: Sat Apr 25 08:04:55 UTC 2026 ------------------------------------- Current mining epoch number is 469. The next fortnight happens in block 947520 and probably around this time: Fri May 1 03:39:12 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 00de322b63e69ca9 56887195a3e4781d68b17844e07d8fa19ab9c4237c44428405f2f3d5858c69f8 75e390c4b40859a6 231b87e24cd7464aa90a5831325c4a03d092d05896d86569e3831000c3da60c5 35f90c0fb4d27c37 3b97e77c842bee40c1b21522f0ae142bc4bad3e7ea3cbc084ff7ac8597552fae e811f290e545b557 91b438fd292baa7899673e95f0b574fece959ef344935aa5a4c44e712aba081b bd5c28ca73d648d3 c6b973db3d90e160e11c217163d545535e65a914a23d65cffd276dcda577f5da 23ebc31ec6577c25 e584eb4cdcf75a16c81a049b7a5b54f3bd5d3084b050a547d4d3f50f96011a4a 22401fefde290001 b8e611394d0fa07cb0754e789ba6b32e790a38349da1a323320d6c176b258034 cc5eafef7fabe466 87812ccd4bac7c5031c309bdd9241cb85f228fb9f04857930dcf8dec6b384e44 931b3aabc6c094ad 45a760e7bad06d5a76d02ee04b174b91bb9d96f172bfe60d53149be713315081 bfb936a9574324b2 c61e5549a354e2ad1172c2ea2baa8ef7d9099c2b2fb39a9c4e6eb95aa33c52b0 $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ __ ____ __ __ / || | | / \| | / | \_/||__|_|___ \__/|__|_\_/| | | \/ \ | | | | \___/\__/ | | ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. .... 7.3e 4.b5 f7da 1f | | 2. af7a 4b95 27b4 9.e. 2f | | 3. 48ce a363 a1c6 .37b 3f | '=== ==== ==== ==== ==== ===' jk: .37b ddfa 75