Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create getting_new_routes_integrated_into_cow_protocol.md #434

Merged
merged 7 commits into from
Jan 21, 2025
122 changes: 122 additions & 0 deletions docs/cow-protocol/tutorials/solvers/routes_integration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
---
sidebar_position: 1
---

# Getting new routes integrated Into CoW Protocol

## Overview

This guide is designed for teams building in DeFi who want to get their routes integrated and supported by CoW Protocol. Integration of new liquidity sources enables CoW Protocol's solvers to access more trading opportunities, potentially leading to better prices for users.

## Why integrate with CoW Protocol?

CoW Protocol's unique batch auction mechanism and competition between multiple solvers provides several advantages:

- Gain access to our growing ecosystem of traders and protocol integrators
- The protocol finds optimal prices by aggregating liquidity across multiple sources
- Trades gain protection from MEV through our batch auction system
- Users benefit from reduced gas costs through our order batching mechanism

## Integration Requirements

### 1. Price Discovery Interface

Solvers need a reliable way to obtain price estimates and available liquidity. This can be provided through:

- On-chain methods to query pool states or oracle prices
- Off-chain API endpoints providing real-time pricing data
- WebSocket feeds for continuous updates
- Documentation of pricing functions or AMM curves

### 2. Settlement Interface

A well-documented smart contract interface for executing trades, including:

- Function specifications for swap execution
- Required parameters and their formats
- Gas consumption estimates
- Safety checks and failure modes

### 3. Technical Documentation

Comprehensive documentation should include:

- Smart contract addresses on supported networks
- API specifications and endpoints
- Authentication requirements (if any)
- Rate limits and other technical constraints
- Example implementations or code snippets

## Self Service Integration

Instead of waiting for solver teams to have the capacity and resources to deliver your integration, few solver teams offer a self service integration.

**Tycho (Propeller heads) - read more [here](https://docs.propellerheads.xyz/tycho/for-dexs/protocol-integration-sdk)**

## Integration Process

1. **Submit Integration Proposal**
- Use the integration proposal template and make sure to add all necessary information
- Post on CoW DAO forum, and engage with any follow-up questions
2. **Solver Integration**
- Solver teams evaluate integration opportunity
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inconsistency of "." (dots) use. Some sentences have a dot at the end and some do not

- Development and testing
- Deployment to production

## Integration Proposal Template

```markdown
# Liquidity Source Integration Proposal

## Title
[Your DEX/Liquidity Source Name] Integration

## Author
[Name(s)]
[Contact Information]

## Simple Summary
[Brief description of your liquidity source and its unique features]

## Motivation
- What unique value does your liquidity source bring?
- How will it improve settlement quality?
- What trading pairs/assets are supported?
- Current trading volumes and liquidity depth

## Technical Specification

### Price Discovery
- How can solvers obtain price information?
- API endpoints or on-chain methods
- Response formats and data structures
- Rate limits and performance characteristics

### Settlement Interface
- Smart contract addresses
- Function signatures
- Parameter specifications
- Gas cost estimates
- Example transactions

## Integration Incentives
- Are you offering integration grants?

## Additional Information
- Security audits
- Known limitations
- Future roadmap
- Testing environment details

## Contact Information
- Development team contacts
- Technical support channels
- Response time expectations

```

## Support and Communication

- Join the CoW Protocol Discord for technical discussions
- Participate in the CoW Protocol forum
- Schedule technical calls with solver teams if needed
Loading