بنقرة واحدة
token-swap
Execute token swaps on Uniswap/PancakeSwap across multiple EVM chains.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Execute token swaps on Uniswap/PancakeSwap across multiple EVM chains.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Trustless ERC-8183 job evaluation — run Client's verification program inside a zkVM with ZK proof.
Binance official spot trading skill — place orders, manage accounts, and access real-time market data via Binance Spot API. Sourced from github.com/binance/binance-skills-hub.
Create, fund, and settle on-chain agent jobs via ERC-8183 Agentic Commerce Protocol.
Binance Web3 official skill — query any wallet address for token holdings, balances, and portfolio data across BSC, Base, and Solana. Sourced from github.com/binance/binance-skills-hub.
Binance Web3 official skill — crypto market rankings including trending tokens, smart money inflow, social hype, meme ranks, and top trader PnL leaderboards. Sourced from github.com/binance/binance-skills-hub.
Binance Web3 official skill — real-time meme token launchpad tracking and AI-powered trending topic discovery on Solana and BSC. Sourced from github.com/binance/binance-skills-hub.
| name | token-swap |
| description | Execute token swaps on Uniswap/PancakeSwap across multiple EVM chains. |
| metadata | {"cryptoclaw":{"emoji":"🔄","always":true}} |
Execute token swaps on Uniswap (V2/V3) and PancakeSwap (V2/V3) across multiple EVM chains.
Swap tokens using dedicated DEX tools that automatically compare V2 and V3 quotes to find the best price. Uses the active wallet for signing transactions.
swap_get_quote - Get best swap quote across V2/V3 with estimated output and price impactswap_execute - Execute the swap (auto-approves token spending if needed)swap_check_allowance - Check if token is already approved for the routerswap_supported_dexes - List available DEXes and fee tiers for a networkget_erc20_token_info - Look up token name, symbol, decimals by contract addressswap_get_quote with tokenIn, tokenOut, amountInswap_execute with same parameterssecurity-check on the target token before executing a swap to detect honeypots and high taxesWhen using V3, the fee tier affects which liquidity pool is used:
The tool auto-selects the best fee tier by default.
User: "Swap 1 BNB for USDT on BSC"
→ Call swap_get_quote with tokenIn="native", tokenOut="0x55d398326f99059fF775485246999027B3197955", amountIn="1"
→ Show: "PancakeSwap V3: 1 BNB → ~590.23 USDT (min: 587.28 USDT, 0.5% slippage)"
→ After confirmation: call swap_execute
User: "What would I get for swapping 100 USDT to ETH on Ethereum?"
→ Call swap_get_quote only, display result without executing
User: "What DEXes work on Arbitrum?"
→ Call swap_supported_dexes with network="arbitrum"