intentReverseSlowTransfer
Reverse a pending transfer in a SLOW contract by specifying the chainId and transferId using this specialized Ethereum automation tool on the agentek-eth MCP server.
Instructions
Reverse a pending transfer in SLOW contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | The chainId to execute the intent on. | |
transferId | Yes | The transfer ID to reverse |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"description": "The chainId to execute the intent on.",
"type": "number"
},
"transferId": {
"description": "The transfer ID to reverse",
"type": "string"
}
},
"required": [
"chainId",
"transferId"
],
"type": "object"
}