# on receiving block 308769 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2026-06-14T00:21:31Z
# as written in the block header
2026-06-14T00:20:05Z
$ uptime # since last reboot
00:21:31 up 86 days, 15:14, 0 users, load average: 4.09, 2.71, 2.61
$ battery.sh
163%, Power Supply Online
$ uname -smnr
Linux singer 6.18.2-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1341156 kB
$ du -h -d1 .bitcoin/signet
303M .bitcoin/signet/indexes
21M .bitcoin/signet/wallets
482M .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
308769
$ BH=$(bitcoin-cli -signet getblockhash 308769); echo $BH
00000000e6b70ee0a5cfe3046a9cbb69ae26d44ad1a3da1805c32209dfa269a7
$ bitcoin-cli -signet getblockheader 00000000e6b70ee0a5cfe3046a9cbb69ae26d44ad1a3da1805c32209dfa269a7
{
"hash": "00000000e6b70ee0a5cfe3046a9cbb69ae26d44ad1a3da1805c32209dfa269a7",
"confirmations": 1,
"height": 308769,
"version": 536870912,
"versionHex": "20000000",
"merkleroot": "91bb8ac97ea6ce617861b9f35849a4728a4b3bf529a9c58917f62fbf88efa870",
"time": 1781396405,
"mediantime": 1781393552,
"nonce": 694936646,
"bits": "1d146a04",
"target": "000000146a040000000000000000000000000000000000000000000000000000",
"difficulty": 0.04898494610796347,
"chainwork": "00000000000000000000000000000000000000000000000000000e2e76479efe",
"nTx": 69,
"previousblockhash": "0000000cb6ac8d947c2607286e213eb668c38e92dc892f2df6e8f6c698a23830"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... e6b7 .ee.
a5cf e3.4 6a9c bb69
ae26 d44a d1a3 da18
.5c3 22.9 dfa2 69a7
$ : 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
308769 sf: .ee. e3.4 .5c3 22.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 .
308769 sk: 69a7 a2
$ : 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 .
308769 ak: 9f71 a2
$ : Following is the jointkode
308769 jk: 69a7 9f71 a2
### niceblack moved to the end
$ bitcoin-cli -signet getmempoolinfo
{
"loaded": true,
"size": 10,
"bytes": 1763,
"usage": 85536,
"total_fee": 0.00002101,
"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
249
## Current epoch estimation is -0.65%
## 321 of 2016, i.e. 15%, 1695 to go
## Current and previous two in numbers:
$ bitcoin-cli -signet getnetworkhashps 2016
348281.323404962
$ bitcoin-cli -signet getnetworkhashps 2016 308447
350573.0694396333
$ bitcoin-cli -signet getnetworkhashps 2016 306431
347971.3775737199
$ bitcoin-cli -signet getblockstats 308769
{
"avgfee": 47513,
"avgfeerate": 104,
"avgtxsize": 534,
"blockhash": "00000000e6b70ee0a5cfe3046a9cbb69ae26d44ad1a3da1805c32209dfa269a7",
"feerate_percentiles": [
0,
1,
1,
1,
1
],
"height": 308769,
"ins": 80,
"maxfee": 3075447,
"maxfeerate": 18582,
"maxtxsize": 19286,
"medianfee": 154,
"mediantime": 1781393552,
"mediantxsize": 205,
"minfee": 14,
"minfeerate": 0,
"mintxsize": 142,
"outs": 601,
"subsidy": 2500000000,
"swtotal_size": 36185,
"swtotal_weight": 122606,
"swtxs": 67,
"time": 1781396405,
"total_out": 3184961420063,
"total_size": 36327,
"total_weight": 123174,
"totalfee": 3230941,
"txs": 69,
"utxo_increase": 521,
"utxo_size_inc": 43247,
"utxo_increase_actual": 483,
"utxo_size_inc_actual": 39108
}
$ bitcoin-cli -signet getnettotals
{
"totalbytesrecv": 879379787,
"totalbytessent": 24540647975,
"timemillis": 1781396492282,
"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
in 6 6
out 10 10 2
total 16 16
Local services: witness, compact filters, network limited, p2p v2
Local addresses: n/a
$ bitcoin-cli -signet -addrinfo
{
"addresses_known": {
"ipv4": 1251,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 1251
}
}
### v2_peerinfo are in v2_peerinfo-signet.txt
$ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c
14 "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
ae8d284a550f8f8a
527ba2f4829cec401cb76b76a888d40eda26f56ba524c3c1e94f526fa6f65cc9
a09335b2ea9a0d96
d62b61953e6f57e0f48d2aca7a8987d3e7b9f570802aed0d21ccfbd7f67882a3
c2df4db43254cb32
809d2d908d0511da7c0177fcfa57fb35209d9a7653a4cc3c75c0aed1a367fca9
1e317f594ee5ba7c
c4439c219754a1aeb6a25428bbd55374557a3a35fde044f8bd8edc4d8fcf279e
1be57ab10ba0682c
777b6dabd3ebfd080d588d2a5bf95db0b0c3dabb681ce6a7c01ae9205e5a3319
d3a35fabb60fb123
cb4e7e1ac26d1b2a191f8793a651491cf01a325c6b2909d87cdb0b1e735e44b8
d26dc11e642083e6
1c77c7723830626837def50df91b91fa43b5f98a6a4d2f9bb319db1c89f04973
efc846ec47160038
212a6dbb3622ea29da43a499db74d3dbed6d89a504a724f50eac1442e9d5a880
2542189ad6b471e2
7ca16e3d898b2886337a4503c61e5d435f5baab72ffd5ec8b94d934a82cc87e1
2c92bdda6fb6f85d
080dea085a57af9c41b766b20ee00de6b0d57458c573e699cd6f7c1b0322ecb9
1e9f51c20a4fdbd6
c4ac9bb93ec89eb4059b9559d7d8b038ee672147596c47680df56480a8443d65
e60fa6493b8bae4b
4087b055e971cf237f944261fa7166b3242b5dd34d0833f37dc996388a5a9ac4
aa3c81bfc22b286b
301d29507c9c6014914e7db76b1df345640709e55759bafac7ec3fa0ba026c75
acbcec5aeca1972b
fcac8823ce9395c49da45aec365cc687dc9224a34694aced6d08f2a92519aac0
$ niceblack.sh $BH $BC
_____ ____ ____
|__ // __ \( __ )
/_ / / / __ |
___/ / /_/ / /_/ /
/____/\____/\____/
__________ ____
/__ / ___// __ \
/ / __ \/ /_/ /
/ / /_/ /\__, /
/_/\____//____/
,----- .123 4567 89ab cdef -----,
| |
| .. .... .... e6b7 .ee. .f |
| 1. a5cf e3.4 6a9c bb69 1f |
| 2. ae26 d44a d1a3 da18 2f |
| 3. .5c3 22.9 dfa2 69a7 3f |
'=== ==== ==== ==== ==== ==='
jk: 69a7 9f71 a2