⚙️ V15 FULL DECENTRALIZATION FORK — block 25,000 PoW · ConvergenceX RELEASE PUBLISHED · update before #24,900 · tap to expand
FULL DECENTRALIZATION — PROTOCOL READY
V15 final is deployed on mainnet.
Permissionless mining and node operation.
From block #25,000: no protocol treasury, and no operator control over the reserve funds.
Final consensus activation at block #25,000.

SOST already has a Proof-of-Work network that works.

Making it more complex than it needs to be only makes the protocol harder for everyone to run and use. That is why we pursued the full decentralization of the protocol — native PoW + ConvergenceX, no operator and no treasury. The consensus rules that enforce it are published and running on mainnet; they take effect at block #25,000.

⚠️ EXPERIMENTAL · NOT FORMALLY AUDITED. This protocol has been hardened empirically — through its live mainnet history and a disciplined trial → error → diagnosis → resolution engineering cycle, with every issue and fix recorded on-chain for full traceability. The result is a system that behaves reliably and securely in practice, but it has not undergone an independent third-party security audit. Run, mine and participate accordingly — at your own risk, with no guarantees.
MINER (direct)
50%
DTD distribution
50%
Gold Vault · PoPC
0%

Future emission that went to Gold Vault / PoPC is redirected to DTD. SOST is not backed by gold — SOST is backed by its own rules.

How DTD works

  • Permanent 1-of-3 cadence: the DTD share accumulates for 2 blocks and pays on the 3rd (lottery block).
  • No valid winner → not lost: it rolls forward and grows.
  • Eligibility: mined ≥1 block at any point in chain history — once an address has produced a block it stays in the eligible set.
  • Kept: recent-winner cooldown · anti-dominance gate · SbPoW gate · uniform per-address selection.

🏦 What happens to the existing Gold Vault + PoPC SOST

The SOST already accumulated in Gold Vault + PoPC are not kept as a treasury and not sold for listings. They are progressively returned to active miners through a Historical DTD Jackpot: about 100 SOST every ~288 blocks (~48 h) to the DTD winner, using the very same DTD eligibility rules, until the historical balance is exhausted (~3 years). It is a real protocol spend of those coins — no new emission. The reserve returns to the network, not to a founder. This is enforced, not promised: from block #25,000 those coins are locked by consensus and can only ever move through the canonical Historical DTD Jackpot transaction — a valid signature is no longer authority over them.

⚠️ V15 hard fork — mandatory node & miner update

V15 activates on SOST mainnet at block 25,000. This is a consensus-breaking upgrade. Every node operator and every miner must be running the final V15 release before block 24,900.
UPDATE DEADLINE:             BEFORE #24,900
FINAL RELEASE:               PUBLISHED — v0.4.1-v15-final
V15 CONSENSUS ACTIVATION:    #25,000
FIRST HISTORICAL JACKPOT:    #25,290
SECOND CONSENSUS ACTIVATION: NONE
V15 ACTIVATION AT #30,000:   NONE
#24,900 is a deadline, not a start date. Do not plan to upgrade between #24,900 and #25,000 — that gap is only 100 blocks, and SOST block times are highly variable. In the last seven days, 100 consecutive blocks have passed in as little as 5 h 50 min of wall-clock time.

What changes at #25,000. Emission becomes 50 % miner / 50 % DTD. Gold Vault and PoPC Pool stop receiving new emission (0 %). The balance already accumulated is locked by consensus and becomes spendable only through the canonical Historical DTD Jackpot transaction — a valid signature is no longer authority over those coins. The Historical DTD mechanism becomes part of the V15 rules at #25,000; its first scheduled jackpot payout is #25,290.

There is no second consensus activation at #30,000. DTD stays permissionless — no bond, no registration, no whitelist. One upgrade, one activation height: #25,000.

