@sentio/protos 2.57.9-rc.9 → 2.57.9

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/protos",
3
- "version": "2.57.9-rc.9",
3
+ "version": "2.57.9",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -416,6 +416,7 @@ export interface ExecutionConfig_DecoderWorkerConfig {
416
416
  enabled: boolean;
417
417
  workerCount?: number | undefined;
418
418
  skipWhenDecodeFailed?: boolean | undefined;
419
+ recordTiming?: boolean | undefined;
419
420
  }
420
421
 
421
422
  export interface ProcessConfigRequest {
@@ -1104,6 +1105,10 @@ export interface Data_EthLog {
1104
1105
  transaction?: { [key: string]: any } | undefined;
1105
1106
  transactionReceipt?: { [key: string]: any } | undefined;
1106
1107
  block?: { [key: string]: any } | undefined;
1108
+ rawLog: string;
1109
+ rawTransaction?: string | undefined;
1110
+ rawTransactionReceipt?: string | undefined;
1111
+ rawBlock?: string | undefined;
1107
1112
  }
1108
1113
 
1109
1114
  export interface Data_EthBlock {
@@ -1116,6 +1121,10 @@ export interface Data_EthTransaction {
1116
1121
  transactionReceipt?: { [key: string]: any } | undefined;
1117
1122
  block?: { [key: string]: any } | undefined;
1118
1123
  trace?: { [key: string]: any } | undefined;
1124
+ rawTransaction: string;
1125
+ rawTransactionReceipt?: string | undefined;
1126
+ rawBlock?: string | undefined;
1127
+ rawTrace?: string | undefined;
1119
1128
  }
1120
1129
 
1121
1130
  export interface Data_EthTrace {
@@ -1538,7 +1547,7 @@ export const ExecutionConfig = {
1538
1547
  };
1539
1548
 
1540
1549
  function createBaseExecutionConfig_DecoderWorkerConfig(): ExecutionConfig_DecoderWorkerConfig {
1541
- return { enabled: false, workerCount: undefined, skipWhenDecodeFailed: undefined };
1550
+ return { enabled: false, workerCount: undefined, skipWhenDecodeFailed: undefined, recordTiming: undefined };
1542
1551
  }
1543
1552
 
1544
1553
  export const ExecutionConfig_DecoderWorkerConfig = {
@@ -1552,6 +1561,9 @@ export const ExecutionConfig_DecoderWorkerConfig = {
1552
1561
  if (message.skipWhenDecodeFailed !== undefined) {
1553
1562
  writer.uint32(24).bool(message.skipWhenDecodeFailed);
1554
1563
  }
1564
+ if (message.recordTiming !== undefined) {
1565
+ writer.uint32(32).bool(message.recordTiming);
1566
+ }
1555
1567
  return writer;
1556
1568
  },
1557
1569
 
@@ -1583,6 +1595,13 @@ export const ExecutionConfig_DecoderWorkerConfig = {
1583
1595
 
1584
1596
  message.skipWhenDecodeFailed = reader.bool();
1585
1597
  continue;
1598
+ case 4:
1599
+ if (tag !== 32) {
1600
+ break;
1601
+ }
1602
+
1603
+ message.recordTiming = reader.bool();
1604
+ continue;
1586
1605
  }
1587
1606
  if ((tag & 7) === 4 || tag === 0) {
1588
1607
  break;
@@ -1599,6 +1618,7 @@ export const ExecutionConfig_DecoderWorkerConfig = {
1599
1618
  skipWhenDecodeFailed: isSet(object.skipWhenDecodeFailed)
1600
1619
  ? globalThis.Boolean(object.skipWhenDecodeFailed)
1601
1620
  : undefined,
1621
+ recordTiming: isSet(object.recordTiming) ? globalThis.Boolean(object.recordTiming) : undefined,
1602
1622
  };
1603
1623
  },
1604
1624
 
@@ -1613,6 +1633,9 @@ export const ExecutionConfig_DecoderWorkerConfig = {
1613
1633
  if (message.skipWhenDecodeFailed !== undefined) {
1614
1634
  obj.skipWhenDecodeFailed = message.skipWhenDecodeFailed;
1615
1635
  }
1636
+ if (message.recordTiming !== undefined) {
1637
+ obj.recordTiming = message.recordTiming;
1638
+ }
1616
1639
  return obj;
1617
1640
  },
1618
1641
 
@@ -1624,6 +1647,7 @@ export const ExecutionConfig_DecoderWorkerConfig = {
1624
1647
  message.enabled = object.enabled ?? false;
1625
1648
  message.workerCount = object.workerCount ?? undefined;
1626
1649
  message.skipWhenDecodeFailed = object.skipWhenDecodeFailed ?? undefined;
1650
+ message.recordTiming = object.recordTiming ?? undefined;
1627
1651
  return message;
1628
1652
  },
1629
1653
  };
@@ -9469,6 +9493,10 @@ function createBaseData_EthLog(): Data_EthLog {
9469
9493
  transaction: undefined,
9470
9494
  transactionReceipt: undefined,
9471
9495
  block: undefined,
9496
+ rawLog: "",
9497
+ rawTransaction: undefined,
9498
+ rawTransactionReceipt: undefined,
9499
+ rawBlock: undefined,
9472
9500
  };
9473
9501
  }
9474
9502
 
@@ -9489,6 +9517,18 @@ export const Data_EthLog = {
9489
9517
  if (message.block !== undefined) {
9490
9518
  Struct.encode(Struct.wrap(message.block), writer.uint32(50).fork()).ldelim();
9491
9519
  }
9520
+ if (message.rawLog !== "") {
9521
+ writer.uint32(58).string(message.rawLog);
9522
+ }
9523
+ if (message.rawTransaction !== undefined) {
9524
+ writer.uint32(66).string(message.rawTransaction);
9525
+ }
9526
+ if (message.rawTransactionReceipt !== undefined) {
9527
+ writer.uint32(74).string(message.rawTransactionReceipt);
9528
+ }
9529
+ if (message.rawBlock !== undefined) {
9530
+ writer.uint32(82).string(message.rawBlock);
9531
+ }
9492
9532
  return writer;
9493
9533
  },
9494
9534
 
@@ -9534,6 +9574,34 @@ export const Data_EthLog = {
9534
9574
 
9535
9575
  message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
9536
9576
  continue;
9577
+ case 7:
9578
+ if (tag !== 58) {
9579
+ break;
9580
+ }
9581
+
9582
+ message.rawLog = reader.string();
9583
+ continue;
9584
+ case 8:
9585
+ if (tag !== 66) {
9586
+ break;
9587
+ }
9588
+
9589
+ message.rawTransaction = reader.string();
9590
+ continue;
9591
+ case 9:
9592
+ if (tag !== 74) {
9593
+ break;
9594
+ }
9595
+
9596
+ message.rawTransactionReceipt = reader.string();
9597
+ continue;
9598
+ case 10:
9599
+ if (tag !== 82) {
9600
+ break;
9601
+ }
9602
+
9603
+ message.rawBlock = reader.string();
9604
+ continue;
9537
9605
  }
9538
9606
  if ((tag & 7) === 4 || tag === 0) {
9539
9607
  break;
@@ -9550,6 +9618,12 @@ export const Data_EthLog = {
9550
9618
  transaction: isObject(object.transaction) ? object.transaction : undefined,
9551
9619
  transactionReceipt: isObject(object.transactionReceipt) ? object.transactionReceipt : undefined,
9552
9620
  block: isObject(object.block) ? object.block : undefined,
9621
+ rawLog: isSet(object.rawLog) ? globalThis.String(object.rawLog) : "",
9622
+ rawTransaction: isSet(object.rawTransaction) ? globalThis.String(object.rawTransaction) : undefined,
9623
+ rawTransactionReceipt: isSet(object.rawTransactionReceipt)
9624
+ ? globalThis.String(object.rawTransactionReceipt)
9625
+ : undefined,
9626
+ rawBlock: isSet(object.rawBlock) ? globalThis.String(object.rawBlock) : undefined,
9553
9627
  };
9554
9628
  },
9555
9629
 
@@ -9570,6 +9644,18 @@ export const Data_EthLog = {
9570
9644
  if (message.block !== undefined) {
9571
9645
  obj.block = message.block;
9572
9646
  }
9647
+ if (message.rawLog !== "") {
9648
+ obj.rawLog = message.rawLog;
9649
+ }
9650
+ if (message.rawTransaction !== undefined) {
9651
+ obj.rawTransaction = message.rawTransaction;
9652
+ }
9653
+ if (message.rawTransactionReceipt !== undefined) {
9654
+ obj.rawTransactionReceipt = message.rawTransactionReceipt;
9655
+ }
9656
+ if (message.rawBlock !== undefined) {
9657
+ obj.rawBlock = message.rawBlock;
9658
+ }
9573
9659
  return obj;
9574
9660
  },
9575
9661
 
@@ -9583,6 +9669,10 @@ export const Data_EthLog = {
9583
9669
  message.transaction = object.transaction ?? undefined;
9584
9670
  message.transactionReceipt = object.transactionReceipt ?? undefined;
9585
9671
  message.block = object.block ?? undefined;
9672
+ message.rawLog = object.rawLog ?? "";
9673
+ message.rawTransaction = object.rawTransaction ?? undefined;
9674
+ message.rawTransactionReceipt = object.rawTransactionReceipt ?? undefined;
9675
+ message.rawBlock = object.rawBlock ?? undefined;
9586
9676
  return message;
9587
9677
  },
9588
9678
  };
@@ -9651,6 +9741,10 @@ function createBaseData_EthTransaction(): Data_EthTransaction {
9651
9741
  transactionReceipt: undefined,
9652
9742
  block: undefined,
9653
9743
  trace: undefined,
9744
+ rawTransaction: "",
9745
+ rawTransactionReceipt: undefined,
9746
+ rawBlock: undefined,
9747
+ rawTrace: undefined,
9654
9748
  };
9655
9749
  }
