# on receiving block 294866 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-03-09T18:08:27Z
# as written in the block header
2026-03-09T18:07:12Z
$ uptime # since last reboot
18:08:27 up 20 days, 23:39, 0 users, load average: 1.05, 1.26, 1.77
$ battery.sh
97%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 2025988 kB
$ du -h -d1 .bitcoin/signet
277M .bitcoin/signet/indexes
19M .bitcoin/signet/wallets
567M .bitcoin/signet/blocks
3.4G .bitcoin/signet/chainstate
4.3G .bitcoin/signet
$ df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 912G 434G 478G 48% /
$ bitcoind -version
Bitcoin Core daemon version v30.2.0 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
294866
$ BH=$(bitcoin-cli -signet getblockhash 294866); echo $BH
0000000c823c14fc2138ede9a9b4ab79bb996b0d056c7b6d59acc1cff13dabc9
$ bitcoin-cli -signet getblockheader 0000000c823c14fc2138ede9a9b4ab79bb996b0d056c7b6d59acc1cff13dabc9
{
"hash": "0000000c823c14fc2138ede9a9b4ab79bb996b0d056c7b6d59acc1cff13dabc9",
"confirmations": 1,
"height": 294866,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "c81d8a4e279ea8d98e58245bb89aee26394ac190a335c3f434e2af742e4c41ec",
"time": 1773079632,
"mediantime": 1773075493,
"nonce": 606992640,
"bits": "1d14dfe4",
"target": "00000014dfe40000000000000000000000000000000000000000000000000000",
"difficulty": 0.04790444111119883,
"chainwork": "00000000000000000000000000000000000000000000000000000b96c47f00d1",
"nTx": 48,
"previousblockhash": "00000006ab51aa0a82bcf76d24330d6eb77d1f5ef325f34858da05e2f8450976"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... ...c 823c 14fc
2138 ede9 a9b4 ab79
bb99 6b.d .56c 7b6d
59ac c1cf f13d abc9
$ : 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
294866 sf: ...c 6b.d .56c abc9
$ : 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 .
294866 sk: abc9 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 .
294866 ak: 34d2 c1
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 2,
"bytes": 317,
"usage": 2464,
"total_fee": 0.00000162,
"maxmempool": 100000000,
"mempoolminfee": 0.00000100,
"minrelaytxfee": 0.00000100,
"incrementalrelayfee": 0.00000100,
"unbroadcastcount": 0,
"fullrbf": true,
"permitbaremultisig": true,
"maxdatacarriersize": 100000
}
$ gmm.sh
244
## Current epoch estimation is -1.11%
## 530 of 2016, i.e. 26%, 1486 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
338907.7990988865
$ bitcoin-cli -signet getnetworkhashps 2016 294335
342715.3572314463
$ bitcoin-cli -signet getnetworkhashps 2016 292319
339762.2850817262
$ bitcoin-cli -signet getblockstats 294866
{
"avgfee": 5948,
"avgfeerate": 3,
"avgtxsize": 3330,
"blockhash": "0000000c823c14fc2138ede9a9b4ab79bb996b0d056c7b6d59acc1cff13dabc9",
"feerate_percentiles": [
2,
2,
2,
5,
5
],
"height": 294866,
"ins": 54,
"maxfee": 161235,
"maxfeerate": 5,
"maxtxsize": 87366,
"medianfee": 14,
"mediantime": 1773075493,
"mediantxsize": 188,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 182,
"outs": 1901,
"subsidy": 2500000000,
"swtotal_size": 156535,
"swtotal_weight": 346879,
"swtxs": 47,
"time": 1773079632,
"total_out": 2860036335764,
"total_size": 156535,
"total_weight": 346879,
"totalfee": 279570,
"txs": 48,
"utxo_increase": 1847,
"utxo_size_inc": 134554,
"utxo_increase_actual": 1819,
"utxo_size_inc_actual": 132516
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 293989317,
"totalbytessent": 9036774807,
"timemillis": 1773079708555,
"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 v30.2.0 signet - server 70016/Satoshi:30.2.0/
ipv4 total block manual
in 3 3
out 11 11 2 1
total 14 14
Local services: witness, compact filters, network limited, p2p v2, libre
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 1915,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 1915
}
}
### 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
58cf5f4588d41478
1ec1061541cba339b6d6ff0bbba90eaa75347487a164060bc7f1fb6039bb58f5
82b27e77426c9cf3
9a1678d2e231c1ae6a15d1e148d1a3aa921f92a74fbdb92fa1230595312af704
d26dc11e642083e6
57149bde3f5683d329bd38e36e0a3c351bc45d98ab049665d3e0e1f9309bddf3
f17ef791f09a6e12
bbac244209642232f50aed12fadff433f1f5cc4868c5f434ecc20dfdea2da8ab
a9e407828463a7f3
e23824e52d3833a2cf84a780a1f64b1775eaa0801652bb5ba0a1ebf1afa9ff8c
ef33457b76d2201b
ed448ac93ae2e9f7c1542cfd7884cdd250d1f46f143f5b9a140ef828ddb8d8e2
989773dc541b27e7
f1c4f931a56557c2d3304a6a06e608a7a71fd3ff3398be131d4a4e4108b3a51e
4d5a6f34b155c53d
63418246ac94b746c4d1e7e3bbd2a1bcc25de1cb989ddad87a6c42ede3b5140d
6a69e8fdd463cfa0
d5ef774b7eab268317d72eeb519634e61cffadd4cda70f027e19fcded6b44e75
$ niceblack.sh $BH $BC
____ ___ _ _
|___ \ / _ \| || |
__) | (_) | || |_
/ __/ \__, |__ _|
|_____| /_/ |_|
___ __ __
( _ ) / /_ / /_
/ _ \| '_ \| '_ \
| (_) | (_) | (_) |
\___/ \___/ \___/
,----- .123 4567 89ab cdef -----,
| |
| .. .... ...c 823c 14fc .f |
| 1. 2138 ede9 a9b4 ab79 1f |
| 2. bb99 6b.d .56c 7b6d 2f |
| 3. 59ac c1cf f13d abc9 3f |
'=== ==== ==== ==== ==== ==='
ak: 34d2 c1