get_smart_contract_info
Retrieve detailed information about any smart contract by providing its address. Analyze contract details, functions, and properties for blockchain development and auditing purposes.
Instructions
Get detailed information about a specific smart contract
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | The smart contract address |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The smart contract address",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}