auditContract
Analyze and audit Ethereum smart contracts for vulnerabilities and compliance by inputting contract address and chain details via the ethereum-tools MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
chain | No | eth |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"chain": {
"default": "eth",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}