Skip to content

Integrate supplementary Protocol Buffers (protobuf) parameters into the JS client to augment the extensibility and functionality of the data model within the designated oneof constructs, ensuring a more comprehensive representation and utilization of transaction related information #185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: iroha1-main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/proto/commands_pb.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export class AddAssetQuantity extends jspb.Message {
getAmount(): string;
setAmount(value: string): void;

getDescription(): string;
setDescription(value: string): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): AddAssetQuantity.AsObject;
static toObject(includeInstance: boolean, msg: AddAssetQuantity): AddAssetQuantity.AsObject;
Expand All @@ -25,6 +28,7 @@ export namespace AddAssetQuantity {
export type AsObject = {
assetId: string,
amount: string,
description: string,
}
}

Expand Down Expand Up @@ -415,6 +419,9 @@ export class SubtractAssetQuantity extends jspb.Message {
getAmount(): string;
setAmount(value: string): void;

getDescription(): string;
setDescription(value: string): void;

serializeBinary(): Uint8Array;
toObject(includeInstance?: boolean): SubtractAssetQuantity.AsObject;
static toObject(includeInstance: boolean, msg: SubtractAssetQuantity): SubtractAssetQuantity.AsObject;
Expand All @@ -429,6 +436,7 @@ export namespace SubtractAssetQuantity {
export type AsObject = {
assetId: string,
amount: string,
description: string,
}
}

Expand Down