intentCreateCoinToken
Deploy a new ERC6909 token within the Coins contract, specifying name, symbol, metadata URI, owner, and initial supply for Ethereum-based automation.
Instructions
Creates a new ERC6909 token inside the Coins contract with a name, symbol, metadata URI, owner, and initial supply.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | The chainId to deploy on e.g. 1 (mainnet), 8453 (base) | |
name | Yes | Token name | |
owner | Yes | Owner address | |
supply | Yes | Initial supply as a human readable string (e.g., '1000') | |
symbol | Yes | Token symbol | |
tokenURI | Yes | Metadata URI |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "The chainId to deploy on e.g. 1 (mainnet), 8453 (base)",
"type": "number"
},
"name": {
"description": "Token name",
"type": "string"
},
"owner": {
"description": "Owner address",
"type": "string"
},
"supply": {
"description": "Initial supply as a human readable string (e.g., '1000')",
"type": "string"
},
"symbol": {
"description": "Token symbol",
"type": "string"
},
"tokenURI": {
"description": "Metadata URI",
"type": "string"
}
},
"required": [
"chainId",
"name",
"symbol",
"tokenURI",
"owner",
"supply"
],
"type": "object"
}