Binaries. Node operators must update sost-node; miners must update sost-miner. The canonical V15 release also includes matching sost-cli and sost-signtx, which should be updated where installed. The release will publish the final commit, SHA256 for all four binaries and the build manifest, so every operator can verify their binaries independently.

The final release is published. Release v0.4.1-v15-final · release commit bacd6281 · consensus commit 16b50a4b. Download the binaries and verify the SHA256 before installing: github.com/Neob1844/sost-core/releases/tag/v0.4.1-v15-final

🔑 SHA256 of the released binaries

Published here as well as on GitHub, so you can cross-check the two sources independently. If they ever disagree, do not install — ask on Telegram first.

8c8ff89740d1b43a8c925d7d9ec398e4989a3d4de5759785aa84e3945b79bc4c  sost-node
7379d34b74a34463745ad0885c170d2ca3bbd77efadf689aef6039ae34c1dace  sost-cli
1a21a962c67b400814edde214d52176c28538c35ae67c8a366d7fde6ad34b9ab  sost-miner
ac08c347ad315d3e1fb6bbbd49ebb6079ecdf5f1e914278a9df0f295e0fa67d9  sost-signtx

🔧 How to update

Option A — download the released binaries and verify them (recommended):

cd /tmp && R=https://github.com/Neob1844/sost-core/releases/download/v0.4.1-v15-final
for b in sost-node sost-cli sost-miner sost-signtx; do curl -LO $R/$b; done
curl -LO $R/SHA256SUMS_V15_FINAL.txt
sha256sum -c SHA256SUMS_V15_FINAL.txt        # must print OK for all four

sudo systemctl stop sost-node                # node operators only
sudo install -m 0755 sost-node sost-cli sost-signtx /opt/sost/build/
sudo install -m 0755 sost-miner /opt/sost/build/
sudo systemctl start sost-node
sha256sum /opt/sost/build/sost-node          # must equal the published hash

Option B — build from source and reproduce the release:

cd /opt/sost && git fetch origin && git checkout main && git pull --ff-only origin main
git rev-parse HEAD                            # must be bacd6281…
cmake -S . -B build -DSOST_ENABLE_PHASE2_SBPOW=ON -DSOST_TESTNET_FORKS=OFF \
      -DSOST_DEVNET_FORKS=OFF -DCMAKE_BUILD_TYPE=Release
cmake --build build --target sost-node sost-cli sost-miner sost-signtx -j$(nproc)
sudo systemctl restart sost-node

The three build flags are mandatory. A binary built without them will not follow mainnet consensus. Toolchain used for the published binaries: g++ 11.4.0, cmake 3.22.1, ld 2.38, glibc 2.35, OpenSSL 3.0.2 — a different toolchain produces a different SHA256 for the same source, which is expected; verify against the manifest.

Check afterwards: sost-node --version, getblockcount advancing, and getpeerinfo showing at least one peer.

Nodes and miners still running the earlier build will diverge from the main chain after activation.

⛏️ Start mining after you update

Miners must run with --realtime and --profile mainnet. Without --realtime the miner stamps block timestamps in the future and the node rejects them (“timestamp too far in future”) — your blocks are lost and mining stalls.

cd /opt/sost/build
./sost-miner --profile mainnet --realtime \
  --wallet /opt/sost/wallet.json --mining-key-label MINER \
  --genesis /opt/sost/genesis_block.json --chain /opt/sost/chain.json \
  --rpc 127.0.0.1:18232 --rpc-user YOUR_USER --rpc-pass YOUR_PASS \
  --threads $(nproc) --blocks 999999

Pre-SbPoW setups may use --address sost1… instead of --wallet/--mining-key-label. Full guide: getting started.

🔄 If your node forked during the recent network pause

Only if your node is on a minority fork — i.e. getblockhash <height> returns a different hash than the seed at that height. Do a clean, fully reversible resync — your old chain is kept, never deleted:

