@dashevo/dapi-grpc 2.2.0-dev.2 → 3.0.0-dev.11
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/Cargo.toml +4 -3
- package/build.rs +68 -7
- package/clients/drive/v0/nodejs/drive_pbjs.js +8160 -0
- package/clients/platform/v0/nodejs/platform_pbjs.js +8160 -0
- package/clients/platform/v0/nodejs/platform_protoc.js +33597 -26066
- package/clients/platform/v0/web/platform_pb.d.ts +1000 -0
- package/clients/platform/v0/web/platform_pb.js +33597 -26066
- package/clients/platform/v0/web/platform_pb_service.d.ts +114 -0
- package/clients/platform/v0/web/platform_pb_service.js +240 -0
- package/package.json +2 -2
- package/protos/platform/v0/platform.proto +185 -0
- package/src/core/client/org.dash.platform.dapi.v0.rs +29 -29
- package/src/core/wasm/org.dash.platform.dapi.v0.rs +29 -29
- package/src/drive/client/org.dash.platform.dapi.v0.rs +1024 -302
- package/src/drive/client/org.dash.platform.drive.v0.rs +2 -2
- package/src/drive/wasm/org.dash.platform.dapi.v0.rs +1024 -302
- package/src/drive/wasm/org.dash.platform.drive.v0.rs +2 -2
- package/src/lib.rs +3 -1
- package/src/platform/client/org.dash.platform.dapi.v0.rs +1188 -424
- package/src/platform/versioning.rs +8 -0
- package/src/platform/wasm/org.dash.platform.dapi.v0.rs +1188 -424
|
@@ -9502,6 +9502,1006 @@ export namespace GetGroupActionSignersResponse {
|
|
|
9502
9502
|
}
|
|
9503
9503
|
}
|
|
9504
9504
|
|
|
9505
|
+
export class GetAddressInfoRequest extends jspb.Message {
|
|
9506
|
+
hasV0(): boolean;
|
|
9507
|
+
clearV0(): void;
|
|
9508
|
+
getV0(): GetAddressInfoRequest.GetAddressInfoRequestV0 | undefined;
|
|
9509
|
+
setV0(value?: GetAddressInfoRequest.GetAddressInfoRequestV0): void;
|
|
9510
|
+
|
|
9511
|
+
getVersionCase(): GetAddressInfoRequest.VersionCase;
|
|
9512
|
+
serializeBinary(): Uint8Array;
|
|
9513
|
+
toObject(includeInstance?: boolean): GetAddressInfoRequest.AsObject;
|
|
9514
|
+
static toObject(includeInstance: boolean, msg: GetAddressInfoRequest): GetAddressInfoRequest.AsObject;
|
|
9515
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9516
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9517
|
+
static serializeBinaryToWriter(message: GetAddressInfoRequest, writer: jspb.BinaryWriter): void;
|
|
9518
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressInfoRequest;
|
|
9519
|
+
static deserializeBinaryFromReader(message: GetAddressInfoRequest, reader: jspb.BinaryReader): GetAddressInfoRequest;
|
|
9520
|
+
}
|
|
9521
|
+
|
|
9522
|
+
export namespace GetAddressInfoRequest {
|
|
9523
|
+
export type AsObject = {
|
|
9524
|
+
v0?: GetAddressInfoRequest.GetAddressInfoRequestV0.AsObject,
|
|
9525
|
+
}
|
|
9526
|
+
|
|
9527
|
+
export class GetAddressInfoRequestV0 extends jspb.Message {
|
|
9528
|
+
getAddress(): Uint8Array | string;
|
|
9529
|
+
getAddress_asU8(): Uint8Array;
|
|
9530
|
+
getAddress_asB64(): string;
|
|
9531
|
+
setAddress(value: Uint8Array | string): void;
|
|
9532
|
+
|
|
9533
|
+
getProve(): boolean;
|
|
9534
|
+
setProve(value: boolean): void;
|
|
9535
|
+
|
|
9536
|
+
serializeBinary(): Uint8Array;
|
|
9537
|
+
toObject(includeInstance?: boolean): GetAddressInfoRequestV0.AsObject;
|
|
9538
|
+
static toObject(includeInstance: boolean, msg: GetAddressInfoRequestV0): GetAddressInfoRequestV0.AsObject;
|
|
9539
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9540
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9541
|
+
static serializeBinaryToWriter(message: GetAddressInfoRequestV0, writer: jspb.BinaryWriter): void;
|
|
9542
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressInfoRequestV0;
|
|
9543
|
+
static deserializeBinaryFromReader(message: GetAddressInfoRequestV0, reader: jspb.BinaryReader): GetAddressInfoRequestV0;
|
|
9544
|
+
}
|
|
9545
|
+
|
|
9546
|
+
export namespace GetAddressInfoRequestV0 {
|
|
9547
|
+
export type AsObject = {
|
|
9548
|
+
address: Uint8Array | string,
|
|
9549
|
+
prove: boolean,
|
|
9550
|
+
}
|
|
9551
|
+
}
|
|
9552
|
+
|
|
9553
|
+
export enum VersionCase {
|
|
9554
|
+
VERSION_NOT_SET = 0,
|
|
9555
|
+
V0 = 1,
|
|
9556
|
+
}
|
|
9557
|
+
}
|
|
9558
|
+
|
|
9559
|
+
export class AddressInfoEntry extends jspb.Message {
|
|
9560
|
+
getAddress(): Uint8Array | string;
|
|
9561
|
+
getAddress_asU8(): Uint8Array;
|
|
9562
|
+
getAddress_asB64(): string;
|
|
9563
|
+
setAddress(value: Uint8Array | string): void;
|
|
9564
|
+
|
|
9565
|
+
hasBalanceAndNonce(): boolean;
|
|
9566
|
+
clearBalanceAndNonce(): void;
|
|
9567
|
+
getBalanceAndNonce(): BalanceAndNonce | undefined;
|
|
9568
|
+
setBalanceAndNonce(value?: BalanceAndNonce): void;
|
|
9569
|
+
|
|
9570
|
+
serializeBinary(): Uint8Array;
|
|
9571
|
+
toObject(includeInstance?: boolean): AddressInfoEntry.AsObject;
|
|
9572
|
+
static toObject(includeInstance: boolean, msg: AddressInfoEntry): AddressInfoEntry.AsObject;
|
|
9573
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9574
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9575
|
+
static serializeBinaryToWriter(message: AddressInfoEntry, writer: jspb.BinaryWriter): void;
|
|
9576
|
+
static deserializeBinary(bytes: Uint8Array): AddressInfoEntry;
|
|
9577
|
+
static deserializeBinaryFromReader(message: AddressInfoEntry, reader: jspb.BinaryReader): AddressInfoEntry;
|
|
9578
|
+
}
|
|
9579
|
+
|
|
9580
|
+
export namespace AddressInfoEntry {
|
|
9581
|
+
export type AsObject = {
|
|
9582
|
+
address: Uint8Array | string,
|
|
9583
|
+
balanceAndNonce?: BalanceAndNonce.AsObject,
|
|
9584
|
+
}
|
|
9585
|
+
}
|
|
9586
|
+
|
|
9587
|
+
export class BalanceAndNonce extends jspb.Message {
|
|
9588
|
+
getBalance(): number;
|
|
9589
|
+
setBalance(value: number): void;
|
|
9590
|
+
|
|
9591
|
+
getNonce(): number;
|
|
9592
|
+
setNonce(value: number): void;
|
|
9593
|
+
|
|
9594
|
+
serializeBinary(): Uint8Array;
|
|
9595
|
+
toObject(includeInstance?: boolean): BalanceAndNonce.AsObject;
|
|
9596
|
+
static toObject(includeInstance: boolean, msg: BalanceAndNonce): BalanceAndNonce.AsObject;
|
|
9597
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9598
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9599
|
+
static serializeBinaryToWriter(message: BalanceAndNonce, writer: jspb.BinaryWriter): void;
|
|
9600
|
+
static deserializeBinary(bytes: Uint8Array): BalanceAndNonce;
|
|
9601
|
+
static deserializeBinaryFromReader(message: BalanceAndNonce, reader: jspb.BinaryReader): BalanceAndNonce;
|
|
9602
|
+
}
|
|
9603
|
+
|
|
9604
|
+
export namespace BalanceAndNonce {
|
|
9605
|
+
export type AsObject = {
|
|
9606
|
+
balance: number,
|
|
9607
|
+
nonce: number,
|
|
9608
|
+
}
|
|
9609
|
+
}
|
|
9610
|
+
|
|
9611
|
+
export class AddressInfoEntries extends jspb.Message {
|
|
9612
|
+
clearAddressInfoEntriesList(): void;
|
|
9613
|
+
getAddressInfoEntriesList(): Array<AddressInfoEntry>;
|
|
9614
|
+
setAddressInfoEntriesList(value: Array<AddressInfoEntry>): void;
|
|
9615
|
+
addAddressInfoEntries(value?: AddressInfoEntry, index?: number): AddressInfoEntry;
|
|
9616
|
+
|
|
9617
|
+
serializeBinary(): Uint8Array;
|
|
9618
|
+
toObject(includeInstance?: boolean): AddressInfoEntries.AsObject;
|
|
9619
|
+
static toObject(includeInstance: boolean, msg: AddressInfoEntries): AddressInfoEntries.AsObject;
|
|
9620
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9621
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9622
|
+
static serializeBinaryToWriter(message: AddressInfoEntries, writer: jspb.BinaryWriter): void;
|
|
9623
|
+
static deserializeBinary(bytes: Uint8Array): AddressInfoEntries;
|
|
9624
|
+
static deserializeBinaryFromReader(message: AddressInfoEntries, reader: jspb.BinaryReader): AddressInfoEntries;
|
|
9625
|
+
}
|
|
9626
|
+
|
|
9627
|
+
export namespace AddressInfoEntries {
|
|
9628
|
+
export type AsObject = {
|
|
9629
|
+
addressInfoEntriesList: Array<AddressInfoEntry.AsObject>,
|
|
9630
|
+
}
|
|
9631
|
+
}
|
|
9632
|
+
|
|
9633
|
+
export class AddressBalanceChange extends jspb.Message {
|
|
9634
|
+
getAddress(): Uint8Array | string;
|
|
9635
|
+
getAddress_asU8(): Uint8Array;
|
|
9636
|
+
getAddress_asB64(): string;
|
|
9637
|
+
setAddress(value: Uint8Array | string): void;
|
|
9638
|
+
|
|
9639
|
+
hasSetBalance(): boolean;
|
|
9640
|
+
clearSetBalance(): void;
|
|
9641
|
+
getSetBalance(): string;
|
|
9642
|
+
setSetBalance(value: string): void;
|
|
9643
|
+
|
|
9644
|
+
hasAddToBalance(): boolean;
|
|
9645
|
+
clearAddToBalance(): void;
|
|
9646
|
+
getAddToBalance(): string;
|
|
9647
|
+
setAddToBalance(value: string): void;
|
|
9648
|
+
|
|
9649
|
+
getOperationCase(): AddressBalanceChange.OperationCase;
|
|
9650
|
+
serializeBinary(): Uint8Array;
|
|
9651
|
+
toObject(includeInstance?: boolean): AddressBalanceChange.AsObject;
|
|
9652
|
+
static toObject(includeInstance: boolean, msg: AddressBalanceChange): AddressBalanceChange.AsObject;
|
|
9653
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9654
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9655
|
+
static serializeBinaryToWriter(message: AddressBalanceChange, writer: jspb.BinaryWriter): void;
|
|
9656
|
+
static deserializeBinary(bytes: Uint8Array): AddressBalanceChange;
|
|
9657
|
+
static deserializeBinaryFromReader(message: AddressBalanceChange, reader: jspb.BinaryReader): AddressBalanceChange;
|
|
9658
|
+
}
|
|
9659
|
+
|
|
9660
|
+
export namespace AddressBalanceChange {
|
|
9661
|
+
export type AsObject = {
|
|
9662
|
+
address: Uint8Array | string,
|
|
9663
|
+
setBalance: string,
|
|
9664
|
+
addToBalance: string,
|
|
9665
|
+
}
|
|
9666
|
+
|
|
9667
|
+
export enum OperationCase {
|
|
9668
|
+
OPERATION_NOT_SET = 0,
|
|
9669
|
+
SET_BALANCE = 2,
|
|
9670
|
+
ADD_TO_BALANCE = 3,
|
|
9671
|
+
}
|
|
9672
|
+
}
|
|
9673
|
+
|
|
9674
|
+
export class BlockAddressBalanceChanges extends jspb.Message {
|
|
9675
|
+
getBlockHeight(): string;
|
|
9676
|
+
setBlockHeight(value: string): void;
|
|
9677
|
+
|
|
9678
|
+
clearChangesList(): void;
|
|
9679
|
+
getChangesList(): Array<AddressBalanceChange>;
|
|
9680
|
+
setChangesList(value: Array<AddressBalanceChange>): void;
|
|
9681
|
+
addChanges(value?: AddressBalanceChange, index?: number): AddressBalanceChange;
|
|
9682
|
+
|
|
9683
|
+
serializeBinary(): Uint8Array;
|
|
9684
|
+
toObject(includeInstance?: boolean): BlockAddressBalanceChanges.AsObject;
|
|
9685
|
+
static toObject(includeInstance: boolean, msg: BlockAddressBalanceChanges): BlockAddressBalanceChanges.AsObject;
|
|
9686
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9687
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9688
|
+
static serializeBinaryToWriter(message: BlockAddressBalanceChanges, writer: jspb.BinaryWriter): void;
|
|
9689
|
+
static deserializeBinary(bytes: Uint8Array): BlockAddressBalanceChanges;
|
|
9690
|
+
static deserializeBinaryFromReader(message: BlockAddressBalanceChanges, reader: jspb.BinaryReader): BlockAddressBalanceChanges;
|
|
9691
|
+
}
|
|
9692
|
+
|
|
9693
|
+
export namespace BlockAddressBalanceChanges {
|
|
9694
|
+
export type AsObject = {
|
|
9695
|
+
blockHeight: string,
|
|
9696
|
+
changesList: Array<AddressBalanceChange.AsObject>,
|
|
9697
|
+
}
|
|
9698
|
+
}
|
|
9699
|
+
|
|
9700
|
+
export class AddressBalanceUpdateEntries extends jspb.Message {
|
|
9701
|
+
clearBlockChangesList(): void;
|
|
9702
|
+
getBlockChangesList(): Array<BlockAddressBalanceChanges>;
|
|
9703
|
+
setBlockChangesList(value: Array<BlockAddressBalanceChanges>): void;
|
|
9704
|
+
addBlockChanges(value?: BlockAddressBalanceChanges, index?: number): BlockAddressBalanceChanges;
|
|
9705
|
+
|
|
9706
|
+
serializeBinary(): Uint8Array;
|
|
9707
|
+
toObject(includeInstance?: boolean): AddressBalanceUpdateEntries.AsObject;
|
|
9708
|
+
static toObject(includeInstance: boolean, msg: AddressBalanceUpdateEntries): AddressBalanceUpdateEntries.AsObject;
|
|
9709
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9710
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9711
|
+
static serializeBinaryToWriter(message: AddressBalanceUpdateEntries, writer: jspb.BinaryWriter): void;
|
|
9712
|
+
static deserializeBinary(bytes: Uint8Array): AddressBalanceUpdateEntries;
|
|
9713
|
+
static deserializeBinaryFromReader(message: AddressBalanceUpdateEntries, reader: jspb.BinaryReader): AddressBalanceUpdateEntries;
|
|
9714
|
+
}
|
|
9715
|
+
|
|
9716
|
+
export namespace AddressBalanceUpdateEntries {
|
|
9717
|
+
export type AsObject = {
|
|
9718
|
+
blockChangesList: Array<BlockAddressBalanceChanges.AsObject>,
|
|
9719
|
+
}
|
|
9720
|
+
}
|
|
9721
|
+
|
|
9722
|
+
export class GetAddressInfoResponse extends jspb.Message {
|
|
9723
|
+
hasV0(): boolean;
|
|
9724
|
+
clearV0(): void;
|
|
9725
|
+
getV0(): GetAddressInfoResponse.GetAddressInfoResponseV0 | undefined;
|
|
9726
|
+
setV0(value?: GetAddressInfoResponse.GetAddressInfoResponseV0): void;
|
|
9727
|
+
|
|
9728
|
+
getVersionCase(): GetAddressInfoResponse.VersionCase;
|
|
9729
|
+
serializeBinary(): Uint8Array;
|
|
9730
|
+
toObject(includeInstance?: boolean): GetAddressInfoResponse.AsObject;
|
|
9731
|
+
static toObject(includeInstance: boolean, msg: GetAddressInfoResponse): GetAddressInfoResponse.AsObject;
|
|
9732
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9733
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9734
|
+
static serializeBinaryToWriter(message: GetAddressInfoResponse, writer: jspb.BinaryWriter): void;
|
|
9735
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressInfoResponse;
|
|
9736
|
+
static deserializeBinaryFromReader(message: GetAddressInfoResponse, reader: jspb.BinaryReader): GetAddressInfoResponse;
|
|
9737
|
+
}
|
|
9738
|
+
|
|
9739
|
+
export namespace GetAddressInfoResponse {
|
|
9740
|
+
export type AsObject = {
|
|
9741
|
+
v0?: GetAddressInfoResponse.GetAddressInfoResponseV0.AsObject,
|
|
9742
|
+
}
|
|
9743
|
+
|
|
9744
|
+
export class GetAddressInfoResponseV0 extends jspb.Message {
|
|
9745
|
+
hasAddressInfoEntry(): boolean;
|
|
9746
|
+
clearAddressInfoEntry(): void;
|
|
9747
|
+
getAddressInfoEntry(): AddressInfoEntry | undefined;
|
|
9748
|
+
setAddressInfoEntry(value?: AddressInfoEntry): void;
|
|
9749
|
+
|
|
9750
|
+
hasProof(): boolean;
|
|
9751
|
+
clearProof(): void;
|
|
9752
|
+
getProof(): Proof | undefined;
|
|
9753
|
+
setProof(value?: Proof): void;
|
|
9754
|
+
|
|
9755
|
+
hasMetadata(): boolean;
|
|
9756
|
+
clearMetadata(): void;
|
|
9757
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
9758
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
9759
|
+
|
|
9760
|
+
getResultCase(): GetAddressInfoResponseV0.ResultCase;
|
|
9761
|
+
serializeBinary(): Uint8Array;
|
|
9762
|
+
toObject(includeInstance?: boolean): GetAddressInfoResponseV0.AsObject;
|
|
9763
|
+
static toObject(includeInstance: boolean, msg: GetAddressInfoResponseV0): GetAddressInfoResponseV0.AsObject;
|
|
9764
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9765
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9766
|
+
static serializeBinaryToWriter(message: GetAddressInfoResponseV0, writer: jspb.BinaryWriter): void;
|
|
9767
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressInfoResponseV0;
|
|
9768
|
+
static deserializeBinaryFromReader(message: GetAddressInfoResponseV0, reader: jspb.BinaryReader): GetAddressInfoResponseV0;
|
|
9769
|
+
}
|
|
9770
|
+
|
|
9771
|
+
export namespace GetAddressInfoResponseV0 {
|
|
9772
|
+
export type AsObject = {
|
|
9773
|
+
addressInfoEntry?: AddressInfoEntry.AsObject,
|
|
9774
|
+
proof?: Proof.AsObject,
|
|
9775
|
+
metadata?: ResponseMetadata.AsObject,
|
|
9776
|
+
}
|
|
9777
|
+
|
|
9778
|
+
export enum ResultCase {
|
|
9779
|
+
RESULT_NOT_SET = 0,
|
|
9780
|
+
ADDRESS_INFO_ENTRY = 1,
|
|
9781
|
+
PROOF = 2,
|
|
9782
|
+
}
|
|
9783
|
+
}
|
|
9784
|
+
|
|
9785
|
+
export enum VersionCase {
|
|
9786
|
+
VERSION_NOT_SET = 0,
|
|
9787
|
+
V0 = 1,
|
|
9788
|
+
}
|
|
9789
|
+
}
|
|
9790
|
+
|
|
9791
|
+
export class GetAddressesInfosRequest extends jspb.Message {
|
|
9792
|
+
hasV0(): boolean;
|
|
9793
|
+
clearV0(): void;
|
|
9794
|
+
getV0(): GetAddressesInfosRequest.GetAddressesInfosRequestV0 | undefined;
|
|
9795
|
+
setV0(value?: GetAddressesInfosRequest.GetAddressesInfosRequestV0): void;
|
|
9796
|
+
|
|
9797
|
+
getVersionCase(): GetAddressesInfosRequest.VersionCase;
|
|
9798
|
+
serializeBinary(): Uint8Array;
|
|
9799
|
+
toObject(includeInstance?: boolean): GetAddressesInfosRequest.AsObject;
|
|
9800
|
+
static toObject(includeInstance: boolean, msg: GetAddressesInfosRequest): GetAddressesInfosRequest.AsObject;
|
|
9801
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9802
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9803
|
+
static serializeBinaryToWriter(message: GetAddressesInfosRequest, writer: jspb.BinaryWriter): void;
|
|
9804
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesInfosRequest;
|
|
9805
|
+
static deserializeBinaryFromReader(message: GetAddressesInfosRequest, reader: jspb.BinaryReader): GetAddressesInfosRequest;
|
|
9806
|
+
}
|
|
9807
|
+
|
|
9808
|
+
export namespace GetAddressesInfosRequest {
|
|
9809
|
+
export type AsObject = {
|
|
9810
|
+
v0?: GetAddressesInfosRequest.GetAddressesInfosRequestV0.AsObject,
|
|
9811
|
+
}
|
|
9812
|
+
|
|
9813
|
+
export class GetAddressesInfosRequestV0 extends jspb.Message {
|
|
9814
|
+
clearAddressesList(): void;
|
|
9815
|
+
getAddressesList(): Array<Uint8Array | string>;
|
|
9816
|
+
getAddressesList_asU8(): Array<Uint8Array>;
|
|
9817
|
+
getAddressesList_asB64(): Array<string>;
|
|
9818
|
+
setAddressesList(value: Array<Uint8Array | string>): void;
|
|
9819
|
+
addAddresses(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
9820
|
+
|
|
9821
|
+
getProve(): boolean;
|
|
9822
|
+
setProve(value: boolean): void;
|
|
9823
|
+
|
|
9824
|
+
serializeBinary(): Uint8Array;
|
|
9825
|
+
toObject(includeInstance?: boolean): GetAddressesInfosRequestV0.AsObject;
|
|
9826
|
+
static toObject(includeInstance: boolean, msg: GetAddressesInfosRequestV0): GetAddressesInfosRequestV0.AsObject;
|
|
9827
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9828
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9829
|
+
static serializeBinaryToWriter(message: GetAddressesInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
9830
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesInfosRequestV0;
|
|
9831
|
+
static deserializeBinaryFromReader(message: GetAddressesInfosRequestV0, reader: jspb.BinaryReader): GetAddressesInfosRequestV0;
|
|
9832
|
+
}
|
|
9833
|
+
|
|
9834
|
+
export namespace GetAddressesInfosRequestV0 {
|
|
9835
|
+
export type AsObject = {
|
|
9836
|
+
addressesList: Array<Uint8Array | string>,
|
|
9837
|
+
prove: boolean,
|
|
9838
|
+
}
|
|
9839
|
+
}
|
|
9840
|
+
|
|
9841
|
+
export enum VersionCase {
|
|
9842
|
+
VERSION_NOT_SET = 0,
|
|
9843
|
+
V0 = 1,
|
|
9844
|
+
}
|
|
9845
|
+
}
|
|
9846
|
+
|
|
9847
|
+
export class GetAddressesInfosResponse extends jspb.Message {
|
|
9848
|
+
hasV0(): boolean;
|
|
9849
|
+
clearV0(): void;
|
|
9850
|
+
getV0(): GetAddressesInfosResponse.GetAddressesInfosResponseV0 | undefined;
|
|
9851
|
+
setV0(value?: GetAddressesInfosResponse.GetAddressesInfosResponseV0): void;
|
|
9852
|
+
|
|
9853
|
+
getVersionCase(): GetAddressesInfosResponse.VersionCase;
|
|
9854
|
+
serializeBinary(): Uint8Array;
|
|
9855
|
+
toObject(includeInstance?: boolean): GetAddressesInfosResponse.AsObject;
|
|
9856
|
+
static toObject(includeInstance: boolean, msg: GetAddressesInfosResponse): GetAddressesInfosResponse.AsObject;
|
|
9857
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9858
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9859
|
+
static serializeBinaryToWriter(message: GetAddressesInfosResponse, writer: jspb.BinaryWriter): void;
|
|
9860
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesInfosResponse;
|
|
9861
|
+
static deserializeBinaryFromReader(message: GetAddressesInfosResponse, reader: jspb.BinaryReader): GetAddressesInfosResponse;
|
|
9862
|
+
}
|
|
9863
|
+
|
|
9864
|
+
export namespace GetAddressesInfosResponse {
|
|
9865
|
+
export type AsObject = {
|
|
9866
|
+
v0?: GetAddressesInfosResponse.GetAddressesInfosResponseV0.AsObject,
|
|
9867
|
+
}
|
|
9868
|
+
|
|
9869
|
+
export class GetAddressesInfosResponseV0 extends jspb.Message {
|
|
9870
|
+
hasAddressInfoEntries(): boolean;
|
|
9871
|
+
clearAddressInfoEntries(): void;
|
|
9872
|
+
getAddressInfoEntries(): AddressInfoEntries | undefined;
|
|
9873
|
+
setAddressInfoEntries(value?: AddressInfoEntries): void;
|
|
9874
|
+
|
|
9875
|
+
hasProof(): boolean;
|
|
9876
|
+
clearProof(): void;
|
|
9877
|
+
getProof(): Proof | undefined;
|
|
9878
|
+
setProof(value?: Proof): void;
|
|
9879
|
+
|
|
9880
|
+
hasMetadata(): boolean;
|
|
9881
|
+
clearMetadata(): void;
|
|
9882
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
9883
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
9884
|
+
|
|
9885
|
+
getResultCase(): GetAddressesInfosResponseV0.ResultCase;
|
|
9886
|
+
serializeBinary(): Uint8Array;
|
|
9887
|
+
toObject(includeInstance?: boolean): GetAddressesInfosResponseV0.AsObject;
|
|
9888
|
+
static toObject(includeInstance: boolean, msg: GetAddressesInfosResponseV0): GetAddressesInfosResponseV0.AsObject;
|
|
9889
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9890
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9891
|
+
static serializeBinaryToWriter(message: GetAddressesInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
9892
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesInfosResponseV0;
|
|
9893
|
+
static deserializeBinaryFromReader(message: GetAddressesInfosResponseV0, reader: jspb.BinaryReader): GetAddressesInfosResponseV0;
|
|
9894
|
+
}
|
|
9895
|
+
|
|
9896
|
+
export namespace GetAddressesInfosResponseV0 {
|
|
9897
|
+
export type AsObject = {
|
|
9898
|
+
addressInfoEntries?: AddressInfoEntries.AsObject,
|
|
9899
|
+
proof?: Proof.AsObject,
|
|
9900
|
+
metadata?: ResponseMetadata.AsObject,
|
|
9901
|
+
}
|
|
9902
|
+
|
|
9903
|
+
export enum ResultCase {
|
|
9904
|
+
RESULT_NOT_SET = 0,
|
|
9905
|
+
ADDRESS_INFO_ENTRIES = 1,
|
|
9906
|
+
PROOF = 2,
|
|
9907
|
+
}
|
|
9908
|
+
}
|
|
9909
|
+
|
|
9910
|
+
export enum VersionCase {
|
|
9911
|
+
VERSION_NOT_SET = 0,
|
|
9912
|
+
V0 = 1,
|
|
9913
|
+
}
|
|
9914
|
+
}
|
|
9915
|
+
|
|
9916
|
+
export class GetAddressesTrunkStateRequest extends jspb.Message {
|
|
9917
|
+
hasV0(): boolean;
|
|
9918
|
+
clearV0(): void;
|
|
9919
|
+
getV0(): GetAddressesTrunkStateRequest.GetAddressesTrunkStateRequestV0 | undefined;
|
|
9920
|
+
setV0(value?: GetAddressesTrunkStateRequest.GetAddressesTrunkStateRequestV0): void;
|
|
9921
|
+
|
|
9922
|
+
getVersionCase(): GetAddressesTrunkStateRequest.VersionCase;
|
|
9923
|
+
serializeBinary(): Uint8Array;
|
|
9924
|
+
toObject(includeInstance?: boolean): GetAddressesTrunkStateRequest.AsObject;
|
|
9925
|
+
static toObject(includeInstance: boolean, msg: GetAddressesTrunkStateRequest): GetAddressesTrunkStateRequest.AsObject;
|
|
9926
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9927
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9928
|
+
static serializeBinaryToWriter(message: GetAddressesTrunkStateRequest, writer: jspb.BinaryWriter): void;
|
|
9929
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesTrunkStateRequest;
|
|
9930
|
+
static deserializeBinaryFromReader(message: GetAddressesTrunkStateRequest, reader: jspb.BinaryReader): GetAddressesTrunkStateRequest;
|
|
9931
|
+
}
|
|
9932
|
+
|
|
9933
|
+
export namespace GetAddressesTrunkStateRequest {
|
|
9934
|
+
export type AsObject = {
|
|
9935
|
+
v0?: GetAddressesTrunkStateRequest.GetAddressesTrunkStateRequestV0.AsObject,
|
|
9936
|
+
}
|
|
9937
|
+
|
|
9938
|
+
export class GetAddressesTrunkStateRequestV0 extends jspb.Message {
|
|
9939
|
+
serializeBinary(): Uint8Array;
|
|
9940
|
+
toObject(includeInstance?: boolean): GetAddressesTrunkStateRequestV0.AsObject;
|
|
9941
|
+
static toObject(includeInstance: boolean, msg: GetAddressesTrunkStateRequestV0): GetAddressesTrunkStateRequestV0.AsObject;
|
|
9942
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9943
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9944
|
+
static serializeBinaryToWriter(message: GetAddressesTrunkStateRequestV0, writer: jspb.BinaryWriter): void;
|
|
9945
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesTrunkStateRequestV0;
|
|
9946
|
+
static deserializeBinaryFromReader(message: GetAddressesTrunkStateRequestV0, reader: jspb.BinaryReader): GetAddressesTrunkStateRequestV0;
|
|
9947
|
+
}
|
|
9948
|
+
|
|
9949
|
+
export namespace GetAddressesTrunkStateRequestV0 {
|
|
9950
|
+
export type AsObject = {
|
|
9951
|
+
}
|
|
9952
|
+
}
|
|
9953
|
+
|
|
9954
|
+
export enum VersionCase {
|
|
9955
|
+
VERSION_NOT_SET = 0,
|
|
9956
|
+
V0 = 1,
|
|
9957
|
+
}
|
|
9958
|
+
}
|
|
9959
|
+
|
|
9960
|
+
export class GetAddressesTrunkStateResponse extends jspb.Message {
|
|
9961
|
+
hasV0(): boolean;
|
|
9962
|
+
clearV0(): void;
|
|
9963
|
+
getV0(): GetAddressesTrunkStateResponse.GetAddressesTrunkStateResponseV0 | undefined;
|
|
9964
|
+
setV0(value?: GetAddressesTrunkStateResponse.GetAddressesTrunkStateResponseV0): void;
|
|
9965
|
+
|
|
9966
|
+
getVersionCase(): GetAddressesTrunkStateResponse.VersionCase;
|
|
9967
|
+
serializeBinary(): Uint8Array;
|
|
9968
|
+
toObject(includeInstance?: boolean): GetAddressesTrunkStateResponse.AsObject;
|
|
9969
|
+
static toObject(includeInstance: boolean, msg: GetAddressesTrunkStateResponse): GetAddressesTrunkStateResponse.AsObject;
|
|
9970
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9971
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9972
|
+
static serializeBinaryToWriter(message: GetAddressesTrunkStateResponse, writer: jspb.BinaryWriter): void;
|
|
9973
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesTrunkStateResponse;
|
|
9974
|
+
static deserializeBinaryFromReader(message: GetAddressesTrunkStateResponse, reader: jspb.BinaryReader): GetAddressesTrunkStateResponse;
|
|
9975
|
+
}
|
|
9976
|
+
|
|
9977
|
+
export namespace GetAddressesTrunkStateResponse {
|
|
9978
|
+
export type AsObject = {
|
|
9979
|
+
v0?: GetAddressesTrunkStateResponse.GetAddressesTrunkStateResponseV0.AsObject,
|
|
9980
|
+
}
|
|
9981
|
+
|
|
9982
|
+
export class GetAddressesTrunkStateResponseV0 extends jspb.Message {
|
|
9983
|
+
hasProof(): boolean;
|
|
9984
|
+
clearProof(): void;
|
|
9985
|
+
getProof(): Proof | undefined;
|
|
9986
|
+
setProof(value?: Proof): void;
|
|
9987
|
+
|
|
9988
|
+
hasMetadata(): boolean;
|
|
9989
|
+
clearMetadata(): void;
|
|
9990
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
9991
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
9992
|
+
|
|
9993
|
+
serializeBinary(): Uint8Array;
|
|
9994
|
+
toObject(includeInstance?: boolean): GetAddressesTrunkStateResponseV0.AsObject;
|
|
9995
|
+
static toObject(includeInstance: boolean, msg: GetAddressesTrunkStateResponseV0): GetAddressesTrunkStateResponseV0.AsObject;
|
|
9996
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
9997
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
9998
|
+
static serializeBinaryToWriter(message: GetAddressesTrunkStateResponseV0, writer: jspb.BinaryWriter): void;
|
|
9999
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesTrunkStateResponseV0;
|
|
10000
|
+
static deserializeBinaryFromReader(message: GetAddressesTrunkStateResponseV0, reader: jspb.BinaryReader): GetAddressesTrunkStateResponseV0;
|
|
10001
|
+
}
|
|
10002
|
+
|
|
10003
|
+
export namespace GetAddressesTrunkStateResponseV0 {
|
|
10004
|
+
export type AsObject = {
|
|
10005
|
+
proof?: Proof.AsObject,
|
|
10006
|
+
metadata?: ResponseMetadata.AsObject,
|
|
10007
|
+
}
|
|
10008
|
+
}
|
|
10009
|
+
|
|
10010
|
+
export enum VersionCase {
|
|
10011
|
+
VERSION_NOT_SET = 0,
|
|
10012
|
+
V0 = 1,
|
|
10013
|
+
}
|
|
10014
|
+
}
|
|
10015
|
+
|
|
10016
|
+
export class GetAddressesBranchStateRequest extends jspb.Message {
|
|
10017
|
+
hasV0(): boolean;
|
|
10018
|
+
clearV0(): void;
|
|
10019
|
+
getV0(): GetAddressesBranchStateRequest.GetAddressesBranchStateRequestV0 | undefined;
|
|
10020
|
+
setV0(value?: GetAddressesBranchStateRequest.GetAddressesBranchStateRequestV0): void;
|
|
10021
|
+
|
|
10022
|
+
getVersionCase(): GetAddressesBranchStateRequest.VersionCase;
|
|
10023
|
+
serializeBinary(): Uint8Array;
|
|
10024
|
+
toObject(includeInstance?: boolean): GetAddressesBranchStateRequest.AsObject;
|
|
10025
|
+
static toObject(includeInstance: boolean, msg: GetAddressesBranchStateRequest): GetAddressesBranchStateRequest.AsObject;
|
|
10026
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10027
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10028
|
+
static serializeBinaryToWriter(message: GetAddressesBranchStateRequest, writer: jspb.BinaryWriter): void;
|
|
10029
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesBranchStateRequest;
|
|
10030
|
+
static deserializeBinaryFromReader(message: GetAddressesBranchStateRequest, reader: jspb.BinaryReader): GetAddressesBranchStateRequest;
|
|
10031
|
+
}
|
|
10032
|
+
|
|
10033
|
+
export namespace GetAddressesBranchStateRequest {
|
|
10034
|
+
export type AsObject = {
|
|
10035
|
+
v0?: GetAddressesBranchStateRequest.GetAddressesBranchStateRequestV0.AsObject,
|
|
10036
|
+
}
|
|
10037
|
+
|
|
10038
|
+
export class GetAddressesBranchStateRequestV0 extends jspb.Message {
|
|
10039
|
+
getKey(): Uint8Array | string;
|
|
10040
|
+
getKey_asU8(): Uint8Array;
|
|
10041
|
+
getKey_asB64(): string;
|
|
10042
|
+
setKey(value: Uint8Array | string): void;
|
|
10043
|
+
|
|
10044
|
+
getDepth(): number;
|
|
10045
|
+
setDepth(value: number): void;
|
|
10046
|
+
|
|
10047
|
+
getCheckpointHeight(): number;
|
|
10048
|
+
setCheckpointHeight(value: number): void;
|
|
10049
|
+
|
|
10050
|
+
serializeBinary(): Uint8Array;
|
|
10051
|
+
toObject(includeInstance?: boolean): GetAddressesBranchStateRequestV0.AsObject;
|
|
10052
|
+
static toObject(includeInstance: boolean, msg: GetAddressesBranchStateRequestV0): GetAddressesBranchStateRequestV0.AsObject;
|
|
10053
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10054
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10055
|
+
static serializeBinaryToWriter(message: GetAddressesBranchStateRequestV0, writer: jspb.BinaryWriter): void;
|
|
10056
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesBranchStateRequestV0;
|
|
10057
|
+
static deserializeBinaryFromReader(message: GetAddressesBranchStateRequestV0, reader: jspb.BinaryReader): GetAddressesBranchStateRequestV0;
|
|
10058
|
+
}
|
|
10059
|
+
|
|
10060
|
+
export namespace GetAddressesBranchStateRequestV0 {
|
|
10061
|
+
export type AsObject = {
|
|
10062
|
+
key: Uint8Array | string,
|
|
10063
|
+
depth: number,
|
|
10064
|
+
checkpointHeight: number,
|
|
10065
|
+
}
|
|
10066
|
+
}
|
|
10067
|
+
|
|
10068
|
+
export enum VersionCase {
|
|
10069
|
+
VERSION_NOT_SET = 0,
|
|
10070
|
+
V0 = 1,
|
|
10071
|
+
}
|
|
10072
|
+
}
|
|
10073
|
+
|
|
10074
|
+
export class GetAddressesBranchStateResponse extends jspb.Message {
|
|
10075
|
+
hasV0(): boolean;
|
|
10076
|
+
clearV0(): void;
|
|
10077
|
+
getV0(): GetAddressesBranchStateResponse.GetAddressesBranchStateResponseV0 | undefined;
|
|
10078
|
+
setV0(value?: GetAddressesBranchStateResponse.GetAddressesBranchStateResponseV0): void;
|
|
10079
|
+
|
|
10080
|
+
getVersionCase(): GetAddressesBranchStateResponse.VersionCase;
|
|
10081
|
+
serializeBinary(): Uint8Array;
|
|
10082
|
+
toObject(includeInstance?: boolean): GetAddressesBranchStateResponse.AsObject;
|
|
10083
|
+
static toObject(includeInstance: boolean, msg: GetAddressesBranchStateResponse): GetAddressesBranchStateResponse.AsObject;
|
|
10084
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10085
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10086
|
+
static serializeBinaryToWriter(message: GetAddressesBranchStateResponse, writer: jspb.BinaryWriter): void;
|
|
10087
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesBranchStateResponse;
|
|
10088
|
+
static deserializeBinaryFromReader(message: GetAddressesBranchStateResponse, reader: jspb.BinaryReader): GetAddressesBranchStateResponse;
|
|
10089
|
+
}
|
|
10090
|
+
|
|
10091
|
+
export namespace GetAddressesBranchStateResponse {
|
|
10092
|
+
export type AsObject = {
|
|
10093
|
+
v0?: GetAddressesBranchStateResponse.GetAddressesBranchStateResponseV0.AsObject,
|
|
10094
|
+
}
|
|
10095
|
+
|
|
10096
|
+
export class GetAddressesBranchStateResponseV0 extends jspb.Message {
|
|
10097
|
+
getMerkProof(): Uint8Array | string;
|
|
10098
|
+
getMerkProof_asU8(): Uint8Array;
|
|
10099
|
+
getMerkProof_asB64(): string;
|
|
10100
|
+
setMerkProof(value: Uint8Array | string): void;
|
|
10101
|
+
|
|
10102
|
+
serializeBinary(): Uint8Array;
|
|
10103
|
+
toObject(includeInstance?: boolean): GetAddressesBranchStateResponseV0.AsObject;
|
|
10104
|
+
static toObject(includeInstance: boolean, msg: GetAddressesBranchStateResponseV0): GetAddressesBranchStateResponseV0.AsObject;
|
|
10105
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10106
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10107
|
+
static serializeBinaryToWriter(message: GetAddressesBranchStateResponseV0, writer: jspb.BinaryWriter): void;
|
|
10108
|
+
static deserializeBinary(bytes: Uint8Array): GetAddressesBranchStateResponseV0;
|
|
10109
|
+
static deserializeBinaryFromReader(message: GetAddressesBranchStateResponseV0, reader: jspb.BinaryReader): GetAddressesBranchStateResponseV0;
|
|
10110
|
+
}
|
|
10111
|
+
|
|
10112
|
+
export namespace GetAddressesBranchStateResponseV0 {
|
|
10113
|
+
export type AsObject = {
|
|
10114
|
+
merkProof: Uint8Array | string,
|
|
10115
|
+
}
|
|
10116
|
+
}
|
|
10117
|
+
|
|
10118
|
+
export enum VersionCase {
|
|
10119
|
+
VERSION_NOT_SET = 0,
|
|
10120
|
+
V0 = 1,
|
|
10121
|
+
}
|
|
10122
|
+
}
|
|
10123
|
+
|
|
10124
|
+
export class GetRecentAddressBalanceChangesRequest extends jspb.Message {
|
|
10125
|
+
hasV0(): boolean;
|
|
10126
|
+
clearV0(): void;
|
|
10127
|
+
getV0(): GetRecentAddressBalanceChangesRequest.GetRecentAddressBalanceChangesRequestV0 | undefined;
|
|
10128
|
+
setV0(value?: GetRecentAddressBalanceChangesRequest.GetRecentAddressBalanceChangesRequestV0): void;
|
|
10129
|
+
|
|
10130
|
+
getVersionCase(): GetRecentAddressBalanceChangesRequest.VersionCase;
|
|
10131
|
+
serializeBinary(): Uint8Array;
|
|
10132
|
+
toObject(includeInstance?: boolean): GetRecentAddressBalanceChangesRequest.AsObject;
|
|
10133
|
+
static toObject(includeInstance: boolean, msg: GetRecentAddressBalanceChangesRequest): GetRecentAddressBalanceChangesRequest.AsObject;
|
|
10134
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10135
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10136
|
+
static serializeBinaryToWriter(message: GetRecentAddressBalanceChangesRequest, writer: jspb.BinaryWriter): void;
|
|
10137
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentAddressBalanceChangesRequest;
|
|
10138
|
+
static deserializeBinaryFromReader(message: GetRecentAddressBalanceChangesRequest, reader: jspb.BinaryReader): GetRecentAddressBalanceChangesRequest;
|
|
10139
|
+
}
|
|
10140
|
+
|
|
10141
|
+
export namespace GetRecentAddressBalanceChangesRequest {
|
|
10142
|
+
export type AsObject = {
|
|
10143
|
+
v0?: GetRecentAddressBalanceChangesRequest.GetRecentAddressBalanceChangesRequestV0.AsObject,
|
|
10144
|
+
}
|
|
10145
|
+
|
|
10146
|
+
export class GetRecentAddressBalanceChangesRequestV0 extends jspb.Message {
|
|
10147
|
+
getStartHeight(): string;
|
|
10148
|
+
setStartHeight(value: string): void;
|
|
10149
|
+
|
|
10150
|
+
getProve(): boolean;
|
|
10151
|
+
setProve(value: boolean): void;
|
|
10152
|
+
|
|
10153
|
+
serializeBinary(): Uint8Array;
|
|
10154
|
+
toObject(includeInstance?: boolean): GetRecentAddressBalanceChangesRequestV0.AsObject;
|
|
10155
|
+
static toObject(includeInstance: boolean, msg: GetRecentAddressBalanceChangesRequestV0): GetRecentAddressBalanceChangesRequestV0.AsObject;
|
|
10156
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10157
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10158
|
+
static serializeBinaryToWriter(message: GetRecentAddressBalanceChangesRequestV0, writer: jspb.BinaryWriter): void;
|
|
10159
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentAddressBalanceChangesRequestV0;
|
|
10160
|
+
static deserializeBinaryFromReader(message: GetRecentAddressBalanceChangesRequestV0, reader: jspb.BinaryReader): GetRecentAddressBalanceChangesRequestV0;
|
|
10161
|
+
}
|
|
10162
|
+
|
|
10163
|
+
export namespace GetRecentAddressBalanceChangesRequestV0 {
|
|
10164
|
+
export type AsObject = {
|
|
10165
|
+
startHeight: string,
|
|
10166
|
+
prove: boolean,
|
|
10167
|
+
}
|
|
10168
|
+
}
|
|
10169
|
+
|
|
10170
|
+
export enum VersionCase {
|
|
10171
|
+
VERSION_NOT_SET = 0,
|
|
10172
|
+
V0 = 1,
|
|
10173
|
+
}
|
|
10174
|
+
}
|
|
10175
|
+
|
|
10176
|
+
export class GetRecentAddressBalanceChangesResponse extends jspb.Message {
|
|
10177
|
+
hasV0(): boolean;
|
|
10178
|
+
clearV0(): void;
|
|
10179
|
+
getV0(): GetRecentAddressBalanceChangesResponse.GetRecentAddressBalanceChangesResponseV0 | undefined;
|
|
10180
|
+
setV0(value?: GetRecentAddressBalanceChangesResponse.GetRecentAddressBalanceChangesResponseV0): void;
|
|
10181
|
+
|
|
10182
|
+
getVersionCase(): GetRecentAddressBalanceChangesResponse.VersionCase;
|
|
10183
|
+
serializeBinary(): Uint8Array;
|
|
10184
|
+
toObject(includeInstance?: boolean): GetRecentAddressBalanceChangesResponse.AsObject;
|
|
10185
|
+
static toObject(includeInstance: boolean, msg: GetRecentAddressBalanceChangesResponse): GetRecentAddressBalanceChangesResponse.AsObject;
|
|
10186
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10187
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10188
|
+
static serializeBinaryToWriter(message: GetRecentAddressBalanceChangesResponse, writer: jspb.BinaryWriter): void;
|
|
10189
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentAddressBalanceChangesResponse;
|
|
10190
|
+
static deserializeBinaryFromReader(message: GetRecentAddressBalanceChangesResponse, reader: jspb.BinaryReader): GetRecentAddressBalanceChangesResponse;
|
|
10191
|
+
}
|
|
10192
|
+
|
|
10193
|
+
export namespace GetRecentAddressBalanceChangesResponse {
|
|
10194
|
+
export type AsObject = {
|
|
10195
|
+
v0?: GetRecentAddressBalanceChangesResponse.GetRecentAddressBalanceChangesResponseV0.AsObject,
|
|
10196
|
+
}
|
|
10197
|
+
|
|
10198
|
+
export class GetRecentAddressBalanceChangesResponseV0 extends jspb.Message {
|
|
10199
|
+
hasAddressBalanceUpdateEntries(): boolean;
|
|
10200
|
+
clearAddressBalanceUpdateEntries(): void;
|
|
10201
|
+
getAddressBalanceUpdateEntries(): AddressBalanceUpdateEntries | undefined;
|
|
10202
|
+
setAddressBalanceUpdateEntries(value?: AddressBalanceUpdateEntries): void;
|
|
10203
|
+
|
|
10204
|
+
hasProof(): boolean;
|
|
10205
|
+
clearProof(): void;
|
|
10206
|
+
getProof(): Proof | undefined;
|
|
10207
|
+
setProof(value?: Proof): void;
|
|
10208
|
+
|
|
10209
|
+
hasMetadata(): boolean;
|
|
10210
|
+
clearMetadata(): void;
|
|
10211
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
10212
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
10213
|
+
|
|
10214
|
+
getResultCase(): GetRecentAddressBalanceChangesResponseV0.ResultCase;
|
|
10215
|
+
serializeBinary(): Uint8Array;
|
|
10216
|
+
toObject(includeInstance?: boolean): GetRecentAddressBalanceChangesResponseV0.AsObject;
|
|
10217
|
+
static toObject(includeInstance: boolean, msg: GetRecentAddressBalanceChangesResponseV0): GetRecentAddressBalanceChangesResponseV0.AsObject;
|
|
10218
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10219
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10220
|
+
static serializeBinaryToWriter(message: GetRecentAddressBalanceChangesResponseV0, writer: jspb.BinaryWriter): void;
|
|
10221
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentAddressBalanceChangesResponseV0;
|
|
10222
|
+
static deserializeBinaryFromReader(message: GetRecentAddressBalanceChangesResponseV0, reader: jspb.BinaryReader): GetRecentAddressBalanceChangesResponseV0;
|
|
10223
|
+
}
|
|
10224
|
+
|
|
10225
|
+
export namespace GetRecentAddressBalanceChangesResponseV0 {
|
|
10226
|
+
export type AsObject = {
|
|
10227
|
+
addressBalanceUpdateEntries?: AddressBalanceUpdateEntries.AsObject,
|
|
10228
|
+
proof?: Proof.AsObject,
|
|
10229
|
+
metadata?: ResponseMetadata.AsObject,
|
|
10230
|
+
}
|
|
10231
|
+
|
|
10232
|
+
export enum ResultCase {
|
|
10233
|
+
RESULT_NOT_SET = 0,
|
|
10234
|
+
ADDRESS_BALANCE_UPDATE_ENTRIES = 1,
|
|
10235
|
+
PROOF = 2,
|
|
10236
|
+
}
|
|
10237
|
+
}
|
|
10238
|
+
|
|
10239
|
+
export enum VersionCase {
|
|
10240
|
+
VERSION_NOT_SET = 0,
|
|
10241
|
+
V0 = 1,
|
|
10242
|
+
}
|
|
10243
|
+
}
|
|
10244
|
+
|
|
10245
|
+
export class BlockHeightCreditEntry extends jspb.Message {
|
|
10246
|
+
getBlockHeight(): string;
|
|
10247
|
+
setBlockHeight(value: string): void;
|
|
10248
|
+
|
|
10249
|
+
getCredits(): string;
|
|
10250
|
+
setCredits(value: string): void;
|
|
10251
|
+
|
|
10252
|
+
serializeBinary(): Uint8Array;
|
|
10253
|
+
toObject(includeInstance?: boolean): BlockHeightCreditEntry.AsObject;
|
|
10254
|
+
static toObject(includeInstance: boolean, msg: BlockHeightCreditEntry): BlockHeightCreditEntry.AsObject;
|
|
10255
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10256
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10257
|
+
static serializeBinaryToWriter(message: BlockHeightCreditEntry, writer: jspb.BinaryWriter): void;
|
|
10258
|
+
static deserializeBinary(bytes: Uint8Array): BlockHeightCreditEntry;
|
|
10259
|
+
static deserializeBinaryFromReader(message: BlockHeightCreditEntry, reader: jspb.BinaryReader): BlockHeightCreditEntry;
|
|
10260
|
+
}
|
|
10261
|
+
|
|
10262
|
+
export namespace BlockHeightCreditEntry {
|
|
10263
|
+
export type AsObject = {
|
|
10264
|
+
blockHeight: string,
|
|
10265
|
+
credits: string,
|
|
10266
|
+
}
|
|
10267
|
+
}
|
|
10268
|
+
|
|
10269
|
+
export class CompactedAddressBalanceChange extends jspb.Message {
|
|
10270
|
+
getAddress(): Uint8Array | string;
|
|
10271
|
+
getAddress_asU8(): Uint8Array;
|
|
10272
|
+
getAddress_asB64(): string;
|
|
10273
|
+
setAddress(value: Uint8Array | string): void;
|
|
10274
|
+
|
|
10275
|
+
hasSetCredits(): boolean;
|
|
10276
|
+
clearSetCredits(): void;
|
|
10277
|
+
getSetCredits(): string;
|
|
10278
|
+
setSetCredits(value: string): void;
|
|
10279
|
+
|
|
10280
|
+
hasAddToCreditsOperations(): boolean;
|
|
10281
|
+
clearAddToCreditsOperations(): void;
|
|
10282
|
+
getAddToCreditsOperations(): AddToCreditsOperations | undefined;
|
|
10283
|
+
setAddToCreditsOperations(value?: AddToCreditsOperations): void;
|
|
10284
|
+
|
|
10285
|
+
getOperationCase(): CompactedAddressBalanceChange.OperationCase;
|
|
10286
|
+
serializeBinary(): Uint8Array;
|
|
10287
|
+
toObject(includeInstance?: boolean): CompactedAddressBalanceChange.AsObject;
|
|
10288
|
+
static toObject(includeInstance: boolean, msg: CompactedAddressBalanceChange): CompactedAddressBalanceChange.AsObject;
|
|
10289
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10290
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10291
|
+
static serializeBinaryToWriter(message: CompactedAddressBalanceChange, writer: jspb.BinaryWriter): void;
|
|
10292
|
+
static deserializeBinary(bytes: Uint8Array): CompactedAddressBalanceChange;
|
|
10293
|
+
static deserializeBinaryFromReader(message: CompactedAddressBalanceChange, reader: jspb.BinaryReader): CompactedAddressBalanceChange;
|
|
10294
|
+
}
|
|
10295
|
+
|
|
10296
|
+
export namespace CompactedAddressBalanceChange {
|
|
10297
|
+
export type AsObject = {
|
|
10298
|
+
address: Uint8Array | string,
|
|
10299
|
+
setCredits: string,
|
|
10300
|
+
addToCreditsOperations?: AddToCreditsOperations.AsObject,
|
|
10301
|
+
}
|
|
10302
|
+
|
|
10303
|
+
export enum OperationCase {
|
|
10304
|
+
OPERATION_NOT_SET = 0,
|
|
10305
|
+
SET_CREDITS = 2,
|
|
10306
|
+
ADD_TO_CREDITS_OPERATIONS = 3,
|
|
10307
|
+
}
|
|
10308
|
+
}
|
|
10309
|
+
|
|
10310
|
+
export class AddToCreditsOperations extends jspb.Message {
|
|
10311
|
+
clearEntriesList(): void;
|
|
10312
|
+
getEntriesList(): Array<BlockHeightCreditEntry>;
|
|
10313
|
+
setEntriesList(value: Array<BlockHeightCreditEntry>): void;
|
|
10314
|
+
addEntries(value?: BlockHeightCreditEntry, index?: number): BlockHeightCreditEntry;
|
|
10315
|
+
|
|
10316
|
+
serializeBinary(): Uint8Array;
|
|
10317
|
+
toObject(includeInstance?: boolean): AddToCreditsOperations.AsObject;
|
|
10318
|
+
static toObject(includeInstance: boolean, msg: AddToCreditsOperations): AddToCreditsOperations.AsObject;
|
|
10319
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10320
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10321
|
+
static serializeBinaryToWriter(message: AddToCreditsOperations, writer: jspb.BinaryWriter): void;
|
|
10322
|
+
static deserializeBinary(bytes: Uint8Array): AddToCreditsOperations;
|
|
10323
|
+
static deserializeBinaryFromReader(message: AddToCreditsOperations, reader: jspb.BinaryReader): AddToCreditsOperations;
|
|
10324
|
+
}
|
|
10325
|
+
|
|
10326
|
+
export namespace AddToCreditsOperations {
|
|
10327
|
+
export type AsObject = {
|
|
10328
|
+
entriesList: Array<BlockHeightCreditEntry.AsObject>,
|
|
10329
|
+
}
|
|
10330
|
+
}
|
|
10331
|
+
|
|
10332
|
+
export class CompactedBlockAddressBalanceChanges extends jspb.Message {
|
|
10333
|
+
getStartBlockHeight(): string;
|
|
10334
|
+
setStartBlockHeight(value: string): void;
|
|
10335
|
+
|
|
10336
|
+
getEndBlockHeight(): string;
|
|
10337
|
+
setEndBlockHeight(value: string): void;
|
|
10338
|
+
|
|
10339
|
+
clearChangesList(): void;
|
|
10340
|
+
getChangesList(): Array<CompactedAddressBalanceChange>;
|
|
10341
|
+
setChangesList(value: Array<CompactedAddressBalanceChange>): void;
|
|
10342
|
+
addChanges(value?: CompactedAddressBalanceChange, index?: number): CompactedAddressBalanceChange;
|
|
10343
|
+
|
|
10344
|
+
serializeBinary(): Uint8Array;
|
|
10345
|
+
toObject(includeInstance?: boolean): CompactedBlockAddressBalanceChanges.AsObject;
|
|
10346
|
+
static toObject(includeInstance: boolean, msg: CompactedBlockAddressBalanceChanges): CompactedBlockAddressBalanceChanges.AsObject;
|
|
10347
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10348
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10349
|
+
static serializeBinaryToWriter(message: CompactedBlockAddressBalanceChanges, writer: jspb.BinaryWriter): void;
|
|
10350
|
+
static deserializeBinary(bytes: Uint8Array): CompactedBlockAddressBalanceChanges;
|
|
10351
|
+
static deserializeBinaryFromReader(message: CompactedBlockAddressBalanceChanges, reader: jspb.BinaryReader): CompactedBlockAddressBalanceChanges;
|
|
10352
|
+
}
|
|
10353
|
+
|
|
10354
|
+
export namespace CompactedBlockAddressBalanceChanges {
|
|
10355
|
+
export type AsObject = {
|
|
10356
|
+
startBlockHeight: string,
|
|
10357
|
+
endBlockHeight: string,
|
|
10358
|
+
changesList: Array<CompactedAddressBalanceChange.AsObject>,
|
|
10359
|
+
}
|
|
10360
|
+
}
|
|
10361
|
+
|
|
10362
|
+
export class CompactedAddressBalanceUpdateEntries extends jspb.Message {
|
|
10363
|
+
clearCompactedBlockChangesList(): void;
|
|
10364
|
+
getCompactedBlockChangesList(): Array<CompactedBlockAddressBalanceChanges>;
|
|
10365
|
+
setCompactedBlockChangesList(value: Array<CompactedBlockAddressBalanceChanges>): void;
|
|
10366
|
+
addCompactedBlockChanges(value?: CompactedBlockAddressBalanceChanges, index?: number): CompactedBlockAddressBalanceChanges;
|
|
10367
|
+
|
|
10368
|
+
serializeBinary(): Uint8Array;
|
|
10369
|
+
toObject(includeInstance?: boolean): CompactedAddressBalanceUpdateEntries.AsObject;
|
|
10370
|
+
static toObject(includeInstance: boolean, msg: CompactedAddressBalanceUpdateEntries): CompactedAddressBalanceUpdateEntries.AsObject;
|
|
10371
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10372
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10373
|
+
static serializeBinaryToWriter(message: CompactedAddressBalanceUpdateEntries, writer: jspb.BinaryWriter): void;
|
|
10374
|
+
static deserializeBinary(bytes: Uint8Array): CompactedAddressBalanceUpdateEntries;
|
|
10375
|
+
static deserializeBinaryFromReader(message: CompactedAddressBalanceUpdateEntries, reader: jspb.BinaryReader): CompactedAddressBalanceUpdateEntries;
|
|
10376
|
+
}
|
|
10377
|
+
|
|
10378
|
+
export namespace CompactedAddressBalanceUpdateEntries {
|
|
10379
|
+
export type AsObject = {
|
|
10380
|
+
compactedBlockChangesList: Array<CompactedBlockAddressBalanceChanges.AsObject>,
|
|
10381
|
+
}
|
|
10382
|
+
}
|
|
10383
|
+
|
|
10384
|
+
export class GetRecentCompactedAddressBalanceChangesRequest extends jspb.Message {
|
|
10385
|
+
hasV0(): boolean;
|
|
10386
|
+
clearV0(): void;
|
|
10387
|
+
getV0(): GetRecentCompactedAddressBalanceChangesRequest.GetRecentCompactedAddressBalanceChangesRequestV0 | undefined;
|
|
10388
|
+
setV0(value?: GetRecentCompactedAddressBalanceChangesRequest.GetRecentCompactedAddressBalanceChangesRequestV0): void;
|
|
10389
|
+
|
|
10390
|
+
getVersionCase(): GetRecentCompactedAddressBalanceChangesRequest.VersionCase;
|
|
10391
|
+
serializeBinary(): Uint8Array;
|
|
10392
|
+
toObject(includeInstance?: boolean): GetRecentCompactedAddressBalanceChangesRequest.AsObject;
|
|
10393
|
+
static toObject(includeInstance: boolean, msg: GetRecentCompactedAddressBalanceChangesRequest): GetRecentCompactedAddressBalanceChangesRequest.AsObject;
|
|
10394
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10395
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10396
|
+
static serializeBinaryToWriter(message: GetRecentCompactedAddressBalanceChangesRequest, writer: jspb.BinaryWriter): void;
|
|
10397
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentCompactedAddressBalanceChangesRequest;
|
|
10398
|
+
static deserializeBinaryFromReader(message: GetRecentCompactedAddressBalanceChangesRequest, reader: jspb.BinaryReader): GetRecentCompactedAddressBalanceChangesRequest;
|
|
10399
|
+
}
|
|
10400
|
+
|
|
10401
|
+
export namespace GetRecentCompactedAddressBalanceChangesRequest {
|
|
10402
|
+
export type AsObject = {
|
|
10403
|
+
v0?: GetRecentCompactedAddressBalanceChangesRequest.GetRecentCompactedAddressBalanceChangesRequestV0.AsObject,
|
|
10404
|
+
}
|
|
10405
|
+
|
|
10406
|
+
export class GetRecentCompactedAddressBalanceChangesRequestV0 extends jspb.Message {
|
|
10407
|
+
getStartBlockHeight(): string;
|
|
10408
|
+
setStartBlockHeight(value: string): void;
|
|
10409
|
+
|
|
10410
|
+
getProve(): boolean;
|
|
10411
|
+
setProve(value: boolean): void;
|
|
10412
|
+
|
|
10413
|
+
serializeBinary(): Uint8Array;
|
|
10414
|
+
toObject(includeInstance?: boolean): GetRecentCompactedAddressBalanceChangesRequestV0.AsObject;
|
|
10415
|
+
static toObject(includeInstance: boolean, msg: GetRecentCompactedAddressBalanceChangesRequestV0): GetRecentCompactedAddressBalanceChangesRequestV0.AsObject;
|
|
10416
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10417
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10418
|
+
static serializeBinaryToWriter(message: GetRecentCompactedAddressBalanceChangesRequestV0, writer: jspb.BinaryWriter): void;
|
|
10419
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentCompactedAddressBalanceChangesRequestV0;
|
|
10420
|
+
static deserializeBinaryFromReader(message: GetRecentCompactedAddressBalanceChangesRequestV0, reader: jspb.BinaryReader): GetRecentCompactedAddressBalanceChangesRequestV0;
|
|
10421
|
+
}
|
|
10422
|
+
|
|
10423
|
+
export namespace GetRecentCompactedAddressBalanceChangesRequestV0 {
|
|
10424
|
+
export type AsObject = {
|
|
10425
|
+
startBlockHeight: string,
|
|
10426
|
+
prove: boolean,
|
|
10427
|
+
}
|
|
10428
|
+
}
|
|
10429
|
+
|
|
10430
|
+
export enum VersionCase {
|
|
10431
|
+
VERSION_NOT_SET = 0,
|
|
10432
|
+
V0 = 1,
|
|
10433
|
+
}
|
|
10434
|
+
}
|
|
10435
|
+
|
|
10436
|
+
export class GetRecentCompactedAddressBalanceChangesResponse extends jspb.Message {
|
|
10437
|
+
hasV0(): boolean;
|
|
10438
|
+
clearV0(): void;
|
|
10439
|
+
getV0(): GetRecentCompactedAddressBalanceChangesResponse.GetRecentCompactedAddressBalanceChangesResponseV0 | undefined;
|
|
10440
|
+
setV0(value?: GetRecentCompactedAddressBalanceChangesResponse.GetRecentCompactedAddressBalanceChangesResponseV0): void;
|
|
10441
|
+
|
|
10442
|
+
getVersionCase(): GetRecentCompactedAddressBalanceChangesResponse.VersionCase;
|
|
10443
|
+
serializeBinary(): Uint8Array;
|
|
10444
|
+
toObject(includeInstance?: boolean): GetRecentCompactedAddressBalanceChangesResponse.AsObject;
|
|
10445
|
+
static toObject(includeInstance: boolean, msg: GetRecentCompactedAddressBalanceChangesResponse): GetRecentCompactedAddressBalanceChangesResponse.AsObject;
|
|
10446
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10447
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10448
|
+
static serializeBinaryToWriter(message: GetRecentCompactedAddressBalanceChangesResponse, writer: jspb.BinaryWriter): void;
|
|
10449
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentCompactedAddressBalanceChangesResponse;
|
|
10450
|
+
static deserializeBinaryFromReader(message: GetRecentCompactedAddressBalanceChangesResponse, reader: jspb.BinaryReader): GetRecentCompactedAddressBalanceChangesResponse;
|
|
10451
|
+
}
|
|
10452
|
+
|
|
10453
|
+
export namespace GetRecentCompactedAddressBalanceChangesResponse {
|
|
10454
|
+
export type AsObject = {
|
|
10455
|
+
v0?: GetRecentCompactedAddressBalanceChangesResponse.GetRecentCompactedAddressBalanceChangesResponseV0.AsObject,
|
|
10456
|
+
}
|
|
10457
|
+
|
|
10458
|
+
export class GetRecentCompactedAddressBalanceChangesResponseV0 extends jspb.Message {
|
|
10459
|
+
hasCompactedAddressBalanceUpdateEntries(): boolean;
|
|
10460
|
+
clearCompactedAddressBalanceUpdateEntries(): void;
|
|
10461
|
+
getCompactedAddressBalanceUpdateEntries(): CompactedAddressBalanceUpdateEntries | undefined;
|
|
10462
|
+
setCompactedAddressBalanceUpdateEntries(value?: CompactedAddressBalanceUpdateEntries): void;
|
|
10463
|
+
|
|
10464
|
+
hasProof(): boolean;
|
|
10465
|
+
clearProof(): void;
|
|
10466
|
+
getProof(): Proof | undefined;
|
|
10467
|
+
setProof(value?: Proof): void;
|
|
10468
|
+
|
|
10469
|
+
hasMetadata(): boolean;
|
|
10470
|
+
clearMetadata(): void;
|
|
10471
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
10472
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
10473
|
+
|
|
10474
|
+
getResultCase(): GetRecentCompactedAddressBalanceChangesResponseV0.ResultCase;
|
|
10475
|
+
serializeBinary(): Uint8Array;
|
|
10476
|
+
toObject(includeInstance?: boolean): GetRecentCompactedAddressBalanceChangesResponseV0.AsObject;
|
|
10477
|
+
static toObject(includeInstance: boolean, msg: GetRecentCompactedAddressBalanceChangesResponseV0): GetRecentCompactedAddressBalanceChangesResponseV0.AsObject;
|
|
10478
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
10479
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
10480
|
+
static serializeBinaryToWriter(message: GetRecentCompactedAddressBalanceChangesResponseV0, writer: jspb.BinaryWriter): void;
|
|
10481
|
+
static deserializeBinary(bytes: Uint8Array): GetRecentCompactedAddressBalanceChangesResponseV0;
|
|
10482
|
+
static deserializeBinaryFromReader(message: GetRecentCompactedAddressBalanceChangesResponseV0, reader: jspb.BinaryReader): GetRecentCompactedAddressBalanceChangesResponseV0;
|
|
10483
|
+
}
|
|
10484
|
+
|
|
10485
|
+
export namespace GetRecentCompactedAddressBalanceChangesResponseV0 {
|
|
10486
|
+
export type AsObject = {
|
|
10487
|
+
compactedAddressBalanceUpdateEntries?: CompactedAddressBalanceUpdateEntries.AsObject,
|
|
10488
|
+
proof?: Proof.AsObject,
|
|
10489
|
+
metadata?: ResponseMetadata.AsObject,
|
|
10490
|
+
}
|
|
10491
|
+
|
|
10492
|
+
export enum ResultCase {
|
|
10493
|
+
RESULT_NOT_SET = 0,
|
|
10494
|
+
COMPACTED_ADDRESS_BALANCE_UPDATE_ENTRIES = 1,
|
|
10495
|
+
PROOF = 2,
|
|
10496
|
+
}
|
|
10497
|
+
}
|
|
10498
|
+
|
|
10499
|
+
export enum VersionCase {
|
|
10500
|
+
VERSION_NOT_SET = 0,
|
|
10501
|
+
V0 = 1,
|
|
10502
|
+
}
|
|
10503
|
+
}
|
|
10504
|
+
|
|
9505
10505
|
export interface KeyPurposeMap {
|
|
9506
10506
|
AUTHENTICATION: 0;
|
|
9507
10507
|
ENCRYPTION: 1;
|