intentUnstakeNani
Convert xNANI tokens back to NANI tokens on a specified Ethereum chain. Input the amount and chain ID to initiate the unstaking process with agentek-eth's MCP server tool.
Instructions
Unstake xNANI tokens back to NANI tokens
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount of xNANI tokens to unstake | |
chainId | Yes | The chain to unstake on |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount of xNANI tokens to unstake",
"type": "string"
},
"chainId": {
"description": "The chain to unstake on",
"type": "number"
}
},
"required": [
"amount",
"chainId"
],
"type": "object"
}