> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aiusd.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Trading infrastructure for AI agents. Unified venues, unified capital, programmable execution.

## Introduction

AIUSD is trading infrastructure purpose-built for AI agents. It unifies fragmented venues, abstracts away capital complexity, and gives agents a programmable execution layer — so they can trade across DEXs, CEXs, perpetual markets, prediction markets, and more — through a single interface.

<Frame>
  <img src="https://mintcdn.com/genalpha/X8ROR2fFxZrdViLM/images/platform.png?fit=max&auto=format&n=X8ROR2fFxZrdViLM&q=85&s=656f4d5900132e7da410b5b39b10b4e2" alt="AIUSD Platform" width="3444" height="1986" data-path="images/platform.png" />
</Frame>

***

## Core Concepts

<CardGroup cols={3}>
  <Card title="Unified Venues" icon="layer-group">
    One interface to spot, perpetuals, prediction markets, and more. No venue-specific adapters.
  </Card>

  <Card title="Unified Capital Layer" icon="coins">
    Deposit once, trade anywhere. Gas, bridging, and stablecoin conversion handled automatically.
  </Card>

  <Card title="Conditional Execution" icon="code-branch">
    Program trades against price, time, portfolio, or signal conditions. The platform executes autonomously.
  </Card>
</CardGroup>

***

## Unified Venues

AI agents shouldn't need to integrate with each trading venue independently. AIUSD normalizes access across venue types so a single tool call can route to the right market.

| Venue Type             | Platforms                                                            | What agents can do                                                                                                    |
| ---------------------- | -------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------- |
| **DEX (Spot)**         | Jupiter, 1inch across Solana, Ethereum, BSC, Base, Arbitrum, Polygon | Buy, sell, swap any token                                                                                             |
| **Perpetuals**         | HyperLiquid                                                          | Long, short, close with up to 50x leverage                                                                            |
| **Prediction Markets** | Polymarket                                                           | Trade on event outcomes                                                                                               |
| **Yield**              | sAIUSD staking                                                       | Earn yield via funding rate arbitrage strategy (10–20% APY, Sharpe 22, delta neutral, 7-day withdrawal after unstake) |

The agent expresses intent ("buy NVDAx", "long BTC 10x"). The platform selects the optimal venue and routing path, handles cross-chain bridging, and manages gas — the agent never touches any of it.

***

## Unified Capital Layer

Today, different assets live on different platforms — TRUMP trades on Solana, UNI on Ethereum, ASTER on BSC, perpetuals on HyperLiquid, event markets on Polymarket. Each requires its own stablecoin, gas token, and wallet setup. AIUSD eliminates this entirely.

<Steps>
  <Step title="Deposit once">
    Send USDC or USDT on any supported chain (Solana, Ethereum, Base, BSC, and more). Your balance is credited as AIUSD.
  </Step>

  <Step title="Trade anywhere">
    Use AIUSD to trade on any venue. The platform handles conversion to the right stablecoin, gas funding, and chain routing automatically.
  </Step>

  <Step title="Settle transparently">
    AIUSD is backed 1:1 by USDT and USDC held in CEFFU institutional custody. It is not a token — there is no contract address. It is a ledger balance representing your claim on underlying reserves.
  </Step>
</Steps>

<Note>
  AIUSD is **not** a stablecoin. It is a capital abstraction layer. Underlying reserves are held in institutional-grade custody (CEFFU) and are fully backed by USDT/USDC.
</Note>

***

## Conditional Execution

Agents can define rules that execute trades when future conditions are met — without staying online or polling.

### Price Triggers

```text theme={null}
If BTC drops below $60k, sell all my BTC
If ETH goes above $3k, buy $500 of ETH
When SOL hits $50, close my SOL position
```

### Time-Based

```text theme={null}
Every Monday at 10am, buy $100 of BTC
Every day at 9am, check my portfolio and rebalance
```

### Portfolio-Based

```text theme={null}
If BTC > 60% of portfolio, sell 10%
If ETH < 30% of portfolio, buy $500
Every Sunday at midnight, rebalance to 50% BTC / 30% ETH / 20% SOL
```

### Event-Driven

React to real-world events in real time — social signals, on-chain activity, exchange announcements.

#### Social Signal Trading

```text theme={null}
Monitor @trader_alpha on Twitter
When they mention a token, buy $50 worth
Set 10% stop loss on each position

If @realDonaldTrump posts anything negative about tariffs, close all positions immediately

If @CoinbaseAssets posts a new token listing, buy that token on DEX for 2% of my cash,
with 50% take profit and 20% stop loss
```

#### On-Chain Copy Trading

```text theme={null}
If this smart address I'm tracking on Polymarket trades a political contract,
buy the same contract position for $1,000
```

These conditions are stored and evaluated server-side. The agent doesn't need to maintain state or run continuously.

***

## Integration

Three ways to connect your agent to AIUSD:

<CardGroup cols={3}>
  <Card icon="bolt" href="/skills#aiusd-core" title="AIUSD Core">
    **Structured CLI tools**

    Client-side LLM handles reasoning. No platform inference cost.
  </Card>

  <Card icon="comments" href="/skills#aiusd-pro" title="AIUSD Pro">
    **Managed AI agent**

    Backend handles reasoning, tool selection, and multi-step execution.
  </Card>

  <Card icon="code" href="/api" title="MCP Hub API">
    **Direct API**

    JSON-RPC 2.0 via Model Context Protocol for custom integrations.
  </Card>
</CardGroup>

```bash theme={null}
# Install AIUSD Core
npx skills add galpha-ai/aiusd-core -y -g

# Install AIUSD Pro
npx skills add galpha-ai/aiusd-pro -y -g
```

<Card icon="rocket" href="/quickstart" title="Get Started">
  Start trading in under 5 minutes
</Card>
