# on receiving block 929574 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-12-26T14:48:49Z
# as written in the block header
2025-12-26T14:54:38Z
$ uptime # since last reboot
14:48:49 up 135 days, 39 min, 0 users, load average: 5.08, 4.16, 2.35
$ battery.sh
50%, Power Supply Online
$ uname -smnr
Linux singer 6.12.40-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2061372 kB
$ du -h -d1 .bitcoin/
1.5G .bitcoin/testnet4
11.9G .bitcoin/indexes
3.8G .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.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
929574
$ BH=$(bitcoin-cli getblockhash 929574); echo $BH
000000000000000000015ab57ae90f789c792e157c7421e02de84083a37534a3
$ bitcoin-cli getblockheader 000000000000000000015ab57ae90f789c792e157c7421e02de84083a37534a3
{
"hash": "000000000000000000015ab57ae90f789c792e157c7421e02de84083a37534a3",
"confirmations": 1,
"height": 929574,
"version": 1073733632,
"versionHex": "3fffe000",
"merkleroot": "910ce716f0ae9bf7d3926e1c7aeb32f646ab8352d726efe7b6faa90a4d948118",
"time": 1766760878,
"mediantime": 1766757601,
"nonce": 3138201957,
"bits": "1701e605",
"target": "00000000000000000001e6050000000000000000000000000000000000000000",
"difficulty": 148258433855481.3,
"chainwork": "000000000000000000000000000000000000000101653960852cbe7101b44234",
"nTx": 3169,
"previousblockhash": "00000000000000000000a2bc64a5d2e7297b48c95c18ef46f305925ee098e7e4"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 5ab5 7ae9 .f78
9c79 2e15 7c74 21e.
2de8 4.83 a375 34a3
$ : 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
929574 sf: ...1 .f78 21e. 4.83 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 .
929574 sk: 34a3 84
$ : 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 .
929574 ak: 3a6. 84
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 51781,
"bytes": 22423231,
"usage": 134041280,
"total_fee": 0.03105601,
"maxmempool": 300000000,
"mempoolminfee": 0.00000001,
"minrelaytxfee": 0.00000001,
"incrementalrelayfee": 0.00000001,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
138
## Current epoch estimation is -1.3%
## 198 of 2016, i.e. 9%, 1818 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
1.047419034660914e+21
$ bitcoin-cli getnetworkhashps 2016 929375
1.06126766979058e+21
$ bitcoin-cli getnetworkhashps 2016 927359
1.060568478882824e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 929574,
"bestblock": "000000000000000000015ab57ae90f789c792e157c7421e02de84083a37534a3",
"txouts": 164582251,
"bogosize": 12900489375,
"muhash": "573001215b0ee4f734da28297910bf2aac1670cbd48f0ab72f56424fbe4ec168",
"total_amount": 19967191.78525077,
"total_unspendable_amount": 230.08974923,
"block_info": {
"prevout_spent": 6528.05042679,
"coinbase": 3.15293969,
"new_outputs_ex_coinbase": 6528.02248710,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 929574
{
"avgfee": 881,
"avgfeerate": 2,
"avgtxsize": 523,
"blockhash": "000000000000000000015ab57ae90f789c792e157c7421e02de84083a37534a3",
"feerate_percentiles": [
1,
1,
2,
3,
4
],
"height": 929574,
"ins": 8581,
"maxfee": 136082,
"maxfeerate": 108,
"maxtxsize": 148512,
"medianfee": 371,
"mediantime": 1766757601,
"mediantxsize": 224,
"minfee": 0,
"minfeerate": 0,
"mintxsize": 150,
"outs": 8376,
"subsidy": 312500000,
"swtotal_size": 1534373,
"swtotal_weight": 3496361,
"swtxs": 2860,
"time": 1766760878,
"total_out": 652802248710,
"total_size": 1658280,
"total_weight": 3991989,
"totalfee": 2793969,
"txs": 3169,
"utxo_increase": -205,
"utxo_size_inc": -11119,
"utxo_increase_actual": -357,
"utxo_size_inc_actual": -24134
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 5920606170,
"totalbytessent": 15606118098,
"timemillis": 1766760530366,
"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 25 2 27
out 14 0 14 2 4
total 39 2 41
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 63264,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 63264
}
}
$ halving.sh 929574
=====================================
Bitcoin Block Halving prediction
=====================================
bc=929574
gbt=1231006505
bbt=1766760878
This is average time to mine a block
(1766760878-1231006505)/929574
bts=576.3433536831347658876368
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Wed Mar 8 22:33:22 UTC 2028
-------------------------------------
Next palindrome will be 929929
predicted to happen at this time:
Sun Dec 28 23:44:39 UTC 2025
-------------------------------------
Current mining epoch number is 461.
The next fortnight happens in block
931392 and probably around this time:
Wed Jan 7 17:57:50 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
20 "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
952c29ffb60124fb
31733c8f2ec035a6406a5ca456e0407131e95142eda2e4a745f09a9976626280
842b963a3d2d3874
c0fe0d4ff93a881503999420aca49db8028f7a2e070090a15a89ad3497454203
847869ee07bf7a24
ec4e3c4ccbcf3bf6f02fb9bde838be7e41047e21784fd1d91634fe56adff3a54
330da39f6424cad2
cd6e1f6ae3ddd39b2e97c4ace8a19e093720eb2077829405f4900c971449a597
9c20b19b7f506402
22b3de660548c9cebd3cde96bc58dabfe040eee3c3418795cf0d7ff2cdbeb787
95a24ea50d2afc6f
a45ccfba656c50d68d6662df955abd2bca6daac532f0d293a862726748bc0cf3
fd1b3dbc7629e2bd
aadc94d6ca683183597cc5b904e25b8536a243bb186b285a4162e87e2b00e718
3fcdb4b8d262435c
b0d8f92b13737e0641252df41cb8de47f82a02e0e13ffb1be3baec8e7f37c220
daed18277597092e
1f84c9704b0635d261f06c30b03b86a429e2b0bac7b4c64956a9f70278961c87
e31aad9d7dc5ad05
29fbb8086adce67b2988f0bfec880681ed9d9ca180fdcedfe3ff239cefd4f492
260f1962d13d60a8
b795089a4a870daa2ca7f494b565f1b09d75d1973b28649f69e3a061f268ebd1
0751ba0c7180a2e9
06496735f3dd622c45929c560a4143c3b9cb0f77d58df39dcbbe551cd9aeab2e
faae7023ca08043e
5c46f1c4a15ac726e30a7613fae7b558b7042a965dfffe63ffa56ef6adf864af
d16b5e217ff9e219
c1904d78fc038ff4d21d1579e36d1f94fa03732219e4537b067bc2e7b5fe5e45
$ niceblack.sh $BH $BC
##### ##### #####
# # # # # #
# # # # #
###### ##### ######
# # #
# # # # #
##### ####### #####
####### ####### #
# # # # #
# # # #
###### # # #
# # #######
# # # #
##### # #
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 5ab5 7ae9 .f78 1f |
| 2. 9c79 2e15 7c74 21e. 2f |
| 3. 2de8 4.83 a375 34a3 3f |
'=== ==== ==== ==== ==== ==='
ak: 3a6. 84
...............| .|.||.|.|.||.|.|