Token Balance

This registry captures the on-chain balance of a specific token on a given EVM-compatible network. It includes precision metadata for proper formatting and display.

Registry Fields

Field Name
Type
Description

tokenAddress

string

The contract address of the token (ERC-20 or similar).

rawBalance

string

The raw balance in the smallest unit (e.g., wei for ETH).

decimals

number

Number of decimal places used by the token (e.g., 18 for ETH).

network

string

The name or ID of the EVM-compatible network

Example Entry

{
  "tokenAddress": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
  "rawBalance": "234000000",
  "decimals": 6,
  "network": "ethereum"
}

Last updated