intentAaveWithdraw
Withdraw tokens from Aave by redeeming supplied assets (aTokens) using a specified chain ID, token contract address, and amount.
Instructions
Withdraws tokens from Aave, redeeming your supplied assets (aTokens).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of tokens to withdraw (in human-readable format). | |
asset | Yes | Token contract address to withdraw. | |
chainId | Yes | Chain ID for the withdrawal. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount of tokens to withdraw (in human-readable format).",
"type": "string"
},
"asset": {
"description": "Token contract address to withdraw.",
"type": "string"
},
"chainId": {
"description": "Chain ID for the withdrawal.",
"type": "number"
}
},
"required": [
"chainId",
"asset",
"amount"
],
"type": "object"
}