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

RecipientDefault
Your user90%
Your app5%
Protocol5%

Who this is for

Integration docs See live rebates