eth_getBalance
Check the balance of any Ethereum or EVM-compatible blockchain account by providing the wallet address and optional block number to query current or historical token holdings.
Instructions
Returns the balance of the account of given address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Address to check balance for | |
blockNumber | No | Block number or 'latest', 'earliest', 'pending' | latest |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Address to check balance for",
"type": "string"
},
"blockNumber": {
"default": "latest",
"description": "Block number or 'latest', 'earliest', 'pending'",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}