@sentio/protos 2.18.4-rc.3 → 2.19.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -231,6 +231,7 @@ export interface MoveCallFilter {
231
231
  typeArguments: string[];
232
232
  withTypeArguments: boolean;
233
233
  includeFailed: boolean;
234
+ publicKeyPrefix: string;
234
235
  }
235
236
  export interface Topic {
236
237
  hashes: string[];
@@ -2614,7 +2614,7 @@ export const MoveCallHandlerConfig = {
2614
2614
  },
2615
2615
  };
2616
2616
  function createBaseMoveCallFilter() {
2617
- return { function: "", typeArguments: [], withTypeArguments: false, includeFailed: false };
2617
+ return { function: "", typeArguments: [], withTypeArguments: false, includeFailed: false, publicKeyPrefix: "" };
2618
2618
  }
2619
2619
  export const MoveCallFilter = {
2620
2620
  encode(message, writer = _m0.Writer.create()) {
@@ -2630,6 +2630,9 @@ export const MoveCallFilter = {
2630
2630
  if (message.includeFailed === true) {
2631
2631
  writer.uint32(32).bool(message.includeFailed);
2632
2632
  }
2633
+ if (message.publicKeyPrefix !== "") {
2634
+ writer.uint32(42).string(message.publicKeyPrefix);
2635
+ }
2633
2636
  return writer;
2634
2637
  },
2635
2638
  decode(input, length) {
@@ -2651,6 +2654,9 @@ export const MoveCallFilter = {
2651
2654
  case 4:
2652
2655
  message.includeFailed = reader.bool();
2653
2656
  break;
2657
+ case 5:
2658
+ message.publicKeyPrefix = reader.string();
2659
+ break;
2654
2660
  default:
2655
2661
  reader.skipType(tag & 7);
2656
2662
  break;
@@ -2664,6 +2670,7 @@ export const MoveCallFilter = {
2664
2670
  typeArguments: Array.isArray(object?.typeArguments) ? object.typeArguments.map((e) => String(e)) : [],
2665
2671
  withTypeArguments: isSet(object.withTypeArguments) ? Boolean(object.withTypeArguments) : false,
2666
2672
  includeFailed: isSet(object.includeFailed) ? Boolean(object.includeFailed) : false,
2673
+ publicKeyPrefix: isSet(object.publicKeyPrefix) ? String(object.publicKeyPrefix) : "",
2667
2674
  };
2668
2675
  },
2669
2676
  toJSON(message) {
@@ -2677,6 +2684,7 @@ export const MoveCallFilter = {
2677
2684
  }
2678
2685
  message.withTypeArguments !== undefined && (obj.withTypeArguments = message.withTypeArguments);
2679
2686
  message.includeFailed !== undefined && (obj.includeFailed = message.includeFailed);
2687
+ message.publicKeyPrefix !== undefined && (obj.publicKeyPrefix = message.publicKeyPrefix);
2680
2688
  return obj;
2681
2689
  },
2682
2690
  create(base) {
@@ -2688,6 +2696,7 @@ export const MoveCallFilter = {
2688
2696
  message.typeArguments = object.typeArguments?.map((e) => e) || [];
2689
2697
  message.withTypeArguments = object.withTypeArguments ?? false;
2690
2698
  message.includeFailed = object.includeFailed ?? false;
2699
+ message.publicKeyPrefix = object.publicKeyPrefix ?? "";
2691
2700
  return message;
2692
2701
  },
2693
2702
  };