deploy_erc20_token
Deploy a custom ERC20 token contract on the Rootstock blockchain using the Rootstock MCP Server. Specify token name, symbol, initial supply, and optional features like mintability and decimals.
Instructions
Deploy a new ERC20 token contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
decimals | No | Token decimals (default: 18) | |
gasLimit | No | Optional gas limit | |
gasPrice | No | Optional gas price | |
initialSupply | Yes | Initial token supply | |
mintable | No | Whether the token should be mintable (default: false) | |
name | Yes | Token name (e.g., "My Token") | |
symbol | Yes | Token symbol (e.g., "MTK") |
Input Schema (JSON Schema)
{
"properties": {
"decimals": {
"description": "Token decimals (default: 18)",
"type": "number"
},
"gasLimit": {
"description": "Optional gas limit",
"type": "string"
},
"gasPrice": {
"description": "Optional gas price",
"type": "string"
},
"initialSupply": {
"description": "Initial token supply",
"type": "string"
},
"mintable": {
"description": "Whether the token should be mintable (default: false)",
"type": "boolean"
},
"name": {
"description": "Token name (e.g., \"My Token\")",
"type": "string"
},
"symbol": {
"description": "Token symbol (e.g., \"MTK\")",
"type": "string"
}
},
"required": [
"name",
"symbol",
"initialSupply"
],
"type": "object"
}