Index
MIC Currency Model¶
MIC: Mobius Integrity Credits
Type: Proof-of-Negentropy Token
Status: Production prototype
Overview¶
MIC (Mobius Integrity Credits) is a novel currency that mints from verified integrity improvements rather than scarcity or fiat decree. It represents the first implementation of Proof-of-Negentropy consensus.
Core Concept¶
Traditional Currency Backing¶
| Currency Type | Backing | Problem |
|---|---|---|
| Gold standard | Scarcity | Deflationary, arbitrary |
| Fiat | Government decree | Inflationary, trust-based |
| Bitcoin | Proof-of-Work | Energy waste, no intrinsic value |
| Stablecoins | Collateral | Centralization, counterparty risk |
MIC Innovation¶
MIC is backed by verified order creation (negentropy).
MIC_minted = k × max(0, I - τ)
Where:
- I = Mobius Integrity Index
- τ = Threshold (0.95)
- k = Scaling constant
Key Properties: 1. Value-backed: Minted only when integrity increases 2. Inflation-resistant: Supply tied to real value creation 3. Democratic: Anyone can earn through integrity 4. Verifiable: Cryptographic attestation of integrity
Economic Model¶
Minting Function¶
Where T = time period
Burning Function¶
Entropy increases burn MIC proportionally.
Equilibrium¶
At equilibrium:
Tokenomics¶
Supply Dynamics¶
| Parameter | Value | Rationale |
|---|---|---|
| Initial supply | 0 | Mint-from-nothing |
| Maximum supply | Unlimited | Tied to integrity growth |
| Minting rate | Variable | f(MII improvement) |
| Burn rate | Variable | f(entropy increase) |
Distribution¶
| Recipient | Allocation | Mechanism |
|---|---|---|
| Integrity creators | 70% | Direct minting |
| Protocol treasury | 20% | Governance funding |
| Ecosystem development | 10% | Grants, partnerships |
Governance¶
- Token voting: MIC holders vote on protocol changes
- Quadratic voting: Prevents plutocracy
- Conviction voting: Rewards long-term holding
- Delegation: Technical voters can delegate
Implementation¶
Smart Contract Architecture¶
// SPDX-License-Identifier: CC0-1.0
pragma solidity ^0.8.0;
contract MobiusIntegrityCredits {
mapping(address => uint256) public balances;
mapping(address => uint256) public lastMII;
uint256 public constant THRESHOLD = 950; // 0.95 * 1000
uint256 public constant K = 1000000; // Scaling factor
function mint(address recipient, uint256 mii) external {
require(mii >= THRESHOLD, "MII below threshold");
uint256 amount = K * (mii - THRESHOLD) / 1000;
balances[recipient] += amount;
lastMII[recipient] = mii;
emit Mint(recipient, amount, mii);
}
function burn(address from, uint256 entropyIncrease) external {
uint256 burnAmount = balances[from] * entropyIncrease / 1000;
balances[from] -= burnAmount;
emit Burn(from, burnAmount, entropyIncrease);
}
}
Database Schema¶
CREATE TABLE mic_transactions (
id UUID PRIMARY KEY,
timestamp TIMESTAMP NOT NULL,
type VARCHAR(10) NOT NULL, -- 'MINT' or 'BURN'
address VARCHAR(42) NOT NULL,
amount NUMERIC(18,8) NOT NULL,
mii_score NUMERIC(3,2),
attestation_hash VARCHAR(64) NOT NULL
);
CREATE TABLE mic_balances (
address VARCHAR(42) PRIMARY KEY,
balance NUMERIC(18,8) NOT NULL DEFAULT 0,
last_mii NUMERIC(3,2),
last_update TIMESTAMP NOT NULL
);
Use Cases¶
1. Government Incentives¶
Application: Federal agency integrity bonuses
Benefit: Aligns employee incentives with institutional integrity
2. Corporate Governance¶
Application: ESG-linked compensation
Company achieves MII = 0.96
Mints: 100,000 MIC
Distribution: Executive compensation, shareholder dividends
Benefit: Creates tangible value from governance improvements
3. Individual Participation¶
Application: SML daily reflection rewards
Benefit: Compensates citizens for democratic participation
4. International Coordination¶
Application: Daedalus Protocol compliance
Benefit: Incentivizes global coordination
Economic Analysis¶
Inflation Resistance¶
Traditional currency: Central bank can print arbitrarily MIC: Can only mint with verified integrity improvement
Estimated maximum: 5-10% annually (constrained by how fast integrity can improve)
Value Stability¶
MIC value is anchored to: 1. Negentropy creation cost: Effort to improve integrity 2. Economic benefit: Debt reduction from integrity 3. Market demand: Utility for governance participation
Expected volatility: Lower than traditional crypto (fundamental value backing)
Comparison to Bitcoin¶
| Aspect | Bitcoin | MIC |
|---|---|---|
| Minting | Energy expenditure | Integrity improvement |
| Supply cap | 21 million | Unlimited (tied to integrity) |
| Backing | Nothing (scarcity) | Negentropy (order creation) |
| Environmental | High impact | Positive impact |
| Utility | Store of value | Governance participation |
Regulatory Considerations¶
Classification¶
Not a security: MIC is earned through labor (integrity improvement), not investment
Not a commodity: MIC is not scarce in traditional sense
Utility token: MIC provides governance rights and service access
Compliance¶
| Jurisdiction | Approach |
|---|---|
| USA | Utility token under Howey test |
| EU | MiCA compliance as utility token |
| UK | FCA utility token classification |
Tax Treatment¶
Earned MIC: Treated as income MIC spending: May trigger capital gains Burning: Potential loss deduction
Risks¶
Technical Risks¶
| Risk | Probability | Mitigation |
|---|---|---|
| Smart contract bugs | Medium | Audits, formal verification |
| Oracle manipulation | Low | Multi-sentinel consensus |
| Network attacks | Low | Standard security practices |
Deflationary Sinks (C-150)¶
Grok's tokenomics review (2025-11-30) requested explicit, governance-bound sinks to keep MIC deflationary even during rapid adoption. Cycle C-150 adds three interoperable levers:
| Sink | Trigger | Effect | Reference |
|---|---|---|---|
| Entropy Tax (ETX) | Entropy spike (MII/GI drop >10 bps) | Auto-burn proportional to entropy delta | docs/04-TECHNICAL-ARCHITECTURE/economics/deflationary-sinks.md |
| Integrity Rebate Burn (IRB) | ≥5-cycle GI streak above baseline | 50% rebate payout / 50% burn | Same |
| Cycle-Lock Liquidity (CLL) | Voluntary MIC lock 3–12 cycles | Removes MIC from circulation, locks 10% reserve | Same |
- Oracle Hardening: ETX/IRB/CLL require medianized telemetry from ATLAS, AUREA, and ECHO. Divergence >25 bps pauses the sink and pings ZEUS for arbitration.
- Treasury Impact: ETX dampens short-term entropy, IRB rewards loyal high-integrity actors without growing supply, and CLL targets a 12–20% cycle-lock liquidity ratio (CLR) to stabilize macro liquidity.
- Governance Hooks: Risk coefficients, payout splits, and lock duration bands are adjustable via MIC quadratic voting so economists can tune policy without redeploying contracts.
- Grok Scorecard: Scarcity discipline jumped from B → A, incentive clarity B+ → A, and oracle resilience A- → A+ after the sinks were codified (see Grok impact table in the architecture spec).
These sinks preserve the proof-of-negentropy minting ethos while earning the A+ tokenomics grade recommended by Grok and ATLAS.
Economic Risks¶
| Risk | Probability | Mitigation |
|---|---|---|
| Gaming MII scores | Medium | Multi-sentinel verification |
| Inflation spiral | Low | Entropy-based burning |
| Liquidity crises | Medium | Treasury reserves |
Regulatory Risks¶
| Risk | Probability | Mitigation |
|---|---|---|
| Security classification | Low | Utility token structure |
| AML/KYC requirements | High | Compliance framework |
| Cross-border restrictions | Medium | Jurisdiction analysis |
Roadmap¶
Phase 1: Prototype (Current)¶
- Economic model design
- Smart contract prototype
- Security audit
- Testnet deployment
Phase 2: Pilot (2026)¶
- Municipal pilot (Boulder)
- Limited user base (10,000)
- Regulatory engagement
- Market maker integration
Phase 3: Scaling (2027-2028)¶
- Multi-city deployment
- Exchange listings
- International expansion
- Full decentralization
Phase 4: Maturity (2029+)¶
- Central bank integration
- Global adoption
- Protocol governance transition
- Sustainable equilibrium
Citation¶
@techreport{mobius2025mic,
title={MIC Currency Model: Proof-of-Negentropy Token Economics},
author={Judan, Michael},
year={2025},
institution={Mobius Systems}
}
Resources¶
"The wealthiest people in the future will not be those who extract value, but those who create order."