# on receiving block 934425 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-01-31T04:13:42Z # as written in the block header 2026-01-31T04:13:23Z $ uptime # since last reboot 04:13:42 up 3 days, 15:39, 0 users, load average: 1.70, 1.31, 1.58 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 927804 kB $ du -h -d1 .bitcoin/ 12.0G .bitcoin/indexes 4.1G .bitcoin/signet 87.2M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.5G .bitcoin/chainstate 124.6G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 834.7G 75.8G 92% / $ bitcoind -version Bitcoin Core daemon version v30.1.0 bitcoind 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 934425 $ BH=$(bitcoin-cli getblockhash 934425); echo $BH 000000000000000000012e5130cc2b23888ad42eb43843615f6e888663322f5a $ bitcoin-cli getblockheader 000000000000000000012e5130cc2b23888ad42eb43843615f6e888663322f5a { "hash": "000000000000000000012e5130cc2b23888ad42eb43843615f6e888663322f5a", "confirmations": 1, "height": 934425, "version": 738197504, "versionHex": "2c000000", "merkleroot": "e89033b03412c127eb0ea2b7689a8183f4074f8110685eb2e6fc431f5cb4edd9", "time": 1769832803, "mediantime": 1769827383, "nonce": 124599307, "bits": "1701fca1", "target": "00000000000000000001fca10000000000000000000000000000000000000000", "difficulty": 141668107417558.2, "chainwork": "00000000000000000000000000000000000000010b3bc11b2915ffa731c3fd22", "nTx": 3352, "previousblockhash": "00000000000000000001c9b55daa7faf6dd4c23715dee477d709ac0db0f6eb73" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 2e51 3.cc 2b23 888a d42e b438 4361 5f6e 8886 6332 2f5a $ : 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 934425 sf: ...1 3.cc 2f5a $ : 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 . 934425 sk: 2f5a 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 . 934425 ak: .5c2 a4 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 34216, "bytes": 36405050, "usage": 178291648, "total_fee": 0.04337677, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000 } $ gmm.sh 118 ## Current epoch estimation is -7.68% ## 1017 of 2016, i.e. 50%, 999 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.356869586379127e+20 $ bitcoin-cli getnetworkhashps 2016 933407 1.013538089664451e+21 $ bitcoin-cli getnetworkhashps 2016 931391 1.048049552337457e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 934425, "bestblock": "000000000000000000012e5130cc2b23888ad42eb43843615f6e888663322f5a", "txouts": 164184616, "bogosize": 12866893154, "muhash": "0b7dfd69cad8593b035273ed27d74b06d95089bb208ec2fc6d2cb67715cbcae5", "total_amount": 19982351.15718192, "total_unspendable_amount": 230.09281808, "block_info": { "prevout_spent": 7212.45920565, "coinbase": 3.14934415, "new_outputs_ex_coinbase": 7212.43486150, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 934425 { "avgfee": 726, "avgfeerate": 2, "avgtxsize": 478, "blockhash": "000000000000000000012e5130cc2b23888ad42eb43843615f6e888663322f5a", "feerate_percentiles": [ 0, 1, 2, 2, 4 ], "height": 934425, "ins": 7677, "maxfee": 67100, "maxfeerate": 211, "maxtxsize": 41930, "medianfee": 277, "mediantime": 1769827383, "mediantxsize": 255, "minfee": 17, "minfeerate": 0, "mintxsize": 150, "outs": 8506, "subsidy": 312500000, "swtotal_size": 1389699, "swtotal_weight": 3132630, "swtxs": 3025, "time": 1769832803, "total_out": 721243486150, "total_size": 1604210, "total_weight": 3990674, "totalfee": 2434415, "txs": 3352, "utxo_increase": 829, "utxo_size_inc": 58303, "utxo_increase_actual": 139, "utxo_size_inc_actual": 10212 } $ bitcoin-cli getnettotals { "totalbytesrecv": 1273300023, "totalbytessent": 2971164372, "timemillis": 1769832822695, "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 v30.1.0 - server 70016/Satoshi:30.1.0/ ipv4 npr total block libre in 20 2 22 out 14 0 14 2 4 total 34 2 36 Local services: witness, compact filters, network limited, p2p v2, libre Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 66291, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 66291 } } $ halving.sh 934425 ===================================== Bitcoin Block Halving prediction ===================================== bc=934425 gbt=1231006505 bbt=1769832803 This is average time to mine a block (1769832803-1231006505)/934425 bts=576.6388114200589452776356 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Sun Mar 12 12:43:53 UTC 2028 ------------------------------------- Next palindrome will be 934439 predicted to happen at this time: Sat Jan 31 06:27:55 UTC 2026 ------------------------------------- Current mining epoch number is 463. The next fortnight happens in block 935424 and probably around this time: Fri Feb 6 20:14:25 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 18 "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 4c6529e2f29fb8a9 dd96cb272a0a8c2dc75ae487cbec1496b340d2dc3dd22420dc067035e747f20b 40cf36e1edfc7838 e376216b12ba582e9c0f6ae60ea7a5593bea1ed0a65223a360a75ebd68630b84 f2e6f2b3a446eee9 3ba4d3b2bd3d57425d663e5471c688ebcf52dd95afc87df56e9bef40a70c76b6 6b3557f067c56786 5a96c96f1266fcda9be7a62b98d4f7c7a4673bc1fc0cee9a8dc99e5a2538f4e5 8f14501130c5b9bc 90367aa212ecac6afde3777157031fa0c48726579def93af3c1b7c189c3570fe f73bb8ddcadca052 e4c407bec40f0adf61cdb89fecf4d3566de5f67b54dcdfa671396b56bfcd8f9e a83654eab4f63bbc 8ec88b53d3238a2aa2a4772587054654ddc18cf31d8a66e6c1d98e7c17e49f84 7b9a1ca6d304d08a 2981bc5dd728e3de39fe16975c1118a4db3f2270c4caa0e6d71578adca9766e5 d5cd45ef894e8649 452ea15c98d8f6590baaf778faf0ebc2f67436ce84d68b04915e83f53b4b545f 952c29ffb60124fb b2ee8ea5aa183779a52079f37290d9d96e12cc2e543493afeccc8ebf97ade10f 93f43076b3bb3924 a694785c15abf7e29f38d8566d7e4e3ad266b81c8d4a44c4f01e328015105c7e aae562ac376a6921 15e2c557f3fa0dcb6825cde559d1aabaa81e1936987647ef656c4ce2a0ed0e76 e13787feabde9666 dcab1aa079b2c2746e95ba58ddbd4171d8f4defc56ae14fb4e7f75d7061cb6b6 9cee412e8799423c c9e6161c39fe11a6197323746b3e659c4b398281f1d044fa6e67a105623dce55 2f483f8248b737c5 129f22048e4c6d6c9ff520da520dddebabc81ad6f5aa54782f360cb78f95c5ba f4a481822fca6446 bffee7302094c36151994fa8bfbff8029744ce6d8d915789424153793ea2ec05 0118aebc556d2048 309dc5c90602b246a73b215d3d88693477c2c4dd5abc3831cea673bc40835c19 b931a422fe0021e3 0460d70927e1f4f8056d54b65d9606fd56b3390275e725ea7434119fb8837371 $ niceblack.sh $BH $BC ##### ##### # # # # # # # # # # # # ###### ##### # # # # ####### # # # # # ##### ##### # # ##### ####### # # # # # # # # # # # ##### ###### ####### # # # # # # # ####### ##### ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 2e51 3.cc 2b23 1f | | 2. 888a d42e b438 4361 2f | | 3. 5f6e 8886 6332 2f5a 3f | '=== ==== ==== ==== ==== ===' ak: .5c2 a4