EDUCHAIN Agent Kit

send_erc20_token

Send ERC20 token to another wallet address

Input Schema

NameRequiredDescriptionDefault
amountYesAmount of tokens to send
confirmNoConfirm the transaction after verifying wallet address (default: true)
privateKeyYesPrivate key of the sender wallet
toAddressYesRecipient wallet address
tokenAddressYesToken contract address

Input Schema (JSON Schema)

{ "properties": { "amount": { "description": "Amount of tokens to send", "type": "string" }, "confirm": { "description": "Confirm the transaction after verifying wallet address (default: true)", "type": "boolean" }, "privateKey": { "description": "Private key of the sender wallet", "type": "string" }, "toAddress": { "description": "Recipient wallet address", "type": "string" }, "tokenAddress": { "description": "Token contract address", "type": "string" } }, "required": [ "privateKey", "tokenAddress", "toAddress", "amount" ], "type": "object" }