# on receiving block 902382 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-06-23T04:36:26Z
# as written in the block header
2025-06-23T04:36:00Z
$ uptime # since last reboot
04:36:26 up 140 days, 16:16, 0 users, load average: 4.32, 2.58, 2.01
$ battery.sh
127%, Power Supply Online
$ uname -smnr
Linux singer 6.6.37-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2058684 kB
$ du -h -d1 .bitcoin/
11.3G .bitcoin/indexes
2.6G .bitcoin/signet
3.4M .bitcoin/wallets
97.7G .bitcoin/blocks
10.9G .bitcoin/chainstate
122.4G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 837.2G 73.2G 92% /
$ bitcoind -version
Bitcoin Core daemon version v29.99.0-5f9c5597106e
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
902382
$ BH=$(bitcoin-cli getblockhash 902382); echo $BH
00000000000000000001256d034368021f2d1d2f3d992a42783468fb315d4bcd
$ bitcoin-cli getblockheader 00000000000000000001256d034368021f2d1d2f3d992a42783468fb315d4bcd
{
"hash": "00000000000000000001256d034368021f2d1d2f3d992a42783468fb315d4bcd",
"confirmations": 1,
"height": 902382,
"version": 805306368,
"versionHex": "30000000",
"merkleroot": "b09d8459f99501ecbccf6024423ea574a24738cdc1707ddcd8d0570778e06504",
"time": 1750653360,
"mediantime": 1750649672,
"nonce": 1675607978,
"bits": "17023a04",
"target": "000000000000000000023a040000000000000000000000000000000000000000",
"difficulty": 126411437451912.2,
"chainwork": "0000000000000000000000000000000000000000ccec08779442d793d0c59a54",
"nTx": 2317,
"previousblockhash": "00000000000000000000e3f633e7a9212a010276b429a844521e241bad02d5cf"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
...1 256d .343 68.2
1f2d 1d2f 3d99 2a42
7834 68fb 315d 4bcd
$ : 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
902382 sf: ...1 .343 68.2 4bcd
$ : 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 .
902382 sk: 4bcd 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 .
902382 ak: 31ab 94
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 66361,
"bytes": 14375364,
"usage": 107909600,
"total_fee": 0.03684203,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true
}
$ gmm.sh
255
## Current epoch estimation is -3.16%
## 1230 of 2016, i.e. 61%, 786 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
8.760579500097461e+20
$ bitcoin-cli getnetworkhashps 2016 901151
9.04687914735697e+20
$ bitcoin-cli getnetworkhashps 2016 899135
9.088485232729964e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 902382,
"bestblock": "00000000000000000001256d034368021f2d1d2f3d992a42783468fb315d4bcd",
"txouts": 168232455,
"bogosize": 13178489241,
"muhash": "d2a215aa0cd5223bb60e5df5650377d540ecfc5d67e506d9fec0b8d89c8eedae",
"total_amount": 19882225.83237158,
"total_unspendable_amount": 221.04262842,
"block_info": {
"prevout_spent": 3334.76651816,
"coinbase": 3.16542748,
"new_outputs_ex_coinbase": 3334.72609068,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 902382
{
"avgfee": 1745,
"avgfeerate": 4,
"avgtxsize": 641,
"blockhash": "00000000000000000001256d034368021f2d1d2f3d992a42783468fb315d4bcd",
"feerate_percentiles": [
1,
2,
2,
3,
5
],
"height": 902382,
"ins": 7908,
"maxfee": 148088,
"maxfeerate": 479,
"maxtxsize": 73807,
"medianfee": 432,
"mediantime": 1750649672,
"mediantxsize": 248,
"minfee": 100,
"minfeerate": 1,
"mintxsize": 150,
"outs": 6848,
"subsidy": 312500000,
"swtotal_size": 1143846,
"swtotal_weight": 2626293,
"swtxs": 2173,
"time": 1750653360,
"total_out": 333472609068,
"total_size": 1485260,
"total_weight": 3991949,
"totalfee": 4042748,
"txs": 2317,
"utxo_increase": -1060,
"utxo_size_inc": -78316,
"utxo_increase_actual": -1315,
"utxo_size_inc_actual": -96031
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 774444430,
"totalbytessent": 1280180595,
"timemillis": 1750653387627,
"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 v29.99.0-5f9c5597106e - server 70016/Satoshi:29.99.0/
ipv4 npr total block libre
in 27 2 29
out 14 0 14 2 4
total 41 2 43
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 64543,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 64543
}
}
$ halving.sh 902382
=====================================
Bitcoin Block Halving prediction
=====================================
bc=902382
gbt=1231006505
bbt=1750653360
This is average time to mine a block
(1750653360-1231006505)/902382
bts=575.8606434296745395247915
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Fri Mar 3 01:45:56 UTC 2028
-------------------------------------
Next palindrome will be 903309
predicted to happen at this time:
Sun Jun 29 08:53:02 UTC 2025
-------------------------------------
Current mining epoch number is 447.
The next fortnight happens in block
903168 and probably around this time:
Sat Jun 28 10:19:46 UTC 2025
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
20 "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
429c6e356e5637ac
6a9481eb84fb394a493f5eb12417689d95074f32c34ff166273cd5b10bf91eae
2e87a04adfb4bcc9
e1d6fcefcc176e992c4742d61c12ef5de3a70a758de95db84a350e3a8efd0e07
e24beefb536b6042
f0f83a6ec10480da1cfc04c43614bf453b60b764f2c5f1c9b96d3af70587ebfe
96a5c538c60619ef
fe0cfa6d6510428111114e906a3ddd1c7b84c08382afe5d15597d4f22c5a573b
be0dcf1bf3fb09a6
3205e6176641fd4077dccc0ddab4dac59119215e787b8ce68cc0832f20103c50
37beebdbc4126519
50358299d65e827ca64237a4922e422ba76deb2b5cc70df987feb90d406b3298
716217be0b59d813
9c73bc848b96059f2e6b5684d4d581b5c854efe5b06e3607c51b05143a285196
2f483f8248b737c5
1c9e94da9aee6cc0b0e3e165f170b82663539889a26186778458934125ea1b2d
6d3ccba567be6d52
ae8770e69e6c825400ce92535ff9bd4e0d4a22dc177da7beca2cb76304069d2b
d9e15c496b09d73b
82e1753afb5ec558931b35ebb46c83eec3a021d466e850110d62201bb88c9a87
0a32c6cc34b48b02
e1640e35f6a259db728ed0fd42eaf98750b5d794ee3cc30a30652455644bbdb1
5dcf7605098419f5
c835a1b6e2b6569af05ce12b981a25981511caaf21a987a201c2e662b228650a
952c29ffb60124fb
f7fa3081095da7ad8b590f75b782822c27e4a3e79f1f07d0d743666b79607879
e1614a5bc8c5c673
bd3976a31aefc718d04c024c5449a6c645085110596d54fdfaee2f48a9ac1295
f0ef34b15c3cc355
c36ec6e6fd10ce7ff5d9109434abf95177d802c5191efbf333ebecb81d74595b
f48f5f43ee150559
cf8bf7c0526eeaddc87466651d6aac7d6687bdaf8fcdc5767b7e6125cef3b8cf
d809d58b3fd95718
fcee1521d10ed3a79e02dcb27284844ec029aa6e45cbb62e32f23b8c576d8c5e
a3be9852059393f4
3f387c18e22e2d72d43dd9dbf3f04db08353993ba222c118e458d3ef3f6cfe08
4cd2bfd818756168
219155800ddb70e18e2c1941d116752e432e0236bd2ea78036db5e692c20ad41
92eef7877985cf1d
996b13391546b78679b71ec39767cf53c3e7f480e8f7396f9667eda32382f1bd
$ niceblack.sh $BH $BC
____ ____ ___
/ __ \/ __ \__ \
/ /_/ / / / /_/ /
\__, / /_/ / __/
/____/\____/____/
_____ ____ ___
|__ /( __ )__ \
/_ __ |_/ /
___/ / /_/ / __/
/____/\____/____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... .... .... .f |
| 1. ...1 256d .343 68.2 1f |
| 2. 1f2d 1d2f 3d99 2a42 2f |
| 3. 7834 68fb 315d 4bcd 3f |
'=== ==== ==== ==== ==== ==='
ak: 31ab 94