intentTransfer
Enables token transfers on Ethereum by creating transfer intents, specifying token address, amount, and recipient. Optional chainId for multi-chain support.
Instructions
Creates an intent to transfer tokens
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | The amount to transfer | |
chainId | No | Optional specify chainId to use | |
to | Yes | The recipient address or ENS name | |
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 specify chainId to use",
"type": "number"
},
"to": {
"description": "The recipient address or ENS name",
"type": "string"
},
"token": {
"description": "The token address",
"type": "string"
}
},
"required": [
"token",
"amount",
"to"
],
"type": "object"
}