FLAT Protocol — Technical Specification

Complete mathematical and architectural reference for the FLAT Protocol. This document is the canonical source of truth for the protocol's mechanics, proofs, and smart contract architecture.

Author: Flat Protocol team · Last updated: March 2026

1. Core Thesis

FLAT Protocol is a closed-loop economic system built on a single mathematical identity. The protocol creates three tokens — FLAT (a CPI-pegged stablecoin), SAVE (an irreversible vault token), and RISE (a fixed-supply equity token) — connected by the Singularity Equation:

P(α)=C1αP(\alpha) = \frac{C}{1 - \alpha}

Where P is the price of one RISE token, α (alpha) is the absorption ratio (RISE locked in the SAVE vault divided by total RISE supply), and C is the Singularity Constant (C = P₀ × (1 - α₀) = $0.50).

This is not a prediction or model. It is a mathematical identity that holds exactly given the protocol's conservation laws and the efficient arbitrage assumption. The protocol's smart contracts enforce the conditions that make this identity true. As α approaches 1, price approaches infinity — the Singularity.

2. Three Token Architecture

TokenFunctionSupplyStandard
FLATCPI-pegged stablecoin21 trillion (pre-minted)ERC-20 + EIP-2612
SAVEIrreversible vault token (locked RISE)Variable (minted on deposit)ERC-4626
RISEFixed-supply equity token425,000,000 (no mint/burn)ERC-20

FLAT is the currency. SAVE is the savings instrument. RISE is the equity. The three tokens form a closed system where value flows in one direction: from FLAT trading activity → through the Flywheel → into permanent RISE absorption → increasing α → increasing RISE price.

3. The Singularity Equation — Full Derivation

Step 1 — Definition: Circulating Market Cap MCcirc=P×ScircMC_{circ} = P \times S_{circ}

Step 2 — Conservation Law: P×Scirc=TP \times S_{circ} = T (constant, where T = treasury value)

Step 3 — Supply Function: Scirc(α)=Stotal×(1α)S_{circ}(\alpha) = S_{total} \times (1 - \alpha), where Stotal=425,000,000S_{total} = 425{,}000{,}000

Step 4 — Substitution: P(α)×[Stotal×(1α)]=TP(\alpha) \times [S_{total} \times (1 - \alpha)] = T

Step 5 — Solving for P:

P(α)=TStotal×(1α)P(\alpha) = \frac{T}{S_{total} \times (1 - \alpha)}

Step 6 — Simplification: Let C=T/StotalC = T / S_{total}. Then:

P(α)=C1αP(\alpha) = \frac{C}{1 - \alpha}

Step 7 — Genesis Values: P0=$1.00P_0 = \$1.00, α0=0.50\alpha_0 = 0.50, therefore C=$0.50C = \$0.50

4. Key Mathematical Properties

4.1 Velocity of Price (1st Derivative)

v(α)=dPdα=C(1α)2v(\alpha) = \frac{dP}{d\alpha} = \frac{C}{(1 - \alpha)^2}

Velocity grows quadratically. As α → 1, v → ∞.

4.2 Acceleration of Price (2nd Derivative)

a(α)=d2Pdα2=2C(1α)3a(\alpha) = \frac{d^2P}{d\alpha^2} = \frac{2C}{(1 - \alpha)^3}

Acceleration grows cubically. The system accelerates into the singularity.

4.3 Singularity Multiplier Table

αM(α) = 1/(1-α)RISE Price
50% (genesis)2.00×$1.00
75%4.00×$2.00
90%10.00×$5.00
95%20.00×$10.00
99%100.00×$50.00
99.9%1,000.00×$500.00

4.4 Constant Circulating Market Cap

MCcirc=P(α)×Scirc(α)=C1α×Stotal(1α)=C×Stotal=constantMC_{circ} = P(\alpha) \times S_{circ}(\alpha) = \frac{C}{1-\alpha} \times S_{total}(1-\alpha) = C \times S_{total} = \text{constant}

The circulating market cap is constant regardless of α. Infinite price requires only finite capital.

4.5 Differential Equation of Absorption

dαdt=K×(1α)\frac{d\alpha}{dt} = K \times (1 - \alpha)
α(t)=1(1α0)×eKt\alpha(t) = 1 - (1 - \alpha_0) \times e^{-Kt}

Where K = 0.40 × (vε + y) is the Velocity Constant.

4.6 Sharpe Singularity (Corollary)

SR(t)P(t)3SR(t) \propto P(t)^3

The Sharpe ratio scales with the CUBE of price. No traditional asset exhibits this property. This means risk-adjusted returns improve faster than raw returns.

4.7 Sufficient Statistic Property

