一键导入
batch-transfer
Batch transfer TRX or TRC20 tokens to multiple addresses in one operation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Batch transfer TRX or TRC20 tokens to multiple addresses in one operation
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | batch-transfer |
| description | Batch transfer TRX or TRC20 tokens to multiple addresses in one operation |
| version | 1.0.0 |
| generated | true |
| author | AI Agent (Self-Generated) |
| tags | ["auto-generated","blockchain","tron","batch","transfer"] |
Use this skill when: 向10个地址批量转账TRX或TRC20代币
from personal_skills.batch_transfer.scripts.main import execute_skill
# Execute the skill
result = await execute_skill(
from_address="TYour...",
recipients=[
{"address": "TAddr1...", "amount": 10},
{"address": "TAddr2...", "amount": 20},
# ... more recipients
],
token="TRX" # or token contract address for TRC20
)
print(result)
# Batch transfer 10 TRX to 10 different addresses
recipients = []
for i in range(10):
recipients.append({
"address": f"TTest{i}...",
"amount": 10
})
result = await execute_skill(
from_address="TYourAddress...",
recipients=recipients,
token="TRX"
)
# Check results
if result['success']:
print(f"Transferred to {result['data']['successful_count']} addresses")
print(f"Total sent: {result['data']['total_amount']} TRX")
Common errors and solutions:
This is an auto-generated skill. Limitations:
Auto-Generated Information:
Important: This skill was automatically generated. Please review and test thoroughly before using in production.
scripts/main.py⚠️ IMPORTANT SECURITY WARNINGS:
For more information on Agent Skills format:
skills/skill-generator/references/ANTHROPIC_SKILLS_SPEC.mdManage 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.