# on receiving block 934422 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-01-31T03:09:31Z
# as written in the block header
2026-01-31T03:09:16Z
$ uptime # since last reboot
03:09:31 up 3 days, 14:35, 0 users, load average: 0.61, 0.84, 1.02
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 905728 kB
$ du -h -d1 .bitcoin/
12.0G .bitcoin/indexes
4.1G .bitcoin/signet
87.2M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.5G .bitcoin/chainstate
124.6G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 834.6G 75.8G 92% /
$ bitcoind -version
Bitcoin Core daemon version v30.1.0 bitcoind
Copyright (C) 2009-2025 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
934422
$ BH=$(bitcoin-cli getblockhash 934422); echo $BH
000000000000000000004f71ffd53a82c550e51a25786f281556456bd353f50d
$ bitcoin-cli getblockheader 000000000000000000004f71ffd53a82c550e51a25786f281556456bd353f50d
{
"hash": "000000000000000000004f71ffd53a82c550e51a25786f281556456bd353f50d",
"confirmations": 1,
"height": 934422,
"version": 580444160,
"versionHex": "2298e000",
"merkleroot": "8e5695ae9c8a18ef39268b38d558a286b7dd2cd3417c257ce41b3de551859be0",
"time": 1769828956,
"mediantime": 1769826227,
"nonce": 1756454349,
"bits": "1701fca1",
"target": "00000000000000000001fca10000000000000000000000000000000000000000",
"difficulty": 141668107417558.2,
"chainwork": "00000000000000000000000000000000000000010b3a3e8f9ee28df1073744f3",
"nTx": 4185,
"previousblockhash": "000000000000000000014b680515a694d0118cf5419d1e82a327d1efb14c81cf"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
.... 4f71 ffd5 3a82
c55. e51a 2578 6f28
1556 456b d353 f5.d
$ : 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
934422 sf: c55. f5.d
$ : 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 .
934422 sk: f5.d 95
$ : 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 .
934422 ak: 965f 95
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 31830,
"bytes": 35942314,
"usage": 173519936,
"total_fee": 0.04261060,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
118
## Current epoch estimation is -7.48%
## 1014 of 2016, i.e. 50%, 1002 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.376833353643624e+20
$ bitcoin-cli getnetworkhashps 2016 933407
1.013538089664451e+21
$ bitcoin-cli getnetworkhashps 2016 931391
1.048049552337457e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 934422,
"bestblock": "000000000000000000004f71ffd53a82c550e51a25786f281556456bd353f50d",
"txouts": 164180723,
"bogosize": 12866614426,
"muhash": "965aac9280b333eb36583989b691a437d860c676de167be81d70cc30747f2bdb",
"total_amount": 19982341.78218195,
"total_unspendable_amount": 230.09281805,
"block_info": {
"prevout_spent": 992.60666491,
"coinbase": 3.13552275,
"new_outputs_ex_coinbase": 992.59614216,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 934422
{
"avgfee": 251,
"avgfeerate": 1,
"avgtxsize": 401,
"blockhash": "000000000000000000004f71ffd53a82c550e51a25786f281556456bd353f50d",
"feerate_percentiles": [
0,
0,
1,
1,
2
],
"height": 934422,
"ins": 6110,
"maxfee": 212850,
"maxfeerate": 60,
"maxtxsize": 40969,
"medianfee": 34,
"mediantime": 1769826227,
"mediantxsize": 355,
"minfee": 16,
"minfeerate": 0,
"mintxsize": 150,
"outs": 13334,
"subsidy": 312500000,
"swtotal_size": 1590016,
"swtotal_weight": 3640564,
"swtxs": 4075,
"time": 1769828956,
"total_out": 99259614216,
"total_size": 1677848,
"total_weight": 3991892,
"totalfee": 1052275,
"txs": 4185,
"utxo_increase": 7224,
"utxo_size_inc": 512290,
"utxo_increase_actual": 4773,
"utxo_size_inc_actual": 359925
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 1258183727,
"totalbytessent": 2933383967,
"timemillis": 1769828972324,
"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.1.0 - server 70016/Satoshi:30.1.0/
ipv4 npr total block libre
in 19 2 21
out 14 0 14 2 4
total 33 2 35
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 66219,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 66219
}
}
$ halving.sh 934422
=====================================
Bitcoin Block Halving prediction
=====================================
bc=934422
gbt=1231006505
bbt=1769828956
This is average time to mine a block
(1769828956-1231006505)/934422
bts=576.6365457613949999090347
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Sun Mar 12 12:04:14 UTC 2028
-------------------------------------
Next palindrome will be 934439
predicted to happen at this time:
Sat Jan 31 05:52:38 UTC 2026
-------------------------------------
Current mining epoch number is 463.
The next fortnight happens in block
935424 and probably around this time:
Fri Feb 6 19:39:05 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
18 "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
4c6529e2f29fb8a9
dd96cb272a0a8c2dc75ae487cbec1496b340d2dc3dd22420dc067035e747f20b
40cf36e1edfc7838
e376216b12ba582e9c0f6ae60ea7a5593bea1ed0a65223a360a75ebd68630b84
f2e6f2b3a446eee9
3ba4d3b2bd3d57425d663e5471c688ebcf52dd95afc87df56e9bef40a70c76b6
6b3557f067c56786
5a96c96f1266fcda9be7a62b98d4f7c7a4673bc1fc0cee9a8dc99e5a2538f4e5
8f14501130c5b9bc
90367aa212ecac6afde3777157031fa0c48726579def93af3c1b7c189c3570fe
f73bb8ddcadca052
e4c407bec40f0adf61cdb89fecf4d3566de5f67b54dcdfa671396b56bfcd8f9e
a83654eab4f63bbc
8ec88b53d3238a2aa2a4772587054654ddc18cf31d8a66e6c1d98e7c17e49f84
7b9a1ca6d304d08a
2981bc5dd728e3de39fe16975c1118a4db3f2270c4caa0e6d71578adca9766e5
d5cd45ef894e8649
452ea15c98d8f6590baaf778faf0ebc2f67436ce84d68b04915e83f53b4b545f
952c29ffb60124fb
b2ee8ea5aa183779a52079f37290d9d96e12cc2e543493afeccc8ebf97ade10f
93f43076b3bb3924
a694785c15abf7e29f38d8566d7e4e3ad266b81c8d4a44c4f01e328015105c7e
aae562ac376a6921
15e2c557f3fa0dcb6825cde559d1aabaa81e1936987647ef656c4ce2a0ed0e76
e13787feabde9666
dcab1aa079b2c2746e95ba58ddbd4171d8f4defc56ae14fb4e7f75d7061cb6b6
9cee412e8799423c
c9e6161c39fe11a6197323746b3e659c4b398281f1d044fa6e67a105623dce55
2f483f8248b737c5
129f22048e4c6d6c9ff520da520dddebabc81ad6f5aa54782f360cb78f95c5ba
f4a481822fca6446
bffee7302094c36151994fa8bfbff8029744ce6d8d915789424153793ea2ec05
0118aebc556d2048
309dc5c90602b246a73b215d3d88693477c2c4dd5abc3831cea673bc40835c19
b931a422fe0021e3
0460d70927e1f4f8056d54b65d9606fd56b3390275e725ea7434119fb8837371
$ niceblack.sh $BH $BC
____ _____ __ __
/ __ \__ // // /
/ /_/ //_ // /_
\__, /__/ /__ __/
/____/____/ /_/
__ __ ___ ___
/ // /|__ \|__ \
/ // /___/ /__/ /
/__ __/ __// __/
/_/ /____/____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. .... 4f71 ffd5 3a82 1f |
| 2. c55. e51a 2578 6f28 2f |
| 3. 1556 456b d353 f5.d 3f |
'=== ==== ==== ==== ==== ==='
ak: 965f 95