# on receiving block 949141 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-12T23:34:14Z
# as written in the block header
2026-05-12T23:33:19Z
$ uptime # since last reboot
23:34:14 up 54 days, 14:27, 0 users, load average: 2.83, 2.14, 2.03
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1596332 kB
$ du -h -d1 .bitcoin/
12.2G .bitcoin/indexes
4.5G .bitcoin/signet
2.6M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.2G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 434.5G 475.9G 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
949141
$ BH=$(bitcoin-cli getblockhash 949141); echo $BH
0000000000000000000125bcc65fe577f4f22d4b9a3670c5f5b51fbf61cbdf86
$ bitcoin-cli getblockheader 0000000000000000000125bcc65fe577f4f22d4b9a3670c5f5b51fbf61cbdf86
{
"hash": "0000000000000000000125bcc65fe577f4f22d4b9a3670c5f5b51fbf61cbdf86",
"confirmations": 1,
"height": 949141,
"version": 872415232,
"versionHex": "34000000",
"merkleroot": "2278ca2f9637d446210d9e40b6954df21a553ecdc248ff0634b5c6a7e27c4ce0",
"time": 1778628799,
"mediantime": 1778626789,
"nonce": 584870058,
"bits": "17021ff0",
"target": "000000000000000000021ff00000000000000000000000000000000000000000",
"difficulty": 132472011079030.5,
"chainwork": "00000000000000000000000000000000000000012738cf4c9a9609e04262c662",
"nTx": 5316,
"previousblockhash": "00000000000000000000293b2b9ca206d3c79cf94150b4afe956cc08c5584e30"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 25bc c65f e577
f4f2 2d4b 9a36 7.c5
f5b5 1fbf 61cb df86
$ : 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
949141 sf: ...1 7.c5 df86
$ : 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 .
949141 sk: df86 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 .
949141 ak: 6198 a4
$ : Following is the jointkode
949141 jk: df86 6198 a4
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 87017,
"bytes": 38702550,
"usage": 219298408,
"total_fee": 0.06083635,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 3,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
157
## Current epoch estimation is +3.31%
## 1621 of 2016, i.e. 80%, 395 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.794697486815142e+20
$ bitcoin-cli getnetworkhashps 2016 947519
9.480332550563884e+20
$ bitcoin-cli getnetworkhashps 2016 945503
9.704094538460986e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 949141,
"bestblock": "0000000000000000000125bcc65fe577f4f22d4b9a3670c5f5b51fbf61cbdf86",
"txouts": 165175011,
"bogosize": 12941321261,
"muhash": "c58dae2dcc8b65e1078459307b49a4d28143f35de9bfe249792b3968fffe502b",
"total_amount": 20028338.65304635,
"total_unspendable_amount": 230.09695365,
"block_info": {
"prevout_spent": 1830.89423322,
"coinbase": 3.13743323,
"new_outputs_ex_coinbase": 1830.88179997,
"unspendable": 0.00000002,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000002,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 949141
{
"avgfee": 233,
"avgfeerate": 1,
"avgtxsize": 301,
"blockhash": "0000000000000000000125bcc65fe577f4f22d4b9a3670c5f5b51fbf61cbdf86",
"feerate_percentiles": [
0,
0,
0,
1,
2
],
"height": 949141,
"ins": 7642,
"maxfee": 115644,
"maxfeerate": 112,
"maxtxsize": 94783,
"medianfee": 54,
"mediantime": 1778626789,
"mediantxsize": 222,
"minfee": 0,
"minfeerate": 0,
"mintxsize": 150,
"outs": 11427,
"subsidy": 312500000,
"swtotal_size": 1515043,
"swtotal_weight": 3632629,
"swtxs": 5225,
"time": 1778628799,
"total_out": 183088179999,
"total_size": 1604873,
"total_weight": 3991949,
"totalfee": 1243323,
"txs": 5316,
"utxo_increase": 3785,
"utxo_size_inc": 271691,
"utxo_increase_actual": -350,
"utxo_size_inc_actual": -23738
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 3670798272,
"totalbytessent": 8112999301,
"timemillis": 1778628854644,
"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 16 1 17
out 10 0 10 2
total 26 1 27
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 67939,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 67939
}
}
$ halving.sh 949141
=====================================
Bitcoin Block Halving prediction
=====================================
bc=949141
gbt=1231006505
bbt=1778628799
This is average time to mine a block
(1778628799-1231006505)/949141
bts=576.9656110466084105434171
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Thu Mar 16 12:02:53 UTC 2028
-------------------------------------
Next palindrome will be 949949
predicted to happen at this time:
Mon May 18 09:03:07 UTC 2026
-------------------------------------
Current mining epoch number is 470.
The next fortnight happens in block
949536 and probably around this time:
Fri May 15 14:51:40 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
8 "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
e8bb29e27632bdd7
bd4ad3144c309746e2f9437453ad43af6201afd501ad0a184d6077a55cac482c
435b5a508342952a
63244f2e139188f1bd2d8c83ddf1fa460f402e0d2e8d566ef64d365197831d07
55dd402361b85d80
b3177349e7f2d8b43973c12fbbce53bbc72c683ee1fd6345e72594c3a07f5264
d3b8cc8bc831e058
8b854da52402f2d49f415d475c3afdb17b7202f0ab893f1067019635444c44f4
783f4529892fc45f
12fa7d7c6e66cad060f7af4328a9f941e16f4b1523317bc183a9bc53519c4cfc
36d8f65b283aaede
44fbc3f5261005d3f4bcc44d9419d99583f477ec6d203173fd23e828006caa59
cb16378c56ed11ad
818370af339733257bade9c54550ca89b82abdebd34e07ee33d8d8787a0a05e3
$ niceblack.sh $BH $BC
___ _ _ ___ __ _ _ __
/ _ \| || | / _ \ /_ | || |/_ |
| (_) | || || (_) | | | || |_| |
\__, |__ _\__, | | |__ _| |
/ / | | / / | | | | | |
/_/ |_| /_/ |_| |_| |_|
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 25bc c65f e577 1f |
| 2. f4f2 2d4b 9a36 7.c5 2f |
| 3. f5b5 1fbf 61cb df86 3f |
'=== ==== ==== ==== ==== ==='
jk: df86 6198 a4