get_balance
Retrieve wallet balances for native VET currency or specific ERC20 tokens on the VeChain blockchain network by providing a wallet address and optional token contract address.
Instructions
Get the balance of the wallet for native currency or a specific ERC20 token.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | ||
| tokenAddress | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"tokenAddress": {
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}