一键导入
liquidity
Manage Uniswap V4 and V3 liquidity positions on Base — list positions, read pool state, mint/add/remove liquidity, and collect fees.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage Uniswap V4 and V3 liquidity positions on Base — list positions, read pool state, mint/add/remove liquidity, and collect fees.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check eligibility for and claim token airdrops
Scan, audit, and revoke ERC-20 token approvals to manage wallet spending permissions
Set up automated server-side trading strategies (limit buys/sells) that execute on Base via Bankr
Deploy tokens on Base (Uniswap V4) or Solana (Raydium) via Bankr gas-sponsored launch API
Open leveraged long/short positions via Avantis on Base with up to 10x leverage
Access Polymarket prediction markets to search, place bets, view positions, and redeem winnings
| name | liquidity |
| description | Manage Uniswap V4 and V3 liquidity positions on Base — list positions, read pool state, mint/add/remove liquidity, and collect fees. |
| metadata | {"openclaw":{"emoji":"🌊"}} |
liquidityAll write operations go through ClawnchConnect for approval.
| Action | Params | Description |
|---|---|---|
positions | — | List all V3 LP positions for the connected wallet |
v4_position | token_id | Read a specific V4 position by NFT token ID |
v4_pool | token0, token1, fee?, tick_spacing?, hook_address? | Read V4 pool state: price, tick, liquidity |
| Action | Params | Description |
|---|---|---|
v3_mint | token0, token1, fee, tick_lower, tick_upper, amount0, amount1 | Open a new V3 position |
v4_mint | token0, token1, fee, tick_spacing, tick_lower, tick_upper, amount0, amount1, hook_address?, slippage_bps? | Open a new V4 position |
v3_add | token_id, amount0, amount1 | Add liquidity to an existing V3 position |
v3_remove | token_id, percentage? | Remove liquidity (default: 100% = full withdrawal) |
v3_collect | token_id | Collect accumulated fees |
| Param | Default | Description |
|---|---|---|
token0 | — | Lower address token (addresses must be sorted) |
token1 | — | Higher address token |
fee | 3000 | Fee tier in hundredths of bps (500 = 0.05%, 3000 = 0.3%, 10000 = 1%) |
tick_spacing | 60 | V4 tick spacing |
hook_address | 0x0000...0000 | V4 hook contract (zero = no hook) |
slippage_bps | 50 | Slippage tolerance (50 = 0.5%) |
The tick range determines the price range where your position earns fees:
Use v4_pool to check the current tick, then set tick_lower and tick_upper around it.
| Fee | Use Case |
|---|---|
| 500 (0.05%) | Stablecoin pairs (USDC/USDT) |
| 3000 (0.3%) | Standard pairs (ETH/USDC) |
| 10000 (1%) | Exotic or volatile pairs |
action: v4_pool, token0: ..., token1: ...action: positionsaction: v3_mint, token0: ..., token1: ..., tick_lower: ..., tick_upper: ..., amount0: "1.0", amount1: "1000"action: positions (check unclaimed fees)action: v3_collect, token_id: ...action: v3_remove, token_id: ..., percentage: 50token0 < token1 (lower address first)