一键导入
transfer-tokens
Build unsigned transactions for transferring TRX or TRC20 tokens (USDT, USDD, etc.) to another address with amount validation and energy estimation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Build unsigned transactions for transferring TRX or TRC20 tokens (USDT, USDD, etc.) to another address with amount validation and energy estimation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | transfer-tokens |
| description | Build unsigned transactions for transferring TRX or TRC20 tokens (USDT, USDD, etc.) to another address with amount validation and energy estimation. |
Use this skill when the user wants to:
🔒 Never handles private keys
from skills.transfer_tokens.scripts.build_transfer import build_transfer_transaction
tx = await build_transfer_transaction(
from_address="TYourAddress...",
to_address="TRecipient...",
token="TRX", # or TRC20 contract address
amount=10.5,
memo="Payment for services"
)
Returns unsigned transaction JSON:
{
"txID": "...",
"raw_data": {
"contract": [{
"parameter": {
"value": {
"amount": 10500000,
"to_address": "...",
"owner_address": "..."
}
}
}]
},
"metadata": {
"token": "TRX",
"amount": 10.5,
"recipient": "TRecipient...",
"estimated_energy": 0,
"estimated_bandwidth": 270
}
}
⚠️ Before signing:
| Transfer Type | Energy | Bandwidth | Typical Cost |
|---|---|---|---|
| TRX | 0 | ~270 | FREE (if bandwidth available) |
| TRC20 (USDT) | 14,000-32,000 | ~350 | ~0.5-1.5 TRX (or rent energy!) |
💡 Tip: For USDT transfers, use the energy-rental skill first to save 70% on fees!
Manage address aliases and transfer history. Auto-create contact names from transfer memos, track transfer counts, and quickly access frequently-used addresses.
Analyze address behavior patterns from transaction history. Detect anomalies, identify activity patterns, and alert on suspicious changes.
Check TRON addresses for security risks using TronScan labels, blacklists, scam detection, and fraud transaction history before interacting.
Scan wallet for token approvals and detect risky unlimited allowances. Critical for security.
Analyze energy costs for TRON transactions and generate rental proposals to save on fees. Compares burning TRX vs renting energy from platforms.
Analyze TRON blockchain transaction errors using AI to provide concise, user-friendly explanations with root causes and actionable solutions.