coinchanGetVestableAmount
Retrieve the vestable liquidity amount for locked Coinchan tokens using chain ID and coin ID inputs on the agentek-eth MCP server.
Instructions
Get the amount of liquidity currently available to vest for a locked Coinchan token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | ||
coinId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "number"
},
"coinId": {
"format": "int64",
"type": "integer"
}
},
"required": [
"chainId",
"coinId"
],
"type": "object"
}