intentAaveDeposit
Deposit tokens into the Aave protocol to supply liquidity and earn interest by specifying chain ID, asset, and amount in a structured format.
Instructions
Deposits tokens into the Aave protocol to supply liquidity and earn interest.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of tokens to deposit (in human-readable format). | |
asset | Yes | Token contract address to deposit. | |
chainId | Yes | Chain ID for the deposit. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount of tokens to deposit (in human-readable format).",
"type": "string"
},
"asset": {
"description": "Token contract address to deposit.",
"type": "string"
},
"chainId": {
"description": "Chain ID for the deposit.",
"type": "number"
}
},
"required": [
"chainId",
"asset",
"amount"
],
"type": "object"
}