@sentio/protos 2.63.0-rc2.2 → 2.63.0-rc2.3

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.63.0-rc2.2",
3
+ "version": "2.63.0-rc2.3",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1263,6 +1263,7 @@ export interface Data_SolInstruction {
1263
1263
  programAccountId: string;
1264
1264
  accounts: string[];
1265
1265
  parsed?: { [key: string]: any } | undefined;
1266
+ rawParsed?: string | undefined;
1266
1267
  }
1267
1268
 
1268
1269
  export interface Data_AptEvent {
@@ -10465,7 +10466,14 @@ export const Data_EthTrace = {
10465
10466
  };
10466
10467
 
10467
10468
  function createBaseData_SolInstruction(): Data_SolInstruction {
10468
- return { instructionData: "", slot: BigInt("0"), programAccountId: "", accounts: [], parsed: undefined };
10469
+ return {
10470
+ instructionData: "",
10471
+ slot: BigInt("0"),
10472
+ programAccountId: "",
10473
+ accounts: [],
10474
+ parsed: undefined,
10475
+ rawParsed: undefined,
10476
+ };
10469
10477
  }
10470
10478
 
10471
10479
  export const Data_SolInstruction = {
@@ -10488,6 +10496,9 @@ export const Data_SolInstruction = {
10488
10496
  if (message.parsed !== undefined) {
10489
10497
  Struct.encode(Struct.wrap(message.parsed), writer.uint32(34).fork()).ldelim();
10490
10498
  }
10499
+ if (message.rawParsed !== undefined) {
10500
+ writer.uint32(58).string(message.rawParsed);
10501
+ }
10491
10502
  return writer;
10492
10503
  },
10493
10504
 
@@ -10533,6 +10544,13 @@ export const Data_SolInstruction = {
10533
10544
 
10534
10545
  message.parsed = Struct.unwrap(Struct.decode(reader, reader.uint32()));
10535
10546
  continue;
10547
+ case 7:
10548
+ if (tag !== 58) {
10549
+ break;
10550
+ }
10551
+
10552
+ message.rawParsed = reader.string();
10553
+ continue;
10536
10554
  }
10537
10555
  if ((tag & 7) === 4 || tag === 0) {
10538
10556
  break;
@@ -10549,6 +10567,7 @@ export const Data_SolInstruction = {
10549
10567
  programAccountId: isSet(object.programAccountId) ? globalThis.String(object.programAccountId) : "",
10550
10568
  accounts: globalThis.Array.isArray(object?.accounts) ? object.accounts.map((e: any) => globalThis.String(e)) : [],
10551
10569
  parsed: isObject(object.parsed) ? object.parsed : undefined,
10570
+ rawParsed: isSet(object.rawParsed) ? globalThis.String(object.rawParsed) : undefined,
10552
10571
  };
10553
10572
  },
10554
10573
 
@@ -10569,6 +10588,9 @@ export const Data_SolInstruction = {
10569
10588
  if (message.parsed !== undefined) {
10570
10589
  obj.parsed = message.parsed;
10571
10590
  }
10591
+ if (message.rawParsed !== undefined) {
10592
+ obj.rawParsed = message.rawParsed;
10593
+ }
10572
10594
  return obj;
10573
10595
  },
10574
10596
 
@@ -10582,6 +10604,7 @@ export const Data_SolInstruction = {
10582
10604
  message.programAccountId = object.programAccountId ?? "";
10583
10605
  message.accounts = object.accounts?.map((e) => e) || [];
10584
10606
  message.parsed = object.parsed ?? undefined;
10607
+ message.rawParsed = object.rawParsed ?? undefined;
10585
10608
  return message;
10586
10609
  },
10587
10610
  };