intentWithdrawFromSlow
Withdraw unlocked tokens from the SLOW contract to a specified recipient address. Specify chain ID, sender, receiver, token ID, and amount to execute the withdrawal.
Instructions
Withdraw unlocked tokens from SLOW contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to withdraw | |
chainId | Yes | The chainId to execute the intent on. | |
from | Yes | The address to withdraw from | |
id | Yes | The token ID to withdraw | |
to | Yes | The recipient address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to withdraw",
"type": "string"
},
"chainId": {
"description": "The chainId to execute the intent on.",
"type": "number"
},
"from": {
"description": "The address to withdraw from",
"type": "string"
},
"id": {
"description": "The token ID to withdraw",
"type": "string"
},
"to": {
"$ref": "#/properties/from",
"description": "The recipient address"
}
},
"required": [
"chainId",
"from",
"to",
"id",
"amount"
],
"type": "object"
}