@sentio/protos 3.8.0-rc3.3 → 3.8.0-rc3.4
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
|
@@ -1272,6 +1272,7 @@ export interface Data_SolInstruction {
|
|
|
1272
1272
|
programAccountId: string;
|
|
1273
1273
|
accounts: string[];
|
|
1274
1274
|
parsed?: { [key: string]: any } | undefined;
|
|
1275
|
+
rawParsed?: string | undefined;
|
|
1275
1276
|
rawTransaction?: string | undefined;
|
|
1276
1277
|
}
|
|
1277
1278
|
|
|
@@ -10535,6 +10536,7 @@ function createBaseData_SolInstruction(): Data_SolInstruction {
|
|
|
10535
10536
|
programAccountId: "",
|
|
10536
10537
|
accounts: [],
|
|
10537
10538
|
parsed: undefined,
|
|
10539
|
+
rawParsed: undefined,
|
|
10538
10540
|
rawTransaction: undefined,
|
|
10539
10541
|
};
|
|
10540
10542
|
}
|
|
@@ -10559,6 +10561,9 @@ export const Data_SolInstruction = {
|
|
|
10559
10561
|
if (message.parsed !== undefined) {
|
|
10560
10562
|
Struct.encode(Struct.wrap(message.parsed), writer.uint32(34).fork()).ldelim();
|
|
10561
10563
|
}
|
|
10564
|
+
if (message.rawParsed !== undefined) {
|
|
10565
|
+
writer.uint32(58).string(message.rawParsed);
|
|
10566
|
+
}
|
|
10562
10567
|
if (message.rawTransaction !== undefined) {
|
|
10563
10568
|
writer.uint32(50).string(message.rawTransaction);
|
|
10564
10569
|
}
|
|
@@ -10607,6 +10612,13 @@ export const Data_SolInstruction = {
|
|
|
10607
10612
|
|
|
10608
10613
|
message.parsed = Struct.unwrap(Struct.decode(reader, reader.uint32()));
|
|
10609
10614
|
continue;
|
|
10615
|
+
case 7:
|
|
10616
|
+
if (tag !== 58) {
|
|
10617
|
+
break;
|
|
10618
|
+
}
|
|
10619
|
+
|
|
10620
|
+
message.rawParsed = reader.string();
|
|
10621
|
+
continue;
|
|
10610
10622
|
case 6:
|
|
10611
10623
|
if (tag !== 50) {
|
|
10612
10624
|
break;
|
|
@@ -10630,6 +10642,7 @@ export const Data_SolInstruction = {
|
|
|
10630
10642
|
programAccountId: isSet(object.programAccountId) ? globalThis.String(object.programAccountId) : "",
|
|
10631
10643
|
accounts: globalThis.Array.isArray(object?.accounts) ? object.accounts.map((e: any) => globalThis.String(e)) : [],
|
|
10632
10644
|
parsed: isObject(object.parsed) ? object.parsed : undefined,
|
|
10645
|
+
rawParsed: isSet(object.rawParsed) ? globalThis.String(object.rawParsed) : undefined,
|
|
10633
10646
|
rawTransaction: isSet(object.rawTransaction) ? globalThis.String(object.rawTransaction) : undefined,
|
|
10634
10647
|
};
|
|
10635
10648
|
},
|
|
@@ -10651,6 +10664,9 @@ export const Data_SolInstruction = {
|
|
|
10651
10664
|
if (message.parsed !== undefined) {
|
|
10652
10665
|
obj.parsed = message.parsed;
|
|
10653
10666
|
}
|
|
10667
|
+
if (message.rawParsed !== undefined) {
|
|
10668
|
+
obj.rawParsed = message.rawParsed;
|
|
10669
|
+
}
|
|
10654
10670
|
if (message.rawTransaction !== undefined) {
|
|
10655
10671
|
obj.rawTransaction = message.rawTransaction;
|
|
10656
10672
|
}
|
|
@@ -10667,6 +10683,7 @@ export const Data_SolInstruction = {
|
|
|
10667
10683
|
message.programAccountId = object.programAccountId ?? "";
|
|
10668
10684
|
message.accounts = object.accounts?.map((e) => e) || [];
|
|
10669
10685
|
message.parsed = object.parsed ?? undefined;
|
|
10686
|
+
message.rawParsed = object.rawParsed ?? undefined;
|
|
10670
10687
|
message.rawTransaction = object.rawTransaction ?? undefined;
|
|
10671
10688
|
return message;
|
|
10672
10689
|
},
|