Staking 🌱
Last updated
Was this helpful?
Last updated
Was this helpful?
The staking vertical contains table about native SOL staking, as described . It does not include data on Liquid Staking Tokens (LSTs).
The solana.staking.stakers
table contains information about every stake_account
ever created. Key columns include staker
, withdrawer
, lockup_custodian
, lockup_epoch
, lockup_unix_timestamp
.
The solana.staking.validator_commissions
table contains the latest commission rate of validators. It is derived from the commission
column of the solana.raw.rewards
table.
The solana.staking.balances
table contains the historical staking numbers for each stake_account
. Key columns include delegated_stake
, active_stake
, last_activation_epoch
and last_deactivation_epoch
.
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 staking balances.