# on receiving block 311947 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-07-06T02:57:16Z
# as written in the block header
2026-07-06T02:55:56Z
$ uptime # since last reboot
02:57:16 up 9 days, 19:28, 0 users, load average: 1.67, 0.90, 0.72
$ battery.sh
100%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1773588 kB
$ du -h -d1 .bitcoin/signet
307M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
547M .bitcoin/signet/blocks
3.9G .bitcoin/signet/chainstate
4.8G .bitcoin/signet
$ df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 912G 436G 476G 48% /
$ bitcoind -version
Bitcoin Core daemon version v31.1.0rc1 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
311947
$ BH=$(bitcoin-cli -signet getblockhash 311947); echo $BH
00000008690200c71e1b2dba6f7404cff619e0e79355dca9a79ad857f3be5af2
$ bitcoin-cli -signet getblockheader 00000008690200c71e1b2dba6f7404cff619e0e79355dca9a79ad857f3be5af2
{
"hash": "00000008690200c71e1b2dba6f7404cff619e0e79355dca9a79ad857f3be5af2",
"confirmations": 1,
"height": 311947,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "f1aa9dd23cc6d0542b48b4c30b09bcd42ec0cc9805fbf0abe5efc04a20f94565",
"time": 1783306556,
"mediantime": 1783304086,
"nonce": 468130795,
"bits": "1d1539c3",
"target": "0000001539c30000000000000000000000000000000000000000000000000000",
"difficulty": 0.04711213096935177,
"chainwork": "00000000000000000000000000000000000000000000000000000ec75bf8b97c",
"nTx": 9,
"previousblockhash": "000000146fd3659bbac5a8a5e99757c04680b2393835e5be76e814f40bfedda0"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ...8 69.2 ..c7
1e1b 2dba 6f74 .4cf
f619 e.e7 9355 dca9
a79a d857 f3be 5af2
$ : 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
311947 sf: ...8 69.2 ..c7 .4cf 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 .
311947 sk: 5af2 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 .
311947 ak: be54 a1
$ : Following is the jointkode
311947 jk: 5af2 be54 a1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 30,
"bytes": 9163,
"usage": 57328,
"total_fee": 0.10708711,
"maxmempool": 300000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000,
"limitclustercount": 25,
"limitclustersize": 101000,
"optimal": true
}
$ gmm.sh
186
## Current epoch estimation is +4.05%
## 1483 of 2016, i.e. 73%, 533 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
350913.794802862
$ bitcoin-cli -signet getnetworkhashps 2016 310463
337230.1211738132
$ bitcoin-cli -signet getnetworkhashps 2016 308447
350573.0694396333
$ bitcoin-cli -signet getblockstats 311947
{
"avgfee": 154,
"avgfeerate": 1,
"avgtxsize": 205,
"blockhash": "00000008690200c71e1b2dba6f7404cff619e0e79355dca9a79ad857f3be5af2",
"feerate_percentiles": [
1,
1,
1,
1,
1
],
"height": 311947,
"ins": 8,
"maxfee": 154,
"maxfeerate": 1,
"maxtxsize": 205,
"medianfee": 154,
"mediantime": 1783304086,
"mediantxsize": 205,
"minfee": 154,
"minfeerate": 1,
"mintxsize": 205,
"outs": 18,
"subsidy": 2500000000,
"swtotal_size": 1640,
"swtotal_weight": 4928,
"swtxs": 8,
"time": 1783306556,
"total_out": 5790360,
"total_size": 1640,
"total_weight": 4928,
"totalfee": 1232,
"txs": 9,
"utxo_increase": 10,
"utxo_size_inc": 913,
"utxo_increase_actual": 9,
"utxo_size_inc_actual": 744
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 115805100,
"totalbytessent": 5239123247,
"timemillis": 1783306636520,
"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.0rc1 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": 798,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 798
}
}
### 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
c6963b343d29a419
296e5fadec187b3ed9b4d728b869733d865b15f2b2e972b01538fcbe95dce8c5
82b27e77426c9cf3
f163f1ec78e6014032674e87f8c7008d9139b3df978c57ce5538db8f3b84d7e5
509e8cf1d81d4e1b
642952a21735f675365a4ba6275410552b40ef9bdb9a03f7035fcf236b1704c7
02bcf475afe48ca6
53d6cb57a43722ec0bf4189a66dd1a08513bedb3ae5ffb861f6db30605622cca
d3a35fabb60fb123
f4f5e89ebf6e3fa51a409f0b560276d4201040c057d28751179c8a69a9461f63
6314f8c19fd3f1fc
6c073ab1fbebc65165ae40daaeac9c44c96950f1a9ce748cb6acd1cc859117ba
a8e0ddb58abca302
0477eb017427552802c2419194c80a7ccb5a6cfcfb1477b75ed31b2ace882d75
a4dda9c03849be5c
9d5c340dd6ee89ca0719fd08e2eae0a83a9dbf702646a5a4904765901e9ad728
d93d2e33982b129d
595ce1ba880d4e61a9992454812998b51512d2d819f362e09d3984891d5b0ce3
a8458145c2f0e139
e9f63ba81dd62cf2eb13421308c9ec3201414588fcb2f0b2bb0f8cfdf6b6b2ee
a2cfcc8161593722
4c0eae588e4b0377ec51e1cb31f3be318a23045e9757f246842877d67cd0f3f9
$ niceblack.sh $BH $BC
__ __ __
/ / / /__ ____/ /__
/ _ \/ / _ \/ __/ '_/
/_.__/_/\___/\__/_/\_\
_____________ ________
|_ < < / _ \/ / /_ /
_/_ // /\_, /_ _// /
/____/_//_//___/ /_/ /_/
,----- .123 4567 89ab cdef -----,
| |
| .. .... ...8 69.2 ..c7 .f |
| 1. 1e1b 2dba 6f74 .4cf 1f |
| 2. f619 e.e7 9355 dca9 2f |
| 3. a79a d857 f3be 5af2 3f |
'=== ==== ==== ==== ==== ==='
jk: 5af2 be54 a1