security.token_diagnostic
Run a combined token risk and contract health audit in one request. See honeypot, tax, LP lock, and burn status together.
Instructions
Bundles get_token_risk + get_contract_health_audit into one combined
diagnostic report (same GoPlus data, run in parallel, one upstream round
trip), plus a deduped union of risk_flags. Does not compute a composite
score/grade - every field is copied unchanged from the two underlying tools.
Use this instead of calling get_token_risk and get_contract_health_audit
separately when you want both honeypot/tax risk AND LP lock/burn status in
one call. Do NOT use it if you only need one of the two - call that single
tool directly to save a round trip. Does not cover token unlock/vesting
risk - use get_token_dump_risk separately for that.
Args:
chain_id: EVM chain id, e.g. 8453 for Base.
contract_address: Token contract address (0x...).
Returns:
On success: {"success": true, ...combined token_risk + contract_health_audit fields}
On failure: {"success": false, "error": {"type", "message"}}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain_id | Yes | ||
| contract_address | Yes |