Documentation
    Preparing search index...

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

    IdlIncludeInstruction: Instruction<TProgram> & InstructionWithData<
        ReadonlyUint8Array,
    > & InstructionWithAccounts<
        [
            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 | AccountMeta<string> = string
    • TAccountSystemProgram extends string | AccountMeta<string> = "11111111111111111111111111111111"
    • TRemainingAccounts extends readonly AccountMeta<string>[] = []