# on receiving block 923744 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2025-11-15T14:01:34Z # as written in the block header 2025-11-15T14:01:22Z $ uptime # since last reboot 14:01:34 up 93 days, 23:52, 0 users, load average: 1.23, 2.48, 1.78 $ battery.sh 56%, Power Supply Online $ uname -smnr Linux singer 6.12.40-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2052068 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 832.8G 77.6G 91% / $ 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 923744 $ BH=$(bitcoin-cli getblockhash 923744); echo $BH 000000000000000000011e68769a53628f1e92239fb65d499e2ea86b5eaac7ec $ bitcoin-cli getblockheader 000000000000000000011e68769a53628f1e92239fb65d499e2ea86b5eaac7ec { "hash": "000000000000000000011e68769a53628f1e92239fb65d499e2ea86b5eaac7ec", "confirmations": 1, "height": 923744, "version": 805306368, "versionHex": "30000000", "merkleroot": "057570afba26a9ca36785f04e22bfc760c12485712209f21d0b6064d8403dfda", "time": 1763215282, "mediantime": 1763211167, "nonce": 778144789, "bits": "1701d936", "target": "00000000000000000001d9360000000000000000000000000000000000000000", "difficulty": 152271405447597.4, "chainwork": "0000000000000000000000000000000000000000f548965647775b4bd822a637", "nTx": 3310, "previousblockhash": "00000000000000000001c551333624732ac5fb845a49bc301a4a1810124435b7" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 1e68 769a 5362 8f1e 9223 9fb6 5d49 9e2e a86b 5eaa c7ec $ : 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 923744 sf: ...1 c7ec $ : 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 . 923744 sk: c7ec b4 $ : 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 . 923744 ak: 4b5. b4 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 60236, "bytes": 37176838, "usage": 209964272, "total_fee": 0.06733952, "maxmempool": 300000000, "mempoolminfee": 0.00000001, "minrelaytxfee": 0.00000001, "incrementalrelayfee": 0.00000001, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000 } $ gmm.sh 181 ## Current epoch estimation is +0.06% ## 416 of 2016, i.e. 20%, 1600 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 1.09038345171328e+21 $ bitcoin-cli getnetworkhashps 2016 923327 1.089721987248796e+21 $ bitcoin-cli getnetworkhashps 2016 921311 1.11405143592317e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 923744, "bestblock": "000000000000000000011e68769a53628f1e92239fb65d499e2ea86b5eaac7ec", "txouts": 166702764, "bogosize": 13052107979, "muhash": "ba896a71d98c326aadff3028b50046d99e9a7c1ba5b303cb013c2bb969986dcb", "total_amount": 19948973.03846404, "total_unspendable_amount": 230.08653596, "block_info": { "prevout_spent": 5427.57295060, "coinbase": 3.15676559, "new_outputs_ex_coinbase": 5427.54118485, "unspendable": 0.00000016, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000016, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 923744 { "avgfee": 959, "avgfeerate": 3, "avgtxsize": 500, "blockhash": "000000000000000000011e68769a53628f1e92239fb65d499e2ea86b5eaac7ec", "feerate_percentiles": [ 1, 1, 2, 3, 5 ], "height": 923744, "ins": 8405, "maxfee": 124800, "maxfeerate": 150, "maxtxsize": 51168, "medianfee": 428, "mediantime": 1763211167, "mediantxsize": 224, "minfee": 111, "minfeerate": 1, "mintxsize": 139, "outs": 9079, "subsidy": 312500000, "swtotal_size": 1546018, "swtotal_weight": 3545476, "swtxs": 3012, "time": 1763215282, "total_out": 542754118501, "total_size": 1657618, "total_weight": 3991876, "totalfee": 3176559, "txs": 3310, "utxo_increase": 674, "utxo_size_inc": 54501, "utxo_increase_actual": 534, "utxo_size_inc_actual": 42659 } $ bitcoin-cli getnettotals { "totalbytesrecv": 7942453977, "totalbytessent": 20708268080, "timemillis": 1763215294715, "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 23 2 25 out 14 0 14 2 4 total 37 2 39 Local services: witness, compact filters, network limited, p2p v2, libre Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 68760, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 68760 } } $ halving.sh 923744 ===================================== Bitcoin Block Halving prediction ===================================== bc=923744 gbt=1231006505 bbt=1763215282 This is average time to mine a block (1763215282-1231006505)/923744 bts=576.1425252640068417149754 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Mon Mar 6 11:58:52 UTC 2028 ------------------------------------- Next palindrome will be 924429 predicted to happen at this time: Thu Nov 20 03:38:59 UTC 2025 ------------------------------------- Current mining epoch number is 458. The next fortnight happens in block 925344 and probably around this time: Wed Nov 26 06:05:10 UTC 2025 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 15 "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 e46f044eb556eaa8 3153d585d605443be77e4a2f3140e8f40b9ef722bd81e375f19e3c4232a2de6a 30674743a4c25f0c 52abc914702fcb49bd42252e2d32b989ae9b1170f57f1b024fdab5f6144d1709 0807a9526523077f 43784e22c1815d54d8665985de80f1d089786283937256eee7171a8a43d67c69 a95260aa2f5b98d2 d1c839c2aaaf7ecd9e8779c219b3f493ab8409b217525e71137e20e7ae1dd7cf 8d07df53fe6ce9b5 fa828f79d983e7f2fe97bcf269d8be6dc8354db9f5fd3ece6d8175542119e0c9 2a46cc7bd1ee8668 1183eee22296675b504b9d7c8070b80753226566acdf3e45d109325af7f41bf6 7a7d42b998be6fba 7b29a6a9f9bd74585645670079d4be65101e14f0be23dc309fc1ffd2c629465e 952c29ffb60124fb 4187d16c0fd2709b1bb3c543fbcf477fd9b70aae0bb549b17c7b24267ac264e7 5edd4df6e5dd001e 161edcfbb64560a004db34571b751eff3894ebba58b2401bea88ac2c81d5e28d 2f483f8248b737c5 ff78aad30dc72c750786839baea4cbeea3e56ba2f0c5f10ed87b432dc715ba7e 3f5d21b063816822 375c92c2a27b58e0452a288a894ef7745afd3899a44a4e2650a621d34e115c2a 7b9a1ca6d304d08a c444102c35dec1f14fac27a3f0bed8095700aef290ec64a93b1d7d97b698f3f2 bdd54ae21deda947 163eb4ad0497cfb5e66291de4dab9468eb3f3f02f7df5b2f14daf54485b68aa7 d3b920e73b83a6a3 dbf04ba190b5e90af11513d0df3f45232089d282bee6df58577ed265f2b4ae9f $ niceblack.sh $BH $BC _|_| _|_| _|_|_| _| _| _| _| _| _|_|_| _| _|_| _| _| _| _|_|_| _|_|_|_| _|_|_| _|_|_|_|_| _| _| _| _| _| _| _| _| _| _| _|_|_|_| _|_|_|_| _| _| _| _| _| _| ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 1e68 769a 5362 1f | | 2. 8f1e 9223 9fb6 5d49 2f | | 3. 9e2e a86b 5eaa c7ec 3f | '=== ==== ==== ==== ==== ===' ak: 4b5. b4