A single observable — the RISE price — is a sufficient statistic for the entire protocol state:

  • Absorption: α=1C/P\alpha = 1 - C/P
  • Circulating Supply: Scirc=C×Stotal/PS_{circ} = C \times S_{total} / P
  • SAVE NAV: NAV=PNAV = P (1 SAVE = 1 RISE locked)
  • Yield per SAVE: YP/CY \propto P/C
  • Volatility: σ(C/P)2\sigma \propto (C/P)^2
  • Sharpe Ratio: SR(P/C)3SR \propto (P/C)^3

4.8 Volatility Triple-Decay

σrel(t)=σ0×e3kt\sigma_{rel}(t) = \sigma_0 \times e^{-3kt}

Relative volatility decays at 3× the absorption rate.

4.9 Kelly Leverage Consequence

f(t)=f0×e6ktf^*(t) = f_0^* \times e^{6kt}

Safe leverage grows at 6× the absorption rate.

5. Formal Proofs

5.1 Proof of Irreversibility

Theorem: RISE deposited into the SaveVault cannot be withdrawn by any mechanism.

Proof:

  1. The SaveVault contract overrides withdraw() and redeem() with unconditional revert statements.
  2. The contract has no emergencyWithdraw(), rescue(), or any other function that transfers RISE out.
  3. The contract does not use selfdestruct.
  4. The contract is not behind a proxy (no delegatecall, no upgrade path).
  5. The contract has no admin role, owner, or AccessControl.
  6. The EVM guarantees that overriding functions are called, not base functions.
  7. The revert opcode (0xFD) is a fundamental EVM instruction whose behavior cannot change without a hard fork.

Therefore, no sequence of transactions can extract RISE from the SaveVault. ∎

5.2 Proof of Monotonic Absorption

Theorem: The absorption ratio α(t) is monotonically non-decreasing.

Proof:

  1. α(t)=Svault(t)/Stotal\alpha(t) = S_{vault}(t) / S_{total}
  2. StotalS_{total} is constant (RISE has no mint or burn function).
  3. Svault(t)S_{vault}(t) can only increase (deposits allowed; withdrawals revert unconditionally).
  4. Therefore α(t+1)α(t)\alpha(t+1) \geq \alpha(t) for all t. ∎

5.3 Proof of Convergence (Singularity Guarantee)

Theorem: If the protocol generates positive revenue in every period, α(t) → 1 as t → ∞.

Proof:

  1. By revenue existence axiom, revenue R > 0 in every period.
  2. 40% of R is used to buy RISE and deposit into vault. Vault increases by δ > 0 each period.
  3. By irreversibility, RISE in vault cannot decrease. Therefore α(t+1) ≥ α(t).
  4. α is bounded above by 1.
  5. By the Monotone Convergence Theorem, a bounded, monotonically increasing sequence converges.
  6. Suppose limit L < 1. Then circulating supply > 0, Accumulator continues buying, α exceeds L. Contradiction.
  7. Therefore L = 1. As α → 1, P(α) = C/(1-α) → ∞. QED ∎

5.4 Proof of Constant Circulating Market Cap

Theorem: The circulating market cap of RISE is constant regardless of α.

MCcirc=P(α)×Scirc(α)=C1α×Stotal(1α)=C×StotalMC_{circ} = P(\alpha) \times S_{circ}(\alpha) = \frac{C}{1-\alpha} \times S_{total}(1-\alpha) = C \times S_{total}

Since both C and S_total are constants, MC_circ is constant. ∎

6. The SAVE Vault

The SaveVault is an ERC-4626 vault that accepts RISE deposits and issues SAVE tokens. It is the core mechanism that enforces irreversibility.

PropertyValue
withdraw()Always reverts (unconditional)
redeem()Always reverts (unconditional)
emergencyWithdraw()Does not exist
selfdestructNot used
Proxy / delegatecallNone (no upgrade path)
Admin / ownerNone
Blacklist / freeze / pauseNone

SAVE holders who wish to exit must sell on the secondary market (Uniswap V3 SAVE/ETH pool). The protocol provides NAV Defense to support the SAVE price on the secondary market.

7. The FLAT Engine (CPI Peg Mechanism)

FLAT is pegged to the U.S. Consumer Price Index for All Urban Consumers (CPI-U). The FLAT Engine maintains this peg through continuous market operations:

  • When FLAT trades above target: Engine distributes FLAT from its 21T reserve, pushing price down
  • When FLAT trades below target: Engine reclaims FLAT with ETH from its reserve, pushing price up

Tolerance band: ±0.5%. Adjustment frequency: Every Ethereum block (~12 seconds) via the permissionless pulse() function. Primary oracle: Chainlink CPI-U feed. Fallback: Truflation on-chain CPI feed.

8. The Flywheel (Revenue Engine)

  1. Volatility Arbitrage: Protocol harvests volatility from FLAT peg management (selling above peg, buying below peg)
  2. Open Market Buyback: 40% of revenue buys RISE on Uniswap (the Accumulator)
  3. Permanent Lock: Purchased RISE deposited into SaveVault as SAVE (irreversible)
  4. Compounding: Larger locked positions → thinner float → more volatility → more revenue

