# on receiving block 945848 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-04-19T23:33:03Z
# as written in the block header
2026-04-19T23:38:48Z
$ uptime # since last reboot
23:33:03 up 31 days, 14:25, 0 users, load average: 1.86, 1.99, 1.67
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1795428 kB
$ du -h -d1 .bitcoin/
12.2G .bitcoin/indexes
4.3G .bitcoin/signet
2.7M .bitcoin/wallets
97.7G .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 433.6G 476.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
945848
$ BH=$(bitcoin-cli getblockhash 945848); echo $BH
0000000000000000000125e598b5f31e6f21cef69c4ad8d16363f3fdc72b2428
$ bitcoin-cli getblockheader 0000000000000000000125e598b5f31e6f21cef69c4ad8d16363f3fdc72b2428
{
"hash": "0000000000000000000125e598b5f31e6f21cef69c4ad8d16363f3fdc72b2428",
"confirmations": 1,
"height": 945848,
"version": 536928256,
"versionHex": "2000e000",
"merkleroot": "0631c74d6c42e96a751a4cd853f54851bb9a556c6b8229d5b5ea32fb0e4ff6d5",
"time": 1776641928,
"mediantime": 1776639117,
"nonce": 34806010,
"bits": "17021369",
"target": "0000000000000000000213690000000000000000000000000000000000000000",
"difficulty": 135594876535256.6,
"chainwork": "0000000000000000000000000000000000000001211871f9181b0dc820d2d336",
"nTx": 6186,
"previousblockhash": "000000000000000000002c9f15a01bfa2121375cd9713635796819b9270364a2"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 25e5 98b5 f31e
6f21 cef6 9c4a d8d1
6363 f3fd c72b 2428
$ : 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
945848 sf: ...1 2428
$ : 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 .
945848 sk: 2428 b4
$ : 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 .
945848 ak: d89e b4
$ : Following is the jointkode
945848 jk: 2428 d89e b4
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 40762,
"bytes": 29251882,
"usage": 150118744,
"total_fee": 0.03662675,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 32,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
125
## Current epoch estimation is +1.55%
## 344 of 2016, i.e. 17%, 1672 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.854778551523555e+20
$ bitcoin-cli getnetworkhashps 2016 945503
9.704094538460986e+20
$ bitcoin-cli getnetworkhashps 2016 943487
9.942372658458654e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 945848,
"bestblock": "0000000000000000000125e598b5f31e6f21cef69c4ad8d16363f3fdc72b2428",
"txouts": 165381863,
"bogosize": 12956348736,
"muhash": "f4441ed6943cf6b8da8531190d3612622a38018fdb3be276292a982453b6f17d",
"total_amount": 20018048.02860258,
"total_unspendable_amount": 230.09639742,
"block_info": {
"prevout_spent": 3306.70483104,
"coinbase": 3.13290602,
"new_outputs_ex_coinbase": 3306.69692502,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 945848
{
"avgfee": 127,
"avgfeerate": 0,
"avgtxsize": 256,
"blockhash": "0000000000000000000125e598b5f31e6f21cef69c4ad8d16363f3fdc72b2428",
"feerate_percentiles": [
0,
0,
0,
1,
2
],
"height": 945848,
"ins": 7487,
"maxfee": 35570,
"maxfeerate": 151,
"maxtxsize": 29080,
"medianfee": 20,
"mediantime": 1776639117,
"mediantxsize": 221,
"minfee": 18,
"minfeerate": 0,
"mintxsize": 150,
"outs": 12842,
"subsidy": 312500000,
"swtotal_size": 1545882,
"swtotal_weight": 3818145,
"swtxs": 6091,
"time": 1776641928,
"total_out": 330669692502,
"total_size": 1589328,
"total_weight": 3991929,
"totalfee": 790602,
"txs": 6186,
"utxo_increase": 5355,
"utxo_size_inc": 380872,
"utxo_increase_actual": 38,
"utxo_size_inc_actual": 3009
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 3460649729,
"totalbytessent": 8078558430,
"timemillis": 1776641584099,
"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 total block
in 16 16
out 10 10 2
total 26 26
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 66752,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 66752
}
}
$ halving.sh 945848
=====================================
Bitcoin Block Halving prediction
=====================================
bc=945848
gbt=1231006505
bbt=1776641928
This is average time to mine a block
(1776641928-1231006505)/945848
bts=576.8737113429310598203307
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Wed Mar 15 09:14:38 UTC 2028
-------------------------------------
Next palindrome will be 946649
predicted to happen at this time:
Sat Apr 25 08:00:03 UTC 2026
-------------------------------------
Current mining epoch number is 469.
The next fortnight happens in block
947520 and probably around this time:
Fri May 1 03:34:20 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
00de322b63e69ca9
56887195a3e4781d68b17844e07d8fa19ab9c4237c44428405f2f3d5858c69f8
75e390c4b40859a6
231b87e24cd7464aa90a5831325c4a03d092d05896d86569e3831000c3da60c5
35f90c0fb4d27c37
3b97e77c842bee40c1b21522f0ae142bc4bad3e7ea3cbc084ff7ac8597552fae
e811f290e545b557
91b438fd292baa7899673e95f0b574fece959ef344935aa5a4c44e712aba081b
bd5c28ca73d648d3
c6b973db3d90e160e11c217163d545535e65a914a23d65cffd276dcda577f5da
23ebc31ec6577c25
e584eb4cdcf75a16c81a049b7a5b54f3bd5d3084b050a547d4d3f50f96011a4a
22401fefde290001
b8e611394d0fa07cb0754e789ba6b32e790a38349da1a323320d6c176b258034
cc5eafef7fabe466
87812ccd4bac7c5031c309bdd9241cb85f228fb9f04857930dcf8dec6b384e44
931b3aabc6c094ad
45a760e7bad06d5a76d02ee04b174b91bb9d96f172bfe60d53149be713315081
bfb936a9574324b2
c61e5549a354e2ad1172c2ea2baa8ef7d9099c2b2fb39a9c4e6eb95aa33c52b0
$ niceblack.sh $BH $BC
_|_| _| _| _|_|_|_|
_| _| _| _| _|
_|_|_| _|_|_|_| _|_|_|
_| _| _|
_|_|_| _| _|_|_|
_|_| _| _| _|_|
_| _| _| _| _| _|
_|_| _|_|_|_| _|_|
_| _| _| _| _|
_|_| _| _|_|
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 25e5 98b5 f31e 1f |
| 2. 6f21 cef6 9c4a d8d1 2f |
| 3. 6363 f3fd c72b 2428 3f |
'=== ==== ==== ==== ==== ==='
jk: 2428 d89e b4