launch_token
Launch a memecoin on the aeX402 launchpad on Robinhood Chain (EVM 4663) for a FIXED pump.fun-style bonding curve (1B supply, starts 0.0001 USDG, graduates at 10,000 USDG raised, quoted in USDG). You supply only identity — name + ticker (+ optional description/image/links). DEFAULT (custodial): the aeX402 backend SIGNS + SUBMITS the createVPool tx for you, so a claude.ai user with NO WALLET can launch in one call; returns {ok,status,txHash,vpId}. Optionally pass creator (a 0x address) to record as the coin owner. Pass build:true instead to get an UNSIGNED tx {to,value,data} to submit yourself (non-custodial — that requires creator and makes you the on-chain creator). Live create is gated on the launchpad facet upgrade (pending); until enabled a custodial call returns status "gated" and burns no gas.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Token name, 1..32 bytes (e.g. "Fork Meme") | |
| build | No | If true, return an UNSIGNED tx to submit yourself (non-custodial) instead of the backend launching for you. Default false. | |
| image | No | Image URL (https:// or ipfs:// only) — off-chain metadata | |
| links | No | Up to 3 links (https:// or ipfs:// only) — off-chain metadata | |
| ticker | Yes | Ticker / symbol, 1..16 bytes (e.g. "FMEME") | |
| creator | No | OPTIONAL 0x EVM address recorded as the coin owner (and seeds the vpId). REQUIRED only when build:true (then it is the self-signing on-chain creator). | |
| description | No | Short description (<=256 chars) — off-chain metadata |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | No | Custodial mode: whether the launch was submitted | |
| to | No | build mode: aeX402 diamond address | |
| data | No | build mode: createVPool calldata to submit | |
| note | No | ||
| vpId | No | Deterministic keccak256(creator-or-launcher ++ name ++ ticker) | |
| status | No | submitted | gated | custodial-disabled | exists | rate-limited | insufficient-gas | submit-failed | |
| txHash | No | Custodial mode: the createVPool tx hash | |
| metadata | No | Off-chain metadata (stored server-side in custodial mode) |