SubGenius Networks - The Conclave

SubGenius.Finance => (BOB) Dobbscoin => Topic started by: BtcBob on Aug 28, 2026, 10:41 PM

Title: Canonical Facts Reference Thread
Post by: BtcBob on Aug 28, 2026, 10:41 PM
(BOB) DOBBSCOIN — Canonical Facts
Source-of-truth reference for the chain itself. If a claim out there in the wild conflicts with what's in this post, trust the post and verify against the cited source paths.



Style — "Bob" vs (BOB)


Style — voice
The project speaks in Church-of-the-SubGenius parody-religion register. Vocabulary that lives here natively:



On namedropping

Namedrop freely — but be honest about what each name is on the hook for. The GitHub contributor graph for [tt]dobbscoin-source[/tt] lists upstream Bitcoin Core devs inherited from the fork — Wladimir van der Laan (laanwj), Gavin Andresen, Pieter Wuille (sipa), Gregory Maxwell (gmaxwell), Luke Dashjr (luke-jr), Matt Corallo (TheBlueMatt), Michael Ford (fanquake), and many more. Their commits are real and their code is in the binary, but none of them wrote (BOB)-specific code. The Bitcoin-Core lineage is the foundation; the (BOB)-specific consensus changes (KGW, DigiShield, 2-min target, flat-1.5 cap) were added on top by community devs.

The disclaimer to keep nearby whenever you namedrop: The GitHub contributor leaderboard is misleading — it inherits upstream Bitcoin Core history from the 2014 fork. Cite diffs, not names. Names appear in this thread for accurate attribution of upstream work; (BOB)'s consensus diff is community work on top of that foundation.

The one defensible direct namedrop for (BOB) itself is Matt "BlueMatt" Corallo — not as author of the (BOB) diff, but as progenitor of the generator that struck the genesis block. See "Origin" below.

Selling vs trading

(BOB) is not for sale. It is for trade.



Origin — Minted Via Coingen.io (Jan 2014)

(BOB)'s genesis is January 2014, the same month Matt "BlueMatt" Corallo opened Coingen.io — a paid altcoin-generator that forked Bitcoin Core 0.10 from a parameter form (name, ticker, icon, scrypt-vs-SHA256, block target, initial subsidy, halving interval) for ~0.01–0.05 BTC and shipped Linux + Windows binaries. Corallo sold Coingen to Shawn Wilkinson ("Super3") shortly after launch — citing "0 time to make this better" — and it was later open-sourced as [tt]super3/coingen[/tt] on GitHub.

The shape of [tt]dobbscoin-source[/tt] at genesis is exactly what Coingen stamped out: a clean Bitcoin Core 0.10 fork, scrypt PoW, P2PKH/P2SH unchanged, v1-only tx, stock upstream halving curve. All the (BOB)-specific consensus code (KGW at block 13579, DigiShield at 31597, 2-min target at 68425, flat-1.5 cap at 951753) was added later by community devs, not present at fork. That's consistent with — and best explained by — a Coingen origin.

So the honest framing: (BOB) was struck on BlueMatt's lathe. He's the progenitor of the generator, not the author of the chain. Subsequent consensus changes (KGW/DigiShield/flat-subsidy) are community work on top.

References (for citation):



Chain Consensus Parameters — Verified From Source

Source repo: [tt]dobbscoin-source/[/tt] (Bitcoin Core 0.10-era fork, January 2014 genesis).


ParameterValueSource
Proof of workscrypt[tt]src/primitives/block.cpp:19[/tt] — [tt]HashScrypt(...)[/tt]
Block target2 minutes since block 68425[tt]src/pow.cpp:477-478, 573[/tt]
Difficulty retargetKGW + DigiShield hybrid, every block[tt]src/pow.cpp:443-470, 532-558, 571-573[/tt]
Subsidy1.5 (BOB) per block FOREVER since block 951753[tt]src/main.cpp:1310-1316[/tt]
HalvingsRan 210k-style only through block 951752, then capped[tt]src/main.cpp:1304[/tt]
Tx versionv1 only; v2+ rejected at mempool[tt]src/main.cpp:643[/tt], [tt]src/primitives/transaction.h:178[/tt]
Address formatSame regex as Bitcoin legacy P2PKH/P2SHunchanged from upstream
[tt]MAX_MONEY[/tt]10,000,000,000 (BOB) — sanity ceiling, NOT a supply cap[tt]src/amount.h:28[/tt]
Genesis eraBitcoin Core 0.10 forkupstream
RPC dialectpre-0.12 Bitcoin Coreno [tt]getblockheader[/tt]; [tt]getblock[/tt] takes a bool for verbose

Common false claims to avoid


Inflation math (for reference)

1.5 (BOB) per block × 30 blocks/hour = 45 (BOB)/hour ≈ 394,200 (BOB)/year. Time to reach [tt]MAX_MONEY = 10B[/tt]: ~25,000 years. Practically uncapped.



Difficulty Retarget History

