Overview
The Open Source DEX Aggregator that runs on your hardware.
What is Fynd?
Fynd is an open-source DEX aggregator that runs locally on your server. We built Fynd to be reliable and trustless.
Fynd gives you quotes in 20ms, supports 1.000 RPS on commodity hardware (see performance), does not overquote, and is configurable to the pools, tokens, and objectives you care about (low reverts, best price, low latency, etc.).
Fynd builds on Tycho the open source DEX indexer (see the protocols it supports).
Own Your Routing
Route APIs are simple, but the tradeoffs are painful: rate limits, network overhead, no transparency, unreliable uptime, and unexplainable slippage. And you can't fix any of it.
Fynd puts you in control:
Real-time market state via Tycho Stream, covering all Tycho-supported protocols
As fast as 10ms per quote: You choose the balance between routing quality and latency.
Custom algorithms: Plug in your own algorithm or customize the pre-built one. Fynd runs multiple algorithms in parallel and picks the best result.
Execution on your terms: Encode and execute swaps on-chain with full control over fees, slippage, and token transfer method.
Vertical scaling: Scale up to meet your speed requirements.
Key Design Principles
Single source of truth: All market data lives in one
MarketStatestructure. A single feed writes to it; all workers read from it. No duplication.Algorithm-agnostic: Built around a pluggable
Algorithmtrait. Different algorithms use different graph representations and strategies. Multiple algorithms compete in parallel; the best result wins.Performance-first: CPU-bound route finding runs on dedicated OS threads (not the async runtime). Each worker pool has its own task queue for independent backpressure and scaling.
Observability built-in: Prometheus metrics, structured logging via
tracing, and health endpoints are first-class citizens.
Order Types
Fynd currently supports sell orders only (exact input amount). You specify the amount of the input token, and Fynd finds the best output. Buy orders (exact output) are not yet supported.
Known Limitations
Large trades — split swaps coming soon
Fynd currently routes each order through a single path. For large trades (e.g. >$100k), this can result in significant price impact compared to aggregators that split orders across multiple pools in parallel. Split swap support is on the roadmap and will substantially improve pricing for high-volume orders.
For the best results today, test with trade sizes typical for your use case rather than extreme values.
Supported Chains
Ethereum Mainnet
Base
Unichain
Coming soon: Arbitrum, Polygon, and BSC.
Supported Protocols
Fynd works with any protocol Tycho supports. See the list of supported protocols and supported RFQs.
How It Works


TychoFeed connects to Tycho Streams (on-chain protocols and RFQs) and processes market updates (added/removed components and state changes) every block.
MarketState stores all component states, tokens, and gas prices in a single shared structure.
When a quote request arrives via HTTP, the WorkerPoolRouter fans it out to all worker pools in parallel.
Each Worker Pool runs a specific algorithm. Workers compete to pick up the task, find routes through their local graph, simulate swaps against shared market state, and return ranked results.
The WorkerPoolRouter collects results from all pools, picks the best solution by
amount_out_net_gas, optionally encodes it for execution against theTychoRouter, and returns it.
Try it out
Head to the quickstart to get Fynd running.
Last updated