OrdoFi for Apps & Wallets
Your users' swaps generate MEV that today leaks entirely to bots. Route their transactions through OrdoFi and that value flows back to them — and to you.
Every swap on Robinhood Chain that moves a price creates a backrun opportunity. Right now a handful of colocated searchers capture all of it. When you route order flow through OrdoFi, that backrun is auctioned and 90% of the proceeds are rebated to your user, 5% to you as the originating app.
Integrate in one call
Instead of broadcasting a signed user transaction to the raw sequencer RPC, submit it to OrdoFi:
import { submitOrderFlow } from "@ordofi/sdk";
const { result, rebate } = await submitOrderFlow("https://auction.ordofi.network", {
rawTx, // the user's signed transaction
originLabel: "your-app", // attribution
rebateAddress: "0xYourApp…", // where your 5% accrues
});
The user transaction is dispatched immediately (never delayed), a backrun is auctioned in parallel, and the rebate split is recorded — claimable on-chain once settlement is live.
Or just point your RPC at the gateway
For wallets that don't want to change submission logic, use the OrdoFi gateway as a drop-in RPC. You get free revert protection (transactions that would fail never cost gas) plus the option to opt user flow into the auction.
# drop-in JSON-RPC with revert protection
https://rpc.ordofi.network # add header: x-api-key: YOUR_KEY
Rebate split
| Recipient | Default |
| Your user | 90% |
| Your app | 5% |
| Protocol | 5% |
Who this is for
- DEX front-ends — give traders better effective prices via rebates.
- Wallets — a "get paid for your order flow" feature, on by default.
- Aggregators & bots — v4.fun, Scalar, and anything routing swaps on Robinhood Chain.