Documentation
    Preparing search index...

    Type Alias IdlIncludeInstruction<TProgram, TAccountTickArray, TAccountSystemProgram, TRemainingAccounts>

    IdlIncludeInstruction: IInstruction<TProgram> & IInstructionWithData<Uint8Array> & IInstructionWithAccounts<
        [
            TAccountTickArray extends string
                ? ReadonlyAccount<TAccountTickArray>
                : TAccountTickArray,
            TAccountSystemProgram extends string
                ? ReadonlyAccount<TAccountSystemProgram>
                : TAccountSystemProgram,
            ...TRemainingAccounts,
        ],
    >

    Type Parameters

    • TProgram extends string = typeof WHIRLPOOL_PROGRAM_ADDRESS
    • TAccountTickArray extends string | IAccountMeta<string> = string
    • TAccountSystemProgram extends string | IAccountMeta<string> = "11111111111111111111111111111111"
    • TRemainingAccounts extends readonly IAccountMeta<string>[] = []