get_balance
Retrieve the balance of a wallet address for native or ERC20 tokens on the Rootstock blockchain using standardized APIs from the MCP Server.
Instructions
Get the balance of a wallet address (native tokens or ERC20 tokens)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address to check balance for | |
tokenAddress | No | Optional ERC20 token contract address |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address to check balance for",
"type": "string"
},
"tokenAddress": {
"description": "Optional ERC20 token contract address",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}