Slipstream Pool Operations

Mint, burn, and collect liquidity for Slipstream CLPool positions.

Updated Jan 28, 2026
One-click install
npx skills add https://github.com/cyotee/aerodrome-V2-slipstream-skill --skill slipstream-pool-operations
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Slipstream Pool Operations
Source: https://github.com/cyotee/aerodrome-V2-slipstream-skill/tree/main/.opencode/skills/slipstream-pool
Command: npx skills add https://github.com/cyotee/aerodrome-V2-slipstream-skill --skill slipstream-pool-operations

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill helps developers and operators understand and perform pool-level liquidity operations for Slipstream CLPool, enabling guidance on minting, burning, and collecting liquidity at the pool level.

Core Features & Use Cases

  • Mint/Burn/Collect: Describes how liquidity is added to or removed from a pool position and how fees and rewards accrue and are collected.
  • Tick-range management: Explains how tickLower and tickUpper boundaries affect liquidity distribution, pricing, and position updates.
  • Use Case: Model a typical deployment workflow where a user mints liquidity to a position, adjusts it, and later collects owed tokens.

Quick Start

Example sequence: mint liquidity to a position by specifying recipient, tickLower, tickUpper, and amount; then burn to reduce liquidity and finally collect to withdraw tokens owed.

Frequently Asked Questions about Slipstream Pool Operations

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

FAQPage Schema
How do I mint and burn liquidity in a Slipstream CLPool?

You mint liquidity by specifying the recipient, tickLower, tickUpper, and amount parameters. Burn reduces liquidity from the position, and collect withdraws owed tokens and accrued rewards.

How does tick-based concentrated liquidity work in Slipstream?

Tick-based concentrated liquidity uses tickLower and tickUpper boundaries to distribute liquidity within specific price ranges. These boundaries affect liquidity distribution, pricing, and position updates.

What is the correct sequence for managing CLPool liquidity positions?

A typical workflow involves minting liquidity to a position by specifying tick ranges, adjusting it, burning to reduce liquidity, and finally collecting to withdraw owed tokens and accrued fees.

Can I track fee and reward growth within a specific tick range?

Yes, the CLPool contract data structures track fee and reward growth within specified tick ranges. This allows accurate calculation of owed tokens when you execute the collect function.

Do I need Solidity to perform pool-level operations on Slipstream CLPool?

Solidity is required to interact with the Slipstream CLPool contract. The skill outlines the contract data structures and flow used for executing mint, burn, and collect operations.