# on receiving block 310356 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-06-25T14:32:58Z # as written in the block header 2026-06-25T14:32:07Z $ uptime # since last reboot 14:32:58 up 5:27, 0 users, load average: 1.01, 2.12, 1.93 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2235368 kB $ du -h -d1 .bitcoin/signet 305M .bitcoin/signet/indexes 21M .bitcoin/signet/wallets 461M .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 310356 $ BH=$(bitcoin-cli -signet getblockhash 310356); echo $BH 0000000f400dcba5f3c4df7431ee72651ce51b67f48ac5ad5ede944dfa8c09a1 $ bitcoin-cli -signet getblockheader 0000000f400dcba5f3c4df7431ee72651ce51b67f48ac5ad5ede944dfa8c09a1 { "hash": "0000000f400dcba5f3c4df7431ee72651ce51b67f48ac5ad5ede944dfa8c09a1", "confirmations": 1, "height": 310356, "version": 536870912, "versionHex": "20000000", "merkleroot": "5147a7a0291ac7fb5c678d7b9dd728c03109e1518b4945817208476826bf5397", "time": 1782397927, "mediantime": 1782394978, "nonce": 419283600, "bits": "1d146a04", "target": "000000146a040000000000000000000000000000000000000000000000000000", "difficulty": 0.04898494610796347, "chainwork": "00000000000000000000000000000000000000000000000000000e7c33cb9e7b", "nTx": 78, "previousblockhash": "00000000f625ccd6c8a031541e5d6b4c2cbc3313daad3245eaa2421558fe091d" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ...f 4..d cba5 f3c4 df74 31ee 7265 1ce5 1b67 f48a c5ad 5ede 944d fa8c .9a1 $ : 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 310356 sf: ...f 4..d .9a1 $ : 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 . 310356 sk: .9a1 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 . 310356 ak: eb87 c1 $ : Following is the jointkode 310356 jk: 09a1 eb87 c1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 7, "bytes": 1078, "usage": 7992, "total_fee": 0.00001078, "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 1082 ## Current epoch estimation is -4.93% ## 1908 of 2016, i.e. 94%, 108 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 333273.5938150213 $ bitcoin-cli -signet getnetworkhashps 2016 308447 350573.0694396333 $ bitcoin-cli -signet getnetworkhashps 2016 306431 347971.3775737199 $ bitcoin-cli -signet getblockstats 310356 { "avgfee": 2225, "avgfeerate": 4, "avgtxsize": 576, "blockhash": "0000000f400dcba5f3c4df7431ee72651ce51b67f48ac5ad5ede944dfa8c09a1", "feerate_percentiles": [ 0, 0, 0, 0, 1 ], "height": 310356, "ins": 92, "maxfee": 100000, "maxfeerate": 446, "maxtxsize": 25390, "medianfee": 154, "mediantime": 1782394978, "mediantxsize": 205, "minfee": 14, "minfeerate": 0, "mintxsize": 181, "outs": 742, "subsidy": 2500000000, "swtotal_size": 44409, "swtotal_weight": 154773, "swtxs": 77, "time": 1782397927, "total_out": 3437281742209, "total_size": 44409, "total_weight": 154773, "totalfee": 171385, "txs": 78, "utxo_increase": 650, "utxo_size_inc": 54584, "utxo_increase_actual": 614, "utxo_size_inc_actual": 50639 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 344758, "totalbytessent": 1885164, "timemillis": 1782397979015, "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 0 0 out 11 11 2 1 total 11 11 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 988, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 988 } } ### 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 82b27e77426c9cf3 a0a01dcc07ff2a95d66dac222813b0a2fb7fa0c4d4ab255ce01590ba4c52e5dc 9c42b131cbafed94 554e7d2514b9f16e994709e166dd3dd50f02ee2dec03150be416dd51ecdc5c24 1e317f594ee5ba7c 1f93a55a68306832c7fe70266b6a62c6f6b3583bc767b34a88446ec01c791812 58cf5f4588d41478 0a634a123d8a9e9dcd8cceb80459b0bbe8b88d0fdc5e9231f8b076c42705ff69 d4831807489046eb 63988d674e11ea627c7007e9dd410799c79594f1a4007c8fb2c5c520f9f79af0 42d6b7498898cae5 18fe7c405154c8a05af8e8d93eda78bf7c73de5bd809e0adb6a1be25298481c1 cb6d7e2c716bdfc5 47b33ee6e4375d6403d0d531ab23915cf82dcf78a86d48ef1890f57d6f9add32 efc846ec47160038 22d8af4ec93bd24547556280cf3a361682449fca9a421b3a29febca083009a77 613c72b9071be384 aced426f689d333c71324c90b351c06c122aacff80739ba8848959d3c66f3195 $ niceblack.sh $BH $BC ##### # ### # # ## # # # # # # # ##### # # # # # # # # # # # # ##### ##### ### ##### ####### ##### # # # # # # # # ##### ###### ###### # # # # # # # # # # ##### ##### ##### ,----- .123 4567 89ab cdef -----, | | | .. .... ...f 4..d cba5 .f | | 1. f3c4 df74 31ee 7265 1f | | 2. 1ce5 1b67 f48a c5ad 2f | | 3. 5ede 944d fa8c .9a1 3f | '=== ==== ==== ==== ==== ===' jk: .9a1 eb87 c1