# on receiving block 297629 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-03-29T05:32:14Z # as written in the block header 2026-03-29T05:32:02Z $ uptime # since last reboot 05:32:14 up 9 days, 20:25, 0 users, load average: 2.03, 1.34, 1.69 $ battery.sh 100%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 2218344 kB $ du -h -d1 .bitcoin/signet 283M .bitcoin/signet/indexes 19M .bitcoin/signet/wallets 452M .bitcoin/signet/blocks 3.5G .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 v31.0rc2 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 297629 $ BH=$(bitcoin-cli -signet getblockhash 297629); echo $BH 0000000ee47a6cdfe7ac757648d49352a4e9379ff11ecb36f27e4e4ceb864c4f $ bitcoin-cli -signet getblockheader 0000000ee47a6cdfe7ac757648d49352a4e9379ff11ecb36f27e4e4ceb864c4f { "hash": "0000000ee47a6cdfe7ac757648d49352a4e9379ff11ecb36f27e4e4ceb864c4f", "confirmations": 1, "height": 297629, "version": 536870912, "versionHex": "20000000", "merkleroot": "483e55faa16ab0762d1aeda07be5e919bb5d4e4939fbdbc5f420a53a5050cdc8", "time": 1774762322, "mediantime": 1774758655, "nonce": 90327635, "bits": "1d156c72", "target": "000000156c720000000000000000000000000000000000000000000000000000", "difficulty": 0.04667675200745289, "chainwork": "00000000000000000000000000000000000000000000000000000c198f7fb6b4", "nTx": 10, "previousblockhash": "00000007812fce33cc42066abb1c3c1f30bb607bc6e7bf247111e6f81bb5fc2f" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ...e e47a 6cdf e7ac 7576 48d4 9352 a4e9 379f f11e cb36 f27e 4e4c eb86 4c4f $ : 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 297629 sf: ...e 4c4f $ : 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 . 297629 sk: 4c4f e1 $ : 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 . 297629 ak: 7352 e1 $ : Following is the jointkode 297629 jk: 4c4f 7352 e1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 21, "bytes": 3523, "usage": 26608, "total_fee": 0.00501343, "maxmempool": 100000000, "mempoolminfee": 0.00000100, "minrelaytxfee": 0.00000100, "incrementalrelayfee": 0.00000100, "unbroadcastcount": 0, "fullrbf": true, "permitbaremultisig": true, "maxdatacarriersize": 100000, "limitclustercount": 64, "limitclustersize": 101000, "optimal": true } $ gmm.sh 256 ## Current epoch estimation is +0.89% ## 1277 of 2016, i.e. 63%, 739 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 337005.5863323167 $ bitcoin-cli -signet getnetworkhashps 2016 296351 334019.4023418721 $ bitcoin-cli -signet getnetworkhashps 2016 294335 342715.3572314463 $ bitcoin-cli -signet getblockstats 297629 { "avgfee": 3888, "avgfeerate": 23, "avgtxsize": 249, "blockhash": "0000000ee47a6cdfe7ac757648d49352a4e9379ff11ecb36f27e4e4ceb864c4f", "feerate_percentiles": [ 0, 0, 1, 1, 200 ], "height": 297629, "ins": 11, "maxfee": 33950, "maxfeerate": 200, "maxtxsize": 433, "medianfee": 14, "mediantime": 1774758655, "mediantxsize": 191, "minfee": 14, "minfeerate": 0, "mintxsize": 142, "outs": 21, "subsidy": 2500000000, "swtotal_size": 2100, "swtotal_weight": 5352, "swtxs": 8, "time": 1774762322, "total_out": 637054646051, "total_size": 2242, "total_weight": 5920, "totalfee": 34998, "txs": 10, "utxo_increase": 10, "utxo_size_inc": 877, "utxo_increase_actual": 2, "utxo_size_inc_actual": 204 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 32242442, "totalbytessent": 706454188, "timemillis": 1774762334818, "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.0rc2 signet - server 70016/Satoshi:31.0.0/ ipv4 total block manual in 1 1 out 11 11 2 1 total 12 12 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 2619, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 2619 } } ### v2_peerinfo are in v2_peerinfo-signet.txt $ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c 7 "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 acbcec5aeca1972b 6070966e1b8392898ee4ee9be508aadbbb9a0519946a77e00bd9b806f9f86ce1 82b27e77426c9cf3 d8e0ee31f0ac508bf48b004f7d07252ae3c6e079e4c311ba346243eecdffe41c 2422645f1d448cf3 7f35f49524b8c8111a368d47f9170ec6beb37aa37f0bebc4b6cb75f7e6f488be 97f39e2ca78e7cad e45d999712aebf98d6680f493af80112d7bed19ce3ad1495995973d6c4f7d84f a4dda9c03849be5c 261fe4dc16582c23f96b7dcbe033b4cbf4c48716a4c61aab0d242a2f397be7ba 4c5cd41e91d07bde 616887b754502e974a68c799cdeabf4cae1cdf7278b5ab1b952fd0c5a4b7995d f6415eea566320dd dca970ab95c3cb5d78b836a0f7ea635c1afb427263ce395acfae384c31db40fa $ niceblack.sh $BH $BC ____ ___ _____ |___ \ / _ \___ | __) | (_) | / / / __/ \__, |/ / |_____| /_//_/ __ ____ ___ / /_|___ \ / _ \ | '_ \ __) | (_) | | (_) / __/ \__, | \___/_____| /_/ ,----- .123 4567 89ab cdef -----, | | | .. .... ...e e47a 6cdf .f | | 1. e7ac 7576 48d4 9352 1f | | 2. a4e9 379f f11e cb36 2f | | 3. f27e 4e4c eb86 4c4f 3f | '=== ==== ==== ==== ==== ===' jk: 4c4f 7352 e1