@sentio/protos 2.62.7 → 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.
package/package.json CHANGED
@@ -1,7 +1,12 @@
1
1
  {
2
2
  "name": "@sentio/protos",
3
- "version": "2.62.7",
3
+ "version": "2.63.0-rc2.2",
4
4
  "license": "Apache-2.0",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/sentioxyz/sentio-sdk.git",
8
+ "directory": "packages/protos"
9
+ },
5
10
  "type": "module",
6
11
  "exports": {
7
12
  ".": "./lib/index.js",
@@ -1230,6 +1230,7 @@ export interface Data_EthLog {
1230
1230
 
1231
1231
  export interface Data_EthBlock {
1232
1232
  block: { [key: string]: any } | undefined;
1233
+ rawBlock: string;
1233
1234
  }
1234
1235
 
1235
1236
  export interface Data_EthTransaction {
@@ -1250,6 +1251,10 @@ export interface Data_EthTrace {
1250
1251
  transaction?: { [key: string]: any } | undefined;
1251
1252
  transactionReceipt?: { [key: string]: any } | undefined;
1252
1253
  block?: { [key: string]: any } | undefined;
1254
+ rawTrace: string;
1255
+ rawTransaction?: string | undefined;
1256
+ rawTransactionReceipt?: string | undefined;
1257
+ rawBlock?: string | undefined;
1253
1258
  }
1254
1259
 
1255
1260
  export interface Data_SolInstruction {
@@ -10004,7 +10009,7 @@ export const Data_EthLog = {
10004
10009
  };
10005
10010
 
10006
10011
  function createBaseData_EthBlock(): Data_EthBlock {
10007
- return { block: undefined };
10012
+ return { block: undefined, rawBlock: "" };
10008
10013
  }
10009
10014
 
10010
10015
  export const Data_EthBlock = {
@@ -10012,6 +10017,9 @@ export const Data_EthBlock = {
10012
10017
  if (message.block !== undefined) {
10013
10018
  Struct.encode(Struct.wrap(message.block), writer.uint32(18).fork()).ldelim();
10014
10019
  }
10020
+ if (message.rawBlock !== "") {
10021
+ writer.uint32(10).string(message.rawBlock);
10022
+ }
10015
10023
  return writer;
10016
10024
  },
10017
10025
 
@@ -10029,6 +10037,13 @@ export const Data_EthBlock = {
10029
10037
 
10030
10038
  message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
10031
10039
  continue;
10040
+ case 1:
10041
+ if (tag !== 10) {
10042
+ break;
10043
+ }
10044
+
10045
+ message.rawBlock = reader.string();
10046
+ continue;
10032
10047
  }
10033
10048
  if ((tag & 7) === 4 || tag === 0) {
10034
10049
  break;
@@ -10039,7 +10054,10 @@ export const Data_EthBlock = {
10039
10054
  },
10040
10055
 
10041
10056
  fromJSON(object: any): Data_EthBlock {
10042
- return { block: isObject(object.block) ? object.block : undefined };
10057
+ return {
10058
+ block: isObject(object.block) ? object.block : undefined,
10059
+ rawBlock: isSet(object.rawBlock) ? globalThis.String(object.rawBlock) : "",
10060
+ };
10043
10061
  },
10044
10062
 
10045
10063
  toJSON(message: Data_EthBlock): unknown {
@@ -10047,6 +10065,9 @@ export const Data_EthBlock = {
10047
10065
  if (message.block !== undefined) {
10048
10066
  obj.block = message.block;
10049
10067
  }
10068
+ if (message.rawBlock !== "") {
10069
+ obj.rawBlock = message.rawBlock;
10070
+ }
10050
10071
  return obj;
10051
10072
  },
10052
10073
 
@@ -10056,6 +10077,7 @@ export const Data_EthBlock = {
10056
10077
  fromPartial(object: DeepPartial<Data_EthBlock>): Data_EthBlock {
10057
10078
  const message = createBaseData_EthBlock();
10058
10079
  message.block = object.block ?? undefined;
10080
+ message.rawBlock = object.rawBlock ?? "";
10059
10081
  return message;
10060
10082
  },
10061
10083
  };
@@ -10258,6 +10280,10 @@ function createBaseData_EthTrace(): Data_EthTrace {
10258
10280
  transaction: undefined,
10259
10281
  transactionReceipt: undefined,
10260
10282
  block: undefined,
10283
+ rawTrace: "",
10284
+ rawTransaction: undefined,
10285
+ rawTransactionReceipt: undefined,
10286
+ rawBlock: undefined,
10261
10287
  };
10262
10288
  }
10263
10289
 
@@ -10278,6 +10304,18 @@ export const Data_EthTrace = {
10278
10304
  if (message.block !== undefined) {
10279
10305
  Struct.encode(Struct.wrap(message.block), writer.uint32(50).fork()).ldelim();
10280
10306
  }
10307
+ if (message.rawTrace !== "") {
10308
+ writer.uint32(58).string(message.rawTrace);
10309
+ }
10310
+ if (message.rawTransaction !== undefined) {
10311
+ writer.uint32(66).string(message.rawTransaction);
10312
+ }
10313
+ if (message.rawTransactionReceipt !== undefined) {
10314
+ writer.uint32(74).string(message.rawTransactionReceipt);
10315
+ }
10316
+ if (message.rawBlock !== undefined) {
10317
+ writer.uint32(82).string(message.rawBlock);
10318
+ }
10281
10319
  return writer;
10282
10320
  },
10283
10321
 
@@ -10323,6 +10361,34 @@ export const Data_EthTrace = {
10323
10361
 
10324
10362
  message.block = Struct.unwrap(Struct.decode(reader, reader.uint32()));
10325
10363
  continue;
10364
+ case 7:
10365
+ if (tag !== 58) {
10366
+ break;
10367
+ }
10368
+
10369
+ message.rawTrace = reader.string();
10370
+ continue;
10371
+ case 8:
10372
+ if (tag !== 66) {
10373
+ break;
10374
+ }
10375
+
10376
+ message.rawTransaction = reader.string();
10377
+ continue;
10378
+ case 9:
10379
+ if (tag !== 74) {
10380
+ break;
10381
+ }
10382
+
10383
+ message.rawTransactionReceipt = reader.string();
10384
+ continue;
10385
+ case 10:
10386
+ if (tag !== 82) {
10387
+ break;
10388
+ }
10389
+
10390
+ message.rawBlock = reader.string();
10391
+ continue;
10326
10392
  }
10327
10393
  if ((tag & 7) === 4 || tag === 0) {
10328
10394
  break;
@@ -10339,6 +10405,12 @@ export const Data_EthTrace = {
10339
10405
  transaction: isObject(object.transaction) ? object.transaction : undefined,
10340
10406
  transactionReceipt: isObject(object.transactionReceipt) ? object.transactionReceipt : undefined,
10341
10407
  block: isObject(object.block) ? object.block : undefined,
10408
+ rawTrace: isSet(object.rawTrace) ? globalThis.String(object.rawTrace) : "",
10409
+ rawTransaction: isSet(object.rawTransaction) ? globalThis.String(object.rawTransaction) : undefined,
10410
+ rawTransactionReceipt: isSet(object.rawTransactionReceipt)
10411
+ ? globalThis.String(object.rawTransactionReceipt)
10412
+ : undefined,
10413
+ rawBlock: isSet(object.rawBlock) ? globalThis.String(object.rawBlock) : undefined,
10342
10414
  };
10343
10415
  },
10344
10416
 
@@ -10359,6 +10431,18 @@ export const Data_EthTrace = {
10359
10431
  if (message.block !== undefined) {
10360
10432
  obj.block = message.block;
10361
10433
  }
10434
+ if (message.rawTrace !== "") {
10435
+ obj.rawTrace = message.rawTrace;
10436
+ }
10437
+ if (message.rawTransaction !== undefined) {
10438
+ obj.rawTransaction = message.rawTransaction;
10439
+ }
10440
+ if (message.rawTransactionReceipt !== undefined) {
10441
+ obj.rawTransactionReceipt = message.rawTransactionReceipt;
10442
+ }
10443
+ if (message.rawBlock !== undefined) {
10444
+ obj.rawBlock = message.rawBlock;
10445
+ }
10362
10446
  return obj;
10363
10447
  },
10364
10448
 
@@ -10372,6 +10456,10 @@ export const Data_EthTrace = {
10372
10456
  message.transaction = object.transaction ?? undefined;
10373
10457
  message.transactionReceipt = object.transactionReceipt ?? undefined;
10374
10458
  message.block = object.block ?? undefined;
10459
+ message.rawTrace = object.rawTrace ?? "";
10460
+ message.rawTransaction = object.rawTransaction ?? undefined;
10461
+ message.rawTransactionReceipt = object.rawTransactionReceipt ?? undefined;
10462
+ message.rawBlock = object.rawBlock ?? undefined;
10375
10463
  return message;
10376
10464
  },
10377
10465
  };