# on receiving block 926098 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-12-02T04:47:02Z
# as written in the block header
2025-12-02T04:46:41Z
$ uptime # since last reboot
04:47:02 up 110 days, 14:37, 0 users, load average: 1.73, 2.32, 2.35
$ battery.sh
49%, Power Supply Online
$ uname -smnr
Linux singer 6.12.40-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1622928 kB
$ du -h -d1 .bitcoin/
1.5G .bitcoin/testnet4
11.8G .bitcoin/indexes
3.7G .bitcoin/signet
41.8M .bitcoin/wallets
97.8G .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 833.9G 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
926098
$ BH=$(bitcoin-cli getblockhash 926098); echo $BH
00000000000000000001c24726e47ef70a1e1969a4e0209af30e9b14747cf6e0
$ bitcoin-cli getblockheader 00000000000000000001c24726e47ef70a1e1969a4e0209af30e9b14747cf6e0
{
"hash": "00000000000000000001c24726e47ef70a1e1969a4e0209af30e9b14747cf6e0",
"confirmations": 1,
"height": 926098,
"version": 659234816,
"versionHex": "274b2000",
"merkleroot": "be6037349048d80861541a45d94f7280ee626a6d4ea0585d3c146c41a72b5dcd",
"time": 1764650801,
"mediantime": 1764646198,
"nonce": 1432127597,
"bits": "1701e2a0",
"target": "00000000000000000001e2a00000000000000000000000000000000000000000",
"difficulty": 149301205959699.9,
"chainwork": "0000000000000000000000000000000000000000fa3a1948ad47c9ad92ecaf34",
"nTx": 3052,
"previousblockhash": "00000000000000000000d91e1761493492b2e55952a792b66b56af56ae69983a"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 c247 26e4 7ef7
.a1e 1969 a4e. 2.9a
f3.e 9b14 747c f6e.
$ : 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
926098 sf: ...1 .a1e a4e. 2.9a 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 .
926098 sk: f6e. 64
$ : 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 .
926098 ak: e7de 64
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 40687,
"bytes": 23697068,
"usage": 135530944,
"total_fee": 0.02821950,
"maxmempool": 300000000,
"mempoolminfee": 0.00000001,
"minrelaytxfee": 0.00000001,
"incrementalrelayfee": 0.00000001,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
118
## Current epoch estimation is -0.16%
## 754 of 2016, i.e. 37%, 1262 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
1.066669760051044e+21
$ bitcoin-cli getnetworkhashps 2016 925343
1.068462185929668e+21
$ bitcoin-cli getnetworkhashps 2016 923327
1.089721987248796e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 926098,
"bestblock": "00000000000000000001c24726e47ef70a1e1969a4e0209af30e9b14747cf6e0",
"txouts": 165196276,
"bogosize": 12944105596,
"muhash": "3e344f9727524f751dadc691a9231fe0c7a2368a8a7d2fbffa608fb35942a6eb",
"total_amount": 19956329.28607415,
"total_unspendable_amount": 230.08892585,
"block_info": {
"prevout_spent": 13542.14187226,
"coinbase": 3.16233304,
"new_outputs_ex_coinbase": 13542.10453913,
"unspendable": 0.00000009,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000009,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 926098
{
"avgfee": 1223,
"avgfeerate": 3,
"avgtxsize": 499,
"blockhash": "00000000000000000001c24726e47ef70a1e1969a4e0209af30e9b14747cf6e0",
"feerate_percentiles": [
1,
2,
2,
3,
5
],
"height": 926098,
"ins": 7615,
"maxfee": 90000,
"maxfeerate": 501,
"maxtxsize": 36887,
"medianfee": 504,
"mediantime": 1764646198,
"mediantxsize": 225,
"minfee": 110,
"minfeerate": 1,
"mintxsize": 139,
"outs": 8509,
"subsidy": 312500000,
"swtotal_size": 1277555,
"swtotal_weight": 3003230,
"swtxs": 2806,
"time": 1764650801,
"total_out": 1354210453922,
"total_size": 1524713,
"total_weight": 3991862,
"totalfee": 3733304,
"txs": 3052,
"utxo_increase": 894,
"utxo_size_inc": 70275,
"utxo_increase_actual": 720,
"utxo_size_inc_actual": 53031
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 14141759357,
"totalbytessent": 35098567832,
"timemillis": 1764650822999,
"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 21 2 23
out 14 0 14 2 4
total 35 2 37
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 64570,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 64570
}
}
$ halving.sh 926098
=====================================
Bitcoin Block Halving prediction
=====================================
bc=926098
gbt=1231006505
bbt=1764650801
This is average time to mine a block
(1764650801-1231006505)/926098
bts=576.2281311177314736329485
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Tue Mar 7 12:56:58 UTC 2028
-------------------------------------
Next palindrome will be 926629
predicted to happen at this time:
Fri Dec 5 17:46:18 UTC 2025
-------------------------------------
Current mining epoch number is 459.
The next fortnight happens in block
927360 and probably around this time:
Wed Dec 10 14:46:40 UTC 2025
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
16 "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
7984147af4e27f79
c46e320070b3c51fd5a3f014dd60c52bbc470c27f81cf8ffc61447cba3f01d38
3774e686ab887083
8fc8686620c9f6b42b6e9b61ebb378a013bacefb3e3d8248ea6b42be86bbf4ca
1bfbb4ccd81e4460
f3efa60ec568d52d850178e33f89890c040381abe7db0f08b278c6a51acc59f4
8bbf9beb75eba145
fd6bd1774730db2c24e7c6803b69f8b469a4f6b678d4fcbf0c00da8c6b07a023
d177d810726acbf7
3f798711867fc063cd74445b9cd78ee352e54850075ba03e77e94d581fcc12f9
12e2ed8cd22fddba
e52fb284513acb428e5990359b13a554b7c98c1f8b86fff3f026b9b28c5cee7c
859c65c7a20a12e7
77549f5adefc6be39446a2491ebafc9077892f21428c8587268c749ef0eb2414
2ae80ddaf132bb8c
0d0400d7bc3837ad6987e469a454017a4e788dcc3ae1245d48c1ecd8832de01e
b79d561f30ceb426
5f4863fb796643e893d0b5ad60d8014cf7cc772680ed715f2a09e9108f829597
952c29ffb60124fb
898474db06653ca2a49f4d49692e6ce9344f562f487d9e85ad9d73cd6f7d8776
2b758280cec18458
b2dcaaf6ee678f15bbae54f67f1a692c548fe65bf7f10077995d055230719baa
b84b0a562bc7fbfd
c811db9124f6d2be6eb95997cdef0d23a9fe38397f03b4d7af5e24278c2f9b4a
93f43076b3bb3924
f655af538dc62dd22655e4a3cd2463a725d12a1c82899dca49843c72cdf84569
32ad434a8a171832
da1c03aed868a7ca6e5ad5018be5a2ba318f412bda6be08c4acb915da36f1d9b
6b589b5e6f66d559
80d0f189a18bca64349513282ff3368755a2ce39bcfcdf1a851e77b6782554d1
4b248962e0f47094
cd45e2ec1d5c2dd364768f6822ea4f815328ffb6be9fa3f507dc33f45fd019ce
$ niceblack.sh $BH $BC
__ __ __
/ / / /__ ____/ /__
/ _ \/ / _ \/ __/ '_/
/_.__/_/\___/\__/_/\_\
___ ___ ____ ___ ___ ___
/ _ \|_ |/ __// _ \/ _ \( _ )
\_, / __// _ \/ // /\_, / _ |
/___/____/\___/\___//___/\___/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 c247 26e4 7ef7 1f |
| 2. .a1e 1969 a4e. 2.9a 2f |
| 3. f3.e 9b14 747c f6e. 3f |
'=== ==== ==== ==== ==== ==='
ak: e7de 64