# on receiving block 925052 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2025-11-24T22:05:59Z # as written in the block header 2025-11-24T22:05:37Z $ uptime # since last reboot 22:05:59 up 103 days, 7:56, 0 users, load average: 1.27, 0.78, 0.89 $ battery.sh 48%, Power Supply Online $ uname -smnr Linux singer 6.12.40-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1953016 kB $ du -h -d1 .bitcoin/ 1.5G .bitcoin/testnet4 11.8G .bitcoin/indexes 3.6G .bitcoin/signet 41.8M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 11.2G .bitcoin/chainstate 125.9G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 833.6G 76.8G 92% / $ bitcoind -version Bitcoin Core daemon version libre-relay-v30.0-1 Copyright (C) 2009-2025 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 925052 $ BH=$(bitcoin-cli getblockhash 925052); echo $BH 000000000000000000017c613bf34e4775af48dc1d029b831470bfecbb05bfaa $ bitcoin-cli getblockheader 000000000000000000017c613bf34e4775af48dc1d029b831470bfecbb05bfaa { "hash": "000000000000000000017c613bf34e4775af48dc1d029b831470bfecbb05bfaa", "confirmations": 1, "height": 925052, "version": 537067520, "versionHex": "20030000", "merkleroot": "00dd3b8acc2d9f362a89b34ea24cc4b178ab70ecd7b2434de4acd7b89df64f90", "time": 1764021937, "mediantime": 1764019671, "nonce": 4177187791, "bits": "1701d936", "target": "00000000000000000001d9360000000000000000000000000000000000000000", "difficulty": 152271405447597.4, "chainwork": "0000000000000000000000000000000000000000f80c32119ff2659ac4d7743b", "nTx": 1068, "previousblockhash": "000000000000000000001a9d946d1c41cae21fb89a227b51371d32dcbad2f40d" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 7c61 3bf3 4e47 75af 48dc 1d.2 9b83 147. bfec bb.5 bfaa $ : 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 925052 sf: ...1 1d.2 147. bb.5 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 . 925052 sk: bfaa 84 $ : 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 . 925052 ak: 1d15 84 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 26992, "bytes": 34685070, "usage": 194151440, "total_fee": 0.04446923, "maxmempool": 300000000, "mempoolminfee": 0.00000001, "minrelaytxfee": 0.00000001, "incrementalrelayfee": 0.00000001, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000 } $ gmm.sh 128 ## Current epoch estimation is -0.59% ## 1724 of 2016, i.e. 85%, 292 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 1.083251902181589e+21 $ bitcoin-cli getnetworkhashps 2016 923327 1.089721987248796e+21 $ bitcoin-cli getnetworkhashps 2016 921311 1.11405143592317e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 925052, "bestblock": "000000000000000000017c613bf34e4775af48dc1d029b831470bfecbb05bfaa", "txouts": 165925301, "bogosize": 12995665107, "muhash": "800c281f530ecd936bffb32636c078851a54f5c4db129cebcf79f0e29515095b", "total_amount": 19953060.53683868, "total_unspendable_amount": 230.08816132, "block_info": { "prevout_spent": 79.78044382, "coinbase": 3.12763678, "new_outputs_ex_coinbase": 79.77780704, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 925052 { "avgfee": 247, "avgfeerate": 0, "avgtxsize": 2168, "blockhash": "000000000000000000017c613bf34e4775af48dc1d029b831470bfecbb05bfaa", "feerate_percentiles": [ 0, 0, 0, 0, 0 ], "height": 925052, "ins": 11448, "maxfee": 65858, "maxfeerate": 10, "maxtxsize": 309530, "medianfee": 26, "mediantime": 1764019671, "mediantxsize": 222, "minfee": 20, "minfeerate": 0, "mintxsize": 153, "outs": 2317, "subsidy": 312500000, "swtotal_size": 2304380, "swtotal_weight": 3952793, "swtxs": 1035, "time": 1764021937, "total_out": 7977780704, "total_size": 2314154, "total_weight": 3991889, "totalfee": 263678, "txs": 1068, "utxo_increase": -9131, "utxo_size_inc": -654766, "utxo_increase_actual": -10110, "utxo_size_inc_actual": -725920 } $ bitcoin-cli getnettotals { "totalbytesrecv": 11212067167, "totalbytessent": 28491188939, "timemillis": 1764021959938, "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 libre-relay-v30.0-1 - server 70016/Satoshi:30.0.0/ ipv4 npr total block libre in 25 2 27 out 14 0 14 2 4 total 39 2 41 Local services: witness, compact filters, network limited, p2p v2, libre Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 64133, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 64133 } } $ halving.sh 925052 ===================================== Bitcoin Block Halving prediction ===================================== bc=925052 gbt=1231006505 bbt=1764021937 This is average time to mine a block (1764021937-1231006505)/925052 bts=576.1998847633595048067516 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 7 04:42:40 UTC 2028 ------------------------------------- Next palindrome will be 925529 predicted to happen at this time: Fri Nov 28 02:26:24 UTC 2025 ------------------------------------- Current mining epoch number is 458. The next fortnight happens in block 925344 and probably around this time: Wed Nov 26 20:49:47 UTC 2025 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 17 "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 aadd5da680e7089e 23317222ae516873a503abcf485422e9d6b1e7bf865825debd584c5332d58189 dd0b1f46e7c7f5b1 feaec435817a91a21a3a0910445db93415d7dd0490332bb4869921ba0e9f1e1c e11dac883c2e1064 502452849dd7bafc1ba13b0fbcf444bdf0620703ba4d38d2abf85839973039ef 7d86c05aacd07b59 5ad2326753289c5a3cf2acc9f1ea6f3fb3c22f86032bc4e395b4ffcd97727485 952c29ffb60124fb fc0662b36fba2f4c6bbfa93cef3bfe2d21c49ef9f9f9bcbc71746ef1aff7e1ce 7b9a1ca6d304d08a b284313e9f3df9305c3cf5f7170eca49e88592332fa99ba6f116c0a43d47dbe7 fcac17caac832b0e 46a2c9e97e8b31d67a99b37f45d068c9dddc60fb642cafe9d97a78702ea4b8a6 b39d1cbe592a0b0e fe8c3ad8d6cd8cf6332f2b578f9eb6ba6e452facf46b8e03fa184e449e7d1c2c 7e20a2e5a5478d31 7800f3a4c9375bfadf2637ea4521873534feb599ea628f2e96dc7ea1f9ed812f 34eec9cc21d83609 a18aaf539a51767bb40f36da02e87cea2697cf6a5ebb6bd5f3f6245441af1ca7 03f49600f04665bc f4368c7dc65f6510c76a12cd9676c452c4b32ff760db77a53d326687b10ba349 473f2ae55f05a1b6 360613c3c12da63b8455024cb231ef8ee4a1efc687c53126be44df2f8949b49c 93f43076b3bb3924 d9265ebbedb08c056347ba9c5f03b94fc83380b52b11dd8630c434f4e3cc40a5 ed9e412fc653288f 7844ae88f4662567a4a46a45311a87974abf895c65c8b532e8898ef6893bf52f 57440efee9ee588e fffc338b787cf263801d4cac7612a612cbaf8eac726f74cecc3f8a7d234963c5 d4728d93b09ce2ab 03aabb4dd0c87ee3c378ed4572886cce8124d09ef19c449a5d66a589cb241072 beee4ab5aa0cabbd 0868d05a90bdb917af7d3c675dbac19a2ca07dcb54da7ed8214e32a1d76e0717 $ niceblack.sh $BH $BC | | | _ \ | _ \ _| | / _.__/_|\___/\__|_\_\ _ \_ ) __| \ __|_ ) \_ / / __ \ ( |__ \ / _/ ___|___/\__/ ___/___| ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 7c61 3bf3 4e47 1f | | 2. 75af 48dc 1d.2 9b83 2f | | 3. 147. bfec bb.5 bfaa 3f | '=== ==== ==== ==== ==== ===' ak: 1d15 84