intentCoinchanMake
Create and mint a new Coinchan token, add initial liquidity via ZAMM, and set swap fees on Ethereum-based chains using predefined inputs like token name, symbol, metadata, and owner address.
Instructions
Create a new Coinchan token, mint supplies and add initial liquidity via ZAMM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | Chain ID for execution | |
name | Yes | Name of the token | |
owner | Yes | Address receiving owner supply and pool liquidity | |
ownerSupply | Yes | Amount of token to transfer to owner in human readable format | |
poolSupply | Yes | Amount of token to add to pool in human readable format | |
swapFee | Yes | Swap fee for the pool e.g. 100 for 1% | |
symbol | Yes | Symbol of the token | |
tokenURI | Yes | A valid URL to token metadata like name, description, and image url | |
value | Yes | Native token value in human readable Ether format representing liquidity funded |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "Chain ID for execution",
"type": "number"
},
"name": {
"description": "Name of the token",
"type": "string"
},
"owner": {
"description": "Address receiving owner supply and pool liquidity",
"type": "string"
},
"ownerSupply": {
"description": "Amount of token to transfer to owner in human readable format",
"type": "string"
},
"poolSupply": {
"description": "Amount of token to add to pool in human readable format",
"type": "string"
},
"swapFee": {
"description": "Swap fee for the pool e.g. 100 for 1%",
"type": "number"
},
"symbol": {
"description": "Symbol of the token",
"type": "string"
},
"tokenURI": {
"description": "A valid URL to token metadata like name, description, and image url",
"type": "string"
},
"value": {
"description": "Native token value in human readable Ether format representing liquidity funded",
"type": "string"
}
},
"required": [
"chainId",
"name",
"symbol",
"tokenURI",
"poolSupply",
"ownerSupply",
"swapFee",
"owner",
"value"
],
"type": "object"
}