9656
9750
 
@@ -9671,6 +9765,18 @@ export const Data_EthTransaction = {
9671
9765
  if (message.trace !== undefined) {
9672
9766
  Struct.encode(Struct.wrap(message.trace), writer.uint32(58).fork()).ldelim();
9673
9767
  }
9768
+ if (message.rawTransaction !== "") {
9769
+ writer.uint32(66).string(message.rawTransaction);
9770
+ }
9771
+ if (message.rawTransactionReceipt !== undefined) {
9772
+ writer.uint32(74).string(message.rawTransactionReceipt);
9773
+ }
9774
+ if (message.rawBlock !== undefined) {
9775
+ writer.uint32(82).string(message.rawBlock);
9776
+ }
9777
+ if (message.rawTrace !== undefined) {
9778
+ writer.uint32(90).string(message.rawTrace);
9779
+ }
9674
9780
  return writer;
9675
9781
  },
9676
9782
 
@@ -9716,6 +9822,34 @@ export const Data_EthTransaction = {
9716
9822
 
9717
9823
  message.trace = Struct.unwrap(Struct.decode(reader, reader.uint32()));
9718
9824
  continue;
9825
+ case 8:
9826
+ if (tag !== 66) {
9827
+ break;
9828
+ }
9829
+
9830
+ message.rawTransaction = reader.string();
9831
+ continue;
9832
+ case 9:
9833
+ if (tag !== 74) {
9834
+ break;
9835
+ }
9836
+
9837
+ message.rawTransactionReceipt = reader.string();
9838
+ continue;
9839
+ case 10:
9840
+ if (tag !== 82) {
9841
+ break;
9842
+ }
9843
+
9844
+ message.rawBlock = reader.string();
9845
+ continue;
9846
+ case 11:
9847
+ if (tag !== 90) {
9848
+ break;
9849
+ }
9850
+
9851
+ message.rawTrace = reader.string();
9852
+ continue;
9719
9853
  }
