Coda by Ian Macalinao
    Preparing search index...

    Information about a validator in the pool NOTE: ORDER IS VERY IMPORTANT HERE, PLEASE DO NOT RE-ORDER THE FIELDS UNLESS THERE'S AN EXTREMELY GOOD REASON. To save on BPF instructions, the serialized bytes are reinterpreted with a bytemuck transmute, which means that this structure cannot have any undeclared alignment-padding in its representation.

    interface ValidatorStakeInfo {
        activeStakeLamports: bigint;
        lastUpdateEpoch: bigint;
        status: PodStakeStatus;
        transientSeedSuffix: bigint;
        transientStakeLamports: bigint;
        unused: number;
        validatorSeedSuffix: number;
        voteAccountAddress: Address;
    }
    Index

    Properties

    activeStakeLamports: bigint

    Amount of lamports on the validator stake account, including rent Note that if last_update_epoch does not match the current epoch then this field may not be accurate

    lastUpdateEpoch: bigint

    Last epoch the active and transient stake lamports fields were updated

    Status of the validator stake account

    transientSeedSuffix: bigint

    Transient account seed suffix, used to derive the transient stake account address

    transientStakeLamports: bigint

    Amount of transient stake delegated to this validator Note that if last_update_epoch does not match the current epoch then this field may not be accurate

    unused: number

    Unused space, initially meant to specify the end of seed suffixes

    validatorSeedSuffix: number

    Validator account seed suffix

    voteAccountAddress: Address

    Validator vote account address