rust-hft-arbitrage

Scans cross-venue arbitrage opportunities across Solana and EVM trading venues.

866|170|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/alsk1992/CloddsBot --skill rust-hft-arbitrage
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rust-hft-arbitrage
Source: https://github.com/alsk1992/CloddsBot/tree/main/src/skills/bundled/rust-hft-arbitrage
Command: npx skills add https://github.com/alsk1992/CloddsBot --skill rust-hft-arbitrage

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Finding profitable price discrepancies across decentralized exchanges and orderbook venues requires manually comparing quotes on many platforms, which is too slow for arbitrage. This Skill scans live round-trip quotes across Solana and EVM venues and reports net-positive arbitrage plans after fees, latency, and slippage penalties.

Core Features & Use Cases

  • Live Cross-Venue Scanning: Pulls buy-then-sell round-trip quotes from Jupiter, Raydium, Orca, Meteora, Uniswap, 1inch, PancakeSwap, and Lighter, then feeds them into a shared venue-arbitrage planner.
  • Cross-Chain Comparison: Compares Solana and EVM sides assuming pre-positioned inventory, with configurable edge thresholds, notional caps, and execution styles (taker_taker, maker_taker, maker_maker).
  • Architecture Guidance: Provides a venue map, reuse map, swarm roles, and phased implementation plan for building Rust execution sidecars alongside the TypeScript control plane.
  • Use Case: A trader wants to know if SOL/USDC is cheaper on Jupiter than Raydium right now. Run a Solana scan with a minimum net edge threshold and receive a read-only report of crossed plans without signing any transaction.

Quick Start

Ask Clodds to run /hft-arb scan solana SOL USDC 1000 with venues jupiter and raydium to see current arbitrage opportunities.

Frequently Asked Questions about rust-hft-arbitrage

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I scan for arbitrage between Solana DEXs?

Run /hft-arb scan solana with a base token, quote token, and size, for example /hft-arb scan solana SOL USDC 1000. You can restrict venues with venues=jupiter,raydium and set a minimum net edge with minNetEdgeBps.

How do I find cross-chain arbitrage between Solana and EVM?

Use /hft-arb scan cross with a base, quote, size, and an EVM chain parameter such as chain=base. The scan compares both sides assuming pre-positioned inventory, since live bridging is treated as inventory management rather than a hedge leg.

Which venues does the arbitrage scanner support?

Solana venues include Jupiter, Raydium, Orca, Meteora, and PumpSwap. EVM venues include Uniswap, 1inch, PancakeSwap, and Lighter on Arbitrum, across Ethereum, Arbitrum, Optimism, Base, and Polygon chains.

Does the arbitrage scan execute trades automatically?

No, the scan is strictly read-only and never signs or sends transactions. It only quotes round trips and reports net-positive crossed plans, leaving execution to separate chain-native Rust workers described in the architecture plan.

Why does my EVM arbitrage scan fail with a chain error?

EVM and cross-chain scans require an explicit chain parameter set to one of ethereum, arbitrum, optimism, base, or polygon. Run /hft-arb scan help to see the full option list including venue selection and threshold settings.