# on receiving block 316230 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-08-04T20:29:18Z
# as written in the block header
2026-08-04T20:29:03Z
$ uptime # since last reboot
20:29:18 up 39 days, 13:00, 0 users, load average: 0.65, 1.01, 1.66
$ battery.sh
174%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1431256 kB
$ du -h -d1 .bitcoin/signet
323M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
490M .bitcoin/signet/blocks
4.0G .bitcoin/signet/chainstate
4.9G .bitcoin/signet
$ df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 912G 435G 476G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.1.0 bitcoind
Copyright (C) 2009-2026 The Bitcoin Core developers
Please contribute if you find Bitcoin Core useful. Visit
<https://bitcoincore.org/> for further information about the software.
The source code is available from <https://github.com/bitcoin/bitcoin>.
This is experimental software.
Distributed under the MIT software license, see the accompanying file COPYING
or <https://opensource.org/license/MIT>
$ BC=$(bitcoin-cli -signet getblockcount); echo $BC
316230
$ BH=$(bitcoin-cli -signet getblockhash 316230); echo $BH
0000000e11b02f461c6317fa805d35e19f64a5452ea4dc3ad3a6e8508faa7e81
$ bitcoin-cli -signet getblockheader 0000000e11b02f461c6317fa805d35e19f64a5452ea4dc3ad3a6e8508faa7e81
{
"hash": "0000000e11b02f461c6317fa805d35e19f64a5452ea4dc3ad3a6e8508faa7e81",
"confirmations": 1,
"height": 316230,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "048007c76d6eee094bbe755e2c4abb00a23e5abf697caffb8e8ece1abf4b3fcd",
"time": 1785875343,
"mediantime": 1785872205,
"nonce": 73864205,
"bits": "1d14d6ea",
"target": "00000014d6ea0000000000000000000000000000000000000000000000000000",
"difficulty": 0.04798504544795561,
"chainwork": "00000000000000000000000000000000000000000000000000000f9536756067",
"nTx": 1529,
"previousblockhash": "0000000b27f8c3da0bd272b8efb56028ae3710d498c1bb34e220d088d474da28"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ...e 11b. 2f46
1c63 17fa 8.5d 35e1
9f64 a545 2ea4 dc3a
d3a6 e85. 8faa 7e81
$ : 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
316230 sf: ...e 11b. 8.5d e85. 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 .
316230 sk: 7e81 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 .
316230 ak: 82bf b1
$ : Following is the jointkode
316230 jk: 7e81 82bf b1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 13775,
"bytes": 3155716,
"usage": 22224720,
"total_fee": 0.04256847,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 63,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 25,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
235
## Current epoch estimation is +0.14%
## 1734 of 2016, i.e. 86%, 282 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
343973.0983648446
$ bitcoin-cli -signet getnetworkhashps 2016 314495
343484.4943123722
$ bitcoin-cli -signet getnetworkhashps 2016 312479
346247.1658164694
$ bitcoin-cli -signet getblockstats 316230
{
"avgfee": 587,
"avgfeerate": 3,
"avgtxsize": 260,
"blockhash": "0000000e11b02f461c6317fa805d35e19f64a5452ea4dc3ad3a6e8508faa7e81",
"feerate_percentiles": [
2,
2,
2,
3,
3
],
"height": 316230,
"ins": 1857,
"maxfee": 183000,
"maxfeerate": 1000,
"maxtxsize": 43653,
"medianfee": 220,
"mediantime": 1785872205,
"mediantxsize": 192,
"minfee": 140,
"minfeerate": 1,
"mintxsize": 142,
"outs": 3175,
"subsidy": 2500000000,
"swtotal_size": 397572,
"swtotal_weight": 991113,
"swtxs": 1527,
"time": 1785875343,
"total_out": 2582951543847,
"total_size": 397714,
"total_weight": 991681,
"totalfee": 898245,
"txs": 1529,
"utxo_increase": 1318,
"utxo_size_inc": 101244,
"utxo_increase_actual": 1281,
"utxo_size_inc_actual": 96432
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 177841617,
"totalbytessent": 1979292119,
"timemillis": 1785875359213,
"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.1.0 signet - server 70016/Satoshi:31.1.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": 1045,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 1045
}
}
### 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
8378aed4888686a7
180e66c0b98e434592e3dbd9b7b139a065dbba704b14c17535fc5f975a223353
67000009c53131c4
7b3a7ea60de0d3c22ddfa2600126817581312a66cf0dcd49cdead2451e9c1419
82b27e77426c9cf3
9d3f03587621bb537484dbc04e653aff9477742fa0004d17f3407bc1fb8fc18f
efc846ec47160038
2684b56a5837e670dac768dfd028541672be0ee10dcbae36b1b9e14e1ea3545e
7d27257fcc87eff6
2bafb98084850f360f82aba9afda998560548e6368446c0338d6b953a390ab7c
9c7da292d5c1f1b0
c86868b163a34c17ed565a895ca4cc949ddca7a00efb6f10153ea76302de84c9
54d67c10592d10ea
6d82dbd576ba278404583f4ac6186dbeb0eebf3e1c2735525a6446ace054d354
21bc3e7a05497b1b
56173518161a64f19ae4fb145afc8a57533632c2e8b5506c112c7ba5860dfed2
9c92af8aca057984
5287094ea1d0afc2babe756aae0bc50de4fe7b57aebbb68ef54f7784e381f535
bf4a02f1cb6c2e66
0cbf4a54898bb2930956028aff636c9c586c2aa313e4d29c492d15216f1d0175
37992f118fddc82a
7d639dac520cb2b0210a99a7ad3b1c313067dbac279324bbe9627bec989c53d5
$ niceblack.sh $BH $BC
_____________ ___ _____ ____
|__ < / ___/ |__ \|__ // __ \
/_ </ / __ \ __/ / /_ </ / / /
___/ / / /_/ / / __/___/ / /_/ /
/____/_/\____/ /____/____/\____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... ...e 11b. 2f46 .f |
| 1. 1c63 17fa 8.5d 35e1 1f |
| 2. 9f64 a545 2ea4 dc3a 2f |
| 3. d3a6 e85. 8faa 7e81 3f |
'=== ==== ==== ==== ==== ==='
jk: 7e81 82bf b1