Overview
- Skill Key
- harleyscodes/kyberswap-arbitrage
- Author
- harleyscodes
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/harleyscodes/kyberswap-arbitrage
- Latest Commit SHA
- 0757c3f610b3f89613bd3fde68c36574675c54ba
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Kyberswap Arbitrage 技能。 若已安装,则直接安装 Kyberswap Arbitrage 技能。
# KyberSwap Arbitrage ## Overview Triangular arbitrage: profit from price differences between 3 tokens (e.g., USDC → ETH → USDT → USDC) ## Key Contracts (Base Mainnet) - **Router**: `0x6131B5fae19EA4f9D964eAc0408E4408b2a37dD8` - **Factory**: `0x5F1dddbf348aC2BEbe18559BF0eDE9D3fE6ce35f` ## Core Logic ### 1. Get Quotes ```typescript const router = new ethers.Contract(routerAddr, routerABI, provider); // Get amounts out for exact input const [amountOut] = await router.getAmountsOut( amountIn, // Wei amount [tokenA, tokenB, tokenC] // Path ); ``` ### 2. Calculate Profit ``` profit = finalAmount - initialAmount - gasCosts ``` ### 3. Execute Swap ```typescript const tx = await router.swapExactTokensForTokens( amountIn, amountOutMin, path, recipient, deadline ); ``` ## Token Addresses (Base) - **USDC**: `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913` - **USDT**: `0xfde4C96c85940E8F44A6D8d5e4fD4f4C4f9D8E8` - **ETH**: `0x4200000000000000000000000000000000000006` - **WETH**: `0x4200000000000000000000000000000000000006` ## Arbitrage Pairs (Base) Common triangular paths: - USDC → ETH → USDC - USDC → WETH → USDT → USDC - USDT → ETH → USDC → USDT ## Safety Checks 1. **Slippage**: Set `amountOutMin` = output * (1 - slippage%) 2. **Gas**: Estimate gas, ensure profit > gas 3. **Max Price Impact**: Check pool reserves before large trades 4. **Renounced Contracts**: Only trade tokens with renounced ownership ## Risk Profile - **Aggressive** but audit-first - Skip all non-renounced contracts - Check for honeypot tokens
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.