The AI building platform for the XRP Ledger
Become a legend of the ledger.
Describe it — the AI drafts the exact transaction — you approve it — the XRP Ledger makes it permanent. 63 ready-to-run tools, the manual bolted to every one, free on the testnet. Your keys never leave your browser.
LEDGER #8,214,377 · CLOSING EVERY ~4s, FOREVER
Every other way in makes you study first, build never.
FIG. 2 — THE OLD WAYDocs assume you know what a reserve is. Tutorials die at chapter three. Meanwhile the ledger closes another block every four seconds without you on it.
Months of homework, zero plates
Docs, videos, Discord threads — motivation decays faster than you can absorb the jargon.
- “What’s a trustline?” — 40 tabs later
- Seed phrases handled by copy-paste and prayer
- First real transaction: someday, maybe
- Nothing to show anyone when you quit
First plate validated in ~45 seconds
The AI drafts the exact transaction from your words. The manual rides in the margin. You approve; the ledger seals it.
- Wallet + free test XRP in one click
- Every field explained in plain English
- Keys sign in your browser — never on a server
- A numbered plate to show for it, forever
How it works
FIG. 3 — THREE STEPS, YOU IN CONTROL AT EACHA · DESCRIBE
Say what you want
Tell the AI what you want: “Send 25 XRP to Alice” or “Launch my own token.”
B · AI DRAFTS
Review the drawing
It drafts the exact transaction. You see every field in plain English. Nothing runs until you approve.
C · YOU APPROVE
It's live in ~4 seconds
Signed in your browser, validated on the ledger in about four seconds. A numbered plate in your plan set — with proof.
Don’t take our word for it — draft one now
FIG. 4 — THE DRAFTING TABLE, LIVE SIMULATIONYour legacy, plate by plate
FIG. 5 — THE PLAN SET · THE LEDGER REMEMBERS FOREVERWhy “legacy”? Because the XRP Ledger never forgets. Every plate you draft is sealed into a public record that has closed every ~4 seconds since 2012 — no server to shut down, no database to wipe. What you build here outlives the website, outlives us, and — if you do it right — outlives you.
Built for first-time builders
SHEET Ⅱ-01 — SEND XRP, AS SHOWN IN THE APPEvery tool is a sheet you can read: what it does, why you’d use it, how each field works, and the gotchas that cost real users real money — written in the margin, right beside the form. The manual is built in. You learn while you build.
Send XRPPAYMENT / TESTNET
The ledger, live — and a builder that adapts to you.
FIG. 6 — THE LEDGER LATTICEThis lattice is the network your plates land on. Tell the builder who you are — or try to slip a bad transaction past it — and watch it adapt: pace changes, guidance sharpens, and the draft log narrates every adjustment.
What will they say you built?
FIG. 7 — PICK A DREAMEvery scene is generated live and wakes up when you touch it. Each one is a real thing you can draft tonight, free on the testnet — click to see the dream armed.
Index of sheets — what you can build
63 TOOLS · 13 CATEGORIES · EVERY CAPABILITY OF THE LEDGER63 tools across 13 categories — every capability of the XRP Ledger.
Browse the full catalog →An AI drafter that writes the transaction — and the code
FIG. 8 — PROPOSE → CONFIRM → EXECUTEAsk in plain English. The copilot picks the right tool, fills in the fields, explains its choices — and hands you working xrpl.js code you can take anywhere.
YOU show me the code to send XRP
AI this is the exact snippet behind the Send XRP sheet — connect, prepare, sign locally, submit:
import { Client, Wallet, xrpToDrops } from "xrpl";
const client = new Client("wss://s.altnet.rippletest.net:51233");
await client.connect();
const wallet = Wallet.fromSeed(process.env.XRPL_SEED!); // never hardcode seeds
const prepared = await client.autofill({
TransactionType: "Payment",
Account: wallet.address,
Destination: "rDestAddress",
Amount: xrpToDrops("10"), // XRP is drops on-ledger
});
const signed = wallet.sign(prepared);
const result = await client.submitAndWait(signed.tx_blob);
console.log(result.result.meta.TransactionResult); // expect tesSUCCESS
await client.disconnect();Propose → confirm → execute. You’re always in control.
Nothing touches the ledger without you.
FIG. 9 — THE APPROVAL GATEThe ledger is permanent — so the gate is ruthless. Pick a dangerous draft and watch it get intercepted before it can reach the ledger, with the margin notes explaining exactly what would have gone wrong.
Every plate climbs you toward LEGEND.
FIG. 10 — THE RANK LADDER
Draftsman
Your first validated transaction. Wallet, faucet, first send — ~45 seconds.
Engineer
You've moved money, minted, or locked value. It's becoming reflex.
Architect
Multi-step builds — a token with a market, an escrowed grant, a deed chain.
Master
You compose the ledger like language. The AI drafts; you conduct.
LEGEND of the ledger
A permanent, numbered body of work the ledger will remember longer than we will.
Rate card
PAY IN XRP · VERIFIED ON-LEDGER · CREDITED INSTANTLYStart free. Top up in XRP straight from any wallet when you need more — no card, no processor.
1 AI message = 1 credit after the daily free allowance · read-only query tools never cost credits
SIGNING
Keys stay in your browser
Transactions are signed client-side. Seeds never touch our servers — that's architecture, not policy.
NETWORK
Testnet first
Practice with free test XRP. Mainnet is a per-transaction opt-in with its own deliberate confirm step.
PAYMENTS
Verified on-ledger
Credit purchases are confirmed against a validated XRP Ledger transaction — no processor in between.
CONTROL
You approve every transaction
The AI drafts and explains. Nothing is signed or submitted without your explicit approval.
Questions, answered plainly
GENERAL NOTES — READ BEFORE BUILDINGQ-01Do I need a wallet?
No. Create a free testnet wallet in one click inside the app — it's funded automatically with test XRP from the faucet. You can import your own wallet later; either way the seed stays in your browser.
Q-02Do I need to know how to code?
No. Describe what you want in plain English and the AI drafts the transaction, or fill in a guided form — every field is explained in the margin as you go. The working code is always shown, so you can learn it or export it, but you never have to write it.
Q-03What does it cost?
The testnet sandbox is free: 19 read-only query tools never cost anything, and you get 10 AI messages every day. Beyond that, credits start at 5 XRP for 100 credits — an AI message costs 1 credit, a transaction tool 1–2.
Q-04Is it safe?
Your seed never leaves your browser — transactions are signed client-side and only the signed blob goes to the ledger. You start on the testnet, where XRP has no real value, and nothing executes without your explicit approval.
Q-05What's testnet vs mainnet?
The testnet is a full copy of the XRP Ledger that runs on valueless test XRP — a consequence-free sandbox. Mainnet is the real network with real money. The platform defaults to testnet; using mainnet is a per-transaction opt-in with a separate, deliberate confirm step.
Q-06What can the AI actually do?
It can draft and explain any of the 63 tools in the catalog — payments, tokens, NFTs, escrow, DEX trades and more — fill in the fields from your description, and generate runnable xrpl.js code. It cannot execute anything on its own: every transaction waits for your approval.
Start building your legacy.
Right here, right now.
Your first plate can be on the ledger in the next two minutes — free, guided, and permanent. The ledger has closed a block every ~4 seconds since 2012. The next one could have your name in it.
Free testnet sandbox · No wallet needed to start · Seeds never leave your browser