# on receiving block 317176 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-08-11T03:43:21Z
# as written in the block header
2026-08-11T03:43:18Z
$ uptime # since last reboot
03:43:20 up 45 days, 20:14, 0 users, load average: 0.68, 1.25, 1.47
$ battery.sh
174%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1897900 kB
$ du -h -d1 .bitcoin/signet
328M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
565M .bitcoin/signet/blocks
4.0G .bitcoin/signet/chainstate
5.0G .bitcoin/signet
$ df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 912G 436G 476G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.99.0-gff01e5af948d11f2c44aac032591fd621ee6997b 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
317176
$ BH=$(bitcoin-cli -signet getblockhash 317176); echo $BH
0000001100f7fc48425f1452cfcfa1c7fe5d00834ada22822cc58cabae201cad
$ bitcoin-cli -signet getblockheader 0000001100f7fc48425f1452cfcfa1c7fe5d00834ada22822cc58cabae201cad
{
"hash": "0000001100f7fc48425f1452cfcfa1c7fe5d00834ada22822cc58cabae201cad",
"confirmations": 1,
"height": 317176,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "b616336351ffd6aea50ff01be97ea72e9825aefb592cee288b6180535af9ae6a",
"time": 1786419798,
"mediantime": 1786416174,
"nonce": 11986432,
"bits": "1d146a9f",
"target": "000000146a9f0000000000000000000000000000000000000000000000000000",
"difficulty": 0.04897927153283035,
"chainwork": "00000000000000000000000000000000000000000000000000000fc344b8c7a3",
"nTx": 148,
"previousblockhash": "0000000bdc0273c738b48f320dfd7a026d642ef15d9cf41b2b205f689f5ac7b4"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ..11 ..f7 fc48
425f 1452 cfcf a1c7
fe5d ..83 4ada 2282
2cc5 8cab ae2. 1cad
$ : 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
317176 sf: ..11 ..f7 ..83 ae2. 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 .
317176 sk: 1cad b1
$ : 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 .
317176 ak: 4.ce b1
$ : Following is the jointkode
317176 jk: 1cad 4.ce b1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 859,
"bytes": 1053983,
"usage": 6433664,
"total_fee": 0.02067439,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 1,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 25,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
168
## Current epoch estimation is +1.56%
## 664 of 2016, i.e. 32%, 1352 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
355992.6552913164
$ bitcoin-cli -signet getnetworkhashps 2016 316511
350509.8283946097
$ bitcoin-cli -signet getnetworkhashps 2016 314495
343484.4943123722
$ bitcoin-cli -signet getblockstats 317176
{
"avgfee": 8142,
"avgfeerate": 4,
"avgtxsize": 3418,
"blockhash": "0000001100f7fc48425f1452cfcfa1c7fe5d00834ada22822cc58cabae201cad",
"feerate_percentiles": [
2,
2,
2,
2,
4
],
"height": 317176,
"ins": 3028,
"maxfee": 494559,
"maxfeerate": 2965,
"maxtxsize": 48754,
"medianfee": 1000,
"mediantime": 1786416174,
"mediantxsize": 234,
"minfee": 140,
"minfeerate": 1,
"mintxsize": 142,
"outs": 1000,
"subsidy": 2500000000,
"swtotal_size": 502448,
"swtotal_weight": 991214,
"swtxs": 146,
"time": 1786419798,
"total_out": 3301470699897,
"total_size": 502590,
"total_weight": 991782,
"totalfee": 1196949,
"txs": 148,
"utxo_increase": -2028,
"utxo_size_inc": -138027,
"utxo_increase_actual": -2065,
"utxo_size_inc_actual": -143018
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 134197681,
"totalbytessent": 1998537239,
"timemillis": 1786419801207,
"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.99.0-gff01e5af948d11f2c44aac032591fd621ee6997b signet - server 70017/Satoshi:31.99.0/
ipv4 total block manual
in 1 1
out 11 11 2 1
total 12 12
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 24750,
"ipv6": 5,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 24755
}
}
### v2_peerinfo are in v2_peerinfo-signet.txt
$ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c
11 "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
cbc728f43b886394
db4861e81bda24b13bd3da8a72b18e8af20e4ccc65a5a42e13bcde8cc6ef9a1d
9dd9a235d6413c9f
4b7e5d63a784b0397bc4a9d6b7818f8dea39a66989a1712a86ba7d4912897c0e
82b27e77426c9cf3
889272f987b97c3327b239d04f8b8e7d1db31770f9fba96f1ff3f5c710f5cfaf
cb6d7e2c716bdfc5
2081d68198107154cf5fe5980f0a94bc5e3a68f437c3876015332f0ca580392f
6e94f8ae3b4de2f7
0972f4dcce351a0c6b8c36784e37407303c2f87c55168f68010c4b61792d777b
fe30c0bc8262dfa9
3af0d1ff0dc73b7c2a4d0559b6ab115beb1cb8d98e8f90dee7dc34ee41fcd5fe
b09801c8a5a79312
f3a85ffe583f5523311cb9fb7a969a6d18b8b6690ae95ddab585eb9674695553
33dacef5a00c7b85
59dff918ff861ed515d11b4986fe4f48a55efba4bce50442209e3af3af5c1ea7
35e2a230edacc2ab
766c92a3c3339af662b99a546182acb5073b0505db89bb59db5966bb232a12ab
ae4182fc8c440764
61fe99965f660c1cc68966c860fd48a341c641930b8f6f95667abea21abf521d
7338c08342087a97
1e0becd51e3633d709109588001c9f0ced0f78c01d11feb6016f0fabcf3c3ba7
$ niceblack.sh $BH $BC
__ __ __
/ / / /__ ____/ /__
/ _ \/ / _ \/ __/ '_/
/_.__/_/\___/\__/_/\_\
______________________
|_ < /_ < /_ / __/
_/_ / / // / / / _ \
/____/_/ /_//_/ /_/\___/
,----- .123 4567 89ab cdef -----,
| |
| .. .... ..11 ..f7 fc48 .f |
| 1. 425f 1452 cfcf a1c7 1f |
| 2. fe5d ..83 4ada 2282 2f |
| 3. 2cc5 8cab ae2. 1cad 3f |
'=== ==== ==== ==== ==== ==='
jk: 1cad 4.ce b1