sudo systemctl stop sost-node
cd /opt/sost
cp chain.json chain.json.bak.$(date -u +%Y%m%d_%H%M%S)   # safety copy
mv chain.json chain.json.preresync                        # rollback point (kept)
sudo systemctl start sost-node                            # resyncs from the seed to the heaviest chain

# verify:  getblockcount climbs, and getblockhash at the fork height now matches the seed
# rollback: sudo systemctl stop sost-node && mv chain.json.preresync chain.json && sudo systemctl start sost-node

A fresh sync from the default seeds always lands on the canonical (heaviest) chain. Your node validates every block itself — it only adopts a chain that genuinely has more cumulative work.

⚛️ Atomic Swap stays in controlled founder testing (not a public DEX). V15 final is published and deployed; consensus activates at block #25,000. The final build, SHA256 hashes and exact upgrade steps are published above. Details: sostcore.com · t.me/SOSTProtocolOfficial
🎮
PRE-MARKET PHASE — NETWORK UNDER ACTIVE TESTING — PUBLIC LAUNCH: JUNE 16, 2026
SOST Protocol

Sovereign Stock Token
ConvergenceX Native L1 Blockchain
Proof-of-Work Protocol

CPU-friendly Native Layer 1 Proof-of-Work blockchain. Every block mined allocates 25% to an on-chain Gold Vault (tokenized precious metals) and 25% to Proof of Personal Custody rewards — hardcoded at genesis and enforced by the current consensus rules (any change requires a transparent, network-adopted protocol upgrade).

Important: SOST is a native crypto-asset created solely by Proof-of-Work mining. It does not represent shares, equity, debt, dividends, profit participation, voting rights, ownership of a company, ownership of mining assets, or any redemption or legal claim against the Gold Vault or any reserve. SOST currently has no market price and no associated value. Nothing here is investment advice or an offer of securities.

SOST · Sovereign Stock Token · ConvergenceX PoW · Native L1 Blockchain

MAINNET | No ICO · No Premine · No VCs · No Governance
Genesis Block
March 15, 2026 — 18:00:00 UTC
⚠ MAINNET TEST PHASE — All protocol hardening and stress testing is performed directly on mainnet (genesis March 15, 2026 · 18:00 UTC), not on a throwaway testnet. Because that work landed faster than expected, the originally planned launch date was brought forward — a decision publicly recorded on BitcoinTalk on April 5, 2026 (ANN thread). Independent miners and nodes are already active — current peak: 53 miners. Official public launch: June 16, 2026.
Official Public Launch
June 16, 2026 — 00:00:00 UTC
COMING SOON
SOST App for Android
Currently under review by the Google Play team.
Download will be available on Google Play Store once approved.
TRY WEB VERSION →
CHAIN STATUS · LIVE
connecting...
⏱ TIME  ·  ⚙ WORK  ·  ◆ SCARCITY  ·  ◈ STORE-OF-VALUE ARCHITECTURE
// FUNDAMENTALS — THE FOUR PILLARS

What gives SOST intrinsic value

Four properties hardcoded at genesis and enforced by the current consensus rules — any change requires a transparent, network-adopted protocol upgrade. Two enforce credibility (Time, Work). Two enforce value (Scarcity, Store-of-Value Architecture).

⏱ PILLAR 1 — TIME
10 min / block

Target spacing of 600 seconds144 blocks/day = F₁₂, the 12th Fibonacci number (12²). Difficulty self-corrects every block via the cASERT controller — bits_q (Q16.16) as primary regulator plus the ConvergenceX equalizer overlay (profiles E7–H35), driven by a 288-block average, bidirectional and integer-only. The schedule is sovereign by design: emission decays by e−1/4 each 131,553-block epoch (≈ Feigenbaum α) toward a hard cap of ≈4,669,201 SOST (≈ Feigenbaum δ). No bulk retargets.

⚙ PILLAR 2 — WORK
CPU · 8 GB RAM

