intentUnlockSlow
Use this tool to unlock time-locked transfers in SLOW contracts by specifying the chain ID and transfer ID. Designed for Ethereum-based automation on the agentek-eth MCP server.
Instructions
Unlock a time-locked 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 unlock |
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 unlock",
"type": "string"
}
},
"required": [
"chainId",
"transferId"
],
"type": "object"
}