generate_clarity_contract
Create Clarity smart contracts with SIP compliance, security best practices, and customizable features for Stacks blockchain development.
Instructions
Generate a complete Clarity contract with SIP compliance, security best practices, and comprehensive functionality.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contractName | Yes | Name of the contract to generate | |
contractType | Yes | Type of contract to generate | |
features | No | Additional features to include (e.g., ['minting', 'burning', 'metadata']) |
Input Schema (JSON Schema)
{
"properties": {
"contractName": {
"description": "Name of the contract to generate",
"type": "string"
},
"contractType": {
"description": "Type of contract to generate",
"enum": [
"sip009-nft",
"sip010-ft",
"counter",
"custom"
],
"type": "string"
},
"features": {
"description": "Additional features to include (e.g., ['minting', 'burning', 'metadata'])",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"contractName",
"contractType"
],
"type": "object"
}