@sentio/sdk
    Preparing search index...

    Type Alias DBResponse

    DBResponse: Message<"processor.DBResponse"> & {
        nextCursor?: string;
        opId: bigint;
        value:
            | { case: "error"; value: string }
            | { case: "entityList"; value: EntityList }
            | { case: undefined; value?: undefined };
    }

    Type Declaration

    • OptionalnextCursor?: string

      from field: optional string next_cursor = 5;

    • opId: bigint

      from field: uint64 op_id = 1;

    • value:
          | { case: "error"; value: string }
          | { case: "entityList"; value: EntityList }
          | { case: undefined; value?: undefined }

      from oneof processor.DBResponse.value

    from message processor.DBResponse