# on receiving block 300383 here $ date -u '+%Y-%m-%dT%H:%M:%SZ' 2026-04-16T20:26:02Z # as written in the block header 2026-04-16T20:25:51Z $ uptime # since last reboot 20:26:02 up 28 days, 11:18, 0 users, load average: 1.72, 1.52, 1.30 $ battery.sh 95%, Power Supply Online $ uname -smnr Linux singer 6.18.2-0-lts x86_64 $ grep ^MemAvailable /proc/meminfo MemAvailable: 1985556 kB $ du -h -d1 .bitcoin/signet 289M .bitcoin/signet/indexes 19M .bitcoin/signet/wallets 556M .bitcoin/signet/blocks 3.6G .bitcoin/signet/chainstate 4.5G .bitcoin/signet $ df -h . Filesystem Size Used Avail Use% Mounted on /dev/sda3 912G 434G 477G 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 300383 $ BH=$(bitcoin-cli -signet getblockhash 300383); echo $BH 0000000352ea71a4e2551558561d1deae6e02c60f4fd47e6569cfb64ab5a63fa $ bitcoin-cli -signet getblockheader 0000000352ea71a4e2551558561d1deae6e02c60f4fd47e6569cfb64ab5a63fa { "hash": "0000000352ea71a4e2551558561d1deae6e02c60f4fd47e6569cfb64ab5a63fa", "confirmations": 1, "height": 300383, "version": 536870912, "versionHex": "20000000", "merkleroot": "f52cb4f42d9bed93c03e82be109064934b383eb07bbbb059cdcf31fec77bedb1", "time": 1776371151, "mediantime": 1776366739, "nonce": 79101834, "bits": "1d1543df", "target": "0000001543df0000000000000000000000000000000000000000000000000000", "difficulty": 0.04702464282152162, "chainwork": "00000000000000000000000000000000000000000000000000000c9acfc773c0", "nTx": 183, "previousblockhash": "0000000bc9df4f7e9b41ebd64c72abffd57dbe5efa059ea7b8291494c42c7848" } $ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - - .... ...3 52ea 71a4 e255 1558 561d 1dea e6e. 2c6. f4fd 47e6 569c fb64 ab5a 63fa $ : 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 300383 sf: ...3 e6e. 2c6. 63fa $ : 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 . 300383 sk: 63fa 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 . 300383 ak: 8374 c1 $ : Following is the jointkode 300383 jk: 63fa 8374 c1 ### niceblack moved to the end $ bitcoin-cli -signet getmempoolinfo { "loaded": true, "size": 5, "bytes": 758, "usage": 15912, "total_fee": 0.00001096, "maxmempool": 100000000, "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 131 ## Current epoch estimation is +2.97% ## 2015 of 2016, i.e. 99%, 1 to go ## Current and previous two in numbers: $ bitcoin-cli -signet getnetworkhashps 2016 346462.8663674932 $ bitcoin-cli -signet getnetworkhashps 2016 298367 336459.3161092782 $ bitcoin-cli -signet getnetworkhashps 2016 296351 334019.4023418721 $ bitcoin-cli -signet getblockstats 300383 { "avgfee": 2309, "avgfeerate": 5, "avgtxsize": 698, "blockhash": "0000000352ea71a4e2551558561d1deae6e02c60f4fd47e6569cfb64ab5a63fa", "feerate_percentiles": [ 1, 1, 2, 12, 12 ], "height": 300383, "ins": 615, "maxfee": 147474, "maxfeerate": 12, "maxtxsize": 25152, "medianfee": 164, "mediantime": 1776366739, "mediantxsize": 205, "minfee": 21, "minfeerate": 0, "mintxsize": 142, "outs": 826, "subsidy": 2500000000, "swtotal_size": 127067, "swtotal_weight": 297605, "swtxs": 181, "time": 1776371151, "total_out": 3123965809839, "total_size": 127209, "total_weight": 298173, "totalfee": 420375, "txs": 183, "utxo_increase": 211, "utxo_size_inc": 14524, "utxo_increase_actual": 170, "utxo_size_inc_actual": 11413 } $ bitcoin-cli -signet getnettotals { "totalbytesrecv": 103452295, "totalbytessent": 2704548116, "timemillis": 1776371162557, "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 10 10 out 11 11 2 1 total 21 21 Local services: witness, compact filters, network limited, p2p v2 Local addresses: n/a $ bitcoin-cli -signet -addrinfo { "addresses_known": { "ipv4": 1539, "ipv6": 0, "onion": 0, "i2p": 0, "cjdns": 0, "total": 1539 } } ### v2_peerinfo are in v2_peerinfo-signet.txt $ bitcoin-cli -signet getpeerinfo | grep -w 'v2' | uniq -c 13 "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 b07a85f145b99acc9d4d5ba59a2394ddbc2df0b83b426721cebb5809000afa72 9550b66c9c9a91e5 15425ea4f148d1507f3c09828f04964ce1573056b00cff5e45d48e2c7331418d 4c5cd41e91d07bde ed12296075c9fc334c40627e4b77cd75d7a00165817f120a5dac29bbb017febb 6f13f8eeb1cbbceb ed754c6c755136e17083b79a61dee8984ff46f1f1dd50a03acee9a1d9a128d4f 38bf311b23e78a53 b1b8b20f3d5fd3a4644d7cd3a6d292be44e1752be93d5b05e534f168a9a3b465 f78ac7a6ec9d7800 a5162e07985a0ad6082d26cc8ce21edc09c1e7445b73b2731e6ae647a73e846d c783c4b8210e776c e5c71cc4d392f685f6cc0e62dcbb60f789a793827824eaa8f534b2a8aaa2eec3 54f960a8ec22498c 7a546d3938695e02ab89bbe9b688ee446a7fd1c0f0468de956ee5d1a4ca6e803 9d144ef2a896d595 ba99014d0534063312bbb3294c9cd2962803ccdd050c0950a000ef5d10f79c45 1bf41e7ef3adf47f 5358a6394db5c72138a94b2d2bee81c729458ec897619234f6e86bf7facde9e9 1f5e98550c1c83ed de125394abc754c21fe00397109bd80c74abe2fe025db1ea800db9149a7a4434 e30a20dc31bac477 5ee223b5a5f509786ee2181ebd6478c20cdff6f1162787ec9ef5eea013a6621f 60c0bf2fca9f2d1e b5f2fee9ff6388d0d34020c5e8acaa433740e745d465823293e80b2b59549893 $ niceblack.sh $BH $BC _____ ___ ___ |___ / / _ \ / _ \ |_ \| | | | | | | ___) | |_| | |_| | |____/ \___/ \___/ _____ ___ _____ |___ / ( _ )___ / |_ \ / _ \ |_ \ ___) | (_) |__) | |____/ \___/____/ ,----- .123 4567 89ab cdef -----, | | | .. .... ...3 52ea 71a4 .f | | 1. e255 1558 561d 1dea 1f | | 2. e6e. 2c6. f4fd 47e6 2f | | 3. 569c fb64 ab5a 63fa 3f | '=== ==== ==== ==== ==== ===' jk: 63fa 8374 c1