# on receiving block 928962 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-12-22T10:54:02Z
# as written in the block header
2025-12-22T10:53:42Z
$ uptime # since last reboot
10:54:02 up 130 days, 20:44, 0 users, load average: 2.06, 1.54, 1.54
$ battery.sh
49%, Power Supply Online
$ uname -smnr
Linux singer 6.12.40-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2118568 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.9G .bitcoin/chainstate
125.9G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 834.3G 76.1G 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
928962
$ BH=$(bitcoin-cli getblockhash 928962); echo $BH
000000000000000000010262a4664b9f2606034d2caf1b75072318d367a23c8f
$ bitcoin-cli getblockheader 000000000000000000010262a4664b9f2606034d2caf1b75072318d367a23c8f
{
"hash": "000000000000000000010262a4664b9f2606034d2caf1b75072318d367a23c8f",
"confirmations": 1,
"height": 928962,
"version": 704643072,
"versionHex": "2a000000",
"merkleroot": "0e9fd71d30e022a67e96f232bef3d43520f9fd72ff517e64fb6fb92b9a514635",
"time": 1766400822,
"mediantime": 1766395318,
"nonce": 727674188,
"bits": "1701e63a",
"target": "00000000000000000001e63a0000000000000000000000000000000000000000",
"difficulty": 148195306640204.7,
"chainwork": "00000000000000000000000000000000000000010022f59747e5d39b1f2624e9",
"nTx": 2377,
"previousblockhash": "000000000000000000006a369380dfad6e963f6976adaa9ff0899f50680cae30"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 .262 a466 4b9f
26.6 .34d 2caf 1b75
.723 18d3 67a2 3c8f
$ : 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
928962 sf: ...1 .262 26.6 .34d 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 .
928962 sk: 3c8f 74
$ : 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 .
928962 ak: bbd6 74
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 50924,
"bytes": 31830249,
"usage": 178914016,
"total_fee": 0.04263941,
"maxmempool": 300000000,
"mempoolminfee": 0.00000001,
"minrelaytxfee": 0.00000001,
"incrementalrelayfee": 0.00000001,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
133
## Current epoch estimation is -1.6%
## 1602 of 2016, i.e. 79%, 414 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
1.043516493448351e+21
$ bitcoin-cli getnetworkhashps 2016 927359
1.060568478882824e+21
$ bitcoin-cli getnetworkhashps 2016 925343
1.068462185929668e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 928962,
"bestblock": "000000000000000000010262a4664b9f2606034d2caf1b75072318d367a23c8f",
"txouts": 164673179,
"bogosize": 12907246996,
"muhash": "3408932d1f5a7c9d0bf40477ba2d167e383d6b2a9908e659234d5acd997f7064",
"total_amount": 19965279.28532782,
"total_unspendable_amount": 230.08967218,
"block_info": {
"prevout_spent": 3935.49191948,
"coinbase": 3.14230811,
"new_outputs_ex_coinbase": 3935.47461135,
"unspendable": 0.00000002,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000002,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 928962
{
"avgfee": 728,
"avgfeerate": 1,
"avgtxsize": 709,
"blockhash": "000000000000000000010262a4664b9f2606034d2caf1b75072318d367a23c8f",
"feerate_percentiles": [
1,
1,
1,
1,
2
],
"height": 928962,
"ins": 9890,
"maxfee": 71770,
"maxfeerate": 178,
"maxtxsize": 99235,
"medianfee": 209,
"mediantime": 1766395318,
"mediantxsize": 225,
"minfee": 71,
"minfeerate": 0,
"mintxsize": 139,
"outs": 5576,
"subsidy": 312500000,
"swtotal_size": 1488708,
"swtotal_weight": 3206481,
"swtxs": 2211,
"time": 1766400822,
"total_out": 393547461137,
"total_size": 1685050,
"total_weight": 3991849,
"totalfee": 1730811,
"txs": 2377,
"utxo_increase": -4314,
"utxo_size_inc": -314681,
"utxo_increase_actual": -4473,
"utxo_size_inc_actual": -327810
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 4185335322,
"totalbytessent": 10461624160,
"timemillis": 1766400843713,
"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 28 2 30
out 14 0 14 2 4
total 42 2 44
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 62936,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 62936
}
}
$ halving.sh 928962
=====================================
Bitcoin Block Halving prediction
=====================================
bc=928962
gbt=1231006505
bbt=1766400822
This is average time to mine a block
(1766400822-1231006505)/928962
bts=576.3354590010581691628191
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Wed Mar 8 20:15:13 UTC 2028
-------------------------------------
Next palindrome will be 929929
predicted to happen at this time:
Sun Dec 28 21:42:18 UTC 2025
-------------------------------------
Current mining epoch number is 460.
The next fortnight happens in block
929376 and probably around this time:
Thu Dec 25 05:10:24 UTC 2025
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
19 "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
842b963a3d2d3874
c0fe0d4ff93a881503999420aca49db8028f7a2e070090a15a89ad3497454203
fc75407f2e57534b
3f21429c08bae67e5bb32ee2155e5164547ff4387ef093ba0904fac7c0e1cd60
847869ee07bf7a24
ec4e3c4ccbcf3bf6f02fb9bde838be7e41047e21784fd1d91634fe56adff3a54
7a1e7fe2aa7e3ee9
e9d450177142cfd072107f1a8b03d16730c622a0c6cfb89f2f814090647d1706
330da39f6424cad2
cd6e1f6ae3ddd39b2e97c4ace8a19e093720eb2077829405f4900c971449a597
4a99f0b76ef8b24d
292e8e991a57cc3dc33ac4c22319601f1e7750a5e0efb5d3dfe55bd368ce07e0
9c20b19b7f506402
22b3de660548c9cebd3cde96bc58dabfe040eee3c3418795cf0d7ff2cdbeb787
95a24ea50d2afc6f
a45ccfba656c50d68d6662df955abd2bca6daac532f0d293a862726748bc0cf3
0741d09e16d1d1b0
4ace10beb62b485dfd5a34e4bc769c286585d6c77ba401c79aa21e9d3e22af32
86987924a076d48e
8ffa420bd11caa5b947958ef4d206c70562606b1b48796b6dc78708150b6ccce
$ niceblack.sh $BH $BC
##### ##### #####
# # # # # #
# # # # #
###### ##### #####
# # # #
# # # # #
##### ####### #####
##### ##### #####
# # # # # #
# # # #
###### ###### #####
# # # #
# # # # #
##### ##### #######
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 .262 a466 4b9f 1f |
| 2. 26.6 .34d 2caf 1b75 2f |
| 3. .723 18d3 67a2 3c8f 3f |
'=== ==== ==== ==== ==== ==='
ak: bbd6 74
...............| ......|..||...|.