gill
gill/programs/system/Type aliases

AuthorizeNonceAccountInstruction

type AuthorizeNonceAccountInstruction<TProgram, TAccountNonceAccount, TAccountNonceAuthority, TRemainingAccounts> = Instruction<TProgram> & InstructionWithData<ReadonlyUint8Array> & InstructionWithAccounts<[TAccountNonceAccount extends string ? WritableAccount<TAccountNonceAccount> : TAccountNonceAccount, TAccountNonceAuthority extends string ? ReadonlySignerAccount<TAccountNonceAuthority> & AccountSignerMeta<TAccountNonceAuthority> : TAccountNonceAuthority, ...TRemainingAccounts]>;

Type Parameters

Type ParameterDefault type
TProgram extends stringtypeof SYSTEM_PROGRAM_ADDRESS
TAccountNonceAccount extends string | AccountMeta<string>string
TAccountNonceAuthority extends string | AccountMeta<string>string
TRemainingAccounts extends readonly AccountMeta<string>[][]

On this page