EDGE Protocol Overview
EDGE Protocol is a decentralized prediction market built natively on the Robinhood Chain. It allows users to trade the probability of future outcomes across Equities, Crypto, Macro, and Rates with deep liquidity and zero counterparty risk.
What is a Prediction Market?
A prediction market is a decentralized exchange where individuals can trade shares representing the outcome of future events. The price of these shares reflects the market's aggregate belief in the probability of that event occurring.
Example:
If the market for "Will Bitcoin cross $100k?" is trading at 0.65 USDG for a YES share, it implies a 65% probability. If the event happens, each YES share pays out exactly 1.00 USDG.
Why Robinhood Chain?
EDGE Protocol leverages the underlying speed, low transaction fees, and deep ecosystem liquidity of the Robinhood Chain. This allows us to provide an order-book (CLOB) experience that rivals centralized exchanges.
- Low Gas Fees: Enables high-frequency trading and algorithmic market making.
- Fast Finality: Orders are matched and settled in milliseconds.
- USDG Integration: Native stablecoin integration for seamless on/off ramps.
Smart Contract Architecture
Our contracts are based on the battle-tested ERC-1155 Conditional Tokens framework.
interface IConditionalTokens {
function prepareCondition(
address oracle,
bytes32 questionId,
uint outcomeSlotCount
) external;
function reportPayouts(
bytes32 questionId,
uint[] calldata payouts
) external;
}Oracles & Resolution
Markets are resolved via decentralized Oracles. Once the real-world condition is met, the Oracle pushes the result on-chain, immediately allowing winning share holders to redeem their positions for the underlying collateral (USDG) at a 1:1 ratio.
