deploy_erc721_token
Deploy a new ERC721 NFT token contract on the Rootstock blockchain. Specify collection name, symbol, and mintable option to create your NFT smart contract using Rootstock MCP Server.
Instructions
Deploy a new ERC721 (NFT) token contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gasLimit | No | Optional gas limit | |
gasPrice | No | Optional gas price | |
mintable | No | Whether the NFT should be mintable (default: false) | |
name | Yes | NFT collection name (e.g., "My NFT Collection") | |
symbol | Yes | NFT collection symbol (e.g., "MYNFT") |
Input Schema (JSON Schema)
{
"properties": {
"gasLimit": {
"description": "Optional gas limit",
"type": "string"
},
"gasPrice": {
"description": "Optional gas price",
"type": "string"
},
"mintable": {
"description": "Whether the NFT should be mintable (default: false)",
"type": "boolean"
},
"name": {
"description": "NFT collection name (e.g., \"My NFT Collection\")",
"type": "string"
},
"symbol": {
"description": "NFT collection symbol (e.g., \"MYNFT\")",
"type": "string"
}
},
"required": [
"name",
"symbol"
],
"type": "object"
}