# on receiving block 932117 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-01-13T12:32:07Z
# as written in the block header
2026-01-13T12:31:36Z
$ uptime # since last reboot
12:32:07 up 152 days, 22:22, 0 users, load average: 1.02, 1.49, 1.54
$ battery.sh
42%, Power Supply Online
$ uname -smnr
Linux singer 6.12.40-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1823600 kB
$ du -h -d1 .bitcoin/
1.5G .bitcoin/testnet4
11.9G .bitcoin/indexes
3.9G .bitcoin/signet
41.9M .bitcoin/wallets
97.7G .bitcoin/blocks
18.6M .bitcoin/regtest
10.6G .bitcoin/chainstate
125.9G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 832.5G 78.0G 91% /
$ bitcoind -version
Bitcoin Core daemon version v30.1.0 bitcoind
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
932117
$ BH=$(bitcoin-cli getblockhash 932117); echo $BH
000000000000000000011c42e3a888a37c3f3720c845a68b467a590edd1eef49
$ bitcoin-cli getblockheader 000000000000000000011c42e3a888a37c3f3720c845a68b467a590edd1eef49
{
"hash": "000000000000000000011c42e3a888a37c3f3720c845a68b467a590edd1eef49",
"confirmations": 1,
"height": 932117,
"version": 537436160,
"versionHex": "2008a000",
"merkleroot": "c6ecc01d951fbda78c712a117628b999dc9c7262f2246219401051c6cda0c05f",
"time": 1768307496,
"mediantime": 1768304173,
"nonce": 3493826887,
"bits": "1701ebf2",
"target": "00000000000000000001ebf20000000000000000000000000000000000000000",
"difficulty": 146472570619930.8,
"chainwork": "0000000000000000000000000000000000000001069c162df1876745e6919296",
"nTx": 3152,
"previousblockhash": "00000000000000000001a78db28a5c3e1728c27b2559a90efb63a81a653dceb2"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 1c42 e3a8 88a3
7c3f 372. c845 a68b
467a 59.e dd1e ef49
$ : 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
932117 sf: ...1 372. 59.e ef49
$ : 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 .
932117 sk: ef49 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 .
932117 ak: 7fba 94
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 25668,
"bytes": 41312128,
"usage": 219657648,
"total_fee": 0.06022942,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
145
## Current epoch estimation is -1.9%
## 725 of 2016, i.e. 35%, 1291 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
1.028084719748414e+21
$ bitcoin-cli getnetworkhashps 2016 931391
1.048049552337457e+21
$ bitcoin-cli getnetworkhashps 2016 929375
1.06126766979058e+21
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 932117,
"bestblock": "000000000000000000011c42e3a888a37c3f3720c845a68b467a590edd1eef49",
"txouts": 165446697,
"bogosize": 12961114977,
"muhash": "2146f0da8706486bfce739c056b1bc483e16a768985d55c03bbcceb0be41562e",
"total_amount": 19975138.65822201,
"total_unspendable_amount": 230.09177799,
"block_info": {
"prevout_spent": 6335.83189402,
"coinbase": 3.15625465,
"new_outputs_ex_coinbase": 6335.80063937,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 932117
{
"avgfee": 991,
"avgfeerate": 3,
"avgtxsize": 493,
"blockhash": "000000000000000000011c42e3a888a37c3f3720c845a68b467a590edd1eef49",
"feerate_percentiles": [
1,
1,
2,
3,
5
],
"height": 932117,
"ins": 7664,
"maxfee": 148072,
"maxfeerate": 491,
"maxtxsize": 84874,
"medianfee": 421,
"mediantime": 1768304173,
"mediantxsize": 224,
"minfee": 0,
"minfeerate": 0,
"mintxsize": 150,
"outs": 8385,
"subsidy": 312500000,
"swtotal_size": 1316551,
"swtotal_weight": 3039784,
"swtxs": 2903,
"time": 1768307496,
"total_out": 633580063937,
"total_size": 1554561,
"total_weight": 3991824,
"totalfee": 3125465,
"txs": 3152,
"utxo_increase": 721,
"utxo_size_inc": 54505,
"utxo_increase_actual": 574,
"utxo_size_inc_actual": 39942
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 3991784496,
"totalbytessent": 8952618180,
"timemillis": 1768307528407,
"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 v30.1.0 - server 70016/Satoshi:30.1.0/
ipv4 npr total block libre
in 22 2 24
out 14 0 14 2 4
total 36 2 38
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 64095,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 64095
}
}
$ halving.sh 932117
=====================================
Bitcoin Block Halving prediction
=====================================
bc=932117
gbt=1231006505
bbt=1768307496
This is average time to mine a block
(1768307496-1231006505)/932117
bts=576.4302277179498732993033
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Thu Mar 9 23:53:40 UTC 2028
-------------------------------------
Next palindrome will be 932239
predicted to happen at this time:
Wed Jan 14 08:03:40 UTC 2026
-------------------------------------
Current mining epoch number is 462.
The next fortnight happens in block
933408 and probably around this time:
Thu Jan 22 03:14:27 UTC 2026
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
17 "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
6d2e13426c4517fc
21fc06918fb7e45c34fedc8832a19e9be03f390d616fb2fe8cf4095557344b18
556084eb30646ceb
cad5c2f3b1bc66475ba7bbd78ff08bff7e5ef91de1471482c40c9376c767d1df
f6581c7d78ba6632
15391940f8c4105123e0f721794b052c158755d21fc2d58c16b733f04d220c2c
e763831ccaf47cc2
d40dcaf85bfbdab208f5285253a2edfdb67b19521fea5c040799eab9f0ceef53
1a4b7ab242d95458
fe2afd765791fcc86f447d998de7a530a34a0f61799d38424dfc94d1335cd8cd
738807dc5e875286
f9b06baf26cb6ba16d17c9dc24c94df2f05bcfc746f5ee71f2fc059d1288d0c0
978c78a9f2e05914
d96ef4ad34e96ad6fc687a9948d153c8bb2bbbb2351eea37ff2a6d02280b535f
c018dcad0d639387
efb9afd1af921f07817091f8bad06485ecac0a4ed0b00eb7c8d6c1460fd8972c
491a718ed92e5320
2b76a634f43a4d3b8efac8b80713b2cb96e78b2fdc9d7f65a841ec36d3e92537
e7bb3d482e5189fd
633123407af8d851a61b6478cf85717a5bf833531adfb911664daecad43eae30
7b9a1ca6d304d08a
7dae20f750ff5beb92a4112926d4734c4976fcf1eefb1355502c30a96c3e2182
2f483f8248b737c5
afca4a69343b969ea9616d36a6e84657ba5ea156b89afb52b3b34ec0ac8fbb2a
5edd4df6e5dd001e
7e9a9185b2e9991f2400a929449926168e9c6b00d6775adc351bdcaf43b7652a
47a58847f2babe07
fc0703cfac09f8c82706dc88117acc07135922b271c27a87a9f9efe7142fb4ba
7ac9babbce519b3c
2943d9d1fb347d7a763d454602ae6452e0515d1098e96c262e3b582a1ceb3589
6f8e2e1e43ec64b8
d1bb84ddf6d6cadfeca018aae457329cd5fe129fd0f4ebb9e82768e1b71b59dd
1a7dd5c314f5a7ba
694fa642e4147d2e71580dddff8785009efeb000a52e688ba81d1f3106bba98d
$ niceblack.sh $BH $BC
| | |
_ \ | _ \ _| | /
_.__/_|\___/\__|_\_\
_ \__ /_ )_ |_ |__ /
\_ / _ \ / | | /
_/ ___/___| _| _| _/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 1c42 e3a8 88a3 1f |
| 2. 7c3f 372. c845 a68b 2f |
| 3. 467a 59.e dd1e ef49 3f |
'=== ==== ==== ==== ==== ==='
ak: 7fba 94
...............| ...|||...|....|.