# on receiving block 954600 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-06-20T20:53:22Z
# as written in the block header
2026-06-20T20:53:09Z
$ uptime # since last reboot
20:53:22 up 93 days, 11:46, 0 users, load average: 1.08, 1.65, 1.95
$ battery.sh
156%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1200644 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.7G .bitcoin/chainstate
125.6G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 434.9G 475.5G 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
954600
$ BH=$(bitcoin-cli getblockhash 954600); echo $BH
00000000000000000001cf8a95bde3044313c8fc33eea329bed131ad8b2ca790
$ bitcoin-cli getblockheader 00000000000000000001cf8a95bde3044313c8fc33eea329bed131ad8b2ca790
{
"hash": "00000000000000000001cf8a95bde3044313c8fc33eea329bed131ad8b2ca790",
"confirmations": 1,
"height": 954600,
"version": 537001984,
"versionHex": "20020000",
"merkleroot": "27ed3b3e5211d3ac7dd124840fb7c37d26d27cdbc01ca0b045928cf9a238fe17",
"time": 1781988789,
"mediantime": 1781985836,
"nonce": 3302545065,
"bits": "170240c3",
"target": "0000000000000000000240c30000000000000000000000000000000000000000",
"difficulty": 124932866006548.2,
"chainwork": "000000000000000000000000000000000000000131726e318805b01a282d574d",
"nTx": 5077,
"previousblockhash": "0000000000000000000031f616b21baa73b6577f6be4ef264a290bd0eab341a3"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 cf8a 95bd e3.4
4313 c8fc 33ee a329
bed1 31ad 8b2c a79.
$ : 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
954600 sf: ...1 e3.4 a79.
$ : 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 .
954600 sk: a79. 94
$ : 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 .
954600 ak: .1da 94
$ : Following is the jointkode
954600 jk: a790 .1da 94
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 110022,
"bytes": 44180173,
"usage": 257034104,
"total_fee": 0.09109750,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 132,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
206
## Current epoch estimation is +1.57%
## 1032 of 2016, i.e. 51%, 984 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.07992110593999e+20
$ bitcoin-cli getnetworkhashps 2016 953567
8.939523168672514e+20
$ bitcoin-cli getnetworkhashps 2016 951551
9.944499015556698e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 954600,
"bestblock": "00000000000000000001cf8a95bde3044313c8fc33eea329bed131ad8b2ca790",
"txouts": 165883523,
"bogosize": 12992857020,
"muhash": "c367b7fe4a968912bee7eaddbd2f47dc98b6eae44027eec6c278018c69ef8ba6",
"total_amount": 20045398.01488566,
"total_unspendable_amount": 230.11011434,
"block_info": {
"prevout_spent": 8395.66277346,
"coinbase": 3.14712122,
"new_outputs_ex_coinbase": 8395.64065224,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 954600
{
"avgfee": 435,
"avgfeerate": 2,
"avgtxsize": 323,
"blockhash": "00000000000000000001cf8a95bde3044313c8fc33eea329bed131ad8b2ca790",
"feerate_percentiles": [
0,
0,
1,
2,
3
],
"height": 954600,
"ins": 7586,
"maxfee": 110000,
"maxfeerate": 1004,
"maxtxsize": 48584,
"medianfee": 143,
"mediantime": 1781985836,
"mediantxsize": 221,
"minfee": 66,
"minfeerate": 0,
"mintxsize": 150,
"outs": 11905,
"subsidy": 312500000,
"swtotal_size": 1585071,
"swtotal_weight": 3768813,
"swtxs": 4885,
"time": 1781988789,
"total_out": 839564065224,
"total_size": 1641709,
"total_weight": 3995365,
"totalfee": 2212122,
"txs": 5077,
"utxo_increase": 4319,
"utxo_size_inc": 312269,
"utxo_increase_actual": 1329,
"utxo_size_inc_actual": 97680
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 19130813126,
"totalbytessent": 45912642942,
"timemillis": 1781988803226,
"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 17 1 18
out 10 0 10 2
total 27 1 28
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 70510,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 70510
}
}
$ halving.sh 954600
=====================================
Bitcoin Block Halving prediction
=====================================
bc=954600
gbt=1231006505
bbt=1781988789
This is average time to mine a block
(1781988789-1231006505)/954600
bts=577.1859488938310351654775
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Sun Mar 19 04:18:48 UTC 2028
-------------------------------------
Next palindrome will be 955559
predicted to happen at this time:
Sat Jun 27 06:38:30 UTC 2026
-------------------------------------
Current mining epoch number is 473.
The next fortnight happens in block
955584 and probably around this time:
Sat Jun 27 10:38:59 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
84608400b0618562
7af1f5e36df042df722c4e6516461e5e0547d35e006641145b12d3f789d981f4
2cb4c5966aa2a2dd
ab6adb9ce70ad7346f301c3c4e6716a07730bf0731096e4b6b6eb38a8c470a12
90991fb939379aee
6251f1f877bc4e774a2acf40ab790e21fc814b1b8eeb57b91bf253e73f419ab2
0010567ed9472d61
a1e862c957030d85e55a88c315a421d3a07ae2172f503d24e4cb1674553d6402
f2c38319bdebb254
b9979ef91ae204b15ee03ba80e2cc143fc83b5037b2253de4287352f64577e33
078860f0f2beb264
14c5bbca73dc16045e4297d5f051f364fe360825b7f409b17302ba632decde08
0741d09e16d1d1b0
aad7485a2b48ef49c51c3d64b46677343d9f6037cde199fa867bc5998d987b2f
9fbd70b0636804bc
c3a7a4496d69d9938b0119d9f297c519c6b2c8db8f1eecbe5ef623d3541747aa
3a47e3fa064c17a3
f38eb5b2562515a5127eecd3b9479b7acca6c6bd08ee91c44b34907b220f9209
ba38d46a06bdcdc0
7adea418e7404e2681412ad8adf1e90f78955aa66d4baa153d921b47d061462e
$ niceblack.sh $BH $BC
____ ________ __
/ __ \/ ____/ // /
/ /_/ /___ \/ // /_
\__, /___/ /__ __/
/____/_____/ /_/
_____ ____ ____
/ ___// __ \/ __ \
/ __ \/ / / / / / /
/ /_/ / /_/ / /_/ /
\____/\____/\____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 cf8a 95bd e3.4 1f |
| 2. 4313 c8fc 33ee a329 2f |
| 3. bed1 31ad 8b2c a79. 3f |
'=== ==== ==== ==== ==== ==='
jk: a79. .1da 94