ethora-wallet-erc20-transfer
Transfer ERC20 tokens between wallets on the Ethora platform by specifying the recipient address and the amount to send.
Instructions
Transfer ERC20 tokens to another wallet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | amount for transfer | |
toWallet | Yes | to address for transfer |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "amount for transfer",
"type": "number"
},
"toWallet": {
"description": "to address for transfer",
"type": "string"
}
},
"required": [
"toWallet",
"amount"
],
"type": "object"
}