Overview

Understanding the BaseCase Protocol fundamentals

circle-info

This page covers: What BaseCase is, why it exists, and how it solves the prediction market liquidity problem.

The Liquidity Problem

Traditional prediction markets face a fundamental bootstrapping challenge:

Problem
Impact

πŸ’° Liquidity Required

Markets need initial capital to enable trading

πŸ”’ Capital Lock-up

Market makers must commit funds as counterparty

πŸ‘€ Creator Burden

Market creators bear the cost of liquidity provision

🚫 Limited Access

Only well-capitalized entities can create markets

This creates a permissioned system despite the permissionless nature of blockchain infrastructure.


The BaseCase Solution

BaseCase introduces a two-phase market lifecycle that separates liquidity bootstrapping from mature trading.

Phase 1: Shadow Liquidity (Bonding)

During bootstrap, the protocol operates a virtual CPMM:

Mathematical simulation of token reserves without real asset backing. Markets start with 100,000 units of virtual YES and NO tokens.

Initial State:
β”œβ”€β”€ virtualYES: 100,000
β”œβ”€β”€ virtualNO: 100,000
β”œβ”€β”€ k = 10,000,000,000
└── price: 50% / 50%

Phase 2: Order Book Trading

Upon reaching 100% solvency with 20% minimum on each side, markets graduate:

Transition Step
Description

Token Unlock

Soulbound tokens become transferable ERC-20s

Graduation Fee

2% fee deducted from vault

Order Book Opens

Limit and market orders become available

Complete Sets

Users can mint/redeem 1 YES + 1 NO for $1


Solvency Model

The protocol's core invariant ensures winners can always be paid:

Solvency=VaultBalancemax⁑(TotalShadowYES,TotalShadowNO)\text{Solvency} = \frac{\text{VaultBalance}}{\max(\text{TotalShadowYES}, \text{TotalShadowNO})}
circle-check

Why 100%?

With Winner Profit Guarantee, winners receive exactly $1 per share:

  • If YES wins β†’ all YES holders receive $1 per share + OG bonus

  • If NO wins β†’ all NO holders receive $1 per share + OG bonus

  • Vault must cover all winning shares at $1 each

  • Early bonding participants (OGs) share any excess vault funds


Technical Specifications

Parameter
Value
Rationale

Virtual Reserve

1,000 units

Starting vYES and vNO

Trade Fee

0%

No fees during bonding (solvency via CPMM slippage)

Graduation Fee

2%

Protocol revenue and creator incentive

Min Side Ratio

20%

Ensures two-sided market

Post-Graduation Fee

~0.2%

Competitive with centralized exchanges

Creator Share

25%

Strong incentive for market creation


Key Invariants

These properties are always maintained by the protocol:

chevron-rightπŸ” Solvency Guaranteehashtag

Vault balance always exceeds maximum payout at graduation. The CPMM mechanics naturally accumulate fees that provide a safety buffer.

chevron-rightβš–οΈ Price Conservationhashtag

YES + NO prices always equal 100%. This is enforced by the pricing formula: Price(YES) = virtualNO / (virtualYES + virtualNO).

chevron-rightπŸ“ˆ Monotonic Vault Growthhashtag

The vault balance strictly increases with each purchase. Sells reduce the vault proportionally but cannot drain it below solvency.

chevron-rightπŸ”„ CPMM Conservationhashtag

virtualYES Γ— virtualNO = k is maintained across all trades, ensuring consistent and predictable pricing.


Next Steps

Last updated