# on receiving block 925293 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2025-11-26T16:46:42Z # as written in the block header 2025-11-26T16:47:34Z $ uptime # since last reboot 16:46:42 up 105 days, 2:37, 0 users, load average: 1.43, 1.25, 2.02 $ battery.sh 49%, Power Supply Online $ uname -smnr Linux singer 6.12.40-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1711956 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 10.7G .bitcoin/chainstate 125.4G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 833.5G 76.9G 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 925293 $ BH=$(bitcoin-cli getblockhash 925293); echo $BH 00000000000000000001d2c4c70d9d79a3625c96bf56e94d8b725fdbceac633d $ bitcoin-cli getblockheader 00000000000000000001d2c4c70d9d79a3625c96bf56e94d8b725fdbceac633d { "hash": "00000000000000000001d2c4c70d9d79a3625c96bf56e94d8b725fdbceac633d", "confirmations": 1, "height": 925293, "version": 593100800, "versionHex": "235a0000", "merkleroot": "224cd93a8985b913b201523bebc2d324bf6b78cd70d4c6017308b08b041285ae", "time": 1764175654, "mediantime": 1764172488, "nonce": 789789738, "bits": "1701d936", "target": "00000000000000000001d9360000000000000000000000000000000000000000", "difficulty": 152271405447597.4, "chainwork": "0000000000000000000000000000000000000000f88e92ad4b101cef60cc24c2", "nTx": 2918, "previousblockhash": "000000000000000000013ebb043a791d6f3d9927ab9e65ace9e7b3a95ddd48a9" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 d2c4 c7.d 9d79 a362 5c96 bf56 e94d 8b72 5fdb ceac 633d $ : 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 925293 sf: ...1 c7.d 633d $ : 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 . 925293 sk: 633d a4 $ : 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 . 925293 ak: 5866 a4 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 41464, "bytes": 32632261, "usage": 187952672, "total_fee": 0.05166707, "maxmempool": 300000000, "mempoolminfee": 0.00000001, "minrelaytxfee": 0.00000001, "incrementalrelayfee": 0.00000001, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000 } $ gmm.sh 158 ## Current epoch estimation is -1.74% ## 1965 of 2016, i.e. 97%, 51 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 1.070698535625644e+21 $ bitcoin-cli getnetworkhashps 2016 923327 1.089721987248796e+21 $ bitcoin-cli getnetworkhashps 2016 921311 1.11405143592317e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 925293, "bestblock": "00000000000000000001d2c4c70d9d79a3625c96bf56e94d8b725fdbceac633d", "txouts": 165634729, "bogosize": 12975236022, "muhash": "c9a95ed5d090099b6f316b1961afe35597c925b15b5fc614541bccc2e7ecf0db", "total_amount": 19953813.66130000, "total_unspendable_amount": 230.08870000, "block_info": { "prevout_spent": 9859.58891480, "coinbase": 3.16489724, "new_outputs_ex_coinbase": 9859.54901755, "unspendable": 0.00000001, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000001, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 925293 { "avgfee": 1367, "avgfeerate": 3, "avgtxsize": 557, "blockhash": "00000000000000000001d2c4c70d9d79a3625c96bf56e94d8b725fdbceac633d", "feerate_percentiles": [ 2, 2, 2, 4, 6 ], "height": 925293, "ins": 8083, "maxfee": 87856, "maxfeerate": 180, "maxtxsize": 41331, "medianfee": 564, "mediantime": 1764172488, "mediantxsize": 225, "minfee": 142, "minfeerate": 0, "mintxsize": 139, "outs": 9188, "subsidy": 312500000, "swtotal_size": 1519014, "swtotal_weight": 3566964, "swtxs": 2638, "time": 1764175654, "total_out": 985954901756, "total_size": 1625192, "total_weight": 3991676, "totalfee": 3989724, "txs": 2918, "utxo_increase": 1105, "utxo_size_inc": 85723, "utxo_increase_actual": 984, "utxo_size_inc_actual": 73393 } $ bitcoin-cli getnettotals { "totalbytesrecv": 11864473084, "totalbytessent": 30037151240, "timemillis": 1764175603419, "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 24 2 26 out 14 0 14 2 4 total 38 2 40 Local services: witness, compact filters, network limited, p2p v2, libre Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 65003, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 65003 } } $ halving.sh 925293 ===================================== Bitcoin Block Halving prediction ===================================== bc=925293 gbt=1231006505 bbt=1764175654 This is average time to mine a block (1764175654-1231006505)/925293 bts=576.2159367725285152610953 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 7 09:23:34 UTC 2028 ------------------------------------- Next palindrome will be 925529 predicted to happen at this time: Fri Nov 28 06:34:00 UTC 2025 ------------------------------------- Current mining epoch number is 458. The next fortnight happens in block 925344 and probably around this time: Thu Nov 27 00:57:21 UTC 2025 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 20 "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 e11dac883c2e1064 502452849dd7bafc1ba13b0fbcf444bdf0620703ba4d38d2abf85839973039ef 473f2ae55f05a1b6 360613c3c12da63b8455024cb231ef8ee4a1efc687c53126be44df2f8949b49c 93f43076b3bb3924 d9265ebbedb08c056347ba9c5f03b94fc83380b52b11dd8630c434f4e3cc40a5 57440efee9ee588e fffc338b787cf263801d4cac7612a612cbaf8eac726f74cecc3f8a7d234963c5 84fd0a77d7e55809 c8f7156603894a75398c0eb58f9f89c91a0e3c46a6e1e1cee040eb45619d3de3 28fedca04b7887ac 76362823239d9dd5926a3f61949dd64c7fa82e54841b1f1f89ba7d6b93cddf70 b96173b624016672 062b3bd9f4a9ab105175a8c1dba0a7879dad84c69296b99021a8bc66d15a6f3f 5464523bc87fc9ed 4a79785b619ec6cbf5d7585d2079f774a7e25adeff8f97db968502463deb3ff0 22821c3151412da3 642e3647d0e6d34d0b0557a4c027771954ebde851242ca5da420d86135ed7e3c c9da370b2f354dfe a1563ceadd6ff4c5d91ff19fc65374a3d6f15f55d07a933e6f821a81cf9886a9 38d86adc8a2587d7 4ce2c88bf801ef4ebf85427beb89216dbffaa5268076c3503467df2e0e6b55e4 952c29ffb60124fb d51095df42dc58cf23039200747753ec5d06aeec75d793ad5f3cd9225e2e362b 7b9a1ca6d304d08a d8d6b6d674341580f47bcec55363adbd92309785f43f7d248730cbaa2f76cf84 2f483f8248b737c5 a1ab3d05c57873f38b254f3e70cdcbe2673d3222c9795f2182b1d8bae3c72ac5 521bde8d539648d0 09dc5eacee24f26007ad66af1c391e0ee02779579178c2682b7c42b40827dc60 100ce18dd95b792e 38c96ea6b351ce8a5e2b906accd2126faadbc1b7f87be0b99b8e11fd1e961e9f 79d69d65494a59e2 9a8ef6f0173541e6ec1811c68b38cf5176e726f454470c0f7f618c1411c7142e 6b3034d557f417de 7a62d77f6a4fa298f56bfc602775cb70afe2408d3e3f74f6a59fd61ef61091f2 42033300ad5bc2a1 5b362dc619958a18fd0c35625c316ffd07235cb7dfb6f96d38d5297212849d06 e468ba1203301cbd baae900bcb17983450a43d5688c7df3157cbbf01a1ad124b0802fcc8da28f60a $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ __ __ ____ __ __ ___ / |/ )| / )/ |/ \ \_/| / |___ / \_/| __/ | / \ / | \ |/___\___//___ |\___/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 d2c4 c7.d 9d79 1f | | 2. a362 5c96 bf56 e94d 2f | | 3. 8b72 5fdb ceac 633d 3f | '=== ==== ==== ==== ==== ===' ak: 5866 a4