@dashevo/dapi-grpc 0.25.11 → 0.25.12
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/clients/platform/v0/nodejs/PlatformPromiseClient.js +36 -26
- package/clients/platform/v0/nodejs/platform_pbjs.js +668 -668
- package/clients/platform/v0/nodejs/platform_protoc.js +456 -456
- package/clients/platform/v0/web/PlatformPromiseClient.js +10 -10
- package/clients/platform/v0/web/platform_pb.d.ts +88 -88
- package/clients/platform/v0/web/platform_pb.js +456 -456
- package/clients/platform/v0/web/platform_pb_service.d.ts +20 -20
- package/clients/platform/v0/web/platform_pb_service.js +12 -12
- package/package.json +2 -2
- package/protos/platform/v0/platform.proto +14 -14
- package/src/platform/proto/org.dash.platform.dapi.v0.rs +63 -46
- package/test/unit/clients/platform/v0/nodejs/PlatformPromiseClient.spec.js +9 -8
|
@@ -149,29 +149,29 @@ class PlatformPromiseClient {
|
|
|
149
149
|
}
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
* @param {!
|
|
152
|
+
* @param {!GetProtocolVersionUpgradeVoteStatusRequest} getProtocolVersionUpgradeVoteStatusRequest
|
|
153
153
|
* @param {?Object<string, string>} metadata
|
|
154
|
-
* @return {Promise<!
|
|
154
|
+
* @return {Promise<!GetProtocolVersionUpgradeVoteStatusResponse>}
|
|
155
155
|
*/
|
|
156
|
-
|
|
156
|
+
getProtocolVersionUpgradeVoteStatus(getProtocolVersionUpgradeVoteStatusRequest, metadata = {}) {
|
|
157
157
|
return promisify(
|
|
158
|
-
this.client.
|
|
158
|
+
this.client.getProtocolVersionUpgradeVoteStatus.bind(this.client),
|
|
159
159
|
)(
|
|
160
|
-
|
|
160
|
+
getProtocolVersionUpgradeVoteStatusRequest,
|
|
161
161
|
metadata,
|
|
162
162
|
);
|
|
163
163
|
}
|
|
164
164
|
|
|
165
165
|
/**
|
|
166
|
-
* @param {!
|
|
166
|
+
* @param {!GetProtocolVersionUpgradeStateRequest} getProtocolVersionUpgradeStateRequest
|
|
167
167
|
* @param {?Object<string, string>} metadata
|
|
168
|
-
* @return {Promise<!
|
|
168
|
+
* @return {Promise<!GetProtocolVersionUpgradeStateResponse>}
|
|
169
169
|
*/
|
|
170
|
-
|
|
170
|
+
getProtocolVersionUpgradeState(getProtocolVersionUpgradeStateRequest, metadata = {}) {
|
|
171
171
|
return promisify(
|
|
172
|
-
this.client.
|
|
172
|
+
this.client.getProtocolVersionUpgradeState.bind(this.client),
|
|
173
173
|
)(
|
|
174
|
-
|
|
174
|
+
getProtocolVersionUpgradeStateRequest,
|
|
175
175
|
metadata,
|
|
176
176
|
);
|
|
177
177
|
}
|
|
@@ -2518,43 +2518,43 @@ export namespace GetConsensusParamsResponse {
|
|
|
2518
2518
|
}
|
|
2519
2519
|
}
|
|
2520
2520
|
|
|
2521
|
-
export class
|
|
2521
|
+
export class GetProtocolVersionUpgradeStateRequest extends jspb.Message {
|
|
2522
2522
|
hasV0(): boolean;
|
|
2523
2523
|
clearV0(): void;
|
|
2524
|
-
getV0():
|
|
2525
|
-
setV0(value?:
|
|
2524
|
+
getV0(): GetProtocolVersionUpgradeStateRequest.GetProtocolVersionUpgradeStateRequestV0 | undefined;
|
|
2525
|
+
setV0(value?: GetProtocolVersionUpgradeStateRequest.GetProtocolVersionUpgradeStateRequestV0): void;
|
|
2526
2526
|
|
|
2527
|
-
getVersionCase():
|
|
2527
|
+
getVersionCase(): GetProtocolVersionUpgradeStateRequest.VersionCase;
|
|
2528
2528
|
serializeBinary(): Uint8Array;
|
|
2529
|
-
toObject(includeInstance?: boolean):
|
|
2530
|
-
static toObject(includeInstance: boolean, msg:
|
|
2529
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeStateRequest.AsObject;
|
|
2530
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeStateRequest): GetProtocolVersionUpgradeStateRequest.AsObject;
|
|
2531
2531
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2532
2532
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2533
|
-
static serializeBinaryToWriter(message:
|
|
2534
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2535
|
-
static deserializeBinaryFromReader(message:
|
|
2533
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeStateRequest, writer: jspb.BinaryWriter): void;
|
|
2534
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeStateRequest;
|
|
2535
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeStateRequest, reader: jspb.BinaryReader): GetProtocolVersionUpgradeStateRequest;
|
|
2536
2536
|
}
|
|
2537
2537
|
|
|
2538
|
-
export namespace
|
|
2538
|
+
export namespace GetProtocolVersionUpgradeStateRequest {
|
|
2539
2539
|
export type AsObject = {
|
|
2540
|
-
v0?:
|
|
2540
|
+
v0?: GetProtocolVersionUpgradeStateRequest.GetProtocolVersionUpgradeStateRequestV0.AsObject,
|
|
2541
2541
|
}
|
|
2542
2542
|
|
|
2543
|
-
export class
|
|
2543
|
+
export class GetProtocolVersionUpgradeStateRequestV0 extends jspb.Message {
|
|
2544
2544
|
getProve(): boolean;
|
|
2545
2545
|
setProve(value: boolean): void;
|
|
2546
2546
|
|
|
2547
2547
|
serializeBinary(): Uint8Array;
|
|
2548
|
-
toObject(includeInstance?: boolean):
|
|
2549
|
-
static toObject(includeInstance: boolean, msg:
|
|
2548
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeStateRequestV0.AsObject;
|
|
2549
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeStateRequestV0): GetProtocolVersionUpgradeStateRequestV0.AsObject;
|
|
2550
2550
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2551
2551
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2552
|
-
static serializeBinaryToWriter(message:
|
|
2553
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2554
|
-
static deserializeBinaryFromReader(message:
|
|
2552
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeStateRequestV0, writer: jspb.BinaryWriter): void;
|
|
2553
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeStateRequestV0;
|
|
2554
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeStateRequestV0, reader: jspb.BinaryReader): GetProtocolVersionUpgradeStateRequestV0;
|
|
2555
2555
|
}
|
|
2556
2556
|
|
|
2557
|
-
export namespace
|
|
2557
|
+
export namespace GetProtocolVersionUpgradeStateRequestV0 {
|
|
2558
2558
|
export type AsObject = {
|
|
2559
2559
|
prove: boolean,
|
|
2560
2560
|
}
|
|
@@ -2566,33 +2566,33 @@ export namespace GetVersionUpgradeStateRequest {
|
|
|
2566
2566
|
}
|
|
2567
2567
|
}
|
|
2568
2568
|
|
|
2569
|
-
export class
|
|
2569
|
+
export class GetProtocolVersionUpgradeStateResponse extends jspb.Message {
|
|
2570
2570
|
hasV0(): boolean;
|
|
2571
2571
|
clearV0(): void;
|
|
2572
|
-
getV0():
|
|
2573
|
-
setV0(value?:
|
|
2572
|
+
getV0(): GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0 | undefined;
|
|
2573
|
+
setV0(value?: GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0): void;
|
|
2574
2574
|
|
|
2575
|
-
getVersionCase():
|
|
2575
|
+
getVersionCase(): GetProtocolVersionUpgradeStateResponse.VersionCase;
|
|
2576
2576
|
serializeBinary(): Uint8Array;
|
|
2577
|
-
toObject(includeInstance?: boolean):
|
|
2578
|
-
static toObject(includeInstance: boolean, msg:
|
|
2577
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeStateResponse.AsObject;
|
|
2578
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeStateResponse): GetProtocolVersionUpgradeStateResponse.AsObject;
|
|
2579
2579
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2580
2580
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2581
|
-
static serializeBinaryToWriter(message:
|
|
2582
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2583
|
-
static deserializeBinaryFromReader(message:
|
|
2581
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeStateResponse, writer: jspb.BinaryWriter): void;
|
|
2582
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeStateResponse;
|
|
2583
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeStateResponse, reader: jspb.BinaryReader): GetProtocolVersionUpgradeStateResponse;
|
|
2584
2584
|
}
|
|
2585
2585
|
|
|
2586
|
-
export namespace
|
|
2586
|
+
export namespace GetProtocolVersionUpgradeStateResponse {
|
|
2587
2587
|
export type AsObject = {
|
|
2588
|
-
v0?:
|
|
2588
|
+
v0?: GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.AsObject,
|
|
2589
2589
|
}
|
|
2590
2590
|
|
|
2591
|
-
export class
|
|
2591
|
+
export class GetProtocolVersionUpgradeStateResponseV0 extends jspb.Message {
|
|
2592
2592
|
hasVersions(): boolean;
|
|
2593
2593
|
clearVersions(): void;
|
|
2594
|
-
getVersions():
|
|
2595
|
-
setVersions(value?:
|
|
2594
|
+
getVersions(): GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.Versions | undefined;
|
|
2595
|
+
setVersions(value?: GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.Versions): void;
|
|
2596
2596
|
|
|
2597
2597
|
hasProof(): boolean;
|
|
2598
2598
|
clearProof(): void;
|
|
@@ -2604,29 +2604,29 @@ export namespace GetVersionUpgradeStateResponse {
|
|
|
2604
2604
|
getMetadata(): ResponseMetadata | undefined;
|
|
2605
2605
|
setMetadata(value?: ResponseMetadata): void;
|
|
2606
2606
|
|
|
2607
|
-
getResultCase():
|
|
2607
|
+
getResultCase(): GetProtocolVersionUpgradeStateResponseV0.ResultCase;
|
|
2608
2608
|
serializeBinary(): Uint8Array;
|
|
2609
|
-
toObject(includeInstance?: boolean):
|
|
2610
|
-
static toObject(includeInstance: boolean, msg:
|
|
2609
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeStateResponseV0.AsObject;
|
|
2610
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeStateResponseV0): GetProtocolVersionUpgradeStateResponseV0.AsObject;
|
|
2611
2611
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2612
2612
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2613
|
-
static serializeBinaryToWriter(message:
|
|
2614
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2615
|
-
static deserializeBinaryFromReader(message:
|
|
2613
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeStateResponseV0, writer: jspb.BinaryWriter): void;
|
|
2614
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeStateResponseV0;
|
|
2615
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeStateResponseV0, reader: jspb.BinaryReader): GetProtocolVersionUpgradeStateResponseV0;
|
|
2616
2616
|
}
|
|
2617
2617
|
|
|
2618
|
-
export namespace
|
|
2618
|
+
export namespace GetProtocolVersionUpgradeStateResponseV0 {
|
|
2619
2619
|
export type AsObject = {
|
|
2620
|
-
versions?:
|
|
2620
|
+
versions?: GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.Versions.AsObject,
|
|
2621
2621
|
proof?: Proof.AsObject,
|
|
2622
2622
|
metadata?: ResponseMetadata.AsObject,
|
|
2623
2623
|
}
|
|
2624
2624
|
|
|
2625
2625
|
export class Versions extends jspb.Message {
|
|
2626
2626
|
clearVersionsList(): void;
|
|
2627
|
-
getVersionsList(): Array<
|
|
2628
|
-
setVersionsList(value: Array<
|
|
2629
|
-
addVersions(value?:
|
|
2627
|
+
getVersionsList(): Array<GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.VersionEntry>;
|
|
2628
|
+
setVersionsList(value: Array<GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.VersionEntry>): void;
|
|
2629
|
+
addVersions(value?: GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.VersionEntry, index?: number): GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.VersionEntry;
|
|
2630
2630
|
|
|
2631
2631
|
serializeBinary(): Uint8Array;
|
|
2632
2632
|
toObject(includeInstance?: boolean): Versions.AsObject;
|
|
@@ -2640,7 +2640,7 @@ export namespace GetVersionUpgradeStateResponse {
|
|
|
2640
2640
|
|
|
2641
2641
|
export namespace Versions {
|
|
2642
2642
|
export type AsObject = {
|
|
2643
|
-
versionsList: Array<
|
|
2643
|
+
versionsList: Array<GetProtocolVersionUpgradeStateResponse.GetProtocolVersionUpgradeStateResponseV0.VersionEntry.AsObject>,
|
|
2644
2644
|
}
|
|
2645
2645
|
}
|
|
2646
2646
|
|
|
@@ -2681,29 +2681,29 @@ export namespace GetVersionUpgradeStateResponse {
|
|
|
2681
2681
|
}
|
|
2682
2682
|
}
|
|
2683
2683
|
|
|
2684
|
-
export class
|
|
2684
|
+
export class GetProtocolVersionUpgradeVoteStatusRequest extends jspb.Message {
|
|
2685
2685
|
hasV0(): boolean;
|
|
2686
2686
|
clearV0(): void;
|
|
2687
|
-
getV0():
|
|
2688
|
-
setV0(value?:
|
|
2687
|
+
getV0(): GetProtocolVersionUpgradeVoteStatusRequest.GetProtocolVersionUpgradeVoteStatusRequestV0 | undefined;
|
|
2688
|
+
setV0(value?: GetProtocolVersionUpgradeVoteStatusRequest.GetProtocolVersionUpgradeVoteStatusRequestV0): void;
|
|
2689
2689
|
|
|
2690
|
-
getVersionCase():
|
|
2690
|
+
getVersionCase(): GetProtocolVersionUpgradeVoteStatusRequest.VersionCase;
|
|
2691
2691
|
serializeBinary(): Uint8Array;
|
|
2692
|
-
toObject(includeInstance?: boolean):
|
|
2693
|
-
static toObject(includeInstance: boolean, msg:
|
|
2692
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeVoteStatusRequest.AsObject;
|
|
2693
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeVoteStatusRequest): GetProtocolVersionUpgradeVoteStatusRequest.AsObject;
|
|
2694
2694
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2695
2695
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2696
|
-
static serializeBinaryToWriter(message:
|
|
2697
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2698
|
-
static deserializeBinaryFromReader(message:
|
|
2696
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeVoteStatusRequest, writer: jspb.BinaryWriter): void;
|
|
2697
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeVoteStatusRequest;
|
|
2698
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeVoteStatusRequest, reader: jspb.BinaryReader): GetProtocolVersionUpgradeVoteStatusRequest;
|
|
2699
2699
|
}
|
|
2700
2700
|
|
|
2701
|
-
export namespace
|
|
2701
|
+
export namespace GetProtocolVersionUpgradeVoteStatusRequest {
|
|
2702
2702
|
export type AsObject = {
|
|
2703
|
-
v0?:
|
|
2703
|
+
v0?: GetProtocolVersionUpgradeVoteStatusRequest.GetProtocolVersionUpgradeVoteStatusRequestV0.AsObject,
|
|
2704
2704
|
}
|
|
2705
2705
|
|
|
2706
|
-
export class
|
|
2706
|
+
export class GetProtocolVersionUpgradeVoteStatusRequestV0 extends jspb.Message {
|
|
2707
2707
|
getStartProTxHash(): Uint8Array | string;
|
|
2708
2708
|
getStartProTxHash_asU8(): Uint8Array;
|
|
2709
2709
|
getStartProTxHash_asB64(): string;
|
|
@@ -2716,16 +2716,16 @@ export namespace GetVersionUpgradeVoteStatusRequest {
|
|
|
2716
2716
|
setProve(value: boolean): void;
|
|
2717
2717
|
|
|
2718
2718
|
serializeBinary(): Uint8Array;
|
|
2719
|
-
toObject(includeInstance?: boolean):
|
|
2720
|
-
static toObject(includeInstance: boolean, msg:
|
|
2719
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeVoteStatusRequestV0.AsObject;
|
|
2720
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeVoteStatusRequestV0): GetProtocolVersionUpgradeVoteStatusRequestV0.AsObject;
|
|
2721
2721
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2722
2722
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2723
|
-
static serializeBinaryToWriter(message:
|
|
2724
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2725
|
-
static deserializeBinaryFromReader(message:
|
|
2723
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeVoteStatusRequestV0, writer: jspb.BinaryWriter): void;
|
|
2724
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeVoteStatusRequestV0;
|
|
2725
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeVoteStatusRequestV0, reader: jspb.BinaryReader): GetProtocolVersionUpgradeVoteStatusRequestV0;
|
|
2726
2726
|
}
|
|
2727
2727
|
|
|
2728
|
-
export namespace
|
|
2728
|
+
export namespace GetProtocolVersionUpgradeVoteStatusRequestV0 {
|
|
2729
2729
|
export type AsObject = {
|
|
2730
2730
|
startProTxHash: Uint8Array | string,
|
|
2731
2731
|
count: number,
|
|
@@ -2739,33 +2739,33 @@ export namespace GetVersionUpgradeVoteStatusRequest {
|
|
|
2739
2739
|
}
|
|
2740
2740
|
}
|
|
2741
2741
|
|
|
2742
|
-
export class
|
|
2742
|
+
export class GetProtocolVersionUpgradeVoteStatusResponse extends jspb.Message {
|
|
2743
2743
|
hasV0(): boolean;
|
|
2744
2744
|
clearV0(): void;
|
|
2745
|
-
getV0():
|
|
2746
|
-
setV0(value?:
|
|
2745
|
+
getV0(): GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0 | undefined;
|
|
2746
|
+
setV0(value?: GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0): void;
|
|
2747
2747
|
|
|
2748
|
-
getVersionCase():
|
|
2748
|
+
getVersionCase(): GetProtocolVersionUpgradeVoteStatusResponse.VersionCase;
|
|
2749
2749
|
serializeBinary(): Uint8Array;
|
|
2750
|
-
toObject(includeInstance?: boolean):
|
|
2751
|
-
static toObject(includeInstance: boolean, msg:
|
|
2750
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeVoteStatusResponse.AsObject;
|
|
2751
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeVoteStatusResponse): GetProtocolVersionUpgradeVoteStatusResponse.AsObject;
|
|
2752
2752
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2753
2753
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2754
|
-
static serializeBinaryToWriter(message:
|
|
2755
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2756
|
-
static deserializeBinaryFromReader(message:
|
|
2754
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeVoteStatusResponse, writer: jspb.BinaryWriter): void;
|
|
2755
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeVoteStatusResponse;
|
|
2756
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeVoteStatusResponse, reader: jspb.BinaryReader): GetProtocolVersionUpgradeVoteStatusResponse;
|
|
2757
2757
|
}
|
|
2758
2758
|
|
|
2759
|
-
export namespace
|
|
2759
|
+
export namespace GetProtocolVersionUpgradeVoteStatusResponse {
|
|
2760
2760
|
export type AsObject = {
|
|
2761
|
-
v0?:
|
|
2761
|
+
v0?: GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.AsObject,
|
|
2762
2762
|
}
|
|
2763
2763
|
|
|
2764
|
-
export class
|
|
2764
|
+
export class GetProtocolVersionUpgradeVoteStatusResponseV0 extends jspb.Message {
|
|
2765
2765
|
hasVersions(): boolean;
|
|
2766
2766
|
clearVersions(): void;
|
|
2767
|
-
getVersions():
|
|
2768
|
-
setVersions(value?:
|
|
2767
|
+
getVersions(): GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignals | undefined;
|
|
2768
|
+
setVersions(value?: GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignals): void;
|
|
2769
2769
|
|
|
2770
2770
|
hasProof(): boolean;
|
|
2771
2771
|
clearProof(): void;
|
|
@@ -2777,29 +2777,29 @@ export namespace GetVersionUpgradeVoteStatusResponse {
|
|
|
2777
2777
|
getMetadata(): ResponseMetadata | undefined;
|
|
2778
2778
|
setMetadata(value?: ResponseMetadata): void;
|
|
2779
2779
|
|
|
2780
|
-
getResultCase():
|
|
2780
|
+
getResultCase(): GetProtocolVersionUpgradeVoteStatusResponseV0.ResultCase;
|
|
2781
2781
|
serializeBinary(): Uint8Array;
|
|
2782
|
-
toObject(includeInstance?: boolean):
|
|
2783
|
-
static toObject(includeInstance: boolean, msg:
|
|
2782
|
+
toObject(includeInstance?: boolean): GetProtocolVersionUpgradeVoteStatusResponseV0.AsObject;
|
|
2783
|
+
static toObject(includeInstance: boolean, msg: GetProtocolVersionUpgradeVoteStatusResponseV0): GetProtocolVersionUpgradeVoteStatusResponseV0.AsObject;
|
|
2784
2784
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2785
2785
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2786
|
-
static serializeBinaryToWriter(message:
|
|
2787
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2788
|
-
static deserializeBinaryFromReader(message:
|
|
2786
|
+
static serializeBinaryToWriter(message: GetProtocolVersionUpgradeVoteStatusResponseV0, writer: jspb.BinaryWriter): void;
|
|
2787
|
+
static deserializeBinary(bytes: Uint8Array): GetProtocolVersionUpgradeVoteStatusResponseV0;
|
|
2788
|
+
static deserializeBinaryFromReader(message: GetProtocolVersionUpgradeVoteStatusResponseV0, reader: jspb.BinaryReader): GetProtocolVersionUpgradeVoteStatusResponseV0;
|
|
2789
2789
|
}
|
|
2790
2790
|
|
|
2791
|
-
export namespace
|
|
2791
|
+
export namespace GetProtocolVersionUpgradeVoteStatusResponseV0 {
|
|
2792
2792
|
export type AsObject = {
|
|
2793
|
-
versions?:
|
|
2793
|
+
versions?: GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignals.AsObject,
|
|
2794
2794
|
proof?: Proof.AsObject,
|
|
2795
2795
|
metadata?: ResponseMetadata.AsObject,
|
|
2796
2796
|
}
|
|
2797
2797
|
|
|
2798
2798
|
export class VersionSignals extends jspb.Message {
|
|
2799
2799
|
clearVersionSignalsList(): void;
|
|
2800
|
-
getVersionSignalsList(): Array<
|
|
2801
|
-
setVersionSignalsList(value: Array<
|
|
2802
|
-
addVersionSignals(value?:
|
|
2800
|
+
getVersionSignalsList(): Array<GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignal>;
|
|
2801
|
+
setVersionSignalsList(value: Array<GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignal>): void;
|
|
2802
|
+
addVersionSignals(value?: GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignal, index?: number): GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignal;
|
|
2803
2803
|
|
|
2804
2804
|
serializeBinary(): Uint8Array;
|
|
2805
2805
|
toObject(includeInstance?: boolean): VersionSignals.AsObject;
|
|
@@ -2813,7 +2813,7 @@ export namespace GetVersionUpgradeVoteStatusResponse {
|
|
|
2813
2813
|
|
|
2814
2814
|
export namespace VersionSignals {
|
|
2815
2815
|
export type AsObject = {
|
|
2816
|
-
versionSignalsList: Array<
|
|
2816
|
+
versionSignalsList: Array<GetProtocolVersionUpgradeVoteStatusResponse.GetProtocolVersionUpgradeVoteStatusResponseV0.VersionSignal.AsObject>,
|
|
2817
2817
|
}
|
|
2818
2818
|
}
|
|
2819
2819
|
|