addedInput schema / additionalProperties
Added value: +false
addedInput schema / properties / chain / default
Added value: +null
changedInput schema / properties / chain / description
Previous value: -"Optional; inferred from the address shape when omitted"New value: +"Optional. Omit it and the chain is inferred from the address shape (0x… → Base by default, base58 → Solana). Set it explicitly when the same address shape is ambiguous."
changedInput schema / properties / token / description
Previous value: -"Contract address (0x…) or Solana mint; up to 5 comma-separated"New value: +"EVM contract address (0x + 40 hex chars) or Solana SPL mint (base58). Batch up to 5 addresses, comma-separated. Required."
addedInput schema / properties / token / examples
Added value: +[
+ "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
+ "So11111111111111111111111111111111111111112"
+]
addedInput schema / properties / token / maxLength
Added value: +300
addedInput schema / properties / token / minLength
Added value: +26
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "chain": {
+ "description": "Chain used for the screen, or `auto` when inferred",
+ "type": "string"
+ },
+ "results": {
+ "description": "One entry per requested token, in request order",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "level": {
+ "description": "Leading level word of the verdict, uppercased (e.g. PASS, CAUTION, HIGH-RISK); empty when the report produced no verdict line",
+ "type": "string"
+ },
+ "token": {
+ "description": "The address as requested",
+ "type": "string"
+ },
+ "verdict": {
+ "description": "The Verdict line exactly as it appears in the markdown report, e.g. `Verdict: CAUTION (3) — 1 high, 2 medium`",
+ "type": "string"
+ }
+ },
+ "required": [
+ "token",
+ "verdict",
+ "level"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "chain",
+ "results"
+ ],
+ "type": "object"
+}