Variable InstructionHandlerConfig

InstructionHandlerConfig: {
    create(
        base?: {
            innerInstruction?: boolean;
            parsedInstruction?: boolean;
            rawDataInstruction?: boolean;
        },
    ): InstructionHandlerConfig;
    decode(
        input: Uint8Array | Reader,
        length?: number,
    ): InstructionHandlerConfig;
    encode(message: InstructionHandlerConfig, writer?: Writer): Writer;
    fromJSON(object: any): InstructionHandlerConfig;
    fromPartial(
        object: {
            innerInstruction?: boolean;
            parsedInstruction?: boolean;
            rawDataInstruction?: boolean;
        },
    ): InstructionHandlerConfig;
    toJSON(message: InstructionHandlerConfig): unknown;
}