# on receiving block 957185 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-07-08T14:34:35Z
# as written in the block header
2026-07-08T14:33:36Z
$ uptime # since last reboot
14:34:35 up 12 days, 7:05, 0 users, load average: 0.66, 0.45, 0.46
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1771100 kB
$ du -h -d1 .bitcoin/
12.4G .bitcoin/indexes
4.7G .bitcoin/signet
2.7M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.7G .bitcoin/chainstate
125.8G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 435.3G 475.1G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.1.0rc1 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
957185
$ BH=$(bitcoin-cli getblockhash 957185); echo $BH
0000000000000000000102b60c644bf13fd898d1ba7fb19f6dfceafd5dab0bd8
$ bitcoin-cli getblockheader 0000000000000000000102b60c644bf13fd898d1ba7fb19f6dfceafd5dab0bd8
{
"hash": "0000000000000000000102b60c644bf13fd898d1ba7fb19f6dfceafd5dab0bd8",
"confirmations": 1,
"height": 957185,
"version": 538968064,
"versionHex": "20200000",
"merkleroot": "2893a525768aa66c3061fed80e6998158e229c6c062d3affa17ea84836eead80",
"time": 1783521216,
"mediantime": 1783516915,
"nonce": 3528334401,
"bits": "17021a42",
"target": "000000000000000000021a420000000000000000000000000000000000000000",
"difficulty": 133869853540305.4,
"chainwork": "00000000000000000000000000000000000000013620aacca769eb31a1a6079e",
"nTx": 4104,
"previousblockhash": "00000000000000000000269cd34f988547956287631e1e24acca33c0a29163a8"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 .2b6 .c64 4bf1
3fd8 98d1 ba7f b19f
6dfc eafd 5dab .bd8
$ : 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
957185 sf: ...1 .2b6 .c64 .bd8
$ : 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 .
957185 sk: .bd8 84
$ : 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 .
957185 ak: 38b9 84
$ : Following is the jointkode
957185 jk: 0bd8 38b9 84
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 85142,
"bytes": 42914452,
"usage": 234818360,
"total_fee": 0.08084817,
"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
188
## Current epoch estimation is -1.89%
## 1601 of 2016, i.e. 79%, 415 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.395822002666593e+20
$ bitcoin-cli getnetworkhashps 2016 955583
9.577176399839705e+20
$ bitcoin-cli getnetworkhashps 2016 953567
8.939523168672514e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 957185,
"bestblock": "0000000000000000000102b60c644bf13fd898d1ba7fb19f6dfceafd5dab0bd8",
"txouts": 166196051,
"bogosize": 13016210611,
"muhash": "d927526d0c59a719f4ad0ccd5983dd39129ac77146da4b0226ebf9aa971f8f17",
"total_amount": 20053476.13590218,
"total_unspendable_amount": 230.11409782,
"block_info": {
"prevout_spent": 15628.70665174,
"coinbase": 3.14834547,
"new_outputs_ex_coinbase": 15628.68329627,
"unspendable": 0.00001000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00001000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 957185
{
"avgfee": 568,
"avgfeerate": 2,
"avgtxsize": 410,
"blockhash": "0000000000000000000102b60c644bf13fd898d1ba7fb19f6dfceafd5dab0bd8",
"feerate_percentiles": [
0,
1,
1,
2,
4
],
"height": 957185,
"ins": 8617,
"maxfee": 59343,
"maxfeerate": 76,
"maxtxsize": 93136,
"medianfee": 239,
"mediantime": 1783516915,
"mediantxsize": 222,
"minfee": 10,
"minfeerate": 0,
"mintxsize": 94,
"outs": 9789,
"subsidy": 312500000,
"swtotal_size": 1589159,
"swtotal_weight": 3619523,
"swtxs": 3621,
"time": 1783521216,
"total_out": 1562868330627,
"total_size": 1682278,
"total_weight": 3991999,
"totalfee": 2334547,
"txs": 4104,
"utxo_increase": 1172,
"utxo_size_inc": 69123,
"utxo_increase_actual": -305,
"utxo_size_inc_actual": -38877
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 4039564231,
"totalbytessent": 11993608484,
"timemillis": 1783521275989,
"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.0rc1 - server 70016/Satoshi:31.1.0/
ipv4 npr total block
in 21 1 22
out 10 0 10 2
total 31 1 32
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 70350,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 70350
}
}
$ halving.sh 957185
=====================================
Bitcoin Block Halving prediction
=====================================
bc=957185
gbt=1231006505
bbt=1783521216
This is average time to mine a block
(1783521216-1231006505)/957185
bts=577.2281573278338797266153
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Sun Mar 19 16:37:27 UTC 2028
-------------------------------------
Next palindrome will be 957759
predicted to happen at this time:
Sun Jul 12 10:35:44 UTC 2026
-------------------------------------
Current mining epoch number is 474.
The next fortnight happens in block
957600 and probably around this time:
Sat Jul 11 09:06:05 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
c91f3c5076828ddf
2ff662ca5bfdd813c25ccb44aa737f4472120ea78fe0fdc29d5439554aad2dae
c3e6cfc4aa609162
88a5530a137d974df5cad82a20e9e3586f8282ca447e6161ec9c6843412ef50e
ed702cd69dbfd3df
6872e6c6114a608dfa6a4c1e584743b7af7eecc93d7b9f2ab77e759f04656624
051ddd7a2a9d08d2
f02817b398a886d8c4009c7064123e8a0e1c37e4b2fb26926a61a9a6ffb36873
a8a0fd81615fc8e3
3c33e5a29c68f07d7ba25f3f312a522ceff525dd81175049fff5e60282b5167e
a63afcde8473cd7e
f6e1cb9b6c3d40049f7182b3b545794355d17ed2f156ad2d1b35af071c06c78b
2a6944d314aee8a2
b9770535efd81e84efb16cbb1513641733a89252ff433010bcdba2027ee665a7
30a51426b6de23ce
e25a9c66c68f1e48ad403039d8f622e1deea3cb56012a54dc48cbd2f5e4ef48c
646ebacd2d74e318
bd43be62d0ad5fecc908c677ba9e39ac3e63968ecda93313550666577e47b9a0
3406962fafb73e85
f51300a6bfb92d088f0bc47eef229212156d02b81bb15210520ebd86591ebecd
a6d712306e74c21d
b1f0d501c51e5555b86ddf1ca26d4e624b89193e644c8e55cfdb17674f0d04fb
$ niceblack.sh $BH $BC
___ ____ _____ _ ___ ____
/ _ \| ___|___ | / |( _ ) ___|
| (_) |___ \ / / | |/ _ \___ \
\__, |___) |/ / | | (_) |__) |
/_/|____//_/ |_|\___/____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 .2b6 .c64 4bf1 1f |
| 2. 3fd8 98d1 ba7f b19f 2f |
| 3. 6dfc eafd 5dab .bd8 3f |
'=== ==== ==== ==== ==== ==='
jk: .bd8 38b9 84