Skip to main content
The solana.staking.balances_latest table contains the current, latest staking statistics of each stake_account. It is derived from getting the latest record per stake_account from the solana.staking.balances table.
Search by stake_account, not delegated_vote_account. This table is keyed on stake_account and holds exactly one row per stake account — it is effectively a stake-account balances-latest table, not a per-validator one. A validator’s delegated_vote_account is repeated across every stake account delegated to it, so filtering WHERE delegated_vote_account = '<vote_account>' returns the many individual delegating stake accounts, not the validator’s aggregate stake. To get a validator-level total, aggregate across stake accounts:

Table columns