# on receiving block 302774 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-05-03T12:55:41Z # as written in the block header 2026-05-03T12:54:53Z $ uptime # since last reboot 12:55:41 up 45 days, 3:48, 0 users, load average: 1.30, 1.41, 1.35 $ battery.sh 156%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2074852 kB $ du -h -d1 .bitcoin/signet 294M .bitcoin/signet/indexes 19M .bitcoin/signet/wallets 465M .bitcoin/signet/blocks 3.6G .bitcoin/signet/chainstate 4.4G .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 302774 $ BH=$(bitcoin-cli -signet getblockhash 302774); echo $BH 00000009f4190acdcafb78c65b5c8f34192dd49962ae3221ce131afdfdc7afd3 $ bitcoin-cli -signet getblockheader 00000009f4190acdcafb78c65b5c8f34192dd49962ae3221ce131afdfdc7afd3 { "hash": "00000009f4190acdcafb78c65b5c8f34192dd49962ae3221ce131afdfdc7afd3", "confirmations": 1, "height": 302774, "version": 536870912, "versionHex": "20000000", "merkleroot": "01440b4193c351413fdde21741cd150d780323b4d11b6dcd47644b98c8b16170", "time": 1777812893, "mediantime": 1777808754, "nonce": 389311270, "bits": "1d14e3c0", "target": "00000014e3c00000000000000000000000000000000000000000000000000000", "difficulty": 0.04786986933757188, "chainwork": "00000000000000000000000000000000000000000000000000000d0e6562473c", "nTx": 228, "previousblockhash": "00000004aea30cc0a380c0ca3c40fbc69e65f004a7ac91f02c8b82a5f15b863e" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ...9 f419 .acd cafb 78c6 5b5c 8f34 192d d499 62ae 3221 ce13 1afd fdc7 afd3 $ : 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 302774 sf: ...9 .acd afd3 $ : 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 . 302774 sk: afd3 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 . 302774 ak: 8349 d1 $ : Following is the jointkode 302774 jk: afd3 8349 d1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 12, "bytes": 2846, "usage": 23504, "total_fee": 0.00003589, "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 182 ## Current epoch estimation is +0.12% ## 374 of 2016, i.e. 18%, 1642 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 342885.5522624357 $ bitcoin-cli -signet getnetworkhashps 2016 302399 342474.190435588 $ bitcoin-cli -signet getnetworkhashps 2016 300383 346462.8663674932 $ bitcoin-cli -signet getblockstats 302774 { "avgfee": 5881, "avgfeerate": 11, "avgtxsize": 638, "blockhash": "00000009f4190acdcafb78c65b5c8f34192dd49962ae3221ce131afdfdc7afd3", "feerate_percentiles": [ 1, 1, 3, 3, 30 ], "height": 302774, "ins": 477, "maxfee": 572509, "maxfeerate": 3459, "maxtxsize": 43956, "medianfee": 269, "mediantime": 1777808754, "mediantxsize": 370, "minfee": 14, "minfeerate": 0, "mintxsize": 142, "outs": 2101, "subsidy": 2500000000, "swtotal_size": 144757, "swtotal_weight": 451624, "swtxs": 226, "time": 1777812893, "total_out": 3198802615807, "total_size": 144899, "total_weight": 452192, "totalfee": 1335019, "txs": 228, "utxo_increase": 1624, "utxo_size_inc": 127650, "utxo_increase_actual": 1583, "utxo_size_inc_actual": 123180 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 56490956, "totalbytessent": 1091125995, "timemillis": 1777812941606, "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 npr total block manual in 2 1 3 out 12 0 12 3 1 total 14 1 15 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 1083, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 1083 } } ### 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 959805e418b0c448c5b99a4aa9818b2780d45a2e24eead621b30a1c69117dc08 efc846ec47160038 23515fad66cae576bfb0a2e75e183ba5162a0971a27556aa2c5526b2f14a446a acbcec5aeca1972b 7f6ee8916e190c93e3be93d2f4cc5a7880fea6f67179f18623aca8139847120e ef33457b76d2201b 8541f703a08ac477cc6d03e73473cbbc7f7056779794cb46bd97b68b9c4cbb41 9c42b131cbafed94 3ecfcffdab1379ab706a1f30c80efe50bfb84bc45059b843337e7dae015ece3b 40ec672fa3c05877 0ff67211b52f61b884adf54811329e8624c984541eb70aaea3f2bf967ee3e4ef b238f700f288e393 9e7a7b0e9c62c701bcc16e77954300df01af15cd02eefdff2bbd02dbbf48d46a 9550b66c9c9a91e5 6d49f06a840a446f3868bb055fbf2288eb9ad66a8c893700329fd3b6c80a6dbd 7e7f655db7dab3c7 afbeb3e6dea919acda79e5dc75987e86a4c71d361eb59d27679d7edec3cfdb3b d57abaa8f3aee3f9 957b6e38f83e927362e2300f23a7cf998c921c659a47fcaea300c42c8a34a016 $ niceblack.sh $BH $BC | | | _ \ | _ \ _| | / _.__/_|\___/\__|_\_\ __ / \_ )__ /__ /| | _ \ ( | / / /__ _| ___/\__/___| _/ _/ _| ,----- .123 4567 89ab cdef -----, | | | .. .... ...9 f419 .acd .f | | 1. cafb 78c6 5b5c 8f34 1f | | 2. 192d d499 62ae 3221 2f | | 3. ce13 1afd fdc7 afd3 3f | '=== ==== ==== ==== ==== ===' jk: afd3 8349 d1