# on receiving block 311301 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-07-01T21:38:40Z
# as written in the block header
2026-07-01T21:37:43Z
$ uptime # since last reboot
21:38:39 up 5 days, 14:09, 0 users, load average: 2.81, 1.50, 1.08
$ battery.sh
99%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2042096 kB
$ du -h -d1 .bitcoin/signet
306M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
513M .bitcoin/signet/blocks
3.9G .bitcoin/signet/chainstate
4.7G .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
311301
$ BH=$(bitcoin-cli -signet getblockhash 311301); echo $BH
00000001cd112d5899c6ce55a3922b7cdeaf9e4f8825c20ea182469484431d8a
$ bitcoin-cli -signet getblockheader 00000001cd112d5899c6ce55a3922b7cdeaf9e4f8825c20ea182469484431d8a
{
"hash": "00000001cd112d5899c6ce55a3922b7cdeaf9e4f8825c20ea182469484431d8a",
"confirmations": 1,
"height": 311301,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "723db0ff297f3a974250d3cd4d4d3df35580a22a4c13c65f07cbb3eced236d1c",
"time": 1782941863,
"mediantime": 1782940250,
"nonce": 358813391,
"bits": "1d1539c3",
"target": "0000001539c30000000000000000000000000000000000000000000000000000",
"difficulty": 0.04711213096935177,
"chainwork": "00000000000000000000000000000000000000000000000000000ea8eca30e3e",
"nTx": 42,
"previousblockhash": "0000000aacf28dd0685e8c6b43006a9cef9f6badf930facf0b5687f04aedfaa7"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ...1 cd11 2d58
99c6 ce55 a392 2b7c
deaf 9e4f 8825 c2.e
a182 4694 8443 1d8a
$ : 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
311301 sf: ...1 c2.e 1d8a
$ : 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 .
311301 sk: 1d8a d1
$ : 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 .
311301 ak: 4b21 d1
$ : Following is the jointkode
311301 jk: 1d8a 4b21 d1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 5,
"bytes": 788,
"usage": 13096,
"total_fee": 0.00001637,
"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
211
## Current epoch estimation is +1.7%
## 837 of 2016, i.e. 41%, 1179 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
342976.6701779757
$ bitcoin-cli -signet getnetworkhashps 2016 310463
337230.1211738132
$ bitcoin-cli -signet getnetworkhashps 2016 308447
350573.0694396333
$ bitcoin-cli -signet getblockstats 311301
{
"avgfee": 58559,
"avgfeerate": 119,
"avgtxsize": 587,
"blockhash": "00000001cd112d5899c6ce55a3922b7cdeaf9e4f8825c20ea182469484431d8a",
"feerate_percentiles": [
0,
0,
0,
0,
1
],
"height": 311301,
"ins": 52,
"maxfee": 2351072,
"maxfeerate": 14205,
"maxtxsize": 12920,
"medianfee": 14,
"mediantime": 1782940250,
"mediantxsize": 191,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 142,
"outs": 389,
"subsidy": 2500000000,
"swtotal_size": 23945,
"swtotal_weight": 79832,
"swtxs": 40,
"time": 1782941863,
"total_out": 3123051549735,
"total_size": 24087,
"total_weight": 80400,
"totalfee": 2400949,
"txs": 42,
"utxo_increase": 337,
"utxo_size_inc": 28135,
"utxo_increase_actual": 298,
"utxo_size_inc_actual": 23232
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 53004953,
"totalbytessent": 2397442141,
"timemillis": 1782941920268,
"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 7 7
out 11 11 2 1
total 18 18
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 809,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 809
}
}
### v2_peerinfo are in v2_peerinfo-signet.txt
$ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c
16 "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
a90281d6cd9f2ef732dc4d633bad68c56ad34650adae6d4b324e8b64e12dd92e
0023b28c288594d1
d0239e1259b8fc03ca14387c7eb67c8e1fa17859ca0de310bf9e815fece7dc83
531d9e5471001a55
8e987dcd784c7899e867e8dd507324d328805fc1a522ca9df52f6f1245e498bf
ccac5f3d92a6d821
e1a93f5809cf7b80a429211dee065cf6896f649798fc92ac06539a722caeec1f
acbcec5aeca1972b
6e5fc6954ccbb5be60092b083fbe33ef68ad43ce256eee2851200815f66c4534
131ffd1dacd3414b
62f745a173992bcaec3cb8da243004bbbd6c7ec2b40022ff0772a223d9243ad4
4e8c7b7107b6dbfc
8bcdba3d4014f7a8e7ceb2092013575f65f4875015420415316b3c434387b5c5
282fd8d7944a55b9
7a85bbfe873daec42db4f81bbb5c9c70f3ca2d7aeed36b2c4a0da4ff5b903fa9
989773dc541b27e7
0e41cc8eb19f3fc295d9525410da696fec913ccda4f070bc12443ec8b2314032
63656717dc0be4d4
535d87322c75586895670ca2a3a88dd86d6c6b8cd143d4aa344ffd2538917bd5
b238f700f288e393
2d86a02fd12d2abefe9d52dbf332b8757986546a2aecd4b468635974ccb94fcf
bfb64eb29f62a582
29b35c7d22ae1ab26c355fd511beb7ded0c92be1dbddcc3b78086f35ed729433
e3abb281a4e659f8
6312a0435c4fb2498cc7a1354eef630bb8aa7620ec3ab89740ce57f7bfc5094b
41c0a40b2ed43a72
3dccb2123cf7b99d6b260533dbc6261903b9f23d7da165aa051101b88a9e080d
bbeaa96a3dfe8057
1465284dd16330e38b60de51c5c720abc8ca07602cafc69c3fb03616b51c6117
3928a3efb8d5cbfd
7f2491f723e0ec2e37a7c2821c9160f1966b4cd56793be2f417e555fe7cf6707
$ niceblack.sh $BH $BC
##### # #
# # ## ##
# # # # #
##### # #
# # #
# # # #
##### ##### #####
##### ### #
# # # # ##
# # # # #
##### # # #
# # # #
# # # # #
##### ### #####
,----- .123 4567 89ab cdef -----,
| |
| .. .... ...1 cd11 2d58 .f |
| 1. 99c6 ce55 a392 2b7c 1f |
| 2. deaf 9e4f 8825 c2.e 2f |
| 3. a182 4694 8443 1d8a 3f |
'=== ==== ==== ==== ==== ==='
jk: 1d8a 4b21 d1