@dashevo/dapi-grpc 1.8.0 → 2.0.0-rc.1
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/.eslintrc +3 -0
- package/Cargo.toml +35 -15
- package/build.rs +117 -22
- package/clients/drive/v0/nodejs/DrivePromiseClient.js +111 -0
- package/clients/drive/v0/nodejs/drive_pbjs.js +72524 -0
- package/clients/drive/v0/nodejs/drive_protoc.js +420 -0
- package/clients/drive/v0/web/drive_pb.d.ts +56 -0
- package/clients/drive/v0/web/drive_pb.js +420 -0
- package/clients/drive/v0/web/drive_pb_service.d.ts +63 -0
- package/clients/drive/v0/web/drive_pb_service.js +61 -0
- package/clients/platform/v0/nodejs/PlatformPromiseClient.js +0 -39
- package/clients/platform/v0/nodejs/platform_pbjs.js +30162 -7538
- package/clients/platform/v0/nodejs/platform_protoc.js +38679 -16741
- package/clients/platform/v0/web/platform_pb.d.ts +3337 -461
- package/clients/platform/v0/web/platform_pb.js +38679 -16741
- package/clients/platform/v0/web/platform_pb_service.d.ts +247 -19
- package/clients/platform/v0/web/platform_pb_service.js +501 -21
- package/lib/getDriveDefinition.js +18 -0
- package/node.js +19 -0
- package/package.json +3 -3
- package/protos/drive/v0/drive.proto +18 -0
- package/protos/platform/v0/platform.proto +888 -334
- package/scripts/build.sh +55 -0
- package/scripts/patch-protobuf-js.sh +3 -2
- package/src/lib.rs +42 -10
|
@@ -55,8 +55,8 @@ export namespace Proof {
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
export class ResponseMetadata extends jspb.Message {
|
|
58
|
-
getHeight():
|
|
59
|
-
setHeight(value:
|
|
58
|
+
getHeight(): string;
|
|
59
|
+
setHeight(value: string): void;
|
|
60
60
|
|
|
61
61
|
getCoreChainLockedHeight(): number;
|
|
62
62
|
setCoreChainLockedHeight(value: number): void;
|
|
@@ -64,8 +64,8 @@ export class ResponseMetadata extends jspb.Message {
|
|
|
64
64
|
getEpoch(): number;
|
|
65
65
|
setEpoch(value: number): void;
|
|
66
66
|
|
|
67
|
-
getTimeMs():
|
|
68
|
-
setTimeMs(value:
|
|
67
|
+
getTimeMs(): string;
|
|
68
|
+
setTimeMs(value: string): void;
|
|
69
69
|
|
|
70
70
|
getProtocolVersion(): number;
|
|
71
71
|
setProtocolVersion(value: number): void;
|
|
@@ -85,10 +85,10 @@ export class ResponseMetadata extends jspb.Message {
|
|
|
85
85
|
|
|
86
86
|
export namespace ResponseMetadata {
|
|
87
87
|
export type AsObject = {
|
|
88
|
-
height:
|
|
88
|
+
height: string,
|
|
89
89
|
coreChainLockedHeight: number,
|
|
90
90
|
epoch: number,
|
|
91
|
-
timeMs:
|
|
91
|
+
timeMs: string,
|
|
92
92
|
protocolVersion: number,
|
|
93
93
|
chainId: string,
|
|
94
94
|
}
|
|
@@ -534,8 +534,8 @@ export namespace GetIdentityNonceResponse {
|
|
|
534
534
|
export class GetIdentityNonceResponseV0 extends jspb.Message {
|
|
535
535
|
hasIdentityNonce(): boolean;
|
|
536
536
|
clearIdentityNonce(): void;
|
|
537
|
-
getIdentityNonce():
|
|
538
|
-
setIdentityNonce(value:
|
|
537
|
+
getIdentityNonce(): string;
|
|
538
|
+
setIdentityNonce(value: string): void;
|
|
539
539
|
|
|
540
540
|
hasProof(): boolean;
|
|
541
541
|
clearProof(): void;
|
|
@@ -560,7 +560,7 @@ export namespace GetIdentityNonceResponse {
|
|
|
560
560
|
|
|
561
561
|
export namespace GetIdentityNonceResponseV0 {
|
|
562
562
|
export type AsObject = {
|
|
563
|
-
identityNonce:
|
|
563
|
+
identityNonce: string,
|
|
564
564
|
proof?: Proof.AsObject,
|
|
565
565
|
metadata?: ResponseMetadata.AsObject,
|
|
566
566
|
}
|
|
@@ -603,8 +603,8 @@ export namespace GetIdentityContractNonceResponse {
|
|
|
603
603
|
export class GetIdentityContractNonceResponseV0 extends jspb.Message {
|
|
604
604
|
hasIdentityContractNonce(): boolean;
|
|
605
605
|
clearIdentityContractNonce(): void;
|
|
606
|
-
getIdentityContractNonce():
|
|
607
|
-
setIdentityContractNonce(value:
|
|
606
|
+
getIdentityContractNonce(): string;
|
|
607
|
+
setIdentityContractNonce(value: string): void;
|
|
608
608
|
|
|
609
609
|
hasProof(): boolean;
|
|
610
610
|
clearProof(): void;
|
|
@@ -629,7 +629,7 @@ export namespace GetIdentityContractNonceResponse {
|
|
|
629
629
|
|
|
630
630
|
export namespace GetIdentityContractNonceResponseV0 {
|
|
631
631
|
export type AsObject = {
|
|
632
|
-
identityContractNonce:
|
|
632
|
+
identityContractNonce: string,
|
|
633
633
|
proof?: Proof.AsObject,
|
|
634
634
|
metadata?: ResponseMetadata.AsObject,
|
|
635
635
|
}
|
|
@@ -672,8 +672,8 @@ export namespace GetIdentityBalanceResponse {
|
|
|
672
672
|
export class GetIdentityBalanceResponseV0 extends jspb.Message {
|
|
673
673
|
hasBalance(): boolean;
|
|
674
674
|
clearBalance(): void;
|
|
675
|
-
getBalance():
|
|
676
|
-
setBalance(value:
|
|
675
|
+
getBalance(): string;
|
|
676
|
+
setBalance(value: string): void;
|
|
677
677
|
|
|
678
678
|
hasProof(): boolean;
|
|
679
679
|
clearProof(): void;
|
|
@@ -698,7 +698,7 @@ export namespace GetIdentityBalanceResponse {
|
|
|
698
698
|
|
|
699
699
|
export namespace GetIdentityBalanceResponseV0 {
|
|
700
700
|
export type AsObject = {
|
|
701
|
-
balance:
|
|
701
|
+
balance: string,
|
|
702
702
|
proof?: Proof.AsObject,
|
|
703
703
|
metadata?: ResponseMetadata.AsObject,
|
|
704
704
|
}
|
|
@@ -773,11 +773,11 @@ export namespace GetIdentityBalanceAndRevisionResponse {
|
|
|
773
773
|
}
|
|
774
774
|
|
|
775
775
|
export class BalanceAndRevision extends jspb.Message {
|
|
776
|
-
getBalance():
|
|
777
|
-
setBalance(value:
|
|
776
|
+
getBalance(): string;
|
|
777
|
+
setBalance(value: string): void;
|
|
778
778
|
|
|
779
|
-
getRevision():
|
|
780
|
-
setRevision(value:
|
|
779
|
+
getRevision(): string;
|
|
780
|
+
setRevision(value: string): void;
|
|
781
781
|
|
|
782
782
|
serializeBinary(): Uint8Array;
|
|
783
783
|
toObject(includeInstance?: boolean): BalanceAndRevision.AsObject;
|
|
@@ -791,8 +791,8 @@ export namespace GetIdentityBalanceAndRevisionResponse {
|
|
|
791
791
|
|
|
792
792
|
export namespace BalanceAndRevision {
|
|
793
793
|
export type AsObject = {
|
|
794
|
-
balance:
|
|
795
|
-
revision:
|
|
794
|
+
balance: string,
|
|
795
|
+
revision: string,
|
|
796
796
|
}
|
|
797
797
|
}
|
|
798
798
|
|
|
@@ -1444,8 +1444,8 @@ export namespace GetEvonodesProposedEpochBlocksResponse {
|
|
|
1444
1444
|
getProTxHash_asB64(): string;
|
|
1445
1445
|
setProTxHash(value: Uint8Array | string): void;
|
|
1446
1446
|
|
|
1447
|
-
getCount():
|
|
1448
|
-
setCount(value:
|
|
1447
|
+
getCount(): string;
|
|
1448
|
+
setCount(value: string): void;
|
|
1449
1449
|
|
|
1450
1450
|
serializeBinary(): Uint8Array;
|
|
1451
1451
|
toObject(includeInstance?: boolean): EvonodeProposedBlocks.AsObject;
|
|
@@ -1460,7 +1460,7 @@ export namespace GetEvonodesProposedEpochBlocksResponse {
|
|
|
1460
1460
|
export namespace EvonodeProposedBlocks {
|
|
1461
1461
|
export type AsObject = {
|
|
1462
1462
|
proTxHash: Uint8Array | string,
|
|
1463
|
-
count:
|
|
1463
|
+
count: string,
|
|
1464
1464
|
}
|
|
1465
1465
|
}
|
|
1466
1466
|
|
|
@@ -1702,8 +1702,8 @@ export namespace GetIdentitiesBalancesResponse {
|
|
|
1702
1702
|
|
|
1703
1703
|
hasBalance(): boolean;
|
|
1704
1704
|
clearBalance(): void;
|
|
1705
|
-
getBalance():
|
|
1706
|
-
setBalance(value:
|
|
1705
|
+
getBalance(): string;
|
|
1706
|
+
setBalance(value: string): void;
|
|
1707
1707
|
|
|
1708
1708
|
serializeBinary(): Uint8Array;
|
|
1709
1709
|
toObject(includeInstance?: boolean): IdentityBalance.AsObject;
|
|
@@ -1718,7 +1718,7 @@ export namespace GetIdentitiesBalancesResponse {
|
|
|
1718
1718
|
export namespace IdentityBalance {
|
|
1719
1719
|
export type AsObject = {
|
|
1720
1720
|
identityId: Uint8Array | string,
|
|
1721
|
-
balance:
|
|
1721
|
+
balance: string,
|
|
1722
1722
|
}
|
|
1723
1723
|
}
|
|
1724
1724
|
|
|
@@ -1757,313 +1757,6 @@ export namespace GetIdentitiesBalancesResponse {
|
|
|
1757
1757
|
}
|
|
1758
1758
|
}
|
|
1759
1759
|
|
|
1760
|
-
export class GetProofsRequest extends jspb.Message {
|
|
1761
|
-
hasV0(): boolean;
|
|
1762
|
-
clearV0(): void;
|
|
1763
|
-
getV0(): GetProofsRequest.GetProofsRequestV0 | undefined;
|
|
1764
|
-
setV0(value?: GetProofsRequest.GetProofsRequestV0): void;
|
|
1765
|
-
|
|
1766
|
-
getVersionCase(): GetProofsRequest.VersionCase;
|
|
1767
|
-
serializeBinary(): Uint8Array;
|
|
1768
|
-
toObject(includeInstance?: boolean): GetProofsRequest.AsObject;
|
|
1769
|
-
static toObject(includeInstance: boolean, msg: GetProofsRequest): GetProofsRequest.AsObject;
|
|
1770
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1771
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1772
|
-
static serializeBinaryToWriter(message: GetProofsRequest, writer: jspb.BinaryWriter): void;
|
|
1773
|
-
static deserializeBinary(bytes: Uint8Array): GetProofsRequest;
|
|
1774
|
-
static deserializeBinaryFromReader(message: GetProofsRequest, reader: jspb.BinaryReader): GetProofsRequest;
|
|
1775
|
-
}
|
|
1776
|
-
|
|
1777
|
-
export namespace GetProofsRequest {
|
|
1778
|
-
export type AsObject = {
|
|
1779
|
-
v0?: GetProofsRequest.GetProofsRequestV0.AsObject,
|
|
1780
|
-
}
|
|
1781
|
-
|
|
1782
|
-
export class GetProofsRequestV0 extends jspb.Message {
|
|
1783
|
-
clearIdentitiesList(): void;
|
|
1784
|
-
getIdentitiesList(): Array<GetProofsRequest.GetProofsRequestV0.IdentityRequest>;
|
|
1785
|
-
setIdentitiesList(value: Array<GetProofsRequest.GetProofsRequestV0.IdentityRequest>): void;
|
|
1786
|
-
addIdentities(value?: GetProofsRequest.GetProofsRequestV0.IdentityRequest, index?: number): GetProofsRequest.GetProofsRequestV0.IdentityRequest;
|
|
1787
|
-
|
|
1788
|
-
clearContractsList(): void;
|
|
1789
|
-
getContractsList(): Array<GetProofsRequest.GetProofsRequestV0.ContractRequest>;
|
|
1790
|
-
setContractsList(value: Array<GetProofsRequest.GetProofsRequestV0.ContractRequest>): void;
|
|
1791
|
-
addContracts(value?: GetProofsRequest.GetProofsRequestV0.ContractRequest, index?: number): GetProofsRequest.GetProofsRequestV0.ContractRequest;
|
|
1792
|
-
|
|
1793
|
-
clearDocumentsList(): void;
|
|
1794
|
-
getDocumentsList(): Array<GetProofsRequest.GetProofsRequestV0.DocumentRequest>;
|
|
1795
|
-
setDocumentsList(value: Array<GetProofsRequest.GetProofsRequestV0.DocumentRequest>): void;
|
|
1796
|
-
addDocuments(value?: GetProofsRequest.GetProofsRequestV0.DocumentRequest, index?: number): GetProofsRequest.GetProofsRequestV0.DocumentRequest;
|
|
1797
|
-
|
|
1798
|
-
clearVotesList(): void;
|
|
1799
|
-
getVotesList(): Array<GetProofsRequest.GetProofsRequestV0.VoteStatusRequest>;
|
|
1800
|
-
setVotesList(value: Array<GetProofsRequest.GetProofsRequestV0.VoteStatusRequest>): void;
|
|
1801
|
-
addVotes(value?: GetProofsRequest.GetProofsRequestV0.VoteStatusRequest, index?: number): GetProofsRequest.GetProofsRequestV0.VoteStatusRequest;
|
|
1802
|
-
|
|
1803
|
-
serializeBinary(): Uint8Array;
|
|
1804
|
-
toObject(includeInstance?: boolean): GetProofsRequestV0.AsObject;
|
|
1805
|
-
static toObject(includeInstance: boolean, msg: GetProofsRequestV0): GetProofsRequestV0.AsObject;
|
|
1806
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1807
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1808
|
-
static serializeBinaryToWriter(message: GetProofsRequestV0, writer: jspb.BinaryWriter): void;
|
|
1809
|
-
static deserializeBinary(bytes: Uint8Array): GetProofsRequestV0;
|
|
1810
|
-
static deserializeBinaryFromReader(message: GetProofsRequestV0, reader: jspb.BinaryReader): GetProofsRequestV0;
|
|
1811
|
-
}
|
|
1812
|
-
|
|
1813
|
-
export namespace GetProofsRequestV0 {
|
|
1814
|
-
export type AsObject = {
|
|
1815
|
-
identitiesList: Array<GetProofsRequest.GetProofsRequestV0.IdentityRequest.AsObject>,
|
|
1816
|
-
contractsList: Array<GetProofsRequest.GetProofsRequestV0.ContractRequest.AsObject>,
|
|
1817
|
-
documentsList: Array<GetProofsRequest.GetProofsRequestV0.DocumentRequest.AsObject>,
|
|
1818
|
-
votesList: Array<GetProofsRequest.GetProofsRequestV0.VoteStatusRequest.AsObject>,
|
|
1819
|
-
}
|
|
1820
|
-
|
|
1821
|
-
export class DocumentRequest extends jspb.Message {
|
|
1822
|
-
getContractId(): Uint8Array | string;
|
|
1823
|
-
getContractId_asU8(): Uint8Array;
|
|
1824
|
-
getContractId_asB64(): string;
|
|
1825
|
-
setContractId(value: Uint8Array | string): void;
|
|
1826
|
-
|
|
1827
|
-
getDocumentType(): string;
|
|
1828
|
-
setDocumentType(value: string): void;
|
|
1829
|
-
|
|
1830
|
-
getDocumentTypeKeepsHistory(): boolean;
|
|
1831
|
-
setDocumentTypeKeepsHistory(value: boolean): void;
|
|
1832
|
-
|
|
1833
|
-
getDocumentId(): Uint8Array | string;
|
|
1834
|
-
getDocumentId_asU8(): Uint8Array;
|
|
1835
|
-
getDocumentId_asB64(): string;
|
|
1836
|
-
setDocumentId(value: Uint8Array | string): void;
|
|
1837
|
-
|
|
1838
|
-
getDocumentContestedStatus(): GetProofsRequest.GetProofsRequestV0.DocumentRequest.DocumentContestedStatusMap[keyof GetProofsRequest.GetProofsRequestV0.DocumentRequest.DocumentContestedStatusMap];
|
|
1839
|
-
setDocumentContestedStatus(value: GetProofsRequest.GetProofsRequestV0.DocumentRequest.DocumentContestedStatusMap[keyof GetProofsRequest.GetProofsRequestV0.DocumentRequest.DocumentContestedStatusMap]): void;
|
|
1840
|
-
|
|
1841
|
-
serializeBinary(): Uint8Array;
|
|
1842
|
-
toObject(includeInstance?: boolean): DocumentRequest.AsObject;
|
|
1843
|
-
static toObject(includeInstance: boolean, msg: DocumentRequest): DocumentRequest.AsObject;
|
|
1844
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1845
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1846
|
-
static serializeBinaryToWriter(message: DocumentRequest, writer: jspb.BinaryWriter): void;
|
|
1847
|
-
static deserializeBinary(bytes: Uint8Array): DocumentRequest;
|
|
1848
|
-
static deserializeBinaryFromReader(message: DocumentRequest, reader: jspb.BinaryReader): DocumentRequest;
|
|
1849
|
-
}
|
|
1850
|
-
|
|
1851
|
-
export namespace DocumentRequest {
|
|
1852
|
-
export type AsObject = {
|
|
1853
|
-
contractId: Uint8Array | string,
|
|
1854
|
-
documentType: string,
|
|
1855
|
-
documentTypeKeepsHistory: boolean,
|
|
1856
|
-
documentId: Uint8Array | string,
|
|
1857
|
-
documentContestedStatus: GetProofsRequest.GetProofsRequestV0.DocumentRequest.DocumentContestedStatusMap[keyof GetProofsRequest.GetProofsRequestV0.DocumentRequest.DocumentContestedStatusMap],
|
|
1858
|
-
}
|
|
1859
|
-
|
|
1860
|
-
export interface DocumentContestedStatusMap {
|
|
1861
|
-
NOT_CONTESTED: 0;
|
|
1862
|
-
MAYBE_CONTESTED: 1;
|
|
1863
|
-
CONTESTED: 2;
|
|
1864
|
-
}
|
|
1865
|
-
|
|
1866
|
-
export const DocumentContestedStatus: DocumentContestedStatusMap;
|
|
1867
|
-
}
|
|
1868
|
-
|
|
1869
|
-
export class IdentityRequest extends jspb.Message {
|
|
1870
|
-
getIdentityId(): Uint8Array | string;
|
|
1871
|
-
getIdentityId_asU8(): Uint8Array;
|
|
1872
|
-
getIdentityId_asB64(): string;
|
|
1873
|
-
setIdentityId(value: Uint8Array | string): void;
|
|
1874
|
-
|
|
1875
|
-
getRequestType(): GetProofsRequest.GetProofsRequestV0.IdentityRequest.TypeMap[keyof GetProofsRequest.GetProofsRequestV0.IdentityRequest.TypeMap];
|
|
1876
|
-
setRequestType(value: GetProofsRequest.GetProofsRequestV0.IdentityRequest.TypeMap[keyof GetProofsRequest.GetProofsRequestV0.IdentityRequest.TypeMap]): void;
|
|
1877
|
-
|
|
1878
|
-
serializeBinary(): Uint8Array;
|
|
1879
|
-
toObject(includeInstance?: boolean): IdentityRequest.AsObject;
|
|
1880
|
-
static toObject(includeInstance: boolean, msg: IdentityRequest): IdentityRequest.AsObject;
|
|
1881
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1882
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1883
|
-
static serializeBinaryToWriter(message: IdentityRequest, writer: jspb.BinaryWriter): void;
|
|
1884
|
-
static deserializeBinary(bytes: Uint8Array): IdentityRequest;
|
|
1885
|
-
static deserializeBinaryFromReader(message: IdentityRequest, reader: jspb.BinaryReader): IdentityRequest;
|
|
1886
|
-
}
|
|
1887
|
-
|
|
1888
|
-
export namespace IdentityRequest {
|
|
1889
|
-
export type AsObject = {
|
|
1890
|
-
identityId: Uint8Array | string,
|
|
1891
|
-
requestType: GetProofsRequest.GetProofsRequestV0.IdentityRequest.TypeMap[keyof GetProofsRequest.GetProofsRequestV0.IdentityRequest.TypeMap],
|
|
1892
|
-
}
|
|
1893
|
-
|
|
1894
|
-
export interface TypeMap {
|
|
1895
|
-
FULL_IDENTITY: 0;
|
|
1896
|
-
BALANCE: 1;
|
|
1897
|
-
KEYS: 2;
|
|
1898
|
-
REVISION: 3;
|
|
1899
|
-
}
|
|
1900
|
-
|
|
1901
|
-
export const Type: TypeMap;
|
|
1902
|
-
}
|
|
1903
|
-
|
|
1904
|
-
export class ContractRequest extends jspb.Message {
|
|
1905
|
-
getContractId(): Uint8Array | string;
|
|
1906
|
-
getContractId_asU8(): Uint8Array;
|
|
1907
|
-
getContractId_asB64(): string;
|
|
1908
|
-
setContractId(value: Uint8Array | string): void;
|
|
1909
|
-
|
|
1910
|
-
serializeBinary(): Uint8Array;
|
|
1911
|
-
toObject(includeInstance?: boolean): ContractRequest.AsObject;
|
|
1912
|
-
static toObject(includeInstance: boolean, msg: ContractRequest): ContractRequest.AsObject;
|
|
1913
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1914
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1915
|
-
static serializeBinaryToWriter(message: ContractRequest, writer: jspb.BinaryWriter): void;
|
|
1916
|
-
static deserializeBinary(bytes: Uint8Array): ContractRequest;
|
|
1917
|
-
static deserializeBinaryFromReader(message: ContractRequest, reader: jspb.BinaryReader): ContractRequest;
|
|
1918
|
-
}
|
|
1919
|
-
|
|
1920
|
-
export namespace ContractRequest {
|
|
1921
|
-
export type AsObject = {
|
|
1922
|
-
contractId: Uint8Array | string,
|
|
1923
|
-
}
|
|
1924
|
-
}
|
|
1925
|
-
|
|
1926
|
-
export class VoteStatusRequest extends jspb.Message {
|
|
1927
|
-
hasContestedResourceVoteStatusRequest(): boolean;
|
|
1928
|
-
clearContestedResourceVoteStatusRequest(): void;
|
|
1929
|
-
getContestedResourceVoteStatusRequest(): GetProofsRequest.GetProofsRequestV0.VoteStatusRequest.ContestedResourceVoteStatusRequest | undefined;
|
|
1930
|
-
setContestedResourceVoteStatusRequest(value?: GetProofsRequest.GetProofsRequestV0.VoteStatusRequest.ContestedResourceVoteStatusRequest): void;
|
|
1931
|
-
|
|
1932
|
-
getRequestTypeCase(): VoteStatusRequest.RequestTypeCase;
|
|
1933
|
-
serializeBinary(): Uint8Array;
|
|
1934
|
-
toObject(includeInstance?: boolean): VoteStatusRequest.AsObject;
|
|
1935
|
-
static toObject(includeInstance: boolean, msg: VoteStatusRequest): VoteStatusRequest.AsObject;
|
|
1936
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1937
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1938
|
-
static serializeBinaryToWriter(message: VoteStatusRequest, writer: jspb.BinaryWriter): void;
|
|
1939
|
-
static deserializeBinary(bytes: Uint8Array): VoteStatusRequest;
|
|
1940
|
-
static deserializeBinaryFromReader(message: VoteStatusRequest, reader: jspb.BinaryReader): VoteStatusRequest;
|
|
1941
|
-
}
|
|
1942
|
-
|
|
1943
|
-
export namespace VoteStatusRequest {
|
|
1944
|
-
export type AsObject = {
|
|
1945
|
-
contestedResourceVoteStatusRequest?: GetProofsRequest.GetProofsRequestV0.VoteStatusRequest.ContestedResourceVoteStatusRequest.AsObject,
|
|
1946
|
-
}
|
|
1947
|
-
|
|
1948
|
-
export class ContestedResourceVoteStatusRequest extends jspb.Message {
|
|
1949
|
-
getContractId(): Uint8Array | string;
|
|
1950
|
-
getContractId_asU8(): Uint8Array;
|
|
1951
|
-
getContractId_asB64(): string;
|
|
1952
|
-
setContractId(value: Uint8Array | string): void;
|
|
1953
|
-
|
|
1954
|
-
getDocumentTypeName(): string;
|
|
1955
|
-
setDocumentTypeName(value: string): void;
|
|
1956
|
-
|
|
1957
|
-
getIndexName(): string;
|
|
1958
|
-
setIndexName(value: string): void;
|
|
1959
|
-
|
|
1960
|
-
clearIndexValuesList(): void;
|
|
1961
|
-
getIndexValuesList(): Array<Uint8Array | string>;
|
|
1962
|
-
getIndexValuesList_asU8(): Array<Uint8Array>;
|
|
1963
|
-
getIndexValuesList_asB64(): Array<string>;
|
|
1964
|
-
setIndexValuesList(value: Array<Uint8Array | string>): void;
|
|
1965
|
-
addIndexValues(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
1966
|
-
|
|
1967
|
-
getVoterIdentifier(): Uint8Array | string;
|
|
1968
|
-
getVoterIdentifier_asU8(): Uint8Array;
|
|
1969
|
-
getVoterIdentifier_asB64(): string;
|
|
1970
|
-
setVoterIdentifier(value: Uint8Array | string): void;
|
|
1971
|
-
|
|
1972
|
-
serializeBinary(): Uint8Array;
|
|
1973
|
-
toObject(includeInstance?: boolean): ContestedResourceVoteStatusRequest.AsObject;
|
|
1974
|
-
static toObject(includeInstance: boolean, msg: ContestedResourceVoteStatusRequest): ContestedResourceVoteStatusRequest.AsObject;
|
|
1975
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
1976
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
1977
|
-
static serializeBinaryToWriter(message: ContestedResourceVoteStatusRequest, writer: jspb.BinaryWriter): void;
|
|
1978
|
-
static deserializeBinary(bytes: Uint8Array): ContestedResourceVoteStatusRequest;
|
|
1979
|
-
static deserializeBinaryFromReader(message: ContestedResourceVoteStatusRequest, reader: jspb.BinaryReader): ContestedResourceVoteStatusRequest;
|
|
1980
|
-
}
|
|
1981
|
-
|
|
1982
|
-
export namespace ContestedResourceVoteStatusRequest {
|
|
1983
|
-
export type AsObject = {
|
|
1984
|
-
contractId: Uint8Array | string,
|
|
1985
|
-
documentTypeName: string,
|
|
1986
|
-
indexName: string,
|
|
1987
|
-
indexValuesList: Array<Uint8Array | string>,
|
|
1988
|
-
voterIdentifier: Uint8Array | string,
|
|
1989
|
-
}
|
|
1990
|
-
}
|
|
1991
|
-
|
|
1992
|
-
export enum RequestTypeCase {
|
|
1993
|
-
REQUEST_TYPE_NOT_SET = 0,
|
|
1994
|
-
CONTESTED_RESOURCE_VOTE_STATUS_REQUEST = 1,
|
|
1995
|
-
}
|
|
1996
|
-
}
|
|
1997
|
-
}
|
|
1998
|
-
|
|
1999
|
-
export enum VersionCase {
|
|
2000
|
-
VERSION_NOT_SET = 0,
|
|
2001
|
-
V0 = 1,
|
|
2002
|
-
}
|
|
2003
|
-
}
|
|
2004
|
-
|
|
2005
|
-
export class GetProofsResponse extends jspb.Message {
|
|
2006
|
-
hasV0(): boolean;
|
|
2007
|
-
clearV0(): void;
|
|
2008
|
-
getV0(): GetProofsResponse.GetProofsResponseV0 | undefined;
|
|
2009
|
-
setV0(value?: GetProofsResponse.GetProofsResponseV0): void;
|
|
2010
|
-
|
|
2011
|
-
getVersionCase(): GetProofsResponse.VersionCase;
|
|
2012
|
-
serializeBinary(): Uint8Array;
|
|
2013
|
-
toObject(includeInstance?: boolean): GetProofsResponse.AsObject;
|
|
2014
|
-
static toObject(includeInstance: boolean, msg: GetProofsResponse): GetProofsResponse.AsObject;
|
|
2015
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2016
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2017
|
-
static serializeBinaryToWriter(message: GetProofsResponse, writer: jspb.BinaryWriter): void;
|
|
2018
|
-
static deserializeBinary(bytes: Uint8Array): GetProofsResponse;
|
|
2019
|
-
static deserializeBinaryFromReader(message: GetProofsResponse, reader: jspb.BinaryReader): GetProofsResponse;
|
|
2020
|
-
}
|
|
2021
|
-
|
|
2022
|
-
export namespace GetProofsResponse {
|
|
2023
|
-
export type AsObject = {
|
|
2024
|
-
v0?: GetProofsResponse.GetProofsResponseV0.AsObject,
|
|
2025
|
-
}
|
|
2026
|
-
|
|
2027
|
-
export class GetProofsResponseV0 extends jspb.Message {
|
|
2028
|
-
hasProof(): boolean;
|
|
2029
|
-
clearProof(): void;
|
|
2030
|
-
getProof(): Proof | undefined;
|
|
2031
|
-
setProof(value?: Proof): void;
|
|
2032
|
-
|
|
2033
|
-
hasMetadata(): boolean;
|
|
2034
|
-
clearMetadata(): void;
|
|
2035
|
-
getMetadata(): ResponseMetadata | undefined;
|
|
2036
|
-
setMetadata(value?: ResponseMetadata): void;
|
|
2037
|
-
|
|
2038
|
-
getResultCase(): GetProofsResponseV0.ResultCase;
|
|
2039
|
-
serializeBinary(): Uint8Array;
|
|
2040
|
-
toObject(includeInstance?: boolean): GetProofsResponseV0.AsObject;
|
|
2041
|
-
static toObject(includeInstance: boolean, msg: GetProofsResponseV0): GetProofsResponseV0.AsObject;
|
|
2042
|
-
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2043
|
-
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2044
|
-
static serializeBinaryToWriter(message: GetProofsResponseV0, writer: jspb.BinaryWriter): void;
|
|
2045
|
-
static deserializeBinary(bytes: Uint8Array): GetProofsResponseV0;
|
|
2046
|
-
static deserializeBinaryFromReader(message: GetProofsResponseV0, reader: jspb.BinaryReader): GetProofsResponseV0;
|
|
2047
|
-
}
|
|
2048
|
-
|
|
2049
|
-
export namespace GetProofsResponseV0 {
|
|
2050
|
-
export type AsObject = {
|
|
2051
|
-
proof?: Proof.AsObject,
|
|
2052
|
-
metadata?: ResponseMetadata.AsObject,
|
|
2053
|
-
}
|
|
2054
|
-
|
|
2055
|
-
export enum ResultCase {
|
|
2056
|
-
RESULT_NOT_SET = 0,
|
|
2057
|
-
PROOF = 1,
|
|
2058
|
-
}
|
|
2059
|
-
}
|
|
2060
|
-
|
|
2061
|
-
export enum VersionCase {
|
|
2062
|
-
VERSION_NOT_SET = 0,
|
|
2063
|
-
V0 = 1,
|
|
2064
|
-
}
|
|
2065
|
-
}
|
|
2066
|
-
|
|
2067
1760
|
export class GetDataContractRequest extends jspb.Message {
|
|
2068
1761
|
hasV0(): boolean;
|
|
2069
1762
|
clearV0(): void;
|
|
@@ -2402,8 +2095,8 @@ export namespace GetDataContractHistoryRequest {
|
|
|
2402
2095
|
getOffset(): google_protobuf_wrappers_pb.UInt32Value | undefined;
|
|
2403
2096
|
setOffset(value?: google_protobuf_wrappers_pb.UInt32Value): void;
|
|
2404
2097
|
|
|
2405
|
-
getStartAtMs():
|
|
2406
|
-
setStartAtMs(value:
|
|
2098
|
+
getStartAtMs(): string;
|
|
2099
|
+
setStartAtMs(value: string): void;
|
|
2407
2100
|
|
|
2408
2101
|
getProve(): boolean;
|
|
2409
2102
|
setProve(value: boolean): void;
|
|
@@ -2423,7 +2116,7 @@ export namespace GetDataContractHistoryRequest {
|
|
|
2423
2116
|
id: Uint8Array | string,
|
|
2424
2117
|
limit?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
2425
2118
|
offset?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
2426
|
-
startAtMs:
|
|
2119
|
+
startAtMs: string,
|
|
2427
2120
|
prove: boolean,
|
|
2428
2121
|
}
|
|
2429
2122
|
}
|
|
@@ -2491,8 +2184,8 @@ export namespace GetDataContractHistoryResponse {
|
|
|
2491
2184
|
}
|
|
2492
2185
|
|
|
2493
2186
|
export class DataContractHistoryEntry extends jspb.Message {
|
|
2494
|
-
getDate():
|
|
2495
|
-
setDate(value:
|
|
2187
|
+
getDate(): string;
|
|
2188
|
+
setDate(value: string): void;
|
|
2496
2189
|
|
|
2497
2190
|
getValue(): Uint8Array | string;
|
|
2498
2191
|
getValue_asU8(): Uint8Array;
|
|
@@ -2511,7 +2204,7 @@ export namespace GetDataContractHistoryResponse {
|
|
|
2511
2204
|
|
|
2512
2205
|
export namespace DataContractHistoryEntry {
|
|
2513
2206
|
export type AsObject = {
|
|
2514
|
-
date:
|
|
2207
|
+
date: string,
|
|
2515
2208
|
value: Uint8Array | string,
|
|
2516
2209
|
}
|
|
2517
2210
|
}
|
|
@@ -2866,50 +2559,58 @@ export namespace GetIdentityByPublicKeyHashResponse {
|
|
|
2866
2559
|
}
|
|
2867
2560
|
}
|
|
2868
2561
|
|
|
2869
|
-
export class
|
|
2562
|
+
export class GetIdentityByNonUniquePublicKeyHashRequest extends jspb.Message {
|
|
2870
2563
|
hasV0(): boolean;
|
|
2871
2564
|
clearV0(): void;
|
|
2872
|
-
getV0():
|
|
2873
|
-
setV0(value?:
|
|
2565
|
+
getV0(): GetIdentityByNonUniquePublicKeyHashRequest.GetIdentityByNonUniquePublicKeyHashRequestV0 | undefined;
|
|
2566
|
+
setV0(value?: GetIdentityByNonUniquePublicKeyHashRequest.GetIdentityByNonUniquePublicKeyHashRequestV0): void;
|
|
2874
2567
|
|
|
2875
|
-
getVersionCase():
|
|
2568
|
+
getVersionCase(): GetIdentityByNonUniquePublicKeyHashRequest.VersionCase;
|
|
2876
2569
|
serializeBinary(): Uint8Array;
|
|
2877
|
-
toObject(includeInstance?: boolean):
|
|
2878
|
-
static toObject(includeInstance: boolean, msg:
|
|
2570
|
+
toObject(includeInstance?: boolean): GetIdentityByNonUniquePublicKeyHashRequest.AsObject;
|
|
2571
|
+
static toObject(includeInstance: boolean, msg: GetIdentityByNonUniquePublicKeyHashRequest): GetIdentityByNonUniquePublicKeyHashRequest.AsObject;
|
|
2879
2572
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2880
2573
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2881
|
-
static serializeBinaryToWriter(message:
|
|
2882
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2883
|
-
static deserializeBinaryFromReader(message:
|
|
2574
|
+
static serializeBinaryToWriter(message: GetIdentityByNonUniquePublicKeyHashRequest, writer: jspb.BinaryWriter): void;
|
|
2575
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityByNonUniquePublicKeyHashRequest;
|
|
2576
|
+
static deserializeBinaryFromReader(message: GetIdentityByNonUniquePublicKeyHashRequest, reader: jspb.BinaryReader): GetIdentityByNonUniquePublicKeyHashRequest;
|
|
2884
2577
|
}
|
|
2885
2578
|
|
|
2886
|
-
export namespace
|
|
2579
|
+
export namespace GetIdentityByNonUniquePublicKeyHashRequest {
|
|
2887
2580
|
export type AsObject = {
|
|
2888
|
-
v0?:
|
|
2581
|
+
v0?: GetIdentityByNonUniquePublicKeyHashRequest.GetIdentityByNonUniquePublicKeyHashRequestV0.AsObject,
|
|
2889
2582
|
}
|
|
2890
2583
|
|
|
2891
|
-
export class
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2584
|
+
export class GetIdentityByNonUniquePublicKeyHashRequestV0 extends jspb.Message {
|
|
2585
|
+
getPublicKeyHash(): Uint8Array | string;
|
|
2586
|
+
getPublicKeyHash_asU8(): Uint8Array;
|
|
2587
|
+
getPublicKeyHash_asB64(): string;
|
|
2588
|
+
setPublicKeyHash(value: Uint8Array | string): void;
|
|
2589
|
+
|
|
2590
|
+
hasStartAfter(): boolean;
|
|
2591
|
+
clearStartAfter(): void;
|
|
2592
|
+
getStartAfter(): Uint8Array | string;
|
|
2593
|
+
getStartAfter_asU8(): Uint8Array;
|
|
2594
|
+
getStartAfter_asB64(): string;
|
|
2595
|
+
setStartAfter(value: Uint8Array | string): void;
|
|
2896
2596
|
|
|
2897
2597
|
getProve(): boolean;
|
|
2898
2598
|
setProve(value: boolean): void;
|
|
2899
2599
|
|
|
2900
2600
|
serializeBinary(): Uint8Array;
|
|
2901
|
-
toObject(includeInstance?: boolean):
|
|
2902
|
-
static toObject(includeInstance: boolean, msg:
|
|
2601
|
+
toObject(includeInstance?: boolean): GetIdentityByNonUniquePublicKeyHashRequestV0.AsObject;
|
|
2602
|
+
static toObject(includeInstance: boolean, msg: GetIdentityByNonUniquePublicKeyHashRequestV0): GetIdentityByNonUniquePublicKeyHashRequestV0.AsObject;
|
|
2903
2603
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2904
2604
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2905
|
-
static serializeBinaryToWriter(message:
|
|
2906
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2907
|
-
static deserializeBinaryFromReader(message:
|
|
2605
|
+
static serializeBinaryToWriter(message: GetIdentityByNonUniquePublicKeyHashRequestV0, writer: jspb.BinaryWriter): void;
|
|
2606
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityByNonUniquePublicKeyHashRequestV0;
|
|
2607
|
+
static deserializeBinaryFromReader(message: GetIdentityByNonUniquePublicKeyHashRequestV0, reader: jspb.BinaryReader): GetIdentityByNonUniquePublicKeyHashRequestV0;
|
|
2908
2608
|
}
|
|
2909
2609
|
|
|
2910
|
-
export namespace
|
|
2610
|
+
export namespace GetIdentityByNonUniquePublicKeyHashRequestV0 {
|
|
2911
2611
|
export type AsObject = {
|
|
2912
|
-
|
|
2612
|
+
publicKeyHash: Uint8Array | string,
|
|
2613
|
+
startAfter: Uint8Array | string,
|
|
2913
2614
|
prove: boolean,
|
|
2914
2615
|
}
|
|
2915
2616
|
}
|
|
@@ -2920,65 +2621,119 @@ export namespace WaitForStateTransitionResultRequest {
|
|
|
2920
2621
|
}
|
|
2921
2622
|
}
|
|
2922
2623
|
|
|
2923
|
-
export class
|
|
2624
|
+
export class GetIdentityByNonUniquePublicKeyHashResponse extends jspb.Message {
|
|
2924
2625
|
hasV0(): boolean;
|
|
2925
2626
|
clearV0(): void;
|
|
2926
|
-
getV0():
|
|
2927
|
-
setV0(value?:
|
|
2627
|
+
getV0(): GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0 | undefined;
|
|
2628
|
+
setV0(value?: GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0): void;
|
|
2928
2629
|
|
|
2929
|
-
getVersionCase():
|
|
2630
|
+
getVersionCase(): GetIdentityByNonUniquePublicKeyHashResponse.VersionCase;
|
|
2930
2631
|
serializeBinary(): Uint8Array;
|
|
2931
|
-
toObject(includeInstance?: boolean):
|
|
2932
|
-
static toObject(includeInstance: boolean, msg:
|
|
2632
|
+
toObject(includeInstance?: boolean): GetIdentityByNonUniquePublicKeyHashResponse.AsObject;
|
|
2633
|
+
static toObject(includeInstance: boolean, msg: GetIdentityByNonUniquePublicKeyHashResponse): GetIdentityByNonUniquePublicKeyHashResponse.AsObject;
|
|
2933
2634
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2934
2635
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2935
|
-
static serializeBinaryToWriter(message:
|
|
2936
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2937
|
-
static deserializeBinaryFromReader(message:
|
|
2636
|
+
static serializeBinaryToWriter(message: GetIdentityByNonUniquePublicKeyHashResponse, writer: jspb.BinaryWriter): void;
|
|
2637
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityByNonUniquePublicKeyHashResponse;
|
|
2638
|
+
static deserializeBinaryFromReader(message: GetIdentityByNonUniquePublicKeyHashResponse, reader: jspb.BinaryReader): GetIdentityByNonUniquePublicKeyHashResponse;
|
|
2938
2639
|
}
|
|
2939
2640
|
|
|
2940
|
-
export namespace
|
|
2641
|
+
export namespace GetIdentityByNonUniquePublicKeyHashResponse {
|
|
2941
2642
|
export type AsObject = {
|
|
2942
|
-
v0?:
|
|
2643
|
+
v0?: GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.AsObject,
|
|
2943
2644
|
}
|
|
2944
2645
|
|
|
2945
|
-
export class
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2646
|
+
export class GetIdentityByNonUniquePublicKeyHashResponseV0 extends jspb.Message {
|
|
2647
|
+
hasIdentity(): boolean;
|
|
2648
|
+
clearIdentity(): void;
|
|
2649
|
+
getIdentity(): GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.IdentityResponse | undefined;
|
|
2650
|
+
setIdentity(value?: GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.IdentityResponse): void;
|
|
2950
2651
|
|
|
2951
2652
|
hasProof(): boolean;
|
|
2952
2653
|
clearProof(): void;
|
|
2953
|
-
getProof():
|
|
2954
|
-
setProof(value?:
|
|
2654
|
+
getProof(): GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.IdentityProvedResponse | undefined;
|
|
2655
|
+
setProof(value?: GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.IdentityProvedResponse): void;
|
|
2955
2656
|
|
|
2956
2657
|
hasMetadata(): boolean;
|
|
2957
2658
|
clearMetadata(): void;
|
|
2958
2659
|
getMetadata(): ResponseMetadata | undefined;
|
|
2959
2660
|
setMetadata(value?: ResponseMetadata): void;
|
|
2960
2661
|
|
|
2961
|
-
getResultCase():
|
|
2662
|
+
getResultCase(): GetIdentityByNonUniquePublicKeyHashResponseV0.ResultCase;
|
|
2962
2663
|
serializeBinary(): Uint8Array;
|
|
2963
|
-
toObject(includeInstance?: boolean):
|
|
2964
|
-
static toObject(includeInstance: boolean, msg:
|
|
2664
|
+
toObject(includeInstance?: boolean): GetIdentityByNonUniquePublicKeyHashResponseV0.AsObject;
|
|
2665
|
+
static toObject(includeInstance: boolean, msg: GetIdentityByNonUniquePublicKeyHashResponseV0): GetIdentityByNonUniquePublicKeyHashResponseV0.AsObject;
|
|
2965
2666
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2966
2667
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2967
|
-
static serializeBinaryToWriter(message:
|
|
2968
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
2969
|
-
static deserializeBinaryFromReader(message:
|
|
2668
|
+
static serializeBinaryToWriter(message: GetIdentityByNonUniquePublicKeyHashResponseV0, writer: jspb.BinaryWriter): void;
|
|
2669
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityByNonUniquePublicKeyHashResponseV0;
|
|
2670
|
+
static deserializeBinaryFromReader(message: GetIdentityByNonUniquePublicKeyHashResponseV0, reader: jspb.BinaryReader): GetIdentityByNonUniquePublicKeyHashResponseV0;
|
|
2970
2671
|
}
|
|
2971
2672
|
|
|
2972
|
-
export namespace
|
|
2673
|
+
export namespace GetIdentityByNonUniquePublicKeyHashResponseV0 {
|
|
2973
2674
|
export type AsObject = {
|
|
2974
|
-
|
|
2975
|
-
proof?:
|
|
2675
|
+
identity?: GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.IdentityResponse.AsObject,
|
|
2676
|
+
proof?: GetIdentityByNonUniquePublicKeyHashResponse.GetIdentityByNonUniquePublicKeyHashResponseV0.IdentityProvedResponse.AsObject,
|
|
2976
2677
|
metadata?: ResponseMetadata.AsObject,
|
|
2977
2678
|
}
|
|
2978
2679
|
|
|
2680
|
+
export class IdentityResponse extends jspb.Message {
|
|
2681
|
+
hasIdentity(): boolean;
|
|
2682
|
+
clearIdentity(): void;
|
|
2683
|
+
getIdentity(): Uint8Array | string;
|
|
2684
|
+
getIdentity_asU8(): Uint8Array;
|
|
2685
|
+
getIdentity_asB64(): string;
|
|
2686
|
+
setIdentity(value: Uint8Array | string): void;
|
|
2687
|
+
|
|
2688
|
+
serializeBinary(): Uint8Array;
|
|
2689
|
+
toObject(includeInstance?: boolean): IdentityResponse.AsObject;
|
|
2690
|
+
static toObject(includeInstance: boolean, msg: IdentityResponse): IdentityResponse.AsObject;
|
|
2691
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2692
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2693
|
+
static serializeBinaryToWriter(message: IdentityResponse, writer: jspb.BinaryWriter): void;
|
|
2694
|
+
static deserializeBinary(bytes: Uint8Array): IdentityResponse;
|
|
2695
|
+
static deserializeBinaryFromReader(message: IdentityResponse, reader: jspb.BinaryReader): IdentityResponse;
|
|
2696
|
+
}
|
|
2697
|
+
|
|
2698
|
+
export namespace IdentityResponse {
|
|
2699
|
+
export type AsObject = {
|
|
2700
|
+
identity: Uint8Array | string,
|
|
2701
|
+
}
|
|
2702
|
+
}
|
|
2703
|
+
|
|
2704
|
+
export class IdentityProvedResponse extends jspb.Message {
|
|
2705
|
+
hasGrovedbIdentityPublicKeyHashProof(): boolean;
|
|
2706
|
+
clearGrovedbIdentityPublicKeyHashProof(): void;
|
|
2707
|
+
getGrovedbIdentityPublicKeyHashProof(): Proof | undefined;
|
|
2708
|
+
setGrovedbIdentityPublicKeyHashProof(value?: Proof): void;
|
|
2709
|
+
|
|
2710
|
+
hasIdentityProofBytes(): boolean;
|
|
2711
|
+
clearIdentityProofBytes(): void;
|
|
2712
|
+
getIdentityProofBytes(): Uint8Array | string;
|
|
2713
|
+
getIdentityProofBytes_asU8(): Uint8Array;
|
|
2714
|
+
getIdentityProofBytes_asB64(): string;
|
|
2715
|
+
setIdentityProofBytes(value: Uint8Array | string): void;
|
|
2716
|
+
|
|
2717
|
+
serializeBinary(): Uint8Array;
|
|
2718
|
+
toObject(includeInstance?: boolean): IdentityProvedResponse.AsObject;
|
|
2719
|
+
static toObject(includeInstance: boolean, msg: IdentityProvedResponse): IdentityProvedResponse.AsObject;
|
|
2720
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2721
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2722
|
+
static serializeBinaryToWriter(message: IdentityProvedResponse, writer: jspb.BinaryWriter): void;
|
|
2723
|
+
static deserializeBinary(bytes: Uint8Array): IdentityProvedResponse;
|
|
2724
|
+
static deserializeBinaryFromReader(message: IdentityProvedResponse, reader: jspb.BinaryReader): IdentityProvedResponse;
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
export namespace IdentityProvedResponse {
|
|
2728
|
+
export type AsObject = {
|
|
2729
|
+
grovedbIdentityPublicKeyHashProof?: Proof.AsObject,
|
|
2730
|
+
identityProofBytes: Uint8Array | string,
|
|
2731
|
+
}
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2979
2734
|
export enum ResultCase {
|
|
2980
2735
|
RESULT_NOT_SET = 0,
|
|
2981
|
-
|
|
2736
|
+
IDENTITY = 1,
|
|
2982
2737
|
PROOF = 2,
|
|
2983
2738
|
}
|
|
2984
2739
|
}
|
|
@@ -2989,13 +2744,136 @@ export namespace WaitForStateTransitionResultResponse {
|
|
|
2989
2744
|
}
|
|
2990
2745
|
}
|
|
2991
2746
|
|
|
2992
|
-
export class
|
|
2747
|
+
export class WaitForStateTransitionResultRequest extends jspb.Message {
|
|
2993
2748
|
hasV0(): boolean;
|
|
2994
2749
|
clearV0(): void;
|
|
2995
|
-
getV0():
|
|
2996
|
-
setV0(value?:
|
|
2750
|
+
getV0(): WaitForStateTransitionResultRequest.WaitForStateTransitionResultRequestV0 | undefined;
|
|
2751
|
+
setV0(value?: WaitForStateTransitionResultRequest.WaitForStateTransitionResultRequestV0): void;
|
|
2997
2752
|
|
|
2998
|
-
getVersionCase():
|
|
2753
|
+
getVersionCase(): WaitForStateTransitionResultRequest.VersionCase;
|
|
2754
|
+
serializeBinary(): Uint8Array;
|
|
2755
|
+
toObject(includeInstance?: boolean): WaitForStateTransitionResultRequest.AsObject;
|
|
2756
|
+
static toObject(includeInstance: boolean, msg: WaitForStateTransitionResultRequest): WaitForStateTransitionResultRequest.AsObject;
|
|
2757
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2758
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2759
|
+
static serializeBinaryToWriter(message: WaitForStateTransitionResultRequest, writer: jspb.BinaryWriter): void;
|
|
2760
|
+
static deserializeBinary(bytes: Uint8Array): WaitForStateTransitionResultRequest;
|
|
2761
|
+
static deserializeBinaryFromReader(message: WaitForStateTransitionResultRequest, reader: jspb.BinaryReader): WaitForStateTransitionResultRequest;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2764
|
+
export namespace WaitForStateTransitionResultRequest {
|
|
2765
|
+
export type AsObject = {
|
|
2766
|
+
v0?: WaitForStateTransitionResultRequest.WaitForStateTransitionResultRequestV0.AsObject,
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
export class WaitForStateTransitionResultRequestV0 extends jspb.Message {
|
|
2770
|
+
getStateTransitionHash(): Uint8Array | string;
|
|
2771
|
+
getStateTransitionHash_asU8(): Uint8Array;
|
|
2772
|
+
getStateTransitionHash_asB64(): string;
|
|
2773
|
+
setStateTransitionHash(value: Uint8Array | string): void;
|
|
2774
|
+
|
|
2775
|
+
getProve(): boolean;
|
|
2776
|
+
setProve(value: boolean): void;
|
|
2777
|
+
|
|
2778
|
+
serializeBinary(): Uint8Array;
|
|
2779
|
+
toObject(includeInstance?: boolean): WaitForStateTransitionResultRequestV0.AsObject;
|
|
2780
|
+
static toObject(includeInstance: boolean, msg: WaitForStateTransitionResultRequestV0): WaitForStateTransitionResultRequestV0.AsObject;
|
|
2781
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2782
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2783
|
+
static serializeBinaryToWriter(message: WaitForStateTransitionResultRequestV0, writer: jspb.BinaryWriter): void;
|
|
2784
|
+
static deserializeBinary(bytes: Uint8Array): WaitForStateTransitionResultRequestV0;
|
|
2785
|
+
static deserializeBinaryFromReader(message: WaitForStateTransitionResultRequestV0, reader: jspb.BinaryReader): WaitForStateTransitionResultRequestV0;
|
|
2786
|
+
}
|
|
2787
|
+
|
|
2788
|
+
export namespace WaitForStateTransitionResultRequestV0 {
|
|
2789
|
+
export type AsObject = {
|
|
2790
|
+
stateTransitionHash: Uint8Array | string,
|
|
2791
|
+
prove: boolean,
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
export enum VersionCase {
|
|
2796
|
+
VERSION_NOT_SET = 0,
|
|
2797
|
+
V0 = 1,
|
|
2798
|
+
}
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
export class WaitForStateTransitionResultResponse extends jspb.Message {
|
|
2802
|
+
hasV0(): boolean;
|
|
2803
|
+
clearV0(): void;
|
|
2804
|
+
getV0(): WaitForStateTransitionResultResponse.WaitForStateTransitionResultResponseV0 | undefined;
|
|
2805
|
+
setV0(value?: WaitForStateTransitionResultResponse.WaitForStateTransitionResultResponseV0): void;
|
|
2806
|
+
|
|
2807
|
+
getVersionCase(): WaitForStateTransitionResultResponse.VersionCase;
|
|
2808
|
+
serializeBinary(): Uint8Array;
|
|
2809
|
+
toObject(includeInstance?: boolean): WaitForStateTransitionResultResponse.AsObject;
|
|
2810
|
+
static toObject(includeInstance: boolean, msg: WaitForStateTransitionResultResponse): WaitForStateTransitionResultResponse.AsObject;
|
|
2811
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2812
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2813
|
+
static serializeBinaryToWriter(message: WaitForStateTransitionResultResponse, writer: jspb.BinaryWriter): void;
|
|
2814
|
+
static deserializeBinary(bytes: Uint8Array): WaitForStateTransitionResultResponse;
|
|
2815
|
+
static deserializeBinaryFromReader(message: WaitForStateTransitionResultResponse, reader: jspb.BinaryReader): WaitForStateTransitionResultResponse;
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
export namespace WaitForStateTransitionResultResponse {
|
|
2819
|
+
export type AsObject = {
|
|
2820
|
+
v0?: WaitForStateTransitionResultResponse.WaitForStateTransitionResultResponseV0.AsObject,
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
export class WaitForStateTransitionResultResponseV0 extends jspb.Message {
|
|
2824
|
+
hasError(): boolean;
|
|
2825
|
+
clearError(): void;
|
|
2826
|
+
getError(): StateTransitionBroadcastError | undefined;
|
|
2827
|
+
setError(value?: StateTransitionBroadcastError): void;
|
|
2828
|
+
|
|
2829
|
+
hasProof(): boolean;
|
|
2830
|
+
clearProof(): void;
|
|
2831
|
+
getProof(): Proof | undefined;
|
|
2832
|
+
setProof(value?: Proof): void;
|
|
2833
|
+
|
|
2834
|
+
hasMetadata(): boolean;
|
|
2835
|
+
clearMetadata(): void;
|
|
2836
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
2837
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
2838
|
+
|
|
2839
|
+
getResultCase(): WaitForStateTransitionResultResponseV0.ResultCase;
|
|
2840
|
+
serializeBinary(): Uint8Array;
|
|
2841
|
+
toObject(includeInstance?: boolean): WaitForStateTransitionResultResponseV0.AsObject;
|
|
2842
|
+
static toObject(includeInstance: boolean, msg: WaitForStateTransitionResultResponseV0): WaitForStateTransitionResultResponseV0.AsObject;
|
|
2843
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2844
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2845
|
+
static serializeBinaryToWriter(message: WaitForStateTransitionResultResponseV0, writer: jspb.BinaryWriter): void;
|
|
2846
|
+
static deserializeBinary(bytes: Uint8Array): WaitForStateTransitionResultResponseV0;
|
|
2847
|
+
static deserializeBinaryFromReader(message: WaitForStateTransitionResultResponseV0, reader: jspb.BinaryReader): WaitForStateTransitionResultResponseV0;
|
|
2848
|
+
}
|
|
2849
|
+
|
|
2850
|
+
export namespace WaitForStateTransitionResultResponseV0 {
|
|
2851
|
+
export type AsObject = {
|
|
2852
|
+
error?: StateTransitionBroadcastError.AsObject,
|
|
2853
|
+
proof?: Proof.AsObject,
|
|
2854
|
+
metadata?: ResponseMetadata.AsObject,
|
|
2855
|
+
}
|
|
2856
|
+
|
|
2857
|
+
export enum ResultCase {
|
|
2858
|
+
RESULT_NOT_SET = 0,
|
|
2859
|
+
ERROR = 1,
|
|
2860
|
+
PROOF = 2,
|
|
2861
|
+
}
|
|
2862
|
+
}
|
|
2863
|
+
|
|
2864
|
+
export enum VersionCase {
|
|
2865
|
+
VERSION_NOT_SET = 0,
|
|
2866
|
+
V0 = 1,
|
|
2867
|
+
}
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
export class GetConsensusParamsRequest extends jspb.Message {
|
|
2871
|
+
hasV0(): boolean;
|
|
2872
|
+
clearV0(): void;
|
|
2873
|
+
getV0(): GetConsensusParamsRequest.GetConsensusParamsRequestV0 | undefined;
|
|
2874
|
+
setV0(value?: GetConsensusParamsRequest.GetConsensusParamsRequestV0): void;
|
|
2875
|
+
|
|
2876
|
+
getVersionCase(): GetConsensusParamsRequest.VersionCase;
|
|
2999
2877
|
serializeBinary(): Uint8Array;
|
|
3000
2878
|
toObject(includeInstance?: boolean): GetConsensusParamsRequest.AsObject;
|
|
3001
2879
|
static toObject(includeInstance: boolean, msg: GetConsensusParamsRequest): GetConsensusParamsRequest.AsObject;
|
|
@@ -3635,14 +3513,14 @@ export namespace GetEpochsInfoResponse {
|
|
|
3635
3513
|
getNumber(): number;
|
|
3636
3514
|
setNumber(value: number): void;
|
|
3637
3515
|
|
|
3638
|
-
getFirstBlockHeight():
|
|
3639
|
-
setFirstBlockHeight(value:
|
|
3516
|
+
getFirstBlockHeight(): string;
|
|
3517
|
+
setFirstBlockHeight(value: string): void;
|
|
3640
3518
|
|
|
3641
3519
|
getFirstCoreBlockHeight(): number;
|
|
3642
3520
|
setFirstCoreBlockHeight(value: number): void;
|
|
3643
3521
|
|
|
3644
|
-
getStartTime():
|
|
3645
|
-
setStartTime(value:
|
|
3522
|
+
getStartTime(): string;
|
|
3523
|
+
setStartTime(value: string): void;
|
|
3646
3524
|
|
|
3647
3525
|
getFeeMultiplier(): number;
|
|
3648
3526
|
setFeeMultiplier(value: number): void;
|
|
@@ -3663,9 +3541,9 @@ export namespace GetEpochsInfoResponse {
|
|
|
3663
3541
|
export namespace EpochInfo {
|
|
3664
3542
|
export type AsObject = {
|
|
3665
3543
|
number: number,
|
|
3666
|
-
firstBlockHeight:
|
|
3544
|
+
firstBlockHeight: string,
|
|
3667
3545
|
firstCoreBlockHeight: number,
|
|
3668
|
-
startTime:
|
|
3546
|
+
startTime: string,
|
|
3669
3547
|
feeMultiplier: number,
|
|
3670
3548
|
protocolVersion: number,
|
|
3671
3549
|
}
|
|
@@ -3967,8 +3845,8 @@ export namespace GetVotePollsByEndDateRequest {
|
|
|
3967
3845
|
}
|
|
3968
3846
|
|
|
3969
3847
|
export class StartAtTimeInfo extends jspb.Message {
|
|
3970
|
-
getStartTimeMs():
|
|
3971
|
-
setStartTimeMs(value:
|
|
3848
|
+
getStartTimeMs(): string;
|
|
3849
|
+
setStartTimeMs(value: string): void;
|
|
3972
3850
|
|
|
3973
3851
|
getStartTimeIncluded(): boolean;
|
|
3974
3852
|
setStartTimeIncluded(value: boolean): void;
|
|
@@ -3985,14 +3863,14 @@ export namespace GetVotePollsByEndDateRequest {
|
|
|
3985
3863
|
|
|
3986
3864
|
export namespace StartAtTimeInfo {
|
|
3987
3865
|
export type AsObject = {
|
|
3988
|
-
startTimeMs:
|
|
3866
|
+
startTimeMs: string,
|
|
3989
3867
|
startTimeIncluded: boolean,
|
|
3990
3868
|
}
|
|
3991
3869
|
}
|
|
3992
3870
|
|
|
3993
3871
|
export class EndAtTimeInfo extends jspb.Message {
|
|
3994
|
-
getEndTimeMs():
|
|
3995
|
-
setEndTimeMs(value:
|
|
3872
|
+
getEndTimeMs(): string;
|
|
3873
|
+
setEndTimeMs(value: string): void;
|
|
3996
3874
|
|
|
3997
3875
|
getEndTimeIncluded(): boolean;
|
|
3998
3876
|
setEndTimeIncluded(value: boolean): void;
|
|
@@ -4009,7 +3887,7 @@ export namespace GetVotePollsByEndDateRequest {
|
|
|
4009
3887
|
|
|
4010
3888
|
export namespace EndAtTimeInfo {
|
|
4011
3889
|
export type AsObject = {
|
|
4012
|
-
endTimeMs:
|
|
3890
|
+
endTimeMs: string,
|
|
4013
3891
|
endTimeIncluded: boolean,
|
|
4014
3892
|
}
|
|
4015
3893
|
}
|
|
@@ -4078,8 +3956,8 @@ export namespace GetVotePollsByEndDateResponse {
|
|
|
4078
3956
|
}
|
|
4079
3957
|
|
|
4080
3958
|
export class SerializedVotePollsByTimestamp extends jspb.Message {
|
|
4081
|
-
getTimestamp():
|
|
4082
|
-
setTimestamp(value:
|
|
3959
|
+
getTimestamp(): string;
|
|
3960
|
+
setTimestamp(value: string): void;
|
|
4083
3961
|
|
|
4084
3962
|
clearSerializedVotePollsList(): void;
|
|
4085
3963
|
getSerializedVotePollsList(): Array<Uint8Array | string>;
|
|
@@ -4100,7 +3978,7 @@ export namespace GetVotePollsByEndDateResponse {
|
|
|
4100
3978
|
|
|
4101
3979
|
export namespace SerializedVotePollsByTimestamp {
|
|
4102
3980
|
export type AsObject = {
|
|
4103
|
-
timestamp:
|
|
3981
|
+
timestamp: string,
|
|
4104
3982
|
serializedVotePollsList: Array<Uint8Array | string>,
|
|
4105
3983
|
}
|
|
4106
3984
|
}
|
|
@@ -4335,14 +4213,14 @@ export namespace GetContestedResourceVoteStateResponse {
|
|
|
4335
4213
|
getWonByIdentityId_asB64(): string;
|
|
4336
4214
|
setWonByIdentityId(value: Uint8Array | string): void;
|
|
4337
4215
|
|
|
4338
|
-
getFinishedAtBlockHeight():
|
|
4339
|
-
setFinishedAtBlockHeight(value:
|
|
4216
|
+
getFinishedAtBlockHeight(): string;
|
|
4217
|
+
setFinishedAtBlockHeight(value: string): void;
|
|
4340
4218
|
|
|
4341
4219
|
getFinishedAtCoreBlockHeight(): number;
|
|
4342
4220
|
setFinishedAtCoreBlockHeight(value: number): void;
|
|
4343
4221
|
|
|
4344
|
-
getFinishedAtBlockTimeMs():
|
|
4345
|
-
setFinishedAtBlockTimeMs(value:
|
|
4222
|
+
getFinishedAtBlockTimeMs(): string;
|
|
4223
|
+
setFinishedAtBlockTimeMs(value: string): void;
|
|
4346
4224
|
|
|
4347
4225
|
getFinishedAtEpoch(): number;
|
|
4348
4226
|
setFinishedAtEpoch(value: number): void;
|
|
@@ -4361,9 +4239,9 @@ export namespace GetContestedResourceVoteStateResponse {
|
|
|
4361
4239
|
export type AsObject = {
|
|
4362
4240
|
finishedVoteOutcome: GetContestedResourceVoteStateResponse.GetContestedResourceVoteStateResponseV0.FinishedVoteInfo.FinishedVoteOutcomeMap[keyof GetContestedResourceVoteStateResponse.GetContestedResourceVoteStateResponseV0.FinishedVoteInfo.FinishedVoteOutcomeMap],
|
|
4363
4241
|
wonByIdentityId: Uint8Array | string,
|
|
4364
|
-
finishedAtBlockHeight:
|
|
4242
|
+
finishedAtBlockHeight: string,
|
|
4365
4243
|
finishedAtCoreBlockHeight: number,
|
|
4366
|
-
finishedAtBlockTimeMs:
|
|
4244
|
+
finishedAtBlockTimeMs: string,
|
|
4367
4245
|
finishedAtEpoch: number,
|
|
4368
4246
|
}
|
|
4369
4247
|
|
|
@@ -5032,8 +4910,8 @@ export namespace GetPrefundedSpecializedBalanceResponse {
|
|
|
5032
4910
|
export class GetPrefundedSpecializedBalanceResponseV0 extends jspb.Message {
|
|
5033
4911
|
hasBalance(): boolean;
|
|
5034
4912
|
clearBalance(): void;
|
|
5035
|
-
getBalance():
|
|
5036
|
-
setBalance(value:
|
|
4913
|
+
getBalance(): string;
|
|
4914
|
+
setBalance(value: string): void;
|
|
5037
4915
|
|
|
5038
4916
|
hasProof(): boolean;
|
|
5039
4917
|
clearProof(): void;
|
|
@@ -5058,7 +4936,7 @@ export namespace GetPrefundedSpecializedBalanceResponse {
|
|
|
5058
4936
|
|
|
5059
4937
|
export namespace GetPrefundedSpecializedBalanceResponseV0 {
|
|
5060
4938
|
export type AsObject = {
|
|
5061
|
-
balance:
|
|
4939
|
+
balance: string,
|
|
5062
4940
|
proof?: Proof.AsObject,
|
|
5063
4941
|
metadata?: ResponseMetadata.AsObject,
|
|
5064
4942
|
}
|
|
@@ -5149,8 +5027,8 @@ export namespace GetTotalCreditsInPlatformResponse {
|
|
|
5149
5027
|
export class GetTotalCreditsInPlatformResponseV0 extends jspb.Message {
|
|
5150
5028
|
hasCredits(): boolean;
|
|
5151
5029
|
clearCredits(): void;
|
|
5152
|
-
getCredits():
|
|
5153
|
-
setCredits(value:
|
|
5030
|
+
getCredits(): string;
|
|
5031
|
+
setCredits(value: string): void;
|
|
5154
5032
|
|
|
5155
5033
|
hasProof(): boolean;
|
|
5156
5034
|
clearProof(): void;
|
|
@@ -5175,7 +5053,7 @@ export namespace GetTotalCreditsInPlatformResponse {
|
|
|
5175
5053
|
|
|
5176
5054
|
export namespace GetTotalCreditsInPlatformResponseV0 {
|
|
5177
5055
|
export type AsObject = {
|
|
5178
|
-
credits:
|
|
5056
|
+
credits: string,
|
|
5179
5057
|
proof?: Proof.AsObject,
|
|
5180
5058
|
metadata?: ResponseMetadata.AsObject,
|
|
5181
5059
|
}
|
|
@@ -5604,18 +5482,18 @@ export namespace GetStatusResponse {
|
|
|
5604
5482
|
}
|
|
5605
5483
|
|
|
5606
5484
|
export class Time extends jspb.Message {
|
|
5607
|
-
getLocal():
|
|
5608
|
-
setLocal(value:
|
|
5485
|
+
getLocal(): string;
|
|
5486
|
+
setLocal(value: string): void;
|
|
5609
5487
|
|
|
5610
5488
|
hasBlock(): boolean;
|
|
5611
5489
|
clearBlock(): void;
|
|
5612
|
-
getBlock():
|
|
5613
|
-
setBlock(value:
|
|
5490
|
+
getBlock(): string;
|
|
5491
|
+
setBlock(value: string): void;
|
|
5614
5492
|
|
|
5615
5493
|
hasGenesis(): boolean;
|
|
5616
5494
|
clearGenesis(): void;
|
|
5617
|
-
getGenesis():
|
|
5618
|
-
setGenesis(value:
|
|
5495
|
+
getGenesis(): string;
|
|
5496
|
+
setGenesis(value: string): void;
|
|
5619
5497
|
|
|
5620
5498
|
hasEpoch(): boolean;
|
|
5621
5499
|
clearEpoch(): void;
|
|
@@ -5634,9 +5512,9 @@ export namespace GetStatusResponse {
|
|
|
5634
5512
|
|
|
5635
5513
|
export namespace Time {
|
|
5636
5514
|
export type AsObject = {
|
|
5637
|
-
local:
|
|
5638
|
-
block:
|
|
5639
|
-
genesis:
|
|
5515
|
+
local: string,
|
|
5516
|
+
block: string,
|
|
5517
|
+
genesis: string,
|
|
5640
5518
|
epoch: number,
|
|
5641
5519
|
}
|
|
5642
5520
|
}
|
|
@@ -5685,8 +5563,8 @@ export namespace GetStatusResponse {
|
|
|
5685
5563
|
getLatestAppHash_asB64(): string;
|
|
5686
5564
|
setLatestAppHash(value: Uint8Array | string): void;
|
|
5687
5565
|
|
|
5688
|
-
getLatestBlockHeight():
|
|
5689
|
-
setLatestBlockHeight(value:
|
|
5566
|
+
getLatestBlockHeight(): string;
|
|
5567
|
+
setLatestBlockHeight(value: string): void;
|
|
5690
5568
|
|
|
5691
5569
|
getEarliestBlockHash(): Uint8Array | string;
|
|
5692
5570
|
getEarliestBlockHash_asU8(): Uint8Array;
|
|
@@ -5698,11 +5576,11 @@ export namespace GetStatusResponse {
|
|
|
5698
5576
|
getEarliestAppHash_asB64(): string;
|
|
5699
5577
|
setEarliestAppHash(value: Uint8Array | string): void;
|
|
5700
5578
|
|
|
5701
|
-
getEarliestBlockHeight():
|
|
5702
|
-
setEarliestBlockHeight(value:
|
|
5579
|
+
getEarliestBlockHeight(): string;
|
|
5580
|
+
setEarliestBlockHeight(value: string): void;
|
|
5703
5581
|
|
|
5704
|
-
getMaxPeerBlockHeight():
|
|
5705
|
-
setMaxPeerBlockHeight(value:
|
|
5582
|
+
getMaxPeerBlockHeight(): string;
|
|
5583
|
+
setMaxPeerBlockHeight(value: string): void;
|
|
5706
5584
|
|
|
5707
5585
|
hasCoreChainLockedHeight(): boolean;
|
|
5708
5586
|
clearCoreChainLockedHeight(): void;
|
|
@@ -5724,11 +5602,11 @@ export namespace GetStatusResponse {
|
|
|
5724
5602
|
catchingUp: boolean,
|
|
5725
5603
|
latestBlockHash: Uint8Array | string,
|
|
5726
5604
|
latestAppHash: Uint8Array | string,
|
|
5727
|
-
latestBlockHeight:
|
|
5605
|
+
latestBlockHeight: string,
|
|
5728
5606
|
earliestBlockHash: Uint8Array | string,
|
|
5729
5607
|
earliestAppHash: Uint8Array | string,
|
|
5730
|
-
earliestBlockHeight:
|
|
5731
|
-
maxPeerBlockHeight:
|
|
5608
|
+
earliestBlockHeight: string,
|
|
5609
|
+
maxPeerBlockHeight: string,
|
|
5732
5610
|
coreChainLockedHeight: number,
|
|
5733
5611
|
}
|
|
5734
5612
|
}
|
|
@@ -5762,29 +5640,29 @@ export namespace GetStatusResponse {
|
|
|
5762
5640
|
}
|
|
5763
5641
|
|
|
5764
5642
|
export class StateSync extends jspb.Message {
|
|
5765
|
-
getTotalSyncedTime():
|
|
5766
|
-
setTotalSyncedTime(value:
|
|
5643
|
+
getTotalSyncedTime(): string;
|
|
5644
|
+
setTotalSyncedTime(value: string): void;
|
|
5767
5645
|
|
|
5768
|
-
getRemainingTime():
|
|
5769
|
-
setRemainingTime(value:
|
|
5646
|
+
getRemainingTime(): string;
|
|
5647
|
+
setRemainingTime(value: string): void;
|
|
5770
5648
|
|
|
5771
5649
|
getTotalSnapshots(): number;
|
|
5772
5650
|
setTotalSnapshots(value: number): void;
|
|
5773
5651
|
|
|
5774
|
-
getChunkProcessAvgTime():
|
|
5775
|
-
setChunkProcessAvgTime(value:
|
|
5652
|
+
getChunkProcessAvgTime(): string;
|
|
5653
|
+
setChunkProcessAvgTime(value: string): void;
|
|
5776
5654
|
|
|
5777
|
-
getSnapshotHeight():
|
|
5778
|
-
setSnapshotHeight(value:
|
|
5655
|
+
getSnapshotHeight(): string;
|
|
5656
|
+
setSnapshotHeight(value: string): void;
|
|
5779
5657
|
|
|
5780
|
-
getSnapshotChunksCount():
|
|
5781
|
-
setSnapshotChunksCount(value:
|
|
5658
|
+
getSnapshotChunksCount(): string;
|
|
5659
|
+
setSnapshotChunksCount(value: string): void;
|
|
5782
5660
|
|
|
5783
|
-
getBackfilledBlocks():
|
|
5784
|
-
setBackfilledBlocks(value:
|
|
5661
|
+
getBackfilledBlocks(): string;
|
|
5662
|
+
setBackfilledBlocks(value: string): void;
|
|
5785
5663
|
|
|
5786
|
-
getBackfillBlocksTotal():
|
|
5787
|
-
setBackfillBlocksTotal(value:
|
|
5664
|
+
getBackfillBlocksTotal(): string;
|
|
5665
|
+
setBackfillBlocksTotal(value: string): void;
|
|
5788
5666
|
|
|
5789
5667
|
serializeBinary(): Uint8Array;
|
|
5790
5668
|
toObject(includeInstance?: boolean): StateSync.AsObject;
|
|
@@ -5798,14 +5676,14 @@ export namespace GetStatusResponse {
|
|
|
5798
5676
|
|
|
5799
5677
|
export namespace StateSync {
|
|
5800
5678
|
export type AsObject = {
|
|
5801
|
-
totalSyncedTime:
|
|
5802
|
-
remainingTime:
|
|
5679
|
+
totalSyncedTime: string,
|
|
5680
|
+
remainingTime: string,
|
|
5803
5681
|
totalSnapshots: number,
|
|
5804
|
-
chunkProcessAvgTime:
|
|
5805
|
-
snapshotHeight:
|
|
5806
|
-
snapshotChunksCount:
|
|
5807
|
-
backfilledBlocks:
|
|
5808
|
-
backfillBlocksTotal:
|
|
5682
|
+
chunkProcessAvgTime: string,
|
|
5683
|
+
snapshotHeight: string,
|
|
5684
|
+
snapshotChunksCount: string,
|
|
5685
|
+
backfilledBlocks: string,
|
|
5686
|
+
backfillBlocksTotal: string,
|
|
5809
5687
|
}
|
|
5810
5688
|
}
|
|
5811
5689
|
}
|
|
@@ -6004,6 +5882,3004 @@ export namespace GetCurrentQuorumsInfoResponse {
|
|
|
6004
5882
|
}
|
|
6005
5883
|
}
|
|
6006
5884
|
|
|
5885
|
+
export class GetIdentityTokenBalancesRequest extends jspb.Message {
|
|
5886
|
+
hasV0(): boolean;
|
|
5887
|
+
clearV0(): void;
|
|
5888
|
+
getV0(): GetIdentityTokenBalancesRequest.GetIdentityTokenBalancesRequestV0 | undefined;
|
|
5889
|
+
setV0(value?: GetIdentityTokenBalancesRequest.GetIdentityTokenBalancesRequestV0): void;
|
|
5890
|
+
|
|
5891
|
+
getVersionCase(): GetIdentityTokenBalancesRequest.VersionCase;
|
|
5892
|
+
serializeBinary(): Uint8Array;
|
|
5893
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesRequest.AsObject;
|
|
5894
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesRequest): GetIdentityTokenBalancesRequest.AsObject;
|
|
5895
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5896
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5897
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesRequest, writer: jspb.BinaryWriter): void;
|
|
5898
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesRequest;
|
|
5899
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesRequest, reader: jspb.BinaryReader): GetIdentityTokenBalancesRequest;
|
|
5900
|
+
}
|
|
5901
|
+
|
|
5902
|
+
export namespace GetIdentityTokenBalancesRequest {
|
|
5903
|
+
export type AsObject = {
|
|
5904
|
+
v0?: GetIdentityTokenBalancesRequest.GetIdentityTokenBalancesRequestV0.AsObject,
|
|
5905
|
+
}
|
|
5906
|
+
|
|
5907
|
+
export class GetIdentityTokenBalancesRequestV0 extends jspb.Message {
|
|
5908
|
+
getIdentityId(): Uint8Array | string;
|
|
5909
|
+
getIdentityId_asU8(): Uint8Array;
|
|
5910
|
+
getIdentityId_asB64(): string;
|
|
5911
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
5912
|
+
|
|
5913
|
+
clearTokenIdsList(): void;
|
|
5914
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
5915
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
5916
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
5917
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
5918
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
5919
|
+
|
|
5920
|
+
getProve(): boolean;
|
|
5921
|
+
setProve(value: boolean): void;
|
|
5922
|
+
|
|
5923
|
+
serializeBinary(): Uint8Array;
|
|
5924
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesRequestV0.AsObject;
|
|
5925
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesRequestV0): GetIdentityTokenBalancesRequestV0.AsObject;
|
|
5926
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5927
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5928
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesRequestV0, writer: jspb.BinaryWriter): void;
|
|
5929
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesRequestV0;
|
|
5930
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesRequestV0, reader: jspb.BinaryReader): GetIdentityTokenBalancesRequestV0;
|
|
5931
|
+
}
|
|
5932
|
+
|
|
5933
|
+
export namespace GetIdentityTokenBalancesRequestV0 {
|
|
5934
|
+
export type AsObject = {
|
|
5935
|
+
identityId: Uint8Array | string,
|
|
5936
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
5937
|
+
prove: boolean,
|
|
5938
|
+
}
|
|
5939
|
+
}
|
|
5940
|
+
|
|
5941
|
+
export enum VersionCase {
|
|
5942
|
+
VERSION_NOT_SET = 0,
|
|
5943
|
+
V0 = 1,
|
|
5944
|
+
}
|
|
5945
|
+
}
|
|
5946
|
+
|
|
5947
|
+
export class GetIdentityTokenBalancesResponse extends jspb.Message {
|
|
5948
|
+
hasV0(): boolean;
|
|
5949
|
+
clearV0(): void;
|
|
5950
|
+
getV0(): GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0 | undefined;
|
|
5951
|
+
setV0(value?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0): void;
|
|
5952
|
+
|
|
5953
|
+
getVersionCase(): GetIdentityTokenBalancesResponse.VersionCase;
|
|
5954
|
+
serializeBinary(): Uint8Array;
|
|
5955
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesResponse.AsObject;
|
|
5956
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesResponse): GetIdentityTokenBalancesResponse.AsObject;
|
|
5957
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5958
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5959
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesResponse, writer: jspb.BinaryWriter): void;
|
|
5960
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesResponse;
|
|
5961
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesResponse, reader: jspb.BinaryReader): GetIdentityTokenBalancesResponse;
|
|
5962
|
+
}
|
|
5963
|
+
|
|
5964
|
+
export namespace GetIdentityTokenBalancesResponse {
|
|
5965
|
+
export type AsObject = {
|
|
5966
|
+
v0?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.AsObject,
|
|
5967
|
+
}
|
|
5968
|
+
|
|
5969
|
+
export class GetIdentityTokenBalancesResponseV0 extends jspb.Message {
|
|
5970
|
+
hasTokenBalances(): boolean;
|
|
5971
|
+
clearTokenBalances(): void;
|
|
5972
|
+
getTokenBalances(): GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalances | undefined;
|
|
5973
|
+
setTokenBalances(value?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalances): void;
|
|
5974
|
+
|
|
5975
|
+
hasProof(): boolean;
|
|
5976
|
+
clearProof(): void;
|
|
5977
|
+
getProof(): Proof | undefined;
|
|
5978
|
+
setProof(value?: Proof): void;
|
|
5979
|
+
|
|
5980
|
+
hasMetadata(): boolean;
|
|
5981
|
+
clearMetadata(): void;
|
|
5982
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
5983
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
5984
|
+
|
|
5985
|
+
getResultCase(): GetIdentityTokenBalancesResponseV0.ResultCase;
|
|
5986
|
+
serializeBinary(): Uint8Array;
|
|
5987
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesResponseV0.AsObject;
|
|
5988
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesResponseV0): GetIdentityTokenBalancesResponseV0.AsObject;
|
|
5989
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
5990
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
5991
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesResponseV0, writer: jspb.BinaryWriter): void;
|
|
5992
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesResponseV0;
|
|
5993
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesResponseV0, reader: jspb.BinaryReader): GetIdentityTokenBalancesResponseV0;
|
|
5994
|
+
}
|
|
5995
|
+
|
|
5996
|
+
export namespace GetIdentityTokenBalancesResponseV0 {
|
|
5997
|
+
export type AsObject = {
|
|
5998
|
+
tokenBalances?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalances.AsObject,
|
|
5999
|
+
proof?: Proof.AsObject,
|
|
6000
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6001
|
+
}
|
|
6002
|
+
|
|
6003
|
+
export class TokenBalanceEntry extends jspb.Message {
|
|
6004
|
+
getTokenId(): Uint8Array | string;
|
|
6005
|
+
getTokenId_asU8(): Uint8Array;
|
|
6006
|
+
getTokenId_asB64(): string;
|
|
6007
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6008
|
+
|
|
6009
|
+
hasBalance(): boolean;
|
|
6010
|
+
clearBalance(): void;
|
|
6011
|
+
getBalance(): number;
|
|
6012
|
+
setBalance(value: number): void;
|
|
6013
|
+
|
|
6014
|
+
serializeBinary(): Uint8Array;
|
|
6015
|
+
toObject(includeInstance?: boolean): TokenBalanceEntry.AsObject;
|
|
6016
|
+
static toObject(includeInstance: boolean, msg: TokenBalanceEntry): TokenBalanceEntry.AsObject;
|
|
6017
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6018
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6019
|
+
static serializeBinaryToWriter(message: TokenBalanceEntry, writer: jspb.BinaryWriter): void;
|
|
6020
|
+
static deserializeBinary(bytes: Uint8Array): TokenBalanceEntry;
|
|
6021
|
+
static deserializeBinaryFromReader(message: TokenBalanceEntry, reader: jspb.BinaryReader): TokenBalanceEntry;
|
|
6022
|
+
}
|
|
6023
|
+
|
|
6024
|
+
export namespace TokenBalanceEntry {
|
|
6025
|
+
export type AsObject = {
|
|
6026
|
+
tokenId: Uint8Array | string,
|
|
6027
|
+
balance: number,
|
|
6028
|
+
}
|
|
6029
|
+
}
|
|
6030
|
+
|
|
6031
|
+
export class TokenBalances extends jspb.Message {
|
|
6032
|
+
clearTokenBalancesList(): void;
|
|
6033
|
+
getTokenBalancesList(): Array<GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry>;
|
|
6034
|
+
setTokenBalancesList(value: Array<GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry>): void;
|
|
6035
|
+
addTokenBalances(value?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry, index?: number): GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry;
|
|
6036
|
+
|
|
6037
|
+
serializeBinary(): Uint8Array;
|
|
6038
|
+
toObject(includeInstance?: boolean): TokenBalances.AsObject;
|
|
6039
|
+
static toObject(includeInstance: boolean, msg: TokenBalances): TokenBalances.AsObject;
|
|
6040
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6041
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6042
|
+
static serializeBinaryToWriter(message: TokenBalances, writer: jspb.BinaryWriter): void;
|
|
6043
|
+
static deserializeBinary(bytes: Uint8Array): TokenBalances;
|
|
6044
|
+
static deserializeBinaryFromReader(message: TokenBalances, reader: jspb.BinaryReader): TokenBalances;
|
|
6045
|
+
}
|
|
6046
|
+
|
|
6047
|
+
export namespace TokenBalances {
|
|
6048
|
+
export type AsObject = {
|
|
6049
|
+
tokenBalancesList: Array<GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry.AsObject>,
|
|
6050
|
+
}
|
|
6051
|
+
}
|
|
6052
|
+
|
|
6053
|
+
export enum ResultCase {
|
|
6054
|
+
RESULT_NOT_SET = 0,
|
|
6055
|
+
TOKEN_BALANCES = 1,
|
|
6056
|
+
PROOF = 2,
|
|
6057
|
+
}
|
|
6058
|
+
}
|
|
6059
|
+
|
|
6060
|
+
export enum VersionCase {
|
|
6061
|
+
VERSION_NOT_SET = 0,
|
|
6062
|
+
V0 = 1,
|
|
6063
|
+
}
|
|
6064
|
+
}
|
|
6065
|
+
|
|
6066
|
+
export class GetIdentitiesTokenBalancesRequest extends jspb.Message {
|
|
6067
|
+
hasV0(): boolean;
|
|
6068
|
+
clearV0(): void;
|
|
6069
|
+
getV0(): GetIdentitiesTokenBalancesRequest.GetIdentitiesTokenBalancesRequestV0 | undefined;
|
|
6070
|
+
setV0(value?: GetIdentitiesTokenBalancesRequest.GetIdentitiesTokenBalancesRequestV0): void;
|
|
6071
|
+
|
|
6072
|
+
getVersionCase(): GetIdentitiesTokenBalancesRequest.VersionCase;
|
|
6073
|
+
serializeBinary(): Uint8Array;
|
|
6074
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesRequest.AsObject;
|
|
6075
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesRequest): GetIdentitiesTokenBalancesRequest.AsObject;
|
|
6076
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6077
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6078
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesRequest, writer: jspb.BinaryWriter): void;
|
|
6079
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesRequest;
|
|
6080
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesRequest, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesRequest;
|
|
6081
|
+
}
|
|
6082
|
+
|
|
6083
|
+
export namespace GetIdentitiesTokenBalancesRequest {
|
|
6084
|
+
export type AsObject = {
|
|
6085
|
+
v0?: GetIdentitiesTokenBalancesRequest.GetIdentitiesTokenBalancesRequestV0.AsObject,
|
|
6086
|
+
}
|
|
6087
|
+
|
|
6088
|
+
export class GetIdentitiesTokenBalancesRequestV0 extends jspb.Message {
|
|
6089
|
+
getTokenId(): Uint8Array | string;
|
|
6090
|
+
getTokenId_asU8(): Uint8Array;
|
|
6091
|
+
getTokenId_asB64(): string;
|
|
6092
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6093
|
+
|
|
6094
|
+
clearIdentityIdsList(): void;
|
|
6095
|
+
getIdentityIdsList(): Array<Uint8Array | string>;
|
|
6096
|
+
getIdentityIdsList_asU8(): Array<Uint8Array>;
|
|
6097
|
+
getIdentityIdsList_asB64(): Array<string>;
|
|
6098
|
+
setIdentityIdsList(value: Array<Uint8Array | string>): void;
|
|
6099
|
+
addIdentityIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6100
|
+
|
|
6101
|
+
getProve(): boolean;
|
|
6102
|
+
setProve(value: boolean): void;
|
|
6103
|
+
|
|
6104
|
+
serializeBinary(): Uint8Array;
|
|
6105
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesRequestV0.AsObject;
|
|
6106
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesRequestV0): GetIdentitiesTokenBalancesRequestV0.AsObject;
|
|
6107
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6108
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6109
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesRequestV0, writer: jspb.BinaryWriter): void;
|
|
6110
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesRequestV0;
|
|
6111
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesRequestV0, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesRequestV0;
|
|
6112
|
+
}
|
|
6113
|
+
|
|
6114
|
+
export namespace GetIdentitiesTokenBalancesRequestV0 {
|
|
6115
|
+
export type AsObject = {
|
|
6116
|
+
tokenId: Uint8Array | string,
|
|
6117
|
+
identityIdsList: Array<Uint8Array | string>,
|
|
6118
|
+
prove: boolean,
|
|
6119
|
+
}
|
|
6120
|
+
}
|
|
6121
|
+
|
|
6122
|
+
export enum VersionCase {
|
|
6123
|
+
VERSION_NOT_SET = 0,
|
|
6124
|
+
V0 = 1,
|
|
6125
|
+
}
|
|
6126
|
+
}
|
|
6127
|
+
|
|
6128
|
+
export class GetIdentitiesTokenBalancesResponse extends jspb.Message {
|
|
6129
|
+
hasV0(): boolean;
|
|
6130
|
+
clearV0(): void;
|
|
6131
|
+
getV0(): GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0 | undefined;
|
|
6132
|
+
setV0(value?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0): void;
|
|
6133
|
+
|
|
6134
|
+
getVersionCase(): GetIdentitiesTokenBalancesResponse.VersionCase;
|
|
6135
|
+
serializeBinary(): Uint8Array;
|
|
6136
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesResponse.AsObject;
|
|
6137
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesResponse): GetIdentitiesTokenBalancesResponse.AsObject;
|
|
6138
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6139
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6140
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesResponse, writer: jspb.BinaryWriter): void;
|
|
6141
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesResponse;
|
|
6142
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesResponse, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesResponse;
|
|
6143
|
+
}
|
|
6144
|
+
|
|
6145
|
+
export namespace GetIdentitiesTokenBalancesResponse {
|
|
6146
|
+
export type AsObject = {
|
|
6147
|
+
v0?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.AsObject,
|
|
6148
|
+
}
|
|
6149
|
+
|
|
6150
|
+
export class GetIdentitiesTokenBalancesResponseV0 extends jspb.Message {
|
|
6151
|
+
hasIdentityTokenBalances(): boolean;
|
|
6152
|
+
clearIdentityTokenBalances(): void;
|
|
6153
|
+
getIdentityTokenBalances(): GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalances | undefined;
|
|
6154
|
+
setIdentityTokenBalances(value?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalances): void;
|
|
6155
|
+
|
|
6156
|
+
hasProof(): boolean;
|
|
6157
|
+
clearProof(): void;
|
|
6158
|
+
getProof(): Proof | undefined;
|
|
6159
|
+
setProof(value?: Proof): void;
|
|
6160
|
+
|
|
6161
|
+
hasMetadata(): boolean;
|
|
6162
|
+
clearMetadata(): void;
|
|
6163
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6164
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6165
|
+
|
|
6166
|
+
getResultCase(): GetIdentitiesTokenBalancesResponseV0.ResultCase;
|
|
6167
|
+
serializeBinary(): Uint8Array;
|
|
6168
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesResponseV0.AsObject;
|
|
6169
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesResponseV0): GetIdentitiesTokenBalancesResponseV0.AsObject;
|
|
6170
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6171
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6172
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesResponseV0, writer: jspb.BinaryWriter): void;
|
|
6173
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesResponseV0;
|
|
6174
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesResponseV0, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesResponseV0;
|
|
6175
|
+
}
|
|
6176
|
+
|
|
6177
|
+
export namespace GetIdentitiesTokenBalancesResponseV0 {
|
|
6178
|
+
export type AsObject = {
|
|
6179
|
+
identityTokenBalances?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalances.AsObject,
|
|
6180
|
+
proof?: Proof.AsObject,
|
|
6181
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6182
|
+
}
|
|
6183
|
+
|
|
6184
|
+
export class IdentityTokenBalanceEntry extends jspb.Message {
|
|
6185
|
+
getIdentityId(): Uint8Array | string;
|
|
6186
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6187
|
+
getIdentityId_asB64(): string;
|
|
6188
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6189
|
+
|
|
6190
|
+
hasBalance(): boolean;
|
|
6191
|
+
clearBalance(): void;
|
|
6192
|
+
getBalance(): number;
|
|
6193
|
+
setBalance(value: number): void;
|
|
6194
|
+
|
|
6195
|
+
serializeBinary(): Uint8Array;
|
|
6196
|
+
toObject(includeInstance?: boolean): IdentityTokenBalanceEntry.AsObject;
|
|
6197
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenBalanceEntry): IdentityTokenBalanceEntry.AsObject;
|
|
6198
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6199
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6200
|
+
static serializeBinaryToWriter(message: IdentityTokenBalanceEntry, writer: jspb.BinaryWriter): void;
|
|
6201
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenBalanceEntry;
|
|
6202
|
+
static deserializeBinaryFromReader(message: IdentityTokenBalanceEntry, reader: jspb.BinaryReader): IdentityTokenBalanceEntry;
|
|
6203
|
+
}
|
|
6204
|
+
|
|
6205
|
+
export namespace IdentityTokenBalanceEntry {
|
|
6206
|
+
export type AsObject = {
|
|
6207
|
+
identityId: Uint8Array | string,
|
|
6208
|
+
balance: number,
|
|
6209
|
+
}
|
|
6210
|
+
}
|
|
6211
|
+
|
|
6212
|
+
export class IdentityTokenBalances extends jspb.Message {
|
|
6213
|
+
clearIdentityTokenBalancesList(): void;
|
|
6214
|
+
getIdentityTokenBalancesList(): Array<GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry>;
|
|
6215
|
+
setIdentityTokenBalancesList(value: Array<GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry>): void;
|
|
6216
|
+
addIdentityTokenBalances(value?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry, index?: number): GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry;
|
|
6217
|
+
|
|
6218
|
+
serializeBinary(): Uint8Array;
|
|
6219
|
+
toObject(includeInstance?: boolean): IdentityTokenBalances.AsObject;
|
|
6220
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenBalances): IdentityTokenBalances.AsObject;
|
|
6221
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6222
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6223
|
+
static serializeBinaryToWriter(message: IdentityTokenBalances, writer: jspb.BinaryWriter): void;
|
|
6224
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenBalances;
|
|
6225
|
+
static deserializeBinaryFromReader(message: IdentityTokenBalances, reader: jspb.BinaryReader): IdentityTokenBalances;
|
|
6226
|
+
}
|
|
6227
|
+
|
|
6228
|
+
export namespace IdentityTokenBalances {
|
|
6229
|
+
export type AsObject = {
|
|
6230
|
+
identityTokenBalancesList: Array<GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry.AsObject>,
|
|
6231
|
+
}
|
|
6232
|
+
}
|
|
6233
|
+
|
|
6234
|
+
export enum ResultCase {
|
|
6235
|
+
RESULT_NOT_SET = 0,
|
|
6236
|
+
IDENTITY_TOKEN_BALANCES = 1,
|
|
6237
|
+
PROOF = 2,
|
|
6238
|
+
}
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
export enum VersionCase {
|
|
6242
|
+
VERSION_NOT_SET = 0,
|
|
6243
|
+
V0 = 1,
|
|
6244
|
+
}
|
|
6245
|
+
}
|
|
6246
|
+
|
|
6247
|
+
export class GetIdentityTokenInfosRequest extends jspb.Message {
|
|
6248
|
+
hasV0(): boolean;
|
|
6249
|
+
clearV0(): void;
|
|
6250
|
+
getV0(): GetIdentityTokenInfosRequest.GetIdentityTokenInfosRequestV0 | undefined;
|
|
6251
|
+
setV0(value?: GetIdentityTokenInfosRequest.GetIdentityTokenInfosRequestV0): void;
|
|
6252
|
+
|
|
6253
|
+
getVersionCase(): GetIdentityTokenInfosRequest.VersionCase;
|
|
6254
|
+
serializeBinary(): Uint8Array;
|
|
6255
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosRequest.AsObject;
|
|
6256
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosRequest): GetIdentityTokenInfosRequest.AsObject;
|
|
6257
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6258
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6259
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosRequest, writer: jspb.BinaryWriter): void;
|
|
6260
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosRequest;
|
|
6261
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosRequest, reader: jspb.BinaryReader): GetIdentityTokenInfosRequest;
|
|
6262
|
+
}
|
|
6263
|
+
|
|
6264
|
+
export namespace GetIdentityTokenInfosRequest {
|
|
6265
|
+
export type AsObject = {
|
|
6266
|
+
v0?: GetIdentityTokenInfosRequest.GetIdentityTokenInfosRequestV0.AsObject,
|
|
6267
|
+
}
|
|
6268
|
+
|
|
6269
|
+
export class GetIdentityTokenInfosRequestV0 extends jspb.Message {
|
|
6270
|
+
getIdentityId(): Uint8Array | string;
|
|
6271
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6272
|
+
getIdentityId_asB64(): string;
|
|
6273
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6274
|
+
|
|
6275
|
+
clearTokenIdsList(): void;
|
|
6276
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
6277
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
6278
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
6279
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
6280
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6281
|
+
|
|
6282
|
+
getProve(): boolean;
|
|
6283
|
+
setProve(value: boolean): void;
|
|
6284
|
+
|
|
6285
|
+
serializeBinary(): Uint8Array;
|
|
6286
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosRequestV0.AsObject;
|
|
6287
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosRequestV0): GetIdentityTokenInfosRequestV0.AsObject;
|
|
6288
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6289
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6290
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
6291
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosRequestV0;
|
|
6292
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosRequestV0, reader: jspb.BinaryReader): GetIdentityTokenInfosRequestV0;
|
|
6293
|
+
}
|
|
6294
|
+
|
|
6295
|
+
export namespace GetIdentityTokenInfosRequestV0 {
|
|
6296
|
+
export type AsObject = {
|
|
6297
|
+
identityId: Uint8Array | string,
|
|
6298
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
6299
|
+
prove: boolean,
|
|
6300
|
+
}
|
|
6301
|
+
}
|
|
6302
|
+
|
|
6303
|
+
export enum VersionCase {
|
|
6304
|
+
VERSION_NOT_SET = 0,
|
|
6305
|
+
V0 = 1,
|
|
6306
|
+
}
|
|
6307
|
+
}
|
|
6308
|
+
|
|
6309
|
+
export class GetIdentityTokenInfosResponse extends jspb.Message {
|
|
6310
|
+
hasV0(): boolean;
|
|
6311
|
+
clearV0(): void;
|
|
6312
|
+
getV0(): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0 | undefined;
|
|
6313
|
+
setV0(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0): void;
|
|
6314
|
+
|
|
6315
|
+
getVersionCase(): GetIdentityTokenInfosResponse.VersionCase;
|
|
6316
|
+
serializeBinary(): Uint8Array;
|
|
6317
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosResponse.AsObject;
|
|
6318
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosResponse): GetIdentityTokenInfosResponse.AsObject;
|
|
6319
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6320
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6321
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosResponse, writer: jspb.BinaryWriter): void;
|
|
6322
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosResponse;
|
|
6323
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosResponse, reader: jspb.BinaryReader): GetIdentityTokenInfosResponse;
|
|
6324
|
+
}
|
|
6325
|
+
|
|
6326
|
+
export namespace GetIdentityTokenInfosResponse {
|
|
6327
|
+
export type AsObject = {
|
|
6328
|
+
v0?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.AsObject,
|
|
6329
|
+
}
|
|
6330
|
+
|
|
6331
|
+
export class GetIdentityTokenInfosResponseV0 extends jspb.Message {
|
|
6332
|
+
hasTokenInfos(): boolean;
|
|
6333
|
+
clearTokenInfos(): void;
|
|
6334
|
+
getTokenInfos(): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfos | undefined;
|
|
6335
|
+
setTokenInfos(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfos): void;
|
|
6336
|
+
|
|
6337
|
+
hasProof(): boolean;
|
|
6338
|
+
clearProof(): void;
|
|
6339
|
+
getProof(): Proof | undefined;
|
|
6340
|
+
setProof(value?: Proof): void;
|
|
6341
|
+
|
|
6342
|
+
hasMetadata(): boolean;
|
|
6343
|
+
clearMetadata(): void;
|
|
6344
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6345
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6346
|
+
|
|
6347
|
+
getResultCase(): GetIdentityTokenInfosResponseV0.ResultCase;
|
|
6348
|
+
serializeBinary(): Uint8Array;
|
|
6349
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosResponseV0.AsObject;
|
|
6350
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosResponseV0): GetIdentityTokenInfosResponseV0.AsObject;
|
|
6351
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6352
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6353
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
6354
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosResponseV0;
|
|
6355
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosResponseV0, reader: jspb.BinaryReader): GetIdentityTokenInfosResponseV0;
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6358
|
+
export namespace GetIdentityTokenInfosResponseV0 {
|
|
6359
|
+
export type AsObject = {
|
|
6360
|
+
tokenInfos?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfos.AsObject,
|
|
6361
|
+
proof?: Proof.AsObject,
|
|
6362
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6363
|
+
}
|
|
6364
|
+
|
|
6365
|
+
export class TokenIdentityInfoEntry extends jspb.Message {
|
|
6366
|
+
getFrozen(): boolean;
|
|
6367
|
+
setFrozen(value: boolean): void;
|
|
6368
|
+
|
|
6369
|
+
serializeBinary(): Uint8Array;
|
|
6370
|
+
toObject(includeInstance?: boolean): TokenIdentityInfoEntry.AsObject;
|
|
6371
|
+
static toObject(includeInstance: boolean, msg: TokenIdentityInfoEntry): TokenIdentityInfoEntry.AsObject;
|
|
6372
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6373
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6374
|
+
static serializeBinaryToWriter(message: TokenIdentityInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6375
|
+
static deserializeBinary(bytes: Uint8Array): TokenIdentityInfoEntry;
|
|
6376
|
+
static deserializeBinaryFromReader(message: TokenIdentityInfoEntry, reader: jspb.BinaryReader): TokenIdentityInfoEntry;
|
|
6377
|
+
}
|
|
6378
|
+
|
|
6379
|
+
export namespace TokenIdentityInfoEntry {
|
|
6380
|
+
export type AsObject = {
|
|
6381
|
+
frozen: boolean,
|
|
6382
|
+
}
|
|
6383
|
+
}
|
|
6384
|
+
|
|
6385
|
+
export class TokenInfoEntry extends jspb.Message {
|
|
6386
|
+
getTokenId(): Uint8Array | string;
|
|
6387
|
+
getTokenId_asU8(): Uint8Array;
|
|
6388
|
+
getTokenId_asB64(): string;
|
|
6389
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6390
|
+
|
|
6391
|
+
hasInfo(): boolean;
|
|
6392
|
+
clearInfo(): void;
|
|
6393
|
+
getInfo(): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenIdentityInfoEntry | undefined;
|
|
6394
|
+
setInfo(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenIdentityInfoEntry): void;
|
|
6395
|
+
|
|
6396
|
+
serializeBinary(): Uint8Array;
|
|
6397
|
+
toObject(includeInstance?: boolean): TokenInfoEntry.AsObject;
|
|
6398
|
+
static toObject(includeInstance: boolean, msg: TokenInfoEntry): TokenInfoEntry.AsObject;
|
|
6399
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6400
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6401
|
+
static serializeBinaryToWriter(message: TokenInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6402
|
+
static deserializeBinary(bytes: Uint8Array): TokenInfoEntry;
|
|
6403
|
+
static deserializeBinaryFromReader(message: TokenInfoEntry, reader: jspb.BinaryReader): TokenInfoEntry;
|
|
6404
|
+
}
|
|
6405
|
+
|
|
6406
|
+
export namespace TokenInfoEntry {
|
|
6407
|
+
export type AsObject = {
|
|
6408
|
+
tokenId: Uint8Array | string,
|
|
6409
|
+
info?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenIdentityInfoEntry.AsObject,
|
|
6410
|
+
}
|
|
6411
|
+
}
|
|
6412
|
+
|
|
6413
|
+
export class TokenInfos extends jspb.Message {
|
|
6414
|
+
clearTokenInfosList(): void;
|
|
6415
|
+
getTokenInfosList(): Array<GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry>;
|
|
6416
|
+
setTokenInfosList(value: Array<GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry>): void;
|
|
6417
|
+
addTokenInfos(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry, index?: number): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry;
|
|
6418
|
+
|
|
6419
|
+
serializeBinary(): Uint8Array;
|
|
6420
|
+
toObject(includeInstance?: boolean): TokenInfos.AsObject;
|
|
6421
|
+
static toObject(includeInstance: boolean, msg: TokenInfos): TokenInfos.AsObject;
|
|
6422
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6423
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6424
|
+
static serializeBinaryToWriter(message: TokenInfos, writer: jspb.BinaryWriter): void;
|
|
6425
|
+
static deserializeBinary(bytes: Uint8Array): TokenInfos;
|
|
6426
|
+
static deserializeBinaryFromReader(message: TokenInfos, reader: jspb.BinaryReader): TokenInfos;
|
|
6427
|
+
}
|
|
6428
|
+
|
|
6429
|
+
export namespace TokenInfos {
|
|
6430
|
+
export type AsObject = {
|
|
6431
|
+
tokenInfosList: Array<GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry.AsObject>,
|
|
6432
|
+
}
|
|
6433
|
+
}
|
|
6434
|
+
|
|
6435
|
+
export enum ResultCase {
|
|
6436
|
+
RESULT_NOT_SET = 0,
|
|
6437
|
+
TOKEN_INFOS = 1,
|
|
6438
|
+
PROOF = 2,
|
|
6439
|
+
}
|
|
6440
|
+
}
|
|
6441
|
+
|
|
6442
|
+
export enum VersionCase {
|
|
6443
|
+
VERSION_NOT_SET = 0,
|
|
6444
|
+
V0 = 1,
|
|
6445
|
+
}
|
|
6446
|
+
}
|
|
6447
|
+
|
|
6448
|
+
export class GetIdentitiesTokenInfosRequest extends jspb.Message {
|
|
6449
|
+
hasV0(): boolean;
|
|
6450
|
+
clearV0(): void;
|
|
6451
|
+
getV0(): GetIdentitiesTokenInfosRequest.GetIdentitiesTokenInfosRequestV0 | undefined;
|
|
6452
|
+
setV0(value?: GetIdentitiesTokenInfosRequest.GetIdentitiesTokenInfosRequestV0): void;
|
|
6453
|
+
|
|
6454
|
+
getVersionCase(): GetIdentitiesTokenInfosRequest.VersionCase;
|
|
6455
|
+
serializeBinary(): Uint8Array;
|
|
6456
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosRequest.AsObject;
|
|
6457
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosRequest): GetIdentitiesTokenInfosRequest.AsObject;
|
|
6458
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6459
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6460
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosRequest, writer: jspb.BinaryWriter): void;
|
|
6461
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosRequest;
|
|
6462
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosRequest, reader: jspb.BinaryReader): GetIdentitiesTokenInfosRequest;
|
|
6463
|
+
}
|
|
6464
|
+
|
|
6465
|
+
export namespace GetIdentitiesTokenInfosRequest {
|
|
6466
|
+
export type AsObject = {
|
|
6467
|
+
v0?: GetIdentitiesTokenInfosRequest.GetIdentitiesTokenInfosRequestV0.AsObject,
|
|
6468
|
+
}
|
|
6469
|
+
|
|
6470
|
+
export class GetIdentitiesTokenInfosRequestV0 extends jspb.Message {
|
|
6471
|
+
getTokenId(): Uint8Array | string;
|
|
6472
|
+
getTokenId_asU8(): Uint8Array;
|
|
6473
|
+
getTokenId_asB64(): string;
|
|
6474
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6475
|
+
|
|
6476
|
+
clearIdentityIdsList(): void;
|
|
6477
|
+
getIdentityIdsList(): Array<Uint8Array | string>;
|
|
6478
|
+
getIdentityIdsList_asU8(): Array<Uint8Array>;
|
|
6479
|
+
getIdentityIdsList_asB64(): Array<string>;
|
|
6480
|
+
setIdentityIdsList(value: Array<Uint8Array | string>): void;
|
|
6481
|
+
addIdentityIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6482
|
+
|
|
6483
|
+
getProve(): boolean;
|
|
6484
|
+
setProve(value: boolean): void;
|
|
6485
|
+
|
|
6486
|
+
serializeBinary(): Uint8Array;
|
|
6487
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosRequestV0.AsObject;
|
|
6488
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosRequestV0): GetIdentitiesTokenInfosRequestV0.AsObject;
|
|
6489
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6490
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6491
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
6492
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosRequestV0;
|
|
6493
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosRequestV0, reader: jspb.BinaryReader): GetIdentitiesTokenInfosRequestV0;
|
|
6494
|
+
}
|
|
6495
|
+
|
|
6496
|
+
export namespace GetIdentitiesTokenInfosRequestV0 {
|
|
6497
|
+
export type AsObject = {
|
|
6498
|
+
tokenId: Uint8Array | string,
|
|
6499
|
+
identityIdsList: Array<Uint8Array | string>,
|
|
6500
|
+
prove: boolean,
|
|
6501
|
+
}
|
|
6502
|
+
}
|
|
6503
|
+
|
|
6504
|
+
export enum VersionCase {
|
|
6505
|
+
VERSION_NOT_SET = 0,
|
|
6506
|
+
V0 = 1,
|
|
6507
|
+
}
|
|
6508
|
+
}
|
|
6509
|
+
|
|
6510
|
+
export class GetIdentitiesTokenInfosResponse extends jspb.Message {
|
|
6511
|
+
hasV0(): boolean;
|
|
6512
|
+
clearV0(): void;
|
|
6513
|
+
getV0(): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0 | undefined;
|
|
6514
|
+
setV0(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0): void;
|
|
6515
|
+
|
|
6516
|
+
getVersionCase(): GetIdentitiesTokenInfosResponse.VersionCase;
|
|
6517
|
+
serializeBinary(): Uint8Array;
|
|
6518
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosResponse.AsObject;
|
|
6519
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosResponse): GetIdentitiesTokenInfosResponse.AsObject;
|
|
6520
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6521
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6522
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosResponse, writer: jspb.BinaryWriter): void;
|
|
6523
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosResponse;
|
|
6524
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosResponse, reader: jspb.BinaryReader): GetIdentitiesTokenInfosResponse;
|
|
6525
|
+
}
|
|
6526
|
+
|
|
6527
|
+
export namespace GetIdentitiesTokenInfosResponse {
|
|
6528
|
+
export type AsObject = {
|
|
6529
|
+
v0?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.AsObject,
|
|
6530
|
+
}
|
|
6531
|
+
|
|
6532
|
+
export class GetIdentitiesTokenInfosResponseV0 extends jspb.Message {
|
|
6533
|
+
hasIdentityTokenInfos(): boolean;
|
|
6534
|
+
clearIdentityTokenInfos(): void;
|
|
6535
|
+
getIdentityTokenInfos(): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.IdentityTokenInfos | undefined;
|
|
6536
|
+
setIdentityTokenInfos(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.IdentityTokenInfos): void;
|
|
6537
|
+
|
|
6538
|
+
hasProof(): boolean;
|
|
6539
|
+
clearProof(): void;
|
|
6540
|
+
getProof(): Proof | undefined;
|
|
6541
|
+
setProof(value?: Proof): void;
|
|
6542
|
+
|
|
6543
|
+
hasMetadata(): boolean;
|
|
6544
|
+
clearMetadata(): void;
|
|
6545
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6546
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6547
|
+
|
|
6548
|
+
getResultCase(): GetIdentitiesTokenInfosResponseV0.ResultCase;
|
|
6549
|
+
serializeBinary(): Uint8Array;
|
|
6550
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosResponseV0.AsObject;
|
|
6551
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosResponseV0): GetIdentitiesTokenInfosResponseV0.AsObject;
|
|
6552
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6553
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6554
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
6555
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosResponseV0;
|
|
6556
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosResponseV0, reader: jspb.BinaryReader): GetIdentitiesTokenInfosResponseV0;
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6559
|
+
export namespace GetIdentitiesTokenInfosResponseV0 {
|
|
6560
|
+
export type AsObject = {
|
|
6561
|
+
identityTokenInfos?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.IdentityTokenInfos.AsObject,
|
|
6562
|
+
proof?: Proof.AsObject,
|
|
6563
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6564
|
+
}
|
|
6565
|
+
|
|
6566
|
+
export class TokenIdentityInfoEntry extends jspb.Message {
|
|
6567
|
+
getFrozen(): boolean;
|
|
6568
|
+
setFrozen(value: boolean): void;
|
|
6569
|
+
|
|
6570
|
+
serializeBinary(): Uint8Array;
|
|
6571
|
+
toObject(includeInstance?: boolean): TokenIdentityInfoEntry.AsObject;
|
|
6572
|
+
static toObject(includeInstance: boolean, msg: TokenIdentityInfoEntry): TokenIdentityInfoEntry.AsObject;
|
|
6573
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6574
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6575
|
+
static serializeBinaryToWriter(message: TokenIdentityInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6576
|
+
static deserializeBinary(bytes: Uint8Array): TokenIdentityInfoEntry;
|
|
6577
|
+
static deserializeBinaryFromReader(message: TokenIdentityInfoEntry, reader: jspb.BinaryReader): TokenIdentityInfoEntry;
|
|
6578
|
+
}
|
|
6579
|
+
|
|
6580
|
+
export namespace TokenIdentityInfoEntry {
|
|
6581
|
+
export type AsObject = {
|
|
6582
|
+
frozen: boolean,
|
|
6583
|
+
}
|
|
6584
|
+
}
|
|
6585
|
+
|
|
6586
|
+
export class TokenInfoEntry extends jspb.Message {
|
|
6587
|
+
getIdentityId(): Uint8Array | string;
|
|
6588
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6589
|
+
getIdentityId_asB64(): string;
|
|
6590
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6591
|
+
|
|
6592
|
+
hasInfo(): boolean;
|
|
6593
|
+
clearInfo(): void;
|
|
6594
|
+
getInfo(): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenIdentityInfoEntry | undefined;
|
|
6595
|
+
setInfo(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenIdentityInfoEntry): void;
|
|
6596
|
+
|
|
6597
|
+
serializeBinary(): Uint8Array;
|
|
6598
|
+
toObject(includeInstance?: boolean): TokenInfoEntry.AsObject;
|
|
6599
|
+
static toObject(includeInstance: boolean, msg: TokenInfoEntry): TokenInfoEntry.AsObject;
|
|
6600
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6601
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6602
|
+
static serializeBinaryToWriter(message: TokenInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6603
|
+
static deserializeBinary(bytes: Uint8Array): TokenInfoEntry;
|
|
6604
|
+
static deserializeBinaryFromReader(message: TokenInfoEntry, reader: jspb.BinaryReader): TokenInfoEntry;
|
|
6605
|
+
}
|
|
6606
|
+
|
|
6607
|
+
export namespace TokenInfoEntry {
|
|
6608
|
+
export type AsObject = {
|
|
6609
|
+
identityId: Uint8Array | string,
|
|
6610
|
+
info?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenIdentityInfoEntry.AsObject,
|
|
6611
|
+
}
|
|
6612
|
+
}
|
|
6613
|
+
|
|
6614
|
+
export class IdentityTokenInfos extends jspb.Message {
|
|
6615
|
+
clearTokenInfosList(): void;
|
|
6616
|
+
getTokenInfosList(): Array<GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry>;
|
|
6617
|
+
setTokenInfosList(value: Array<GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry>): void;
|
|
6618
|
+
addTokenInfos(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry, index?: number): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry;
|
|
6619
|
+
|
|
6620
|
+
serializeBinary(): Uint8Array;
|
|
6621
|
+
toObject(includeInstance?: boolean): IdentityTokenInfos.AsObject;
|
|
6622
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenInfos): IdentityTokenInfos.AsObject;
|
|
6623
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6624
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6625
|
+
static serializeBinaryToWriter(message: IdentityTokenInfos, writer: jspb.BinaryWriter): void;
|
|
6626
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenInfos;
|
|
6627
|
+
static deserializeBinaryFromReader(message: IdentityTokenInfos, reader: jspb.BinaryReader): IdentityTokenInfos;
|
|
6628
|
+
}
|
|
6629
|
+
|
|
6630
|
+
export namespace IdentityTokenInfos {
|
|
6631
|
+
export type AsObject = {
|
|
6632
|
+
tokenInfosList: Array<GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry.AsObject>,
|
|
6633
|
+
}
|
|
6634
|
+
}
|
|
6635
|
+
|
|
6636
|
+
export enum ResultCase {
|
|
6637
|
+
RESULT_NOT_SET = 0,
|
|
6638
|
+
IDENTITY_TOKEN_INFOS = 1,
|
|
6639
|
+
PROOF = 2,
|
|
6640
|
+
}
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6643
|
+
export enum VersionCase {
|
|
6644
|
+
VERSION_NOT_SET = 0,
|
|
6645
|
+
V0 = 1,
|
|
6646
|
+
}
|
|
6647
|
+
}
|
|
6648
|
+
|
|
6649
|
+
export class GetTokenStatusesRequest extends jspb.Message {
|
|
6650
|
+
hasV0(): boolean;
|
|
6651
|
+
clearV0(): void;
|
|
6652
|
+
getV0(): GetTokenStatusesRequest.GetTokenStatusesRequestV0 | undefined;
|
|
6653
|
+
setV0(value?: GetTokenStatusesRequest.GetTokenStatusesRequestV0): void;
|
|
6654
|
+
|
|
6655
|
+
getVersionCase(): GetTokenStatusesRequest.VersionCase;
|
|
6656
|
+
serializeBinary(): Uint8Array;
|
|
6657
|
+
toObject(includeInstance?: boolean): GetTokenStatusesRequest.AsObject;
|
|
6658
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesRequest): GetTokenStatusesRequest.AsObject;
|
|
6659
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6660
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6661
|
+
static serializeBinaryToWriter(message: GetTokenStatusesRequest, writer: jspb.BinaryWriter): void;
|
|
6662
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesRequest;
|
|
6663
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesRequest, reader: jspb.BinaryReader): GetTokenStatusesRequest;
|
|
6664
|
+
}
|
|
6665
|
+
|
|
6666
|
+
export namespace GetTokenStatusesRequest {
|
|
6667
|
+
export type AsObject = {
|
|
6668
|
+
v0?: GetTokenStatusesRequest.GetTokenStatusesRequestV0.AsObject,
|
|
6669
|
+
}
|
|
6670
|
+
|
|
6671
|
+
export class GetTokenStatusesRequestV0 extends jspb.Message {
|
|
6672
|
+
clearTokenIdsList(): void;
|
|
6673
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
6674
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
6675
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
6676
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
6677
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6678
|
+
|
|
6679
|
+
getProve(): boolean;
|
|
6680
|
+
setProve(value: boolean): void;
|
|
6681
|
+
|
|
6682
|
+
serializeBinary(): Uint8Array;
|
|
6683
|
+
toObject(includeInstance?: boolean): GetTokenStatusesRequestV0.AsObject;
|
|
6684
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesRequestV0): GetTokenStatusesRequestV0.AsObject;
|
|
6685
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6686
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6687
|
+
static serializeBinaryToWriter(message: GetTokenStatusesRequestV0, writer: jspb.BinaryWriter): void;
|
|
6688
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesRequestV0;
|
|
6689
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesRequestV0, reader: jspb.BinaryReader): GetTokenStatusesRequestV0;
|
|
6690
|
+
}
|
|
6691
|
+
|
|
6692
|
+
export namespace GetTokenStatusesRequestV0 {
|
|
6693
|
+
export type AsObject = {
|
|
6694
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
6695
|
+
prove: boolean,
|
|
6696
|
+
}
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
export enum VersionCase {
|
|
6700
|
+
VERSION_NOT_SET = 0,
|
|
6701
|
+
V0 = 1,
|
|
6702
|
+
}
|
|
6703
|
+
}
|
|
6704
|
+
|
|
6705
|
+
export class GetTokenStatusesResponse extends jspb.Message {
|
|
6706
|
+
hasV0(): boolean;
|
|
6707
|
+
clearV0(): void;
|
|
6708
|
+
getV0(): GetTokenStatusesResponse.GetTokenStatusesResponseV0 | undefined;
|
|
6709
|
+
setV0(value?: GetTokenStatusesResponse.GetTokenStatusesResponseV0): void;
|
|
6710
|
+
|
|
6711
|
+
getVersionCase(): GetTokenStatusesResponse.VersionCase;
|
|
6712
|
+
serializeBinary(): Uint8Array;
|
|
6713
|
+
toObject(includeInstance?: boolean): GetTokenStatusesResponse.AsObject;
|
|
6714
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesResponse): GetTokenStatusesResponse.AsObject;
|
|
6715
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6716
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6717
|
+
static serializeBinaryToWriter(message: GetTokenStatusesResponse, writer: jspb.BinaryWriter): void;
|
|
6718
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesResponse;
|
|
6719
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesResponse, reader: jspb.BinaryReader): GetTokenStatusesResponse;
|
|
6720
|
+
}
|
|
6721
|
+
|
|
6722
|
+
export namespace GetTokenStatusesResponse {
|
|
6723
|
+
export type AsObject = {
|
|
6724
|
+
v0?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.AsObject,
|
|
6725
|
+
}
|
|
6726
|
+
|
|
6727
|
+
export class GetTokenStatusesResponseV0 extends jspb.Message {
|
|
6728
|
+
hasTokenStatuses(): boolean;
|
|
6729
|
+
clearTokenStatuses(): void;
|
|
6730
|
+
getTokenStatuses(): GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatuses | undefined;
|
|
6731
|
+
setTokenStatuses(value?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatuses): void;
|
|
6732
|
+
|
|
6733
|
+
hasProof(): boolean;
|
|
6734
|
+
clearProof(): void;
|
|
6735
|
+
getProof(): Proof | undefined;
|
|
6736
|
+
setProof(value?: Proof): void;
|
|
6737
|
+
|
|
6738
|
+
hasMetadata(): boolean;
|
|
6739
|
+
clearMetadata(): void;
|
|
6740
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6741
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6742
|
+
|
|
6743
|
+
getResultCase(): GetTokenStatusesResponseV0.ResultCase;
|
|
6744
|
+
serializeBinary(): Uint8Array;
|
|
6745
|
+
toObject(includeInstance?: boolean): GetTokenStatusesResponseV0.AsObject;
|
|
6746
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesResponseV0): GetTokenStatusesResponseV0.AsObject;
|
|
6747
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6748
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6749
|
+
static serializeBinaryToWriter(message: GetTokenStatusesResponseV0, writer: jspb.BinaryWriter): void;
|
|
6750
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesResponseV0;
|
|
6751
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesResponseV0, reader: jspb.BinaryReader): GetTokenStatusesResponseV0;
|
|
6752
|
+
}
|
|
6753
|
+
|
|
6754
|
+
export namespace GetTokenStatusesResponseV0 {
|
|
6755
|
+
export type AsObject = {
|
|
6756
|
+
tokenStatuses?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatuses.AsObject,
|
|
6757
|
+
proof?: Proof.AsObject,
|
|
6758
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6759
|
+
}
|
|
6760
|
+
|
|
6761
|
+
export class TokenStatusEntry extends jspb.Message {
|
|
6762
|
+
getTokenId(): Uint8Array | string;
|
|
6763
|
+
getTokenId_asU8(): Uint8Array;
|
|
6764
|
+
getTokenId_asB64(): string;
|
|
6765
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6766
|
+
|
|
6767
|
+
hasPaused(): boolean;
|
|
6768
|
+
clearPaused(): void;
|
|
6769
|
+
getPaused(): boolean;
|
|
6770
|
+
setPaused(value: boolean): void;
|
|
6771
|
+
|
|
6772
|
+
serializeBinary(): Uint8Array;
|
|
6773
|
+
toObject(includeInstance?: boolean): TokenStatusEntry.AsObject;
|
|
6774
|
+
static toObject(includeInstance: boolean, msg: TokenStatusEntry): TokenStatusEntry.AsObject;
|
|
6775
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6776
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6777
|
+
static serializeBinaryToWriter(message: TokenStatusEntry, writer: jspb.BinaryWriter): void;
|
|
6778
|
+
static deserializeBinary(bytes: Uint8Array): TokenStatusEntry;
|
|
6779
|
+
static deserializeBinaryFromReader(message: TokenStatusEntry, reader: jspb.BinaryReader): TokenStatusEntry;
|
|
6780
|
+
}
|
|
6781
|
+
|
|
6782
|
+
export namespace TokenStatusEntry {
|
|
6783
|
+
export type AsObject = {
|
|
6784
|
+
tokenId: Uint8Array | string,
|
|
6785
|
+
paused: boolean,
|
|
6786
|
+
}
|
|
6787
|
+
}
|
|
6788
|
+
|
|
6789
|
+
export class TokenStatuses extends jspb.Message {
|
|
6790
|
+
clearTokenStatusesList(): void;
|
|
6791
|
+
getTokenStatusesList(): Array<GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry>;
|
|
6792
|
+
setTokenStatusesList(value: Array<GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry>): void;
|
|
6793
|
+
addTokenStatuses(value?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry, index?: number): GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry;
|
|
6794
|
+
|
|
6795
|
+
serializeBinary(): Uint8Array;
|
|
6796
|
+
toObject(includeInstance?: boolean): TokenStatuses.AsObject;
|
|
6797
|
+
static toObject(includeInstance: boolean, msg: TokenStatuses): TokenStatuses.AsObject;
|
|
6798
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6799
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6800
|
+
static serializeBinaryToWriter(message: TokenStatuses, writer: jspb.BinaryWriter): void;
|
|
6801
|
+
static deserializeBinary(bytes: Uint8Array): TokenStatuses;
|
|
6802
|
+
static deserializeBinaryFromReader(message: TokenStatuses, reader: jspb.BinaryReader): TokenStatuses;
|
|
6803
|
+
}
|
|
6804
|
+
|
|
6805
|
+
export namespace TokenStatuses {
|
|
6806
|
+
export type AsObject = {
|
|
6807
|
+
tokenStatusesList: Array<GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry.AsObject>,
|
|
6808
|
+
}
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6811
|
+
export enum ResultCase {
|
|
6812
|
+
RESULT_NOT_SET = 0,
|
|
6813
|
+
TOKEN_STATUSES = 1,
|
|
6814
|
+
PROOF = 2,
|
|
6815
|
+
}
|
|
6816
|
+
}
|
|
6817
|
+
|
|
6818
|
+
export enum VersionCase {
|
|
6819
|
+
VERSION_NOT_SET = 0,
|
|
6820
|
+
V0 = 1,
|
|
6821
|
+
}
|
|
6822
|
+
}
|
|
6823
|
+
|
|
6824
|
+
export class GetTokenDirectPurchasePricesResponse extends jspb.Message {
|
|
6825
|
+
hasV0(): boolean;
|
|
6826
|
+
clearV0(): void;
|
|
6827
|
+
getV0(): GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0 | undefined;
|
|
6828
|
+
setV0(value?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0): void;
|
|
6829
|
+
|
|
6830
|
+
getVersionCase(): GetTokenDirectPurchasePricesResponse.VersionCase;
|
|
6831
|
+
serializeBinary(): Uint8Array;
|
|
6832
|
+
toObject(includeInstance?: boolean): GetTokenDirectPurchasePricesResponse.AsObject;
|
|
6833
|
+
static toObject(includeInstance: boolean, msg: GetTokenDirectPurchasePricesResponse): GetTokenDirectPurchasePricesResponse.AsObject;
|
|
6834
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6835
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6836
|
+
static serializeBinaryToWriter(message: GetTokenDirectPurchasePricesResponse, writer: jspb.BinaryWriter): void;
|
|
6837
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenDirectPurchasePricesResponse;
|
|
6838
|
+
static deserializeBinaryFromReader(message: GetTokenDirectPurchasePricesResponse, reader: jspb.BinaryReader): GetTokenDirectPurchasePricesResponse;
|
|
6839
|
+
}
|
|
6840
|
+
|
|
6841
|
+
export namespace GetTokenDirectPurchasePricesResponse {
|
|
6842
|
+
export type AsObject = {
|
|
6843
|
+
v0?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.AsObject,
|
|
6844
|
+
}
|
|
6845
|
+
|
|
6846
|
+
export class GetTokenDirectPurchasePricesResponseV0 extends jspb.Message {
|
|
6847
|
+
hasTokenDirectPurchasePrices(): boolean;
|
|
6848
|
+
clearTokenDirectPurchasePrices(): void;
|
|
6849
|
+
getTokenDirectPurchasePrices(): GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePrices | undefined;
|
|
6850
|
+
setTokenDirectPurchasePrices(value?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePrices): void;
|
|
6851
|
+
|
|
6852
|
+
hasProof(): boolean;
|
|
6853
|
+
clearProof(): void;
|
|
6854
|
+
getProof(): Proof | undefined;
|
|
6855
|
+
setProof(value?: Proof): void;
|
|
6856
|
+
|
|
6857
|
+
hasMetadata(): boolean;
|
|
6858
|
+
clearMetadata(): void;
|
|
6859
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6860
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6861
|
+
|
|
6862
|
+
getResultCase(): GetTokenDirectPurchasePricesResponseV0.ResultCase;
|
|
6863
|
+
serializeBinary(): Uint8Array;
|
|
6864
|
+
toObject(includeInstance?: boolean): GetTokenDirectPurchasePricesResponseV0.AsObject;
|
|
6865
|
+
static toObject(includeInstance: boolean, msg: GetTokenDirectPurchasePricesResponseV0): GetTokenDirectPurchasePricesResponseV0.AsObject;
|
|
6866
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6867
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6868
|
+
static serializeBinaryToWriter(message: GetTokenDirectPurchasePricesResponseV0, writer: jspb.BinaryWriter): void;
|
|
6869
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenDirectPurchasePricesResponseV0;
|
|
6870
|
+
static deserializeBinaryFromReader(message: GetTokenDirectPurchasePricesResponseV0, reader: jspb.BinaryReader): GetTokenDirectPurchasePricesResponseV0;
|
|
6871
|
+
}
|
|
6872
|
+
|
|
6873
|
+
export namespace GetTokenDirectPurchasePricesResponseV0 {
|
|
6874
|
+
export type AsObject = {
|
|
6875
|
+
tokenDirectPurchasePrices?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePrices.AsObject,
|
|
6876
|
+
proof?: Proof.AsObject,
|
|
6877
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6878
|
+
}
|
|
6879
|
+
|
|
6880
|
+
export class PriceForQuantity extends jspb.Message {
|
|
6881
|
+
getQuantity(): number;
|
|
6882
|
+
setQuantity(value: number): void;
|
|
6883
|
+
|
|
6884
|
+
getPrice(): number;
|
|
6885
|
+
setPrice(value: number): void;
|
|
6886
|
+
|
|
6887
|
+
serializeBinary(): Uint8Array;
|
|
6888
|
+
toObject(includeInstance?: boolean): PriceForQuantity.AsObject;
|
|
6889
|
+
static toObject(includeInstance: boolean, msg: PriceForQuantity): PriceForQuantity.AsObject;
|
|
6890
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6891
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6892
|
+
static serializeBinaryToWriter(message: PriceForQuantity, writer: jspb.BinaryWriter): void;
|
|
6893
|
+
static deserializeBinary(bytes: Uint8Array): PriceForQuantity;
|
|
6894
|
+
static deserializeBinaryFromReader(message: PriceForQuantity, reader: jspb.BinaryReader): PriceForQuantity;
|
|
6895
|
+
}
|
|
6896
|
+
|
|
6897
|
+
export namespace PriceForQuantity {
|
|
6898
|
+
export type AsObject = {
|
|
6899
|
+
quantity: number,
|
|
6900
|
+
price: number,
|
|
6901
|
+
}
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6904
|
+
export class PricingSchedule extends jspb.Message {
|
|
6905
|
+
clearPriceForQuantityList(): void;
|
|
6906
|
+
getPriceForQuantityList(): Array<GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PriceForQuantity>;
|
|
6907
|
+
setPriceForQuantityList(value: Array<GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PriceForQuantity>): void;
|
|
6908
|
+
addPriceForQuantity(value?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PriceForQuantity, index?: number): GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PriceForQuantity;
|
|
6909
|
+
|
|
6910
|
+
serializeBinary(): Uint8Array;
|
|
6911
|
+
toObject(includeInstance?: boolean): PricingSchedule.AsObject;
|
|
6912
|
+
static toObject(includeInstance: boolean, msg: PricingSchedule): PricingSchedule.AsObject;
|
|
6913
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6914
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6915
|
+
static serializeBinaryToWriter(message: PricingSchedule, writer: jspb.BinaryWriter): void;
|
|
6916
|
+
static deserializeBinary(bytes: Uint8Array): PricingSchedule;
|
|
6917
|
+
static deserializeBinaryFromReader(message: PricingSchedule, reader: jspb.BinaryReader): PricingSchedule;
|
|
6918
|
+
}
|
|
6919
|
+
|
|
6920
|
+
export namespace PricingSchedule {
|
|
6921
|
+
export type AsObject = {
|
|
6922
|
+
priceForQuantityList: Array<GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PriceForQuantity.AsObject>,
|
|
6923
|
+
}
|
|
6924
|
+
}
|
|
6925
|
+
|
|
6926
|
+
export class TokenDirectPurchasePriceEntry extends jspb.Message {
|
|
6927
|
+
getTokenId(): Uint8Array | string;
|
|
6928
|
+
getTokenId_asU8(): Uint8Array;
|
|
6929
|
+
getTokenId_asB64(): string;
|
|
6930
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6931
|
+
|
|
6932
|
+
hasFixedPrice(): boolean;
|
|
6933
|
+
clearFixedPrice(): void;
|
|
6934
|
+
getFixedPrice(): number;
|
|
6935
|
+
setFixedPrice(value: number): void;
|
|
6936
|
+
|
|
6937
|
+
hasVariablePrice(): boolean;
|
|
6938
|
+
clearVariablePrice(): void;
|
|
6939
|
+
getVariablePrice(): GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PricingSchedule | undefined;
|
|
6940
|
+
setVariablePrice(value?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PricingSchedule): void;
|
|
6941
|
+
|
|
6942
|
+
getPriceCase(): TokenDirectPurchasePriceEntry.PriceCase;
|
|
6943
|
+
serializeBinary(): Uint8Array;
|
|
6944
|
+
toObject(includeInstance?: boolean): TokenDirectPurchasePriceEntry.AsObject;
|
|
6945
|
+
static toObject(includeInstance: boolean, msg: TokenDirectPurchasePriceEntry): TokenDirectPurchasePriceEntry.AsObject;
|
|
6946
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6947
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6948
|
+
static serializeBinaryToWriter(message: TokenDirectPurchasePriceEntry, writer: jspb.BinaryWriter): void;
|
|
6949
|
+
static deserializeBinary(bytes: Uint8Array): TokenDirectPurchasePriceEntry;
|
|
6950
|
+
static deserializeBinaryFromReader(message: TokenDirectPurchasePriceEntry, reader: jspb.BinaryReader): TokenDirectPurchasePriceEntry;
|
|
6951
|
+
}
|
|
6952
|
+
|
|
6953
|
+
export namespace TokenDirectPurchasePriceEntry {
|
|
6954
|
+
export type AsObject = {
|
|
6955
|
+
tokenId: Uint8Array | string,
|
|
6956
|
+
fixedPrice: number,
|
|
6957
|
+
variablePrice?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.PricingSchedule.AsObject,
|
|
6958
|
+
}
|
|
6959
|
+
|
|
6960
|
+
export enum PriceCase {
|
|
6961
|
+
PRICE_NOT_SET = 0,
|
|
6962
|
+
FIXED_PRICE = 2,
|
|
6963
|
+
VARIABLE_PRICE = 3,
|
|
6964
|
+
}
|
|
6965
|
+
}
|
|
6966
|
+
|
|
6967
|
+
export class TokenDirectPurchasePrices extends jspb.Message {
|
|
6968
|
+
clearTokenDirectPurchasePriceList(): void;
|
|
6969
|
+
getTokenDirectPurchasePriceList(): Array<GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePriceEntry>;
|
|
6970
|
+
setTokenDirectPurchasePriceList(value: Array<GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePriceEntry>): void;
|
|
6971
|
+
addTokenDirectPurchasePrice(value?: GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePriceEntry, index?: number): GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePriceEntry;
|
|
6972
|
+
|
|
6973
|
+
serializeBinary(): Uint8Array;
|
|
6974
|
+
toObject(includeInstance?: boolean): TokenDirectPurchasePrices.AsObject;
|
|
6975
|
+
static toObject(includeInstance: boolean, msg: TokenDirectPurchasePrices): TokenDirectPurchasePrices.AsObject;
|
|
6976
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6977
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6978
|
+
static serializeBinaryToWriter(message: TokenDirectPurchasePrices, writer: jspb.BinaryWriter): void;
|
|
6979
|
+
static deserializeBinary(bytes: Uint8Array): TokenDirectPurchasePrices;
|
|
6980
|
+
static deserializeBinaryFromReader(message: TokenDirectPurchasePrices, reader: jspb.BinaryReader): TokenDirectPurchasePrices;
|
|
6981
|
+
}
|
|
6982
|
+
|
|
6983
|
+
export namespace TokenDirectPurchasePrices {
|
|
6984
|
+
export type AsObject = {
|
|
6985
|
+
tokenDirectPurchasePriceList: Array<GetTokenDirectPurchasePricesResponse.GetTokenDirectPurchasePricesResponseV0.TokenDirectPurchasePriceEntry.AsObject>,
|
|
6986
|
+
}
|
|
6987
|
+
}
|
|
6988
|
+
|
|
6989
|
+
export enum ResultCase {
|
|
6990
|
+
RESULT_NOT_SET = 0,
|
|
6991
|
+
TOKEN_DIRECT_PURCHASE_PRICES = 1,
|
|
6992
|
+
PROOF = 2,
|
|
6993
|
+
}
|
|
6994
|
+
}
|
|
6995
|
+
|
|
6996
|
+
export enum VersionCase {
|
|
6997
|
+
VERSION_NOT_SET = 0,
|
|
6998
|
+
V0 = 1,
|
|
6999
|
+
}
|
|
7000
|
+
}
|
|
7001
|
+
|
|
7002
|
+
export class GetTokenDirectPurchasePricesRequest extends jspb.Message {
|
|
7003
|
+
hasV0(): boolean;
|
|
7004
|
+
clearV0(): void;
|
|
7005
|
+
getV0(): GetTokenDirectPurchasePricesRequest.GetTokenDirectPurchasePricesRequestV0 | undefined;
|
|
7006
|
+
setV0(value?: GetTokenDirectPurchasePricesRequest.GetTokenDirectPurchasePricesRequestV0): void;
|
|
7007
|
+
|
|
7008
|
+
getVersionCase(): GetTokenDirectPurchasePricesRequest.VersionCase;
|
|
7009
|
+
serializeBinary(): Uint8Array;
|
|
7010
|
+
toObject(includeInstance?: boolean): GetTokenDirectPurchasePricesRequest.AsObject;
|
|
7011
|
+
static toObject(includeInstance: boolean, msg: GetTokenDirectPurchasePricesRequest): GetTokenDirectPurchasePricesRequest.AsObject;
|
|
7012
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7013
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7014
|
+
static serializeBinaryToWriter(message: GetTokenDirectPurchasePricesRequest, writer: jspb.BinaryWriter): void;
|
|
7015
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenDirectPurchasePricesRequest;
|
|
7016
|
+
static deserializeBinaryFromReader(message: GetTokenDirectPurchasePricesRequest, reader: jspb.BinaryReader): GetTokenDirectPurchasePricesRequest;
|
|
7017
|
+
}
|
|
7018
|
+
|
|
7019
|
+
export namespace GetTokenDirectPurchasePricesRequest {
|
|
7020
|
+
export type AsObject = {
|
|
7021
|
+
v0?: GetTokenDirectPurchasePricesRequest.GetTokenDirectPurchasePricesRequestV0.AsObject,
|
|
7022
|
+
}
|
|
7023
|
+
|
|
7024
|
+
export class GetTokenDirectPurchasePricesRequestV0 extends jspb.Message {
|
|
7025
|
+
clearTokenIdsList(): void;
|
|
7026
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
7027
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
7028
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
7029
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
7030
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
7031
|
+
|
|
7032
|
+
getProve(): boolean;
|
|
7033
|
+
setProve(value: boolean): void;
|
|
7034
|
+
|
|
7035
|
+
serializeBinary(): Uint8Array;
|
|
7036
|
+
toObject(includeInstance?: boolean): GetTokenDirectPurchasePricesRequestV0.AsObject;
|
|
7037
|
+
static toObject(includeInstance: boolean, msg: GetTokenDirectPurchasePricesRequestV0): GetTokenDirectPurchasePricesRequestV0.AsObject;
|
|
7038
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7039
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7040
|
+
static serializeBinaryToWriter(message: GetTokenDirectPurchasePricesRequestV0, writer: jspb.BinaryWriter): void;
|
|
7041
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenDirectPurchasePricesRequestV0;
|
|
7042
|
+
static deserializeBinaryFromReader(message: GetTokenDirectPurchasePricesRequestV0, reader: jspb.BinaryReader): GetTokenDirectPurchasePricesRequestV0;
|
|
7043
|
+
}
|
|
7044
|
+
|
|
7045
|
+
export namespace GetTokenDirectPurchasePricesRequestV0 {
|
|
7046
|
+
export type AsObject = {
|
|
7047
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
7048
|
+
prove: boolean,
|
|
7049
|
+
}
|
|
7050
|
+
}
|
|
7051
|
+
|
|
7052
|
+
export enum VersionCase {
|
|
7053
|
+
VERSION_NOT_SET = 0,
|
|
7054
|
+
V0 = 1,
|
|
7055
|
+
}
|
|
7056
|
+
}
|
|
7057
|
+
|
|
7058
|
+
export class GetTokenPreProgrammedDistributionsRequest extends jspb.Message {
|
|
7059
|
+
hasV0(): boolean;
|
|
7060
|
+
clearV0(): void;
|
|
7061
|
+
getV0(): GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0 | undefined;
|
|
7062
|
+
setV0(value?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0): void;
|
|
7063
|
+
|
|
7064
|
+
getVersionCase(): GetTokenPreProgrammedDistributionsRequest.VersionCase;
|
|
7065
|
+
serializeBinary(): Uint8Array;
|
|
7066
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsRequest.AsObject;
|
|
7067
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsRequest): GetTokenPreProgrammedDistributionsRequest.AsObject;
|
|
7068
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7069
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7070
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsRequest, writer: jspb.BinaryWriter): void;
|
|
7071
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsRequest;
|
|
7072
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsRequest, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsRequest;
|
|
7073
|
+
}
|
|
7074
|
+
|
|
7075
|
+
export namespace GetTokenPreProgrammedDistributionsRequest {
|
|
7076
|
+
export type AsObject = {
|
|
7077
|
+
v0?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.AsObject,
|
|
7078
|
+
}
|
|
7079
|
+
|
|
7080
|
+
export class GetTokenPreProgrammedDistributionsRequestV0 extends jspb.Message {
|
|
7081
|
+
getTokenId(): Uint8Array | string;
|
|
7082
|
+
getTokenId_asU8(): Uint8Array;
|
|
7083
|
+
getTokenId_asB64(): string;
|
|
7084
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7085
|
+
|
|
7086
|
+
hasStartAtInfo(): boolean;
|
|
7087
|
+
clearStartAtInfo(): void;
|
|
7088
|
+
getStartAtInfo(): GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.StartAtInfo | undefined;
|
|
7089
|
+
setStartAtInfo(value?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.StartAtInfo): void;
|
|
7090
|
+
|
|
7091
|
+
hasLimit(): boolean;
|
|
7092
|
+
clearLimit(): void;
|
|
7093
|
+
getLimit(): number;
|
|
7094
|
+
setLimit(value: number): void;
|
|
7095
|
+
|
|
7096
|
+
getProve(): boolean;
|
|
7097
|
+
setProve(value: boolean): void;
|
|
7098
|
+
|
|
7099
|
+
serializeBinary(): Uint8Array;
|
|
7100
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsRequestV0.AsObject;
|
|
7101
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsRequestV0): GetTokenPreProgrammedDistributionsRequestV0.AsObject;
|
|
7102
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7103
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7104
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsRequestV0, writer: jspb.BinaryWriter): void;
|
|
7105
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsRequestV0;
|
|
7106
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsRequestV0, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsRequestV0;
|
|
7107
|
+
}
|
|
7108
|
+
|
|
7109
|
+
export namespace GetTokenPreProgrammedDistributionsRequestV0 {
|
|
7110
|
+
export type AsObject = {
|
|
7111
|
+
tokenId: Uint8Array | string,
|
|
7112
|
+
startAtInfo?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.StartAtInfo.AsObject,
|
|
7113
|
+
limit: number,
|
|
7114
|
+
prove: boolean,
|
|
7115
|
+
}
|
|
7116
|
+
|
|
7117
|
+
export class StartAtInfo extends jspb.Message {
|
|
7118
|
+
getStartTimeMs(): number;
|
|
7119
|
+
setStartTimeMs(value: number): void;
|
|
7120
|
+
|
|
7121
|
+
hasStartRecipient(): boolean;
|
|
7122
|
+
clearStartRecipient(): void;
|
|
7123
|
+
getStartRecipient(): Uint8Array | string;
|
|
7124
|
+
getStartRecipient_asU8(): Uint8Array;
|
|
7125
|
+
getStartRecipient_asB64(): string;
|
|
7126
|
+
setStartRecipient(value: Uint8Array | string): void;
|
|
7127
|
+
|
|
7128
|
+
hasStartRecipientIncluded(): boolean;
|
|
7129
|
+
clearStartRecipientIncluded(): void;
|
|
7130
|
+
getStartRecipientIncluded(): boolean;
|
|
7131
|
+
setStartRecipientIncluded(value: boolean): void;
|
|
7132
|
+
|
|
7133
|
+
serializeBinary(): Uint8Array;
|
|
7134
|
+
toObject(includeInstance?: boolean): StartAtInfo.AsObject;
|
|
7135
|
+
static toObject(includeInstance: boolean, msg: StartAtInfo): StartAtInfo.AsObject;
|
|
7136
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7137
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7138
|
+
static serializeBinaryToWriter(message: StartAtInfo, writer: jspb.BinaryWriter): void;
|
|
7139
|
+
static deserializeBinary(bytes: Uint8Array): StartAtInfo;
|
|
7140
|
+
static deserializeBinaryFromReader(message: StartAtInfo, reader: jspb.BinaryReader): StartAtInfo;
|
|
7141
|
+
}
|
|
7142
|
+
|
|
7143
|
+
export namespace StartAtInfo {
|
|
7144
|
+
export type AsObject = {
|
|
7145
|
+
startTimeMs: number,
|
|
7146
|
+
startRecipient: Uint8Array | string,
|
|
7147
|
+
startRecipientIncluded: boolean,
|
|
7148
|
+
}
|
|
7149
|
+
}
|
|
7150
|
+
}
|
|
7151
|
+
|
|
7152
|
+
export enum VersionCase {
|
|
7153
|
+
VERSION_NOT_SET = 0,
|
|
7154
|
+
V0 = 1,
|
|
7155
|
+
}
|
|
7156
|
+
}
|
|
7157
|
+
|
|
7158
|
+
export class GetTokenPreProgrammedDistributionsResponse extends jspb.Message {
|
|
7159
|
+
hasV0(): boolean;
|
|
7160
|
+
clearV0(): void;
|
|
7161
|
+
getV0(): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0 | undefined;
|
|
7162
|
+
setV0(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0): void;
|
|
7163
|
+
|
|
7164
|
+
getVersionCase(): GetTokenPreProgrammedDistributionsResponse.VersionCase;
|
|
7165
|
+
serializeBinary(): Uint8Array;
|
|
7166
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsResponse.AsObject;
|
|
7167
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsResponse): GetTokenPreProgrammedDistributionsResponse.AsObject;
|
|
7168
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7169
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7170
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsResponse, writer: jspb.BinaryWriter): void;
|
|
7171
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsResponse;
|
|
7172
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsResponse, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsResponse;
|
|
7173
|
+
}
|
|
7174
|
+
|
|
7175
|
+
export namespace GetTokenPreProgrammedDistributionsResponse {
|
|
7176
|
+
export type AsObject = {
|
|
7177
|
+
v0?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.AsObject,
|
|
7178
|
+
}
|
|
7179
|
+
|
|
7180
|
+
export class GetTokenPreProgrammedDistributionsResponseV0 extends jspb.Message {
|
|
7181
|
+
hasTokenDistributions(): boolean;
|
|
7182
|
+
clearTokenDistributions(): void;
|
|
7183
|
+
getTokenDistributions(): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributions | undefined;
|
|
7184
|
+
setTokenDistributions(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributions): void;
|
|
7185
|
+
|
|
7186
|
+
hasProof(): boolean;
|
|
7187
|
+
clearProof(): void;
|
|
7188
|
+
getProof(): Proof | undefined;
|
|
7189
|
+
setProof(value?: Proof): void;
|
|
7190
|
+
|
|
7191
|
+
hasMetadata(): boolean;
|
|
7192
|
+
clearMetadata(): void;
|
|
7193
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7194
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7195
|
+
|
|
7196
|
+
getResultCase(): GetTokenPreProgrammedDistributionsResponseV0.ResultCase;
|
|
7197
|
+
serializeBinary(): Uint8Array;
|
|
7198
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsResponseV0.AsObject;
|
|
7199
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsResponseV0): GetTokenPreProgrammedDistributionsResponseV0.AsObject;
|
|
7200
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7201
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7202
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsResponseV0, writer: jspb.BinaryWriter): void;
|
|
7203
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsResponseV0;
|
|
7204
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsResponseV0, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsResponseV0;
|
|
7205
|
+
}
|
|
7206
|
+
|
|
7207
|
+
export namespace GetTokenPreProgrammedDistributionsResponseV0 {
|
|
7208
|
+
export type AsObject = {
|
|
7209
|
+
tokenDistributions?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributions.AsObject,
|
|
7210
|
+
proof?: Proof.AsObject,
|
|
7211
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7212
|
+
}
|
|
7213
|
+
|
|
7214
|
+
export class TokenDistributionEntry extends jspb.Message {
|
|
7215
|
+
getRecipientId(): Uint8Array | string;
|
|
7216
|
+
getRecipientId_asU8(): Uint8Array;
|
|
7217
|
+
getRecipientId_asB64(): string;
|
|
7218
|
+
setRecipientId(value: Uint8Array | string): void;
|
|
7219
|
+
|
|
7220
|
+
getAmount(): number;
|
|
7221
|
+
setAmount(value: number): void;
|
|
7222
|
+
|
|
7223
|
+
serializeBinary(): Uint8Array;
|
|
7224
|
+
toObject(includeInstance?: boolean): TokenDistributionEntry.AsObject;
|
|
7225
|
+
static toObject(includeInstance: boolean, msg: TokenDistributionEntry): TokenDistributionEntry.AsObject;
|
|
7226
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7227
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7228
|
+
static serializeBinaryToWriter(message: TokenDistributionEntry, writer: jspb.BinaryWriter): void;
|
|
7229
|
+
static deserializeBinary(bytes: Uint8Array): TokenDistributionEntry;
|
|
7230
|
+
static deserializeBinaryFromReader(message: TokenDistributionEntry, reader: jspb.BinaryReader): TokenDistributionEntry;
|
|
7231
|
+
}
|
|
7232
|
+
|
|
7233
|
+
export namespace TokenDistributionEntry {
|
|
7234
|
+
export type AsObject = {
|
|
7235
|
+
recipientId: Uint8Array | string,
|
|
7236
|
+
amount: number,
|
|
7237
|
+
}
|
|
7238
|
+
}
|
|
7239
|
+
|
|
7240
|
+
export class TokenTimedDistributionEntry extends jspb.Message {
|
|
7241
|
+
getTimestamp(): number;
|
|
7242
|
+
setTimestamp(value: number): void;
|
|
7243
|
+
|
|
7244
|
+
clearDistributionsList(): void;
|
|
7245
|
+
getDistributionsList(): Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry>;
|
|
7246
|
+
setDistributionsList(value: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry>): void;
|
|
7247
|
+
addDistributions(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry, index?: number): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry;
|
|
7248
|
+
|
|
7249
|
+
serializeBinary(): Uint8Array;
|
|
7250
|
+
toObject(includeInstance?: boolean): TokenTimedDistributionEntry.AsObject;
|
|
7251
|
+
static toObject(includeInstance: boolean, msg: TokenTimedDistributionEntry): TokenTimedDistributionEntry.AsObject;
|
|
7252
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7253
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7254
|
+
static serializeBinaryToWriter(message: TokenTimedDistributionEntry, writer: jspb.BinaryWriter): void;
|
|
7255
|
+
static deserializeBinary(bytes: Uint8Array): TokenTimedDistributionEntry;
|
|
7256
|
+
static deserializeBinaryFromReader(message: TokenTimedDistributionEntry, reader: jspb.BinaryReader): TokenTimedDistributionEntry;
|
|
7257
|
+
}
|
|
7258
|
+
|
|
7259
|
+
export namespace TokenTimedDistributionEntry {
|
|
7260
|
+
export type AsObject = {
|
|
7261
|
+
timestamp: number,
|
|
7262
|
+
distributionsList: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry.AsObject>,
|
|
7263
|
+
}
|
|
7264
|
+
}
|
|
7265
|
+
|
|
7266
|
+
export class TokenDistributions extends jspb.Message {
|
|
7267
|
+
clearTokenDistributionsList(): void;
|
|
7268
|
+
getTokenDistributionsList(): Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry>;
|
|
7269
|
+
setTokenDistributionsList(value: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry>): void;
|
|
7270
|
+
addTokenDistributions(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry, index?: number): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry;
|
|
7271
|
+
|
|
7272
|
+
serializeBinary(): Uint8Array;
|
|
7273
|
+
toObject(includeInstance?: boolean): TokenDistributions.AsObject;
|
|
7274
|
+
static toObject(includeInstance: boolean, msg: TokenDistributions): TokenDistributions.AsObject;
|
|
7275
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7276
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7277
|
+
static serializeBinaryToWriter(message: TokenDistributions, writer: jspb.BinaryWriter): void;
|
|
7278
|
+
static deserializeBinary(bytes: Uint8Array): TokenDistributions;
|
|
7279
|
+
static deserializeBinaryFromReader(message: TokenDistributions, reader: jspb.BinaryReader): TokenDistributions;
|
|
7280
|
+
}
|
|
7281
|
+
|
|
7282
|
+
export namespace TokenDistributions {
|
|
7283
|
+
export type AsObject = {
|
|
7284
|
+
tokenDistributionsList: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry.AsObject>,
|
|
7285
|
+
}
|
|
7286
|
+
}
|
|
7287
|
+
|
|
7288
|
+
export enum ResultCase {
|
|
7289
|
+
RESULT_NOT_SET = 0,
|
|
7290
|
+
TOKEN_DISTRIBUTIONS = 1,
|
|
7291
|
+
PROOF = 2,
|
|
7292
|
+
}
|
|
7293
|
+
}
|
|
7294
|
+
|
|
7295
|
+
export enum VersionCase {
|
|
7296
|
+
VERSION_NOT_SET = 0,
|
|
7297
|
+
V0 = 1,
|
|
7298
|
+
}
|
|
7299
|
+
}
|
|
7300
|
+
|
|
7301
|
+
export class GetTokenTotalSupplyRequest extends jspb.Message {
|
|
7302
|
+
hasV0(): boolean;
|
|
7303
|
+
clearV0(): void;
|
|
7304
|
+
getV0(): GetTokenTotalSupplyRequest.GetTokenTotalSupplyRequestV0 | undefined;
|
|
7305
|
+
setV0(value?: GetTokenTotalSupplyRequest.GetTokenTotalSupplyRequestV0): void;
|
|
7306
|
+
|
|
7307
|
+
getVersionCase(): GetTokenTotalSupplyRequest.VersionCase;
|
|
7308
|
+
serializeBinary(): Uint8Array;
|
|
7309
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyRequest.AsObject;
|
|
7310
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyRequest): GetTokenTotalSupplyRequest.AsObject;
|
|
7311
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7312
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7313
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyRequest, writer: jspb.BinaryWriter): void;
|
|
7314
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyRequest;
|
|
7315
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyRequest, reader: jspb.BinaryReader): GetTokenTotalSupplyRequest;
|
|
7316
|
+
}
|
|
7317
|
+
|
|
7318
|
+
export namespace GetTokenTotalSupplyRequest {
|
|
7319
|
+
export type AsObject = {
|
|
7320
|
+
v0?: GetTokenTotalSupplyRequest.GetTokenTotalSupplyRequestV0.AsObject,
|
|
7321
|
+
}
|
|
7322
|
+
|
|
7323
|
+
export class GetTokenTotalSupplyRequestV0 extends jspb.Message {
|
|
7324
|
+
getTokenId(): Uint8Array | string;
|
|
7325
|
+
getTokenId_asU8(): Uint8Array;
|
|
7326
|
+
getTokenId_asB64(): string;
|
|
7327
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7328
|
+
|
|
7329
|
+
getProve(): boolean;
|
|
7330
|
+
setProve(value: boolean): void;
|
|
7331
|
+
|
|
7332
|
+
serializeBinary(): Uint8Array;
|
|
7333
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyRequestV0.AsObject;
|
|
7334
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyRequestV0): GetTokenTotalSupplyRequestV0.AsObject;
|
|
7335
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7336
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7337
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyRequestV0, writer: jspb.BinaryWriter): void;
|
|
7338
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyRequestV0;
|
|
7339
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyRequestV0, reader: jspb.BinaryReader): GetTokenTotalSupplyRequestV0;
|
|
7340
|
+
}
|
|
7341
|
+
|
|
7342
|
+
export namespace GetTokenTotalSupplyRequestV0 {
|
|
7343
|
+
export type AsObject = {
|
|
7344
|
+
tokenId: Uint8Array | string,
|
|
7345
|
+
prove: boolean,
|
|
7346
|
+
}
|
|
7347
|
+
}
|
|
7348
|
+
|
|
7349
|
+
export enum VersionCase {
|
|
7350
|
+
VERSION_NOT_SET = 0,
|
|
7351
|
+
V0 = 1,
|
|
7352
|
+
}
|
|
7353
|
+
}
|
|
7354
|
+
|
|
7355
|
+
export class GetTokenTotalSupplyResponse extends jspb.Message {
|
|
7356
|
+
hasV0(): boolean;
|
|
7357
|
+
clearV0(): void;
|
|
7358
|
+
getV0(): GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0 | undefined;
|
|
7359
|
+
setV0(value?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0): void;
|
|
7360
|
+
|
|
7361
|
+
getVersionCase(): GetTokenTotalSupplyResponse.VersionCase;
|
|
7362
|
+
serializeBinary(): Uint8Array;
|
|
7363
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyResponse.AsObject;
|
|
7364
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyResponse): GetTokenTotalSupplyResponse.AsObject;
|
|
7365
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7366
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7367
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyResponse, writer: jspb.BinaryWriter): void;
|
|
7368
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyResponse;
|
|
7369
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyResponse, reader: jspb.BinaryReader): GetTokenTotalSupplyResponse;
|
|
7370
|
+
}
|
|
7371
|
+
|
|
7372
|
+
export namespace GetTokenTotalSupplyResponse {
|
|
7373
|
+
export type AsObject = {
|
|
7374
|
+
v0?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.AsObject,
|
|
7375
|
+
}
|
|
7376
|
+
|
|
7377
|
+
export class GetTokenTotalSupplyResponseV0 extends jspb.Message {
|
|
7378
|
+
hasTokenTotalSupply(): boolean;
|
|
7379
|
+
clearTokenTotalSupply(): void;
|
|
7380
|
+
getTokenTotalSupply(): GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.TokenTotalSupplyEntry | undefined;
|
|
7381
|
+
setTokenTotalSupply(value?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.TokenTotalSupplyEntry): void;
|
|
7382
|
+
|
|
7383
|
+
hasProof(): boolean;
|
|
7384
|
+
clearProof(): void;
|
|
7385
|
+
getProof(): Proof | undefined;
|
|
7386
|
+
setProof(value?: Proof): void;
|
|
7387
|
+
|
|
7388
|
+
hasMetadata(): boolean;
|
|
7389
|
+
clearMetadata(): void;
|
|
7390
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7391
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7392
|
+
|
|
7393
|
+
getResultCase(): GetTokenTotalSupplyResponseV0.ResultCase;
|
|
7394
|
+
serializeBinary(): Uint8Array;
|
|
7395
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyResponseV0.AsObject;
|
|
7396
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyResponseV0): GetTokenTotalSupplyResponseV0.AsObject;
|
|
7397
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7398
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7399
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyResponseV0, writer: jspb.BinaryWriter): void;
|
|
7400
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyResponseV0;
|
|
7401
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyResponseV0, reader: jspb.BinaryReader): GetTokenTotalSupplyResponseV0;
|
|
7402
|
+
}
|
|
7403
|
+
|
|
7404
|
+
export namespace GetTokenTotalSupplyResponseV0 {
|
|
7405
|
+
export type AsObject = {
|
|
7406
|
+
tokenTotalSupply?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.TokenTotalSupplyEntry.AsObject,
|
|
7407
|
+
proof?: Proof.AsObject,
|
|
7408
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7409
|
+
}
|
|
7410
|
+
|
|
7411
|
+
export class TokenTotalSupplyEntry extends jspb.Message {
|
|
7412
|
+
getTokenId(): Uint8Array | string;
|
|
7413
|
+
getTokenId_asU8(): Uint8Array;
|
|
7414
|
+
getTokenId_asB64(): string;
|
|
7415
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7416
|
+
|
|
7417
|
+
getTotalAggregatedAmountInUserAccounts(): number;
|
|
7418
|
+
setTotalAggregatedAmountInUserAccounts(value: number): void;
|
|
7419
|
+
|
|
7420
|
+
getTotalSystemAmount(): number;
|
|
7421
|
+
setTotalSystemAmount(value: number): void;
|
|
7422
|
+
|
|
7423
|
+
serializeBinary(): Uint8Array;
|
|
7424
|
+
toObject(includeInstance?: boolean): TokenTotalSupplyEntry.AsObject;
|
|
7425
|
+
static toObject(includeInstance: boolean, msg: TokenTotalSupplyEntry): TokenTotalSupplyEntry.AsObject;
|
|
7426
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7427
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7428
|
+
static serializeBinaryToWriter(message: TokenTotalSupplyEntry, writer: jspb.BinaryWriter): void;
|
|
7429
|
+
static deserializeBinary(bytes: Uint8Array): TokenTotalSupplyEntry;
|
|
7430
|
+
static deserializeBinaryFromReader(message: TokenTotalSupplyEntry, reader: jspb.BinaryReader): TokenTotalSupplyEntry;
|
|
7431
|
+
}
|
|
7432
|
+
|
|
7433
|
+
export namespace TokenTotalSupplyEntry {
|
|
7434
|
+
export type AsObject = {
|
|
7435
|
+
tokenId: Uint8Array | string,
|
|
7436
|
+
totalAggregatedAmountInUserAccounts: number,
|
|
7437
|
+
totalSystemAmount: number,
|
|
7438
|
+
}
|
|
7439
|
+
}
|
|
7440
|
+
|
|
7441
|
+
export enum ResultCase {
|
|
7442
|
+
RESULT_NOT_SET = 0,
|
|
7443
|
+
TOKEN_TOTAL_SUPPLY = 1,
|
|
7444
|
+
PROOF = 2,
|
|
7445
|
+
}
|
|
7446
|
+
}
|
|
7447
|
+
|
|
7448
|
+
export enum VersionCase {
|
|
7449
|
+
VERSION_NOT_SET = 0,
|
|
7450
|
+
V0 = 1,
|
|
7451
|
+
}
|
|
7452
|
+
}
|
|
7453
|
+
|
|
7454
|
+
export class GetGroupInfoRequest extends jspb.Message {
|
|
7455
|
+
hasV0(): boolean;
|
|
7456
|
+
clearV0(): void;
|
|
7457
|
+
getV0(): GetGroupInfoRequest.GetGroupInfoRequestV0 | undefined;
|
|
7458
|
+
setV0(value?: GetGroupInfoRequest.GetGroupInfoRequestV0): void;
|
|
7459
|
+
|
|
7460
|
+
getVersionCase(): GetGroupInfoRequest.VersionCase;
|
|
7461
|
+
serializeBinary(): Uint8Array;
|
|
7462
|
+
toObject(includeInstance?: boolean): GetGroupInfoRequest.AsObject;
|
|
7463
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoRequest): GetGroupInfoRequest.AsObject;
|
|
7464
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7465
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7466
|
+
static serializeBinaryToWriter(message: GetGroupInfoRequest, writer: jspb.BinaryWriter): void;
|
|
7467
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoRequest;
|
|
7468
|
+
static deserializeBinaryFromReader(message: GetGroupInfoRequest, reader: jspb.BinaryReader): GetGroupInfoRequest;
|
|
7469
|
+
}
|
|
7470
|
+
|
|
7471
|
+
export namespace GetGroupInfoRequest {
|
|
7472
|
+
export type AsObject = {
|
|
7473
|
+
v0?: GetGroupInfoRequest.GetGroupInfoRequestV0.AsObject,
|
|
7474
|
+
}
|
|
7475
|
+
|
|
7476
|
+
export class GetGroupInfoRequestV0 extends jspb.Message {
|
|
7477
|
+
getContractId(): Uint8Array | string;
|
|
7478
|
+
getContractId_asU8(): Uint8Array;
|
|
7479
|
+
getContractId_asB64(): string;
|
|
7480
|
+
setContractId(value: Uint8Array | string): void;
|
|
7481
|
+
|
|
7482
|
+
getGroupContractPosition(): number;
|
|
7483
|
+
setGroupContractPosition(value: number): void;
|
|
7484
|
+
|
|
7485
|
+
getProve(): boolean;
|
|
7486
|
+
setProve(value: boolean): void;
|
|
7487
|
+
|
|
7488
|
+
serializeBinary(): Uint8Array;
|
|
7489
|
+
toObject(includeInstance?: boolean): GetGroupInfoRequestV0.AsObject;
|
|
7490
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoRequestV0): GetGroupInfoRequestV0.AsObject;
|
|
7491
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7492
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7493
|
+
static serializeBinaryToWriter(message: GetGroupInfoRequestV0, writer: jspb.BinaryWriter): void;
|
|
7494
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoRequestV0;
|
|
7495
|
+
static deserializeBinaryFromReader(message: GetGroupInfoRequestV0, reader: jspb.BinaryReader): GetGroupInfoRequestV0;
|
|
7496
|
+
}
|
|
7497
|
+
|
|
7498
|
+
export namespace GetGroupInfoRequestV0 {
|
|
7499
|
+
export type AsObject = {
|
|
7500
|
+
contractId: Uint8Array | string,
|
|
7501
|
+
groupContractPosition: number,
|
|
7502
|
+
prove: boolean,
|
|
7503
|
+
}
|
|
7504
|
+
}
|
|
7505
|
+
|
|
7506
|
+
export enum VersionCase {
|
|
7507
|
+
VERSION_NOT_SET = 0,
|
|
7508
|
+
V0 = 1,
|
|
7509
|
+
}
|
|
7510
|
+
}
|
|
7511
|
+
|
|
7512
|
+
export class GetGroupInfoResponse extends jspb.Message {
|
|
7513
|
+
hasV0(): boolean;
|
|
7514
|
+
clearV0(): void;
|
|
7515
|
+
getV0(): GetGroupInfoResponse.GetGroupInfoResponseV0 | undefined;
|
|
7516
|
+
setV0(value?: GetGroupInfoResponse.GetGroupInfoResponseV0): void;
|
|
7517
|
+
|
|
7518
|
+
getVersionCase(): GetGroupInfoResponse.VersionCase;
|
|
7519
|
+
serializeBinary(): Uint8Array;
|
|
7520
|
+
toObject(includeInstance?: boolean): GetGroupInfoResponse.AsObject;
|
|
7521
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoResponse): GetGroupInfoResponse.AsObject;
|
|
7522
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7523
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7524
|
+
static serializeBinaryToWriter(message: GetGroupInfoResponse, writer: jspb.BinaryWriter): void;
|
|
7525
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoResponse;
|
|
7526
|
+
static deserializeBinaryFromReader(message: GetGroupInfoResponse, reader: jspb.BinaryReader): GetGroupInfoResponse;
|
|
7527
|
+
}
|
|
7528
|
+
|
|
7529
|
+
export namespace GetGroupInfoResponse {
|
|
7530
|
+
export type AsObject = {
|
|
7531
|
+
v0?: GetGroupInfoResponse.GetGroupInfoResponseV0.AsObject,
|
|
7532
|
+
}
|
|
7533
|
+
|
|
7534
|
+
export class GetGroupInfoResponseV0 extends jspb.Message {
|
|
7535
|
+
hasGroupInfo(): boolean;
|
|
7536
|
+
clearGroupInfo(): void;
|
|
7537
|
+
getGroupInfo(): GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfo | undefined;
|
|
7538
|
+
setGroupInfo(value?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfo): void;
|
|
7539
|
+
|
|
7540
|
+
hasProof(): boolean;
|
|
7541
|
+
clearProof(): void;
|
|
7542
|
+
getProof(): Proof | undefined;
|
|
7543
|
+
setProof(value?: Proof): void;
|
|
7544
|
+
|
|
7545
|
+
hasMetadata(): boolean;
|
|
7546
|
+
clearMetadata(): void;
|
|
7547
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7548
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7549
|
+
|
|
7550
|
+
getResultCase(): GetGroupInfoResponseV0.ResultCase;
|
|
7551
|
+
serializeBinary(): Uint8Array;
|
|
7552
|
+
toObject(includeInstance?: boolean): GetGroupInfoResponseV0.AsObject;
|
|
7553
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoResponseV0): GetGroupInfoResponseV0.AsObject;
|
|
7554
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7555
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7556
|
+
static serializeBinaryToWriter(message: GetGroupInfoResponseV0, writer: jspb.BinaryWriter): void;
|
|
7557
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoResponseV0;
|
|
7558
|
+
static deserializeBinaryFromReader(message: GetGroupInfoResponseV0, reader: jspb.BinaryReader): GetGroupInfoResponseV0;
|
|
7559
|
+
}
|
|
7560
|
+
|
|
7561
|
+
export namespace GetGroupInfoResponseV0 {
|
|
7562
|
+
export type AsObject = {
|
|
7563
|
+
groupInfo?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfo.AsObject,
|
|
7564
|
+
proof?: Proof.AsObject,
|
|
7565
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7566
|
+
}
|
|
7567
|
+
|
|
7568
|
+
export class GroupMemberEntry extends jspb.Message {
|
|
7569
|
+
getMemberId(): Uint8Array | string;
|
|
7570
|
+
getMemberId_asU8(): Uint8Array;
|
|
7571
|
+
getMemberId_asB64(): string;
|
|
7572
|
+
setMemberId(value: Uint8Array | string): void;
|
|
7573
|
+
|
|
7574
|
+
getPower(): number;
|
|
7575
|
+
setPower(value: number): void;
|
|
7576
|
+
|
|
7577
|
+
serializeBinary(): Uint8Array;
|
|
7578
|
+
toObject(includeInstance?: boolean): GroupMemberEntry.AsObject;
|
|
7579
|
+
static toObject(includeInstance: boolean, msg: GroupMemberEntry): GroupMemberEntry.AsObject;
|
|
7580
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7581
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7582
|
+
static serializeBinaryToWriter(message: GroupMemberEntry, writer: jspb.BinaryWriter): void;
|
|
7583
|
+
static deserializeBinary(bytes: Uint8Array): GroupMemberEntry;
|
|
7584
|
+
static deserializeBinaryFromReader(message: GroupMemberEntry, reader: jspb.BinaryReader): GroupMemberEntry;
|
|
7585
|
+
}
|
|
7586
|
+
|
|
7587
|
+
export namespace GroupMemberEntry {
|
|
7588
|
+
export type AsObject = {
|
|
7589
|
+
memberId: Uint8Array | string,
|
|
7590
|
+
power: number,
|
|
7591
|
+
}
|
|
7592
|
+
}
|
|
7593
|
+
|
|
7594
|
+
export class GroupInfoEntry extends jspb.Message {
|
|
7595
|
+
clearMembersList(): void;
|
|
7596
|
+
getMembersList(): Array<GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry>;
|
|
7597
|
+
setMembersList(value: Array<GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry>): void;
|
|
7598
|
+
addMembers(value?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry, index?: number): GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry;
|
|
7599
|
+
|
|
7600
|
+
getGroupRequiredPower(): number;
|
|
7601
|
+
setGroupRequiredPower(value: number): void;
|
|
7602
|
+
|
|
7603
|
+
serializeBinary(): Uint8Array;
|
|
7604
|
+
toObject(includeInstance?: boolean): GroupInfoEntry.AsObject;
|
|
7605
|
+
static toObject(includeInstance: boolean, msg: GroupInfoEntry): GroupInfoEntry.AsObject;
|
|
7606
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7607
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7608
|
+
static serializeBinaryToWriter(message: GroupInfoEntry, writer: jspb.BinaryWriter): void;
|
|
7609
|
+
static deserializeBinary(bytes: Uint8Array): GroupInfoEntry;
|
|
7610
|
+
static deserializeBinaryFromReader(message: GroupInfoEntry, reader: jspb.BinaryReader): GroupInfoEntry;
|
|
7611
|
+
}
|
|
7612
|
+
|
|
7613
|
+
export namespace GroupInfoEntry {
|
|
7614
|
+
export type AsObject = {
|
|
7615
|
+
membersList: Array<GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry.AsObject>,
|
|
7616
|
+
groupRequiredPower: number,
|
|
7617
|
+
}
|
|
7618
|
+
}
|
|
7619
|
+
|
|
7620
|
+
export class GroupInfo extends jspb.Message {
|
|
7621
|
+
hasGroupInfo(): boolean;
|
|
7622
|
+
clearGroupInfo(): void;
|
|
7623
|
+
getGroupInfo(): GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfoEntry | undefined;
|
|
7624
|
+
setGroupInfo(value?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfoEntry): void;
|
|
7625
|
+
|
|
7626
|
+
serializeBinary(): Uint8Array;
|
|
7627
|
+
toObject(includeInstance?: boolean): GroupInfo.AsObject;
|
|
7628
|
+
static toObject(includeInstance: boolean, msg: GroupInfo): GroupInfo.AsObject;
|
|
7629
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7630
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7631
|
+
static serializeBinaryToWriter(message: GroupInfo, writer: jspb.BinaryWriter): void;
|
|
7632
|
+
static deserializeBinary(bytes: Uint8Array): GroupInfo;
|
|
7633
|
+
static deserializeBinaryFromReader(message: GroupInfo, reader: jspb.BinaryReader): GroupInfo;
|
|
7634
|
+
}
|
|
7635
|
+
|
|
7636
|
+
export namespace GroupInfo {
|
|
7637
|
+
export type AsObject = {
|
|
7638
|
+
groupInfo?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfoEntry.AsObject,
|
|
7639
|
+
}
|
|
7640
|
+
}
|
|
7641
|
+
|
|
7642
|
+
export enum ResultCase {
|
|
7643
|
+
RESULT_NOT_SET = 0,
|
|
7644
|
+
GROUP_INFO = 1,
|
|
7645
|
+
PROOF = 2,
|
|
7646
|
+
}
|
|
7647
|
+
}
|
|
7648
|
+
|
|
7649
|
+
export enum VersionCase {
|
|
7650
|
+
VERSION_NOT_SET = 0,
|
|
7651
|
+
V0 = 1,
|
|
7652
|
+
}
|
|
7653
|
+
}
|
|
7654
|
+
|
|
7655
|
+
export class GetGroupInfosRequest extends jspb.Message {
|
|
7656
|
+
hasV0(): boolean;
|
|
7657
|
+
clearV0(): void;
|
|
7658
|
+
getV0(): GetGroupInfosRequest.GetGroupInfosRequestV0 | undefined;
|
|
7659
|
+
setV0(value?: GetGroupInfosRequest.GetGroupInfosRequestV0): void;
|
|
7660
|
+
|
|
7661
|
+
getVersionCase(): GetGroupInfosRequest.VersionCase;
|
|
7662
|
+
serializeBinary(): Uint8Array;
|
|
7663
|
+
toObject(includeInstance?: boolean): GetGroupInfosRequest.AsObject;
|
|
7664
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosRequest): GetGroupInfosRequest.AsObject;
|
|
7665
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7666
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7667
|
+
static serializeBinaryToWriter(message: GetGroupInfosRequest, writer: jspb.BinaryWriter): void;
|
|
7668
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosRequest;
|
|
7669
|
+
static deserializeBinaryFromReader(message: GetGroupInfosRequest, reader: jspb.BinaryReader): GetGroupInfosRequest;
|
|
7670
|
+
}
|
|
7671
|
+
|
|
7672
|
+
export namespace GetGroupInfosRequest {
|
|
7673
|
+
export type AsObject = {
|
|
7674
|
+
v0?: GetGroupInfosRequest.GetGroupInfosRequestV0.AsObject,
|
|
7675
|
+
}
|
|
7676
|
+
|
|
7677
|
+
export class StartAtGroupContractPosition extends jspb.Message {
|
|
7678
|
+
getStartGroupContractPosition(): number;
|
|
7679
|
+
setStartGroupContractPosition(value: number): void;
|
|
7680
|
+
|
|
7681
|
+
getStartGroupContractPositionIncluded(): boolean;
|
|
7682
|
+
setStartGroupContractPositionIncluded(value: boolean): void;
|
|
7683
|
+
|
|
7684
|
+
serializeBinary(): Uint8Array;
|
|
7685
|
+
toObject(includeInstance?: boolean): StartAtGroupContractPosition.AsObject;
|
|
7686
|
+
static toObject(includeInstance: boolean, msg: StartAtGroupContractPosition): StartAtGroupContractPosition.AsObject;
|
|
7687
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7688
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7689
|
+
static serializeBinaryToWriter(message: StartAtGroupContractPosition, writer: jspb.BinaryWriter): void;
|
|
7690
|
+
static deserializeBinary(bytes: Uint8Array): StartAtGroupContractPosition;
|
|
7691
|
+
static deserializeBinaryFromReader(message: StartAtGroupContractPosition, reader: jspb.BinaryReader): StartAtGroupContractPosition;
|
|
7692
|
+
}
|
|
7693
|
+
|
|
7694
|
+
export namespace StartAtGroupContractPosition {
|
|
7695
|
+
export type AsObject = {
|
|
7696
|
+
startGroupContractPosition: number,
|
|
7697
|
+
startGroupContractPositionIncluded: boolean,
|
|
7698
|
+
}
|
|
7699
|
+
}
|
|
7700
|
+
|
|
7701
|
+
export class GetGroupInfosRequestV0 extends jspb.Message {
|
|
7702
|
+
getContractId(): Uint8Array | string;
|
|
7703
|
+
getContractId_asU8(): Uint8Array;
|
|
7704
|
+
getContractId_asB64(): string;
|
|
7705
|
+
setContractId(value: Uint8Array | string): void;
|
|
7706
|
+
|
|
7707
|
+
hasStartAtGroupContractPosition(): boolean;
|
|
7708
|
+
clearStartAtGroupContractPosition(): void;
|
|
7709
|
+
getStartAtGroupContractPosition(): GetGroupInfosRequest.StartAtGroupContractPosition | undefined;
|
|
7710
|
+
setStartAtGroupContractPosition(value?: GetGroupInfosRequest.StartAtGroupContractPosition): void;
|
|
7711
|
+
|
|
7712
|
+
hasCount(): boolean;
|
|
7713
|
+
clearCount(): void;
|
|
7714
|
+
getCount(): number;
|
|
7715
|
+
setCount(value: number): void;
|
|
7716
|
+
|
|
7717
|
+
getProve(): boolean;
|
|
7718
|
+
setProve(value: boolean): void;
|
|
7719
|
+
|
|
7720
|
+
serializeBinary(): Uint8Array;
|
|
7721
|
+
toObject(includeInstance?: boolean): GetGroupInfosRequestV0.AsObject;
|
|
7722
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosRequestV0): GetGroupInfosRequestV0.AsObject;
|
|
7723
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7724
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7725
|
+
static serializeBinaryToWriter(message: GetGroupInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
7726
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosRequestV0;
|
|
7727
|
+
static deserializeBinaryFromReader(message: GetGroupInfosRequestV0, reader: jspb.BinaryReader): GetGroupInfosRequestV0;
|
|
7728
|
+
}
|
|
7729
|
+
|
|
7730
|
+
export namespace GetGroupInfosRequestV0 {
|
|
7731
|
+
export type AsObject = {
|
|
7732
|
+
contractId: Uint8Array | string,
|
|
7733
|
+
startAtGroupContractPosition?: GetGroupInfosRequest.StartAtGroupContractPosition.AsObject,
|
|
7734
|
+
count: number,
|
|
7735
|
+
prove: boolean,
|
|
7736
|
+
}
|
|
7737
|
+
}
|
|
7738
|
+
|
|
7739
|
+
export enum VersionCase {
|
|
7740
|
+
VERSION_NOT_SET = 0,
|
|
7741
|
+
V0 = 1,
|
|
7742
|
+
}
|
|
7743
|
+
}
|
|
7744
|
+
|
|
7745
|
+
export class GetGroupInfosResponse extends jspb.Message {
|
|
7746
|
+
hasV0(): boolean;
|
|
7747
|
+
clearV0(): void;
|
|
7748
|
+
getV0(): GetGroupInfosResponse.GetGroupInfosResponseV0 | undefined;
|
|
7749
|
+
setV0(value?: GetGroupInfosResponse.GetGroupInfosResponseV0): void;
|
|
7750
|
+
|
|
7751
|
+
getVersionCase(): GetGroupInfosResponse.VersionCase;
|
|
7752
|
+
serializeBinary(): Uint8Array;
|
|
7753
|
+
toObject(includeInstance?: boolean): GetGroupInfosResponse.AsObject;
|
|
7754
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosResponse): GetGroupInfosResponse.AsObject;
|
|
7755
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7756
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7757
|
+
static serializeBinaryToWriter(message: GetGroupInfosResponse, writer: jspb.BinaryWriter): void;
|
|
7758
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosResponse;
|
|
7759
|
+
static deserializeBinaryFromReader(message: GetGroupInfosResponse, reader: jspb.BinaryReader): GetGroupInfosResponse;
|
|
7760
|
+
}
|
|
7761
|
+
|
|
7762
|
+
export namespace GetGroupInfosResponse {
|
|
7763
|
+
export type AsObject = {
|
|
7764
|
+
v0?: GetGroupInfosResponse.GetGroupInfosResponseV0.AsObject,
|
|
7765
|
+
}
|
|
7766
|
+
|
|
7767
|
+
export class GetGroupInfosResponseV0 extends jspb.Message {
|
|
7768
|
+
hasGroupInfos(): boolean;
|
|
7769
|
+
clearGroupInfos(): void;
|
|
7770
|
+
getGroupInfos(): GetGroupInfosResponse.GetGroupInfosResponseV0.GroupInfos | undefined;
|
|
7771
|
+
setGroupInfos(value?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupInfos): void;
|
|
7772
|
+
|
|
7773
|
+
hasProof(): boolean;
|
|
7774
|
+
clearProof(): void;
|
|
7775
|
+
getProof(): Proof | undefined;
|
|
7776
|
+
setProof(value?: Proof): void;
|
|
7777
|
+
|
|
7778
|
+
hasMetadata(): boolean;
|
|
7779
|
+
clearMetadata(): void;
|
|
7780
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7781
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7782
|
+
|
|
7783
|
+
getResultCase(): GetGroupInfosResponseV0.ResultCase;
|
|
7784
|
+
serializeBinary(): Uint8Array;
|
|
7785
|
+
toObject(includeInstance?: boolean): GetGroupInfosResponseV0.AsObject;
|
|
7786
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosResponseV0): GetGroupInfosResponseV0.AsObject;
|
|
7787
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7788
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7789
|
+
static serializeBinaryToWriter(message: GetGroupInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
7790
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosResponseV0;
|
|
7791
|
+
static deserializeBinaryFromReader(message: GetGroupInfosResponseV0, reader: jspb.BinaryReader): GetGroupInfosResponseV0;
|
|
7792
|
+
}
|
|
7793
|
+
|
|
7794
|
+
export namespace GetGroupInfosResponseV0 {
|
|
7795
|
+
export type AsObject = {
|
|
7796
|
+
groupInfos?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupInfos.AsObject,
|
|
7797
|
+
proof?: Proof.AsObject,
|
|
7798
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7799
|
+
}
|
|
7800
|
+
|
|
7801
|
+
export class GroupMemberEntry extends jspb.Message {
|
|
7802
|
+
getMemberId(): Uint8Array | string;
|
|
7803
|
+
getMemberId_asU8(): Uint8Array;
|
|
7804
|
+
getMemberId_asB64(): string;
|
|
7805
|
+
setMemberId(value: Uint8Array | string): void;
|
|
7806
|
+
|
|
7807
|
+
getPower(): number;
|
|
7808
|
+
setPower(value: number): void;
|
|
7809
|
+
|
|
7810
|
+
serializeBinary(): Uint8Array;
|
|
7811
|
+
toObject(includeInstance?: boolean): GroupMemberEntry.AsObject;
|
|
7812
|
+
static toObject(includeInstance: boolean, msg: GroupMemberEntry): GroupMemberEntry.AsObject;
|
|
7813
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7814
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7815
|
+
static serializeBinaryToWriter(message: GroupMemberEntry, writer: jspb.BinaryWriter): void;
|
|
7816
|
+
static deserializeBinary(bytes: Uint8Array): GroupMemberEntry;
|
|
7817
|
+
static deserializeBinaryFromReader(message: GroupMemberEntry, reader: jspb.BinaryReader): GroupMemberEntry;
|
|
7818
|
+
}
|
|
7819
|
+
|
|
7820
|
+
export namespace GroupMemberEntry {
|
|
7821
|
+
export type AsObject = {
|
|
7822
|
+
memberId: Uint8Array | string,
|
|
7823
|
+
power: number,
|
|
7824
|
+
}
|
|
7825
|
+
}
|
|
7826
|
+
|
|
7827
|
+
export class GroupPositionInfoEntry extends jspb.Message {
|
|
7828
|
+
getGroupContractPosition(): number;
|
|
7829
|
+
setGroupContractPosition(value: number): void;
|
|
7830
|
+
|
|
7831
|
+
clearMembersList(): void;
|
|
7832
|
+
getMembersList(): Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry>;
|
|
7833
|
+
setMembersList(value: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry>): void;
|
|
7834
|
+
addMembers(value?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry, index?: number): GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry;
|
|
7835
|
+
|
|
7836
|
+
getGroupRequiredPower(): number;
|
|
7837
|
+
setGroupRequiredPower(value: number): void;
|
|
7838
|
+
|
|
7839
|
+
serializeBinary(): Uint8Array;
|
|
7840
|
+
toObject(includeInstance?: boolean): GroupPositionInfoEntry.AsObject;
|
|
7841
|
+
static toObject(includeInstance: boolean, msg: GroupPositionInfoEntry): GroupPositionInfoEntry.AsObject;
|
|
7842
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7843
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7844
|
+
static serializeBinaryToWriter(message: GroupPositionInfoEntry, writer: jspb.BinaryWriter): void;
|
|
7845
|
+
static deserializeBinary(bytes: Uint8Array): GroupPositionInfoEntry;
|
|
7846
|
+
static deserializeBinaryFromReader(message: GroupPositionInfoEntry, reader: jspb.BinaryReader): GroupPositionInfoEntry;
|
|
7847
|
+
}
|
|
7848
|
+
|
|
7849
|
+
export namespace GroupPositionInfoEntry {
|
|
7850
|
+
export type AsObject = {
|
|
7851
|
+
groupContractPosition: number,
|
|
7852
|
+
membersList: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry.AsObject>,
|
|
7853
|
+
groupRequiredPower: number,
|
|
7854
|
+
}
|
|
7855
|
+
}
|
|
7856
|
+
|
|
7857
|
+
export class GroupInfos extends jspb.Message {
|
|
7858
|
+
clearGroupInfosList(): void;
|
|
7859
|
+
getGroupInfosList(): Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry>;
|
|
7860
|
+
setGroupInfosList(value: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry>): void;
|
|
7861
|
+
addGroupInfos(value?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry, index?: number): GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry;
|
|
7862
|
+
|
|
7863
|
+
serializeBinary(): Uint8Array;
|
|
7864
|
+
toObject(includeInstance?: boolean): GroupInfos.AsObject;
|
|
7865
|
+
static toObject(includeInstance: boolean, msg: GroupInfos): GroupInfos.AsObject;
|
|
7866
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7867
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7868
|
+
static serializeBinaryToWriter(message: GroupInfos, writer: jspb.BinaryWriter): void;
|
|
7869
|
+
static deserializeBinary(bytes: Uint8Array): GroupInfos;
|
|
7870
|
+
static deserializeBinaryFromReader(message: GroupInfos, reader: jspb.BinaryReader): GroupInfos;
|
|
7871
|
+
}
|
|
7872
|
+
|
|
7873
|
+
export namespace GroupInfos {
|
|
7874
|
+
export type AsObject = {
|
|
7875
|
+
groupInfosList: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry.AsObject>,
|
|
7876
|
+
}
|
|
7877
|
+
}
|
|
7878
|
+
|
|
7879
|
+
export enum ResultCase {
|
|
7880
|
+
RESULT_NOT_SET = 0,
|
|
7881
|
+
GROUP_INFOS = 1,
|
|
7882
|
+
PROOF = 2,
|
|
7883
|
+
}
|
|
7884
|
+
}
|
|
7885
|
+
|
|
7886
|
+
export enum VersionCase {
|
|
7887
|
+
VERSION_NOT_SET = 0,
|
|
7888
|
+
V0 = 1,
|
|
7889
|
+
}
|
|
7890
|
+
}
|
|
7891
|
+
|
|
7892
|
+
export class GetGroupActionsRequest extends jspb.Message {
|
|
7893
|
+
hasV0(): boolean;
|
|
7894
|
+
clearV0(): void;
|
|
7895
|
+
getV0(): GetGroupActionsRequest.GetGroupActionsRequestV0 | undefined;
|
|
7896
|
+
setV0(value?: GetGroupActionsRequest.GetGroupActionsRequestV0): void;
|
|
7897
|
+
|
|
7898
|
+
getVersionCase(): GetGroupActionsRequest.VersionCase;
|
|
7899
|
+
serializeBinary(): Uint8Array;
|
|
7900
|
+
toObject(includeInstance?: boolean): GetGroupActionsRequest.AsObject;
|
|
7901
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsRequest): GetGroupActionsRequest.AsObject;
|
|
7902
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7903
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7904
|
+
static serializeBinaryToWriter(message: GetGroupActionsRequest, writer: jspb.BinaryWriter): void;
|
|
7905
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsRequest;
|
|
7906
|
+
static deserializeBinaryFromReader(message: GetGroupActionsRequest, reader: jspb.BinaryReader): GetGroupActionsRequest;
|
|
7907
|
+
}
|
|
7908
|
+
|
|
7909
|
+
export namespace GetGroupActionsRequest {
|
|
7910
|
+
export type AsObject = {
|
|
7911
|
+
v0?: GetGroupActionsRequest.GetGroupActionsRequestV0.AsObject,
|
|
7912
|
+
}
|
|
7913
|
+
|
|
7914
|
+
export class StartAtActionId extends jspb.Message {
|
|
7915
|
+
getStartActionId(): Uint8Array | string;
|
|
7916
|
+
getStartActionId_asU8(): Uint8Array;
|
|
7917
|
+
getStartActionId_asB64(): string;
|
|
7918
|
+
setStartActionId(value: Uint8Array | string): void;
|
|
7919
|
+
|
|
7920
|
+
getStartActionIdIncluded(): boolean;
|
|
7921
|
+
setStartActionIdIncluded(value: boolean): void;
|
|
7922
|
+
|
|
7923
|
+
serializeBinary(): Uint8Array;
|
|
7924
|
+
toObject(includeInstance?: boolean): StartAtActionId.AsObject;
|
|
7925
|
+
static toObject(includeInstance: boolean, msg: StartAtActionId): StartAtActionId.AsObject;
|
|
7926
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7927
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7928
|
+
static serializeBinaryToWriter(message: StartAtActionId, writer: jspb.BinaryWriter): void;
|
|
7929
|
+
static deserializeBinary(bytes: Uint8Array): StartAtActionId;
|
|
7930
|
+
static deserializeBinaryFromReader(message: StartAtActionId, reader: jspb.BinaryReader): StartAtActionId;
|
|
7931
|
+
}
|
|
7932
|
+
|
|
7933
|
+
export namespace StartAtActionId {
|
|
7934
|
+
export type AsObject = {
|
|
7935
|
+
startActionId: Uint8Array | string,
|
|
7936
|
+
startActionIdIncluded: boolean,
|
|
7937
|
+
}
|
|
7938
|
+
}
|
|
7939
|
+
|
|
7940
|
+
export class GetGroupActionsRequestV0 extends jspb.Message {
|
|
7941
|
+
getContractId(): Uint8Array | string;
|
|
7942
|
+
getContractId_asU8(): Uint8Array;
|
|
7943
|
+
getContractId_asB64(): string;
|
|
7944
|
+
setContractId(value: Uint8Array | string): void;
|
|
7945
|
+
|
|
7946
|
+
getGroupContractPosition(): number;
|
|
7947
|
+
setGroupContractPosition(value: number): void;
|
|
7948
|
+
|
|
7949
|
+
getStatus(): GetGroupActionsRequest.ActionStatusMap[keyof GetGroupActionsRequest.ActionStatusMap];
|
|
7950
|
+
setStatus(value: GetGroupActionsRequest.ActionStatusMap[keyof GetGroupActionsRequest.ActionStatusMap]): void;
|
|
7951
|
+
|
|
7952
|
+
hasStartAtActionId(): boolean;
|
|
7953
|
+
clearStartAtActionId(): void;
|
|
7954
|
+
getStartAtActionId(): GetGroupActionsRequest.StartAtActionId | undefined;
|
|
7955
|
+
setStartAtActionId(value?: GetGroupActionsRequest.StartAtActionId): void;
|
|
7956
|
+
|
|
7957
|
+
hasCount(): boolean;
|
|
7958
|
+
clearCount(): void;
|
|
7959
|
+
getCount(): number;
|
|
7960
|
+
setCount(value: number): void;
|
|
7961
|
+
|
|
7962
|
+
getProve(): boolean;
|
|
7963
|
+
setProve(value: boolean): void;
|
|
7964
|
+
|
|
7965
|
+
serializeBinary(): Uint8Array;
|
|
7966
|
+
toObject(includeInstance?: boolean): GetGroupActionsRequestV0.AsObject;
|
|
7967
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsRequestV0): GetGroupActionsRequestV0.AsObject;
|
|
7968
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7969
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7970
|
+
static serializeBinaryToWriter(message: GetGroupActionsRequestV0, writer: jspb.BinaryWriter): void;
|
|
7971
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsRequestV0;
|
|
7972
|
+
static deserializeBinaryFromReader(message: GetGroupActionsRequestV0, reader: jspb.BinaryReader): GetGroupActionsRequestV0;
|
|
7973
|
+
}
|
|
7974
|
+
|
|
7975
|
+
export namespace GetGroupActionsRequestV0 {
|
|
7976
|
+
export type AsObject = {
|
|
7977
|
+
contractId: Uint8Array | string,
|
|
7978
|
+
groupContractPosition: number,
|
|
7979
|
+
status: GetGroupActionsRequest.ActionStatusMap[keyof GetGroupActionsRequest.ActionStatusMap],
|
|
7980
|
+
startAtActionId?: GetGroupActionsRequest.StartAtActionId.AsObject,
|
|
7981
|
+
count: number,
|
|
7982
|
+
prove: boolean,
|
|
7983
|
+
}
|
|
7984
|
+
}
|
|
7985
|
+
|
|
7986
|
+
export interface ActionStatusMap {
|
|
7987
|
+
ACTIVE: 0;
|
|
7988
|
+
CLOSED: 1;
|
|
7989
|
+
}
|
|
7990
|
+
|
|
7991
|
+
export const ActionStatus: ActionStatusMap;
|
|
7992
|
+
|
|
7993
|
+
export enum VersionCase {
|
|
7994
|
+
VERSION_NOT_SET = 0,
|
|
7995
|
+
V0 = 1,
|
|
7996
|
+
}
|
|
7997
|
+
}
|
|
7998
|
+
|
|
7999
|
+
export class GetGroupActionsResponse extends jspb.Message {
|
|
8000
|
+
hasV0(): boolean;
|
|
8001
|
+
clearV0(): void;
|
|
8002
|
+
getV0(): GetGroupActionsResponse.GetGroupActionsResponseV0 | undefined;
|
|
8003
|
+
setV0(value?: GetGroupActionsResponse.GetGroupActionsResponseV0): void;
|
|
8004
|
+
|
|
8005
|
+
getVersionCase(): GetGroupActionsResponse.VersionCase;
|
|
8006
|
+
serializeBinary(): Uint8Array;
|
|
8007
|
+
toObject(includeInstance?: boolean): GetGroupActionsResponse.AsObject;
|
|
8008
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsResponse): GetGroupActionsResponse.AsObject;
|
|
8009
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8010
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8011
|
+
static serializeBinaryToWriter(message: GetGroupActionsResponse, writer: jspb.BinaryWriter): void;
|
|
8012
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsResponse;
|
|
8013
|
+
static deserializeBinaryFromReader(message: GetGroupActionsResponse, reader: jspb.BinaryReader): GetGroupActionsResponse;
|
|
8014
|
+
}
|
|
8015
|
+
|
|
8016
|
+
export namespace GetGroupActionsResponse {
|
|
8017
|
+
export type AsObject = {
|
|
8018
|
+
v0?: GetGroupActionsResponse.GetGroupActionsResponseV0.AsObject,
|
|
8019
|
+
}
|
|
8020
|
+
|
|
8021
|
+
export class GetGroupActionsResponseV0 extends jspb.Message {
|
|
8022
|
+
hasGroupActions(): boolean;
|
|
8023
|
+
clearGroupActions(): void;
|
|
8024
|
+
getGroupActions(): GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActions | undefined;
|
|
8025
|
+
setGroupActions(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActions): void;
|
|
8026
|
+
|
|
8027
|
+
hasProof(): boolean;
|
|
8028
|
+
clearProof(): void;
|
|
8029
|
+
getProof(): Proof | undefined;
|
|
8030
|
+
setProof(value?: Proof): void;
|
|
8031
|
+
|
|
8032
|
+
hasMetadata(): boolean;
|
|
8033
|
+
clearMetadata(): void;
|
|
8034
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
8035
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
8036
|
+
|
|
8037
|
+
getResultCase(): GetGroupActionsResponseV0.ResultCase;
|
|
8038
|
+
serializeBinary(): Uint8Array;
|
|
8039
|
+
toObject(includeInstance?: boolean): GetGroupActionsResponseV0.AsObject;
|
|
8040
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsResponseV0): GetGroupActionsResponseV0.AsObject;
|
|
8041
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8042
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8043
|
+
static serializeBinaryToWriter(message: GetGroupActionsResponseV0, writer: jspb.BinaryWriter): void;
|
|
8044
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsResponseV0;
|
|
8045
|
+
static deserializeBinaryFromReader(message: GetGroupActionsResponseV0, reader: jspb.BinaryReader): GetGroupActionsResponseV0;
|
|
8046
|
+
}
|
|
8047
|
+
|
|
8048
|
+
export namespace GetGroupActionsResponseV0 {
|
|
8049
|
+
export type AsObject = {
|
|
8050
|
+
groupActions?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActions.AsObject,
|
|
8051
|
+
proof?: Proof.AsObject,
|
|
8052
|
+
metadata?: ResponseMetadata.AsObject,
|
|
8053
|
+
}
|
|
8054
|
+
|
|
8055
|
+
export class MintEvent extends jspb.Message {
|
|
8056
|
+
getAmount(): number;
|
|
8057
|
+
setAmount(value: number): void;
|
|
8058
|
+
|
|
8059
|
+
getRecipientId(): Uint8Array | string;
|
|
8060
|
+
getRecipientId_asU8(): Uint8Array;
|
|
8061
|
+
getRecipientId_asB64(): string;
|
|
8062
|
+
setRecipientId(value: Uint8Array | string): void;
|
|
8063
|
+
|
|
8064
|
+
hasPublicNote(): boolean;
|
|
8065
|
+
clearPublicNote(): void;
|
|
8066
|
+
getPublicNote(): string;
|
|
8067
|
+
setPublicNote(value: string): void;
|
|
8068
|
+
|
|
8069
|
+
serializeBinary(): Uint8Array;
|
|
8070
|
+
toObject(includeInstance?: boolean): MintEvent.AsObject;
|
|
8071
|
+
static toObject(includeInstance: boolean, msg: MintEvent): MintEvent.AsObject;
|
|
8072
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8073
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8074
|
+
static serializeBinaryToWriter(message: MintEvent, writer: jspb.BinaryWriter): void;
|
|
8075
|
+
static deserializeBinary(bytes: Uint8Array): MintEvent;
|
|
8076
|
+
static deserializeBinaryFromReader(message: MintEvent, reader: jspb.BinaryReader): MintEvent;
|
|
8077
|
+
}
|
|
8078
|
+
|
|
8079
|
+
export namespace MintEvent {
|
|
8080
|
+
export type AsObject = {
|
|
8081
|
+
amount: number,
|
|
8082
|
+
recipientId: Uint8Array | string,
|
|
8083
|
+
publicNote: string,
|
|
8084
|
+
}
|
|
8085
|
+
}
|
|
8086
|
+
|
|
8087
|
+
export class BurnEvent extends jspb.Message {
|
|
8088
|
+
getAmount(): number;
|
|
8089
|
+
setAmount(value: number): void;
|
|
8090
|
+
|
|
8091
|
+
hasPublicNote(): boolean;
|
|
8092
|
+
clearPublicNote(): void;
|
|
8093
|
+
getPublicNote(): string;
|
|
8094
|
+
setPublicNote(value: string): void;
|
|
8095
|
+
|
|
8096
|
+
serializeBinary(): Uint8Array;
|
|
8097
|
+
toObject(includeInstance?: boolean): BurnEvent.AsObject;
|
|
8098
|
+
static toObject(includeInstance: boolean, msg: BurnEvent): BurnEvent.AsObject;
|
|
8099
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8100
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8101
|
+
static serializeBinaryToWriter(message: BurnEvent, writer: jspb.BinaryWriter): void;
|
|
8102
|
+
static deserializeBinary(bytes: Uint8Array): BurnEvent;
|
|
8103
|
+
static deserializeBinaryFromReader(message: BurnEvent, reader: jspb.BinaryReader): BurnEvent;
|
|
8104
|
+
}
|
|
8105
|
+
|
|
8106
|
+
export namespace BurnEvent {
|
|
8107
|
+
export type AsObject = {
|
|
8108
|
+
amount: number,
|
|
8109
|
+
publicNote: string,
|
|
8110
|
+
}
|
|
8111
|
+
}
|
|
8112
|
+
|
|
8113
|
+
export class FreezeEvent extends jspb.Message {
|
|
8114
|
+
getFrozenId(): Uint8Array | string;
|
|
8115
|
+
getFrozenId_asU8(): Uint8Array;
|
|
8116
|
+
getFrozenId_asB64(): string;
|
|
8117
|
+
setFrozenId(value: Uint8Array | string): void;
|
|
8118
|
+
|
|
8119
|
+
hasPublicNote(): boolean;
|
|
8120
|
+
clearPublicNote(): void;
|
|
8121
|
+
getPublicNote(): string;
|
|
8122
|
+
setPublicNote(value: string): void;
|
|
8123
|
+
|
|
8124
|
+
serializeBinary(): Uint8Array;
|
|
8125
|
+
toObject(includeInstance?: boolean): FreezeEvent.AsObject;
|
|
8126
|
+
static toObject(includeInstance: boolean, msg: FreezeEvent): FreezeEvent.AsObject;
|
|
8127
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8128
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8129
|
+
static serializeBinaryToWriter(message: FreezeEvent, writer: jspb.BinaryWriter): void;
|
|
8130
|
+
static deserializeBinary(bytes: Uint8Array): FreezeEvent;
|
|
8131
|
+
static deserializeBinaryFromReader(message: FreezeEvent, reader: jspb.BinaryReader): FreezeEvent;
|
|
8132
|
+
}
|
|
8133
|
+
|
|
8134
|
+
export namespace FreezeEvent {
|
|
8135
|
+
export type AsObject = {
|
|
8136
|
+
frozenId: Uint8Array | string,
|
|
8137
|
+
publicNote: string,
|
|
8138
|
+
}
|
|
8139
|
+
}
|
|
8140
|
+
|
|
8141
|
+
export class UnfreezeEvent extends jspb.Message {
|
|
8142
|
+
getFrozenId(): Uint8Array | string;
|
|
8143
|
+
getFrozenId_asU8(): Uint8Array;
|
|
8144
|
+
getFrozenId_asB64(): string;
|
|
8145
|
+
setFrozenId(value: Uint8Array | string): void;
|
|
8146
|
+
|
|
8147
|
+
hasPublicNote(): boolean;
|
|
8148
|
+
clearPublicNote(): void;
|
|
8149
|
+
getPublicNote(): string;
|
|
8150
|
+
setPublicNote(value: string): void;
|
|
8151
|
+
|
|
8152
|
+
serializeBinary(): Uint8Array;
|
|
8153
|
+
toObject(includeInstance?: boolean): UnfreezeEvent.AsObject;
|
|
8154
|
+
static toObject(includeInstance: boolean, msg: UnfreezeEvent): UnfreezeEvent.AsObject;
|
|
8155
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8156
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8157
|
+
static serializeBinaryToWriter(message: UnfreezeEvent, writer: jspb.BinaryWriter): void;
|
|
8158
|
+
static deserializeBinary(bytes: Uint8Array): UnfreezeEvent;
|
|
8159
|
+
static deserializeBinaryFromReader(message: UnfreezeEvent, reader: jspb.BinaryReader): UnfreezeEvent;
|
|
8160
|
+
}
|
|
8161
|
+
|
|
8162
|
+
export namespace UnfreezeEvent {
|
|
8163
|
+
export type AsObject = {
|
|
8164
|
+
frozenId: Uint8Array | string,
|
|
8165
|
+
publicNote: string,
|
|
8166
|
+
}
|
|
8167
|
+
}
|
|
8168
|
+
|
|
8169
|
+
export class DestroyFrozenFundsEvent extends jspb.Message {
|
|
8170
|
+
getFrozenId(): Uint8Array | string;
|
|
8171
|
+
getFrozenId_asU8(): Uint8Array;
|
|
8172
|
+
getFrozenId_asB64(): string;
|
|
8173
|
+
setFrozenId(value: Uint8Array | string): void;
|
|
8174
|
+
|
|
8175
|
+
getAmount(): number;
|
|
8176
|
+
setAmount(value: number): void;
|
|
8177
|
+
|
|
8178
|
+
hasPublicNote(): boolean;
|
|
8179
|
+
clearPublicNote(): void;
|
|
8180
|
+
getPublicNote(): string;
|
|
8181
|
+
setPublicNote(value: string): void;
|
|
8182
|
+
|
|
8183
|
+
serializeBinary(): Uint8Array;
|
|
8184
|
+
toObject(includeInstance?: boolean): DestroyFrozenFundsEvent.AsObject;
|
|
8185
|
+
static toObject(includeInstance: boolean, msg: DestroyFrozenFundsEvent): DestroyFrozenFundsEvent.AsObject;
|
|
8186
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8187
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8188
|
+
static serializeBinaryToWriter(message: DestroyFrozenFundsEvent, writer: jspb.BinaryWriter): void;
|
|
8189
|
+
static deserializeBinary(bytes: Uint8Array): DestroyFrozenFundsEvent;
|
|
8190
|
+
static deserializeBinaryFromReader(message: DestroyFrozenFundsEvent, reader: jspb.BinaryReader): DestroyFrozenFundsEvent;
|
|
8191
|
+
}
|
|
8192
|
+
|
|
8193
|
+
export namespace DestroyFrozenFundsEvent {
|
|
8194
|
+
export type AsObject = {
|
|
8195
|
+
frozenId: Uint8Array | string,
|
|
8196
|
+
amount: number,
|
|
8197
|
+
publicNote: string,
|
|
8198
|
+
}
|
|
8199
|
+
}
|
|
8200
|
+
|
|
8201
|
+
export class SharedEncryptedNote extends jspb.Message {
|
|
8202
|
+
getSenderKeyIndex(): number;
|
|
8203
|
+
setSenderKeyIndex(value: number): void;
|
|
8204
|
+
|
|
8205
|
+
getRecipientKeyIndex(): number;
|
|
8206
|
+
setRecipientKeyIndex(value: number): void;
|
|
8207
|
+
|
|
8208
|
+
getEncryptedData(): Uint8Array | string;
|
|
8209
|
+
getEncryptedData_asU8(): Uint8Array;
|
|
8210
|
+
getEncryptedData_asB64(): string;
|
|
8211
|
+
setEncryptedData(value: Uint8Array | string): void;
|
|
8212
|
+
|
|
8213
|
+
serializeBinary(): Uint8Array;
|
|
8214
|
+
toObject(includeInstance?: boolean): SharedEncryptedNote.AsObject;
|
|
8215
|
+
static toObject(includeInstance: boolean, msg: SharedEncryptedNote): SharedEncryptedNote.AsObject;
|
|
8216
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8217
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8218
|
+
static serializeBinaryToWriter(message: SharedEncryptedNote, writer: jspb.BinaryWriter): void;
|
|
8219
|
+
static deserializeBinary(bytes: Uint8Array): SharedEncryptedNote;
|
|
8220
|
+
static deserializeBinaryFromReader(message: SharedEncryptedNote, reader: jspb.BinaryReader): SharedEncryptedNote;
|
|
8221
|
+
}
|
|
8222
|
+
|
|
8223
|
+
export namespace SharedEncryptedNote {
|
|
8224
|
+
export type AsObject = {
|
|
8225
|
+
senderKeyIndex: number,
|
|
8226
|
+
recipientKeyIndex: number,
|
|
8227
|
+
encryptedData: Uint8Array | string,
|
|
8228
|
+
}
|
|
8229
|
+
}
|
|
8230
|
+
|
|
8231
|
+
export class PersonalEncryptedNote extends jspb.Message {
|
|
8232
|
+
getRootEncryptionKeyIndex(): number;
|
|
8233
|
+
setRootEncryptionKeyIndex(value: number): void;
|
|
8234
|
+
|
|
8235
|
+
getDerivationEncryptionKeyIndex(): number;
|
|
8236
|
+
setDerivationEncryptionKeyIndex(value: number): void;
|
|
8237
|
+
|
|
8238
|
+
getEncryptedData(): Uint8Array | string;
|
|
8239
|
+
getEncryptedData_asU8(): Uint8Array;
|
|
8240
|
+
getEncryptedData_asB64(): string;
|
|
8241
|
+
setEncryptedData(value: Uint8Array | string): void;
|
|
8242
|
+
|
|
8243
|
+
serializeBinary(): Uint8Array;
|
|
8244
|
+
toObject(includeInstance?: boolean): PersonalEncryptedNote.AsObject;
|
|
8245
|
+
static toObject(includeInstance: boolean, msg: PersonalEncryptedNote): PersonalEncryptedNote.AsObject;
|
|
8246
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8247
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8248
|
+
static serializeBinaryToWriter(message: PersonalEncryptedNote, writer: jspb.BinaryWriter): void;
|
|
8249
|
+
static deserializeBinary(bytes: Uint8Array): PersonalEncryptedNote;
|
|
8250
|
+
static deserializeBinaryFromReader(message: PersonalEncryptedNote, reader: jspb.BinaryReader): PersonalEncryptedNote;
|
|
8251
|
+
}
|
|
8252
|
+
|
|
8253
|
+
export namespace PersonalEncryptedNote {
|
|
8254
|
+
export type AsObject = {
|
|
8255
|
+
rootEncryptionKeyIndex: number,
|
|
8256
|
+
derivationEncryptionKeyIndex: number,
|
|
8257
|
+
encryptedData: Uint8Array | string,
|
|
8258
|
+
}
|
|
8259
|
+
}
|
|
8260
|
+
|
|
8261
|
+
export class EmergencyActionEvent extends jspb.Message {
|
|
8262
|
+
getActionType(): GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap[keyof GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap];
|
|
8263
|
+
setActionType(value: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap[keyof GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap]): void;
|
|
8264
|
+
|
|
8265
|
+
hasPublicNote(): boolean;
|
|
8266
|
+
clearPublicNote(): void;
|
|
8267
|
+
getPublicNote(): string;
|
|
8268
|
+
setPublicNote(value: string): void;
|
|
8269
|
+
|
|
8270
|
+
serializeBinary(): Uint8Array;
|
|
8271
|
+
toObject(includeInstance?: boolean): EmergencyActionEvent.AsObject;
|
|
8272
|
+
static toObject(includeInstance: boolean, msg: EmergencyActionEvent): EmergencyActionEvent.AsObject;
|
|
8273
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8274
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8275
|
+
static serializeBinaryToWriter(message: EmergencyActionEvent, writer: jspb.BinaryWriter): void;
|
|
8276
|
+
static deserializeBinary(bytes: Uint8Array): EmergencyActionEvent;
|
|
8277
|
+
static deserializeBinaryFromReader(message: EmergencyActionEvent, reader: jspb.BinaryReader): EmergencyActionEvent;
|
|
8278
|
+
}
|
|
8279
|
+
|
|
8280
|
+
export namespace EmergencyActionEvent {
|
|
8281
|
+
export type AsObject = {
|
|
8282
|
+
actionType: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap[keyof GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap],
|
|
8283
|
+
publicNote: string,
|
|
8284
|
+
}
|
|
8285
|
+
|
|
8286
|
+
export interface ActionTypeMap {
|
|
8287
|
+
PAUSE: 0;
|
|
8288
|
+
RESUME: 1;
|
|
8289
|
+
}
|
|
8290
|
+
|
|
8291
|
+
export const ActionType: ActionTypeMap;
|
|
8292
|
+
}
|
|
8293
|
+
|
|
8294
|
+
export class TokenConfigUpdateEvent extends jspb.Message {
|
|
8295
|
+
getTokenConfigUpdateItem(): Uint8Array | string;
|
|
8296
|
+
getTokenConfigUpdateItem_asU8(): Uint8Array;
|
|
8297
|
+
getTokenConfigUpdateItem_asB64(): string;
|
|
8298
|
+
setTokenConfigUpdateItem(value: Uint8Array | string): void;
|
|
8299
|
+
|
|
8300
|
+
hasPublicNote(): boolean;
|
|
8301
|
+
clearPublicNote(): void;
|
|
8302
|
+
getPublicNote(): string;
|
|
8303
|
+
setPublicNote(value: string): void;
|
|
8304
|
+
|
|
8305
|
+
serializeBinary(): Uint8Array;
|
|
8306
|
+
toObject(includeInstance?: boolean): TokenConfigUpdateEvent.AsObject;
|
|
8307
|
+
static toObject(includeInstance: boolean, msg: TokenConfigUpdateEvent): TokenConfigUpdateEvent.AsObject;
|
|
8308
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8309
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8310
|
+
static serializeBinaryToWriter(message: TokenConfigUpdateEvent, writer: jspb.BinaryWriter): void;
|
|
8311
|
+
static deserializeBinary(bytes: Uint8Array): TokenConfigUpdateEvent;
|
|
8312
|
+
static deserializeBinaryFromReader(message: TokenConfigUpdateEvent, reader: jspb.BinaryReader): TokenConfigUpdateEvent;
|
|
8313
|
+
}
|
|
8314
|
+
|
|
8315
|
+
export namespace TokenConfigUpdateEvent {
|
|
8316
|
+
export type AsObject = {
|
|
8317
|
+
tokenConfigUpdateItem: Uint8Array | string,
|
|
8318
|
+
publicNote: string,
|
|
8319
|
+
}
|
|
8320
|
+
}
|
|
8321
|
+
|
|
8322
|
+
export class UpdateDirectPurchasePriceEvent extends jspb.Message {
|
|
8323
|
+
hasFixedPrice(): boolean;
|
|
8324
|
+
clearFixedPrice(): void;
|
|
8325
|
+
getFixedPrice(): number;
|
|
8326
|
+
setFixedPrice(value: number): void;
|
|
8327
|
+
|
|
8328
|
+
hasVariablePrice(): boolean;
|
|
8329
|
+
clearVariablePrice(): void;
|
|
8330
|
+
getVariablePrice(): GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PricingSchedule | undefined;
|
|
8331
|
+
setVariablePrice(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PricingSchedule): void;
|
|
8332
|
+
|
|
8333
|
+
hasPublicNote(): boolean;
|
|
8334
|
+
clearPublicNote(): void;
|
|
8335
|
+
getPublicNote(): string;
|
|
8336
|
+
setPublicNote(value: string): void;
|
|
8337
|
+
|
|
8338
|
+
getPriceCase(): UpdateDirectPurchasePriceEvent.PriceCase;
|
|
8339
|
+
serializeBinary(): Uint8Array;
|
|
8340
|
+
toObject(includeInstance?: boolean): UpdateDirectPurchasePriceEvent.AsObject;
|
|
8341
|
+
static toObject(includeInstance: boolean, msg: UpdateDirectPurchasePriceEvent): UpdateDirectPurchasePriceEvent.AsObject;
|
|
8342
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8343
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8344
|
+
static serializeBinaryToWriter(message: UpdateDirectPurchasePriceEvent, writer: jspb.BinaryWriter): void;
|
|
8345
|
+
static deserializeBinary(bytes: Uint8Array): UpdateDirectPurchasePriceEvent;
|
|
8346
|
+
static deserializeBinaryFromReader(message: UpdateDirectPurchasePriceEvent, reader: jspb.BinaryReader): UpdateDirectPurchasePriceEvent;
|
|
8347
|
+
}
|
|
8348
|
+
|
|
8349
|
+
export namespace UpdateDirectPurchasePriceEvent {
|
|
8350
|
+
export type AsObject = {
|
|
8351
|
+
fixedPrice: number,
|
|
8352
|
+
variablePrice?: GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PricingSchedule.AsObject,
|
|
8353
|
+
publicNote: string,
|
|
8354
|
+
}
|
|
8355
|
+
|
|
8356
|
+
export class PriceForQuantity extends jspb.Message {
|
|
8357
|
+
getQuantity(): number;
|
|
8358
|
+
setQuantity(value: number): void;
|
|
8359
|
+
|
|
8360
|
+
getPrice(): number;
|
|
8361
|
+
setPrice(value: number): void;
|
|
8362
|
+
|
|
8363
|
+
serializeBinary(): Uint8Array;
|
|
8364
|
+
toObject(includeInstance?: boolean): PriceForQuantity.AsObject;
|
|
8365
|
+
static toObject(includeInstance: boolean, msg: PriceForQuantity): PriceForQuantity.AsObject;
|
|
8366
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8367
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8368
|
+
static serializeBinaryToWriter(message: PriceForQuantity, writer: jspb.BinaryWriter): void;
|
|
8369
|
+
static deserializeBinary(bytes: Uint8Array): PriceForQuantity;
|
|
8370
|
+
static deserializeBinaryFromReader(message: PriceForQuantity, reader: jspb.BinaryReader): PriceForQuantity;
|
|
8371
|
+
}
|
|
8372
|
+
|
|
8373
|
+
export namespace PriceForQuantity {
|
|
8374
|
+
export type AsObject = {
|
|
8375
|
+
quantity: number,
|
|
8376
|
+
price: number,
|
|
8377
|
+
}
|
|
8378
|
+
}
|
|
8379
|
+
|
|
8380
|
+
export class PricingSchedule extends jspb.Message {
|
|
8381
|
+
clearPriceForQuantityList(): void;
|
|
8382
|
+
getPriceForQuantityList(): Array<GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PriceForQuantity>;
|
|
8383
|
+
setPriceForQuantityList(value: Array<GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PriceForQuantity>): void;
|
|
8384
|
+
addPriceForQuantity(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PriceForQuantity, index?: number): GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PriceForQuantity;
|
|
8385
|
+
|
|
8386
|
+
serializeBinary(): Uint8Array;
|
|
8387
|
+
toObject(includeInstance?: boolean): PricingSchedule.AsObject;
|
|
8388
|
+
static toObject(includeInstance: boolean, msg: PricingSchedule): PricingSchedule.AsObject;
|
|
8389
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8390
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8391
|
+
static serializeBinaryToWriter(message: PricingSchedule, writer: jspb.BinaryWriter): void;
|
|
8392
|
+
static deserializeBinary(bytes: Uint8Array): PricingSchedule;
|
|
8393
|
+
static deserializeBinaryFromReader(message: PricingSchedule, reader: jspb.BinaryReader): PricingSchedule;
|
|
8394
|
+
}
|
|
8395
|
+
|
|
8396
|
+
export namespace PricingSchedule {
|
|
8397
|
+
export type AsObject = {
|
|
8398
|
+
priceForQuantityList: Array<GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.PriceForQuantity.AsObject>,
|
|
8399
|
+
}
|
|
8400
|
+
}
|
|
8401
|
+
|
|
8402
|
+
export enum PriceCase {
|
|
8403
|
+
PRICE_NOT_SET = 0,
|
|
8404
|
+
FIXED_PRICE = 1,
|
|
8405
|
+
VARIABLE_PRICE = 2,
|
|
8406
|
+
}
|
|
8407
|
+
}
|
|
8408
|
+
|
|
8409
|
+
export class GroupActionEvent extends jspb.Message {
|
|
8410
|
+
hasTokenEvent(): boolean;
|
|
8411
|
+
clearTokenEvent(): void;
|
|
8412
|
+
getTokenEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.TokenEvent | undefined;
|
|
8413
|
+
setTokenEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenEvent): void;
|
|
8414
|
+
|
|
8415
|
+
hasDocumentEvent(): boolean;
|
|
8416
|
+
clearDocumentEvent(): void;
|
|
8417
|
+
getDocumentEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentEvent | undefined;
|
|
8418
|
+
setDocumentEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentEvent): void;
|
|
8419
|
+
|
|
8420
|
+
hasContractEvent(): boolean;
|
|
8421
|
+
clearContractEvent(): void;
|
|
8422
|
+
getContractEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.ContractEvent | undefined;
|
|
8423
|
+
setContractEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractEvent): void;
|
|
8424
|
+
|
|
8425
|
+
getEventTypeCase(): GroupActionEvent.EventTypeCase;
|
|
8426
|
+
serializeBinary(): Uint8Array;
|
|
8427
|
+
toObject(includeInstance?: boolean): GroupActionEvent.AsObject;
|
|
8428
|
+
static toObject(includeInstance: boolean, msg: GroupActionEvent): GroupActionEvent.AsObject;
|
|
8429
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8430
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8431
|
+
static serializeBinaryToWriter(message: GroupActionEvent, writer: jspb.BinaryWriter): void;
|
|
8432
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionEvent;
|
|
8433
|
+
static deserializeBinaryFromReader(message: GroupActionEvent, reader: jspb.BinaryReader): GroupActionEvent;
|
|
8434
|
+
}
|
|
8435
|
+
|
|
8436
|
+
export namespace GroupActionEvent {
|
|
8437
|
+
export type AsObject = {
|
|
8438
|
+
tokenEvent?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenEvent.AsObject,
|
|
8439
|
+
documentEvent?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentEvent.AsObject,
|
|
8440
|
+
contractEvent?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractEvent.AsObject,
|
|
8441
|
+
}
|
|
8442
|
+
|
|
8443
|
+
export enum EventTypeCase {
|
|
8444
|
+
EVENT_TYPE_NOT_SET = 0,
|
|
8445
|
+
TOKEN_EVENT = 1,
|
|
8446
|
+
DOCUMENT_EVENT = 2,
|
|
8447
|
+
CONTRACT_EVENT = 3,
|
|
8448
|
+
}
|
|
8449
|
+
}
|
|
8450
|
+
|
|
8451
|
+
export class DocumentEvent extends jspb.Message {
|
|
8452
|
+
hasCreate(): boolean;
|
|
8453
|
+
clearCreate(): void;
|
|
8454
|
+
getCreate(): GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentCreateEvent | undefined;
|
|
8455
|
+
setCreate(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentCreateEvent): void;
|
|
8456
|
+
|
|
8457
|
+
getTypeCase(): DocumentEvent.TypeCase;
|
|
8458
|
+
serializeBinary(): Uint8Array;
|
|
8459
|
+
toObject(includeInstance?: boolean): DocumentEvent.AsObject;
|
|
8460
|
+
static toObject(includeInstance: boolean, msg: DocumentEvent): DocumentEvent.AsObject;
|
|
8461
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8462
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8463
|
+
static serializeBinaryToWriter(message: DocumentEvent, writer: jspb.BinaryWriter): void;
|
|
8464
|
+
static deserializeBinary(bytes: Uint8Array): DocumentEvent;
|
|
8465
|
+
static deserializeBinaryFromReader(message: DocumentEvent, reader: jspb.BinaryReader): DocumentEvent;
|
|
8466
|
+
}
|
|
8467
|
+
|
|
8468
|
+
export namespace DocumentEvent {
|
|
8469
|
+
export type AsObject = {
|
|
8470
|
+
create?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentCreateEvent.AsObject,
|
|
8471
|
+
}
|
|
8472
|
+
|
|
8473
|
+
export enum TypeCase {
|
|
8474
|
+
TYPE_NOT_SET = 0,
|
|
8475
|
+
CREATE = 1,
|
|
8476
|
+
}
|
|
8477
|
+
}
|
|
8478
|
+
|
|
8479
|
+
export class DocumentCreateEvent extends jspb.Message {
|
|
8480
|
+
getCreatedDocument(): Uint8Array | string;
|
|
8481
|
+
getCreatedDocument_asU8(): Uint8Array;
|
|
8482
|
+
getCreatedDocument_asB64(): string;
|
|
8483
|
+
setCreatedDocument(value: Uint8Array | string): void;
|
|
8484
|
+
|
|
8485
|
+
serializeBinary(): Uint8Array;
|
|
8486
|
+
toObject(includeInstance?: boolean): DocumentCreateEvent.AsObject;
|
|
8487
|
+
static toObject(includeInstance: boolean, msg: DocumentCreateEvent): DocumentCreateEvent.AsObject;
|
|
8488
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8489
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8490
|
+
static serializeBinaryToWriter(message: DocumentCreateEvent, writer: jspb.BinaryWriter): void;
|
|
8491
|
+
static deserializeBinary(bytes: Uint8Array): DocumentCreateEvent;
|
|
8492
|
+
static deserializeBinaryFromReader(message: DocumentCreateEvent, reader: jspb.BinaryReader): DocumentCreateEvent;
|
|
8493
|
+
}
|
|
8494
|
+
|
|
8495
|
+
export namespace DocumentCreateEvent {
|
|
8496
|
+
export type AsObject = {
|
|
8497
|
+
createdDocument: Uint8Array | string,
|
|
8498
|
+
}
|
|
8499
|
+
}
|
|
8500
|
+
|
|
8501
|
+
export class ContractUpdateEvent extends jspb.Message {
|
|
8502
|
+
getUpdatedContract(): Uint8Array | string;
|
|
8503
|
+
getUpdatedContract_asU8(): Uint8Array;
|
|
8504
|
+
getUpdatedContract_asB64(): string;
|
|
8505
|
+
setUpdatedContract(value: Uint8Array | string): void;
|
|
8506
|
+
|
|
8507
|
+
serializeBinary(): Uint8Array;
|
|
8508
|
+
toObject(includeInstance?: boolean): ContractUpdateEvent.AsObject;
|
|
8509
|
+
static toObject(includeInstance: boolean, msg: ContractUpdateEvent): ContractUpdateEvent.AsObject;
|
|
8510
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8511
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8512
|
+
static serializeBinaryToWriter(message: ContractUpdateEvent, writer: jspb.BinaryWriter): void;
|
|
8513
|
+
static deserializeBinary(bytes: Uint8Array): ContractUpdateEvent;
|
|
8514
|
+
static deserializeBinaryFromReader(message: ContractUpdateEvent, reader: jspb.BinaryReader): ContractUpdateEvent;
|
|
8515
|
+
}
|
|
8516
|
+
|
|
8517
|
+
export namespace ContractUpdateEvent {
|
|
8518
|
+
export type AsObject = {
|
|
8519
|
+
updatedContract: Uint8Array | string,
|
|
8520
|
+
}
|
|
8521
|
+
}
|
|
8522
|
+
|
|
8523
|
+
export class ContractEvent extends jspb.Message {
|
|
8524
|
+
hasUpdate(): boolean;
|
|
8525
|
+
clearUpdate(): void;
|
|
8526
|
+
getUpdate(): GetGroupActionsResponse.GetGroupActionsResponseV0.ContractUpdateEvent | undefined;
|
|
8527
|
+
setUpdate(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractUpdateEvent): void;
|
|
8528
|
+
|
|
8529
|
+
getTypeCase(): ContractEvent.TypeCase;
|
|
8530
|
+
serializeBinary(): Uint8Array;
|
|
8531
|
+
toObject(includeInstance?: boolean): ContractEvent.AsObject;
|
|
8532
|
+
static toObject(includeInstance: boolean, msg: ContractEvent): ContractEvent.AsObject;
|
|
8533
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8534
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8535
|
+
static serializeBinaryToWriter(message: ContractEvent, writer: jspb.BinaryWriter): void;
|
|
8536
|
+
static deserializeBinary(bytes: Uint8Array): ContractEvent;
|
|
8537
|
+
static deserializeBinaryFromReader(message: ContractEvent, reader: jspb.BinaryReader): ContractEvent;
|
|
8538
|
+
}
|
|
8539
|
+
|
|
8540
|
+
export namespace ContractEvent {
|
|
8541
|
+
export type AsObject = {
|
|
8542
|
+
update?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractUpdateEvent.AsObject,
|
|
8543
|
+
}
|
|
8544
|
+
|
|
8545
|
+
export enum TypeCase {
|
|
8546
|
+
TYPE_NOT_SET = 0,
|
|
8547
|
+
UPDATE = 1,
|
|
8548
|
+
}
|
|
8549
|
+
}
|
|
8550
|
+
|
|
8551
|
+
export class TokenEvent extends jspb.Message {
|
|
8552
|
+
hasMint(): boolean;
|
|
8553
|
+
clearMint(): void;
|
|
8554
|
+
getMint(): GetGroupActionsResponse.GetGroupActionsResponseV0.MintEvent | undefined;
|
|
8555
|
+
setMint(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.MintEvent): void;
|
|
8556
|
+
|
|
8557
|
+
hasBurn(): boolean;
|
|
8558
|
+
clearBurn(): void;
|
|
8559
|
+
getBurn(): GetGroupActionsResponse.GetGroupActionsResponseV0.BurnEvent | undefined;
|
|
8560
|
+
setBurn(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.BurnEvent): void;
|
|
8561
|
+
|
|
8562
|
+
hasFreeze(): boolean;
|
|
8563
|
+
clearFreeze(): void;
|
|
8564
|
+
getFreeze(): GetGroupActionsResponse.GetGroupActionsResponseV0.FreezeEvent | undefined;
|
|
8565
|
+
setFreeze(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.FreezeEvent): void;
|
|
8566
|
+
|
|
8567
|
+
hasUnfreeze(): boolean;
|
|
8568
|
+
clearUnfreeze(): void;
|
|
8569
|
+
getUnfreeze(): GetGroupActionsResponse.GetGroupActionsResponseV0.UnfreezeEvent | undefined;
|
|
8570
|
+
setUnfreeze(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.UnfreezeEvent): void;
|
|
8571
|
+
|
|
8572
|
+
hasDestroyFrozenFunds(): boolean;
|
|
8573
|
+
clearDestroyFrozenFunds(): void;
|
|
8574
|
+
getDestroyFrozenFunds(): GetGroupActionsResponse.GetGroupActionsResponseV0.DestroyFrozenFundsEvent | undefined;
|
|
8575
|
+
setDestroyFrozenFunds(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.DestroyFrozenFundsEvent): void;
|
|
8576
|
+
|
|
8577
|
+
hasEmergencyAction(): boolean;
|
|
8578
|
+
clearEmergencyAction(): void;
|
|
8579
|
+
getEmergencyAction(): GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent | undefined;
|
|
8580
|
+
setEmergencyAction(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent): void;
|
|
8581
|
+
|
|
8582
|
+
hasTokenConfigUpdate(): boolean;
|
|
8583
|
+
clearTokenConfigUpdate(): void;
|
|
8584
|
+
getTokenConfigUpdate(): GetGroupActionsResponse.GetGroupActionsResponseV0.TokenConfigUpdateEvent | undefined;
|
|
8585
|
+
setTokenConfigUpdate(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenConfigUpdateEvent): void;
|
|
8586
|
+
|
|
8587
|
+
hasUpdatePrice(): boolean;
|
|
8588
|
+
clearUpdatePrice(): void;
|
|
8589
|
+
getUpdatePrice(): GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent | undefined;
|
|
8590
|
+
setUpdatePrice(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent): void;
|
|
8591
|
+
|
|
8592
|
+
getTypeCase(): TokenEvent.TypeCase;
|
|
8593
|
+
serializeBinary(): Uint8Array;
|
|
8594
|
+
toObject(includeInstance?: boolean): TokenEvent.AsObject;
|
|
8595
|
+
static toObject(includeInstance: boolean, msg: TokenEvent): TokenEvent.AsObject;
|
|
8596
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8597
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8598
|
+
static serializeBinaryToWriter(message: TokenEvent, writer: jspb.BinaryWriter): void;
|
|
8599
|
+
static deserializeBinary(bytes: Uint8Array): TokenEvent;
|
|
8600
|
+
static deserializeBinaryFromReader(message: TokenEvent, reader: jspb.BinaryReader): TokenEvent;
|
|
8601
|
+
}
|
|
8602
|
+
|
|
8603
|
+
export namespace TokenEvent {
|
|
8604
|
+
export type AsObject = {
|
|
8605
|
+
mint?: GetGroupActionsResponse.GetGroupActionsResponseV0.MintEvent.AsObject,
|
|
8606
|
+
burn?: GetGroupActionsResponse.GetGroupActionsResponseV0.BurnEvent.AsObject,
|
|
8607
|
+
freeze?: GetGroupActionsResponse.GetGroupActionsResponseV0.FreezeEvent.AsObject,
|
|
8608
|
+
unfreeze?: GetGroupActionsResponse.GetGroupActionsResponseV0.UnfreezeEvent.AsObject,
|
|
8609
|
+
destroyFrozenFunds?: GetGroupActionsResponse.GetGroupActionsResponseV0.DestroyFrozenFundsEvent.AsObject,
|
|
8610
|
+
emergencyAction?: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.AsObject,
|
|
8611
|
+
tokenConfigUpdate?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenConfigUpdateEvent.AsObject,
|
|
8612
|
+
updatePrice?: GetGroupActionsResponse.GetGroupActionsResponseV0.UpdateDirectPurchasePriceEvent.AsObject,
|
|
8613
|
+
}
|
|
8614
|
+
|
|
8615
|
+
export enum TypeCase {
|
|
8616
|
+
TYPE_NOT_SET = 0,
|
|
8617
|
+
MINT = 1,
|
|
8618
|
+
BURN = 2,
|
|
8619
|
+
FREEZE = 3,
|
|
8620
|
+
UNFREEZE = 4,
|
|
8621
|
+
DESTROY_FROZEN_FUNDS = 5,
|
|
8622
|
+
EMERGENCY_ACTION = 6,
|
|
8623
|
+
TOKEN_CONFIG_UPDATE = 7,
|
|
8624
|
+
UPDATE_PRICE = 8,
|
|
8625
|
+
}
|
|
8626
|
+
}
|
|
8627
|
+
|
|
8628
|
+
export class GroupActionEntry extends jspb.Message {
|
|
8629
|
+
getActionId(): Uint8Array | string;
|
|
8630
|
+
getActionId_asU8(): Uint8Array;
|
|
8631
|
+
getActionId_asB64(): string;
|
|
8632
|
+
setActionId(value: Uint8Array | string): void;
|
|
8633
|
+
|
|
8634
|
+
hasEvent(): boolean;
|
|
8635
|
+
clearEvent(): void;
|
|
8636
|
+
getEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEvent | undefined;
|
|
8637
|
+
setEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEvent): void;
|
|
8638
|
+
|
|
8639
|
+
serializeBinary(): Uint8Array;
|
|
8640
|
+
toObject(includeInstance?: boolean): GroupActionEntry.AsObject;
|
|
8641
|
+
static toObject(includeInstance: boolean, msg: GroupActionEntry): GroupActionEntry.AsObject;
|
|
8642
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8643
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8644
|
+
static serializeBinaryToWriter(message: GroupActionEntry, writer: jspb.BinaryWriter): void;
|
|
8645
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionEntry;
|
|
8646
|
+
static deserializeBinaryFromReader(message: GroupActionEntry, reader: jspb.BinaryReader): GroupActionEntry;
|
|
8647
|
+
}
|
|
8648
|
+
|
|
8649
|
+
export namespace GroupActionEntry {
|
|
8650
|
+
export type AsObject = {
|
|
8651
|
+
actionId: Uint8Array | string,
|
|
8652
|
+
event?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEvent.AsObject,
|
|
8653
|
+
}
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8656
|
+
export class GroupActions extends jspb.Message {
|
|
8657
|
+
clearGroupActionsList(): void;
|
|
8658
|
+
getGroupActionsList(): Array<GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry>;
|
|
8659
|
+
setGroupActionsList(value: Array<GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry>): void;
|
|
8660
|
+
addGroupActions(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry, index?: number): GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry;
|
|
8661
|
+
|
|
8662
|
+
serializeBinary(): Uint8Array;
|
|
8663
|
+
toObject(includeInstance?: boolean): GroupActions.AsObject;
|
|
8664
|
+
static toObject(includeInstance: boolean, msg: GroupActions): GroupActions.AsObject;
|
|
8665
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8666
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8667
|
+
static serializeBinaryToWriter(message: GroupActions, writer: jspb.BinaryWriter): void;
|
|
8668
|
+
static deserializeBinary(bytes: Uint8Array): GroupActions;
|
|
8669
|
+
static deserializeBinaryFromReader(message: GroupActions, reader: jspb.BinaryReader): GroupActions;
|
|
8670
|
+
}
|
|
8671
|
+
|
|
8672
|
+
export namespace GroupActions {
|
|
8673
|
+
export type AsObject = {
|
|
8674
|
+
groupActionsList: Array<GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry.AsObject>,
|
|
8675
|
+
}
|
|
8676
|
+
}
|
|
8677
|
+
|
|
8678
|
+
export enum ResultCase {
|
|
8679
|
+
RESULT_NOT_SET = 0,
|
|
8680
|
+
GROUP_ACTIONS = 1,
|
|
8681
|
+
PROOF = 2,
|
|
8682
|
+
}
|
|
8683
|
+
}
|
|
8684
|
+
|
|
8685
|
+
export enum VersionCase {
|
|
8686
|
+
VERSION_NOT_SET = 0,
|
|
8687
|
+
V0 = 1,
|
|
8688
|
+
}
|
|
8689
|
+
}
|
|
8690
|
+
|
|
8691
|
+
export class GetGroupActionSignersRequest extends jspb.Message {
|
|
8692
|
+
hasV0(): boolean;
|
|
8693
|
+
clearV0(): void;
|
|
8694
|
+
getV0(): GetGroupActionSignersRequest.GetGroupActionSignersRequestV0 | undefined;
|
|
8695
|
+
setV0(value?: GetGroupActionSignersRequest.GetGroupActionSignersRequestV0): void;
|
|
8696
|
+
|
|
8697
|
+
getVersionCase(): GetGroupActionSignersRequest.VersionCase;
|
|
8698
|
+
serializeBinary(): Uint8Array;
|
|
8699
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersRequest.AsObject;
|
|
8700
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersRequest): GetGroupActionSignersRequest.AsObject;
|
|
8701
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8702
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8703
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersRequest, writer: jspb.BinaryWriter): void;
|
|
8704
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersRequest;
|
|
8705
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersRequest, reader: jspb.BinaryReader): GetGroupActionSignersRequest;
|
|
8706
|
+
}
|
|
8707
|
+
|
|
8708
|
+
export namespace GetGroupActionSignersRequest {
|
|
8709
|
+
export type AsObject = {
|
|
8710
|
+
v0?: GetGroupActionSignersRequest.GetGroupActionSignersRequestV0.AsObject,
|
|
8711
|
+
}
|
|
8712
|
+
|
|
8713
|
+
export class GetGroupActionSignersRequestV0 extends jspb.Message {
|
|
8714
|
+
getContractId(): Uint8Array | string;
|
|
8715
|
+
getContractId_asU8(): Uint8Array;
|
|
8716
|
+
getContractId_asB64(): string;
|
|
8717
|
+
setContractId(value: Uint8Array | string): void;
|
|
8718
|
+
|
|
8719
|
+
getGroupContractPosition(): number;
|
|
8720
|
+
setGroupContractPosition(value: number): void;
|
|
8721
|
+
|
|
8722
|
+
getStatus(): GetGroupActionSignersRequest.ActionStatusMap[keyof GetGroupActionSignersRequest.ActionStatusMap];
|
|
8723
|
+
setStatus(value: GetGroupActionSignersRequest.ActionStatusMap[keyof GetGroupActionSignersRequest.ActionStatusMap]): void;
|
|
8724
|
+
|
|
8725
|
+
getActionId(): Uint8Array | string;
|
|
8726
|
+
getActionId_asU8(): Uint8Array;
|
|
8727
|
+
getActionId_asB64(): string;
|
|
8728
|
+
setActionId(value: Uint8Array | string): void;
|
|
8729
|
+
|
|
8730
|
+
getProve(): boolean;
|
|
8731
|
+
setProve(value: boolean): void;
|
|
8732
|
+
|
|
8733
|
+
serializeBinary(): Uint8Array;
|
|
8734
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersRequestV0.AsObject;
|
|
8735
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersRequestV0): GetGroupActionSignersRequestV0.AsObject;
|
|
8736
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8737
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8738
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersRequestV0, writer: jspb.BinaryWriter): void;
|
|
8739
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersRequestV0;
|
|
8740
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersRequestV0, reader: jspb.BinaryReader): GetGroupActionSignersRequestV0;
|
|
8741
|
+
}
|
|
8742
|
+
|
|
8743
|
+
export namespace GetGroupActionSignersRequestV0 {
|
|
8744
|
+
export type AsObject = {
|
|
8745
|
+
contractId: Uint8Array | string,
|
|
8746
|
+
groupContractPosition: number,
|
|
8747
|
+
status: GetGroupActionSignersRequest.ActionStatusMap[keyof GetGroupActionSignersRequest.ActionStatusMap],
|
|
8748
|
+
actionId: Uint8Array | string,
|
|
8749
|
+
prove: boolean,
|
|
8750
|
+
}
|
|
8751
|
+
}
|
|
8752
|
+
|
|
8753
|
+
export interface ActionStatusMap {
|
|
8754
|
+
ACTIVE: 0;
|
|
8755
|
+
CLOSED: 1;
|
|
8756
|
+
}
|
|
8757
|
+
|
|
8758
|
+
export const ActionStatus: ActionStatusMap;
|
|
8759
|
+
|
|
8760
|
+
export enum VersionCase {
|
|
8761
|
+
VERSION_NOT_SET = 0,
|
|
8762
|
+
V0 = 1,
|
|
8763
|
+
}
|
|
8764
|
+
}
|
|
8765
|
+
|
|
8766
|
+
export class GetGroupActionSignersResponse extends jspb.Message {
|
|
8767
|
+
hasV0(): boolean;
|
|
8768
|
+
clearV0(): void;
|
|
8769
|
+
getV0(): GetGroupActionSignersResponse.GetGroupActionSignersResponseV0 | undefined;
|
|
8770
|
+
setV0(value?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0): void;
|
|
8771
|
+
|
|
8772
|
+
getVersionCase(): GetGroupActionSignersResponse.VersionCase;
|
|
8773
|
+
serializeBinary(): Uint8Array;
|
|
8774
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersResponse.AsObject;
|
|
8775
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersResponse): GetGroupActionSignersResponse.AsObject;
|
|
8776
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8777
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8778
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersResponse, writer: jspb.BinaryWriter): void;
|
|
8779
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersResponse;
|
|
8780
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersResponse, reader: jspb.BinaryReader): GetGroupActionSignersResponse;
|
|
8781
|
+
}
|
|
8782
|
+
|
|
8783
|
+
export namespace GetGroupActionSignersResponse {
|
|
8784
|
+
export type AsObject = {
|
|
8785
|
+
v0?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.AsObject,
|
|
8786
|
+
}
|
|
8787
|
+
|
|
8788
|
+
export class GetGroupActionSignersResponseV0 extends jspb.Message {
|
|
8789
|
+
hasGroupActionSigners(): boolean;
|
|
8790
|
+
clearGroupActionSigners(): void;
|
|
8791
|
+
getGroupActionSigners(): GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigners | undefined;
|
|
8792
|
+
setGroupActionSigners(value?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigners): void;
|
|
8793
|
+
|
|
8794
|
+
hasProof(): boolean;
|
|
8795
|
+
clearProof(): void;
|
|
8796
|
+
getProof(): Proof | undefined;
|
|
8797
|
+
setProof(value?: Proof): void;
|
|
8798
|
+
|
|
8799
|
+
hasMetadata(): boolean;
|
|
8800
|
+
clearMetadata(): void;
|
|
8801
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
8802
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
8803
|
+
|
|
8804
|
+
getResultCase(): GetGroupActionSignersResponseV0.ResultCase;
|
|
8805
|
+
serializeBinary(): Uint8Array;
|
|
8806
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersResponseV0.AsObject;
|
|
8807
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersResponseV0): GetGroupActionSignersResponseV0.AsObject;
|
|
8808
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8809
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8810
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersResponseV0, writer: jspb.BinaryWriter): void;
|
|
8811
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersResponseV0;
|
|
8812
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersResponseV0, reader: jspb.BinaryReader): GetGroupActionSignersResponseV0;
|
|
8813
|
+
}
|
|
8814
|
+
|
|
8815
|
+
export namespace GetGroupActionSignersResponseV0 {
|
|
8816
|
+
export type AsObject = {
|
|
8817
|
+
groupActionSigners?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigners.AsObject,
|
|
8818
|
+
proof?: Proof.AsObject,
|
|
8819
|
+
metadata?: ResponseMetadata.AsObject,
|
|
8820
|
+
}
|
|
8821
|
+
|
|
8822
|
+
export class GroupActionSigner extends jspb.Message {
|
|
8823
|
+
getSignerId(): Uint8Array | string;
|
|
8824
|
+
getSignerId_asU8(): Uint8Array;
|
|
8825
|
+
getSignerId_asB64(): string;
|
|
8826
|
+
setSignerId(value: Uint8Array | string): void;
|
|
8827
|
+
|
|
8828
|
+
getPower(): number;
|
|
8829
|
+
setPower(value: number): void;
|
|
8830
|
+
|
|
8831
|
+
serializeBinary(): Uint8Array;
|
|
8832
|
+
toObject(includeInstance?: boolean): GroupActionSigner.AsObject;
|
|
8833
|
+
static toObject(includeInstance: boolean, msg: GroupActionSigner): GroupActionSigner.AsObject;
|
|
8834
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8835
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8836
|
+
static serializeBinaryToWriter(message: GroupActionSigner, writer: jspb.BinaryWriter): void;
|
|
8837
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionSigner;
|
|
8838
|
+
static deserializeBinaryFromReader(message: GroupActionSigner, reader: jspb.BinaryReader): GroupActionSigner;
|
|
8839
|
+
}
|
|
8840
|
+
|
|
8841
|
+
export namespace GroupActionSigner {
|
|
8842
|
+
export type AsObject = {
|
|
8843
|
+
signerId: Uint8Array | string,
|
|
8844
|
+
power: number,
|
|
8845
|
+
}
|
|
8846
|
+
}
|
|
8847
|
+
|
|
8848
|
+
export class GroupActionSigners extends jspb.Message {
|
|
8849
|
+
clearSignersList(): void;
|
|
8850
|
+
getSignersList(): Array<GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner>;
|
|
8851
|
+
setSignersList(value: Array<GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner>): void;
|
|
8852
|
+
addSigners(value?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner, index?: number): GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner;
|
|
8853
|
+
|
|
8854
|
+
serializeBinary(): Uint8Array;
|
|
8855
|
+
toObject(includeInstance?: boolean): GroupActionSigners.AsObject;
|
|
8856
|
+
static toObject(includeInstance: boolean, msg: GroupActionSigners): GroupActionSigners.AsObject;
|
|
8857
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8858
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8859
|
+
static serializeBinaryToWriter(message: GroupActionSigners, writer: jspb.BinaryWriter): void;
|
|
8860
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionSigners;
|
|
8861
|
+
static deserializeBinaryFromReader(message: GroupActionSigners, reader: jspb.BinaryReader): GroupActionSigners;
|
|
8862
|
+
}
|
|
8863
|
+
|
|
8864
|
+
export namespace GroupActionSigners {
|
|
8865
|
+
export type AsObject = {
|
|
8866
|
+
signersList: Array<GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner.AsObject>,
|
|
8867
|
+
}
|
|
8868
|
+
}
|
|
8869
|
+
|
|
8870
|
+
export enum ResultCase {
|
|
8871
|
+
RESULT_NOT_SET = 0,
|
|
8872
|
+
GROUP_ACTION_SIGNERS = 1,
|
|
8873
|
+
PROOF = 2,
|
|
8874
|
+
}
|
|
8875
|
+
}
|
|
8876
|
+
|
|
8877
|
+
export enum VersionCase {
|
|
8878
|
+
VERSION_NOT_SET = 0,
|
|
8879
|
+
V0 = 1,
|
|
8880
|
+
}
|
|
8881
|
+
}
|
|
8882
|
+
|
|
6007
8883
|
export interface KeyPurposeMap {
|
|
6008
8884
|
AUTHENTICATION: 0;
|
|
6009
8885
|
ENCRYPTION: 1;
|