# on receiving block 929277 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-12-24T12:56:32Z
# as written in the block header
2025-12-24T12:56:16Z
$ uptime # since last reboot
12:56:32 up 132 days, 22:47, 0 users, load average: 0.64, 0.92, 1.24
$ battery.sh
50%, Power Supply Online
$ uname -smnr
Linux singer 6.12.40-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2151384 kB
$ du -h -d1 .bitcoin/
1.5G .bitcoin/testnet4
11.9G .bitcoin/indexes
3.8G .bitcoin/signet
41.8M .bitcoin/wallets
97.6G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.5G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 834.2G 76.2G 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
929277
$ BH=$(bitcoin-cli getblockhash 929277); echo $BH
00000000000000000001dd0e227b8b4fb6d1d8966c46f46e5e66a4f69d4fdd59
$ bitcoin-cli getblockheader 00000000000000000001dd0e227b8b4fb6d1d8966c46f46e5e66a4f69d4fdd59
{
"hash": "00000000000000000001dd0e227b8b4fb6d1d8966c46f46e5e66a4f69d4fdd59",
"confirmations": 1,
"height": 929277,
"version": 537198592,
"versionHex": "20050000",
"merkleroot": "8ceddde8e6b5047b866736615ddd939eab434b2782f8ee80f7998bff545a9f75",
"time": 1766580976,
"mediantime": 1766577649,
"nonce": 2916331136,
"bits": "1701e63a",
"target": "00000000000000000001e63a0000000000000000000000000000000000000000",
"difficulty": 148195306640204.7,
"chainwork": "000000000000000000000000000000000000000100c8ced5d9302448cd519e3a",
"nTx": 3878,
"previousblockhash": "0000000000000000000124a5752f99c11f17ef3ae668aab7307df5e1e403116b"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 dd.e 227b 8b4f
b6d1 d896 6c46 f46e
5e66 a4f6 9d4f dd59
$ : 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
929277 sf: ...1 dd.e dd59
$ : 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 .
929277 sk: dd59 a4
$ : 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 .
929277 ak: 38d2 a4
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 28356,
"bytes": 23660230,
"usage": 127586624,
"total_fee": 0.02549059,
"maxmempool": 300000000,
"mempoolminfee": 0.00000001,
"minrelaytxfee": 0.00000001,
"incrementalrelayfee": 0.00000001,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
107
## Current epoch estimation is -0.41%
## 1917 of 2016, i.e. 95%, 99 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
1.056134881096942e+21
$ bitcoin-cli getnetworkhashps 2016 927359
1.060568478882824e+21
$ bitcoin-cli getnetworkhashps 2016 925343
1.068462185929668e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 929277,
"bestblock": "00000000000000000001dd0e227b8b4fb6d1d8966c46f46e5e66a4f69d4fdd59",
"txouts": 164528395,
"bogosize": 12896459098,
"muhash": "600a1a7a515abfaa0b0540e3fa84f78e83a80f587ba42df742fe5f9177312828",
"total_amount": 19966263.66027720,
"total_unspendable_amount": 230.08972280,
"block_info": {
"prevout_spent": 3798.38590745,
"coinbase": 3.14695449,
"new_outputs_ex_coinbase": 3798.36395295,
"unspendable": 0.00000001,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000001,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 929277
{
"avgfee": 566,
"avgfeerate": 2,
"avgtxsize": 404,
"blockhash": "00000000000000000001dd0e227b8b4fb6d1d8966c46f46e5e66a4f69d4fdd59",
"feerate_percentiles": [
0,
1,
1,
2,
3
],
"height": 929277,
"ins": 7498,
"maxfee": 58434,
"maxfeerate": 150,
"maxtxsize": 74042,
"medianfee": 184,
"mediantime": 1766577649,
"mediantxsize": 222,
"minfee": 17,
"minfeerate": 0,
"mintxsize": 139,
"outs": 10663,
"subsidy": 312500000,
"swtotal_size": 1425732,
"swtotal_weight": 3421506,
"swtxs": 3648,
"time": 1766580976,
"total_out": 379836395296,
"total_size": 1568330,
"total_weight": 3991898,
"totalfee": 2195449,
"txs": 3878,
"utxo_increase": 3165,
"utxo_size_inc": 234602,
"utxo_increase_actual": 1718,
"utxo_size_inc_actual": 128836
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 5070478016,
"totalbytessent": 13147589163,
"timemillis": 1766580992788,
"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 32 2 34
out 14 0 14 2 4
total 46 2 48
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 63074,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 63074
}
}
$ halving.sh 929277
=====================================
Bitcoin Block Halving prediction
=====================================
bc=929277
gbt=1231006505
bbt=1766580976
This is average time to mine a block
(1766580976-1231006505)/929277
bts=576.3339614195106308338301
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Wed Mar 8 19:49:00 UTC 2028
-------------------------------------
Next palindrome will be 929929
predicted to happen at this time:
Sun Dec 28 21:19:05 UTC 2025
-------------------------------------
Current mining epoch number is 460.
The next fortnight happens in block
929376 and probably around this time:
Thu Dec 25 04:47:13 UTC 2025
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
21 "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
908b307472aca7ff
4af2d6968a42241b8493e24311faad0f3a7c159f1b9a4505bb8853c21612fc80
3fcdb4b8d262435c
b0d8f92b13737e0641252df41cb8de47f82a02e0e13ffb1be3baec8e7f37c220
616278b8ad5ec240
a28c0e3e41b9c5115fb89e253b39f42be49e3133885718007a869533fb9d7a67
daed18277597092e
1f84c9704b0635d261f06c30b03b86a429e2b0bac7b4c64956a9f70278961c87
e31aad9d7dc5ad05
29fbb8086adce67b2988f0bfec880681ed9d9ca180fdcedfe3ff239cefd4f492
260f1962d13d60a8
b795089a4a870daa2ca7f494b565f1b09d75d1973b28649f69e3a061f268ebd1
0751ba0c7180a2e9
06496735f3dd622c45929c560a4143c3b9cb0f77d58df39dcbbe551cd9aeab2e
cdb37037ac13e20a
3b5c5159a3cdc1d2dcfd462426354f24dc45a8245a6a5ad5eb0c317c2668e8ff
$ niceblack.sh $BH $BC
##### ##### #####
# # # # # #
# # # # #
###### ##### ######
# # #
# # # # #
##### ####### #####
##### ####### #######
# # # # # #
# # #
##### # #
# # #
####### # #
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 dd.e 227b 8b4f 1f |
| 2. b6d1 d896 6c46 f46e 2f |
| 3. 5e66 a4f6 9d4f dd59 3f |
'=== ==== ==== ==== ==== ==='
ak: 38d2 a4
...............| ||.|||.|....|||.