gill
gill/programs/system/Type aliases

AuthorizeNonceAccountInstruction

type AuthorizeNonceAccountInstruction<TProgram, TAccountNonceAccount, TAccountNonceAuthority, TRemainingAccounts> = IInstruction<TProgram> & IInstructionWithData<Uint8Array> & IInstructionWithAccounts<[TAccountNonceAccount extends string ? WritableAccount<TAccountNonceAccount> : TAccountNonceAccount, TAccountNonceAuthority extends string ? ReadonlySignerAccount<TAccountNonceAuthority> & IAccountSignerMeta<TAccountNonceAuthority> : TAccountNonceAuthority, ...TRemainingAccounts]>;

Type Parameters

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

On this page