# on receiving block 948420 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-08T05:59:25Z
# as written in the block header
2026-05-08T05:58:57Z
$ uptime # since last reboot
05:59:25 up 49 days, 20:52, 0 users, load average: 2.33, 2.33, 2.39
$ battery.sh
156%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1898492 kB
$ du -h -d1 .bitcoin/
12.2G .bitcoin/indexes
4.4G .bitcoin/signet
2.6M .bitcoin/wallets
97.6G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.0G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 434.4G 476.1G 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
948420
$ BH=$(bitcoin-cli getblockhash 948420); echo $BH
0000000000000000000210c5c41461c067e54da31e109a01975c4ea013d485da
$ bitcoin-cli getblockheader 0000000000000000000210c5c41461c067e54da31e109a01975c4ea013d485da
{
"hash": "0000000000000000000210c5c41461c067e54da31e109a01975c4ea013d485da",
"confirmations": 1,
"height": 948420,
"version": 671088640,
"versionHex": "28000000",
"merkleroot": "fa3c8c221291ba7d1cc7a5b2955483db7d93e73b8768c03b24992395ee43ac26",
"time": 1778219937,
"mediantime": 1778218539,
"nonce": 2700165234,
"bits": "17021ff0",
"target": "000000000000000000021ff00000000000000000000000000000000000000000",
"difficulty": 132472011079030.5,
"chainwork": "000000000000000000000000000000000000000125e57a0654c12943109605df",
"nTx": 6366,
"previousblockhash": "00000000000000000000ce3039ca3131ade1eb73652513c40bfd9d296b0a0398"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...2 1.c5 c414 61c.
67e5 4da3 1e1. 9a.1
975c 4ea. 13d4 85da
$ : 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
948420 sf: ...2 1.c5 61c. 1e1. 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 .
948420 sk: 85da 64
$ : 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 .
948420 ak: 54b6 64
$ : Following is the jointkode
948420 jk: 85da 54b6 64
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 37023,
"bytes": 31592170,
"usage": 159325888,
"total_fee": 0.04621257,
"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
146
## Current epoch estimation is +1.43%
## 900 of 2016, i.e. 44%, 1116 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.616500155153608e+20
$ bitcoin-cli getnetworkhashps 2016 947519
9.480332550563884e+20
$ bitcoin-cli getnetworkhashps 2016 945503
9.704094538460986e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 948420,
"bestblock": "0000000000000000000210c5c41461c067e54da31e109a01975c4ea013d485da",
"txouts": 164863352,
"bogosize": 12918745156,
"muhash": "feb21c3a5834ee9ead0735e0787ac1dd9aa99808c958d04151c403058ac15690",
"total_amount": 20026085.52821407,
"total_unspendable_amount": 230.09678593,
"block_info": {
"prevout_spent": 1651.96913529,
"coinbase": 3.13219761,
"new_outputs_ex_coinbase": 1651.96193768,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 948420
{
"avgfee": 113,
"avgfeerate": 0,
"avgtxsize": 252,
"blockhash": "0000000000000000000210c5c41461c067e54da31e109a01975c4ea013d485da",
"feerate_percentiles": [
0,
0,
0,
0,
2
],
"height": 948420,
"ins": 7547,
"maxfee": 64669,
"maxfeerate": 72,
"maxtxsize": 70577,
"medianfee": 39,
"mediantime": 1778218539,
"mediantxsize": 221,
"minfee": 16,
"minfeerate": 0,
"mintxsize": 150,
"outs": 13144,
"subsidy": 312500000,
"swtotal_size": 1593291,
"swtotal_weight": 3943401,
"swtxs": 6321,
"time": 1778219937,
"total_out": 165196193768,
"total_size": 1605823,
"total_weight": 3993529,
"totalfee": 719761,
"txs": 6366,
"utxo_increase": 5597,
"utxo_size_inc": 400436,
"utxo_increase_actual": -114,
"utxo_size_inc_actual": -6594
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 1915965642,
"totalbytessent": 4318794122,
"timemillis": 1778219965905,
"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 11 0 11 3
total 27 1 28
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 66034,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 66034
}
}
$ halving.sh 948420
=====================================
Bitcoin Block Halving prediction
=====================================
bc=948420
gbt=1231006505
bbt=1778219937
This is average time to mine a block
(1778219937-1231006505)/948420
bts=576.9731290218162609221010
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Thu Mar 16 14:14:27 UTC 2028
-------------------------------------
Next palindrome will be 948849
predicted to happen at this time:
Mon May 11 02:44:18 UTC 2026
-------------------------------------
Current mining epoch number is 470.
The next fortnight happens in block
949536 and probably around this time:
Fri May 15 16:50:39 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
9 "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
304f3f4f2dc36be5
83c5f1d773fbcd2cb554d2066dc0d4932ea28e2377128a876c65eee214616368
80498a2486d1edfc
dcbddfc89ec8ebc4621ee1cf001fd89cb1263c99b5ccfb9a3605f0af86baabf4
84df2eb6646ffcb6
e1563625553e21951790d3f45aa4f71278f7a5b55885ee20035831ffccb919ac
3b88200106a3f2ec
035ce4c854454959e994b247779eddbb6978345073b7ab4cdda2c340358f4c62
785ecefa522498c6
85d8ec6361474b454e8c1d2f657db7248f34290bce777d36c9acc43c97996714
6fd8cf508542a08c
0b44b930ddaee964a39ed1e061250bfc716131c9da4b425029036628e98a6408
b904c55d58f527b2
53cd9d85cf6dd1012a5e152647e61463c35eba07965434002f56cf53efd5e524
b620dc1a3c540f43
9a68485391d619e1ed9ea8b17f2a7feda4d97e77497596de004d873ac2f9d812
b6329c3e237de403
5ee88a81d03712752a13ebfedf5a8e9de0df61818649ab5450d95e5f41d5460a
$ niceblack.sh $BH $BC
##### # #####
# # # # # #
###### # # #####
# ####### # #
# # # # #
##### # #####
# ##### ###
# # # # # #
# # # # #
# # ##### # #
####### # # #
# # # #
# ####### ###
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...2 1.c5 c414 61c. 1f |
| 2. 67e5 4da3 1e1. 9a.1 2f |
| 3. 975c 4ea. 13d4 85da 3f |
'=== ==== ==== ==== ==== ==='
jk: 85da 54b6 64