# on receiving block 958434 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-07-17T16:19:45Z
# as written in the block header
2026-07-17T16:19:25Z
$ uptime # since last reboot
16:19:45 up 21 days, 8:51, 0 users, load average: 0.80, 1.07, 1.10
$ battery.sh
139%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1830088 kB
$ du -h -d1 .bitcoin/
12.4G .bitcoin/indexes
4.7G .bitcoin/signet
87.9M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.8G .bitcoin/chainstate
126.0G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 435.1G 475.4G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.1.0 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
958434
$ BH=$(bitcoin-cli getblockhash 958434); echo $BH
00000000000000000000280f386b8941b8964f1a0a30fb5d424fcb360ba43e99
$ bitcoin-cli getblockheader 00000000000000000000280f386b8941b8964f1a0a30fb5d424fcb360ba43e99
{
"hash": "00000000000000000000280f386b8941b8964f1a0a30fb5d424fcb360ba43e99",
"confirmations": 1,
"height": 958434,
"version": 714432512,
"versionHex": "2a956000",
"merkleroot": "40ec1bdf6e48c265e05de11ef60d9d0efecfe53026566edee4a5192c2a9f8e8a",
"time": 1784305165,
"mediantime": 1784301574,
"nonce": 1990591161,
"bits": "1702369d",
"target": "00000000000000000002369d0000000000000000000000000000000000000000",
"difficulty": 127170500429035.2,
"chainwork": "0000000000000000000000000000000000000001385ed403bef1c2761d2c368e",
"nTx": 3750,
"previousblockhash": "00000000000000000001150f433bd782b222ecaf5dfb7780013c2b934e0e7140"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
.... 28.f 386b 8941
b896 4f1a .a3. fb5d
424f cb36 .ba4 3e99
$ : 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
958434 sf: 28.f .a3. .ba4 3e99
$ : 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 .
958434 sk: 3e99 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 .
958434 ak: 238. 85
$ : Following is the jointkode
958434 jk: 3e99 238. 85
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 97608,
"bytes": 45290684,
"usage": 255836144,
"total_fee": 0.09826009,
"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
216
## Current epoch estimation is -1.56%
## 834 of 2016, i.e. 41%, 1182 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
8.959686595696683e+20
$ bitcoin-cli getnetworkhashps 2016 957599
9.102434559868438e+20
$ bitcoin-cli getnetworkhashps 2016 955583
9.577176399839705e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 958434,
"bestblock": "00000000000000000000280f386b8941b8964f1a0a30fb5d424fcb360ba43e99",
"txouts": 166132563,
"bogosize": 13009507934,
"muhash": "78be44bac215c7e8fbb218a9e8889b9aff44c197890672751bd9f131025063e7",
"total_amount": 20057379.26083891,
"total_unspendable_amount": 230.11416109,
"block_info": {
"prevout_spent": 30220.11703777,
"coinbase": 3.15912798,
"new_outputs_ex_coinbase": 30220.08290979,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 958434
{
"avgfee": 910,
"avgfeerate": 3,
"avgtxsize": 416,
"blockhash": "00000000000000000000280f386b8941b8964f1a0a30fb5d424fcb360ba43e99",
"feerate_percentiles": [
2,
2,
2,
3,
5
],
"height": 958434,
"ins": 7826,
"maxfee": 118488,
"maxfeerate": 477,
"maxtxsize": 59042,
"medianfee": 439,
"mediantime": 1784301574,
"mediantxsize": 223,
"minfee": 41,
"minfeerate": 0,
"mintxsize": 150,
"outs": 9078,
"subsidy": 312500000,
"swtotal_size": 1349818,
"swtotal_weight": 3151630,
"swtxs": 3476,
"time": 1784305165,
"total_out": 3022008290979,
"total_size": 1559899,
"total_weight": 3991954,
"totalfee": 3412798,
"txs": 3750,
"utxo_increase": 1252,
"utxo_size_inc": 89817,
"utxo_increase_actual": 642,
"utxo_size_inc_actual": 44482
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 1569614594,
"totalbytessent": 4225619599,
"timemillis": 1784305185412,
"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.1.0 - server 70016/Satoshi:31.1.0/
ipv4 npr total block
in 19 2 21
out 10 0 10 2
total 29 2 31
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 70391,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 70391
}
}
$ halving.sh 958434
=====================================
Bitcoin Block Halving prediction
=====================================
bc=958434
gbt=1231006505
bbt=1784305165
This is average time to mine a block
(1784305165-1231006505)/958434
bts=577.2938801274995174424974
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Mon Mar 20 11:47:36 UTC 2028
-------------------------------------
Next palindrome will be 958859
predicted to happen at this time:
Mon Jul 20 12:28:34 UTC 2026
-------------------------------------
Current mining epoch number is 475.
The next fortnight happens in block
959616 and probably around this time:
Sat Jul 25 13:52:06 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
ebd3d034bf50288a
399b997f12ff7db55821e7ccdb9ab2cc1fb73a4e3426689d767d767a541ad247
f0547df15071a665
2ab995ebbd8ab8c6bc57ce16a1e299907c35a27dc4f9aba387389d635b6d177b
c4f69c6b64988558
45a5870946e2b09eff26a39b57d7bd7087c6acea0f335b0f97dd1a006f2c2df9
1192b7edbdf7ac4f
6417b0df01e77e5caf52d43145f5e4abf2f33dbd222a1261931405e4f7ed3344
9820b1936de71bbb
6af4bbcdc9ddaa838d24b313bb52a345f81adbae407973894dc0b660e2813895
9264b654ad9a74a3
195ca89c2c4b56301b4833b55699d0f2ff31e52f48ef8d0d4ab3e3b65c864c4e
67358431c6d93566
27106861b2dc425903842c0e38f927c6541823e02a7fcb996921d6c1f6553ef8
ab32d37295d707c3
033cbcba7951f18d49a82ad784cbd21ab0cee0203c0dd15ac260528a36ff4dcc
10221f67b8521311
ec37446ea11a718a8a77c45d0bb6ea26fbfdda9fd923ed096f1e6ec0c4a23992
9e538a15818bf18e
605aa75529647b854acd91b519aeda486f662cd9cd9a54aef64e8676d88936c4
384483990e4f1dd8
68b81505ff8480c0cc5e8651295ea4e13e0f13b3fcdc6e6f4009bc7dce7e17f5
$ niceblack.sh $BH $BC
____ __________
/ __ \/ ____( __ )
/ /_/ /___ \/ __ |
\__, /___/ / /_/ /
/____/_____/\____/
__ __ _____ __ __
/ // /|__ // // /
/ // /_ /_ // /_
/__ __/__/ /__ __/
/_/ /____/ /_/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. .... 28.f 386b 8941 1f |
| 2. b896 4f1a .a3. fb5d 2f |
| 3. 424f cb36 .ba4 3e99 3f |
'=== ==== ==== ==== ==== ==='
jk: 3e99 238. 85