intentApproveSlowTransfer
Approve pending cryptocurrency transfers in SLOW contracts, ensuring secure and controlled transactions by specifying chain ID, user address, and transfer ID.
Instructions
Guardian approves a transfer in SLOW contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes | The chainId to execute the intent on. | |
from | Yes | The user address that initiated the transfer | |
transferId | Yes | The transfer ID to approve |
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"
},
"from": {
"description": "The user address that initiated the transfer",
"type": "string"
},
"transferId": {
"description": "The transfer ID to approve",
"type": "string"
}
},
"required": [
"chainId",
"from",
"transferId"
],
"type": "object"
}