validate-contract-address
Verify if a given address is a valid smart contract on the Osmosis blockchain, ensuring accuracy for transactions and interactions.
Instructions
Validates if an address is a valid contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to validate |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The address to validate",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}