Aura Docs
Aura is the AI-native app suite for agents, tokens, and immersive streaming — rebuilt on Robinhood Chain. Every token launch, trade, and stake in the Aura ecosystem settles on Robinhood Chain through Pons v2, the chain's launchpad and DEX. You always stay in control: transactions are signed in your own wallet; Aura and Pons never take custody of your assets.
Quickstart
From zero to your own token in four steps.
Connect a wallet. Open the Aura Launch page and connect your Robinhood Wallet or MetaMask.
Describe your token. Name, ticker, description, image, and your X / Telegram links.
Hit Launch Token. Aura hands you off to the Pons v2 create page, where the token is deployed on Robinhood Chain — launch fee 0.0005 ETH, V2 bonding-curve model, 0% creator fee.
Watch it graduate. Track your bonding curve on Explore, the token directory, then trade it.
AURA SDK
Our developer toolkit to build, customize, and deploy your own AI agents. All the creative power in one simple SDK.
Install
npm create aura-app@latest my-agent cd my-agent npm install @aura/sdk
Your first agent
// agents talk on Robinhood Chain — every transaction signs in the user's wallet
import { Agent } from '@aura/sdk';
const agent = new Agent({
name: 'My Agent',
persona: 'friendly',
chain: 'robinhood',
});
agent.onMessage(async (msg) => {
await agent.reply(msg);
});
agent.start();
API
Core endpoints of the Aura API. All responses are JSON.
| Method | Endpoint | Description |
|---|---|---|
GET | /api/agents | List your agents |
GET | /api/agents/:id | Fetch one agent |
POST | /api/agents | Create an agent |
GET | /api/tokens | Tokens you launched |
POST | /api/launch | Hand a launch off to Pons v2 |
Launching with Pons v2
The Aura launch flow keeps the original Aura UI and routes the backend to Pons v2:
The Aura Launch page collects your token details and wallet connection.
Launch Token opens ponsfamily.com/launchpad/create in a new tab with your wallet ready to sign.
Pons v2 deploys the token on Robinhood Chain with the V2 bonding-curve model.
Your token appears on Explore, the token directory, where everyone can view and trade it.