# on receiving block 949602 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-16T04:19:31Z
# as written in the block header
2026-05-16T04:19:06Z
$ uptime # since last reboot
04:19:31 up 57 days, 19:12, 0 users, load average: 1.84, 2.11, 2.24
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1486020 kB
$ du -h -d1 .bitcoin/
12.2G .bitcoin/indexes
4.4G .bitcoin/signet
2.6M .bitcoin/wallets
97.8G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.2G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 434.5G 475.9G 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
949602
$ BH=$(bitcoin-cli getblockhash 949602); echo $BH
00000000000000000001ebcc0cdf91c4b66f607f576eb4e96949514e8a757123
$ bitcoin-cli getblockheader 00000000000000000001ebcc0cdf91c4b66f607f576eb4e96949514e8a757123
{
"hash": "00000000000000000001ebcc0cdf91c4b66f607f576eb4e96949514e8a757123",
"confirmations": 1,
"height": 949602,
"version": 791928832,
"versionHex": "2f33e000",
"merkleroot": "5401f84492dc2fe37b134b41ff399f6d5ae6f4d6d32a357209f1de7472193de0",
"time": 1778905146,
"mediantime": 1778901993,
"nonce": 3541543994,
"bits": "17020f79",
"target": "000000000000000000020f790000000000000000000000000000000000000000",
"difficulty": 136607070854775.1,
"chainwork": "00000000000000000000000000000000000000012812c299a794286de75f4995",
"nTx": 4122,
"previousblockhash": "000000000000000000002997dc2393b0e807e4f92738782a79c99d993eaf5461"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 ebcc .cdf 91c4
b66f 6.7f 576e b4e9
6949 514e 8a75 7123
$ : 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
949602 sf: ...1 .cdf 6.7f 7123
$ : 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 .
949602 sk: 7123 94
$ : 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 .
949602 ak: 8.1. 94
$ : Following is the jointkode
949602 jk: 7123 8.1. 94
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 129112,
"bytes": 45099389,
"usage": 277522176,
"total_fee": 0.09877928,
"maxmempool": 300000000,
"mempoolminfee": 0.00000162,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 64,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
219
## Current epoch estimation is +0.2%
## 66 of 2016, i.e. 3%, 1950 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
9.791226847340204e+20
$ bitcoin-cli getnetworkhashps 2016 949535
9.770940180508523e+20
$ bitcoin-cli getnetworkhashps 2016 947519
9.480332550563884e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 949602,
"bestblock": "00000000000000000001ebcc0cdf91c4b66f607f576eb4e96949514e8a757123",
"txouts": 165295444,
"bogosize": 12950606029,
"muhash": "688943c77f6a67e1690cc85b6638b22ac205c3a9d61b40f3de378e2a0da7560b",
"total_amount": 20029779.27797224,
"total_unspendable_amount": 230.09702776,
"block_info": {
"prevout_spent": 26314.43376708,
"coinbase": 3.13955628,
"new_outputs_ex_coinbase": 26314.41921078,
"unspendable": 0.00000002,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000002,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 949602
{
"avgfee": 353,
"avgfeerate": 1,
"avgtxsize": 394,
"blockhash": "00000000000000000001ebcc0cdf91c4b66f607f576eb4e96949514e8a757123",
"feerate_percentiles": [
0,
0,
1,
1,
2
],
"height": 949602,
"ins": 8129,
"maxfee": 67241,
"maxfeerate": 100,
"maxtxsize": 59058,
"medianfee": 91,
"mediantime": 1778901993,
"mediantxsize": 221,
"minfee": 36,
"minfeerate": 0,
"mintxsize": 150,
"outs": 10363,
"subsidy": 312500000,
"swtotal_size": 1535328,
"swtotal_weight": 3642042,
"swtxs": 4023,
"time": 1778905146,
"total_out": 2631441921080,
"total_size": 1623689,
"total_weight": 3995486,
"totalfee": 1455628,
"txs": 4122,
"utxo_increase": 2234,
"utxo_size_inc": 161497,
"utxo_increase_actual": -306,
"utxo_size_inc_actual": -21028
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 4788219237,
"totalbytessent": 10656222822,
"timemillis": 1778905171849,
"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": 68761,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 68761
}
}
$ halving.sh 949602
=====================================
Bitcoin Block Halving prediction
=====================================
bc=949602
gbt=1231006505
bbt=1778905146
This is average time to mine a block
(1778905146-1231006505)/949602
bts=576.9765270328758439052951
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Thu Mar 16 15:13:55 UTC 2028
-------------------------------------
Next palindrome will be 949949
predicted to happen at this time:
Mon May 18 11:55:56 UTC 2026
-------------------------------------
Current mining epoch number is 471.
The next fortnight happens in block
951552 and probably around this time:
Fri May 29 04:50:50 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. ...1 ebcc .cdf 91c4 1f |
| 2. b66f 6.7f 576e b4e9 2f |
| 3. 6949 514e 8a75 7123 3f |
'=== ==== ==== ==== ==== ==='
jk: 7123 8.1. 94