# on receiving block 951335 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-28T01:28:00Z
# as written in the block header
2026-05-28T01:27:55Z
$ uptime # since last reboot
01:28:00 up 69 days, 16:20, 0 users, load average: 1.54, 1.89, 2.14
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1266908 kB
$ du -h -d1 .bitcoin/
12.3G .bitcoin/indexes
4.6G .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.7G 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
951335
$ BH=$(bitcoin-cli getblockhash 951335); echo $BH
00000000000000000001e9d114ea30d0f07f92e36b0c6095aeabf473838f595c
$ bitcoin-cli getblockheader 00000000000000000001e9d114ea30d0f07f92e36b0c6095aeabf473838f595c
{
"hash": "00000000000000000001e9d114ea30d0f07f92e36b0c6095aeabf473838f595c",
"confirmations": 1,
"height": 951335,
"version": 704643072,
"versionHex": "2a000000",
"merkleroot": "a5530a882be798d13badf78fa58b033078550fe6b6ec233b40e6672e2ba394af",
"time": 1779931675,
"mediantime": 1779929251,
"nonce": 3600314197,
"bits": "17020f79",
"target": "000000000000000000020f790000000000000000000000000000000000000000",
"difficulty": 136607070854775.1,
"chainwork": "00000000000000000000000000000000000000012b5bd7b5d70713df6f8d3dd8",
"nTx": 6330,
"previousblockhash": "0000000000000000000209b46cdf4b80c16c17196499c3f4ce8a2bdf99cba55f"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 e9d1 14ea 3.d.
f.7f 92e3 6b.c 6.95
aeab f473 838f 595c
$ : 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
951335 sf: ...1 3.d. f.7f 6b.c 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 .
951335 sk: 595c 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 .
951335 ak: 24e4 74
$ : Following is the jointkode
951335 jk: 595c 24e4 74
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 85313,
"bytes": 40448687,
"usage": 226338600,
"total_fee": 0.07931703,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 23,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
195
## Current epoch estimation is +0.84%
## 1799 of 2016, i.e. 89%, 217 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.853768384892055e+20
$ bitcoin-cli getnetworkhashps 2016 949535
9.770940180508523e+20
$ bitcoin-cli getnetworkhashps 2016 947519
9.480332550563884e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 951335,
"bestblock": "00000000000000000001e9d114ea30d0f07f92e36b0c6095aeabf473838f595c",
"txouts": 165425074,
"bogosize": 12960512958,
"muhash": "2854aad03715619c1f2ce7a50b92432a9cb3a471f2cee7410056c89cab09822d",
"total_amount": 20035194.90249210,
"total_unspendable_amount": 230.09750790,
"block_info": {
"prevout_spent": 225.95942063,
"coinbase": 3.13272218,
"new_outputs_ex_coinbase": 225.95169845,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 951335
{
"avgfee": 122,
"avgfeerate": 0,
"avgtxsize": 269,
"blockhash": "00000000000000000001e9d114ea30d0f07f92e36b0c6095aeabf473838f595c",
"feerate_percentiles": [
0,
0,
0,
0,
1
],
"height": 951335,
"ins": 7246,
"maxfee": 10204,
"maxfeerate": 40,
"maxtxsize": 29247,
"medianfee": 91,
"mediantime": 1779929251,
"mediantxsize": 221,
"minfee": 70,
"minfeerate": 0,
"mintxsize": 150,
"outs": 12701,
"subsidy": 312500000,
"swtotal_size": 1702200,
"swtotal_weight": 3974841,
"swtxs": 6315,
"time": 1779931675,
"total_out": 22595169845,
"total_size": 1706485,
"total_weight": 3991981,
"totalfee": 772218,
"txs": 6330,
"utxo_increase": 5455,
"utxo_size_inc": 386920,
"utxo_increase_actual": -63,
"utxo_size_inc_actual": -5252
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 9349572882,
"totalbytessent": 21620643272,
"timemillis": 1779931680749,
"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 22 1 23
out 10 0 10 2
total 32 1 33
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 70123,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 70123
}
}
$ halving.sh 951335
=====================================
Bitcoin Block Halving prediction
=====================================
bc=951335
gbt=1231006505
bbt=1779931675
This is average time to mine a block
(1779931675-1231006505)/951335
bts=577.0045178569926923820816
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Thu Mar 16 23:23:45 UTC 2028
-------------------------------------
Next palindrome will be 952259
predicted to happen at this time:
Wed Jun 3 05:33:47 UTC 2026
-------------------------------------
Current mining epoch number is 471.
The next fortnight happens in block
951552 and probably around this time:
Fri May 29 12:14:44 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
1b610f06c935029b
eea8c67c733b2e5ccc41d4a49d4ca69aea0ab16e402fc2f6afd40823b3dd73a0
3b8136a5b4352438
5bb9913008ebd57d4ef635f33ea788262fb85ddd35d54acef8a36a30eb9b484f
0dd7498f9e57aafe
9d85358a70b2e0871b1b745f5de9af39209fbc6e17a2bc3f698019b4fa79996d
9b4c3531d93af896
4524967b749a8e92cf4a45b7f66cce73769df2fda641349a1874f8e58b42db76
8ef12dfb4d33395d
e52831a0b4c7a79e3aef8e39245cf4125296a7869291793855af0751da772a03
0754cd08bee7f0cf
5de59d3802a0b018ab6d5a4a5ac3e70893d3f1f3438011f4e34e72a345e57da8
ae6ab050bec1b956
28d99510bd1b74155f3600c2927a15697878b6fbb61257fe5f1d9e8bebc27652
b78f1313d78eb74a
be1cdba13b07b69073ed91bde3d2fe49ffa0ef61dedc9afcddc5159fa69e7934
b51007de917319ab
8fe5a83ce4c5de1a770129ab662ed01879b5436b15d8a8ae7d253c34ffc4cc21
560d96908a217771
37112352018a623a5701dff60e42ad413ebd30a8ccddc3a1e4994d50ff2e10ce
$ niceblack.sh $BH $BC
___ ____ _ ______________
/ _ \| ___|/ | |___ /___ / ___|
| (_) |___ \| | |_ \ |_ \___ \
\__, |___) | | ___) |__) |__) |
/_/|____/|_| |____/____/____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 e9d1 14ea 3.d. 1f |
| 2. f.7f 92e3 6b.c 6.95 2f |
| 3. aeab f473 838f 595c 3f |
'=== ==== ==== ==== ==== ==='
jk: 595c 24e4 74