intentTransferFrom
Generate and execute token transfer intents from one address to another, specifying token details, amounts, and recipient addresses for Ethereum-based transactions.
Instructions
Creates an intent to transfer tokens from another address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to transfer | |
chainId | No | Optional specific chain to use | |
from | Yes | The address to transfer from | |
to | Yes | The recipient address or ENS | |
token | Yes | The token address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "The amount to transfer",
"type": "string"
},
"chainId": {
"description": "Optional specific chain to use",
"type": "number"
},
"from": {
"description": "The address to transfer from",
"type": "string"
},
"to": {
"description": "The recipient address or ENS",
"type": "string"
},
"token": {
"description": "The token address",
"type": "string"
}
},
"required": [
"token",
"amount",
"from",
"to"
],
"type": "object"
}