saturnswap-liquidity
Installation
SKILL.md
SaturnSwap Liquidity Management
Guide users through adding and withdrawing liquidity on SaturnSwap DEX.
Capabilities
- Add liquidity to an existing pool (ADA or token side)
- Withdraw liquidity from a position
- View current liquidity positions (delegates to saturnswap-portfolio)
Add Liquidity Flow
- Find the pool — look up by ticker or pool ID
- Check existing positions — see if user already has a position in this pool
- Determine amount — how much ADA or tokens to deposit
- Build transaction — call
createAddLiquidity - Hand off to operator — for signing and submission
Withdraw Liquidity Flow
- List positions — show user's liquidity positions
- Select position — identify which pool/contract to withdraw from
- Determine amount — partial or full withdrawal
- Build transaction — call
createWithdrawLiquidity - Hand off to operator — for signing and submission
Scripts
Create Add Liquidity Transaction
node scripts/create-add-liquidity.js --address <bech32> --contract <liquidityPoolContractId> [--policy <policyId>] [--asset <assetName>] --amount <display-units> [--no-defaults]
--policy ""and--asset ""(or omitted) = adding ADA side--policy <id> --asset <name>= adding token side--no-defaults= disable auto chunk sizing
Create Withdraw Liquidity Transaction
node scripts/create-withdraw-liquidity.js --address <bech32> --contract <liquidityPoolContractId> [--policy <policyId>] [--asset <assetName>] --amount <display-units>
Key Concepts
- Liquidity on SaturnSwap works as chunked limit orders spread across price points
- When you add liquidity, the API splits your deposit into multiple limit orders
useDefaults: truelets the API choose optimal chunk sizesliquidityPoolContractIdis the UUID of your specific liquidity position (not the pool ID)- You can have multiple positions in the same pool
- Positions track
ada_order_token_one_amountandorder_token_two_amountseparately waiting_*amounts are funds being rebalanced between chunks
Safety Rules
- Always show current position stats before adding/withdrawing
- Confirm the exact amount and side (ADA vs token) with the user
- Warn about impermanent loss for volatile pairs
- Display units only — 100 ADA means
tokenAmount: 100
Related skills