# on receiving block 304371 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-14T20:04:23Z
# as written in the block header
2026-05-14T20:04:07Z
$ uptime # since last reboot
20:04:23 up 56 days, 10:57, 0 users, load average: 0.92, 1.40, 1.70
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1630840 kB
$ du -h -d1 .bitcoin/signet
296M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
572M .bitcoin/signet/blocks
3.7G .bitcoin/signet/chainstate
4.6G .bitcoin/signet
$ df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 912G 435G 476G 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 -signet getblockcount); echo $BC
304371
$ BH=$(bitcoin-cli -signet getblockhash 304371); echo $BH
000000142ab03a6ad39d8882ea0fe2f7a4b18f1ebcafa4987508db0dea2d68ce
$ bitcoin-cli -signet getblockheader 000000142ab03a6ad39d8882ea0fe2f7a4b18f1ebcafa4987508db0dea2d68ce
{
"hash": "000000142ab03a6ad39d8882ea0fe2f7a4b18f1ebcafa4987508db0dea2d68ce",
"confirmations": 1,
"height": 304371,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "ce343995b016d48d110bebd8bbbf61d46dd37b4e1387aa01789fd2df6a91beb3",
"time": 1778789047,
"mediantime": 1778782478,
"nonce": 126592890,
"bits": "1d14e3c0",
"target": "00000014e3c00000000000000000000000000000000000000000000000000000",
"difficulty": 0.04786986933757188,
"chainwork": "00000000000000000000000000000000000000000000000000000d5ad86aba10",
"nTx": 134,
"previousblockhash": "00000014baaff0a116b4a168156e6094d84353c810332c5cab498cb9a6a5bf36"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ..14 2ab. 3a6a
d39d 8882 ea.f e2f7
a4b1 8f1e bcaf a498
75.8 db.d ea2d 68ce
$ : 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
304371 sf: ..14 2ab. ea.f 75.8 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 .
304371 sk: 68ce a1
$ : 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 .
304371 ak: 5c57 a1
$ : Following is the jointkode
304371 jk: 68ce 5c57 a1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 7,
"bytes": 1083,
"usage": 29608,
"total_fee": 0.00002234,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 1,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 25,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
246
## Current epoch estimation is -0.71%
## 1971 of 2016, i.e. 97%, 45 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
340035.4743612245
$ bitcoin-cli -signet getnetworkhashps 2016 302399
342474.190435588
$ bitcoin-cli -signet getnetworkhashps 2016 300383
346462.8663674932
$ bitcoin-cli -signet getblockstats 304371
{
"avgfee": 62841,
"avgfeerate": 168,
"avgtxsize": 466,
"blockhash": "000000142ab03a6ad39d8882ea0fe2f7a4b18f1ebcafa4987508db0dea2d68ce",
"feerate_percentiles": [
1,
1,
1,
1,
1
],
"height": 304371,
"ins": 178,
"maxfee": 8281994,
"maxfeerate": 50042,
"maxtxsize": 25743,
"medianfee": 154,
"mediantime": 1778782478,
"mediantxsize": 205,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 142,
"outs": 1003,
"subsidy": 2500000000,
"swtotal_size": 61901,
"swtotal_weight": 198107,
"swtxs": 132,
"time": 1778789047,
"total_out": 3247677044889,
"total_size": 62043,
"total_weight": 198675,
"totalfee": 8357863,
"txs": 134,
"utxo_increase": 825,
"utxo_size_inc": 63880,
"utxo_increase_actual": 786,
"utxo_size_inc_actual": 59667
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 270841592,
"totalbytessent": 7120014520,
"timemillis": 1778789063585,
"uploadtarget": {
"timeframe": 86400,
"target": 0,
"target_reached": false,
"serve_historical_blocks": true,
"bytes_left_in_cycle": 0,
"time_left_in_cycle": 0
}
}
$ bitcoin-cli -signet -netinfo
Bitcoin Core client v31.0.0rc4 signet - server 70016/Satoshi:31.0.0/
ipv4 total block manual
in 5 5
out 11 11 2 1
total 16 16
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 1037,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 1037
}
}
### v2_peerinfo are in v2_peerinfo-signet.txt
$ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c
10 "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
82b27e77426c9cf3
be10f9fe00a0a33fad40d9d4824cb308bb9dfd771b14e13c9ed63291ded4e054
58cf5f4588d41478
6a708bd4b333800eb2e587edc870b68c062a06837d5337bd56e26d4c40ed948e
a5ca79adcadc71df
905a408f1f0d2ee01f051e42b641284f256b9c5204d89bd67aa0fd93a04b68da
531d9e5471001a55
b5ed87458425678d54d732ce65410848832fe4ca8b17eb6e892c85a3ff7ffd77
7985d4e63c59dc4d
d79da79712602bab1275862a8d76e1aaae22f490ce2c9edd88b6e306e74f8b7d
f2734dfe2ce64686
c368a2861d33949f2178382a7478b85e30e9d725c9d6c0b222d88cb6ee3801bc
57faa3297ecbe82d
14dbd53ae5d5f95d288a3b4b792ab9b381b82b8298d7721e10dad47495b3ab99
9550b66c9c9a91e5
f12fbed2deac06918e376b9b633441ef5aef2403c3a048bd595bdfa9e82f929d
79fc388c2941734e
39fb3510fd10f9c81142da3523617f1e25c5bcba650d24d032697feb5e8b5973
4b4cd050a957bd80
90f00cc786fd5e680b30c952033cb7a6bb39093892e6e2aeeffa41ded5a27439
$ niceblack.sh $BH $BC
##### ### #
# # # # # #
# # # # #
##### # # # #
# # # #######
# # # # #
##### ### #
##### ####### #
# # # # ##
# # # #
##### # #
# # #
# # # #
##### # #####
,----- .123 4567 89ab cdef -----,
| |
| .. .... ..14 2ab. 3a6a .f |
| 1. d39d 8882 ea.f e2f7 1f |
| 2. a4b1 8f1e bcaf a498 2f |
| 3. 75.8 db.d ea2d 68ce 3f |
'=== ==== ==== ==== ==== ==='
jk: 68ce 5c57 a1