# on receiving block 941340 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-03-19T21:56:27Z # as written in the block header 2026-03-19T21:56:12Z $ uptime # since last reboot 21:56:27 up 12:49, 0 users, load average: 0.39, 0.43, 0.71 $ battery.sh 99%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2351904 kB $ du -h -d1 .bitcoin/ 12.1G .bitcoin/indexes 4.2G .bitcoin/signet 2.6M .bitcoin/wallets 97.7G .bitcoin/blocks 18.6M .bitcoin/regtest 10.6G .bitcoin/chainstate 124.8G .bitcoin/ $ df -h . Filesystem Size Used Available Use% Mounted on /dev/sda3 911.4G 433.0G 477.4G 48% / $ bitcoind -version Bitcoin Core daemon version v30.2.0 bitcoind Copyright (C) 2009-2026 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 941340 $ BH=$(bitcoin-cli getblockhash 941340); echo $BH 00000000000000000001d30af782b0ead6229c0a638e6fc0d50849017c4fab5f $ bitcoin-cli getblockheader 00000000000000000001d30af782b0ead6229c0a638e6fc0d50849017c4fab5f { "hash": "00000000000000000001d30af782b0ead6229c0a638e6fc0d50849017c4fab5f", "confirmations": 1, "height": 941340, "version": 637534208, "versionHex": "26000000", "merkleroot": "11d04201c8aeca78c3ad1760085356cfe7dff95e00f4198224c16651f244597b", "time": 1773957372, "mediantime": 1773951763, "nonce": 2875128082, "bits": "1701f0cc", "target": "00000000000000000001f0cc0000000000000000000000000000000000000000", "difficulty": 145042165424853.3, "chainwork": "0000000000000000000000000000000000000001188d2169ff990e21cbff36a9", "nTx": 3682, "previousblockhash": "000000000000000000016e4eb71df00e5100ce1b7bf49356133bf928c2cdff60" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 d3.a f782 b.ea d622 9c.a 638e 6fc. d5.8 49.1 7c4f ab5f $ : 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 941340 sf: ...1 d3.a b.ea 9c.a 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 . 941340 sk: ab5f 54 $ : 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 . 941340 ak: 991c 54 $ : Following is the jointkode 941340 jk: ab5f 991c 54 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 34100, "bytes": 30549585, "usage": 170212240, "total_fee": 0.05936461, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000 } $ gmm.sh 193 ## Current epoch estimation is -6.45% ## 1884 of 2016, i.e. 93%, 132 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.709553948767545e+20 $ bitcoin-cli getnetworkhashps 2016 939455 1.037983005536264e+21 $ bitcoin-cli getnetworkhashps 2016 937439 1.03283744073678e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 941340, "bestblock": "00000000000000000001d30af782b0ead6229c0a638e6fc0d50849017c4fab5f", "txouts": 164984033, "bogosize": 12926115144, "muhash": "cd171737758572352db812af0e92ed5589ef64036645091f71ca93bc691b0425", "total_amount": 20003960.53065874, "total_unspendable_amount": 230.09434126, "block_info": { "prevout_spent": 5718.82642718, "coinbase": 3.16242429, "new_outputs_ex_coinbase": 5718.78900288, "unspendable": 0.00000001, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000001, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 941340 { "avgfee": 1016, "avgfeerate": 3, "avgtxsize": 466, "blockhash": "00000000000000000001d30af782b0ead6229c0a638e6fc0d50849017c4fab5f", "feerate_percentiles": [ 3, 3, 3, 4, 4 ], "height": 941340, "ins": 8933, "maxfee": 133317, "maxfeerate": 75, "maxtxsize": 69418, "medianfee": 576, "mediantime": 1773951763, "mediantxsize": 223, "minfee": 0, "minfeerate": 0, "mintxsize": 150, "outs": 8401, "subsidy": 312500000, "swtotal_size": 1626534, "swtotal_weight": 3632175, "swtxs": 3422, "time": 1773957372, "total_out": 571878900289, "total_size": 1716472, "total_weight": 3991927, "totalfee": 3742429, "txs": 3682, "utxo_increase": -532, "utxo_size_inc": -31272, "utxo_increase_actual": -719, "utxo_size_inc_actual": -47165 } $ bitcoin-cli getnettotals { "totalbytesrecv": 216229188, "totalbytessent": 427447933, "timemillis": 1773957388019, "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.2.0 - server 70016/Satoshi:30.2.0/ ipv4 npr total block libre in 14 1 15 out 14 0 14 2 4 total 28 1 29 Local services: witness, compact filters, network limited, p2p v2, libre Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 64244, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 64244 } } $ halving.sh 941340 ===================================== Bitcoin Block Halving prediction ===================================== bc=941340 gbt=1231006505 bbt=1773957372 This is average time to mine a block (1773957372-1231006505)/941340 bts=576.7844670528533230784593 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 14 07:12:52 UTC 2028 ------------------------------------- Next palindrome will be 942249 predicted to happen at this time: Wed Mar 25 23:34:29 UTC 2026 ------------------------------------- Current mining epoch number is 466. The next fortnight happens in block 941472 and probably around this time: Fri Mar 20 19:05:07 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 19 "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 5373fd8cafb016e8 b972b7982e1c85a3ec1176d193821a9fd9f0a582c38cc84860e6374e3707c227 02cb5c606760eb35 2dc79d44c774726b418021dae17209492b9de7b6f762d5f3e47c554de8d75254 3901238e046485fc 79859b081551c4ccb110a6484e655b2f1af33acef9529148e49ed7933a352389 158469a4b6772271 f15efb9bd939250742dedac59bf1cdc17f770d580c843f5c9d3e65aff3a53c6b 169a7c1ce70f690f 93a14a48ed5f2a6674850c88c6b6a49d29f27d0281b5bb37db52bf469c23c581 0f105d74c07c41e0 c7678ef188f0a087f4c700c45aaf4d1d6d9fbf7e46be73b294bbd78ba09844db e91dadb9671bb96c b1b397caa4ae3e3f8db89936f93989756937149de29f0b3b93ea37cfe583426b fb0dde6c60f5b6a1 4f617f6633dde1ba9e84cb7c24448371c0c861609dc0bec541b6878d235841f7 cf6a7f1db98b90aa d9b5b704cff4a61fde891c49fbac1b8b3c5257cbdb65c5dd95ae08e243c55d09 a3ac90fa82d94fae b302b4728d9279771e4cc673367aa59f554b25afdd9224229909a8febfac077d e7bb3d482e5189fd e1e6157745128ebffc2468d4439fec2e62ed7372d6853fbd27374872bbcee070 052a081fb8087981 dee8a2fa37b0334483d030f7776711bbda72e79a9e3ebcff1ca0a4e94627c353 9fe3a7be21b10244 e71b723a47833a01dab9abb2d9891c6a774f35115ecd1f70c8a4594a742d54c3 952c29ffb60124fb 9a177004507a7db9a8727459546de737f5e7ab186e969190476fb8bea12d4ce1 de88b0441f88698c 68dc9ff15d962e31d2d9daed27abf1e82c4cf7a5043e283d05ceaa55b6c99295 4b358538a395d452 925d13e9bd000fef522f7e7574ba71442a0addd8b4b44a3c7c094f064107de98 7b51432c64e49e52 666d9ff0e949613636404fb57c1177ac4e87957633f5b8162c8726aa34cebbfd 326965ec2c8dd637 fe4f8d8c273db83fc67d02a2652b342c82e05cd81af686b210f2ba200890c8b4 f05404c4df3634e9 e20e6735f4f3429183b82ea67d959736d55f134766dda5412631f125051f6b12 $ niceblack.sh $BH $BC _ _ _ | | | | | | | | | | __ __ | | |/ \_|/ / \_/ |/_) \_/ |__/\__/ \___/| \_/ __ , ___ __ / || |/|/ \| | / \ \_/||__|_| __/|__|_| | | | | \ | | | | | |\___/ | \__/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 d3.a f782 b.ea 1f | | 2. d622 9c.a 638e 6fc. 2f | | 3. d5.8 49.1 7c4f ab5f 3f | '=== ==== ==== ==== ==== ===' jk: ab5f 991c 54