6. Economic ModelEconomic Model

6. Economic Model

The Fhenix-FairMarket economic architecture is designed to align protocol sustainability, decentralized liveness, and user capital protection without relying on opaque tokenomics or extractive fee structures. Version 2.0 formalizes a flat-percentage revenue model tied directly to auction success, with mathematically enforced zero-extraction rules for penalty routing and transparent treasury allocation.


Quick Summary

  • Primary Revenue: 0.5% success fee deducted only from the winning bid.
  • Automation Incentive: 0.2% bounty paid to the first executor of triggerFinalize().
  • Net Distribution (Remaining 0.3%): 60% Treasury, 20% Insurance, 15% Developer Grants, 5% Bug Bounty.
  • Penalty Routing: 100% of seller cancellation deposits are distributed pro-rata to bidders. The platform extracts 0%.
  • Gas Economics: Asynchronous CoFHE processing + O(1) storage reduces on-chain computation costs by ~99.9% compared to traditional synchronous FHE auctions.

Detailed Answer (Cited)

6.1 Revenue Streams

The protocol charges minimal, predictable fees to ensure operational continuity while maintaining competitive market rates.

StreamRateTrigger ConditionPayer
Auction Success Fee0.5% of winning bidContract transitions to FINALIZEDWinner only
Keeper Bounty0.2% of winning bidFirst valid call to triggerFinalize()Protocol Treasury (deducted from success fee)

Fact: Fees are only collected upon successful settlement. Failed, cancelled, or voided auctions incur zero protocol fees. (Source: Whitepaper v2.0, §6.1)

6.2 Net Fee Distribution

After deducting the 0.2% keeper bounty, the remaining 0.3% of the success fee is algorithmically distributed to four core pillars:

AllocationPercentagePurpose & Execution
Protocol Treasury60%Funds continuous development, FHEOS infrastructure, Keepers maintenance, and DAO governance operations.
Insurance Fund20%Acquires parametric coverage (e.g., Nexus Mutual) to protect users against rare smart contract vulnerabilities or AVS network failures.
Developer Grants15%Rewards community contributors, academic researchers, and ecosystem builders proposing protocol improvements.
Bug Bounty5%Immediate payouts for ethical hackers reporting critical vulnerabilities via Immunefi.

Analysis Note: The 60/20/15/5 split prioritizes long-term protocol resilience over short-term yield generation. By front-loading insurance and security funding, the model mitigates systemic risk inherent in experimental FHE deployments.

️ 6.3 Zero-Extraction Penalty Routing

To enforce seller accountability without profiting from market manipulation, the protocol implements a strict 0% Platform Cut on penalties:

  • If a seller invokes cancelAuction() during the ACTIVE phase, their initial deposit is confiscated.
  • 100% of the confiscated amount is routed to SlashedPot.sol and distributed pro-rata to all valid bidders.
  • No administrative fees, treasury allocations, or keeper bounties are deducted from penalty pools. This ensures economic alignment strictly favors participant protection over platform revenue.

Fact: The platform explicitly forfeits all rights to penalty capital. This is hardcoded in SlashedPot.sol and enforced by the onlyFairMarket modifier. (Source: Whitepaper v2.0, §6.2 & Technical Spec §3.3)

6.4 Gas & Efficiency Economics

Traditional FHE auctions suffer from 10x–100x gas inflation due to synchronous on-chain comparisons. Fhenix-FairMarket v2.0 achieves economic viability through:

  1. O(1) Storage Complexity: Only bytes32 hashes are persisted. Bid submission costs remain flat (~15k–25k gas) regardless of auction size.
  2. Asynchronous CoFHE Offloading: Heavy FHE.gt/select operations occur off-chain. On-chain gas is spent solely on event emission and state transition.
  3. Pull-Over-Push Refunds: Eliminates Out-of-Gas failures and cascating reverts during mass payouts. Each user pays only for their own claimRefund() transaction.

Confirmed Facts

  1. Success Fee is Capped: Exactly 0.5% of the final winning bid. No hidden or sliding scale fees exist.
  2. Keeper Incentive is Fixed: 0.2% is algorithmically guaranteed to the first valid triggerFinalize() executor, ensuring decentralized liveness.
  3. Penalty Routing is 100% User-Funded: The platform takes zero cut from seller cancellation penalties. All funds go to bidders via SlashedPot.
  4. Net Split is Deterministic: The remaining 0.3% follows a fixed 60/20/15/5 allocation. No discretionary treasury overrides are permitted.
  5. Gas Costs are Bounded: Bid submission gas remains O(1) and independent of participant count due to async CoFHE processing.

Unresolved Points & Explicit Gaps

Gap / Unresolved PointImpactCurrent StatusRecommended Action
Fee Collection MechanismHow is the 0.5% split executed on-chain? (Direct transfer vs. post-settlement vault sweep)Not explicitly detailed in current P0/P1 matrices.Implement an automated VaultDistributor.sol or use ERC-20 permit + batch transfer post-FINALIZED state.
Initial Insurance CapitalizationHow is the Insurance Fund seeded before auction fees accumulate?Docs mention Nexus Mutual but lack bootstrapping strategy.Allocate a one-time treasury seed or partner with reinsurance protocols for Phase 6 Testnet.
Gas Sponsorship for KeepersWho pays L2 gas for triggerFinalize() if the keeper lacks native tokens?Docs state keepers receive 0.2% bounty, but upfront gas cost isn’t addressed.Integrate ERC-4337 bundler sponsorship or gas-oracle rebates for registered Keepers.
Native Token AbsenceNo governance or utility token is defined. All economics rely on ETH/stablecoins.Confirmed by Whitepaper §6 & README.Document this explicitly in governance docs to manage community expectations around token emissions.

Fact vs. Analysis Distinction: The fee percentages, distribution ratios, and zero-penalty-cut rules are verified facts from the official Whitepaper and Technical Specification. The gas sponsorship model, vault collection mechanics, and insurance bootstrapping strategies are unresolved architectural gaps that require explicit definition before Mainnet deployment.


Sources (Internal Documentation References)

  1. Whitepaper Fhenix-FairMarket.txt → Section 6: “Economic Model and Revenue Transparency” (§6.1, §6.2)
  2. وثيقة المواصفات التقنية الرسمية.txt → Section 6: “الأمان الدفاعي ومرونة الكوارث” & Keeper Incentive specs
  3. README.md → Key Innovations Table & Keeper Incentive Model
  4. Phase 2 Sub-Tasks Matrix.txt → Task 2.2.2 (SlashedPot pro-rata distribution & 0% platform cut)
  5. 6 مراحل تنفيذي.txt → Phase 6 Deployment & Treasury Allocation Guidelines

(Note: All references correspond to the private repository documents provided. Public URLs will be generated upon official documentation site deployment.)


Next Steps