9720
9854
  if ((tag & 7) === 4 || tag === 0) {
9721
9855
  break;
@@ -9732,6 +9866,12 @@ export const Data_EthTransaction = {
9732
9866
  transactionReceipt: isObject(object.transactionReceipt) ? object.transactionReceipt : undefined,
9733
9867
  block: isObject(object.block) ? object.block : undefined,
9734
9868
  trace: isObject(object.trace) ? object.trace : undefined,
9869
+ rawTransaction: isSet(object.rawTransaction) ? globalThis.String(object.rawTransaction) : "",
9870
+ rawTransactionReceipt: isSet(object.rawTransactionReceipt)
9871
+ ? globalThis.String(object.rawTransactionReceipt)
9872
+ : undefined,
9873
+ rawBlock: isSet(object.rawBlock) ? globalThis.String(object.rawBlock) : undefined,
9874
+ rawTrace: isSet(object.rawTrace) ? globalThis.String(object.rawTrace) : undefined,
9735
9875
  };
9736
9876
  },
9737
9877
 
@@ -9752,6 +9892,18 @@ export const Data_EthTransaction = {
9752
9892
  if (message.trace !== undefined) {
9753
9893
  obj.trace = message.trace;
9754
9894
  }
9895
+ if (message.rawTransaction !== "") {
9896
+ obj.rawTransaction = message.rawTransaction;
9897
+ }
9898
+ if (message.rawTransactionReceipt !== undefined) {
9899
+ obj.rawTransactionReceipt = message.rawTransactionReceipt;
9900
+ }
9901
+ if (message.rawBlock !== undefined) {
9902
+ obj.rawBlock = message.rawBlock;
9903
+ }
9904
+ if (message.rawTrace !== undefined) {
9905
+ obj.rawTrace = message.rawTrace;
9906
+ }
9755
9907
  return obj;
9756
9908
  },
9757
9909
 
@@ -9765,6 +9917,10 @@ export const Data_EthTransaction = {
9765
9917
  message.transactionReceipt = object.transactionReceipt ?? undefined;
9766
9918
  message.block = object.block ?? undefined;
9767
9919
  message.trace = object.trace ?? undefined;
9920
+ message.rawTransaction = object.rawTransaction ?? "";
9921
+ message.rawTransactionReceipt = object.rawTransactionReceipt ?? undefined;
9922
+ message.rawBlock = object.rawBlock ?? undefined;
9923
+ message.rawTrace = object.rawTrace ?? undefined;
9768
9924
  return message;
9769
9925
  },
9770
9926
  };