@sentio/runtime 2.63.0-rc2.1 → 2.63.0-rc2.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.
@@ -10980,13 +10980,16 @@ var Data_EthLog = {
10980
10980
  }
10981
10981
  };
10982
10982
  function createBaseData_EthBlock() {
10983
- return { block: void 0 };
10983
+ return { block: void 0, rawBlock: "" };
10984
10984
  }
10985
10985
  var Data_EthBlock = {
10986
10986
  encode(message, writer = import_minimal6.default.Writer.create()) {
10987
10987
  if (message.block !== void 0) {
10988
10988
  Struct.encode(Struct.wrap(message.block), writer.uint32(18).fork()).ldelim();
10989
10989
  }
10990
+ if (message.rawBlock !== "") {
10991
+ writer.uint32(10).string(message.rawBlock);
10992
+ }
10990
10993
  return writer;
10991
10994
  },
10992
10995
  decode(input, length) {
@@ -11002,6 +11005,12 @@ var Data_EthBlock = {
11002
11005
  }
11003
11006
  message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
11004
11007
  continue;
11008
+ case 1:
11009
+ if (tag !== 10) {
11010
+ break;
11011
+ }
11012
+ message.rawBlock = reader.string();
11013
+ continue;
11005
11014
  }
11006
11015
  if ((tag & 7) === 4 || tag === 0) {
11007
11016
  break;
@@ -11011,13 +11020,19 @@ var Data_EthBlock = {
11011
11020
  return message;
11012
11021
  },
11013
11022
  fromJSON(object) {
11014
- return { block: isObject3(object.block) ? object.block : void 0 };
11023
+ return {
11024
+ block: isObject3(object.block) ? object.block : void 0,
11025
+ rawBlock: isSet4(object.rawBlock) ? globalThis.String(object.rawBlock) : ""
11026
+ };
11015
11027
  },
11016
11028
  toJSON(message) {
11017
11029
  const obj = {};
11018
11030
  if (message.block !== void 0) {
11019
11031
  obj.block = message.block;
11020
11032
  }
11033
+ if (message.rawBlock !== "") {
11034
+ obj.rawBlock = message.rawBlock;
11035
+ }
11021
11036
  return obj;
11022
11037
  },
11023
11038
  create(base) {
@@ -11026,6 +11041,7 @@ var Data_EthBlock = {
11026
11041
  fromPartial(object) {
11027
11042
  const message = createBaseData_EthBlock();
11028
11043
  message.block = object.block ?? void 0;
11044
+ message.rawBlock = object.rawBlock ?? "";
11029
11045
  return message;
11030
11046
  }
11031
11047
  };
@@ -11209,7 +11225,11 @@ function createBaseData_EthTrace() {
11209
11225
  timestamp: void 0,
11210
11226
  transaction: void 0,
11211
11227
  transactionReceipt: void 0,
11212
- block: void 0
11228
+ block: void 0,
11229
+ rawTrace: "",
11230
+ rawTransaction: void 0,
11231
+ rawTransactionReceipt: void 0,
11232
+ rawBlock: void 0
11213
11233
  };
11214
11234
  }
11215
11235
  var Data_EthTrace = {
@@ -11229,6 +11249,18 @@ var Data_EthTrace = {
11229
11249
  if (message.block !== void 0) {
11230
11250
  Struct.encode(Struct.wrap(message.block), writer.uint32(50).fork()).ldelim();
11231
11251
  }
11252
+ if (message.rawTrace !== "") {
11253
+ writer.uint32(58).string(message.rawTrace);
11254
+ }
11255
+ if (message.rawTransaction !== void 0) {
11256
+ writer.uint32(66).string(message.rawTransaction);
11257
+ }
11258
+ if (message.rawTransactionReceipt !== void 0) {
11259
+ writer.uint32(74).string(message.rawTransactionReceipt);
11260
+ }
11261
+ if (message.rawBlock !== void 0) {
11262
+ writer.uint32(82).string(message.rawBlock);
11263
+ }
11232
11264
  return writer;
11233
11265
  },
11234
11266
  decode(input, length) {
@@ -11268,6 +11300,30 @@ var Data_EthTrace = {
11268
11300
  }
11269
11301
  message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
11270
11302
  continue;
11303
+ case 7:
11304
+ if (tag !== 58) {
11305
+ break;
11306
+ }
11307
+ message.rawTrace = reader.string();
11308
+ continue;
11309
+ case 8:
11310
+ if (tag !== 66) {
11311
+ break;
11312
+ }
11313
+ message.rawTransaction = reader.string();
11314
+ continue;
11315
+ case 9:
11316
+ if (tag !== 74) {
11317
+ break;
11318
+ }
11319
+ message.rawTransactionReceipt = reader.string();
11320
+ continue;
11321
+ case 10:
11322
+ if (tag !== 82) {
11323
+ break;
11324
+ }
11325
+ message.rawBlock = reader.string();
11326
+ continue;
11271
11327
  }
11272
11328
  if ((tag & 7) === 4 || tag === 0) {
11273
11329
  break;
@@ -11282,7 +11338,11 @@ var Data_EthTrace = {
11282
11338
  timestamp: isSet4(object.timestamp) ? fromJsonTimestamp2(object.timestamp) : void 0,
11283
11339
  transaction: isObject3(object.transaction) ? object.transaction : void 0,
11284
11340
  transactionReceipt: isObject3(object.transactionReceipt) ? object.transactionReceipt : void 0,
11285
- block: isObject3(object.block) ? object.block : void 0
11341
+ block: isObject3(object.block) ? object.block : void 0,
11342
+ rawTrace: isSet4(object.rawTrace) ? globalThis.String(object.rawTrace) : "",
11343
+ rawTransaction: isSet4(object.rawTransaction) ? globalThis.String(object.rawTransaction) : void 0,
11344
+ rawTransactionReceipt: isSet4(object.rawTransactionReceipt) ? globalThis.String(object.rawTransactionReceipt) : void 0,
11345
+ rawBlock: isSet4(object.rawBlock) ? globalThis.String(object.rawBlock) : void 0
11286
11346
  };
11287
11347
  },
11288
11348
  toJSON(message) {
@@ -11302,6 +11362,18 @@ var Data_EthTrace = {
11302
11362
  if (message.block !== void 0) {
11303
11363
  obj.block = message.block;
11304
11364
  }
11365
+ if (message.rawTrace !== "") {
11366
+ obj.rawTrace = message.rawTrace;
11367
+ }
11368
+ if (message.rawTransaction !== void 0) {
11369
+ obj.rawTransaction = message.rawTransaction;
11370
+ }
11371
+ if (message.rawTransactionReceipt !== void 0) {
11372
+ obj.rawTransactionReceipt = message.rawTransactionReceipt;
11373
+ }
11374
+ if (message.rawBlock !== void 0) {
11375
+ obj.rawBlock = message.rawBlock;
11376
+ }
11305
11377
  return obj;
11306
11378
  },
11307
11379
  create(base) {
@@ -11314,6 +11386,10 @@ var Data_EthTrace = {
11314
11386
  message.transaction = object.transaction ?? void 0;
11315
11387
  message.transactionReceipt = object.transactionReceipt ?? void 0;
11316
11388
  message.block = object.block ?? void 0;
11389
+ message.rawTrace = object.rawTrace ?? "";
11390
+ message.rawTransaction = object.rawTransaction ?? void 0;
11391
+ message.rawTransactionReceipt = object.rawTransactionReceipt ?? void 0;
11392
+ message.rawBlock = object.rawBlock ?? void 0;
11317
11393
  return message;
11318
11394
  }
11319
11395
  };
@@ -22828,13 +22904,16 @@ var Data_EthLog2 = {
22828
22904
  }
22829
22905
  };
22830
22906
  function createBaseData_EthBlock2() {
22831
- return { block: void 0 };
22907
+ return { block: void 0, rawBlock: "" };
22832
22908
  }
22833
22909
  var Data_EthBlock2 = {
22834
22910
  encode(message, writer = import_minimal12.default.Writer.create()) {
22835
22911
  if (message.block !== void 0) {
22836
22912
  Struct2.encode(Struct2.wrap(message.block), writer.uint32(18).fork()).ldelim();
22837
22913
  }
22914
+ if (message.rawBlock !== "") {
22915
+ writer.uint32(10).string(message.rawBlock);
22916
+ }
22838
22917
  return writer;
22839
22918
  },
22840
22919
  decode(input, length) {
@@ -22850,6 +22929,12 @@ var Data_EthBlock2 = {
22850
22929
  }
22851
22930
  message.block = Struct2.unwrap(Struct2.decode(reader, reader.uint32()));
22852
22931
  continue;
22932
+ case 1:
22933
+ if (tag !== 10) {
22934
+ break;
22935
+ }
22936
+ message.rawBlock = reader.string();
22937
+ continue;
22853
22938
  }
22854
22939
  if ((tag & 7) === 4 || tag === 0) {
22855
22940
  break;
@@ -22859,13 +22944,19 @@ var Data_EthBlock2 = {
22859
22944
  return message;
22860
22945
  },
22861
22946
  fromJSON(object) {
22862
- return { block: isObject6(object.block) ? object.block : void 0 };
22947
+ return {
22948
+ block: isObject6(object.block) ? object.block : void 0,
22949
+ rawBlock: isSet8(object.rawBlock) ? globalThis.String(object.rawBlock) : ""
22950
+ };
22863
22951
  },
22864
22952
  toJSON(message) {
22865
22953
  const obj = {};
22866
22954
  if (message.block !== void 0) {
22867
22955
  obj.block = message.block;
22868
22956
  }
22957
+ if (message.rawBlock !== "") {
22958
+ obj.rawBlock = message.rawBlock;
22959
+ }
22869
22960
  return obj;
22870
22961
  },
22871
22962
  create(base) {
@@ -22874,6 +22965,7 @@ var Data_EthBlock2 = {
22874
22965
  fromPartial(object) {
22875
22966
  const message = createBaseData_EthBlock2();
22876
22967
  message.block = object.block ?? void 0;
22968
+ message.rawBlock = object.rawBlock ?? "";
22877
22969
  return message;
22878
22970
  }
22879
22971
  };
@@ -23057,7 +23149,11 @@ function createBaseData_EthTrace2() {
23057
23149
  timestamp: void 0,
23058
23150
  transaction: void 0,
23059
23151
  transactionReceipt: void 0,
23060
- block: void 0
23152
+ block: void 0,
23153
+ rawTrace: "",
23154
+ rawTransaction: void 0,
23155
+ rawTransactionReceipt: void 0,
23156
+ rawBlock: void 0
23061
23157
  };
23062
23158
  }
23063
23159
  var Data_EthTrace2 = {
@@ -23077,6 +23173,18 @@ var Data_EthTrace2 = {
23077
23173
  if (message.block !== void 0) {
23078
23174
  Struct2.encode(Struct2.wrap(message.block), writer.uint32(50).fork()).ldelim();
23079
23175
  }
23176
+ if (message.rawTrace !== "") {
23177
+ writer.uint32(58).string(message.rawTrace);
23178
+ }
23179
+ if (message.rawTransaction !== void 0) {
23180
+ writer.uint32(66).string(message.rawTransaction);
23181
+ }
23182
+ if (message.rawTransactionReceipt !== void 0) {
23183
+ writer.uint32(74).string(message.rawTransactionReceipt);
23184
+ }
23185
+ if (message.rawBlock !== void 0) {
23186
+ writer.uint32(82).string(message.rawBlock);
23187
+ }
23080
23188
  return writer;
23081
23189
  },
23082
23190
  decode(input, length) {
@@ -23116,6 +23224,30 @@ var Data_EthTrace2 = {
23116
23224
  }
23117
23225
  message.block = Struct2.unwrap(Struct2.decode(reader, reader.uint32()));
23118
23226
  continue;
23227
+ case 7:
23228
+ if (tag !== 58) {
23229
+ break;
23230
+ }
23231
+ message.rawTrace = reader.string();
23232
+ continue;
23233
+ case 8:
23234
+ if (tag !== 66) {
23235
+ break;
23236
+ }
23237
+ message.rawTransaction = reader.string();
23238
+ continue;
23239
+ case 9:
23240
+ if (tag !== 74) {
23241
+ break;
23242
+ }
23243
+ message.rawTransactionReceipt = reader.string();
23244
+ continue;
23245
+ case 10:
23246
+ if (tag !== 82) {
23247
+ break;
23248
+ }
23249
+ message.rawBlock = reader.string();
23250
+ continue;
23119
23251
  }
23120
23252
  if ((tag & 7) === 4 || tag === 0) {
23121
23253
  break;
@@ -23130,7 +23262,11 @@ var Data_EthTrace2 = {
23130
23262
  timestamp: isSet8(object.timestamp) ? fromJsonTimestamp4(object.timestamp) : void 0,
23131
23263
  transaction: isObject6(object.transaction) ? object.transaction : void 0,
23132
23264
  transactionReceipt: isObject6(object.transactionReceipt) ? object.transactionReceipt : void 0,
23133
- block: isObject6(object.block) ? object.block : void 0
23265
+ block: isObject6(object.block) ? object.block : void 0,
23266
+ rawTrace: isSet8(object.rawTrace) ? globalThis.String(object.rawTrace) : "",
23267
+ rawTransaction: isSet8(object.rawTransaction) ? globalThis.String(object.rawTransaction) : void 0,
23268
+ rawTransactionReceipt: isSet8(object.rawTransactionReceipt) ? globalThis.String(object.rawTransactionReceipt) : void 0,
23269
+ rawBlock: isSet8(object.rawBlock) ? globalThis.String(object.rawBlock) : void 0
23134
23270
  };
23135
23271
  },
23136
23272
  toJSON(message) {
@@ -23150,6 +23286,18 @@ var Data_EthTrace2 = {
23150
23286
  if (message.block !== void 0) {
23151
23287
  obj.block = message.block;
23152
23288
  }
23289
+ if (message.rawTrace !== "") {
23290
+ obj.rawTrace = message.rawTrace;
23291
+ }
23292
+ if (message.rawTransaction !== void 0) {
23293
+ obj.rawTransaction = message.rawTransaction;
23294
+ }
23295
+ if (message.rawTransactionReceipt !== void 0) {
23296
+ obj.rawTransactionReceipt = message.rawTransactionReceipt;
23297
+ }
23298
+ if (message.rawBlock !== void 0) {
23299
+ obj.rawBlock = message.rawBlock;
23300
+ }
23153
23301
  return obj;
23154
23302
  },
23155
23303
  create(base) {
@@ -23162,6 +23310,10 @@ var Data_EthTrace2 = {
23162
23310
  message.transaction = object.transaction ?? void 0;
23163
23311
  message.transactionReceipt = object.transactionReceipt ?? void 0;
23164
23312
  message.block = object.block ?? void 0;
23313
+ message.rawTrace = object.rawTrace ?? "";
23314
+ message.rawTransaction = object.rawTransaction ?? void 0;
23315
+ message.rawTransactionReceipt = object.rawTransactionReceipt ?? void 0;
23316
+ message.rawBlock = object.rawBlock ?? void 0;
23165
23317
  return message;
23166
23318
  }
23167
23319
  };
@@ -25770,4 +25922,4 @@ long/index.js:
25770
25922
  * SPDX-License-Identifier: Apache-2.0
25771
25923
  *)
25772
25924
  */
25773
- //# sourceMappingURL=chunk-OFR7W4ZG.js.map
25925
+ //# sourceMappingURL=chunk-36V5YZUD.js.map