analyze-verified-contract
Analyze verified smart contracts on the Monad testnet to evaluate functionality and security by inputting a contract address.
Instructions
Analyze a verified contract from an address on the Monad testnet.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Monad testnet address to analyze verified contract for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "Monad testnet address to analyze verified contract for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}