Rheon RHEON

Roadmap

Where Rheon is today, what we're building next, and the long-term vision for on-chain execution infrastructure.

Live Now

Min-Cost Max-Flow Solver

Deterministic Rust solver that models all liquidity as a flow network. Piecewise-linear cost buckets across 20+ DEX types (V1 AMMs, Liquidity Book bins, concentrated liquidity ticks, DODO, Curve, Algebra). Solves in under 300ms with on-chain simulation verification.

Any-Token Discovery

Paste any contract address to get instant quotes, AI analysis, and honeypot detection. Discovers pools on-the-fly from DexScreener — tokens that launched seconds ago are tradeable immediately. No whitelisting required.

AI Token Analysis

Gemini 2.5 Pro-powered analysis: support/resistance levels, sentiment scoring, holder distribution, liquidity depth assessment, and risk flags. Available per-token in the Trade terminal.

Honeypot Detection

Automated buy+sell simulation for every token. Detects honeypots, high transfer taxes, and broken sell functions via on-chain eth_call with state overrides. No third-party API dependency.

Rheon Pay

Intent-based payment links. Merchant specifies a dollar amount, customer pays with any token, merchant receives exact stablecoins. Powered by exact-output routing with zero-slippage settlement.

Live Transparent Benchmarks

200+ pair comparisons against Odos, KyberSwap, Velora, 0x, and Fly every 10 minutes. All data is public — including trades we lose.

In Progress

Batch Auctions

Aggregate multiple user orders into unified settlement batches. Instead of each swap executing independently, the solver collects orders over a short window (1-2 blocks) and finds the globally optimal execution across all of them simultaneously. Benefits: better fills through order netting, lower per-trade gas costs, and natural MEV protection since individual orders aren't visible in the mempool.

Ring Trades

Detect and execute circular order flows where user A wants to swap X→Y, user B wants Y→Z, and user C wants Z→X. These can be settled against each other without touching on-chain liquidity at all — or with minimal AMM interaction for the residual imbalance. This unlocks execution quality that no single-user router can achieve.

Rheon SDK

JavaScript/TypeScript SDK for embedding Rheon routing into any dapp. One function call for exact-in or exact-out quotes with ready-to-send calldata. Designed for wallets, payment processors, and protocols that need swap routing without building their own solver.

rheon-sdk
const quote = await rheon.getExactOut({
  amount: "10 USDC",
  tokenIn: "AVAX",
  chain: "avalanche"
});

// quote.requiredInput → 1.089 AVAX
// quote.calldata → ready to send

Planned

Yield-Bearing Limit Orders

Place a limit order and have your idle capital automatically deposited into yield protocols (Aave, BENQI, sAVAX) while waiting. When your target price hits, the solver withdraws and executes the swap atomically. Your capital earns yield instead of sitting dormant.

Gasless Routing

Full ERC-4337 Account Abstraction. Users pay network gas directly in the output token via paymasters. No AVAX needed to swap — the gas cost is deducted from the swap output. Lowers the barrier for new users to zero.

Automated DCA

Smart-contract-driven dollar-cost averaging. Set an amount, frequency, and token pair — the contract executes recurring buys using our exact-out solver for precise amounts every interval. No centralized keeper needed.

Subscription Streaming

Recurring allowance-based payments routed into stablecoins. Web3-native SaaS billing: a customer approves a monthly AVAX allowance, Rheon converts the exact dollar amount to USDC for the merchant each period.

Multi-Chain Expansion

The solver architecture is chain-agnostic. First expansion target: Monad (already in the header). Then Base, Arbitrum, and other high-throughput EVM chains where the MCMF approach provides the biggest edge over greedy routers.