Coda by Ian Macalinao
    Preparing search index...
    interface ValidatorStakeInfoArgs {
        activeStakeLamports: number | bigint;
        lastUpdateEpoch: number | bigint;
        status: PodStakeStatus;
        transientSeedSuffix: number | bigint;
        transientStakeLamports: number | bigint;
        unused: number;
        validatorSeedSuffix: number;
        voteAccountAddress: Address;
    }
    Index

    Properties

    activeStakeLamports: number | 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: number | bigint

    Last epoch the active and transient stake lamports fields were updated

    Status of the validator stake account

    transientSeedSuffix: number | bigint

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

    transientStakeLamports: number | 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