Coda by Ian Macalinao
    Preparing search index...

    Type Alias CleanupRemovedValidatorEntriesInstruction<TProgram, TAccountStakePool, TAccountValidatorList, TRemainingAccounts>

    CleanupRemovedValidatorEntriesInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountStakePool extends string
                ? ReadonlyAccount<TAccountStakePool>
                : TAccountStakePool,
            TAccountValidatorList extends string
                ? WritableAccount<TAccountValidatorList>
                : TAccountValidatorList,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof SPL_STAKE_POOL_PROGRAM_ADDRESS
    • TAccountStakePool extends string | AccountMeta = string
    • TAccountValidatorList extends string | AccountMeta = string
    • TRemainingAccounts extends readonly AccountMeta[] = []