UpgradeNonceAccountInstruction
type UpgradeNonceAccountInstruction<TProgram, TAccountNonceAccount, TRemainingAccounts> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[TAccountNonceAccount extends string ? WritableAccount<TAccountNonceAccount> : TAccountNonceAccount, ...TRemainingAccounts]>;Type Parameters
| Type Parameter | Default type |
|---|---|
TProgram extends string | typeof SYSTEM_PROGRAM_ADDRESS |
TAccountNonceAccount extends string | AccountMeta<string> | string |
TRemainingAccounts extends readonly AccountMeta<string>[] | [] |