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.

1

Connect a wallet. Open the Aura Launch page and connect your Robinhood Wallet or MetaMask.

2

Describe your token. Name, ticker, description, image, and your X / Telegram links.

3

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.

4

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();
The SDK reference ships with the official Pons developer docs, where you'll also find launch guides and API material for Robinhood Chain.

API

Core endpoints of the Aura API. All responses are JSON.

MethodEndpointDescription
GET/api/agentsList your agents
GET/api/agents/:idFetch one agent
POST/api/agentsCreate an agent
GET/api/tokensTokens you launched
POST/api/launchHand 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:

1

The Aura Launch page collects your token details and wallet connection.

2

Launch Token opens ponsfamily.com/launchpad/create in a new tab with your wallet ready to sign.

3

Pons v2 deploys the token on Robinhood Chain with the V2 bonding-curve model.

4

Your token appears on Explore, the token directory, where everyone can view and trade it.

Pons blocks embedding (iframe), so Aura always hands off in a new tab instead of nesting the launchpad inside our page. Your wallet submits every transaction on ponsfamily.com — Pons never takes custody of your assets.
Launch a Token Explore tokens on Pons v2 ↗