# on receiving block 934030 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-01-27T23:17:05Z
# as written in the block header
2026-01-27T23:16:37Z
$ uptime # since last reboot
23:17:05 up 10:42, 0 users, load average: 0.56, 1.02, 1.61
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2022732 kB
$ du -h -d1 .bitcoin/
12.0G .bitcoin/indexes
4.1G .bitcoin/signet
86.5M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.5G .bitcoin/chainstate
124.5G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 834.5G 76.0G 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
934030
$ BH=$(bitcoin-cli getblockhash 934030); echo $BH
00000000000000000000e8cb266897b7d95e80a912141c01de76cfcb2ea2873e
$ bitcoin-cli getblockheader 00000000000000000000e8cb266897b7d95e80a912141c01de76cfcb2ea2873e
{
"hash": "00000000000000000000e8cb266897b7d95e80a912141c01de76cfcb2ea2873e",
"confirmations": 1,
"height": 934030,
"version": 738197504,
"versionHex": "2c000000",
"merkleroot": "e87c13e6e016dd0563dee998114853ec5ff5f08a1004ea52aba9c3b302c59597",
"time": 1769555797,
"mediantime": 1769553109,
"nonce": 2889188111,
"bits": "1701fca1",
"target": "00000000000000000001fca10000000000000000000000000000000000000000",
"difficulty": 141668107417558.2,
"chainwork": "00000000000000000000000000000000000000010a74f20114a083a0a4b9424b",
"nTx": 2034,
"previousblockhash": "00000000000000000000c2f74f7b7fd5c40c948dcf0a2f70da51c3cdc82da19a"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
.... e8cb 2668 97b7
d95e 8.a9 1214 1c.1
de76 cfcb 2ea2 873e
$ : 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
934030 sf: 8.a9 1c.1 873e
$ : 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 .
934030 sk: 873e 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 .
934030 ak: b6d7 95
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 35947,
"bytes": 15972327,
"usage": 95487440,
"total_fee": 0.01754791,
"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 -5.64%
## 622 of 2016, i.e. 30%, 1394 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.563733495091503e+20
$ bitcoin-cli getnetworkhashps 2016 933407
1.013538089664451e+21
$ bitcoin-cli getnetworkhashps 2016 931391
1.048049552337457e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 934030,
"bestblock": "00000000000000000000e8cb266897b7d95e80a912141c01de76cfcb2ea2873e",
"txouts": 164057376,
"bogosize": 12857655019,
"muhash": "a584e3696caf40d43e8d2eb7fa88de0fe390ee402806ee40f4e772efd316f48a",
"total_amount": 19981116.78220209,
"total_unspendable_amount": 230.09279791,
"block_info": {
"prevout_spent": 3220.84338536,
"coinbase": 3.14048032,
"new_outputs_ex_coinbase": 3220.82790503,
"unspendable": 0.00000001,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000001,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 934030
{
"avgfee": 761,
"avgfeerate": 2,
"avgtxsize": 456,
"blockhash": "00000000000000000000e8cb266897b7d95e80a912141c01de76cfcb2ea2873e",
"feerate_percentiles": [
1,
1,
1,
2,
3
],
"height": 934030,
"ins": 4564,
"maxfee": 104500,
"maxfeerate": 501,
"maxtxsize": 52519,
"medianfee": 322,
"mediantime": 1769553109,
"mediantxsize": 224,
"minfee": 99,
"minfeerate": 1,
"mintxsize": 150,
"outs": 6381,
"subsidy": 312500000,
"swtotal_size": 845147,
"swtotal_weight": 2058755,
"swtxs": 1898,
"time": 1769555797,
"total_out": 322082790504,
"total_size": 927669,
"total_weight": 2388843,
"totalfee": 1548032,
"txs": 2034,
"utxo_increase": 1817,
"utxo_size_inc": 134242,
"utxo_increase_actual": 1759,
"utxo_size_inc_actual": 127994
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 145461798,
"totalbytessent": 372967714,
"timemillis": 1769555826104,
"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": 65836,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 65836
}
}
$ halving.sh 934030
=====================================
Bitcoin Block Halving prediction
=====================================
bc=934030
gbt=1231006505
bbt=1769555797
This is average time to mine a block
(1769555797-1231006505)/934030
bts=576.5861004613337244695304
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Sat Mar 11 21:21:27 UTC 2028
-------------------------------------
Next palindrome will be 934439
predicted to happen at this time:
Fri Jan 30 16:47:00 UTC 2026
-------------------------------------
Current mining epoch number is 463.
The next fortnight happens in block
935424 and probably around this time:
Fri Feb 6 06:32:38 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
14 "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
c9fd7d6dc1088007
89a2379d09110ee7bae82ea25b9ba7fbbb91a73d120a8776b2e2a6fa56941665
7b9a1ca6d304d08a
2981bc5dd728e3de39fe16975c1118a4db3f2270c4caa0e6d71578adca9766e5
d5cd45ef894e8649
452ea15c98d8f6590baaf778faf0ebc2f67436ce84d68b04915e83f53b4b545f
952c29ffb60124fb
b2ee8ea5aa183779a52079f37290d9d96e12cc2e543493afeccc8ebf97ade10f
d4e2b1ee4a1b02e8
78d31a235be6bbf34db53b8b5dd8bb418e471ddc90b45d83ba3f8b125d840d42
93f43076b3bb3924
a694785c15abf7e29f38d8566d7e4e3ad266b81c8d4a44c4f01e328015105c7e
d8e3d0442570db0a
3ebbb0e205f003da0706fcad3fe0015d2d71e826c7ef7f2c6462e4333b79d425
$ niceblack.sh $BH $BC
___ ____ _ _
/ _ \___ \| || |
| (_) |__) | || |_
\__, |__ <|__ _|
/ /___) | | |
/_/|____/ |_|
___ ____ ___
/ _ \___ \ / _ \
| | | |__) | | | |
| | | |__ <| | | |
| |_| |__) | |_| |
\___/____/ \___/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. .... e8cb 2668 97b7 1f |
| 2. d95e 8.a9 1214 1c.1 2f |
| 3. de76 cfcb 2ea2 873e 3f |
'=== ==== ==== ==== ==== ==='
ak: b6d7 95