# on receiving block 318363 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-08-19T07:09:17Z
# as written in the block header
2026-08-19T07:09:08Z
$ uptime # since last reboot
07:09:17 up 53 days, 23:40, 0 users, load average: 1.14, 1.72, 2.54
$ battery.sh
170%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1388692 kB
$ du -h -d1 .bitcoin/signet
337M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
494M .bitcoin/signet/blocks
4.2G .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
318363
$ BH=$(bitcoin-cli -signet getblockhash 318363); echo $BH
0000000f563f4d30a02cb69b7f8a8c4b73c1ec0558c6be755d39add1bd86a066
$ bitcoin-cli -signet getblockheader 0000000f563f4d30a02cb69b7f8a8c4b73c1ec0558c6be755d39add1bd86a066
{
"hash": "0000000f563f4d30a02cb69b7f8a8c4b73c1ec0558c6be755d39add1bd86a066",
"confirmations": 1,
"height": 318363,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "f72d9043575c493aa214bfabce956861663bf3e2f40216b97d1b1792f934914b",
"time": 1787123348,
"mediantime": 1787119554,
"nonce": 53615789,
"bits": "1d146a9f",
"target": "000000146a9f0000000000000000000000000000000000000000000000000000",
"difficulty": 0.04897927153283035,
"chainwork": "00000000000000000000000000000000000000000000000000000ffd6860c994",
"nTx": 80,
"previousblockhash": "00000013dda62307e02be3cfb3642b50babc5879dd1d944af6991fc4b2d9d387"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ...f 563f 4d3.
a.2c b69b 7f8a 8c4b
73c1 ec.5 58c6 be75
5d39 add1 bd86 a.66
$ : 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
318363 sf: ...f 4d3. a.2c ec.5 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 .
318363 sk: a.66 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 .
318363 ak: 6a.9 a1
$ : Following is the jointkode
318363 jk: a066 6a.9 a1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 36541,
"bytes": 27443664,
"usage": 170344408,
"total_fee": 0.70856781,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 25,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
185
## Current epoch estimation is +2.3%
## 1851 of 2016, i.e. 91%, 165 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
358583.5220294743
$ bitcoin-cli -signet getnetworkhashps 2016 316511
350509.8283946097
$ bitcoin-cli -signet getnetworkhashps 2016 314495
343484.4943123722
$ bitcoin-cli -signet getblockstats 318363
{
"avgfee": 22423,
"avgfeerate": 7,
"avgtxsize": 6697,
"blockhash": "0000000f563f4d30a02cb69b7f8a8c4b73c1ec0558c6be755d39add1bd86a066",
"feerate_percentiles": [
7,
7,
7,
7,
7
],
"height": 318363,
"ins": 3497,
"maxfee": 250348,
"maxfeerate": 149,
"maxtxsize": 77558,
"medianfee": 1139,
"mediantime": 1787119554,
"mediantxsize": 205,
"minfee": 858,
"minfeerate": 6,
"mintxsize": 193,
"outs": 241,
"subsidy": 2500000000,
"swtotal_size": 529073,
"swtotal_weight": 991979,
"swtxs": 79,
"time": 1787123348,
"total_out": 73183034864,
"total_size": 529073,
"total_weight": 991979,
"totalfee": 1771429,
"txs": 80,
"utxo_increase": -3256,
"utxo_size_inc": -229195,
"utxo_increase_actual": -3257,
"utxo_size_inc_actual": -229363
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 1063426007,
"totalbytessent": 9205477877,
"timemillis": 1787123357373,
"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 2 2
out 11 11 2 1
total 13 13
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 24988,
"ipv6": 5,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 24993
}
}
### 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
c2df4db43254cb32
ad38ae1ae57443f58e46c945507dbb21df88b6b5a9761893a37e5f362390e17c
df5170d29dca6f76
1d38b06ad97f4df3e6ec5d5662145a85cce9e036af6553b22cfd29c91553e870
b238f700f288e393
7ef69fba898561412a1a2e61fc0a917dad1b5e2b758597e3c219b1f8f7aefa2f
8063f4d9bd3f3283
ecc74edc320e01fca07be8990434fe88b1b1309c5ed912dc5b601b9e1565c318
b4d832fe47ef3830
13c1bb1926657bc2d20ed9a80d530223bd940832cf7ec74cf29c3c69b084c30c
58dda33f1e9595a9
7d886fbd9b48bf53a5a5db485c62547c12f43f2c42697ecfdbbce756ca270031
cec62c82af6347cc
dcc4314ed83b7ebb3e4e739ca33804d60b8543ad527c557873d2e3b4427f0407
ce5240b924d9f173
2d7a90d9bbaf6bb6da41f38428b6a2bc114bf05988aa3446f85eef259c434c72
82b27e77426c9cf3
06bf052c61cd38347230e328778822b22250828870911283983d065ac15fff68
7c5729402e51b499
2551913432078dc95bf2aa5f5c186296c7b1bac731fd7b3db139673716a18d41
d3a35fabb60fb123
71409c9e65feb4ace705cd954fbc284f62f5f03cc78b4fe7f9defb0275e9269b
$ niceblack.sh $BH $BC
____________ _____ __________
|__ < ( __ ) |__ // ___/__ /
/_ / __ | /_ __ \ /_ <
___/ / / /_/ / ___/ / /_/ /__/ /
/____/_/\____/ /____/\____/____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... ...f 563f 4d3. .f |
| 1. a.2c b69b 7f8a 8c4b 1f |
| 2. 73c1 ec.5 58c6 be75 2f |
| 3. 5d39 add1 bd86 a.66 3f |
'=== ==== ==== ==== ==== ==='
jk: a.66 6a.9 a1