@sentio/sdk
    Preparing search index...

    Variable InstructionHandlerConfig

    InstructionHandlerConfig: {
        create(
            base?: {
                innerInstruction?: boolean;
                parsedInstruction?: boolean;
                rawDataInstruction?: boolean;
            },
        ): InstructionHandlerConfig;
        decode(
            input: Uint8Array<ArrayBufferLike> | 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;
    }

    Type Declaration

    • create: function
      • Parameters

        • Optionalbase: {
              innerInstruction?: boolean;
              parsedInstruction?: boolean;
              rawDataInstruction?: boolean;
          }

        Returns InstructionHandlerConfig

    • decode: function
      • Parameters

        • input: Uint8Array<ArrayBufferLike> | Reader
        • Optionallength: number

        Returns InstructionHandlerConfig

    • encode: function
    • fromJSON: function
    • fromPartial: function
      • Parameters

        • object: {
              innerInstruction?: boolean;
              parsedInstruction?: boolean;
              rawDataInstruction?: boolean;
          }

        Returns InstructionHandlerConfig

    • toJSON: function