EDUCHAIN Agent Kit

send_erc20_token

Transfer ERC20 tokens to a specified wallet address using a private key, token contract address, and amount. Confirm transactions securely within the EDUCHAIN Agent Kit.

Instructions

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" }
ID: fd54q7e2lz