intentCoinchanMakeHold
Deploy a new Coinchan token, allocate liquidity, and secure creator-held supply on Ethereum using specified parameters like chain ID, name, symbol, token URI, pool supply, and swap fee.
Instructions
Create a new Coinchan token and hold liquidity for the creator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
creator | Yes | Ethereum Address of the creator | |
creatorSupply | Yes | ||
name | Yes | ||
poolSupply | Yes | ||
swapFee | Yes | ||
symbol | Yes | ||
tokenURI | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"creator": {
"description": "Ethereum Address of the creator",
"type": "string"
},
"creatorSupply": {
"format": "int64",
"type": "integer"
},
"name": {
"type": "string"
},
"poolSupply": {
"format": "int64",
"type": "integer"
},
"swapFee": {
"format": "int64",
"type": "integer"
},
"symbol": {
"type": "string"
},
"tokenURI": {
"type": "string"
},
"value": {
"format": "int64",
"type": "integer"
}
},
"required": [
"chainId",
"name",
"symbol",
"tokenURI",
"poolSupply",
"creatorSupply",
"swapFee",
"creator",
"value"
],
"type": "object"
}