← 返回
效率工具 中文

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...
在任何支持的链(EVM 或 Solana)上向任意地址发送或转账代币。适用于您或用户想要汇款、付款、转账或打赏等场景。
rachidjarray-hk-qa-fdt
效率工具 clawhub v0.1.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 529
下载
💾 5
安装
1
版本
#latest

概述

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

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:

fdx call getWalletOverview --chainKey <chain>

Sending Tokens

fdx call transferTokens \
  --chainKey <chain> \
  --recipientAddress <address> \
  --amount <amount>

Parameters

ParameterRequiredDescription
------------------------------------------------------------------------------------------------
--chainKeyYesTarget blockchain (e.g. ethereum, polygon, base, solana)
--recipientAddressYesDestination wallet address
--amountYesAmount to send (human-readable, e.g. 10, 0.5)
--fromAccountAddressNoSource account address (if wallet has multiple accounts)
--tokenAddressNoToken contract address (omit for native token like ETH or SOL)
--memoNoOptional memo or note for the transaction
--maxPriorityFeePerGasNoEVM gas tip override
--maxFeePerGasNoEVM max gas fee override

Examples

Send native tokens

# 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

# 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

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
  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

版本历史

共 1 个版本

  • v0.1.0 当前
    2026-03-30 00:06 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

productivity

Word / DOCX

ivangdavila
创建、检查和编辑 Microsoft Word 文档及 DOCX 文件,支持样式、编号、修订记录、表格、分节符及兼容性检查等功能。
★ 438 📥 147,654
productivity

Nano Pdf

steipete
使用nano-pdf CLI通过自然语言指令编辑PDF
★ 275 📥 114,844
productivity

Weather

steipete
获取当前天气和预报(无需API密钥)
★ 445 📥 226,298