Native ConvergenceX Proof-of-Work — not a fork of Bitcoin SHA-256, Monero RandomX, Ethereum Ethash, Equihash, CryptoNight, Scrypt, X11, or any prior algorithm. Memory-hard by construction: 4 GB dataset + 4 GB scratchpad = 8 GB total per mining thread. Per-block 256-op program changes every block. CPU-friendly by design, ASIC-hostile by construction. Verifier reconstructs sampled rounds in ~0.2 ms with 500 MB of RAM.

◆ PILLAR 3 — SCARCITY
4,669,201 SOST

Hard cap. The number is the first seven significant digits of Feigenbaum's δ (≈ 4.6692016…), the universal constant that governs the period-doubling route to chaos in dynamical systems — the same kind of system ConvergenceX itself solves. No premine. No ICO. No dev tax. No inflation lever. Forever. Emission decays per epoch with q = e-1/4 ≈ 0.7788.

Each epoch is exactly 2.5029 years — the Feigenbaum α constant. ~95% of the supply is mined in the first ~12 epochs (~30 years); the remaining tail decays asymptotically across deeper epochs:
· ~99% → ~18 epochs (~45 years)
· ~99.9% → ~28 epochs (~70 years)
· ~99.99% → ~36 epochs (~91 years)
· ~99.999% → ~46 epochs (~115 years)

The cap of 4,669,201 SOST is an asymptotic limit by mathematical construction — it is never strictly hit, only approached forever. That is the point: scarcity guaranteed by mathematics, not by a calendar.

