# on receiving block 310364 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-06-25T15:48:01Z
# as written in the block header
2026-06-25T15:47:39Z
$ uptime # since last reboot
15:48:01 up 6:42, 0 users, load average: 0.34, 0.82, 1.00
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2293592 kB
$ du -h -d1 .bitcoin/signet
305M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
461M .bitcoin/signet/blocks
3.8G .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
310364
$ BH=$(bitcoin-cli -signet getblockhash 310364); echo $BH
000000118f5b6afc2b946bbf09ea8329449061e2aec8734327de19d22cc334c7
$ bitcoin-cli -signet getblockheader 000000118f5b6afc2b946bbf09ea8329449061e2aec8734327de19d22cc334c7
{
"hash": "000000118f5b6afc2b946bbf09ea8329449061e2aec8734327de19d22cc334c7",
"confirmations": 1,
"height": 310364,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "04d6bfa5ead60c550edd63c58db3dd186996c77323c209b7967529dc833f30e4",
"time": 1782402459,
"mediantime": 1782401047,
"nonce": 177272682,
"bits": "1d146a04",
"target": "000000146a040000000000000000000000000000000000000000000000000000",
"difficulty": 0.04898494610796347,
"chainwork": "00000000000000000000000000000000000000000000000000000e7c981e3af3",
"nTx": 80,
"previousblockhash": "0000000bd03991144c69cdc5568eb593a8f34cb2538f5d77229ee3de70f9b855"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ..11 8f5b 6afc
2b94 6bbf .9ea 8329
449. 61e2 aec8 7343
27de 19d2 2cc3 34c7
$ : 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
310364 sf: ..11 .9ea 449. 34c7
$ : 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 .
310364 sk: 34c7 c1
$ : 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 .
310364 ak: f1af c1
$ : Following is the jointkode
310364 jk: 34c7 f1af c1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 8,
"bytes": 1455,
"usage": 9792,
"total_fee": 0.00001793,
"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
1011
## Current epoch estimation is -4.82%
## 1916 of 2016, i.e. 95%, 100 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
333653.1787807225
$ bitcoin-cli -signet getnetworkhashps 2016 308447
350573.0694396333
$ bitcoin-cli -signet getnetworkhashps 2016 306431
347971.3775737199
$ bitcoin-cli -signet getblockstats 310364
{
"avgfee": 1095,
"avgfeerate": 2,
"avgtxsize": 442,
"blockhash": "000000118f5b6afc2b946bbf09ea8329449061e2aec8734327de19d22cc334c7",
"feerate_percentiles": [
0,
0,
0,
1,
1
],
"height": 310364,
"ins": 83,
"maxfee": 27300,
"maxfeerate": 149,
"maxtxsize": 17404,
"medianfee": 154,
"mediantime": 1782401047,
"mediantxsize": 205,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 142,
"outs": 578,
"subsidy": 2500000000,
"swtotal_size": 34814,
"swtotal_weight": 118652,
"swtxs": 78,
"time": 1782402459,
"total_out": 3366666817155,
"total_size": 34956,
"total_weight": 119220,
"totalfee": 86518,
"txs": 80,
"utxo_increase": 495,
"utxo_size_inc": 40958,
"utxo_increase_actual": 455,
"utxo_size_inc_actual": 36492
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 1061524,
"totalbytessent": 17813564,
"timemillis": 1782402481813,
"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 0 0
out 11 11 2 1
total 11 11
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 1002,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 1002
}
}
### v2_peerinfo are in v2_peerinfo-signet.txt
$ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c
9 "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
a0a01dcc07ff2a95d66dac222813b0a2fb7fa0c4d4ab255ce01590ba4c52e5dc
9c42b131cbafed94
554e7d2514b9f16e994709e166dd3dd50f02ee2dec03150be416dd51ecdc5c24
1e317f594ee5ba7c
1f93a55a68306832c7fe70266b6a62c6f6b3583bc767b34a88446ec01c791812
58cf5f4588d41478
0a634a123d8a9e9dcd8cceb80459b0bbe8b88d0fdc5e9231f8b076c42705ff69
d4831807489046eb
63988d674e11ea627c7007e9dd410799c79594f1a4007c8fb2c5c520f9f79af0
42d6b7498898cae5
18fe7c405154c8a05af8e8d93eda78bf7c73de5bd809e0adb6a1be25298481c1
cb6d7e2c716bdfc5
47b33ee6e4375d6403d0d531ab23915cf82dcf78a86d48ef1890f57d6f9add32
efc846ec47160038
22d8af4ec93bd24547556280cf3a361682449fca9a421b3a29febca083009a77
613c72b9071be384
aced426f689d333c71324c90b351c06c122aacff80739ba8848959d3c66f3195
$ niceblack.sh $BH $BC
_____ _ ___ _____ __ _ _
|___ // |/ _ \ |___ / / /_ | || |
|_ \| | | | | |_ \| '_ \| || |_
___) | | |_| | ___) | (_) |__ _|
|____/|_|\___/ |____/ \___/ |_|
,----- .123 4567 89ab cdef -----,
| |
| .. .... ..11 8f5b 6afc .f |
| 1. 2b94 6bbf .9ea 8329 1f |
| 2. 449. 61e2 aec8 7343 2f |
| 3. 27de 19d2 2cc3 34c7 3f |
'=== ==== ==== ==== ==== ==='
jk: 34c7 f1af c1