send_token
Transfer native currency or ERC20 tokens to recipients on the VeChain blockchain network using base units for precise amount control.
Instructions
Send native currency or an ERC20 token to a recipient, in base units.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recipient | Yes | ||
| amountInBaseUnits | Yes | ||
| tokenAddress | No |
Input Schema (JSON Schema)
{
"properties": {
"amountInBaseUnits": {
"type": "string"
},
"recipient": {
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"tokenAddress": {
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"recipient",
"amountInBaseUnits"
],
"type": "object"
}