gate-info-addresstracker
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
Chinesegate-info-addresstracker
gate-info-addresstracker
The on-chain detective Skill. The user inputs an on-chain address; the system first calls the address info Tool to get the profile, then based on user intent depth (simple query vs. fund tracing) decides whether to additionally call transaction history and fund flow tracing Tools.
Trigger Scenarios: User provides an on-chain address (0x... / bc1... / T... format) or explicitly expresses intent to track/query an address.
链上侦探Skill。用户输入链上地址后,系统先调用地址信息工具获取资料,再根据用户意图深度(简单查询 vs 资金追踪)决定是否额外调用交易历史和资金流向追踪工具。
触发场景:用户提供链上地址(0x... / bc1... / T...格式)或明确表达追踪/查询地址的意图。
Routing Rules
路由规则
| User Intent | Keywords/Pattern | Action |
|---|---|---|
| Query address info | "who owns this address" "check 0x..." | Execute this Skill (Basic Mode) |
| Track fund flow | "track" "fund flow" "where did this money go" | Execute this Skill (Deep Tracking Mode) |
| Token on-chain analysis | "ETH chip analysis" "what are smart money buying" | Route to |
| Address risk check | "is this address safe" "is this a blacklisted address" | Route to |
| Single transaction query | "what is this transaction" "decode this tx" | Call |
| Entity/institution tracking | "Jump Trading holdings" "this institution's address" | Route to |
| 用户意图 | 关键词/模式 | 操作 |
|---|---|---|
| 查询地址信息 | "who owns this address" "check 0x..." | 执行此Skill(基础模式) |
| 追踪资金流向 | "track" "fund flow" "where did this money go" | 执行此Skill(深度追踪模式) |
| 代币链上分析 | "ETH chip analysis" "what are smart money buying" | 路由至 |
| 地址风险检测 | "is this address safe" "is this a blacklisted address" | 路由至 |
| 单笔交易查询 | "what is this transaction" "decode this tx" | 直接调用 |
| 实体/机构追踪 | "Jump Trading holdings" "this institution's address" | 路由至 |
Execution Workflow
执行流程
Step 1: Intent Recognition & Parameter Extraction
步骤1:意图识别与参数提取
Extract from user input:
- : On-chain address (auto-detect format)
address - (optional): Chain type (ETH/BSC/TRX/BTC, etc. — can be auto-inferred from address format)
chain - : User intent depth
intent_depth- — just asking "who is this" / "how much do they hold"
basic - — requesting "track funds" / "show transactions" / "where did the money go"
deep
Automatic Address Format Detection:
| Address Prefix | Inferred Chain |
|---|---|
| Ethereum (default; could also be BSC/Polygon/Arbitrum or other EVM chains) |
| Bitcoin |
| Tron |
| Other | Prompt user to specify the chain |
从用户输入中提取:
- :链上地址(自动检测格式)
address - (可选):链类型(ETH/BSC/TRX/BTC等——可通过地址格式自动推断)
chain - :用户意图深度
intent_depth- —— 仅询问“这是谁” / “持有多少”
basic - —— 要求“追踪资金” / “显示交易记录” / “资金去向”
deep
自动地址格式检测:
| 地址前缀 | 推断链类型 |
|---|---|
| 以太坊(默认;也可能是BSC/Polygon/Arbitrum等其他EVM链) |
| 比特币 |
| 波场 |
| 其他 | 提示用户指定链类型 |
Step 2: Phase 1 — Address Profile (Required)
步骤2:阶段1 —— 地址资料(必填)
| Step | MCP Tool | Parameters | Retrieved Data |
|---|---|---|---|
| 1 | | | Address profile: balance, labels, risk score, DeFi positions, PnL |
| 步骤 | MCP工具 | 参数 | 获取的数据 |
|---|---|---|---|
| 1 | | | 地址资料:余额、标签、风险评分、DeFi仓位、盈亏 |
Step 3: Decision Branch
步骤3:决策分支
get_address_info response
│
├── User only wants a simple query (intent_depth = basic)
│ └── → Output address profile report directly (skip to Step 5)
│
└── User requests deep tracking (intent_depth = deep)
└── → Proceed to Step 4 parallel callsConditions for automatic upgrade to deep mode:
- Address has known labels (e.g., exchange, hacker, whale) → likely worth investigating
- Address balance > $1M
- Address has risk flags
get_address_info 响应
│
├── 用户仅需简单查询(intent_depth = basic)
│ └── → 直接输出地址资料报告(跳至步骤5)
│
└── 用户要求深度追踪(intent_depth = deep)
└── → 进入步骤4并行调用自动升级为深度模式的条件:
- 地址有已知标签(如交易所、黑客、鲸鱼)→ 值得深入调查
- 地址余额 > 100万美元
- 地址有风险标记
Step 4: Phase 2 — Deep Tracking (Conditionally Triggered)
步骤4:阶段2 —— 深度追踪(条件触发)
| Step | MCP Tool | Parameters | Retrieved Data | Parallel |
|---|---|---|---|---|
| 2a | | | Large transactions (> $10k) | Yes |
| 2b | | | Fund flow tracing (3-level depth, > $100k) | Yes |
Both Tools called in parallel.thresholds are adaptively adjusted based on address size.min_value_usd
Adaptive Threshold Logic:
| Address Total Balance | | |
|---|---|---|
| < $100K | $1,000 | $10,000 |
| $100K – $1M | $10,000 | $100,000 |
| $1M – $100M | $100,000 | $1,000,000 |
| > $100M | $1,000,000 | $10,000,000 |
| 步骤 | MCP工具 | 参数 | 获取的数据 | 并行调用 |
|---|---|---|---|---|
| 2a | | | 大额交易(>1万美元) | 是 |
| 2b | | | 资金流向追踪(3层深度,>10万美元) | 是 |
两个工具并行调用。阈值会根据地址规模自适应调整。min_value_usd
自适应阈值逻辑:
| 地址总余额 | | |
|---|---|---|
| < 10万美元 | 1000美元 | 1万美元 |
| 10万美元 – 100万美元 | 1万美元 | 10万美元 |
| 100万美元 – 1亿美元 | 10万美元 | 100万美元 |
| > 1亿美元 | 100万美元 | 1000万美元 |
Step 5: LLM Aggregation
步骤5:LLM聚合
Report Template
报告模板
Basic Mode
基础模式
markdown
undefinedmarkdown
undefinedAddress Analysis Report
地址分析报告
Address:Chain: {chain} Query time: {timestamp}{address}
地址:链:{chain} 查询时间:{timestamp}{address}
1. Address Profile
1. 地址资料
| Metric | Value |
|---|---|
| Address Label | {label} (e.g., Exchange Hot Wallet / Whale / Unknown / Hacker-linked) |
| Risk Score | {risk_score}/100 ({Low Risk/Medium Risk/High Risk}) |
| First Transaction | {first_tx_time} |
| Total Transactions | {tx_count} |
| Current Balance | ${total_balance_usd} |
| 指标 | 数值 |
|---|---|
| 地址标签 | {label}(如:交易所热钱包 / 鲸鱼 / 未知 / 关联黑客) |
| 风险评分 | {risk_score}/100(低风险/中风险/高风险) |
| 首次交易时间 | {first_tx_time} |
| 总交易次数 | {tx_count} |
| 当前余额 | ${total_balance_usd} |
2. Asset Holdings
2. 资产持有
| Token | Amount | Value (USD) | Share |
|---|---|---|---|
| {token_1} | {amount} | ${value} | {pct}% |
| {token_2} | ... | ... | ... |
| ... | ... | ... | ... |
Holding Characteristics: {LLM analyzes the holding structure, e.g., "Highly concentrated in ETH", "Diversified across multiple DeFi tokens", "Possible market maker"}
| 代币 | 数量 | 价值(美元) | 占比 |
|---|---|---|---|
| {token_1} | {amount} | ${value} | {pct}% |
| {token_2} | ... | ... | ... |
| ... | ... | ... | ... |
持有特征:{LLM分析持有结构,例如:“高度集中于ETH”、“分散持有多个DeFi代币”、“可能为做市商”}
3. DeFi Positions (if available)
3. DeFi仓位(如有)
| Protocol | Type | Amount | Status |
|---|---|---|---|
| {protocol} | {Lending/LP/Staking} | ${value} | {Healthy/Near Liquidation} |
| ... | ... | ... | ... |
| 协议 | 类型 | 金额 | 状态 |
|---|---|---|---|
| {protocol} | 借贷/流动性挖矿/质押 | ${value} | 健康/接近清算 |
| ... | ... | ... | ... |
4. PnL Summary (if available)
4. 盈亏汇总(如有)
| Metric | Value |
|---|---|
| Realized PnL | ${realized_pnl} |
| Unrealized PnL | ${unrealized_pnl} |
| Win Rate | {win_rate}% |
undefined| 指标 | 数值 |
|---|---|
| 已实现盈亏 | ${realized_pnl} |
| 未实现盈亏 | ${unrealized_pnl} |
| 胜率 | {win_rate}% |
undefinedDeep Tracking Mode (appended to Basic Mode)
深度追踪模式(附加在基础模式之后)
markdown
undefinedmarkdown
undefined5. Large Transaction History
5. 大额交易历史
Filter: Amount > ${min_value_usd} | Most recent {count} transactions
| Time | Type | Amount | Counterparty | Counterparty Label |
|---|---|---|---|---|
| {time} | {In/Out/Contract Interaction} | ${value} | | {label/unknown} |
| ... | ... | ... | ... | ... |
Transaction Pattern Analysis:
{LLM analyzes transaction records and identifies patterns:}
- Frequent interactions with an exchange → likely depositing/withdrawing
- Large one-way outflows → possibly liquidating
- Interacting with many new addresses → possibly dispersing funds
- Regular fixed-amount transfers → possibly payroll/OTC
筛选条件:金额 > ${min_value_usd} | 最近{count}笔交易
| 时间 | 类型 | 金额 | 交易对手方 | 交易对手方标签 |
|---|---|---|---|---|
| {time} | 转入/转出/合约交互 | ${value} | | {标签/未知} |
| ... | ... | ... | ... | ... |
交易模式分析:
{LLM分析交易记录并识别模式:}
- 频繁与交易所交互 → 可能为存提币操作
- 大额单向转出 → 可能为清算操作
- 与多个新地址交互 → 可能为分散资金
- 定期固定金额转账 → 可能为发薪/场外交易
6. Fund Flow Tracing
6. 资金流向追踪
Trace depth: {depth} levels | Minimum amount: ${min_value_usd}
{address} (origin)
├── ${amount} → {addr_1} ({label_1})
│ ├── ${amount} → {addr_1a} ({label})
│ └── ${amount} → {addr_1b} ({label})
├── ${amount} → {addr_2} ({label_2})
│ └── ${amount} → {addr_2a} ({label})
└── ${amount} → {addr_3} ({label_3})Fund Flow Analysis:
{LLM analysis based on tracing results:}
- Ultimate destination of funds (exchange? mixer? DeFi protocol?)
- Any suspicious patterns (split transfers, circular transfers, obfuscation paths)
- Associated known entities
追踪深度:{depth}层 | 最低金额:${min_value_usd}
{address}(起点)
├── ${amount} → {addr_1} ({label_1})
│ ├── ${amount} → {addr_1a} ({label})
│ └── ${amount} → {addr_1b} ({label})
├── ${amount} → {addr_2} ({label_2})
│ └── ${amount} → {addr_2a} ({label})
└── ${amount} → {addr_3} ({label_3})资金流向分析:
{LLM基于追踪结果分析:}
- 资金最终去向(交易所?混币器?DeFi协议?)
- 是否存在可疑模式(拆分转账、循环转账、混淆路径)
- 关联的已知实体
⚠️ Risk Warnings
⚠️ 风险提示
{If the address has risk flags, prominently display:}
- ⚠️ This address is flagged as: {risk_label}
- ⚠️ Associated addresses involved in: {risk_detail}
---{如果地址有风险标记,突出显示:}
- ⚠️ 该地址被标记为:{risk_label}
- ⚠️ 关联地址涉及:{risk_detail}
---Decision Logic
决策逻辑
| Condition | Assessment |
|---|---|
| risk_score > 70 | High-risk address — warn user to exercise caution |
| risk_score 40-70 | Medium risk — note some risk factors present |
| risk_score < 40 | Low risk |
| Holding concentration > 80% in a single token | Flag "Highly concentrated holding" |
| DeFi lending health factor < 1.2 | Near liquidation |
| Large outflow in past 24h > 50% of total balance | Flag "Recent large outflow" |
| Fund flow includes mixer addresses | Flag "Mixer involvement — high risk" |
| Fund flow includes OFAC-sanctioned addresses | Flag "Associated with sanctioned address" |
| trace_fund_flow returns empty | Possibly a new address or no large-enough transactions — handle normally |
| 条件 | 评估 |
|---|---|
| 风险评分 >70 | 高风险地址——提醒用户谨慎操作 |
| 风险评分40-70 | 中风险——注意存在部分风险因素 |
| 风险评分 <40 | 低风险 |
| 单一代币持有集中度>80% | 标记“高度集中持有” |
| DeFi借贷健康因子<1.2 | 接近清算 |
| 过去24小时大额流出>总余额50% | 标记“近期大额流出” |
| 资金流向包含混币器地址 | 标记“涉及混币器——高风险” |
| 资金流向包含OFAC制裁地址 | 标记“关联制裁地址” |
| 资金流向追踪返回空 | 可能是新地址或无足够大额交易——正常处理 |
Error Handling
错误处理
| Error Type | Handling |
|---|---|
| Invalid address format | Prompt user to check the format; provide correct format examples |
| Cannot identify chain | Prompt user to specify the chain ("Which chain is this address on? ETH/BSC/TRX/BTC...") |
| Address may be new or have no on-chain activity; inform the user |
| Inform user "Fund tracing is still under development"; show transaction history only |
| Reduce limit and retry, or show address profile only |
| All Tools fail | Return error message; suggest the user try again later |
| 错误类型 | 处理方式 |
|---|---|
| 地址格式无效 | 提示用户检查格式;提供正确格式示例 |
| 无法识别链类型 | 提示用户指定链(“该地址属于哪条链?ETH/BSC/TRX/BTC...”) |
| 地址可能是新地址或无链上活动;告知用户 |
| 告知用户“资金追踪功能仍在开发中”;仅显示交易历史 |
| 减少限制并重试,或仅显示地址资料 |
| 所有工具调用失败 | 返回错误信息;建议用户稍后再试 |
Cross-Skill Routing
跨Skill路由
| User Follow-up Intent | Route To |
|---|---|
| "Is this address safe?" | |
| "On-chain data for this token" | |
| "Which institution owns this address?" | |
| "Analyze XX coin for me" | |
| "Why was there a large outflow?" | |
| 用户后续意图 | 路由至 |
|---|---|
| “这个地址安全吗?” | |
| “该代币的链上数据” | |
| “哪个机构拥有这个地址?” | |
| “帮我分析XX币” | |
| “为什么有大额流出?” | |
Safety Rules
安全规则
- Privacy protection: Do not link on-chain addresses to specific natural persons (unless publicly labeled as institutional addresses)
- Clear risk warnings: High-risk addresses must have prominent, unmistakable risk labels with reasons
- No definitive characterization: Do not use terms like "criminal address" or "dirty money" — use objective language like "flagged as high risk" or "associated with suspicious activity"
- Data source transparency: Label data sources (BlockInfo / Nansen / Arkham) must be attributed
- Flag missing data: Fund tracing rolls out in phases; when unavailable, explicitly state it
- Do not encourage stalking: If a user attempts to track many personal addresses for harassment purposes, prompt responsible use
- 隐私保护:不得将链上地址与特定自然人关联(除非是公开标记的机构地址)
- 明确风险提示:高风险地址必须有醒目、清晰的风险标签及原因
- 避免绝对定性:不得使用“犯罪地址”或“脏钱”等术语——使用“标记为高风险”或“关联可疑活动”等客观表述
- 数据源透明:必须标注数据源(BlockInfo / Nansen / Arkham)
- 标记缺失数据:资金追踪功能分阶段推出;当不可用时,明确告知用户
- 不鼓励骚扰:如果用户试图追踪大量个人地址用于骚扰,提示用户负责任地使用