返回顶部
s

send-tokens

Send or transfer tokens to any address on any supported chain (EVM or Solana). Use when you or the user want to send money, pay someone, transfer tokens, tip, donate, or move funds to another wallet address. Covers phrases like "send 10 USDC to", "pay 0x...", "transfer ETH to", "move tokens to my other wallet".

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 0.1.0
安全检测
已通过
211
下载量
0
收藏
概述
安装方式
版本历史

send-tokens

# Sending Tokens Use the `fdx call transferTokens` command to transfer tokens from the wallet to any address on any supported EVM chain or Solana. ## Confirm wallet is authenticated ```bash fdx status ``` If the wallet is not authenticated, refer to the `authenticate` skill. ## Check Balance Before Sending Always verify the wallet has sufficient balance before initiating a transfer: ```bash fdx call getWalletOverview --chainKey <chain> ``` ## Sending Tokens ```bash fdx call transferTokens \ --chainKey <chain> \ --recipientAddress <address> \ --amount <amount> ``` ### Parameters | Parameter | Required | Description | | ------------------------ | -------- | ---------------------------------------------------------------- | | `--chainKey` | Yes | Target blockchain (e.g. `ethereum`, `polygon`, `base`, `solana`) | | `--recipientAddress` | Yes | Destination wallet address | | `--amount` | Yes | Amount to send (human-readable, e.g. `10`, `0.5`) | | `--fromAccountAddress` | No | Source account address (if wallet has multiple accounts) | | `--tokenAddress` | No | Token contract address (omit for native token like ETH or SOL) | | `--memo` | No | Optional memo or note for the transaction | | `--maxPriorityFeePerGas` | No | EVM gas tip override | | `--maxFeePerGas` | No | EVM max gas fee override | ## Examples ### Send native tokens ```bash # Send 0.1 ETH on Ethereum fdx call transferTokens \ --chainKey ethereum \ --recipientAddress 0x1234...abcd \ --amount 0.1 # Send 1 SOL on Solana fdx call transferTokens \ --chainKey solana \ --recipientAddress AbCd...1234 \ --amount 1 ``` ### Send ERC-20 tokens ```bash # Send 100 USDC on Ethereum (specify token contract) fdx call transferTokens \ --chainKey ethereum \ --recipientAddress 0x1234...abcd \ --amount 100 \ --tokenAddress 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 # Send 50 USDC on Base fdx call transferTokens \ --chainKey base \ --recipientAddress 0x1234...abcd \ --amount 50 \ --tokenAddress 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 ``` ### Send with memo ```bash fdx call transferTokens \ --chainKey ethereum \ --recipientAddress 0x1234...abcd \ --amount 10 \ --tokenAddress 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 \ --memo "Payment for invoice #42" ``` ## Flow 1. Check authentication with `fdx status` 2. Check balance with `fdx call getWalletOverview --chainKey <chain>` 3. Confirm the transfer details with the human (amount, recipient, chain, token) 4. Execute with `fdx call transferTokens` 5. Report the transaction result to the human **Important:** Always confirm the recipient address and amount with your human before executing, especially for large amounts. Blockchain transactions are irreversible. ## Prerequisites - Must be authenticated (`fdx status` to check, see `authenticate` skill) - Wallet must have sufficient balance on the target chain - If sending insufficient funds, suggest using the `fund-wallet` skill ## Error Handling - "Not authenticated" — Run `fdx setup` first, or see `authenticate` skill - "Insufficient balance" — Check balance with `getWalletOverview`; see `fund-wallet` skill - "Invalid recipient" — Verify the address format matches the target chain

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 send-tokens-1776187388 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 send-tokens-1776187388 技能

通过命令行安装

skillhub install send-tokens-1776187388

下载 Zip 包

⬇ 下载 send-tokens v0.1.0

文件大小: 2.02 KB | 发布时间: 2026-4-15 11:03

v0.1.0 最新 2026-4-15 11:03
Initial release of the send-tokens skill.

- Enables sending or transferring tokens on any supported EVM chain or Solana.
- Supports native tokens and custom tokens (ERC-20).
- Includes options for specifying source account, token, memo, and gas parameters.
- Guides through checking authentication and balance before transfers.
- Provides error handling for authentication, balance, and recipient address issues.
- Designed for use cases like sending money, paying, tipping, or transferring between wallets.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部