# on receiving block 949618 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-16T06:44:24Z
# as written in the block header
2026-05-16T06:44:08Z
$ uptime # since last reboot
06:44:24 up 57 days, 21:37, 0 users, load average: 2.20, 2.90, 2.77
$ battery.sh
157%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1513696 kB
$ du -h -d1 .bitcoin/
12.2G .bitcoin/indexes
4.4G .bitcoin/signet
2.6M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.1G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 434.4G 476.0G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.0.0rc4 bitcoind
Copyright (C) 2009-2026 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
949618
$ BH=$(bitcoin-cli getblockhash 949618); echo $BH
00000000000000000000322259a1b5c3cfd84aca2fde2142774efbbf5f1620ca
$ bitcoin-cli getblockheader 00000000000000000000322259a1b5c3cfd84aca2fde2142774efbbf5f1620ca
{
"hash": "00000000000000000000322259a1b5c3cfd84aca2fde2142774efbbf5f1620ca",
"confirmations": 1,
"height": 949618,
"version": 556720128,
"versionHex": "212ee000",
"merkleroot": "4d3039e5d2264780234f74c5b19860d0900bd6461f485474e2a6071c716a7c1a",
"time": 1778913848,
"mediantime": 1778912434,
"nonce": 846240371,
"bits": "17020f79",
"target": "000000000000000000020f790000000000000000000000000000000000000000",
"difficulty": 136607070854775.1,
"chainwork": "0000000000000000000000000000000000000001281a86866a6ad2b58fff4005",
"nTx": 6956,
"previousblockhash": "0000000000000000000093fd29f7a751029f257e7ce651075443c3310c7561eb"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
.... 3222 59a1 b5c3
cfd8 4aca 2fde 2142
774e fbbf 5f16 2.ca
$ : 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
949618 sf: 2.ca
$ : 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 .
949618 sk: 2.ca a5
$ : 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 .
949618 ak: a6e3 a5
$ : Following is the jointkode
949618 jk: 20ca a6e3 a5
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 121085,
"bytes": 44024267,
"usage": 269079488,
"total_fee": 0.09438135,
"maxmempool": 300000000,
"mempoolminfee": 0.00000141,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
214
## Current epoch estimation is +0.59%
## 82 of 2016, i.e. 4%, 1934 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.829448425402668e+20
$ bitcoin-cli getnetworkhashps 2016 949535
9.770940180508523e+20
$ bitcoin-cli getnetworkhashps 2016 947519
9.480332550563884e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 949618,
"bestblock": "00000000000000000000322259a1b5c3cfd84aca2fde2142774efbbf5f1620ca",
"txouts": 165289479,
"bogosize": 12950216311,
"muhash": "7a90a1a5dd26cce4e15d78a19ab9dec6bef6da6b01cf16d7986749e3f1a8a4f9",
"total_amount": 20029829.27797222,
"total_unspendable_amount": 230.09702778,
"block_info": {
"prevout_spent": 117.40837506,
"coinbase": 3.13003292,
"new_outputs_ex_coinbase": 117.40334214,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 949618
{
"avgfee": 72,
"avgfeerate": 0,
"avgtxsize": 228,
"blockhash": "00000000000000000000322259a1b5c3cfd84aca2fde2142774efbbf5f1620ca",
"feerate_percentiles": [
0,
0,
0,
0,
0
],
"height": 949618,
"ins": 7210,
"maxfee": 11149,
"maxfeerate": 20,
"maxtxsize": 22370,
"medianfee": 54,
"mediantime": 1778912434,
"mediantxsize": 221,
"minfee": 33,
"minfeerate": 0,
"mintxsize": 150,
"outs": 13979,
"subsidy": 312500000,
"swtotal_size": 1580598,
"swtotal_weight": 3968334,
"swtxs": 6933,
"time": 1778913848,
"total_out": 11740334214,
"total_size": 1586487,
"total_weight": 3991890,
"totalfee": 503292,
"txs": 6956,
"utxo_increase": 6769,
"utxo_size_inc": 485816,
"utxo_increase_actual": 26,
"utxo_size_inc_actual": 6254
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 4819841384,
"totalbytessent": 10720887003,
"timemillis": 1778913864554,
"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 v31.0.0rc4 - server 70016/Satoshi:31.0.0/
ipv4 npr total block
in 14 1 15
out 10 0 10 2
total 24 1 25
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 68773,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 68773
}
}
$ halving.sh 949618
=====================================
Bitcoin Block Halving prediction
=====================================
bc=949618
gbt=1231006505
bbt=1778913848
This is average time to mine a block
(1778913848-1231006505)/949618
bts=576.9759693097968764314951
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Thu Mar 16 15:04:09 UTC 2028
-------------------------------------
Next palindrome will be 949949
predicted to happen at this time:
Mon May 18 11:47:07 UTC 2026
-------------------------------------
Current mining epoch number is 471.
The next fortnight happens in block
951552 and probably around this time:
Fri May 29 04:41:59 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
9 "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
84608400b0618562
7af1f5e36df042df722c4e6516461e5e0547d35e006641145b12d3f789d981f4
435b5a508342952a
63244f2e139188f1bd2d8c83ddf1fa460f402e0d2e8d566ef64d365197831d07
d3b8cc8bc831e058
8b854da52402f2d49f415d475c3afdb17b7202f0ab893f1067019635444c44f4
cb16378c56ed11ad
818370af339733257bade9c54550ca89b82abdebd34e07ee33d8d8787a0a05e3
43bc3a74c60b8cb8
11fa900f5e97c034a2da338e8d41790660577e04492b91a16c81c9a3486800f4
68c0558a378e227b
789cf5a94a05c869839368aa65f22065d49d66696b7b330b035a877eac917561
fcac17caac832b0e
40a6e70da671bbb17bb71c7b4f6cd323e19573b4c97410d58c181a69cb9a0506
a1f1a574eb6169e3
7e588377ba65eb3534187e5e35b7146933c1d7d636ba655df8ba97abad0aca29
0ca70ca0d783ff2e
cba90ed54d0c90ede10ca62c04ff69a918e6b81473ecd4a14491cd2652fa0497
$ niceblack.sh $BH $BC
___ _ _ ___ __ __ ___
/ _ \| || | / _ \ / //_ |/ _ \
| (_) | || || (_) | / /_ | | (_) |
\__, |__ _\__, | | '_ \| |> _ <
/ / | | / / | (_) | | (_) |
/_/ |_| /_/ \___/|_|\___/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. .... 3222 59a1 b5c3 1f |
| 2. cfd8 4aca 2fde 2142 2f |
| 3. 774e fbbf 5f16 2.ca 3f |
'=== ==== ==== ==== ==== ==='
jk: 2.ca a6e3 a5