一键导入
claw-wallet-bridge
Cross-chain bridge skill for AI agents using LI.FI, enabling seamless asset transfers between 20+ chains including EVM, Solana, and Sui.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cross-chain bridge skill for AI agents using LI.FI, enabling seamless asset transfers between 20+ chains including EVM, Solana, and Sui.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
A multi-chain wallet skill for AI agents, with local sandbox signing, secure PIN handling, and configurable risk controls.
A multi-chain wallet skill for AI agents, with local sandbox signing, secure PIN handling, and configurable risk controls.
Use this skill for same-chain swaps through the Claw wallet sandbox on EVM, Solana, and Sui. It covers the exact sandbox endpoints, request fields, token normalization rules, raw amount units, provider fallback, approval handling, signing, and response handling for /api/v1/tx/swap/*.
AI agent skill for discovering and interacting with x402 Bazaar services, featuring automated payment proof generation (EIP-3009) and execution.
Comprehensive real-time crypto market data, news, and safety risk checks for AI agents, providing deep insights into price action, liquidity, and sentiment.
Convert a completed Claw Wallet DeFi sequence into a reusable workflow package with SDK-backed verification, execution, and a replayable script entrypoint.
| name | claw-wallet-bridge |
| description | Cross-chain bridge skill for AI agents using LI.FI, enabling seamless asset transfers between 20+ chains including EVM, Solana, and Sui. |
Use this skill when the user wants to transfer tokens from one blockchain to another (e.g., from Ethereum to Solana, or BSC to Sui).
Use this skill when the user wants to estimate the cost, time, and received amount for a cross-chain swap.
Use this skill when the user needs to find the exact contract address of a token on a specific chain before bridging.
This skill provides a managed cross-chain bridge experience powered by LI.FI, integrated directly with the local wallet sandbox for secure signing.
To ensure a successful bridge, the agent MUST follow these steps:
/api/v1/tx/bridge/lifi/tokens to get the correct contract address for the source and target chains./api/v1/tx/bridge/lifi/quote to show the user the estimated received amount, fees, and duration./api/v1/tx/bridge/lifi/execute to sign and broadcast the transaction.PENDING, provide the final_status_url to the user or poll it until it reaches DONE.All endpoints are under /api/v1/tx/bridge/lifi/.
Query supported tokens for specific chains to find exact contract addresses.
GET /api/v1/tx/bridge/lifi/tokens?chains={chainIDs}chains (comma-separated IDs, e.g., "1,56,1151111081099710, 9270000000000000").Estimate cross-chain swap details.
POST /api/v1/tx/bridge/lifi/quote/api/v1/tx/bridge/lifi/tokens to verify if the specific token is supported on both source and target chains.LifiBridgeRequest
from_chain_id: Source chain (e.g., ETH: '1', BSC: '56', Solana: '1151111081099710', Sui: '9270000000000000').from_token: Source token address or symbol.to_chain_id: Destination chain.to_token: Destination token address or symbol.amount: Smallest unit decimal string.from_address: Source wallet address.to_address: Recipient address.Execute the cross-chain transaction.
POST /api/v1/tx/bridge/lifi/executequote.status: "PENDING", use the final_status_url for tracking. Do not retry the execute call if it returns PENDING.| Chain | ID |
|---|---|
| Ethereum | 1 |
| BSC | 56 |
| Base | 8453 |
| Arbitrum | 42161 |
| Optimism | 10 |
| Polygon | 137 |
| Avalanche | 43114 |
| Linea | 59144 |
| Solana | 1151111081099710 |
| Sui | 9270000000000000 |
/api/v1/tx/bridge/lifi/tokens?chains={from_chain_id},{to_chain_id} before requesting a quote or execution. This ensures the tokens are supported and provides the exact contract addresses required for stablecoins (USDT/USDC).