# on receiving block 942095 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-03-25T04:28:33Z
# as written in the block header
2026-03-25T04:28:05Z
$ uptime # since last reboot
04:28:33 up 5 days, 19:21, 0 users, load average: 2.06, 2.56, 1.72
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2354844 kB
$ du -h -d1 .bitcoin/
12.1G .bitcoin/indexes
4.3G .bitcoin/signet
2.7M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
124.8G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 433.1G 477.4G 48% /
$ bitcoind -version
Bitcoin Core daemon version v30.2.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
942095
$ BH=$(bitcoin-cli getblockhash 942095); echo $BH
00000000000000000001f043c4874885d30bdd5c4e0297eba4fb0c3391c504ed
$ bitcoin-cli getblockheader 00000000000000000001f043c4874885d30bdd5c4e0297eba4fb0c3391c504ed
{
"hash": "00000000000000000001f043c4874885d30bdd5c4e0297eba4fb0c3391c504ed",
"confirmations": 1,
"height": 942095,
"version": 624869376,
"versionHex": "253ec000",
"merkleroot": "d54f55028a47b5e19e95eb5ae8c0905ff4bafec609c3bf1badc498b89193e3ec",
"time": 1774412885,
"mediantime": 1774411391,
"nonce": 2905517820,
"bits": "17021a91",
"target": "000000000000000000021a910000000000000000000000000000000000000000",
"difficulty": 133793147307542.8,
"chainwork": "000000000000000000000000000000000000000119f93ea08061f980774b9a80",
"nTx": 5338,
"previousblockhash": "0000000000000000000152614b2b62de25e6ab2ed8d0f5ece3352b7de96e1910"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 f.43 c487 4885
d3.b dd5c 4e.2 97eb
a4fb .c33 91c5 .4ed
$ : 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
942095 sf: ...1 f.43 d3.b 4e.2 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 .
942095 sk: .4ed 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 .
942095 ak: 961e 64
$ : Following is the jointkode
942095 jk: 04ed 961e 64
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 12670,
"bytes": 9244861,
"usage": 52739648,
"total_fee": 0.01015444,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
109
## Current epoch estimation is -0.41%
## 623 of 2016, i.e. 30%, 1393 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.535698366978422e+20
$ bitcoin-cli getnetworkhashps 2016 941471
9.575843405435805e+20
$ bitcoin-cli getnetworkhashps 2016 939455
1.037983005536264e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 942095,
"bestblock": "00000000000000000001f043c4874885d30bdd5c4e0297eba4fb0c3391c504ed",
"txouts": 165078879,
"bogosize": 12935474338,
"muhash": "a9e5cfe9dc17dad5232ff78668508c2fde94defae8eadc163cfecef31f2de52e",
"total_amount": 20006319.90535909,
"total_unspendable_amount": 230.09464091,
"block_info": {
"prevout_spent": 2546.91512859,
"coinbase": 3.13083388,
"new_outputs_ex_coinbase": 2546.90929470,
"unspendable": 0.00000001,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000001,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 942095
{
"avgfee": 109,
"avgfeerate": 0,
"avgtxsize": 302,
"blockhash": "00000000000000000001f043c4874885d30bdd5c4e0297eba4fb0c3391c504ed",
"feerate_percentiles": [
0,
0,
0,
1,
1
],
"height": 942095,
"ins": 6656,
"maxfee": 30059,
"maxfeerate": 91,
"maxtxsize": 38625,
"medianfee": 19,
"mediantime": 1774411391,
"mediantxsize": 222,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 150,
"outs": 13133,
"subsidy": 312500000,
"swtotal_size": 1545990,
"swtotal_weight": 3721731,
"swtxs": 5266,
"time": 1774412885,
"total_out": 254690929471,
"total_size": 1613496,
"total_weight": 3991755,
"totalfee": 583388,
"txs": 5338,
"utxo_increase": 6477,
"utxo_size_inc": 444090,
"utxo_increase_actual": 1911,
"utxo_size_inc_actual": 145516
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 2126485011,
"totalbytessent": 3986594732,
"timemillis": 1774412914275,
"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 v30.2.0 - server 70016/Satoshi:30.2.0/
ipv4 npr total block libre
in 18 1 19
out 14 0 14 2 4
total 32 1 33
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 64246,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 64246
}
}
$ halving.sh 942095
=====================================
Bitcoin Block Halving prediction
=====================================
bc=942095
gbt=1231006505
bbt=1774412885
This is average time to mine a block
(1774412885-1231006505)/942095
bts=576.8057395424670097314923
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Tue Mar 14 13:25:08 UTC 2028
-------------------------------------
Next palindrome will be 942249
predicted to happen at this time:
Thu Mar 26 05:08:33 UTC 2026
-------------------------------------
Current mining epoch number is 467.
The next fortnight happens in block
943488 and probably around this time:
Fri Apr 3 11:39:35 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
13 "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
02cb5c606760eb35
2dc79d44c774726b418021dae17209492b9de7b6f762d5f3e47c554de8d75254
d610dd5e660d0487
407772be0ec35878d443f6c860310559d457701e58b31f0581ae3e19e70f6fd2
35f90c0fb4d27c37
75c44d4e6d531a257d477600a3f28011ed5ca4322dc65f764aefd019229f379f
952c29ffb60124fb
c7c1eecb36b41a1d66dc3ebe54cb69cf51743670d021a0b8ec9b3c6049382728
493faac3367fbbe9
a286a1a0bc055de72e5644d874a912ebabce4c286221f07cb791f5009aeb3d08
f587b378a600a25a
24c54a8e1c4f8d86f89a8bb1d18f9d20147d5ac0904dbe2da3b3568a86fbd2e0
c94273602e086b90
767226442e8ec526ffeb36e70a4d69ab62d34b211a7d9b76ef05807896456f86
a2d885992e8f3b3a
cfde7b440cf74cc68329ce8c11f758840471a81ce61eaf3e7965cbc634296762
f2151ea10467efcc
fc3cd84ef43fb7d7e175f782660aa9a83bf306528033248e5c9c60eb2ec8d28b
2f483f8248b737c5
962e943a6db14bc263a74c1c0b3b791015aeb205e5d3f012fe244a9bbb62006e
e7bb3d482e5189fd
6319dccf86f1cbcaa2c3a3e1f3f3e534a4210030764c80f5b1271259c47e19d9
ef9cebfd004b47ac
e7933e656d0a771534252ce7bbc29d12c8b1f591f41275976618b52451bba216
b84b0a562bc7fbfd
bcab3720fcf6e78de04a182576d9e0314eccecf4560495e29f5db617f00250ae
$ niceblack.sh $BH $BC
_|_| _| _| _|_|
_| _| _| _| _| _|
_|_|_| _|_|_|_| _|
_| _| _|
_|_|_| _| _|_|_|_|
_| _|_| _|_|_|_|
_| _| _| _| _|
_| _| _|_|_| _|_|_|
_| _| _| _|
_| _|_|_| _|_|_|
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 f.43 c487 4885 1f |
| 2. d3.b dd5c 4e.2 97eb 2f |
| 3. a4fb .c33 91c5 .4ed 3f |
'=== ==== ==== ==== ==== ==='
jk: .4ed 961e 64