# on receiving block 884881 here
$ date -u '+%Y-%m-%dT%H:%M:%SZ'
2025-02-22T17:37:48Z
# as written in the block header
2025-02-22T17:37:24Z
$ uptime # since last reboot
17:37:48 up 20 days, 5:17, 0 users, load average: 0.32, 0.48, 0.59
$ battery.sh
95%, Power Supply Online
$ uname -smnr
Linux singer 6.6.37-0-lts x86_64
$ grep ^MemAvailable /proc/meminfo
MemAvailable: 1180900 kB
$ du -h -d1 .bitcoin/
1.1G .bitcoin/testnet4
10.9G .bitcoin/indexes
1.5G .bitcoin/signet
6.6M .bitcoin/wallets
97.7G .bitcoin/blocks
11.5G .bitcoin/chainstate
122.9G .bitcoin/
$ df -h .
Filesystem Size Used Available Use% Mounted on
/dev/sda3 911.4G 832.8G 77.6G 91% /
$ bitcoind -version
Bitcoin Core version v28.1.0
Copyright (C) 2009-2024 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 getblockcount); echo $BC
884881
$ BH=$(bitcoin-cli getblockhash 884881); echo $BH
0000000000000000000018af0d10b733d44c59c4baa84b53f92d63575b8bad31
$ bitcoin-cli getblockheader 0000000000000000000018af0d10b733d44c59c4baa84b53f92d63575b8bad31
{
"hash": "0000000000000000000018af0d10b733d44c59c4baa84b53f92d63575b8bad31",
"confirmations": 1,
"height": 884881,
"version": 536911872,
"versionHex": "2000a000",
"merkleroot": "06a0b5bcabdb18779204ddfe1f6a5cef648e8f0337c590169923fe645b7fbb75",
"time": 1740245844,
"mediantime": 1740241886,
"nonce": 581404361,
"bits": "17027726",
"difficulty": 114167270716407.6,
"chainwork": "0000000000000000000000000000000000000000affcaa22ff4f02e62c093bf4",
"nTx": 1838,
"previousblockhash": "000000000000000000009e394aebf0ee278fcf6c0c67a6a93b6a6873039a56bd"
}
$ echo $BH | tr 0 . | fold -w 4 | paste -d " " - - - -
.... .... .... ....
.... 18af .d1. b733
d44c 59c4 baa8 4b53
f92d 6357 5b8b ad31
$ : 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
884881 sf: .d1. ad31
$ : 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 .
884881 sk: ad31 a5
$ : 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 .
884881 ak: b23f a5
### niceblack moved to the end
$ bitcoin-cli getmempoolinfo
{
"loaded": true,
"size": 73128,
"bytes": 64980571,
"usage": 386479936,
"total_fee": 0.97195280,
"maxmempool": 500000000,
"mempoolminfee": 0.00001000,
"minrelaytxfee": 0.00001000,
"incrementalrelayfee": 0.00001000,
"unbroadcastcount": 0,
"fullrbf": true
}
$ gmm.sh
1495
## Current epoch estimation is -2.56%
## 1873 of 2016, i.e. 92%, 143 to go
## Current and previous two in numbers:
$ bitcoin-cli getnetworkhashps 2016
7.962570371979604e+20
$ bitcoin-cli getnetworkhashps 2016 883007
8.171059232651056e+20
$ bitcoin-cli getnetworkhashps 2016 880991
7.735413493438086e+20
$ bitcoin-cli gettxoutsetinfo muhash
{
"height": 884881,
"bestblock": "0000000000000000000018af0d10b733d44c59c4baa84b53f92d63575b8bad31",
"txouts": 178139637,
"bogosize": 13899246759,
"muhash": "c8580c4f961f5f5e450c2ecac112175c2e521fb48e249e8da75de5b730b723c4",
"total_amount": 19827535.46600021,
"total_unspendable_amount": 220.78399979,
"block_info": {
"prevout_spent": 9444.21045552,
"coinbase": 3.19213840,
"new_outputs_ex_coinbase": 9444.14331712,
"unspendable": 0.00000000,
"unspendables": {
"genesis_block": 0.00000000,
"bip30": 0.00000000,
"scripts": 0.00000000,
"unclaimed_rewards": 0.00000000
}
}
}
$ bitcoin-cli getblockstats 884881
{
"avgfee": 3654,
"avgfeerate": 6,
"avgtxsize": 1064,
"blockhash": "0000000000000000000018af0d10b733d44c59c4baa84b53f92d63575b8bad31",
"feerate_percentiles": [
4,
5,
5,
6,
9
],
"height": 884881,
"ins": 6874,
"maxfee": 146386,
"maxfeerate": 220,
"maxtxsize": 65861,
"medianfee": 1134,
"mediantime": 1740241886,
"mediantxsize": 224,
"minfee": 146,
"minfeerate": 1,
"mintxsize": 150,
"outs": 7233,
"subsidy": 312500000,
"swtotal_size": 1895373,
"swtotal_weight": 3750846,
"swtxs": 1640,
"time": 1740245844,
"total_out": 944414331712,
"total_size": 1955612,
"total_weight": 3991802,
"totalfee": 6713840,
"txs": 1838,
"utxo_increase": 359,
"utxo_size_inc": 16206,
"utxo_increase_actual": 286,
"utxo_size_inc_actual": 8929
}
$ bitcoin-cli getnettotals
{
"totalbytesrecv": 10240828217,
"totalbytessent": 18410750133,
"timemillis": 1740245868785,
"uploadtarget": {
"timeframe": 86400,
"target": 0,
"target_reached": false,
"serve_historical_blocks": true,
"bytes_left_in_cycle": 0,
"time_left_in_cycle": 0
}
}
$ bitcoin-cli -netinfo
Bitcoin Core client v28.1.0 - server 70016/Satoshi:28.1.0/
ipv4 npr total block manual
in 31 2 33
out 11 0 11 2 1
total 42 2 44
Local addresses: n/a
$ bitcoin-cli -addrinfo
{
"addresses_known": {
"ipv4": 61541,
"ipv6": 0,
"onion": 0,
"i2p": 0,
"cjdns": 0,
"total": 61541
}
}
$ halving.sh 884881
=====================================
Bitcoin Block Halving prediction
=====================================
bc=884881
gbt=1231006505
bbt=1740245844
This is average time to mine a block
(1740245844-1231006505)/884881
bts=575.4884142744456322989957
Now let's multiply that by 1050000
which is the block number of next
halving and get the prediction:
Sun Feb 27 13:11:55 UTC 2028
-------------------------------------
Next palindrome will be 885588
predicted to happen at this time:
Thu Feb 27 10:38:34 UTC 2025
-------------------------------------
Current mining epoch number is 438.
The next fortnight happens in block
885024 and probably around this time:
Sun Feb 23 16:28:58 UTC 2025
### v2_peerinfo are in v2_peerinfo-bitcoin.txt
$ bitcoin-cli getpeerinfo | grep -w 'v2' | uniq -c
8 "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
37c7f821c95ca7c7
bcc1181b947dbc3fdc898ea041c6c9b9ae9860d67e20b54edf2057e93027ec54
ae86567bbf607bde
5dc1501b03dfab1628f17c055ebb25bc0fe3ccd6c4abecfa7a0d1130e59a7546
ac6041e79c618f0a
e2e6c9ca15fcd5cfb6b3309f00318dc4f674ebf4bbb11eba794875e1a9a6df2d
426f50900be85d66
fc6935c3270dc6608db73db0edfce4982c0be2989cf4ca3b65fbbc156cbb5b81
8a22962041e588ff
5ae6ded0d8a0419a8cd341d05a56ce1f4d830fa2195135153b0d7c0b8027f622
8e57e42a793c5a67
0ab4249965d59454178636562b8039e4d2c632eab6074d1fa7467b329cd8d43c
11dae2d22f92c075
fcb0f027f7905d62c80a03fb4f4b49fa867a49606fcbb4060a037b31b6fe848e
877a14ee9f972501
ed189647fbc24f2c8efc73a259505901ba515005eba8285956cabe57789dc48b
$ niceblack.sh $BH $BC
___ ___ _ _
/ _ \ / _ \| || |
| (_) | (_) | || |_
> _ < > _ <|__ _|
| (_) | (_) | | |
\___/ \___/ |_|
___ ___ __
/ _ \ / _ \/_ |
| (_) | (_) || |
> _ < > _ < | |
| (_) | (_) || |
\___/ \___/ |_|
,----- .123 4567 89ab cdef -----,
| ^THATlineISaSAMPLE^ |
| .. .... .... .... .... .f |
| 1. .... 18af .d1. b733 1f |
| 2. d44c 59c4 baa8 4b53 2f |
| 3. f92d 6357 5b8b ad31 3f |
'=== ==== ==== ==== ==== ==='
ak: b23f a5