# on receiving block 928594 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-12-19T20:21:27Z
# as written in the block header
2025-12-19T20:21:06Z
$ uptime # since last reboot
20:21:27 up 128 days, 6:12, 0 users, load average: 2.39, 2.44, 2.13
$ battery.sh
50%, Power Supply Online
$ uname -smnr
Linux singer 6.12.40-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2058148 kB
$ du -h -d1 .bitcoin/
1.5G .bitcoin/testnet4
11.9G .bitcoin/indexes
3.7G .bitcoin/signet
41.8M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.6G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 834.0G 76.5G 92% /
$ bitcoind -version
Bitcoin Core daemon version libre-relay-v30.0-1
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
928594
$ BH=$(bitcoin-cli getblockhash 928594); echo $BH
0000000000000000000107a83d12c7fc0eee83c6cab769bcbff55cfc4e443dfc
$ bitcoin-cli getblockheader 0000000000000000000107a83d12c7fc0eee83c6cab769bcbff55cfc4e443dfc
{
"hash": "0000000000000000000107a83d12c7fc0eee83c6cab769bcbff55cfc4e443dfc",
"confirmations": 1,
"height": 928594,
"version": 820125696,
"versionHex": "30e22000",
"merkleroot": "72caec3c1e68458ca71b8c93005d1f080b5a6cf7b371f26202155ab7f5cf30c7",
"time": 1766175666,
"mediantime": 1766172357,
"nonce": 2614349190,
"bits": "1701e63a",
"target": "00000000000000000001e63a0000000000000000000000000000000000000000",
"difficulty": 148195306640204.7,
"chainwork": "0000000000000000000000000000000000000000ff6134bf26b1f4224d2c3e99",
"nTx": 2363,
"previousblockhash": "0000000000000000000157ddc4bb0795fe2c7e7a62991a6bab850bb961df3031"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 .7a8 3d12 c7fc
.eee 83c6 cab7 69bc
bff5 5cfc 4e44 3dfc
$ : 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
928594 sf: ...1 .7a8 .eee 3dfc
$ : 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 .
928594 sk: 3dfc 94
$ : 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 .
928594 ak: 43d5 94
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 44981,
"bytes": 39909280,
"usage": 219808656,
"total_fee": 0.05405210,
"maxmempool": 300000000,
"mempoolminfee": 0.00000001,
"minrelaytxfee": 0.00000001,
"incrementalrelayfee": 0.00000001,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
135
## Current epoch estimation is +1.22%
## 1234 of 2016, i.e. 61%, 782 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
1.073589607205991e+21
$ bitcoin-cli getnetworkhashps 2016 927359
1.060568478882824e+21
$ bitcoin-cli getnetworkhashps 2016 925343
1.068462185929668e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 928594,
"bestblock": "0000000000000000000107a83d12c7fc0eee83c6cab769bcbff55cfc4e443dfc",
"txouts": 164736628,
"bogosize": 12912256517,
"muhash": "bfdef8fc00bf79dad8b759440fd89b1b23c7d5be9bb778b110ee00696b5f4345",
"total_amount": 19964129.28535000,
"total_unspendable_amount": 230.08965000,
"block_info": {
"prevout_spent": 1957.27772725,
"coinbase": 3.14016429,
"new_outputs_ex_coinbase": 1957.26256295,
"unspendable": 0.00000001,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000001,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 928594
{
"avgfee": 642,
"avgfeerate": 1,
"avgtxsize": 689,
"blockhash": "0000000000000000000107a83d12c7fc0eee83c6cab769bcbff55cfc4e443dfc",
"feerate_percentiles": [
1,
1,
1,
1,
2
],
"height": 928594,
"ins": 8725,
"maxfee": 59288,
"maxfeerate": 18,
"maxtxsize": 50229,
"medianfee": 224,
"mediantime": 1766172357,
"mediantxsize": 225,
"minfee": 100,
"minfeerate": 0,
"mintxsize": 150,
"outs": 5318,
"subsidy": 312500000,
"swtotal_size": 1346790,
"swtotal_weight": 2866176,
"swtxs": 2194,
"time": 1766175666,
"total_out": 195726256296,
"total_size": 1628245,
"total_weight": 3991996,
"totalfee": 1516429,
"txs": 2363,
"utxo_increase": -3407,
"utxo_size_inc": -251258,
"utxo_increase_actual": -3554,
"utxo_size_inc_actual": -263392
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 3249789014,
"totalbytessent": 7643260519,
"timemillis": 1766175688075,
"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 libre-relay-v30.0-1 - server 70016/Satoshi:30.0.0/
ipv4 npr total block libre
in 26 1 27
out 14 0 14 2 4
total 40 1 41
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 62761,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 62761
}
}
$ halving.sh 928594
=====================================
Bitcoin Block Halving prediction
=====================================
bc=928594
gbt=1231006505
bbt=1766175666
This is average time to mine a block
(1766175666-1231006505)/928594
bts=576.3213898416424813831648
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Wed Mar 8 16:09:00 UTC 2028
-------------------------------------
Next palindrome will be 928829
predicted to happen at this time:
Sun Dec 21 09:58:21 UTC 2025
-------------------------------------
Current mining epoch number is 460.
The next fortnight happens in block
929376 and probably around this time:
Thu Dec 25 01:32:29 UTC 2025
### 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
9368a2868c6ca52d
d8697c481b6339734411359c40f32a07e9b589d78ee0ace63a3c1ea3b5f75df2
ce11c19bf8bf5570
88bd3b684d4ce4099c2c9e78365007b5e1e13b37b69580136433c2cc1032188b
b15e4d890262ee80
e9a41b96e5c4e09fef52c4a49db89376e7efd034bd4a2e625adc2c02885dd5bd
b33d9979c3ac519f
fe468c9082d1f2d2a5698000839f0612acc57604b1e68db987f11cb485d8439c
7b9a1ca6d304d08a
7f1a74c40a932e0442fb8f3545dc5a8b09c3c7bb5ba078a4987b13dfc5d3b4d9
2f483f8248b737c5
c52be77074176d57f290e6033fa8b7e357759b7d885b957de26dd45b2b9b4df7
9dcb5e85e7380fc8
a600f255f3c73c6a94dfeb4625c9792b0bf2962b5e5edb4c49fbc61a5872c8c8
3292d7567fdd2c15
dfbb9984b5bf4277aeae08d6a62b4fa2065738ffdb1e496788087a337275ec66
952c29ffb60124fb
31733c8f2ec035a6406a5ca456e0407131e95142eda2e4a745f09a9976626280
3da7a61d822d21c9
975d734b659852d2b12e64676322f019630b9ef7c6e225798bbb6f8e2e74b1d0
9eca5a639da9e95b
415d02a952ef2ce353ed5b06eac9489a2321910f84aff4c59f6289a82a1033d8
842b963a3d2d3874
c0fe0d4ff93a881503999420aca49db8028f7a2e070090a15a89ad3497454203
09da5e56a43c1088
05b2281efadb129eb2e5e354b8a1697fbf419660944fae17eb7fa31c24888d91
fc75407f2e57534b
3f21429c08bae67e5bb32ee2155e5164547ff4387ef093ba0904fac7c0e1cd60
64028e35a70f428d
2d1bf6e6e15e0b66a83f02a9adfde490970fa01193374de25c32ff2d89fe56df
847869ee07bf7a24
ec4e3c4ccbcf3bf6f02fb9bde838be7e41047e21784fd1d91634fe56adff3a54
7a1e7fe2aa7e3ee9
e9d450177142cfd072107f1a8b03d16730c622a0c6cfb89f2f814090647d1706
330da39f6424cad2
cd6e1f6ae3ddd39b2e97c4ace8a19e093720eb2077829405f4900c971449a597
$ niceblack.sh $BH $BC
___ ___ ___
/ _ \__ \ / _ \
| (_) | ) | (_) |
\__, |/ / > _ <
/ // /_| (_) |
/_/|____|\___/
_____ ___ _ _
| ____/ _ \| || |
| |__| (_) | || |_
|___ \\__, |__ _|
___) | / / | |
|____/ /_/ |_|
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 .7a8 3d12 c7fc 1f |
| 2. .eee 83c6 cab7 69bc 2f |
| 3. bff5 5cfc 4e44 3dfc 3f |
'=== ==== ==== ==== ==== ==='
ak: 43d5 94
...............| .....||||.|.|...