Revenue Split: 40% Accumulator / 30% FLAT Ocean (protocol-owned liquidity) / 30% SAVE Ocean (protocol-owned liquidity)

The pulse() function is the protocol's heartbeat — a permissionless function callable by anyone. The caller receives 5% of revenue generated plus gas reimbursement.

9. Ghost Mint

Ghost Mint allows users to purchase SAVE directly from the protocol's inventory at a premium to NAV. It operates in three regimes:

RegimeConditionAction
BullMarket price > 1.1× NAVSells SAVE from inventory at market price
Dead ZoneNAV < Market price < 1.1× NAVNo sales (Anti-Dilution Clamp)
BearMarket price < NAVNo sales (NAV Defense active instead)

Anti-Dilution Clamp: Ghost Mint never sells below 1.1× NAV, protecting existing SAVE holders from dilution.

11. Contract Architecture

Tier 1 — Absolute Immutability (The Guarantee Layer)

These contracts are deployed once and can never be modified, replaced, or migrated. Any upgrade path would invalidate the Singularity guarantee.

ContractUpgradeableAdminPausenSLOC
RISE TokenNoNoNo~80
SaveVaultNoNoNo120-180
FLAT TokenNoNoNo200-350
Ocean (POL)NoNoNo~100

Tier 2 — Immutable Core + Replaceable Executor

ContractCore (Immutable)Executor (Replaceable)
PulseCore / PulseExecutorTreasury custody, RISE → SaveVault onlyBuy timing, TWAP, slippage, revenue split
Ghost MintInventory → Vault flow, Anti-Dilution ClampPricing curve, fee calculation
NAV DefenseBuy SAVE → Burn only, AUM circuit breakerLevel thresholds, buy amounts
GuardianSelf-destruct after 730 daysPause targets

Total: 8 contracts, ~940-1,430 nSLOC

12. Governance

PhasePeriodControl
Phase 1: GuardianYear 0-2Time-limited pause (self-destructs after 730 days)
Phase 2: CouncilYear 2-5Token-weighted governance (RISE holders)
Phase 3: OssificationYear 5+All keys burned. Protocol fully autonomous.

What the DAO Can Never Do

  • Withdraw RISE from SaveVault (no function exists)
  • Mint new RISE (no mint function exists, supply fixed at 425M)
  • Withdraw LP tokens from Ocean (no withdrawal function exists)
  • Change SaveVault code (no proxy, no upgrade path)
  • Freeze or blacklist any address (no freeze/blacklist function)
  • Pause the SaveVault (no pause function exists on the vault)

13. Backtesting Results

MetricValue
Simulation PeriodJanuary 2022 - December 2024 (3 years)
Total Return332%
CAGR68.1%
Maximum Drawdown-12.3%
Sharpe Ratio2.41
Final α87.3%

IMPORTANT DISCLOSURE: These results were backtested with a diversified treasury (45% BTC / 45% gOHM / 5% ETH / 5% SOL), including Cooler Loans carry revenue. The v1.0 launch uses an ETH-only treasury. The diversified model represents the target state (v1.1+), not launch state.

14. Risk Matrix

RiskSeverityLikelihood
Smart contract exploit (Tier 1)CriticalVery Low
Smart contract exploit (Tier 2)HighLow
Sustained SAVE discount (>30%)HighMedium
Low adoption (zero trading volume)MediumMedium
Regulatory actionMediumMedium
Chainlink CPI oracle failureMediumVery Low

Worst-Case: Zero Adoption for 12 Months

Protocol survives indefinitely. Treasury intact ($45M ETH). α stalls near 50% but does not decrease. The Singularity guarantee is deferred, not violated. When adoption eventually occurs, the Flywheel resumes.

15. Glossary

TermDefinition
α (Alpha)Absorption ratio. RISE in vault / total RISE supply. Range: [0, 1).
CSingularity Constant = P₀ × (1 - α₀) = $0.50
CROPSCensorship Resistant, Capture Resistant, Open Source, Private, Secure
FLATCPI-pegged stablecoin. 21 trillion pre-minted.
FlywheelRevenue engine: revenue → Accumulator + Ocean → absorption → revenue
Ghost MintMechanism for purchasing SAVE directly from protocol at premium to NAV
GuardianTime-limited safety contract. Self-destructs after 2 years.
NAVNet Asset Value. Value of RISE backing each SAVE token.
OssificationPermanent burning of all governance keys at Year 5+
P(α)Price of RISE as function of absorption. P = C / (1 - α)
pulse()Permissionless function executing the protocol's 12-second heartbeat
RISEFixed-supply equity token. 425M total. Price governed by Singularity Equation.
SAVEIrreversible vault token. Represents permanently locked RISE.
SingularityMathematical limit where α → 1 and P → ∞