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