Coda by Ian Macalinao
    Preparing search index...

    Type Alias UpdateStakePoolBalanceInstruction<TProgram, TAccountStakePool, TAccountWithdrawAuthority, TAccountValidatorList, TAccountReserveStake, TAccountFeeAccount, TAccountPoolMint, TAccountTokenProgram, TRemainingAccounts>

    UpdateStakePoolBalanceInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            TAccountStakePool extends string
                ? WritableAccount<TAccountStakePool>
                : TAccountStakePool,
            TAccountWithdrawAuthority extends string
                ? ReadonlyAccount<TAccountWithdrawAuthority>
                : TAccountWithdrawAuthority,
            TAccountValidatorList extends string
                ? WritableAccount<TAccountValidatorList>
                : TAccountValidatorList,
            TAccountReserveStake extends string
                ? ReadonlyAccount<TAccountReserveStake>
                : TAccountReserveStake,
            TAccountFeeAccount extends string
                ? WritableAccount<TAccountFeeAccount>
                : TAccountFeeAccount,
            TAccountPoolMint extends string
                ? WritableAccount<TAccountPoolMint>
                : TAccountPoolMint,
            TAccountTokenProgram extends string
                ? ReadonlyAccount<TAccountTokenProgram>
                : TAccountTokenProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof SPL_STAKE_POOL_PROGRAM_ADDRESS
    • TAccountStakePool extends string | AccountMeta = string
    • TAccountWithdrawAuthority extends string | AccountMeta = string
    • TAccountValidatorList extends string | AccountMeta = string
    • TAccountReserveStake extends string | AccountMeta = string
    • TAccountFeeAccount extends string | AccountMeta = string
    • TAccountPoolMint extends string | AccountMeta = string
    • TAccountTokenProgram extends string | AccountMeta = "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
    • TRemainingAccounts extends readonly AccountMeta[] = []