Skip to main content
Validator data lives on-chain and is readable over standard EVM JSON-RPC. You query current state through the staking, slashing, and governance precompiles, and you reconstruct history from their event logs. This means an indexer or analytics platform reads everything it needs through eth_call and eth_getLogs, with no access to a node’s stabled CLI or Cosmos REST.
Concept: For what the staking module tracks and how delegation works, see Staking module. For per-method inputs and outputs, see the Staking precompile reference.

Where each data point comes from

Precompile addresses

Connect to Mainnet (Chain ID 988) at https://rpc.stable.xyz. See Mainnet information for endpoints and limits.

Validator name, stake, and commission

Call validators() on the staking precompile to read the current validator set. Pass a bond status to filter (for example BOND_STATUS_BONDED). Each entry exposes the validator’s description (including moniker), tokens (bonded stake), and commission.
The tokens and commission values are scaled to 18 decimals. Divide commission by 1e18 to get the rate as a fraction (for example 0.05 for 5%). For the complete Validator struct and the BOND_STATUS_* values, see the Staking precompile reference.

Stake changes over time

validators() returns a snapshot. To track how stake moved, index the staking precompile’s delegation events. Delegate, Unbond, and Redelegate carry the indexed validatorAddr and the amount, so you can attribute every stake change to a validator and block.
Unbond and Redelegate follow the same shape and additionally carry a completionTime. See the Events section of the staking reference for exact signatures.

Join date

A validator’s join date is the block timestamp of its CreateValidator event. The event is indexed by validator address, so you filter for a single validator or sweep the full set, then resolve each log’s blockNumber to a timestamp with eth_getBlockByNumber.
Genesis validators have no CreateValidator event. They were created in the genesis block, not by a transaction, so no log exists. Treat their join date as the chain genesis: 2025-10-29. Index CreateValidator for everyone who joined after genesis, and backfill the genesis set from the genesis validator list.

Uptime

Read signing information from the slashing precompile (0x...806) using getSigningInfos(). Each record reports signedBlocksWindow (the size of the sliding window) and missedBlocksCounter (blocks missed within it). Compute uptime as:
A validator with a signedBlocksWindow of 10000 and a missedBlocksCounter of 25 has 99.75% uptime over the window. This is a rolling figure, not lifetime uptime. To track uptime history, snapshot the counters on a fixed interval and store each reading.
The slashing precompile follows the Cosmos EVM x/slashing interface. Its address is listed in the system modules precompile table. Generate the exact method ABI from the chain’s precompile interface.

Voting history

Governance data has two layers. For the aggregate outcome of a proposal, call getTallyResult() on the gov precompile (0x...805). For who voted what, index the Vote and VoteWeighted event logs. The voter address in these logs is the validator’s operator address, so you can join votes to validators directly.
Live vote logs are confirmed for every proposal to date (proposals #1 through #7). Use getTallyResult() when you only need the final counts per proposal, and the event logs when you need per-validator records.
The gov precompile follows the Cosmos EVM x/gov interface. Its address is listed in the system modules precompile table. Generate the exact method ABI and the VoteOption enum from the chain’s precompile interface.

Staking precompile reference

Look up the full validators(), delegation methods, and event signatures.

Create a validator

Register a synced node as a validator so it appears in the data above.

Indexers and analytics

Browse indexing providers that already serve normalized Stable data.

Mainnet information

Get Chain ID, RPC endpoints, and rate limits before you start indexing.
Last modified on June 8, 2026