# on receiving block 925655 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2025-11-29T03:46:28Z # as written in the block header 2025-11-29T03:46:30Z $ uptime # since last reboot 03:46:28 up 107 days, 13:37, 0 users, load average: 0.72, 1.11, 1.45 $ battery.sh 50%, Power Supply Online $ uname -smnr Linux singer 6.12.40-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1676312 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.5G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 833.8G 76.6G 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 925655 $ BH=$(bitcoin-cli getblockhash 925655); echo $BH 0000000000000000000152849c1985c81983aa6a2f5ca68dc7dc38c24ca09ce1 $ bitcoin-cli getblockheader 0000000000000000000152849c1985c81983aa6a2f5ca68dc7dc38c24ca09ce1 { "hash": "0000000000000000000152849c1985c81983aa6a2f5ca68dc7dc38c24ca09ce1", "confirmations": 1, "height": 925655, "version": 608575488, "versionHex": "24462000", "merkleroot": "3c7a452e98c572932aa640b4f21bb6669d4efb28dfa871eb324e0e551145d002", "time": 1764387990, "mediantime": 1764383628, "nonce": 2513031225, "bits": "1701e2a0", "target": "00000000000000000001e2a00000000000000000000000000000000000000000", "difficulty": 149301205959699.9, "chainwork": "0000000000000000000000000000000000000000f94f1dfdd1d05fca59925020", "nTx": 2028, "previousblockhash": "00000000000000000000b328323666c81d8bdaf257182561375183b2ca21fc7e" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 5284 9c19 85c8 1983 aa6a 2f5c a68d c7dc 38c2 4ca. 9ce1 $ : 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 925655 sf: ...1 4ca. 9ce1 $ : 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 . 925655 sk: 9ce1 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 . 925655 ak: 5e33 a4 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 32632, "bytes": 31376479, "usage": 175753504, "total_fee": 0.03618080, "maxmempool": 300000000, "mempoolminfee": 0.00000001, "minrelaytxfee": 0.00000001, "incrementalrelayfee": 0.00000001, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000 } $ gmm.sh 115 ## Current epoch estimation is -0.39% ## 311 of 2016, i.e. 15%, 1705 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 1.064227704358492e+21 $ bitcoin-cli getnetworkhashps 2016 925343 1.068462185929668e+21 $ bitcoin-cli getnetworkhashps 2016 923327 1.089721987248796e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 925655, "bestblock": "0000000000000000000152849c1985c81983aa6a2f5ca68dc7dc38c24ca09ce1", "txouts": 165698581, "bogosize": 12980441719, "muhash": "4ec70d06535be9043ae7aeff0f39f15c08517a48a13da0b537481ae8560efdb6", "total_amount": 19954944.91120081, "total_unspendable_amount": 230.08879919, "block_info": { "prevout_spent": 2191.02172055, "coinbase": 3.14195233, "new_outputs_ex_coinbase": 2191.00476820, "unspendable": 0.00000002, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000002, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 925655 { "avgfee": 836, "avgfeerate": 2, "avgtxsize": 529, "blockhash": "0000000000000000000152849c1985c81983aa6a2f5ca68dc7dc38c24ca09ce1", "feerate_percentiles": [ 1, 1, 1, 2, 4 ], "height": 925655, "ins": 5424, "maxfee": 70500, "maxfeerate": 501, "maxtxsize": 35651, "medianfee": 284, "mediantime": 1764383628, "mediantxsize": 234, "minfee": 99, "minfeerate": 1, "mintxsize": 139, "outs": 5197, "subsidy": 312500000, "swtotal_size": 965149, "swtotal_weight": 2199475, "swtxs": 1894, "time": 1764387990, "total_out": 219100476822, "total_size": 1072877, "total_weight": 2630387, "totalfee": 1695233, "txs": 2028, "utxo_increase": -227, "utxo_size_inc": -9073, "utxo_increase_actual": -303, "utxo_size_inc_actual": -15802 } $ bitcoin-cli getnettotals { "totalbytesrecv": 12932330176, "totalbytessent": 32734241384, "timemillis": 1764387989248, "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 28 2 30 out 14 0 14 2 4 total 42 2 44 Local services: witness, compact filters, network limited, p2p v2, libre Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 65074, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 65074 } } $ halving.sh 925655 ===================================== Bitcoin Block Halving prediction ===================================== bc=925655 gbt=1231006505 bbt=1764387990 This is average time to mine a block (1764387990-1231006505)/925655 bts=576.2199834495752201681834 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 7 10:34:23 UTC 2028 ------------------------------------- Next palindrome will be 926629 predicted to happen at this time: Fri Dec 5 15:40:28 UTC 2025 ------------------------------------- Current mining epoch number is 459. The next fortnight happens in block 927360 and probably around this time: Wed Dec 10 12:40:45 UTC 2025 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 22 "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 84fd0a77d7e55809 c8f7156603894a75398c0eb58f9f89c91a0e3c46a6e1e1cee040eb45619d3de3 28fedca04b7887ac 76362823239d9dd5926a3f61949dd64c7fa82e54841b1f1f89ba7d6b93cddf70 b96173b624016672 062b3bd9f4a9ab105175a8c1dba0a7879dad84c69296b99021a8bc66d15a6f3f 5464523bc87fc9ed 4a79785b619ec6cbf5d7585d2079f774a7e25adeff8f97db968502463deb3ff0 22821c3151412da3 642e3647d0e6d34d0b0557a4c027771954ebde851242ca5da420d86135ed7e3c c9da370b2f354dfe a1563ceadd6ff4c5d91ff19fc65374a3d6f15f55d07a933e6f821a81cf9886a9 38d86adc8a2587d7 4ce2c88bf801ef4ebf85427beb89216dbffaa5268076c3503467df2e0e6b55e4 952c29ffb60124fb d51095df42dc58cf23039200747753ec5d06aeec75d793ad5f3cd9225e2e362b 7b9a1ca6d304d08a d8d6b6d674341580f47bcec55363adbd92309785f43f7d248730cbaa2f76cf84 2f483f8248b737c5 a1ab3d05c57873f38b254f3e70cdcbe2673d3222c9795f2182b1d8bae3c72ac5 79d69d65494a59e2 9a8ef6f0173541e6ec1811c68b38cf5176e726f454470c0f7f618c1411c7142e 6b3034d557f417de 7a62d77f6a4fa298f56bfc602775cb70afe2408d3e3f74f6a59fd61ef61091f2 42033300ad5bc2a1 5b362dc619958a18fd0c35625c316ffd07235cb7dfb6f96d38d5297212849d06 e468ba1203301cbd baae900bcb17983450a43d5688c7df3157cbbf01a1ad124b0802fcc8da28f60a 23f66ce810209d34 4d0f33dd52104d8e0b17a616478a21cfa0db8d584f255a140d5df340cedc3eec 7984147af4e27f79 c46e320070b3c51fd5a3f014dd60c52bbc470c27f81cf8ffc61447cba3f01d38 08063a1fda15d887 f103533e6d014c99c4265217bf8ef295c28cfcd5cb0bbc47c0d0b176b5f60223 244b71c2b6205b8d bf4730a4b58a3c345b55e8ad109c1cd83927109b7588e1080fbdd0c82e9ffea4 e9a0262d5d0e653f ce254707e129107777928a1b6cba639b66c10932b45e58f243aa138bebe52a1e 93f43076b3bb3924 d1960666100c7498235e33b1599eeca999204e6c4b5f4612b2ecd33d6388894b $ niceblack.sh $BH $BC | | | _ \ | _ \ _| | / _.__/_|\___/\__|_\_\ _ \_ ) __| / __| __| \_ / / __ \ _ \__ \__ \ _/ ___|___/\___/___/___/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 5284 9c19 85c8 1f | | 2. 1983 aa6a 2f5c a68d 2f | | 3. c7dc 38c2 4ca. 9ce1 3f | '=== ==== ==== ==== ==== ===' ak: 5e33 a4