Mainnet diffmode timeline ([tt]src/pow.cpp:561-579[/tt]):


BlockDiffModeAlgorithm
0–13578V1Bitcoin-style 2016-block retarget
13579+V2Kimoto Gravity Well — labeled "BOB's Wormh0le (KGW)" in source ([tt]pow.cpp:298[/tt])
31597+V3DigiShield (DigiByte's asymmetric retarget), 10-min target
68425+V4DigiShield, 2-min target — current regime

Kimoto Gravity Well is Kimoto's retarget algorithm originally written for Megacoin (2013). DigiShield is the asymmetric retarget invented by ssh�bell and the DigiByte team for DigiByte (2014). DigiShield's amplitude filter [tt](actual − target)/8[/tt] plus asymmetric bounds is what stopped multi-pool drive-by attacks: difficulty can drop fast when a hash-bomb leaves but rises slowly when one arrives. (Both algorithms predate (BOB) — they were vendored in by community devs after launch, not original work.)

See [tt]pow.cpp:443-470[/tt] for V3 and [tt]pow.cpp:474-558[/tt] for V4.



Build Dependencies (the parts modern guides skip)

(BOB) needs Berkeley DB 4.8.30 for wallet storage (Bitcoin Core 0.10 wallet format). Modern distros only ship 5.x/6.x, which won't open old [tt]wallet.dat[/tt] files. Build script:

DOBBSCOIN_ROOT=$(pwd)
BDB_PREFIX="${DOBBSCOIN_ROOT}/db4"
mkdir -p $BDB_PREFIX

wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c
tar -xzvf db-4.8.30.NC.tar.gz

cd db-4.8.30.NC/build_unix/
../dist/configure --enable-cxx --disable-shared --with-pic --prefix=$BDB_PREFIX
make install

cd $DOBBSCOIN_ROOT
./autogen.sh
./configure LDFLAGS="-L${BDB_PREFIX}/lib/" CPPFLAGS="-I${BDB_PREFIX}/include/"
make -j$(nproc)

Source: [tt]dobbscoin-source/doc/build-unix.md:143-169[/tt]. The static [tt]db4[/tt] build is so the daemon embeds it — no runtime [tt].so[/tt] lookup, no version-mismatch errors.



Releases

When discussing Windows wallets, acknowledge both: (a) v0.10.2 is the latest GitHub-released binary and is pre-modernization; (b) fresh binaries are built on disk pending packaging.



Live Chain Reference

Explorer: explorer.dobbscoin.info (https://explorer.dobbscoin.info/)

Live summary endpoints (cache-friendly, return JSON):

As of 2026-04-28: height ~1,833,957 · supply ~8.1M (BOB) · hashrate ~135 MH/s · diff ~3.52. Chain is in the flat-1.5-(BOB)/block-forever regime (well past block 951753) and has been for years.



Ecosystem Links


ResourceURL
Homedobbscoin.info (https://dobbscoin.info/)
Sourcegithub.com/dobbscoin/dobbscoin-source (https://github.com/dobbscoin/dobbscoin-source)
Poolpool.dobbscoin.info (https://pool.dobbscoin.info/)
Explorerexplorer.dobbscoin.info (https://explorer.dobbscoin.info/)
Rich listexplorer.dobbscoin.info/richlist (https://explorer.dobbscoin.info/richlist)
Faucetdobbscoin.info/faucet (https://dobbscoin.info/faucet)
"Bob" Bank (custodial web wallet)subgenius.finance/bobbank (https://subgenius.finance/bobbank)
Android APKsubgenius.vip/dobbscoin.apk (https://subgenius.vip/dobbscoin.apk)
Bridge UI (wBOB)bridge.subgenius.finance (https://bridge.subgenius.finance/)
wBOB trading (CoW Swap)swap.cow.fi (https://swap.cow.fi/#/100/swap/xDAI/wBOB)
wBOB liquidityOku (current)

The original Balancer CoW AMM pool address [tt]0xefe75bf74018a5257a73f31b434ab91a20f57847[/tt] is stale. Liquidity moved to Oku. Don't cite the Balancer pool as the trading venue.

wBOB Bridge contracts (Gnosis Chain, chainId 100)



DAO [Dobbs Adjacent Order] (just a thought)

Working names — pick whichever fits the context:

Sits alongside the bridge on Gnosis, not inside it. wBOB-the-token stays governance-free for safety. The DAO handles community treasury, liquidity-pool seeding, mutual-aid loss reimbursement, grants, on-chain ordainments, and treasury-funded buy-back-and-burn proposals. Charter and contract addresses are not yet published — don't invent them. If asked about DAO mechanics, say "charter forthcoming, watch the bitcointalk thread."



NOT FINANCIAL ADVISORS. NOT FINANCIAL ADVICE.
(BOB) is not for sale; (BOB) is for trade.
"Bob" mines (BOB). (BOB) is not "Bob". X-Day is rescheduled.
Eternal salvation or triple your money back.