Coda by Ian Macalinao
    Preparing search index...

    Type Alias IncreaseAdditionalValidatorStakeInstruction<TProgram, TAccountStakePool, TAccountStaker, TAccountWithdrawAuthority, TAccountValidatorList, TAccountReserveStake, TAccountEphemeralStake, TAccountTransientStake, TAccountValidatorStake, TAccountValidatorVote, TAccountClockSysvar, TAccountStakeHistorySysvar, TAccountStakeConfigSysvar, TAccountSystemProgram, TAccountStakeProgram, TRemainingAccounts>

    IncreaseAdditionalValidatorStakeInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountStakePool extends string
                ? ReadonlyAccount<TAccountStakePool>
                : TAccountStakePool,
            TAccountStaker extends string
                ? ReadonlySignerAccount<TAccountStaker> & AccountSignerMeta<
                    TAccountStaker,
                >
                : TAccountStaker,
            TAccountWithdrawAuthority extends string
                ? ReadonlyAccount<TAccountWithdrawAuthority>
                : TAccountWithdrawAuthority,
            TAccountValidatorList extends string
                ? WritableAccount<TAccountValidatorList>
                : TAccountValidatorList,
            TAccountReserveStake extends string
                ? WritableAccount<TAccountReserveStake>
                : TAccountReserveStake,
            TAccountEphemeralStake extends string
                ? WritableAccount<TAccountEphemeralStake>
                : TAccountEphemeralStake,
            TAccountTransientStake extends string
                ? WritableAccount<TAccountTransientStake>
                : TAccountTransientStake,
            TAccountValidatorStake extends string
                ? ReadonlyAccount<TAccountValidatorStake>
                : TAccountValidatorStake,
            TAccountValidatorVote extends string
                ? ReadonlyAccount<TAccountValidatorVote>
                : TAccountValidatorVote,
            TAccountClockSysvar extends string
                ? ReadonlyAccount<TAccountClockSysvar>
                : TAccountClockSysvar,
            TAccountStakeHistorySysvar extends string
                ? ReadonlyAccount<TAccountStakeHistorySysvar>
                : TAccountStakeHistorySysvar,
            TAccountStakeConfigSysvar extends string
                ? ReadonlyAccount<TAccountStakeConfigSysvar>
                : TAccountStakeConfigSysvar,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            TAccountStakeProgram extends string
                ? ReadonlyAccount<TAccountStakeProgram>
                : TAccountStakeProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof SPL_STAKE_POOL_PROGRAM_ADDRESS
    • TAccountStakePool extends string | AccountMeta = string
    • TAccountStaker extends string | AccountMeta = string
    • TAccountWithdrawAuthority extends string | AccountMeta = string
    • TAccountValidatorList extends string | AccountMeta = string
    • TAccountReserveStake extends string | AccountMeta = string
    • TAccountEphemeralStake extends string | AccountMeta = string
    • TAccountTransientStake extends string | AccountMeta = string
    • TAccountValidatorStake extends string | AccountMeta = string
    • TAccountValidatorVote extends string | AccountMeta = string
    • TAccountClockSysvar extends string | AccountMeta = "SysvarC1ock11111111111111111111111111111111"
    • TAccountStakeHistorySysvar extends string | AccountMeta = "SysvarStakeHistory1111111111111111111111111"
    • TAccountStakeConfigSysvar extends string | AccountMeta = "StakeConfig11111111111111111111111111111111"
    • TAccountSystemProgram extends string | AccountMeta = "11111111111111111111111111111111"
    • TAccountStakeProgram extends string | AccountMeta = "Stake11111111111111111111111111111111111111"
    • TRemainingAccounts extends readonly AccountMeta[] = []