# on receiving block 952025 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-06-01T20:48:12Z
# as written in the block header
2026-06-01T20:47:50Z
$ uptime # since last reboot
20:48:12 up 74 days, 11:41, 0 users, load average: 2.24, 2.11, 2.31
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1390076 kB
$ du -h -d1 .bitcoin/
12.3G .bitcoin/indexes
4.5G .bitcoin/signet
2.7M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.3G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 434.6G 475.8G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.0.0rc4 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
952025
$ BH=$(bitcoin-cli getblockhash 952025); echo $BH
00000000000000000000e720aa1dbe1f64f1fd21343152e01e9128629bd67047
$ bitcoin-cli getblockheader 00000000000000000000e720aa1dbe1f64f1fd21343152e01e9128629bd67047
{
"hash": "00000000000000000000e720aa1dbe1f64f1fd21343152e01e9128629bd67047",
"confirmations": 1,
"height": 952025,
"version": 536969216,
"versionHex": "20018000",
"merkleroot": "b14b16b6f0877cd5e6bce40ba2aad3f7780c1a4d71e9639ce93976cdc0d2a40d",
"time": 1780346870,
"mediantime": 1780343511,
"nonce": 1220368174,
"bits": "1702068f",
"target": "00000000000000000002068f0000000000000000000000000000000000000000",
"difficulty": 138955357012247.3,
"chainwork": "00000000000000000000000000000000000000012caead55071b7d8c2aea2b54",
"nTx": 3176,
"previousblockhash": "000000000000000000017691141814031c9da39471309eefc0527d5c0ba049ae"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
.... e72. aa1d be1f
64f1 fd21 3431 52e.
1e91 2862 9bd6 7.47
$ : 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
952025 sf: e72. 52e. 7.47
$ : 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 .
952025 sk: 7.47 85
$ : 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 .
952025 ak: d141 85
$ : Following is the jointkode
952025 jk: 7047 d141 85
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 90695,
"bytes": 41869988,
"usage": 237507208,
"total_fee": 0.09648731,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 427,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
230
## Current epoch estimation is -0.35%
## 473 of 2016, i.e. 23%, 1543 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.909660378111136e+20
$ bitcoin-cli getnetworkhashps 2016 951551
9.944499015556698e+20
$ bitcoin-cli getnetworkhashps 2016 949535
9.770940180508523e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 952025,
"bestblock": "00000000000000000000e720aa1dbe1f64f1fd21343152e01e9128629bd67047",
"txouts": 165514592,
"bogosize": 12967313434,
"muhash": "f208eddfdf263d24d626ec9a7ae1f6fc893345a43573632c799dc3176eed04d4",
"total_amount": 20037351.15231773,
"total_unspendable_amount": 230.09768227,
"block_info": {
"prevout_spent": 3136.67316752,
"coinbase": 3.15640963,
"new_outputs_ex_coinbase": 3136.64175789,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 952025
{
"avgfee": 989,
"avgfeerate": 3,
"avgtxsize": 501,
"blockhash": "00000000000000000000e720aa1dbe1f64f1fd21343152e01e9128629bd67047",
"feerate_percentiles": [
1,
1,
2,
3,
5
],
"height": 952025,
"ins": 8361,
"maxfee": 118488,
"maxfeerate": 477,
"maxtxsize": 79659,
"medianfee": 423,
"mediantime": 1780343511,
"mediantxsize": 222,
"minfee": 0,
"minfeerate": 0,
"mintxsize": 150,
"outs": 9209,
"subsidy": 312500000,
"swtotal_size": 1440167,
"swtotal_weight": 3379583,
"swtxs": 2977,
"time": 1780346870,
"total_out": 313664175789,
"total_size": 1593182,
"total_weight": 3991643,
"totalfee": 3140963,
"txs": 3176,
"utxo_increase": 848,
"utxo_size_inc": 66570,
"utxo_increase_actual": -203,
"utxo_size_inc_actual": -10243
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 11406398719,
"totalbytessent": 27199574789,
"timemillis": 1780346893171,
"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.0.0rc4 - server 70016/Satoshi:31.0.0/
ipv4 npr total block
in 15 1 16
out 10 0 10 2
total 25 1 26
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 70265,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 70265
}
}
$ halving.sh 952025
=====================================
Bitcoin Block Halving prediction
=====================================
bc=952025
gbt=1231006505
bbt=1780346870
This is average time to mine a block
(1780346870-1231006505)/952025
bts=577.0224395132065720894177
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Fri Mar 17 04:37:23 UTC 2028
-------------------------------------
Next palindrome will be 952259
predicted to happen at this time:
Wed Jun 3 10:18:13 UTC 2026
-------------------------------------
Current mining epoch number is 472.
The next fortnight happens in block
953568 and probably around this time:
Fri Jun 12 04:06:55 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
11 "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
84608400b0618562
7af1f5e36df042df722c4e6516461e5e0547d35e006641145b12d3f789d981f4
6638298e20abe30a
dc557bb87cb755b17fa5ab23bb2df72b27a2f63e5e2631fd5ae524ec0ce7ce34
2a9e24951df8c55d
4d9d04a7d562fb10bb29e3991c257f65cb3fd0825394275fbc6dbe4e8160b302
0e89b8aba269e1ce
76eed60be6a2fcc962beb6398ebbcd42865ddc860b04e0603e82fa7281b0e82b
c2367dae35b1ca81
4f0b47136b681cd3b97a8c3c2ede0a649ecbc5740d60ce883849f279f7fb7e32
3f52f1b0a05da529
308fc2d2c3e4efe03e5f6ee93f0b6540eefd402d7a79d7747f93bccc983300d9
a36e34210a5cc0a3
81dc8ee6128d747f86eb0d78229414e273d4144cfbdd4b11bcf01333d2748ba5
c0941ff0e2f5c6f3
f722871c8c302b9a0c66077e0e466a163b86f896d6200039f145f63b4a281ff3
18ad9e38719452d9
31ed6eef83fba666cb92d7f0dbb6701e91bab684cc8330cc0fdfe80c4cff42b5
1aec1bac4b0eebf2
c7769ee2db44df50a290278b4db982ffa53feefdb2526c7cc24861d052967304
6a3de67df5feca88
50a9ba85ca07850355096dc86e98730ba8076d9e1ddf929447a25acd3a618f13
$ niceblack.sh $BH $BC
| | |
_ \ | _ \ _| | /
_.__/_|\___/\__|_\_\
_ \ __|_ ) \_ ) __|
\_ /__ \ / ( | / __ \
_/ ___/___|\__/___|___/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. .... e72. aa1d be1f 1f |
| 2. 64f1 fd21 3431 52e. 2f |
| 3. 1e91 2862 9bd6 7.47 3f |
'=== ==== ==== ==== ==== ==='
jk: 7.47 d141 85