Product Ecosystem Features About Launch App
📄 Documentation

YinX Docs.

Everything you need to get started, integrate, and build on the YinYang ecosystem.

Overview

YinX is the social and trading layer for on-chain prediction markets, built as part of the YinYang ecosystem. It provides real-time signals, copy trading, leaderboards, and instant execution across BNB Chain and Solana.

New to YinX? Start with the Quick Start guide below to get trading in under 2 minutes.

Architecture

YinX is built on a modular architecture with three core components:

  • 1 Signal Engine — Aggregates on-chain data, social feeds, and market microstructure to surface actionable signals
  • 2 Social Layer — Leaderboards, profiles, copy trading, and community features
  • 3 Execution Engine — Gas-optimized smart contracts for sub-second on-chain settlement

Quick Start

Get up and running with YinX in four simple steps:

1. Connect Your Wallet

YinX supports MetaMask, Phantom, Trust Wallet, and other popular web3 wallets. Click "Connect Wallet" on the app page to begin.

2. Fund Your Account

Ensure you have BNB (for BNB Chain) or SOL (for Solana) in your wallet for gas fees, plus the prediction market's base currency.

// Supported networks
BNB Chain → ChainID: 56
Solana → Mainnet-beta

3. Browse Markets

Explore live prediction markets sorted by volume, trending signals, or category. Use the signal feed to discover opportunities.

4. Make Your First Trade

Select a market, choose Yes or No, enter your amount, and confirm. Your trade settles on-chain in under 1 second.

Pro Tip: Follow top predictors on the leaderboard to copy their trades automatically.

Connecting Wallets

YinX supports the following wallet providers:

BNB Chain wallets:
• MetaMask
• Trust Wallet
• Coinbase Wallet
• WalletConnect

Solana wallets:
• Phantom
• Solflare
• Backpack

After connecting, your wallet address serves as your YinX identity. All trades, positions, and social activity are linked to your wallet.

Prediction Markets

Prediction markets on YinX are binary outcome markets — each market resolves to either Yes or No. Prices range from $0.01 to $0.99, representing the market's implied probability of the event occurring.

Market Resolution

Markets are resolved by designated oracles when the event outcome is determined. Once resolved, winning shares are redeemable for $1.00 and losing shares become worthless.

Creating Markets

Any user can create a custom prediction market. Learn more on the Creator-Driven Markets feature page.

$YIN Token

$YIN is the core governance and value accrual token of the YinYang ecosystem. Key details:

Token: $YIN
Total Supply: 100,000,000
Chain: BNB Chain (BEP-20)
Utility: Governance, Staking, Buyback Value Accrual

Learn more about the token economics on the Ecosystem page.

$YANG Token

$YANG is the utility and fee token used across the platform.

Token: $YANG
Total Supply: 1,000,000,000
Chain: BNB Chain (BEP-20)
Utility: Platform Fees, Creator Payouts, Premium Features

60% of all $YANG fees are allocated to systematic $YIN buybacks. See the full flywheel breakdown.

API Reference

The YinX API provides programmatic access to market data, user profiles, leaderboards, and trade execution.

Base URL

https://api.yinx.io/v1

Authentication

API requests require a signed message from your connected wallet. Include the signature in the Authorization header:

Authorization: Bearer {wallet_signature}

Example: Get Markets

GET /markets?status=active&sort=volume

Response:
{
  "markets": [
    {
      "id": "btc-150k-june-2026",
      "title": "BTC > $150K by June 2026?",
      "yes_price": 0.62,
      "volume": 2400000,
      "traders": 12300
    }
  ]
}

Smart Contracts

All YinX smart contracts are open-source and verified on their respective block explorers.

BNB Chain Contracts:
YinYangBets: 0x1234...abcd
YinToken: 0x5678...efgh
YangToken: 0x9abc...ijkl

Solana Programs:
YinYangBets: YinY...1234
Market: Mkt1...5678
Security: All contracts have been audited by CertiK and Halborn. Audit reports available upon request.