Getting started
Ophis turns a sentence into a settled, MEV-protected swap. There's no token-picker to fight and no router to configure, you describe the trade, review it, and sign.
Your first swap
- Open ophis.fi and connect a wallet.
- Type what you want in your own words, for example:
swap 100 USDC for ETH on Basebuy 50 USDC of PEPE on ethereum1 ETH to USDC on op
- Ophis parses your sentence into a structured order (sell token, buy token, amount, chain) and pre-fills the swap form.
- Review the quote and sign the order with your wallet. Nothing leaves your wallet until a solver settles the trade.
Ophis never takes possession of your funds. The signed order is broadcast to the solver auction; your tokens move only when a solver settles the batch on-chain.
How it works
Three steps from your sentence to settlement:
1 · Intent, parse the request
You type the swap as a sentence. An open LLM (LibertAI's Qwen 3.6 27B, hosted on Aleph Cloud) extracts the sell token, buy token, amount, and chain into a structured order. The model runs behind a server-side proxy so its API key never reaches the browser. See the Intent API for the public endpoint.
2 · Auction, solver competition
Your signed order is broadcast to a batch auction. Solvers race to find the best path, an on-chain DEX, a peer-to-peer match against another order in the same batch, or a cross-chain route, and bid for the right to settle it. On Optimism, Unichain, and Robinhood Chain, Ophis currently operates the solver itself, competing across several routing strategies, see How it works.
3 · Settle, on-chain, MEV-protected
The winning solver settles your order in a batch where every trade clears at the same uniform price. Your signed limit price is enforced on-chain, and Ophis orders are not exposed as public-mempool router swaps. On Robinhood Chain, the sequencer is first-come-first-served, so paying a higher priority fee does not buy an earlier place in the ordering.
For the full lifecycle, see How it works.
Supported networks
Ophis surfaces 13 EVM chains as full source and destination in the network selector: Ethereum, Arbitrum One, Avalanche, Base, BNB Smart Chain, Gnosis Chain, Ink, Linea, Optimism, Plasma, Polygon, Robinhood Chain, and Unichain (plus the Sepolia testnet). On any of these you can both pay from and receive into your EVM wallet.
| Ethereum | Arbitrum One | Avalanche |
| Base | BNB Smart Chain | Gnosis Chain |
| Ink | Linea | Optimism |
| Plasma | Polygon | Robinhood Chain |
| Unichain |
In addition, Solana and Bitcoin are available as cross-chain destinations only via NEAR Intents: trade from any EVM source chain to those networks without a second wallet. They are not source chains, you cannot start a swap from a Solana or Bitcoin balance. You paste a destination address and sign with your EVM wallet; NEAR Intents brokers the bridge.
The current token catalog covers stablecoins, ETH/BTC pegs, DeFi blue-chips, AI/RWA, memes, and gaming. The in-app token selector is the live source of truth because token availability can change by chain.
Robinhood Stock Tokens
Robinhood Chain includes tokenized equities and ETFs. Ophis verifies a selected Stock Token against Robinhood's live canonical deployment registry and shows its corporate-action multiplier and trading restrictions in the swap form. A split can change the share-equivalent display without rebasing the raw ERC-20 balance; the executable trade price remains the signed Ophis solver quote.
- Robinhood Chain network configuration
- Stock Token integration and multiplier
- Bridge assets to Robinhood Chain
Swaps are gasless. Wallet approvals, wrapping, and other direct transactions still require ETH. Robinhood's public RPC is rate-limited; production integrations should use a supervised provider endpoint and reserve the public RPC for wallet configuration and fallback use.
Skip the UI entirely, the Intent API exposes the same natural-language parser as a public endpoint, and the AI agent guide shows how to wire it into an agent.