Monetary Policy

Feigenbaum Emission.
Constitutional Split.

No ICO. No premine. No VCs. Every SOST is mined through ConvergenceX proof-of-work. The emission schedule, coinbase split, and maximum supply are immutable at genesis — enforced by consensus, not governance.

HARD CAP | 4,669,201 SOST · Feigenbaum δ × 10&sup6;
SECTION 01

Supply Overview

Maximum Supply
4,669,201
SOST (hard cap by construction)
Initial Block Reward
7.851
SOST per block
Block Time
600s
10 minutes target
Epoch Length
131,553
blocks (~2.503 years)
Smallest Unit
1 stock
10&sup-;&sup8; SOST
95% Mined
~30 yrs
~12 epochs
No premine, no ICO, no VC allocation. The only way to create SOST is to mine a valid block via ConvergenceX proof-of-work. Any block that mints more than the subsidy for its height is invalid. Shortfall due to integer flooring remains permanently unissued.
SECTION 02

Coinbase Split

Every block reward is split by consensus into exactly three outputs. Hardcoded at genesis. Immutable forever. Any deviation makes the block invalid.

MINER 50%
GOLD VAULT 25%
PoPC POOL 25%
Constitutional Rule
CONSENSUS-CRITICAL
// Coinbase split — immutable at genesis q = reward // 4 gold = q // 25% to Metals Funding Vault popc = q // 25% to PoPC Pool miner = reward - gold - popc // 50% + remainder to miner // Invariant: miner + gold + popc == reward // Exactly 3 outputs in canonical order: miner, gold, popc
OutputRecipientAllocation
Output 0Miner's configured address50% + remainder
Output 1Metals Funding Vault (Gold-first)25% (q = reward // 4)
Output 2PoPC Pool25% (q = reward // 4)
MINER

50% + Remainder

Direct reward for ConvergenceX proof-of-work. The miner receives the full remainder after integer division, ensuring no stocks are lost.

GOLD VAULT

25% Gold Reserve

Accumulates SOST, periodically converted to XAUT/PAXG via auditable execution. Deposited into Heritage Reserve Vault on Ethereum mainnet. Sealed by default.

PoPC POOL

25% Custody Rewards

Funds Proof of Personal Custody rewards. Participants who prove gold custody earn from this pool. Slashed bonds are recycled back into it.

SECTION 03

Feigenbaum Emission

Smooth exponential decay with no cliff events. The decay factor q = e-1/4 produces a 9.03% annual reduction in block reward, implemented as integer-only fixed-point arithmetic for consensus determinism.

Emission Constants
CONSENSUS-CRITICAL
ConstantValueDescription
R0_STOCKS785,100,863Initial reward (7.85100863 SOST)
Q_NUM7,788,007,830,714,049Decay numerator
Q_DEN10,000,000,000,000,000Decay denominator (1016)
BLOCKS_PER_EPOCH131,553Feigenbaum α reference
TARGET_SPACING600 seconds10-minute block target
SUPPLY_MAX~4,669,201 SOSTFeigenbaum δ × 106
Fixed-Point Subsidy Calculation
INTEGER-ONLY

No floating-point arithmetic. Bit-identical results on any hardware, any language, any platform.

subsidy(height): epoch = height // 131,553 qpow = _qpow_floor(Q_NUM, epoch) return (R0 * qpow) // Q_DEN _qpow_floor(base, exp): result = Q_DEN x = base while exp > 0: if exp & 1: result = _qmul_floor(result, x) x = _qmul_floor(x, x) exp >>= 1 return result _qmul_floor(a, b): return (a * b) // Q_DEN
SECTION 04

Supply Projections

Total Supply Breakdown
HARD CAP
RecipientTotal SOSTShare
Miners2,334,60050%
Gold Vault1,167,30025%
PoPC Pool1,167,30025%
Maximum4,669,201100%
Vault Accumulation
PER VAULT (25%)
PeriodSOST per VaultNote
Year 1103,160 SOSTAnnual intake
Epoch 0 (years 0-2.5)258,210 SOSTFirst epoch total
30 years (~12 epochs)1,167,300 SOST~95% of lifetime allocation
SECTION 05

SOST vs Bitcoin

SOST follows Bitcoin's fundamental commitment to fixed supply and proof-of-work, while choosing smooth exponential decay over discrete halvings.

Emission Comparison
RESPECTFUL
PropertyBitcoinSOST
Max supply21,000,000 BTC4,669,201 SOST
Initial reward50 BTC/block7.851 SOST/block
Decay methodHalving every 210,000 blocksSmooth 9.03% annual decay
Decay eventsDiscrete cliff (50% overnight)Continuous (no cliff events)
Mining allocation100% to miner50% miner, 25% gold, 25% PoPC
Smallest unit1 satoshi (10-8 BTC)1 stock (10-8 SOST)
~95% emission~2036 (year 28)~2056 (year 30)
Supply capConsensus ruleSubsidy-by-height (upper-bounded)
SECTION 06

Feigenbaum Constants

SOST's monetary parameters are derived from the Feigenbaum universal constants — fundamental mathematical constants of chaos theory that appear in all dynamical systems exhibiting period-doubling cascades.

FEIGENBAUM δ

4.669201...

The rate of convergence of period-doubling bifurcations. Maximum supply = δ × 106 = 4,669,201 SOST.

FEIGENBAUM α

2.502907...

The scaling factor for bifurcation widths. Epoch length of 131,553 blocks corresponds to ~2.503 years.

Hard Cap by Construction
MATHEMATICAL PROOF

SOST enforces maximum supply by construction, not by tracking cumulative supply on-chain.

// Let B = BLOCKS_PER_EPOCH, 0 < q < 1 // Since floor(x) ≤ x: TotalIssued ≤ B × Σe≥0(R0 × qe) = B × R0 / (1 - q) ≤ SUPPLY_MAX_STOCKS // No other minting path exists. // Any block minting more than subsidy(height) is invalid. // Shortfall from flooring remains permanently unissued.
SECTION 07

Transaction Fees

Fee Parameters
NETWORK
ParameterValue
Default fee rate1 stock/byte
Minimum relay fee1,000 stocks (0.00001 SOST)
Fee calculationAutomatic based on transaction size
Fee distributionIncluded in coinbase, split across all 3 outputs
Coinbase maturity1000 blocks (~7 days)
Address Format
SOST1 PREFIX
PropertyValue
Formatsost1 + 40 hex characters
Derivation20-byte pubkey hash (ECDSA secp256k1)
SignatureECDSA secp256k1 with LOW-S (libsecp256k1)
Wallet encryptionAES-256-GCM + scrypt key derivation
SECTION 08

Epoch Emission Schedule

Complete supply distribution across all epochs — q = e-1/4 ≈ 0.7788

Full Emission Table
ALL EPOCHS
EpochYearsBlock RewardEpoch EmissionCumulative% of Cap
00 – 2.57.851 SOST1,032,8241,032,82422.12%
12.5 – 5.06.115 SOST804,3641,837,18839.34%
25.0 – 7.54.762 SOST626,4392,463,62752.76%
37.5 – 10.03.708 SOST487,8712,951,49863.21%
410.0 – 12.52.888 SOST379,9553,331,45371.36%
512.5 – 15.02.249 SOST295,9093,627,36277.68%
615.0 – 17.51.751 SOST230,4543,857,81682.62%
717.5 – 20.01.364 SOST179,4784,037,29486.49%
820.0 – 22.51.062 SOST139,7774,177,07189.44%
922.5 – 25.00.827 SOST108,8594,285,93091.80%
1025.0 – 27.50.644 SOST84,7794,370,70993.58%
1127.5 – 30.00.501 SOST66,0264,436,73594.99%
1230.0 – 32.50.390 SOST51,4214,488,15696.12%
1332.5 – 35.00.304 SOST40,0474,528,20396.98%
1435.0 – 37.50.237 SOST31,1894,559,39297.65%
1537.5 – 40.00.184 SOST24,2904,583,68298.17%
2050.0 – 52.50.042 SOST5,5804,639,50199.36%
2562.5 – 65.00.010 SOST1,2814,660,41299.81%
3075.0 – 77.50.002 SOST2944,666,48999.94%
40100 – 102.50.0001 SOST154,669,13599.998%
50125 – 127.50.000003 SOST0.44,669,201~100%
Values computed from consensus integer arithmetic (__int128 floor-division, matching subsidy.cpp). Hard cap verified: 4,669,201.548 SOST actual convergence ≤ 4,669,201.609 SOST (SUPPLY_MAX_STOCKS) — 0.061 SOST headroom from integer flooring. Source code is authoritative.
SECTION 09

SOST vs Bitcoin — Emission Mechanics

Detailed Comparison
HEAD TO HEAD
AspectBitcoinSOST
MechanismHalving every 4 years (abrupt)Exponential decay every 2.5 years (smooth)
Decay formulaR(n) = 50 × 0.5nR(n) = 7.85 × 0.7788n
Decay per cycle−50% (brutal cliff)−22.12% (smooth curve)
Annual decay~15.9%/year (stepped)~9.03%/year (continuous)
50% emitted~4 years~7.5 years
95% emitted~16 years~30 years
Final supply21,000,000 BTC (hard-coded)4,669,201 SOST (Feigenbaum δ × 10&sup6;)
Emission volatilityHigh — supply shocks every 4yrLow — predictable smooth curve
Miner incentivesCliff drops → capitulation riskGradual → stable planning
Mathematical basisSimple geometric seriesFeigenbaum chaos theory constant
SECTION 10

Honest Comparison

SOST

Advantages

Smooth 9% annual decay vs 15.9% stepped — less volatility
Miners can plan long-term — no sudden 50% income cliff
Mathematically elegant — Feigenbaum constant as supply cap
Lower miner capitulation risk after each epoch transition
Predictable ROI — participants know exact decay curve

BITCOIN

Advantages

50% emitted in 4 years — faster network effect
Halvings = natural media events every 4 years
"Cut in half" — instantly understandable narrative
15+ years of proven market behavior
Established miner ecosystem

SOST

Tradeoffs

Slower initial distribution — 95% in 30yr vs 16yr for BTC
No dramatic halving events — less organic media attention
Mathematical narrative requires education to communicate
No historical precedent — experimental model

BITCOIN

Tradeoffs

Supply shocks every 4 years → structural price volatility
Predictable pump/dump cycles tied to halvings
Year 2140: reward = 0 — security fully dependent on fees
"Number go up" speculation dominates store-of-value narrative

SECTION 11

SOST Emission per Epoch — Logarithmic Scale

Smooth exponential decay — no cliffs (each epoch ≈ 2.5 years)

SOST Epoch Emission
LOGARITHMIC
SECTION 12

Bitcoin Emission per Era — Logarithmic Scale

Abrupt 50% halving steps every 4 years

BTC Era Emission
LOGARITHMIC
SECTION 13

Emission Curve Comparison — SOST vs Bitcoin

Both normalized to % of total supply emitted over time

Normalized Supply Curve
% OF TOTAL
SECTION 14

Bitcoin Emission Timeline

For comparison — showing the abrupt halving model

BTC Halving Eras
REFERENCE
EraYearsBlock RewardEra EmissionCumulative% TotalEvent
02009 – 201250 BTC10,500,00010,500,00050.00%Genesis → First Halving
12012 – 201625 BTC5,250,00015,750,00075.00%First Bull Run
22016 – 202012.5 BTC2,625,00018,375,00087.50%ICO Boom
32020 – 20246.25 BTC1,312,50019,687,50093.75%Current era
42024 – 20283.125 BTC656,25020,343,75096.88%Next halving
52028 – 20321.5625 BTC328,12520,671,87598.44%
62032 – 20360.78125 BTC164,06320,835,93899.22%
102048 – 20520.04883 BTC10,25420,989,74799.95%
202088 – 20920.00005 BTC1020,999,99099.9999%
322136 – 2140~0 BTC~0~21,000,000100%Final fraction
Bitcoin's stepped model creates predictable market cycles tied to halvings. SOST replaces these supply shocks with a continuous exponential curve — same mathematical certainty, without the volatility cliff.