# on receiving block 304068 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-05-12T17:09:26Z
# as written in the block header
2026-05-12T17:09:22Z
$ uptime # since last reboot
17:09:26 up 54 days, 8:02, 0 users, load average: 2.66, 2.26, 2.19
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1596664 kB
$ du -h -d1 .bitcoin/signet
295M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
554M .bitcoin/signet/blocks
3.7G .bitcoin/signet/chainstate
4.5G .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
304068
$ BH=$(bitcoin-cli -signet getblockhash 304068); echo $BH
0000000aac43eee995a320921c63fe1fc7e2746452702c0960893430b4df383e
$ bitcoin-cli -signet getblockheader 0000000aac43eee995a320921c63fe1fc7e2746452702c0960893430b4df383e
{
"hash": "0000000aac43eee995a320921c63fe1fc7e2746452702c0960893430b4df383e",
"confirmations": 1,
"height": 304068,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "2a774285c586bed0f2b299d50ccc25fe92b0534614c07a20f89c46323b174f45",
"time": 1778605762,
"mediantime": 1778603286,
"nonce": 28180104,
"bits": "1d14e3c0",
"target": "00000014e3c00000000000000000000000000000000000000000000000000000",
"difficulty": 0.04786986933757188,
"chainwork": "00000000000000000000000000000000000000000000000000000d4c5730b2b4",
"nTx": 149,
"previousblockhash": "000000059b63ff983f0c8049c6deb2d7808841e1f2c688c801cef7ab922102a3"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ...a ac43 eee9
95a3 2.92 1c63 fe1f
c7e2 7464 527. 2c.9
6.89 343. b4df 383e
$ : 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
304068 sf: ...a 2.92 527. 2c.9 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 .
304068 sk: 383e 91
$ : 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 .
304068 ak: ..4a 91
$ : Following is the jointkode
304068 jk: 383e ..4a 91
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 2,
"bytes": 325,
"usage": 20080,
"total_fee": 0.00000480,
"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
169
## Current epoch estimation is -1.18%
## 1668 of 2016, i.e. 82%, 348 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
338419.6577532787
$ bitcoin-cli -signet getnetworkhashps 2016 302399
342474.190435588
$ bitcoin-cli -signet getnetworkhashps 2016 300383
346462.8663674932
$ bitcoin-cli -signet getblockstats 304068
{
"avgfee": 10795,
"avgfeerate": 32,
"avgtxsize": 399,
"blockhash": "0000000aac43eee995a320921c63fe1fc7e2746452702c0960893430b4df383e",
"feerate_percentiles": [
0,
0,
0,
1,
1
],
"height": 304068,
"ins": 171,
"maxfee": 1543500,
"maxfeerate": 9326,
"maxtxsize": 24014,
"medianfee": 154,
"mediantime": 1778603286,
"mediantxsize": 205,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 142,
"outs": 928,
"subsidy": 2500000000,
"swtotal_size": 58925,
"swtotal_weight": 193499,
"swtxs": 147,
"time": 1778605762,
"total_out": 3175315059422,
"total_size": 59067,
"total_weight": 194067,
"totalfee": 1597763,
"txs": 149,
"utxo_increase": 757,
"utxo_size_inc": 60602,
"utxo_increase_actual": 718,
"utxo_size_inc_actual": 56400
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 233098556,
"totalbytessent": 6032542760,
"timemillis": 1778605767208,
"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 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": 1106,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 1106
}
}
### v2_peerinfo are in v2_peerinfo-signet.txt
$ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c
10 "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
be10f9fe00a0a33fad40d9d4824cb308bb9dfd771b14e13c9ed63291ded4e054
58cf5f4588d41478
6a708bd4b333800eb2e587edc870b68c062a06837d5337bd56e26d4c40ed948e
a5ca79adcadc71df
905a408f1f0d2ee01f051e42b641284f256b9c5204d89bd67aa0fd93a04b68da
531d9e5471001a55
b5ed87458425678d54d732ce65410848832fe4ca8b17eb6e892c85a3ff7ffd77
7985d4e63c59dc4d
d79da79712602bab1275862a8d76e1aaae22f490ce2c9edd88b6e306e74f8b7d
f2734dfe2ce64686
c368a2861d33949f2178382a7478b85e30e9d725c9d6c0b222d88cb6ee3801bc
3499c67afdadd614
4a15250b3181d566e5764585ede18fefcde431a177e7bf7742d0058faac88db3
57faa3297ecbe82d
14dbd53ae5d5f95d288a3b4b792ab9b381b82b8298d7721e10dad47495b3ab99
9550b66c9c9a91e5
f12fbed2deac06918e376b9b633441ef5aef2403c3a048bd595bdfa9e82f929d
79fc388c2941734e
39fb3510fd10f9c81142da3523617f1e25c5bcba650d24d032697feb5e8b5973
$ niceblack.sh $BH $BC
_ _ _
| | | | | |
| | | | __ __ | |
|/ \_|/ / \_/ |/_)
\_/ |__/\__/ \___/| \_/
___ __ __ __ __
/ \ / \ | | / \ / / \
__/| ||__|_| || __ \__/
\| | | | ||/ \/ \
\___/ \__/ | \__/ \__/\__/
,----- .123 4567 89ab cdef -----,
| |
| .. .... ...a ac43 eee9 .f |
| 1. 95a3 2.92 1c63 fe1f 1f |
| 2. c7e2 7464 527. 2c.9 2f |
| 3. 6.89 343. b4df 383e 3f |
'=== ==== ==== ==== ==== ==='
jk: 383e ..4a 91