◈ NO LONGER THE ACTIVE PLAN. At V15 (block #25,000) this store-of-value architecture has been temporarily superseded by the DTD (Deterministic Token Distribution): the 50%/block that would have funded gold is redirected to the DTD, and the reserve already accumulated is returned to participants via the DTD Jackpot. See DTD →
◈ PILLAR 4 — STORE-OF-VALUE ARCHITECTURE SUPERSEDED
Up to 50% → Gold

Up to half of total supply is gradually converted into gold-funded reserve value, by consensus, every block:

25%Proof of Personal Custody (PoPC): contracts collateralised by tokenised gold today, by physically self-custodied gold in the future, with on-chain cryptographic proof and operator privacy preserved.

25%Perpetual Gold Vault: protocol-funded, one-way purchases of tokenised precious metals (XAUT/PAXG today, broader basket later), accumulated forever in a Heritage Reserve. Observable reserve ratio — not a peg, not a redemption right.

No peg. No redemption right. No price floor. No investment return. No legal claim over the reserve.

Hardcoded at genesis · enforced by the current consensus rules · any change needs a network-adopted upgrade

// DTD — DETERMINISTIC TOKEN DISTRIBUTION

Value returns to the people who run the network

// UPDATED STATEMENT · STORE-OF-VALUE PLAN TEMPORARILY REPLACED

The original store-of-value plan — converting up to 50% of supply into a gold-funded reserve (Perpetual Gold Vault + PoPC gold custody) — is no longer the active plan. It has been temporarily superseded by the DTD at V15 (block #25,000).

Why: SOST pursues full decentralization — no operator, no treasury. A protocol-funded gold reserve leaned on third-party custodians and tokenized-gold issuers (XAUT/PAXG), adding custody, counterparty and regulatory risk that a sovereign, trustless chain should not carry. Instead of parking 50% of emission in an off-chain reserve, that value is now returned directly, on-chain and supply-neutrally to the participants who secure the network, through the DTD. The gold pages are kept for the historical record; nothing is deleted.

The DTD (Deterministic Token Distribution) is a consensus-run, per-draw distribution of the block’s value to eligible network participants — deterministic (the winner is computed by the rules, not chosen by anyone), keyless at the protocol layer, and supply-neutral (it moves coins, it never mints them). It runs today and intensifies at V15.

EMISSION SPLIT — BEFORE vs AT V15
BEFORE V15 (< #25,000) 50% — Miner (PoW) 25% Gold Vault 25% PoPC DTD draw: 1 of every 3 blocks AT V15 (≥ #25,000) 50% — Miner (PoW) · unchanged 50% — DTD (was Gold Vault + PoPC) DTD draw: EVERY block (3-of-3) Supply-neutral · height-anchored at #25,000 · miner share never changes
① DTD — THE BASE DRAW
1-of-3 → every block

The regular DTD distributes the block’s DTD share to an eligible participant, chosen deterministically by the consensus rules. Historically a draw lands on 1 of every 3 blocks (it went 2-of-3 at bootstrap #7,100, then 1-of-3 permanently from #12,100).

At V15 (#25,000) it moves to 3-of-3 — a draw on EVERY block, permanently. Same total value, 3× more & smaller payouts — maximum decentralization. Eligibility is gated (recent-winner cooldown, anti-dominance) so payouts spread across many participants.

WHO IS ELIGIBLE TO WIN

The winner is drawn deterministically and uniformly from the set of addresses that pass every gate (any one excludes an address):

Active signed miner — must be a real SbPoW-signed miner identity (its most recent block at height ≥ #7,100); enforced from #12,100. No signed identity, no eligibility.
Active miner (recency) — from #25,000, must have mined ≥1 block in the last 5,000 blocks; dormant addresses drop out until they mine again.
Recent-winner cooldown — excluded if it produced any of the previous 6 blocks (5 before V13) — stops back-to-back wins.
Anti-dominance cap — excluded if its share of the last 288 blocks is ≥ 10% (from #12,100) — caps concentration.
Uniform & keyless — every eligible address has the same probability; the winner is computed from chain state by the rules — never weighted by balance, stake or any payment.

No purchase, deposit, ticket, KYC or fiat requirement. A block’s own producer is not excluded from that block’s draw.

② DTD JACKPOT — THE HISTORICAL DRAIN
Every 288 blocks (~48h)

The DTD Jackpot returns the reserve already accumulated in the Gold Vault + PoPC addresses (~52,000 SOST at V15) back to DTD winners — instead of leaving it locked in an off-chain-referenced vault.

It fires on a 288-block cadence (~48 h), paying a jackpot of base 100 / cap 500 SOST, first at height #25,290, draining over ~3 years. It is supply-neutral (it only moves coins that already exist) and ends when the reserve is empty — after which only the normal per-block DTD remains.

WHO IS ELIGIBLE TO WIN

The Jackpot winner is the DTD draw winner of that jackpot block — it reuses the exact same eligibility set as the base draw (signed miner + recent-winner cooldown + anti-dominance + uniform, keyless selection).

No separate entry — there is no ticket, no purchase, no fiat/$-amount rule and no new selection engine.
Broad by design — a jackpot candidate must have mined ≥1 block in the last 20,000 blocks (~19 weeks) — a much wider window than the normal draw’s 5,000. The Historical Jackpot returns the vault to ~the whole network, not a recent few.
Must have an eligible winner — if a jackpot block has no eligible address, nothing is paid: the prize rolls over to the next jackpot and the reserve is left untouched.

DTD JACKPOT — CADENCE & DRAIN
#25,000 V15 #25,290first jackpot +288 blocks (~48h) each ~3 yearsreserve empty ~52,000 SOST drained to DTD winners · base 100 / cap 500 per jackpot · supply-neutral
◈ SUPPLY-NEUTRAL

The DTD and the Jackpot never mint new SOST. They redistribute value that consensus already assigned. Total supply stays capped at 4,669,201 SOST.

◈ NO OPERATOR

Winners are computed deterministically from chain state by the published rules. No treasury, no admin key, no discretion — height-anchored and enforced at #25,000.

◈ VERIFIABLE & OPEN

Every draw and jackpot is on-chain and auditable in the explorer. Consensus is open source (MIT). Canonical spec: V15 Historical DTD Jackpot.

Deterministic Token Distribution · activates at block #25,000 · supply-neutral · enforced by consensus · any change needs a network-adopted upgrade

// AUDIT & VERIFY
Every property above is checkable from public artefacts. SOST publishes a deliberately short list of claims it makes and a longer list of claims it does not make.
✓ CLAIMS YOU CAN CHECK TODAY
  • Open source from genesis — github.com/Neob1844/sost-core
  • No premine, no ICO, no dev tax — reproducible from genesis_block.json
  • Constitutional immutability — 50/25/25 split and hard cap live in include/sost/params.h
  • Observable gold reserve — Etherscan
  • SbPoW miner-identity binding — every block from #7,100 carries a Schnorr signature over its PoW commitment
  • V13 anti-dominance DTD gate at #12,100 — addresses with ≥ 10 % share of the previous 288 blocks are excluded from the DTD lottery until their rolling share drops below 10 %, and only miners with an SbPoW-signed block (most recent block at height ≥ 7,100) are eligible; logic lives in src/lottery.cpp::compute_lottery_eligibility_set and include/sost/params.h::is_dtd_dominant / is_sbpow_eligible
  • Deterministic build — rebuild from main and the output hash matches the running binary
  • Mainnet operation publicly logged — every incident in the BCT announcement thread
✗ NOT CLAIMED
  • Post-quantum signature safety — transaction/account signatures currently use ECDSA over secp256k1 with canonical LOW-S (the BIP-340 Schnorr signature is only the SbPoW block-identity binding, not the spend scheme); PQ migration is under research, not active on mainnet
  • Audited by an external security firm — not yet; independent reviewers welcome
  • Market price floor — no peg, no redemption claim against the gold reserve
  • Regulatory clearance in any jurisdiction — assess locally before participating
  • Listing on any centralised exchange — pre-market; outreach planned from 2026-06-16
  • Network maturity — chain is young, hashrate is concentrated, decentralisation is in progress
Full breakdown: Honest Assessment · comparative table: Positioning vs other PoW chains
// 00 — MILESTONES & STANDARDS

Milestones & Standards

SLIP-0044 Recognition June 15, 2026

SOST Protocol is officially registered in the BIP-44 / SLIP-0044 global cryptocurrency standard, merged by SatoshiLabs (creators of Trezor). SOST now has a reserved coin type in the registry used across the hardware- and software-wallet ecosystem.

coin_type (decimal)1869902947
coin_type (hex)0x6F747463
BIP-44 derivation pathm/44'/1869902947'/0'/0/0
StandardsSLIP-0044 registered (BIP-173/350 address format)
Reference walletcurrently BIP-39 (seed = key); full BIP-44 HD derivation planned for a future version with migration tooling
Referencesatoshilabs/slips #2004
// 01 — NETWORK PARAMETERS

Key Statistics

Max Supply
~4,669,201SOST
Feigenbaum δ × 10&sup6;
Block Time
10min
cASERT unified targeting
Initial Reward
7.8510SOST
Smooth exponential decay
Coinbase Split
50/25/25
Miner / Gold / PoPC
Algorithm
ConvergenceX
CPU-mined, 8GB mining / 500MB node
Genesis
2026-03-15
18:00:00 UTC
Gold Spot (XAUT/PAXG avg)
...
loading
SOST Price
...
loading
$
Emission Curve — Smooth Exponential Decay
Live Block Data

Target block spacing is 600 seconds (10 minutes), maintained by the cASERT unified difficulty adjustment system. The bitsQ primary controller handles hashrate changes; the equalizer prevents short-term emission acceleration.

View live block data on Explorer →
Reward Decay Schedule
EpochYearsReward / BlockDecay
00 – 2.57.85100863 SOST
12.5 – 5~6.1145 SOST× 0.7788
25 – 7.5~4.7613 SOST× 0.7788
37.5 – 10~3.7084 SOST× 0.7788
410 – 12.5~2.8882 SOST× 0.7788
512.5 – 15~2.2492 SOST× 0.7788

q = e-1/4 ≈ 0.7788 · Epoch = 131,553 blocks (≈2.5 years)

Constitutional Split — Every Block
50% Miner
25% Gold Funding Vault
25% PoPC Pool

Hardcoded at genesis. Immutable.

ConvergenceX v2.0 — Proof of Irreversible Convergence
4GB memory scratchpad · 100,000 gradient rounds · 32×32 matrix per block
256-op per-block program · 8 ALU operation types · memory-hard, CPU-friendly design
4 stability perturbation tests · Contraction factor c = 7/10 · CPU L3 cache optimized
Full technical details →
Genesis Block

Block 0 mined on March 15, 2026 at 18:00:00 UTC. First reward: 7.85100863 SOST split constitutionally between miner, Gold Funding Vault, and PoPC Pool.

View genesis block details →
Gold Price — Last 24 Hours
XAUT PAXG
View all markets →
SOST Gold Reference vs. Gold — Monthly, 2019–2026
SOST (1.14 mg gold)   Gold (1 mg)

Gold spot (XAU/USD), month-end close. The SOST line is the gold line × the fixed reference weight (1.14 mg) — it moves only with gold, never by decree. Gold reference, not a market price; once SOST is listed, its price evolves on its own, no longer tied to gold.

View all markets →
// 00b — CODEBASE FOOTPRINT

SOST vs BTC Core

Lines-of-code totals for the SOST stack as of 2026-06-21, side by side with the Bitcoin Core reference implementation. LOC is a rough engineering metric — not a quality, security or decentralisation metric — but it gives a sense of how much surface area the project covers.

ComponentSOSTBitcoin Core
SOST — Blockchain core (C++ / protocol)45,275~280–310k
SOST — C++ consensus & integration tests33,216
SOST — Front-end & explorer (HTML + JS + CSS)92,153
SOST — Materials Discovery Engine (Python, R&D repo)162,828
SOST — Protocol scripts, tooling & services (Python)60,951
SOST — Python test suite34,344
Documentation (markdown, all repos)40,467(separate)
Total code (excl. docs)~429,000~280–310k
Total code + docs~469,000

1. The blockchain core alone is 6–7× smaller than Bitcoin Core. Bitcoin Core has 15+ years of P2P hardening, scripting (Script + Taproot), thousands of tests, and dozens of network conditions handled in production. SOST does not, and pretending otherwise would be dishonest.

2. The combined total exceeds Bitcoin Core's LOC — but only because the stack is a vertical. It bundles a Materials Discovery Engine (graph neural networks / CGCNN), a hand-rolled front-end and block explorer, plus protocol tooling and extensive test suites — domains Bitcoin Core does not contain. This is not a like-for-like comparison; the comparable blockchain core is the 45k-line figure above.

3. What the numbers do show. SOST is a serious project (~469k LOC total across the stack) with depth beyond a typical altcoin fork — the consensus is custom (ConvergenceX + cASERT), the wallet model is in-house, the front-end is hand-rolled, and the protocol is integrated with a scientific system: the Materials Discovery Engine.

4. What the numbers do NOT show. Network effect, peer count, security audits, deployed value, decentralisation. Those are independent of LOC and Bitcoin leads on every one of them.

Counts measured 2026-06-21 with find ... | cat | wc -l over each component's own source tree, across the SOST stack — the public sost-core (sostcore.com) repository plus the private Materials Discovery Engine R&D repo — excluding build artefacts, vendored code, generated localized pages and bulk data files. The documentation line is a 2026-06-21 cross-repo count and is pending remeasurement. Bitcoin Core figure is the upstream bitcoin/bitcoin master snapshot, code + tests, no docs.

// 01 — OVERVIEW

What is SOST

Protocol Summary
IMMUTABLE BY DESIGN

SOST is a Proof-of-Work cryptocurrency where each mined block allocates 25% of issuance to an on-chain Gold Funding Vault by consensus. Conversions to XAUT/PAXG are operational actions executed with public attestations and auditable trails. The reserve is observable on Ethereum mainnet — not a peg, not a guarantee, but a verifiable commitment.

ConsensusConvergenceX PoW — memory-hard, CPU-friendly (reference miner CPU-oriented; protocol does not enforce CPU-only at consensus)
Monetary PolicySmooth exponential decay (q=e), Feigenbaum-derived constants, ~30 years to 95% supply
Reserve25% of every block → tokenized gold (XAUT, PAXG) on Ethereum
PoPC25% of every block → Proof of Personal Custody rewards (Phase 2+)
GovernanceNone. Consensus rules are immutable at genesis.
Unit1 SOST = 100,000,000 stocks
Address Formatsost1 + 40 hex chars (20-byte pubkey hash)
SignatureECDSA secp256k1 with LOW-S enforcement
// 02 — THREE PILLARS

Protocol Architecture

PILLAR 01
ConvergenceX PoW

Memory-hard proof-of-work requiring 8GB RAM per mining thread (4GB dataset + 4GB scratchpad). Nodes verify blocks in ~0.2ms with only ~500MB RAM. 100,000 sequential iterations and tight memory coupling raise the cost of a competitive GPU/ASIC port; no claim is made that one is impossible. cASERT unified targeting with bitsQ primary controller and equalizer profiles (E4–H12) for progressive hardening under fast-chain conditions.

Explore Technology →
PILLAR 02
Metals Reserve

Update — no longer active: at V15 (block #25,000) the Gold Funding Vault / PoPC gold-emission plan has been temporarily replaced by the DTD; the description below is kept for the historical record.

25% of every block’s coinbase is allocated to the Gold Funding Vault address by consensus. The Foundation reserves the right to allocate up to 50% of the vault's accumulated SOST exclusively to fund future centralized-exchange (CEX) listings; the remaining SOST funds gold reserves. Accumulated SOST is converted to XAUT/PAXG via TWAP pipeline and deposited into a Heritage Reserve on Ethereum mainnet. Observable reserve ratio — not a peg.

Explore Gold Reserve →
PILLAR 03
Proof of Personal Custody (PoPC)

25% of every block’s coinbase is allocated to the PoPC Pool address. Rewards distributed to holders who prove continued custody of their SOST through cryptographic attestation. Model A (self-custody bonds) and Model B (escrow timelock) available.

Explore PoPC →
// 02b — SOVEREIGN VALUE STACK

E2E, SOST DEX, PoPC Contracts

E2E
Encrypted Coordination

Signed offers, acceptances, cancellations, and settlement notices — off-chain, replay-resistant, cryptographically authenticated. Not chat: private economic coordination with canonical hashes and deterministic serialization.

Technical Details →
DEX
Gold Settlement Layer

SOST ↔ XAUT/PAXG and native precious-metal positions. Peer-to-peer, thin-chain/fat-edge architecture with deal state machine, watchers, and settlement daemon. Ethereum as minimal onboarding rail, SOST as sovereign center.

Technical Details →
PoPC
Contract Layer

Timelocked collateral for self-custodied gold participation. No admin key, no proxy, no pause, no emergency withdrawal. Constitutional and immutable — SOSTEscrow.sol as base.

Technical Details →
// 03 — GET STARTED

Quick Links

MINE
Start Mining SOST

Build from source, create a wallet, connect to the seed node, and mine your first block. CPU only — no GPU required.

Mining Guide →
EXPLORE
Block Explorer

Real-time dashboard with block details, difficulty tracking, emission curve, Gold Funding Vault and PoPC Pool charts, address lookup.

Open Explorer →
READ
Technical Whitepaper

Full protocol specification: ConvergenceX algorithm, monetary policy, reserve mechanics, PoPC design, security analysis, and consensus rules.

Read Whitepaper →
// 04 — DIRECTORY

Explore the Protocol