# on receiving block 317339 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-08-12T07:16:38Z # as written in the block header 2026-08-12T07:16:26Z $ uptime # since last reboot 07:16:38 up 46 days, 23:48, 0 users, load average: 2.45, 3.37, 3.46 $ battery.sh 168%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1864952 kB $ du -h -d1 .bitcoin/signet 329M .bitcoin/signet/indexes 21M .bitcoin/signet/wallets 494M .bitcoin/signet/blocks 4.1G .bitcoin/signet/chainstate 4.9G .bitcoin/signet $ df -h . Filesystem Size Used Avail Use% Mounted on /dev/sda3 912G 436G 476G 48% / $ bitcoind -version Bitcoin Core daemon version v31.99.0-gff01e5af948d11f2c44aac032591fd621ee6997b 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 317339 $ BH=$(bitcoin-cli -signet getblockhash 317339); echo $BH 00000008b7431a82e8acfd337b943d9276d9f1930c89102c35a8deda7f3e593f $ bitcoin-cli -signet getblockheader 00000008b7431a82e8acfd337b943d9276d9f1930c89102c35a8deda7f3e593f { "hash": "00000008b7431a82e8acfd337b943d9276d9f1930c89102c35a8deda7f3e593f", "confirmations": 1, "height": 317339, "version": 536870912, "versionHex": "20000000", "merkleroot": "89b08036b88cd75d6d966edaccd6d3b18538c73c927ddb0fd22dd6f0a895a8e2", "time": 1786518986, "mediantime": 1786515766, "nonce": 68208286, "bits": "1d146a9f", "target": "000000146a9f0000000000000000000000000000000000000000000000000000", "difficulty": 0.04897927153283035, "chainwork": "00000000000000000000000000000000000000000000000000000fcb408f5d94", "nTx": 470, "previousblockhash": "000000023599371cace8d5d5d6304955357fb5405e3d9620f23d8f239f374551" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ...8 b743 1a82 e8ac fd33 7b94 3d92 76d9 f193 .c89 1.2c 35a8 deda 7f3e 593f $ : 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 317339 sf: ...8 .c89 1.2c 593f $ : 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 . 317339 sk: 593f 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 . 317339 ak: a8cc c1 $ : Following is the jointkode 317339 jk: 593f a8cc c1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 27242, "bytes": 13294805, "usage": 89799856, "total_fee": 0.30219472, "maxmempool": 300000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 1, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 25, "limitclustersize": 101000, "optimal": true } $ gmm.sh 208 ## Current epoch estimation is +1.8% ## 827 of 2016, i.e. 41%, 1189 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 356820.0021050122 $ bitcoin-cli -signet getnetworkhashps 2016 316511 350509.8283946097 $ bitcoin-cli -signet getnetworkhashps 2016 314495 343484.4943123722 $ bitcoin-cli -signet getblockstats 317339 { "avgfee": 2524, "avgfeerate": 4, "avgtxsize": 1017, "blockhash": "00000008b7431a82e8acfd337b943d9276d9f1930c89102c35a8deda7f3e593f", "feerate_percentiles": [ 2, 3, 3, 6, 6 ], "height": 317339, "ins": 1699, "maxfee": 393110, "maxfeerate": 149, "maxtxsize": 125377, "medianfee": 628, "mediantime": 1786515766, "mediantxsize": 255, "minfee": 140, "minfeerate": 1, "mintxsize": 142, "outs": 2582, "subsidy": 2500000000, "swtotal_size": 477285, "swtotal_weight": 990951, "swtxs": 468, "time": 1786518986, "total_out": 3270410021340, "total_size": 477427, "total_weight": 991519, "totalfee": 1184212, "txs": 470, "utxo_increase": 883, "utxo_size_inc": 67207, "utxo_increase_actual": 845, "utxo_size_inc_actual": 62082 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 263891201, "totalbytessent": 2829490757, "timemillis": 1786518998697, "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.99.0-gff01e5af948d11f2c44aac032591fd621ee6997b signet - server 70017/Satoshi:31.99.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": 24770, "ipv6": 5, "onion": 0, "i2p": 0, "cjdns": 0, "total": 24775 } } ### 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 cbc728f43b886394 db4861e81bda24b13bd3da8a72b18e8af20e4ccc65a5a42e13bcde8cc6ef9a1d 9dd9a235d6413c9f 4b7e5d63a784b0397bc4a9d6b7818f8dea39a66989a1712a86ba7d4912897c0e 82b27e77426c9cf3 889272f987b97c3327b239d04f8b8e7d1db31770f9fba96f1ff3f5c710f5cfaf cb6d7e2c716bdfc5 2081d68198107154cf5fe5980f0a94bc5e3a68f437c3876015332f0ca580392f fe30c0bc8262dfa9 3af0d1ff0dc73b7c2a4d0559b6ab115beb1cb8d98e8f90dee7dc34ee41fcd5fe 33dacef5a00c7b85 59dff918ff861ed515d11b4986fe4f48a55efba4bce50442209e3af3af5c1ea7 35e2a230edacc2ab 766c92a3c3339af662b99a546182acb5073b0505db89bb59db5966bb232a12ab 7338c08342087a97 1e0becd51e3633d709109588001c9f0ced0f78c01d11feb6016f0fabcf3c3ba7 881eb682af8d6a67 266fba865a68905e52f2c82a8714dc7878295089bcd4dd0671ebe0be7ac5cfdb 9c7da292d5c1f1b0 97352b528886d23c094cefea5492e2d7c1802c53b28510819ccf00ec8afb76fc $ niceblack.sh $BH $BC _____ _ _____ __________ ___ |___ // |___ | |___ /___ // _ \ |_ \| | / / |_ \ |_ \ (_) | ___) | | / / ___) |__) \__, | |____/|_|/_/ |____/____/ /_/ ,----- .123 4567 89ab cdef -----, | | | .. .... ...8 b743 1a82 .f | | 1. e8ac fd33 7b94 3d92 1f | | 2. 76d9 f193 .c89 1.2c 2f | | 3. 35a8 deda 7f3e 593f 3f | '=== ==== ==== ==== ==== ===' jk: 593f a8cc c1