# on receiving block 942349 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-03-26T18:15:27Z # as written in the block header 2026-03-26T18:14:46Z $ uptime # since last reboot 18:15:27 up 7 days, 9:08, 0 users, load average: 0.38, 0.42, 0.65 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2351968 kB $ du -h -d1 .bitcoin/ 12.1G .bitcoin/indexes 4.3G .bitcoin/signet 2.7M .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.2G 477.3G 48% / $ bitcoind -version Bitcoin Core daemon version v31.0rc2 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 942349 $ BH=$(bitcoin-cli getblockhash 942349); echo $BH 00000000000000000001a5743710e722aade315b5b0e6ab62c4d8a9d09d37980 $ bitcoin-cli getblockheader 00000000000000000001a5743710e722aade315b5b0e6ab62c4d8a9d09d37980 { "hash": "00000000000000000001a5743710e722aade315b5b0e6ab62c4d8a9d09d37980", "confirmations": 1, "height": 942349, "version": 673144832, "versionHex": "281f6000", "merkleroot": "e29e28271d7e0af19777ac244acbb9d1525459667436ead9f6d3055d1c3f8e5d", "time": 1774548886, "mediantime": 1774547495, "nonce": 3014334124, "bits": "17021a91", "target": "000000000000000000021a910000000000000000000000000000000000000000", "difficulty": 133793147307542.8, "chainwork": "00000000000000000000000000000000000000011a71fadff75dfb0dd8cddea8", "nTx": 4583, "previousblockhash": "000000000000000000008220b3f133ccd2285199ebc88e2105757a49abb7ccc6" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... .... .... .... ...1 a574 371. e722 aade 315b 5b.e 6ab6 2c4d 8a9d .9d3 798. $ : 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 942349 sf: ...1 371. 5b.e .9d3 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 . 942349 sk: 798. 74 $ : 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 . 942349 ak: .9f9 74 $ : Following is the jointkode 942349 jk: 7980 .9f9 74 ### niceblack moved to the end $ bitcoin-cli getmempoolinfo { "loaded": true, "size": 21390, "bytes": 10301708, "usage": 61596520, "total_fee": 0.01177866, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 113 ## Current epoch estimation is -0.01% ## 877 of 2016, i.e. 43%, 1139 to go ## Current and previous two in numbers: $ bitcoin-cli getnetworkhashps 2016 9.57451003870793e+20 $ bitcoin-cli getnetworkhashps 2016 941471 9.575843405435805e+20 $ bitcoin-cli getnetworkhashps 2016 939455 1.037983005536264e+21 $ bitcoin-cli gettxoutsetinfo muhash { "height": 942349, "bestblock": "00000000000000000001a5743710e722aade315b5b0e6ab62c4d8a9d09d37980", "txouts": 165081227, "bogosize": 12936110290, "muhash": "28b7b38ebe8822ef72f89f4313ce8c392b65fe7d0cdf529b804408b624c5313c", "total_amount": 20007113.65532543, "total_unspendable_amount": 230.09467457, "block_info": { "prevout_spent": 2064.09461682, "coinbase": 3.13954843, "new_outputs_ex_coinbase": 2064.08006839, "unspendable": 0.00000000, "unspendables": { "genesis_block": 0.00000000, "bip30": 0.00000000, "scripts": 0.00000000, "unclaimed_rewards": 0.00000000 } } } $ bitcoin-cli getblockstats 942349 { "avgfee": 317, "avgfeerate": 1, "avgtxsize": 361, "blockhash": "00000000000000000001a5743710e722aade315b5b0e6ab62c4d8a9d09d37980", "feerate_percentiles": [ 0, 0, 0, 2, 3 ], "height": 942349, "ins": 6145, "maxfee": 100000, "maxfeerate": 713, "maxtxsize": 29524, "medianfee": 29, "mediantime": 1774547495, "mediantxsize": 353, "minfee": 14, "minfeerate": 0, "mintxsize": 150, "outs": 12234, "subsidy": 312500000, "swtotal_size": 1580282, "swtotal_weight": 3686543, "swtxs": 4438, "time": 1774548886, "total_out": 206408006839, "total_size": 1656611, "total_weight": 3991859, "totalfee": 1454843, "txs": 4583, "utxo_increase": 6089, "utxo_size_inc": 451298, "utxo_increase_actual": 3139, "utxo_size_inc_actual": 245637 } $ bitcoin-cli getnettotals { "totalbytesrecv": 91784494, "totalbytessent": 135419672, "timemillis": 1774548928415, "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 v31.0rc2 - server 70016/Satoshi:31.0.0/ ipv4 npr total block in 14 1 15 out 11 0 11 3 total 25 1 26 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -addrinfo { "addresses_known": { "ipv4": 64676, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 64676 } } $ halving.sh 942349 ===================================== Bitcoin Block Halving prediction ===================================== bc=942349 gbt=1231006505 bbt=1774548886 This is average time to mine a block (1774548886-1231006505)/942349 bts=576.7945890592667268000212 Now let's multiply that by 1050000 which is the block number of next halving and get the prediction: Tue Mar 14 10:10:00 UTC 2028 ------------------------------------- Next palindrome will be 943349 predicted to happen at this time: Thu Apr 2 10:28:00 UTC 2026 ------------------------------------- Current mining epoch number is 467. The next fortnight happens in block 943488 and probably around this time: Fri Apr 3 08:44:15 UTC 2026 ### v2_peerinfo are in v2_peerinfo-bitcoin.txt $ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c 10 "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 53cb09911245d260 50c22bb3c18ff9ccf388cc1dd721210fd780266fa55a7565f136069a70f52e26 3925b7d870ab1c4f cbabbea8d8390d1c8c133ea5c1aa40ec7df7f48134b13e0940cbb20eae4558be d80bd14305fc77d4 dcb5ceca31461956b8348c5414670eabc73c2b0f5f3a43f0e8969cd77404db1b b4b8624a978d2582 5ccf1c3a183d5159fa8fb4f1fd84f0cca52b976dbc56ab4cac435678eb636913 24334951ec66d716 f99172913e749d8c0799c474c2ac6968f2f9b6303c0026c75d6d55fd1208d613 f9ab486c7d62215e 37a421e9ea4423b4f1892a39c46da00210f581cd62212ca219fc5e7294a7f863 75c763775442e330 127145e8e1e4004eb2bd3e5278557b7756d77aa20d6922c4d41782648793039c 907a7567441233ad c9974974206747cdf41ca3646157b6474df7577f51abcab28a53933516d302cd e4e265b582e02a24 8ab06edcabe5a91efb38f4a8222efe3b3fa48e92b6e35faf5504d9530a03fcdc 43bc3a74c60b8cb8 b8d5b8eff9f6eb31f60965e2446d025b2dbb33538759f7c325bdc775877b8291 $ niceblack.sh $BH $BC _ _ _ | |__| |___ __| |__ | '_ \ / _ \/ _| / / |_.__/_\___/\__|_\_\ ___ _ _ ___ _____ _ ___ / _ \ | |_ )__ / | |/ _ \ \_, /_ _/ / |_ \_ _\_, / /_/ |_/___|___/ |_| /_/ ,----- .123 4567 89ab cdef -----, | | | .. .... .... .... .... .f | | 1. ...1 a574 371. e722 1f | | 2. aade 315b 5b.e 6ab6 2f | | 3. 2c4d 8a9d .9d3 798. 3f | '=== ==== ==== ==== ==== ===' jk: 798. .9f9 74