@dashevo/dapi-grpc 1.8.0-rc.2 → 2.0.0-dev.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 +25 -14
- package/build.rs +80 -20
- package/clients/platform/v0/nodejs/platform_pbjs.js +21836 -132
- package/clients/platform/v0/nodejs/platform_protoc.js +38698 -17593
- package/clients/platform/v0/web/platform_pb.d.ts +2865 -99
- package/clients/platform/v0/web/platform_pb.js +38698 -17593
- package/clients/platform/v0/web/platform_pb_service.d.ts +209 -0
- package/clients/platform/v0/web/platform_pb_service.js +440 -0
- package/package.json +3 -3
- package/protos/platform/v0/platform.proto +588 -37
- package/src/lib.rs +19 -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
|
|
|
@@ -1800,6 +1800,21 @@ export namespace GetProofsRequest {
|
|
|
1800
1800
|
setVotesList(value: Array<GetProofsRequest.GetProofsRequestV0.VoteStatusRequest>): void;
|
|
1801
1801
|
addVotes(value?: GetProofsRequest.GetProofsRequestV0.VoteStatusRequest, index?: number): GetProofsRequest.GetProofsRequestV0.VoteStatusRequest;
|
|
1802
1802
|
|
|
1803
|
+
clearIdentityTokenBalancesList(): void;
|
|
1804
|
+
getIdentityTokenBalancesList(): Array<GetProofsRequest.GetProofsRequestV0.IdentityTokenBalanceRequest>;
|
|
1805
|
+
setIdentityTokenBalancesList(value: Array<GetProofsRequest.GetProofsRequestV0.IdentityTokenBalanceRequest>): void;
|
|
1806
|
+
addIdentityTokenBalances(value?: GetProofsRequest.GetProofsRequestV0.IdentityTokenBalanceRequest, index?: number): GetProofsRequest.GetProofsRequestV0.IdentityTokenBalanceRequest;
|
|
1807
|
+
|
|
1808
|
+
clearIdentityTokenInfosList(): void;
|
|
1809
|
+
getIdentityTokenInfosList(): Array<GetProofsRequest.GetProofsRequestV0.IdentityTokenInfoRequest>;
|
|
1810
|
+
setIdentityTokenInfosList(value: Array<GetProofsRequest.GetProofsRequestV0.IdentityTokenInfoRequest>): void;
|
|
1811
|
+
addIdentityTokenInfos(value?: GetProofsRequest.GetProofsRequestV0.IdentityTokenInfoRequest, index?: number): GetProofsRequest.GetProofsRequestV0.IdentityTokenInfoRequest;
|
|
1812
|
+
|
|
1813
|
+
clearTokenStatusesList(): void;
|
|
1814
|
+
getTokenStatusesList(): Array<GetProofsRequest.GetProofsRequestV0.TokenStatusRequest>;
|
|
1815
|
+
setTokenStatusesList(value: Array<GetProofsRequest.GetProofsRequestV0.TokenStatusRequest>): void;
|
|
1816
|
+
addTokenStatuses(value?: GetProofsRequest.GetProofsRequestV0.TokenStatusRequest, index?: number): GetProofsRequest.GetProofsRequestV0.TokenStatusRequest;
|
|
1817
|
+
|
|
1803
1818
|
serializeBinary(): Uint8Array;
|
|
1804
1819
|
toObject(includeInstance?: boolean): GetProofsRequestV0.AsObject;
|
|
1805
1820
|
static toObject(includeInstance: boolean, msg: GetProofsRequestV0): GetProofsRequestV0.AsObject;
|
|
@@ -1816,6 +1831,9 @@ export namespace GetProofsRequest {
|
|
|
1816
1831
|
contractsList: Array<GetProofsRequest.GetProofsRequestV0.ContractRequest.AsObject>,
|
|
1817
1832
|
documentsList: Array<GetProofsRequest.GetProofsRequestV0.DocumentRequest.AsObject>,
|
|
1818
1833
|
votesList: Array<GetProofsRequest.GetProofsRequestV0.VoteStatusRequest.AsObject>,
|
|
1834
|
+
identityTokenBalancesList: Array<GetProofsRequest.GetProofsRequestV0.IdentityTokenBalanceRequest.AsObject>,
|
|
1835
|
+
identityTokenInfosList: Array<GetProofsRequest.GetProofsRequestV0.IdentityTokenInfoRequest.AsObject>,
|
|
1836
|
+
tokenStatusesList: Array<GetProofsRequest.GetProofsRequestV0.TokenStatusRequest.AsObject>,
|
|
1819
1837
|
}
|
|
1820
1838
|
|
|
1821
1839
|
export class DocumentRequest extends jspb.Message {
|
|
@@ -1994,6 +2012,84 @@ export namespace GetProofsRequest {
|
|
|
1994
2012
|
CONTESTED_RESOURCE_VOTE_STATUS_REQUEST = 1,
|
|
1995
2013
|
}
|
|
1996
2014
|
}
|
|
2015
|
+
|
|
2016
|
+
export class IdentityTokenBalanceRequest extends jspb.Message {
|
|
2017
|
+
getTokenId(): Uint8Array | string;
|
|
2018
|
+
getTokenId_asU8(): Uint8Array;
|
|
2019
|
+
getTokenId_asB64(): string;
|
|
2020
|
+
setTokenId(value: Uint8Array | string): void;
|
|
2021
|
+
|
|
2022
|
+
getIdentityId(): Uint8Array | string;
|
|
2023
|
+
getIdentityId_asU8(): Uint8Array;
|
|
2024
|
+
getIdentityId_asB64(): string;
|
|
2025
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
2026
|
+
|
|
2027
|
+
serializeBinary(): Uint8Array;
|
|
2028
|
+
toObject(includeInstance?: boolean): IdentityTokenBalanceRequest.AsObject;
|
|
2029
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenBalanceRequest): IdentityTokenBalanceRequest.AsObject;
|
|
2030
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2031
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2032
|
+
static serializeBinaryToWriter(message: IdentityTokenBalanceRequest, writer: jspb.BinaryWriter): void;
|
|
2033
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenBalanceRequest;
|
|
2034
|
+
static deserializeBinaryFromReader(message: IdentityTokenBalanceRequest, reader: jspb.BinaryReader): IdentityTokenBalanceRequest;
|
|
2035
|
+
}
|
|
2036
|
+
|
|
2037
|
+
export namespace IdentityTokenBalanceRequest {
|
|
2038
|
+
export type AsObject = {
|
|
2039
|
+
tokenId: Uint8Array | string,
|
|
2040
|
+
identityId: Uint8Array | string,
|
|
2041
|
+
}
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
export class IdentityTokenInfoRequest extends jspb.Message {
|
|
2045
|
+
getTokenId(): Uint8Array | string;
|
|
2046
|
+
getTokenId_asU8(): Uint8Array;
|
|
2047
|
+
getTokenId_asB64(): string;
|
|
2048
|
+
setTokenId(value: Uint8Array | string): void;
|
|
2049
|
+
|
|
2050
|
+
getIdentityId(): Uint8Array | string;
|
|
2051
|
+
getIdentityId_asU8(): Uint8Array;
|
|
2052
|
+
getIdentityId_asB64(): string;
|
|
2053
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
2054
|
+
|
|
2055
|
+
serializeBinary(): Uint8Array;
|
|
2056
|
+
toObject(includeInstance?: boolean): IdentityTokenInfoRequest.AsObject;
|
|
2057
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenInfoRequest): IdentityTokenInfoRequest.AsObject;
|
|
2058
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2059
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2060
|
+
static serializeBinaryToWriter(message: IdentityTokenInfoRequest, writer: jspb.BinaryWriter): void;
|
|
2061
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenInfoRequest;
|
|
2062
|
+
static deserializeBinaryFromReader(message: IdentityTokenInfoRequest, reader: jspb.BinaryReader): IdentityTokenInfoRequest;
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
export namespace IdentityTokenInfoRequest {
|
|
2066
|
+
export type AsObject = {
|
|
2067
|
+
tokenId: Uint8Array | string,
|
|
2068
|
+
identityId: Uint8Array | string,
|
|
2069
|
+
}
|
|
2070
|
+
}
|
|
2071
|
+
|
|
2072
|
+
export class TokenStatusRequest extends jspb.Message {
|
|
2073
|
+
getTokenId(): Uint8Array | string;
|
|
2074
|
+
getTokenId_asU8(): Uint8Array;
|
|
2075
|
+
getTokenId_asB64(): string;
|
|
2076
|
+
setTokenId(value: Uint8Array | string): void;
|
|
2077
|
+
|
|
2078
|
+
serializeBinary(): Uint8Array;
|
|
2079
|
+
toObject(includeInstance?: boolean): TokenStatusRequest.AsObject;
|
|
2080
|
+
static toObject(includeInstance: boolean, msg: TokenStatusRequest): TokenStatusRequest.AsObject;
|
|
2081
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
2082
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
2083
|
+
static serializeBinaryToWriter(message: TokenStatusRequest, writer: jspb.BinaryWriter): void;
|
|
2084
|
+
static deserializeBinary(bytes: Uint8Array): TokenStatusRequest;
|
|
2085
|
+
static deserializeBinaryFromReader(message: TokenStatusRequest, reader: jspb.BinaryReader): TokenStatusRequest;
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
export namespace TokenStatusRequest {
|
|
2089
|
+
export type AsObject = {
|
|
2090
|
+
tokenId: Uint8Array | string,
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
1997
2093
|
}
|
|
1998
2094
|
|
|
1999
2095
|
export enum VersionCase {
|
|
@@ -2402,8 +2498,8 @@ export namespace GetDataContractHistoryRequest {
|
|
|
2402
2498
|
getOffset(): google_protobuf_wrappers_pb.UInt32Value | undefined;
|
|
2403
2499
|
setOffset(value?: google_protobuf_wrappers_pb.UInt32Value): void;
|
|
2404
2500
|
|
|
2405
|
-
getStartAtMs():
|
|
2406
|
-
setStartAtMs(value:
|
|
2501
|
+
getStartAtMs(): string;
|
|
2502
|
+
setStartAtMs(value: string): void;
|
|
2407
2503
|
|
|
2408
2504
|
getProve(): boolean;
|
|
2409
2505
|
setProve(value: boolean): void;
|
|
@@ -2423,7 +2519,7 @@ export namespace GetDataContractHistoryRequest {
|
|
|
2423
2519
|
id: Uint8Array | string,
|
|
2424
2520
|
limit?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
2425
2521
|
offset?: google_protobuf_wrappers_pb.UInt32Value.AsObject,
|
|
2426
|
-
startAtMs:
|
|
2522
|
+
startAtMs: string,
|
|
2427
2523
|
prove: boolean,
|
|
2428
2524
|
}
|
|
2429
2525
|
}
|
|
@@ -2491,8 +2587,8 @@ export namespace GetDataContractHistoryResponse {
|
|
|
2491
2587
|
}
|
|
2492
2588
|
|
|
2493
2589
|
export class DataContractHistoryEntry extends jspb.Message {
|
|
2494
|
-
getDate():
|
|
2495
|
-
setDate(value:
|
|
2590
|
+
getDate(): string;
|
|
2591
|
+
setDate(value: string): void;
|
|
2496
2592
|
|
|
2497
2593
|
getValue(): Uint8Array | string;
|
|
2498
2594
|
getValue_asU8(): Uint8Array;
|
|
@@ -2511,7 +2607,7 @@ export namespace GetDataContractHistoryResponse {
|
|
|
2511
2607
|
|
|
2512
2608
|
export namespace DataContractHistoryEntry {
|
|
2513
2609
|
export type AsObject = {
|
|
2514
|
-
date:
|
|
2610
|
+
date: string,
|
|
2515
2611
|
value: Uint8Array | string,
|
|
2516
2612
|
}
|
|
2517
2613
|
}
|
|
@@ -3635,14 +3731,14 @@ export namespace GetEpochsInfoResponse {
|
|
|
3635
3731
|
getNumber(): number;
|
|
3636
3732
|
setNumber(value: number): void;
|
|
3637
3733
|
|
|
3638
|
-
getFirstBlockHeight():
|
|
3639
|
-
setFirstBlockHeight(value:
|
|
3734
|
+
getFirstBlockHeight(): string;
|
|
3735
|
+
setFirstBlockHeight(value: string): void;
|
|
3640
3736
|
|
|
3641
3737
|
getFirstCoreBlockHeight(): number;
|
|
3642
3738
|
setFirstCoreBlockHeight(value: number): void;
|
|
3643
3739
|
|
|
3644
|
-
getStartTime():
|
|
3645
|
-
setStartTime(value:
|
|
3740
|
+
getStartTime(): string;
|
|
3741
|
+
setStartTime(value: string): void;
|
|
3646
3742
|
|
|
3647
3743
|
getFeeMultiplier(): number;
|
|
3648
3744
|
setFeeMultiplier(value: number): void;
|
|
@@ -3663,9 +3759,9 @@ export namespace GetEpochsInfoResponse {
|
|
|
3663
3759
|
export namespace EpochInfo {
|
|
3664
3760
|
export type AsObject = {
|
|
3665
3761
|
number: number,
|
|
3666
|
-
firstBlockHeight:
|
|
3762
|
+
firstBlockHeight: string,
|
|
3667
3763
|
firstCoreBlockHeight: number,
|
|
3668
|
-
startTime:
|
|
3764
|
+
startTime: string,
|
|
3669
3765
|
feeMultiplier: number,
|
|
3670
3766
|
protocolVersion: number,
|
|
3671
3767
|
}
|
|
@@ -3967,8 +4063,8 @@ export namespace GetVotePollsByEndDateRequest {
|
|
|
3967
4063
|
}
|
|
3968
4064
|
|
|
3969
4065
|
export class StartAtTimeInfo extends jspb.Message {
|
|
3970
|
-
getStartTimeMs():
|
|
3971
|
-
setStartTimeMs(value:
|
|
4066
|
+
getStartTimeMs(): string;
|
|
4067
|
+
setStartTimeMs(value: string): void;
|
|
3972
4068
|
|
|
3973
4069
|
getStartTimeIncluded(): boolean;
|
|
3974
4070
|
setStartTimeIncluded(value: boolean): void;
|
|
@@ -3985,14 +4081,14 @@ export namespace GetVotePollsByEndDateRequest {
|
|
|
3985
4081
|
|
|
3986
4082
|
export namespace StartAtTimeInfo {
|
|
3987
4083
|
export type AsObject = {
|
|
3988
|
-
startTimeMs:
|
|
4084
|
+
startTimeMs: string,
|
|
3989
4085
|
startTimeIncluded: boolean,
|
|
3990
4086
|
}
|
|
3991
4087
|
}
|
|
3992
4088
|
|
|
3993
4089
|
export class EndAtTimeInfo extends jspb.Message {
|
|
3994
|
-
getEndTimeMs():
|
|
3995
|
-
setEndTimeMs(value:
|
|
4090
|
+
getEndTimeMs(): string;
|
|
4091
|
+
setEndTimeMs(value: string): void;
|
|
3996
4092
|
|
|
3997
4093
|
getEndTimeIncluded(): boolean;
|
|
3998
4094
|
setEndTimeIncluded(value: boolean): void;
|
|
@@ -4009,7 +4105,7 @@ export namespace GetVotePollsByEndDateRequest {
|
|
|
4009
4105
|
|
|
4010
4106
|
export namespace EndAtTimeInfo {
|
|
4011
4107
|
export type AsObject = {
|
|
4012
|
-
endTimeMs:
|
|
4108
|
+
endTimeMs: string,
|
|
4013
4109
|
endTimeIncluded: boolean,
|
|
4014
4110
|
}
|
|
4015
4111
|
}
|
|
@@ -4078,8 +4174,8 @@ export namespace GetVotePollsByEndDateResponse {
|
|
|
4078
4174
|
}
|
|
4079
4175
|
|
|
4080
4176
|
export class SerializedVotePollsByTimestamp extends jspb.Message {
|
|
4081
|
-
getTimestamp():
|
|
4082
|
-
setTimestamp(value:
|
|
4177
|
+
getTimestamp(): string;
|
|
4178
|
+
setTimestamp(value: string): void;
|
|
4083
4179
|
|
|
4084
4180
|
clearSerializedVotePollsList(): void;
|
|
4085
4181
|
getSerializedVotePollsList(): Array<Uint8Array | string>;
|
|
@@ -4100,7 +4196,7 @@ export namespace GetVotePollsByEndDateResponse {
|
|
|
4100
4196
|
|
|
4101
4197
|
export namespace SerializedVotePollsByTimestamp {
|
|
4102
4198
|
export type AsObject = {
|
|
4103
|
-
timestamp:
|
|
4199
|
+
timestamp: string,
|
|
4104
4200
|
serializedVotePollsList: Array<Uint8Array | string>,
|
|
4105
4201
|
}
|
|
4106
4202
|
}
|
|
@@ -4335,14 +4431,14 @@ export namespace GetContestedResourceVoteStateResponse {
|
|
|
4335
4431
|
getWonByIdentityId_asB64(): string;
|
|
4336
4432
|
setWonByIdentityId(value: Uint8Array | string): void;
|
|
4337
4433
|
|
|
4338
|
-
getFinishedAtBlockHeight():
|
|
4339
|
-
setFinishedAtBlockHeight(value:
|
|
4434
|
+
getFinishedAtBlockHeight(): string;
|
|
4435
|
+
setFinishedAtBlockHeight(value: string): void;
|
|
4340
4436
|
|
|
4341
4437
|
getFinishedAtCoreBlockHeight(): number;
|
|
4342
4438
|
setFinishedAtCoreBlockHeight(value: number): void;
|
|
4343
4439
|
|
|
4344
|
-
getFinishedAtBlockTimeMs():
|
|
4345
|
-
setFinishedAtBlockTimeMs(value:
|
|
4440
|
+
getFinishedAtBlockTimeMs(): string;
|
|
4441
|
+
setFinishedAtBlockTimeMs(value: string): void;
|
|
4346
4442
|
|
|
4347
4443
|
getFinishedAtEpoch(): number;
|
|
4348
4444
|
setFinishedAtEpoch(value: number): void;
|
|
@@ -4361,9 +4457,9 @@ export namespace GetContestedResourceVoteStateResponse {
|
|
|
4361
4457
|
export type AsObject = {
|
|
4362
4458
|
finishedVoteOutcome: GetContestedResourceVoteStateResponse.GetContestedResourceVoteStateResponseV0.FinishedVoteInfo.FinishedVoteOutcomeMap[keyof GetContestedResourceVoteStateResponse.GetContestedResourceVoteStateResponseV0.FinishedVoteInfo.FinishedVoteOutcomeMap],
|
|
4363
4459
|
wonByIdentityId: Uint8Array | string,
|
|
4364
|
-
finishedAtBlockHeight:
|
|
4460
|
+
finishedAtBlockHeight: string,
|
|
4365
4461
|
finishedAtCoreBlockHeight: number,
|
|
4366
|
-
finishedAtBlockTimeMs:
|
|
4462
|
+
finishedAtBlockTimeMs: string,
|
|
4367
4463
|
finishedAtEpoch: number,
|
|
4368
4464
|
}
|
|
4369
4465
|
|
|
@@ -5032,8 +5128,8 @@ export namespace GetPrefundedSpecializedBalanceResponse {
|
|
|
5032
5128
|
export class GetPrefundedSpecializedBalanceResponseV0 extends jspb.Message {
|
|
5033
5129
|
hasBalance(): boolean;
|
|
5034
5130
|
clearBalance(): void;
|
|
5035
|
-
getBalance():
|
|
5036
|
-
setBalance(value:
|
|
5131
|
+
getBalance(): string;
|
|
5132
|
+
setBalance(value: string): void;
|
|
5037
5133
|
|
|
5038
5134
|
hasProof(): boolean;
|
|
5039
5135
|
clearProof(): void;
|
|
@@ -5058,7 +5154,7 @@ export namespace GetPrefundedSpecializedBalanceResponse {
|
|
|
5058
5154
|
|
|
5059
5155
|
export namespace GetPrefundedSpecializedBalanceResponseV0 {
|
|
5060
5156
|
export type AsObject = {
|
|
5061
|
-
balance:
|
|
5157
|
+
balance: string,
|
|
5062
5158
|
proof?: Proof.AsObject,
|
|
5063
5159
|
metadata?: ResponseMetadata.AsObject,
|
|
5064
5160
|
}
|
|
@@ -5149,8 +5245,8 @@ export namespace GetTotalCreditsInPlatformResponse {
|
|
|
5149
5245
|
export class GetTotalCreditsInPlatformResponseV0 extends jspb.Message {
|
|
5150
5246
|
hasCredits(): boolean;
|
|
5151
5247
|
clearCredits(): void;
|
|
5152
|
-
getCredits():
|
|
5153
|
-
setCredits(value:
|
|
5248
|
+
getCredits(): string;
|
|
5249
|
+
setCredits(value: string): void;
|
|
5154
5250
|
|
|
5155
5251
|
hasProof(): boolean;
|
|
5156
5252
|
clearProof(): void;
|
|
@@ -5175,7 +5271,7 @@ export namespace GetTotalCreditsInPlatformResponse {
|
|
|
5175
5271
|
|
|
5176
5272
|
export namespace GetTotalCreditsInPlatformResponseV0 {
|
|
5177
5273
|
export type AsObject = {
|
|
5178
|
-
credits:
|
|
5274
|
+
credits: string,
|
|
5179
5275
|
proof?: Proof.AsObject,
|
|
5180
5276
|
metadata?: ResponseMetadata.AsObject,
|
|
5181
5277
|
}
|
|
@@ -5604,18 +5700,18 @@ export namespace GetStatusResponse {
|
|
|
5604
5700
|
}
|
|
5605
5701
|
|
|
5606
5702
|
export class Time extends jspb.Message {
|
|
5607
|
-
getLocal():
|
|
5608
|
-
setLocal(value:
|
|
5703
|
+
getLocal(): string;
|
|
5704
|
+
setLocal(value: string): void;
|
|
5609
5705
|
|
|
5610
5706
|
hasBlock(): boolean;
|
|
5611
5707
|
clearBlock(): void;
|
|
5612
|
-
getBlock():
|
|
5613
|
-
setBlock(value:
|
|
5708
|
+
getBlock(): string;
|
|
5709
|
+
setBlock(value: string): void;
|
|
5614
5710
|
|
|
5615
5711
|
hasGenesis(): boolean;
|
|
5616
5712
|
clearGenesis(): void;
|
|
5617
|
-
getGenesis():
|
|
5618
|
-
setGenesis(value:
|
|
5713
|
+
getGenesis(): string;
|
|
5714
|
+
setGenesis(value: string): void;
|
|
5619
5715
|
|
|
5620
5716
|
hasEpoch(): boolean;
|
|
5621
5717
|
clearEpoch(): void;
|
|
@@ -5634,9 +5730,9 @@ export namespace GetStatusResponse {
|
|
|
5634
5730
|
|
|
5635
5731
|
export namespace Time {
|
|
5636
5732
|
export type AsObject = {
|
|
5637
|
-
local:
|
|
5638
|
-
block:
|
|
5639
|
-
genesis:
|
|
5733
|
+
local: string,
|
|
5734
|
+
block: string,
|
|
5735
|
+
genesis: string,
|
|
5640
5736
|
epoch: number,
|
|
5641
5737
|
}
|
|
5642
5738
|
}
|
|
@@ -5685,8 +5781,8 @@ export namespace GetStatusResponse {
|
|
|
5685
5781
|
getLatestAppHash_asB64(): string;
|
|
5686
5782
|
setLatestAppHash(value: Uint8Array | string): void;
|
|
5687
5783
|
|
|
5688
|
-
getLatestBlockHeight():
|
|
5689
|
-
setLatestBlockHeight(value:
|
|
5784
|
+
getLatestBlockHeight(): string;
|
|
5785
|
+
setLatestBlockHeight(value: string): void;
|
|
5690
5786
|
|
|
5691
5787
|
getEarliestBlockHash(): Uint8Array | string;
|
|
5692
5788
|
getEarliestBlockHash_asU8(): Uint8Array;
|
|
@@ -5698,11 +5794,11 @@ export namespace GetStatusResponse {
|
|
|
5698
5794
|
getEarliestAppHash_asB64(): string;
|
|
5699
5795
|
setEarliestAppHash(value: Uint8Array | string): void;
|
|
5700
5796
|
|
|
5701
|
-
getEarliestBlockHeight():
|
|
5702
|
-
setEarliestBlockHeight(value:
|
|
5797
|
+
getEarliestBlockHeight(): string;
|
|
5798
|
+
setEarliestBlockHeight(value: string): void;
|
|
5703
5799
|
|
|
5704
|
-
getMaxPeerBlockHeight():
|
|
5705
|
-
setMaxPeerBlockHeight(value:
|
|
5800
|
+
getMaxPeerBlockHeight(): string;
|
|
5801
|
+
setMaxPeerBlockHeight(value: string): void;
|
|
5706
5802
|
|
|
5707
5803
|
hasCoreChainLockedHeight(): boolean;
|
|
5708
5804
|
clearCoreChainLockedHeight(): void;
|
|
@@ -5724,11 +5820,11 @@ export namespace GetStatusResponse {
|
|
|
5724
5820
|
catchingUp: boolean,
|
|
5725
5821
|
latestBlockHash: Uint8Array | string,
|
|
5726
5822
|
latestAppHash: Uint8Array | string,
|
|
5727
|
-
latestBlockHeight:
|
|
5823
|
+
latestBlockHeight: string,
|
|
5728
5824
|
earliestBlockHash: Uint8Array | string,
|
|
5729
5825
|
earliestAppHash: Uint8Array | string,
|
|
5730
|
-
earliestBlockHeight:
|
|
5731
|
-
maxPeerBlockHeight:
|
|
5826
|
+
earliestBlockHeight: string,
|
|
5827
|
+
maxPeerBlockHeight: string,
|
|
5732
5828
|
coreChainLockedHeight: number,
|
|
5733
5829
|
}
|
|
5734
5830
|
}
|
|
@@ -5762,29 +5858,29 @@ export namespace GetStatusResponse {
|
|
|
5762
5858
|
}
|
|
5763
5859
|
|
|
5764
5860
|
export class StateSync extends jspb.Message {
|
|
5765
|
-
getTotalSyncedTime():
|
|
5766
|
-
setTotalSyncedTime(value:
|
|
5861
|
+
getTotalSyncedTime(): string;
|
|
5862
|
+
setTotalSyncedTime(value: string): void;
|
|
5767
5863
|
|
|
5768
|
-
getRemainingTime():
|
|
5769
|
-
setRemainingTime(value:
|
|
5864
|
+
getRemainingTime(): string;
|
|
5865
|
+
setRemainingTime(value: string): void;
|
|
5770
5866
|
|
|
5771
5867
|
getTotalSnapshots(): number;
|
|
5772
5868
|
setTotalSnapshots(value: number): void;
|
|
5773
5869
|
|
|
5774
|
-
getChunkProcessAvgTime():
|
|
5775
|
-
setChunkProcessAvgTime(value:
|
|
5870
|
+
getChunkProcessAvgTime(): string;
|
|
5871
|
+
setChunkProcessAvgTime(value: string): void;
|
|
5776
5872
|
|
|
5777
|
-
getSnapshotHeight():
|
|
5778
|
-
setSnapshotHeight(value:
|
|
5873
|
+
getSnapshotHeight(): string;
|
|
5874
|
+
setSnapshotHeight(value: string): void;
|
|
5779
5875
|
|
|
5780
|
-
getSnapshotChunksCount():
|
|
5781
|
-
setSnapshotChunksCount(value:
|
|
5876
|
+
getSnapshotChunksCount(): string;
|
|
5877
|
+
setSnapshotChunksCount(value: string): void;
|
|
5782
5878
|
|
|
5783
|
-
getBackfilledBlocks():
|
|
5784
|
-
setBackfilledBlocks(value:
|
|
5879
|
+
getBackfilledBlocks(): string;
|
|
5880
|
+
setBackfilledBlocks(value: string): void;
|
|
5785
5881
|
|
|
5786
|
-
getBackfillBlocksTotal():
|
|
5787
|
-
setBackfillBlocksTotal(value:
|
|
5882
|
+
getBackfillBlocksTotal(): string;
|
|
5883
|
+
setBackfillBlocksTotal(value: string): void;
|
|
5788
5884
|
|
|
5789
5885
|
serializeBinary(): Uint8Array;
|
|
5790
5886
|
toObject(includeInstance?: boolean): StateSync.AsObject;
|
|
@@ -5798,14 +5894,14 @@ export namespace GetStatusResponse {
|
|
|
5798
5894
|
|
|
5799
5895
|
export namespace StateSync {
|
|
5800
5896
|
export type AsObject = {
|
|
5801
|
-
totalSyncedTime:
|
|
5802
|
-
remainingTime:
|
|
5897
|
+
totalSyncedTime: string,
|
|
5898
|
+
remainingTime: string,
|
|
5803
5899
|
totalSnapshots: number,
|
|
5804
|
-
chunkProcessAvgTime:
|
|
5805
|
-
snapshotHeight:
|
|
5806
|
-
snapshotChunksCount:
|
|
5807
|
-
backfilledBlocks:
|
|
5808
|
-
backfillBlocksTotal:
|
|
5900
|
+
chunkProcessAvgTime: string,
|
|
5901
|
+
snapshotHeight: string,
|
|
5902
|
+
snapshotChunksCount: string,
|
|
5903
|
+
backfilledBlocks: string,
|
|
5904
|
+
backfillBlocksTotal: string,
|
|
5809
5905
|
}
|
|
5810
5906
|
}
|
|
5811
5907
|
}
|
|
@@ -6004,6 +6100,2676 @@ export namespace GetCurrentQuorumsInfoResponse {
|
|
|
6004
6100
|
}
|
|
6005
6101
|
}
|
|
6006
6102
|
|
|
6103
|
+
export class GetIdentityTokenBalancesRequest extends jspb.Message {
|
|
6104
|
+
hasV0(): boolean;
|
|
6105
|
+
clearV0(): void;
|
|
6106
|
+
getV0(): GetIdentityTokenBalancesRequest.GetIdentityTokenBalancesRequestV0 | undefined;
|
|
6107
|
+
setV0(value?: GetIdentityTokenBalancesRequest.GetIdentityTokenBalancesRequestV0): void;
|
|
6108
|
+
|
|
6109
|
+
getVersionCase(): GetIdentityTokenBalancesRequest.VersionCase;
|
|
6110
|
+
serializeBinary(): Uint8Array;
|
|
6111
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesRequest.AsObject;
|
|
6112
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesRequest): GetIdentityTokenBalancesRequest.AsObject;
|
|
6113
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6114
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6115
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesRequest, writer: jspb.BinaryWriter): void;
|
|
6116
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesRequest;
|
|
6117
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesRequest, reader: jspb.BinaryReader): GetIdentityTokenBalancesRequest;
|
|
6118
|
+
}
|
|
6119
|
+
|
|
6120
|
+
export namespace GetIdentityTokenBalancesRequest {
|
|
6121
|
+
export type AsObject = {
|
|
6122
|
+
v0?: GetIdentityTokenBalancesRequest.GetIdentityTokenBalancesRequestV0.AsObject,
|
|
6123
|
+
}
|
|
6124
|
+
|
|
6125
|
+
export class GetIdentityTokenBalancesRequestV0 extends jspb.Message {
|
|
6126
|
+
getIdentityId(): Uint8Array | string;
|
|
6127
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6128
|
+
getIdentityId_asB64(): string;
|
|
6129
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6130
|
+
|
|
6131
|
+
clearTokenIdsList(): void;
|
|
6132
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
6133
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
6134
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
6135
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
6136
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6137
|
+
|
|
6138
|
+
getProve(): boolean;
|
|
6139
|
+
setProve(value: boolean): void;
|
|
6140
|
+
|
|
6141
|
+
serializeBinary(): Uint8Array;
|
|
6142
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesRequestV0.AsObject;
|
|
6143
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesRequestV0): GetIdentityTokenBalancesRequestV0.AsObject;
|
|
6144
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6145
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6146
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesRequestV0, writer: jspb.BinaryWriter): void;
|
|
6147
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesRequestV0;
|
|
6148
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesRequestV0, reader: jspb.BinaryReader): GetIdentityTokenBalancesRequestV0;
|
|
6149
|
+
}
|
|
6150
|
+
|
|
6151
|
+
export namespace GetIdentityTokenBalancesRequestV0 {
|
|
6152
|
+
export type AsObject = {
|
|
6153
|
+
identityId: Uint8Array | string,
|
|
6154
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
6155
|
+
prove: boolean,
|
|
6156
|
+
}
|
|
6157
|
+
}
|
|
6158
|
+
|
|
6159
|
+
export enum VersionCase {
|
|
6160
|
+
VERSION_NOT_SET = 0,
|
|
6161
|
+
V0 = 1,
|
|
6162
|
+
}
|
|
6163
|
+
}
|
|
6164
|
+
|
|
6165
|
+
export class GetIdentityTokenBalancesResponse extends jspb.Message {
|
|
6166
|
+
hasV0(): boolean;
|
|
6167
|
+
clearV0(): void;
|
|
6168
|
+
getV0(): GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0 | undefined;
|
|
6169
|
+
setV0(value?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0): void;
|
|
6170
|
+
|
|
6171
|
+
getVersionCase(): GetIdentityTokenBalancesResponse.VersionCase;
|
|
6172
|
+
serializeBinary(): Uint8Array;
|
|
6173
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesResponse.AsObject;
|
|
6174
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesResponse): GetIdentityTokenBalancesResponse.AsObject;
|
|
6175
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6176
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6177
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesResponse, writer: jspb.BinaryWriter): void;
|
|
6178
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesResponse;
|
|
6179
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesResponse, reader: jspb.BinaryReader): GetIdentityTokenBalancesResponse;
|
|
6180
|
+
}
|
|
6181
|
+
|
|
6182
|
+
export namespace GetIdentityTokenBalancesResponse {
|
|
6183
|
+
export type AsObject = {
|
|
6184
|
+
v0?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.AsObject,
|
|
6185
|
+
}
|
|
6186
|
+
|
|
6187
|
+
export class GetIdentityTokenBalancesResponseV0 extends jspb.Message {
|
|
6188
|
+
hasTokenBalances(): boolean;
|
|
6189
|
+
clearTokenBalances(): void;
|
|
6190
|
+
getTokenBalances(): GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalances | undefined;
|
|
6191
|
+
setTokenBalances(value?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalances): void;
|
|
6192
|
+
|
|
6193
|
+
hasProof(): boolean;
|
|
6194
|
+
clearProof(): void;
|
|
6195
|
+
getProof(): Proof | undefined;
|
|
6196
|
+
setProof(value?: Proof): void;
|
|
6197
|
+
|
|
6198
|
+
hasMetadata(): boolean;
|
|
6199
|
+
clearMetadata(): void;
|
|
6200
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6201
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6202
|
+
|
|
6203
|
+
getResultCase(): GetIdentityTokenBalancesResponseV0.ResultCase;
|
|
6204
|
+
serializeBinary(): Uint8Array;
|
|
6205
|
+
toObject(includeInstance?: boolean): GetIdentityTokenBalancesResponseV0.AsObject;
|
|
6206
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenBalancesResponseV0): GetIdentityTokenBalancesResponseV0.AsObject;
|
|
6207
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6208
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6209
|
+
static serializeBinaryToWriter(message: GetIdentityTokenBalancesResponseV0, writer: jspb.BinaryWriter): void;
|
|
6210
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenBalancesResponseV0;
|
|
6211
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenBalancesResponseV0, reader: jspb.BinaryReader): GetIdentityTokenBalancesResponseV0;
|
|
6212
|
+
}
|
|
6213
|
+
|
|
6214
|
+
export namespace GetIdentityTokenBalancesResponseV0 {
|
|
6215
|
+
export type AsObject = {
|
|
6216
|
+
tokenBalances?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalances.AsObject,
|
|
6217
|
+
proof?: Proof.AsObject,
|
|
6218
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6219
|
+
}
|
|
6220
|
+
|
|
6221
|
+
export class TokenBalanceEntry extends jspb.Message {
|
|
6222
|
+
getTokenId(): Uint8Array | string;
|
|
6223
|
+
getTokenId_asU8(): Uint8Array;
|
|
6224
|
+
getTokenId_asB64(): string;
|
|
6225
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6226
|
+
|
|
6227
|
+
hasBalance(): boolean;
|
|
6228
|
+
clearBalance(): void;
|
|
6229
|
+
getBalance(): number;
|
|
6230
|
+
setBalance(value: number): void;
|
|
6231
|
+
|
|
6232
|
+
serializeBinary(): Uint8Array;
|
|
6233
|
+
toObject(includeInstance?: boolean): TokenBalanceEntry.AsObject;
|
|
6234
|
+
static toObject(includeInstance: boolean, msg: TokenBalanceEntry): TokenBalanceEntry.AsObject;
|
|
6235
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6236
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6237
|
+
static serializeBinaryToWriter(message: TokenBalanceEntry, writer: jspb.BinaryWriter): void;
|
|
6238
|
+
static deserializeBinary(bytes: Uint8Array): TokenBalanceEntry;
|
|
6239
|
+
static deserializeBinaryFromReader(message: TokenBalanceEntry, reader: jspb.BinaryReader): TokenBalanceEntry;
|
|
6240
|
+
}
|
|
6241
|
+
|
|
6242
|
+
export namespace TokenBalanceEntry {
|
|
6243
|
+
export type AsObject = {
|
|
6244
|
+
tokenId: Uint8Array | string,
|
|
6245
|
+
balance: number,
|
|
6246
|
+
}
|
|
6247
|
+
}
|
|
6248
|
+
|
|
6249
|
+
export class TokenBalances extends jspb.Message {
|
|
6250
|
+
clearTokenBalancesList(): void;
|
|
6251
|
+
getTokenBalancesList(): Array<GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry>;
|
|
6252
|
+
setTokenBalancesList(value: Array<GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry>): void;
|
|
6253
|
+
addTokenBalances(value?: GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry, index?: number): GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry;
|
|
6254
|
+
|
|
6255
|
+
serializeBinary(): Uint8Array;
|
|
6256
|
+
toObject(includeInstance?: boolean): TokenBalances.AsObject;
|
|
6257
|
+
static toObject(includeInstance: boolean, msg: TokenBalances): TokenBalances.AsObject;
|
|
6258
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6259
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6260
|
+
static serializeBinaryToWriter(message: TokenBalances, writer: jspb.BinaryWriter): void;
|
|
6261
|
+
static deserializeBinary(bytes: Uint8Array): TokenBalances;
|
|
6262
|
+
static deserializeBinaryFromReader(message: TokenBalances, reader: jspb.BinaryReader): TokenBalances;
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6265
|
+
export namespace TokenBalances {
|
|
6266
|
+
export type AsObject = {
|
|
6267
|
+
tokenBalancesList: Array<GetIdentityTokenBalancesResponse.GetIdentityTokenBalancesResponseV0.TokenBalanceEntry.AsObject>,
|
|
6268
|
+
}
|
|
6269
|
+
}
|
|
6270
|
+
|
|
6271
|
+
export enum ResultCase {
|
|
6272
|
+
RESULT_NOT_SET = 0,
|
|
6273
|
+
TOKEN_BALANCES = 1,
|
|
6274
|
+
PROOF = 2,
|
|
6275
|
+
}
|
|
6276
|
+
}
|
|
6277
|
+
|
|
6278
|
+
export enum VersionCase {
|
|
6279
|
+
VERSION_NOT_SET = 0,
|
|
6280
|
+
V0 = 1,
|
|
6281
|
+
}
|
|
6282
|
+
}
|
|
6283
|
+
|
|
6284
|
+
export class GetIdentitiesTokenBalancesRequest extends jspb.Message {
|
|
6285
|
+
hasV0(): boolean;
|
|
6286
|
+
clearV0(): void;
|
|
6287
|
+
getV0(): GetIdentitiesTokenBalancesRequest.GetIdentitiesTokenBalancesRequestV0 | undefined;
|
|
6288
|
+
setV0(value?: GetIdentitiesTokenBalancesRequest.GetIdentitiesTokenBalancesRequestV0): void;
|
|
6289
|
+
|
|
6290
|
+
getVersionCase(): GetIdentitiesTokenBalancesRequest.VersionCase;
|
|
6291
|
+
serializeBinary(): Uint8Array;
|
|
6292
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesRequest.AsObject;
|
|
6293
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesRequest): GetIdentitiesTokenBalancesRequest.AsObject;
|
|
6294
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6295
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6296
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesRequest, writer: jspb.BinaryWriter): void;
|
|
6297
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesRequest;
|
|
6298
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesRequest, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesRequest;
|
|
6299
|
+
}
|
|
6300
|
+
|
|
6301
|
+
export namespace GetIdentitiesTokenBalancesRequest {
|
|
6302
|
+
export type AsObject = {
|
|
6303
|
+
v0?: GetIdentitiesTokenBalancesRequest.GetIdentitiesTokenBalancesRequestV0.AsObject,
|
|
6304
|
+
}
|
|
6305
|
+
|
|
6306
|
+
export class GetIdentitiesTokenBalancesRequestV0 extends jspb.Message {
|
|
6307
|
+
getTokenId(): Uint8Array | string;
|
|
6308
|
+
getTokenId_asU8(): Uint8Array;
|
|
6309
|
+
getTokenId_asB64(): string;
|
|
6310
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6311
|
+
|
|
6312
|
+
clearIdentityIdsList(): void;
|
|
6313
|
+
getIdentityIdsList(): Array<Uint8Array | string>;
|
|
6314
|
+
getIdentityIdsList_asU8(): Array<Uint8Array>;
|
|
6315
|
+
getIdentityIdsList_asB64(): Array<string>;
|
|
6316
|
+
setIdentityIdsList(value: Array<Uint8Array | string>): void;
|
|
6317
|
+
addIdentityIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6318
|
+
|
|
6319
|
+
getProve(): boolean;
|
|
6320
|
+
setProve(value: boolean): void;
|
|
6321
|
+
|
|
6322
|
+
serializeBinary(): Uint8Array;
|
|
6323
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesRequestV0.AsObject;
|
|
6324
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesRequestV0): GetIdentitiesTokenBalancesRequestV0.AsObject;
|
|
6325
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6326
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6327
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesRequestV0, writer: jspb.BinaryWriter): void;
|
|
6328
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesRequestV0;
|
|
6329
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesRequestV0, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesRequestV0;
|
|
6330
|
+
}
|
|
6331
|
+
|
|
6332
|
+
export namespace GetIdentitiesTokenBalancesRequestV0 {
|
|
6333
|
+
export type AsObject = {
|
|
6334
|
+
tokenId: Uint8Array | string,
|
|
6335
|
+
identityIdsList: Array<Uint8Array | string>,
|
|
6336
|
+
prove: boolean,
|
|
6337
|
+
}
|
|
6338
|
+
}
|
|
6339
|
+
|
|
6340
|
+
export enum VersionCase {
|
|
6341
|
+
VERSION_NOT_SET = 0,
|
|
6342
|
+
V0 = 1,
|
|
6343
|
+
}
|
|
6344
|
+
}
|
|
6345
|
+
|
|
6346
|
+
export class GetIdentitiesTokenBalancesResponse extends jspb.Message {
|
|
6347
|
+
hasV0(): boolean;
|
|
6348
|
+
clearV0(): void;
|
|
6349
|
+
getV0(): GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0 | undefined;
|
|
6350
|
+
setV0(value?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0): void;
|
|
6351
|
+
|
|
6352
|
+
getVersionCase(): GetIdentitiesTokenBalancesResponse.VersionCase;
|
|
6353
|
+
serializeBinary(): Uint8Array;
|
|
6354
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesResponse.AsObject;
|
|
6355
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesResponse): GetIdentitiesTokenBalancesResponse.AsObject;
|
|
6356
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6357
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6358
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesResponse, writer: jspb.BinaryWriter): void;
|
|
6359
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesResponse;
|
|
6360
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesResponse, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesResponse;
|
|
6361
|
+
}
|
|
6362
|
+
|
|
6363
|
+
export namespace GetIdentitiesTokenBalancesResponse {
|
|
6364
|
+
export type AsObject = {
|
|
6365
|
+
v0?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.AsObject,
|
|
6366
|
+
}
|
|
6367
|
+
|
|
6368
|
+
export class GetIdentitiesTokenBalancesResponseV0 extends jspb.Message {
|
|
6369
|
+
hasIdentityTokenBalances(): boolean;
|
|
6370
|
+
clearIdentityTokenBalances(): void;
|
|
6371
|
+
getIdentityTokenBalances(): GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalances | undefined;
|
|
6372
|
+
setIdentityTokenBalances(value?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalances): void;
|
|
6373
|
+
|
|
6374
|
+
hasProof(): boolean;
|
|
6375
|
+
clearProof(): void;
|
|
6376
|
+
getProof(): Proof | undefined;
|
|
6377
|
+
setProof(value?: Proof): void;
|
|
6378
|
+
|
|
6379
|
+
hasMetadata(): boolean;
|
|
6380
|
+
clearMetadata(): void;
|
|
6381
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6382
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6383
|
+
|
|
6384
|
+
getResultCase(): GetIdentitiesTokenBalancesResponseV0.ResultCase;
|
|
6385
|
+
serializeBinary(): Uint8Array;
|
|
6386
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenBalancesResponseV0.AsObject;
|
|
6387
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenBalancesResponseV0): GetIdentitiesTokenBalancesResponseV0.AsObject;
|
|
6388
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6389
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6390
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenBalancesResponseV0, writer: jspb.BinaryWriter): void;
|
|
6391
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenBalancesResponseV0;
|
|
6392
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenBalancesResponseV0, reader: jspb.BinaryReader): GetIdentitiesTokenBalancesResponseV0;
|
|
6393
|
+
}
|
|
6394
|
+
|
|
6395
|
+
export namespace GetIdentitiesTokenBalancesResponseV0 {
|
|
6396
|
+
export type AsObject = {
|
|
6397
|
+
identityTokenBalances?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalances.AsObject,
|
|
6398
|
+
proof?: Proof.AsObject,
|
|
6399
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6402
|
+
export class IdentityTokenBalanceEntry extends jspb.Message {
|
|
6403
|
+
getIdentityId(): Uint8Array | string;
|
|
6404
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6405
|
+
getIdentityId_asB64(): string;
|
|
6406
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6407
|
+
|
|
6408
|
+
hasBalance(): boolean;
|
|
6409
|
+
clearBalance(): void;
|
|
6410
|
+
getBalance(): number;
|
|
6411
|
+
setBalance(value: number): void;
|
|
6412
|
+
|
|
6413
|
+
serializeBinary(): Uint8Array;
|
|
6414
|
+
toObject(includeInstance?: boolean): IdentityTokenBalanceEntry.AsObject;
|
|
6415
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenBalanceEntry): IdentityTokenBalanceEntry.AsObject;
|
|
6416
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6417
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6418
|
+
static serializeBinaryToWriter(message: IdentityTokenBalanceEntry, writer: jspb.BinaryWriter): void;
|
|
6419
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenBalanceEntry;
|
|
6420
|
+
static deserializeBinaryFromReader(message: IdentityTokenBalanceEntry, reader: jspb.BinaryReader): IdentityTokenBalanceEntry;
|
|
6421
|
+
}
|
|
6422
|
+
|
|
6423
|
+
export namespace IdentityTokenBalanceEntry {
|
|
6424
|
+
export type AsObject = {
|
|
6425
|
+
identityId: Uint8Array | string,
|
|
6426
|
+
balance: number,
|
|
6427
|
+
}
|
|
6428
|
+
}
|
|
6429
|
+
|
|
6430
|
+
export class IdentityTokenBalances extends jspb.Message {
|
|
6431
|
+
clearIdentityTokenBalancesList(): void;
|
|
6432
|
+
getIdentityTokenBalancesList(): Array<GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry>;
|
|
6433
|
+
setIdentityTokenBalancesList(value: Array<GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry>): void;
|
|
6434
|
+
addIdentityTokenBalances(value?: GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry, index?: number): GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry;
|
|
6435
|
+
|
|
6436
|
+
serializeBinary(): Uint8Array;
|
|
6437
|
+
toObject(includeInstance?: boolean): IdentityTokenBalances.AsObject;
|
|
6438
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenBalances): IdentityTokenBalances.AsObject;
|
|
6439
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6440
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6441
|
+
static serializeBinaryToWriter(message: IdentityTokenBalances, writer: jspb.BinaryWriter): void;
|
|
6442
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenBalances;
|
|
6443
|
+
static deserializeBinaryFromReader(message: IdentityTokenBalances, reader: jspb.BinaryReader): IdentityTokenBalances;
|
|
6444
|
+
}
|
|
6445
|
+
|
|
6446
|
+
export namespace IdentityTokenBalances {
|
|
6447
|
+
export type AsObject = {
|
|
6448
|
+
identityTokenBalancesList: Array<GetIdentitiesTokenBalancesResponse.GetIdentitiesTokenBalancesResponseV0.IdentityTokenBalanceEntry.AsObject>,
|
|
6449
|
+
}
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6452
|
+
export enum ResultCase {
|
|
6453
|
+
RESULT_NOT_SET = 0,
|
|
6454
|
+
IDENTITY_TOKEN_BALANCES = 1,
|
|
6455
|
+
PROOF = 2,
|
|
6456
|
+
}
|
|
6457
|
+
}
|
|
6458
|
+
|
|
6459
|
+
export enum VersionCase {
|
|
6460
|
+
VERSION_NOT_SET = 0,
|
|
6461
|
+
V0 = 1,
|
|
6462
|
+
}
|
|
6463
|
+
}
|
|
6464
|
+
|
|
6465
|
+
export class GetIdentityTokenInfosRequest extends jspb.Message {
|
|
6466
|
+
hasV0(): boolean;
|
|
6467
|
+
clearV0(): void;
|
|
6468
|
+
getV0(): GetIdentityTokenInfosRequest.GetIdentityTokenInfosRequestV0 | undefined;
|
|
6469
|
+
setV0(value?: GetIdentityTokenInfosRequest.GetIdentityTokenInfosRequestV0): void;
|
|
6470
|
+
|
|
6471
|
+
getVersionCase(): GetIdentityTokenInfosRequest.VersionCase;
|
|
6472
|
+
serializeBinary(): Uint8Array;
|
|
6473
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosRequest.AsObject;
|
|
6474
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosRequest): GetIdentityTokenInfosRequest.AsObject;
|
|
6475
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6476
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6477
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosRequest, writer: jspb.BinaryWriter): void;
|
|
6478
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosRequest;
|
|
6479
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosRequest, reader: jspb.BinaryReader): GetIdentityTokenInfosRequest;
|
|
6480
|
+
}
|
|
6481
|
+
|
|
6482
|
+
export namespace GetIdentityTokenInfosRequest {
|
|
6483
|
+
export type AsObject = {
|
|
6484
|
+
v0?: GetIdentityTokenInfosRequest.GetIdentityTokenInfosRequestV0.AsObject,
|
|
6485
|
+
}
|
|
6486
|
+
|
|
6487
|
+
export class GetIdentityTokenInfosRequestV0 extends jspb.Message {
|
|
6488
|
+
getIdentityId(): Uint8Array | string;
|
|
6489
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6490
|
+
getIdentityId_asB64(): string;
|
|
6491
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6492
|
+
|
|
6493
|
+
clearTokenIdsList(): void;
|
|
6494
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
6495
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
6496
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
6497
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
6498
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6499
|
+
|
|
6500
|
+
getProve(): boolean;
|
|
6501
|
+
setProve(value: boolean): void;
|
|
6502
|
+
|
|
6503
|
+
serializeBinary(): Uint8Array;
|
|
6504
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosRequestV0.AsObject;
|
|
6505
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosRequestV0): GetIdentityTokenInfosRequestV0.AsObject;
|
|
6506
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6507
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6508
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
6509
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosRequestV0;
|
|
6510
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosRequestV0, reader: jspb.BinaryReader): GetIdentityTokenInfosRequestV0;
|
|
6511
|
+
}
|
|
6512
|
+
|
|
6513
|
+
export namespace GetIdentityTokenInfosRequestV0 {
|
|
6514
|
+
export type AsObject = {
|
|
6515
|
+
identityId: Uint8Array | string,
|
|
6516
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
6517
|
+
prove: boolean,
|
|
6518
|
+
}
|
|
6519
|
+
}
|
|
6520
|
+
|
|
6521
|
+
export enum VersionCase {
|
|
6522
|
+
VERSION_NOT_SET = 0,
|
|
6523
|
+
V0 = 1,
|
|
6524
|
+
}
|
|
6525
|
+
}
|
|
6526
|
+
|
|
6527
|
+
export class GetIdentityTokenInfosResponse extends jspb.Message {
|
|
6528
|
+
hasV0(): boolean;
|
|
6529
|
+
clearV0(): void;
|
|
6530
|
+
getV0(): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0 | undefined;
|
|
6531
|
+
setV0(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0): void;
|
|
6532
|
+
|
|
6533
|
+
getVersionCase(): GetIdentityTokenInfosResponse.VersionCase;
|
|
6534
|
+
serializeBinary(): Uint8Array;
|
|
6535
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosResponse.AsObject;
|
|
6536
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosResponse): GetIdentityTokenInfosResponse.AsObject;
|
|
6537
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6538
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6539
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosResponse, writer: jspb.BinaryWriter): void;
|
|
6540
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosResponse;
|
|
6541
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosResponse, reader: jspb.BinaryReader): GetIdentityTokenInfosResponse;
|
|
6542
|
+
}
|
|
6543
|
+
|
|
6544
|
+
export namespace GetIdentityTokenInfosResponse {
|
|
6545
|
+
export type AsObject = {
|
|
6546
|
+
v0?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.AsObject,
|
|
6547
|
+
}
|
|
6548
|
+
|
|
6549
|
+
export class GetIdentityTokenInfosResponseV0 extends jspb.Message {
|
|
6550
|
+
hasTokenInfos(): boolean;
|
|
6551
|
+
clearTokenInfos(): void;
|
|
6552
|
+
getTokenInfos(): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfos | undefined;
|
|
6553
|
+
setTokenInfos(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfos): void;
|
|
6554
|
+
|
|
6555
|
+
hasProof(): boolean;
|
|
6556
|
+
clearProof(): void;
|
|
6557
|
+
getProof(): Proof | undefined;
|
|
6558
|
+
setProof(value?: Proof): void;
|
|
6559
|
+
|
|
6560
|
+
hasMetadata(): boolean;
|
|
6561
|
+
clearMetadata(): void;
|
|
6562
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6563
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6564
|
+
|
|
6565
|
+
getResultCase(): GetIdentityTokenInfosResponseV0.ResultCase;
|
|
6566
|
+
serializeBinary(): Uint8Array;
|
|
6567
|
+
toObject(includeInstance?: boolean): GetIdentityTokenInfosResponseV0.AsObject;
|
|
6568
|
+
static toObject(includeInstance: boolean, msg: GetIdentityTokenInfosResponseV0): GetIdentityTokenInfosResponseV0.AsObject;
|
|
6569
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6570
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6571
|
+
static serializeBinaryToWriter(message: GetIdentityTokenInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
6572
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentityTokenInfosResponseV0;
|
|
6573
|
+
static deserializeBinaryFromReader(message: GetIdentityTokenInfosResponseV0, reader: jspb.BinaryReader): GetIdentityTokenInfosResponseV0;
|
|
6574
|
+
}
|
|
6575
|
+
|
|
6576
|
+
export namespace GetIdentityTokenInfosResponseV0 {
|
|
6577
|
+
export type AsObject = {
|
|
6578
|
+
tokenInfos?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfos.AsObject,
|
|
6579
|
+
proof?: Proof.AsObject,
|
|
6580
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6583
|
+
export class TokenIdentityInfoEntry extends jspb.Message {
|
|
6584
|
+
getFrozen(): boolean;
|
|
6585
|
+
setFrozen(value: boolean): void;
|
|
6586
|
+
|
|
6587
|
+
serializeBinary(): Uint8Array;
|
|
6588
|
+
toObject(includeInstance?: boolean): TokenIdentityInfoEntry.AsObject;
|
|
6589
|
+
static toObject(includeInstance: boolean, msg: TokenIdentityInfoEntry): TokenIdentityInfoEntry.AsObject;
|
|
6590
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6591
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6592
|
+
static serializeBinaryToWriter(message: TokenIdentityInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6593
|
+
static deserializeBinary(bytes: Uint8Array): TokenIdentityInfoEntry;
|
|
6594
|
+
static deserializeBinaryFromReader(message: TokenIdentityInfoEntry, reader: jspb.BinaryReader): TokenIdentityInfoEntry;
|
|
6595
|
+
}
|
|
6596
|
+
|
|
6597
|
+
export namespace TokenIdentityInfoEntry {
|
|
6598
|
+
export type AsObject = {
|
|
6599
|
+
frozen: boolean,
|
|
6600
|
+
}
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6603
|
+
export class TokenInfoEntry extends jspb.Message {
|
|
6604
|
+
getTokenId(): Uint8Array | string;
|
|
6605
|
+
getTokenId_asU8(): Uint8Array;
|
|
6606
|
+
getTokenId_asB64(): string;
|
|
6607
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6608
|
+
|
|
6609
|
+
hasInfo(): boolean;
|
|
6610
|
+
clearInfo(): void;
|
|
6611
|
+
getInfo(): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenIdentityInfoEntry | undefined;
|
|
6612
|
+
setInfo(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenIdentityInfoEntry): void;
|
|
6613
|
+
|
|
6614
|
+
serializeBinary(): Uint8Array;
|
|
6615
|
+
toObject(includeInstance?: boolean): TokenInfoEntry.AsObject;
|
|
6616
|
+
static toObject(includeInstance: boolean, msg: TokenInfoEntry): TokenInfoEntry.AsObject;
|
|
6617
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6618
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6619
|
+
static serializeBinaryToWriter(message: TokenInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6620
|
+
static deserializeBinary(bytes: Uint8Array): TokenInfoEntry;
|
|
6621
|
+
static deserializeBinaryFromReader(message: TokenInfoEntry, reader: jspb.BinaryReader): TokenInfoEntry;
|
|
6622
|
+
}
|
|
6623
|
+
|
|
6624
|
+
export namespace TokenInfoEntry {
|
|
6625
|
+
export type AsObject = {
|
|
6626
|
+
tokenId: Uint8Array | string,
|
|
6627
|
+
info?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenIdentityInfoEntry.AsObject,
|
|
6628
|
+
}
|
|
6629
|
+
}
|
|
6630
|
+
|
|
6631
|
+
export class TokenInfos extends jspb.Message {
|
|
6632
|
+
clearTokenInfosList(): void;
|
|
6633
|
+
getTokenInfosList(): Array<GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry>;
|
|
6634
|
+
setTokenInfosList(value: Array<GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry>): void;
|
|
6635
|
+
addTokenInfos(value?: GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry, index?: number): GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry;
|
|
6636
|
+
|
|
6637
|
+
serializeBinary(): Uint8Array;
|
|
6638
|
+
toObject(includeInstance?: boolean): TokenInfos.AsObject;
|
|
6639
|
+
static toObject(includeInstance: boolean, msg: TokenInfos): TokenInfos.AsObject;
|
|
6640
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6641
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6642
|
+
static serializeBinaryToWriter(message: TokenInfos, writer: jspb.BinaryWriter): void;
|
|
6643
|
+
static deserializeBinary(bytes: Uint8Array): TokenInfos;
|
|
6644
|
+
static deserializeBinaryFromReader(message: TokenInfos, reader: jspb.BinaryReader): TokenInfos;
|
|
6645
|
+
}
|
|
6646
|
+
|
|
6647
|
+
export namespace TokenInfos {
|
|
6648
|
+
export type AsObject = {
|
|
6649
|
+
tokenInfosList: Array<GetIdentityTokenInfosResponse.GetIdentityTokenInfosResponseV0.TokenInfoEntry.AsObject>,
|
|
6650
|
+
}
|
|
6651
|
+
}
|
|
6652
|
+
|
|
6653
|
+
export enum ResultCase {
|
|
6654
|
+
RESULT_NOT_SET = 0,
|
|
6655
|
+
TOKEN_INFOS = 1,
|
|
6656
|
+
PROOF = 2,
|
|
6657
|
+
}
|
|
6658
|
+
}
|
|
6659
|
+
|
|
6660
|
+
export enum VersionCase {
|
|
6661
|
+
VERSION_NOT_SET = 0,
|
|
6662
|
+
V0 = 1,
|
|
6663
|
+
}
|
|
6664
|
+
}
|
|
6665
|
+
|
|
6666
|
+
export class GetIdentitiesTokenInfosRequest extends jspb.Message {
|
|
6667
|
+
hasV0(): boolean;
|
|
6668
|
+
clearV0(): void;
|
|
6669
|
+
getV0(): GetIdentitiesTokenInfosRequest.GetIdentitiesTokenInfosRequestV0 | undefined;
|
|
6670
|
+
setV0(value?: GetIdentitiesTokenInfosRequest.GetIdentitiesTokenInfosRequestV0): void;
|
|
6671
|
+
|
|
6672
|
+
getVersionCase(): GetIdentitiesTokenInfosRequest.VersionCase;
|
|
6673
|
+
serializeBinary(): Uint8Array;
|
|
6674
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosRequest.AsObject;
|
|
6675
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosRequest): GetIdentitiesTokenInfosRequest.AsObject;
|
|
6676
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6677
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6678
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosRequest, writer: jspb.BinaryWriter): void;
|
|
6679
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosRequest;
|
|
6680
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosRequest, reader: jspb.BinaryReader): GetIdentitiesTokenInfosRequest;
|
|
6681
|
+
}
|
|
6682
|
+
|
|
6683
|
+
export namespace GetIdentitiesTokenInfosRequest {
|
|
6684
|
+
export type AsObject = {
|
|
6685
|
+
v0?: GetIdentitiesTokenInfosRequest.GetIdentitiesTokenInfosRequestV0.AsObject,
|
|
6686
|
+
}
|
|
6687
|
+
|
|
6688
|
+
export class GetIdentitiesTokenInfosRequestV0 extends jspb.Message {
|
|
6689
|
+
getTokenId(): Uint8Array | string;
|
|
6690
|
+
getTokenId_asU8(): Uint8Array;
|
|
6691
|
+
getTokenId_asB64(): string;
|
|
6692
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6693
|
+
|
|
6694
|
+
clearIdentityIdsList(): void;
|
|
6695
|
+
getIdentityIdsList(): Array<Uint8Array | string>;
|
|
6696
|
+
getIdentityIdsList_asU8(): Array<Uint8Array>;
|
|
6697
|
+
getIdentityIdsList_asB64(): Array<string>;
|
|
6698
|
+
setIdentityIdsList(value: Array<Uint8Array | string>): void;
|
|
6699
|
+
addIdentityIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6700
|
+
|
|
6701
|
+
getProve(): boolean;
|
|
6702
|
+
setProve(value: boolean): void;
|
|
6703
|
+
|
|
6704
|
+
serializeBinary(): Uint8Array;
|
|
6705
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosRequestV0.AsObject;
|
|
6706
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosRequestV0): GetIdentitiesTokenInfosRequestV0.AsObject;
|
|
6707
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6708
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6709
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
6710
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosRequestV0;
|
|
6711
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosRequestV0, reader: jspb.BinaryReader): GetIdentitiesTokenInfosRequestV0;
|
|
6712
|
+
}
|
|
6713
|
+
|
|
6714
|
+
export namespace GetIdentitiesTokenInfosRequestV0 {
|
|
6715
|
+
export type AsObject = {
|
|
6716
|
+
tokenId: Uint8Array | string,
|
|
6717
|
+
identityIdsList: Array<Uint8Array | string>,
|
|
6718
|
+
prove: boolean,
|
|
6719
|
+
}
|
|
6720
|
+
}
|
|
6721
|
+
|
|
6722
|
+
export enum VersionCase {
|
|
6723
|
+
VERSION_NOT_SET = 0,
|
|
6724
|
+
V0 = 1,
|
|
6725
|
+
}
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
export class GetIdentitiesTokenInfosResponse extends jspb.Message {
|
|
6729
|
+
hasV0(): boolean;
|
|
6730
|
+
clearV0(): void;
|
|
6731
|
+
getV0(): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0 | undefined;
|
|
6732
|
+
setV0(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0): void;
|
|
6733
|
+
|
|
6734
|
+
getVersionCase(): GetIdentitiesTokenInfosResponse.VersionCase;
|
|
6735
|
+
serializeBinary(): Uint8Array;
|
|
6736
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosResponse.AsObject;
|
|
6737
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosResponse): GetIdentitiesTokenInfosResponse.AsObject;
|
|
6738
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6739
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6740
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosResponse, writer: jspb.BinaryWriter): void;
|
|
6741
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosResponse;
|
|
6742
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosResponse, reader: jspb.BinaryReader): GetIdentitiesTokenInfosResponse;
|
|
6743
|
+
}
|
|
6744
|
+
|
|
6745
|
+
export namespace GetIdentitiesTokenInfosResponse {
|
|
6746
|
+
export type AsObject = {
|
|
6747
|
+
v0?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.AsObject,
|
|
6748
|
+
}
|
|
6749
|
+
|
|
6750
|
+
export class GetIdentitiesTokenInfosResponseV0 extends jspb.Message {
|
|
6751
|
+
hasIdentityTokenInfos(): boolean;
|
|
6752
|
+
clearIdentityTokenInfos(): void;
|
|
6753
|
+
getIdentityTokenInfos(): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.IdentityTokenInfos | undefined;
|
|
6754
|
+
setIdentityTokenInfos(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.IdentityTokenInfos): void;
|
|
6755
|
+
|
|
6756
|
+
hasProof(): boolean;
|
|
6757
|
+
clearProof(): void;
|
|
6758
|
+
getProof(): Proof | undefined;
|
|
6759
|
+
setProof(value?: Proof): void;
|
|
6760
|
+
|
|
6761
|
+
hasMetadata(): boolean;
|
|
6762
|
+
clearMetadata(): void;
|
|
6763
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6764
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6765
|
+
|
|
6766
|
+
getResultCase(): GetIdentitiesTokenInfosResponseV0.ResultCase;
|
|
6767
|
+
serializeBinary(): Uint8Array;
|
|
6768
|
+
toObject(includeInstance?: boolean): GetIdentitiesTokenInfosResponseV0.AsObject;
|
|
6769
|
+
static toObject(includeInstance: boolean, msg: GetIdentitiesTokenInfosResponseV0): GetIdentitiesTokenInfosResponseV0.AsObject;
|
|
6770
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6771
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6772
|
+
static serializeBinaryToWriter(message: GetIdentitiesTokenInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
6773
|
+
static deserializeBinary(bytes: Uint8Array): GetIdentitiesTokenInfosResponseV0;
|
|
6774
|
+
static deserializeBinaryFromReader(message: GetIdentitiesTokenInfosResponseV0, reader: jspb.BinaryReader): GetIdentitiesTokenInfosResponseV0;
|
|
6775
|
+
}
|
|
6776
|
+
|
|
6777
|
+
export namespace GetIdentitiesTokenInfosResponseV0 {
|
|
6778
|
+
export type AsObject = {
|
|
6779
|
+
identityTokenInfos?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.IdentityTokenInfos.AsObject,
|
|
6780
|
+
proof?: Proof.AsObject,
|
|
6781
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6782
|
+
}
|
|
6783
|
+
|
|
6784
|
+
export class TokenIdentityInfoEntry extends jspb.Message {
|
|
6785
|
+
getFrozen(): boolean;
|
|
6786
|
+
setFrozen(value: boolean): void;
|
|
6787
|
+
|
|
6788
|
+
serializeBinary(): Uint8Array;
|
|
6789
|
+
toObject(includeInstance?: boolean): TokenIdentityInfoEntry.AsObject;
|
|
6790
|
+
static toObject(includeInstance: boolean, msg: TokenIdentityInfoEntry): TokenIdentityInfoEntry.AsObject;
|
|
6791
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6792
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6793
|
+
static serializeBinaryToWriter(message: TokenIdentityInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6794
|
+
static deserializeBinary(bytes: Uint8Array): TokenIdentityInfoEntry;
|
|
6795
|
+
static deserializeBinaryFromReader(message: TokenIdentityInfoEntry, reader: jspb.BinaryReader): TokenIdentityInfoEntry;
|
|
6796
|
+
}
|
|
6797
|
+
|
|
6798
|
+
export namespace TokenIdentityInfoEntry {
|
|
6799
|
+
export type AsObject = {
|
|
6800
|
+
frozen: boolean,
|
|
6801
|
+
}
|
|
6802
|
+
}
|
|
6803
|
+
|
|
6804
|
+
export class TokenInfoEntry extends jspb.Message {
|
|
6805
|
+
getIdentityId(): Uint8Array | string;
|
|
6806
|
+
getIdentityId_asU8(): Uint8Array;
|
|
6807
|
+
getIdentityId_asB64(): string;
|
|
6808
|
+
setIdentityId(value: Uint8Array | string): void;
|
|
6809
|
+
|
|
6810
|
+
hasInfo(): boolean;
|
|
6811
|
+
clearInfo(): void;
|
|
6812
|
+
getInfo(): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenIdentityInfoEntry | undefined;
|
|
6813
|
+
setInfo(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenIdentityInfoEntry): void;
|
|
6814
|
+
|
|
6815
|
+
serializeBinary(): Uint8Array;
|
|
6816
|
+
toObject(includeInstance?: boolean): TokenInfoEntry.AsObject;
|
|
6817
|
+
static toObject(includeInstance: boolean, msg: TokenInfoEntry): TokenInfoEntry.AsObject;
|
|
6818
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6819
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6820
|
+
static serializeBinaryToWriter(message: TokenInfoEntry, writer: jspb.BinaryWriter): void;
|
|
6821
|
+
static deserializeBinary(bytes: Uint8Array): TokenInfoEntry;
|
|
6822
|
+
static deserializeBinaryFromReader(message: TokenInfoEntry, reader: jspb.BinaryReader): TokenInfoEntry;
|
|
6823
|
+
}
|
|
6824
|
+
|
|
6825
|
+
export namespace TokenInfoEntry {
|
|
6826
|
+
export type AsObject = {
|
|
6827
|
+
identityId: Uint8Array | string,
|
|
6828
|
+
info?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenIdentityInfoEntry.AsObject,
|
|
6829
|
+
}
|
|
6830
|
+
}
|
|
6831
|
+
|
|
6832
|
+
export class IdentityTokenInfos extends jspb.Message {
|
|
6833
|
+
clearTokenInfosList(): void;
|
|
6834
|
+
getTokenInfosList(): Array<GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry>;
|
|
6835
|
+
setTokenInfosList(value: Array<GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry>): void;
|
|
6836
|
+
addTokenInfos(value?: GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry, index?: number): GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry;
|
|
6837
|
+
|
|
6838
|
+
serializeBinary(): Uint8Array;
|
|
6839
|
+
toObject(includeInstance?: boolean): IdentityTokenInfos.AsObject;
|
|
6840
|
+
static toObject(includeInstance: boolean, msg: IdentityTokenInfos): IdentityTokenInfos.AsObject;
|
|
6841
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6842
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6843
|
+
static serializeBinaryToWriter(message: IdentityTokenInfos, writer: jspb.BinaryWriter): void;
|
|
6844
|
+
static deserializeBinary(bytes: Uint8Array): IdentityTokenInfos;
|
|
6845
|
+
static deserializeBinaryFromReader(message: IdentityTokenInfos, reader: jspb.BinaryReader): IdentityTokenInfos;
|
|
6846
|
+
}
|
|
6847
|
+
|
|
6848
|
+
export namespace IdentityTokenInfos {
|
|
6849
|
+
export type AsObject = {
|
|
6850
|
+
tokenInfosList: Array<GetIdentitiesTokenInfosResponse.GetIdentitiesTokenInfosResponseV0.TokenInfoEntry.AsObject>,
|
|
6851
|
+
}
|
|
6852
|
+
}
|
|
6853
|
+
|
|
6854
|
+
export enum ResultCase {
|
|
6855
|
+
RESULT_NOT_SET = 0,
|
|
6856
|
+
IDENTITY_TOKEN_INFOS = 1,
|
|
6857
|
+
PROOF = 2,
|
|
6858
|
+
}
|
|
6859
|
+
}
|
|
6860
|
+
|
|
6861
|
+
export enum VersionCase {
|
|
6862
|
+
VERSION_NOT_SET = 0,
|
|
6863
|
+
V0 = 1,
|
|
6864
|
+
}
|
|
6865
|
+
}
|
|
6866
|
+
|
|
6867
|
+
export class GetTokenStatusesRequest extends jspb.Message {
|
|
6868
|
+
hasV0(): boolean;
|
|
6869
|
+
clearV0(): void;
|
|
6870
|
+
getV0(): GetTokenStatusesRequest.GetTokenStatusesRequestV0 | undefined;
|
|
6871
|
+
setV0(value?: GetTokenStatusesRequest.GetTokenStatusesRequestV0): void;
|
|
6872
|
+
|
|
6873
|
+
getVersionCase(): GetTokenStatusesRequest.VersionCase;
|
|
6874
|
+
serializeBinary(): Uint8Array;
|
|
6875
|
+
toObject(includeInstance?: boolean): GetTokenStatusesRequest.AsObject;
|
|
6876
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesRequest): GetTokenStatusesRequest.AsObject;
|
|
6877
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6878
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6879
|
+
static serializeBinaryToWriter(message: GetTokenStatusesRequest, writer: jspb.BinaryWriter): void;
|
|
6880
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesRequest;
|
|
6881
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesRequest, reader: jspb.BinaryReader): GetTokenStatusesRequest;
|
|
6882
|
+
}
|
|
6883
|
+
|
|
6884
|
+
export namespace GetTokenStatusesRequest {
|
|
6885
|
+
export type AsObject = {
|
|
6886
|
+
v0?: GetTokenStatusesRequest.GetTokenStatusesRequestV0.AsObject,
|
|
6887
|
+
}
|
|
6888
|
+
|
|
6889
|
+
export class GetTokenStatusesRequestV0 extends jspb.Message {
|
|
6890
|
+
clearTokenIdsList(): void;
|
|
6891
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
6892
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
6893
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
6894
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
6895
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
6896
|
+
|
|
6897
|
+
getProve(): boolean;
|
|
6898
|
+
setProve(value: boolean): void;
|
|
6899
|
+
|
|
6900
|
+
serializeBinary(): Uint8Array;
|
|
6901
|
+
toObject(includeInstance?: boolean): GetTokenStatusesRequestV0.AsObject;
|
|
6902
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesRequestV0): GetTokenStatusesRequestV0.AsObject;
|
|
6903
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6904
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6905
|
+
static serializeBinaryToWriter(message: GetTokenStatusesRequestV0, writer: jspb.BinaryWriter): void;
|
|
6906
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesRequestV0;
|
|
6907
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesRequestV0, reader: jspb.BinaryReader): GetTokenStatusesRequestV0;
|
|
6908
|
+
}
|
|
6909
|
+
|
|
6910
|
+
export namespace GetTokenStatusesRequestV0 {
|
|
6911
|
+
export type AsObject = {
|
|
6912
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
6913
|
+
prove: boolean,
|
|
6914
|
+
}
|
|
6915
|
+
}
|
|
6916
|
+
|
|
6917
|
+
export enum VersionCase {
|
|
6918
|
+
VERSION_NOT_SET = 0,
|
|
6919
|
+
V0 = 1,
|
|
6920
|
+
}
|
|
6921
|
+
}
|
|
6922
|
+
|
|
6923
|
+
export class GetTokenStatusesResponse extends jspb.Message {
|
|
6924
|
+
hasV0(): boolean;
|
|
6925
|
+
clearV0(): void;
|
|
6926
|
+
getV0(): GetTokenStatusesResponse.GetTokenStatusesResponseV0 | undefined;
|
|
6927
|
+
setV0(value?: GetTokenStatusesResponse.GetTokenStatusesResponseV0): void;
|
|
6928
|
+
|
|
6929
|
+
getVersionCase(): GetTokenStatusesResponse.VersionCase;
|
|
6930
|
+
serializeBinary(): Uint8Array;
|
|
6931
|
+
toObject(includeInstance?: boolean): GetTokenStatusesResponse.AsObject;
|
|
6932
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesResponse): GetTokenStatusesResponse.AsObject;
|
|
6933
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6934
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6935
|
+
static serializeBinaryToWriter(message: GetTokenStatusesResponse, writer: jspb.BinaryWriter): void;
|
|
6936
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesResponse;
|
|
6937
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesResponse, reader: jspb.BinaryReader): GetTokenStatusesResponse;
|
|
6938
|
+
}
|
|
6939
|
+
|
|
6940
|
+
export namespace GetTokenStatusesResponse {
|
|
6941
|
+
export type AsObject = {
|
|
6942
|
+
v0?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.AsObject,
|
|
6943
|
+
}
|
|
6944
|
+
|
|
6945
|
+
export class GetTokenStatusesResponseV0 extends jspb.Message {
|
|
6946
|
+
hasTokenStatuses(): boolean;
|
|
6947
|
+
clearTokenStatuses(): void;
|
|
6948
|
+
getTokenStatuses(): GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatuses | undefined;
|
|
6949
|
+
setTokenStatuses(value?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatuses): void;
|
|
6950
|
+
|
|
6951
|
+
hasProof(): boolean;
|
|
6952
|
+
clearProof(): void;
|
|
6953
|
+
getProof(): Proof | undefined;
|
|
6954
|
+
setProof(value?: Proof): void;
|
|
6955
|
+
|
|
6956
|
+
hasMetadata(): boolean;
|
|
6957
|
+
clearMetadata(): void;
|
|
6958
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
6959
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
6960
|
+
|
|
6961
|
+
getResultCase(): GetTokenStatusesResponseV0.ResultCase;
|
|
6962
|
+
serializeBinary(): Uint8Array;
|
|
6963
|
+
toObject(includeInstance?: boolean): GetTokenStatusesResponseV0.AsObject;
|
|
6964
|
+
static toObject(includeInstance: boolean, msg: GetTokenStatusesResponseV0): GetTokenStatusesResponseV0.AsObject;
|
|
6965
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6966
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6967
|
+
static serializeBinaryToWriter(message: GetTokenStatusesResponseV0, writer: jspb.BinaryWriter): void;
|
|
6968
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenStatusesResponseV0;
|
|
6969
|
+
static deserializeBinaryFromReader(message: GetTokenStatusesResponseV0, reader: jspb.BinaryReader): GetTokenStatusesResponseV0;
|
|
6970
|
+
}
|
|
6971
|
+
|
|
6972
|
+
export namespace GetTokenStatusesResponseV0 {
|
|
6973
|
+
export type AsObject = {
|
|
6974
|
+
tokenStatuses?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatuses.AsObject,
|
|
6975
|
+
proof?: Proof.AsObject,
|
|
6976
|
+
metadata?: ResponseMetadata.AsObject,
|
|
6977
|
+
}
|
|
6978
|
+
|
|
6979
|
+
export class TokenStatusEntry extends jspb.Message {
|
|
6980
|
+
getTokenId(): Uint8Array | string;
|
|
6981
|
+
getTokenId_asU8(): Uint8Array;
|
|
6982
|
+
getTokenId_asB64(): string;
|
|
6983
|
+
setTokenId(value: Uint8Array | string): void;
|
|
6984
|
+
|
|
6985
|
+
hasPaused(): boolean;
|
|
6986
|
+
clearPaused(): void;
|
|
6987
|
+
getPaused(): boolean;
|
|
6988
|
+
setPaused(value: boolean): void;
|
|
6989
|
+
|
|
6990
|
+
serializeBinary(): Uint8Array;
|
|
6991
|
+
toObject(includeInstance?: boolean): TokenStatusEntry.AsObject;
|
|
6992
|
+
static toObject(includeInstance: boolean, msg: TokenStatusEntry): TokenStatusEntry.AsObject;
|
|
6993
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
6994
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
6995
|
+
static serializeBinaryToWriter(message: TokenStatusEntry, writer: jspb.BinaryWriter): void;
|
|
6996
|
+
static deserializeBinary(bytes: Uint8Array): TokenStatusEntry;
|
|
6997
|
+
static deserializeBinaryFromReader(message: TokenStatusEntry, reader: jspb.BinaryReader): TokenStatusEntry;
|
|
6998
|
+
}
|
|
6999
|
+
|
|
7000
|
+
export namespace TokenStatusEntry {
|
|
7001
|
+
export type AsObject = {
|
|
7002
|
+
tokenId: Uint8Array | string,
|
|
7003
|
+
paused: boolean,
|
|
7004
|
+
}
|
|
7005
|
+
}
|
|
7006
|
+
|
|
7007
|
+
export class TokenStatuses extends jspb.Message {
|
|
7008
|
+
clearTokenStatusesList(): void;
|
|
7009
|
+
getTokenStatusesList(): Array<GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry>;
|
|
7010
|
+
setTokenStatusesList(value: Array<GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry>): void;
|
|
7011
|
+
addTokenStatuses(value?: GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry, index?: number): GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry;
|
|
7012
|
+
|
|
7013
|
+
serializeBinary(): Uint8Array;
|
|
7014
|
+
toObject(includeInstance?: boolean): TokenStatuses.AsObject;
|
|
7015
|
+
static toObject(includeInstance: boolean, msg: TokenStatuses): TokenStatuses.AsObject;
|
|
7016
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7017
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7018
|
+
static serializeBinaryToWriter(message: TokenStatuses, writer: jspb.BinaryWriter): void;
|
|
7019
|
+
static deserializeBinary(bytes: Uint8Array): TokenStatuses;
|
|
7020
|
+
static deserializeBinaryFromReader(message: TokenStatuses, reader: jspb.BinaryReader): TokenStatuses;
|
|
7021
|
+
}
|
|
7022
|
+
|
|
7023
|
+
export namespace TokenStatuses {
|
|
7024
|
+
export type AsObject = {
|
|
7025
|
+
tokenStatusesList: Array<GetTokenStatusesResponse.GetTokenStatusesResponseV0.TokenStatusEntry.AsObject>,
|
|
7026
|
+
}
|
|
7027
|
+
}
|
|
7028
|
+
|
|
7029
|
+
export enum ResultCase {
|
|
7030
|
+
RESULT_NOT_SET = 0,
|
|
7031
|
+
TOKEN_STATUSES = 1,
|
|
7032
|
+
PROOF = 2,
|
|
7033
|
+
}
|
|
7034
|
+
}
|
|
7035
|
+
|
|
7036
|
+
export enum VersionCase {
|
|
7037
|
+
VERSION_NOT_SET = 0,
|
|
7038
|
+
V0 = 1,
|
|
7039
|
+
}
|
|
7040
|
+
}
|
|
7041
|
+
|
|
7042
|
+
export class GetTokenPreProgrammedDistributionsRequest extends jspb.Message {
|
|
7043
|
+
hasV0(): boolean;
|
|
7044
|
+
clearV0(): void;
|
|
7045
|
+
getV0(): GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0 | undefined;
|
|
7046
|
+
setV0(value?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0): void;
|
|
7047
|
+
|
|
7048
|
+
getVersionCase(): GetTokenPreProgrammedDistributionsRequest.VersionCase;
|
|
7049
|
+
serializeBinary(): Uint8Array;
|
|
7050
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsRequest.AsObject;
|
|
7051
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsRequest): GetTokenPreProgrammedDistributionsRequest.AsObject;
|
|
7052
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7053
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7054
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsRequest, writer: jspb.BinaryWriter): void;
|
|
7055
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsRequest;
|
|
7056
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsRequest, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsRequest;
|
|
7057
|
+
}
|
|
7058
|
+
|
|
7059
|
+
export namespace GetTokenPreProgrammedDistributionsRequest {
|
|
7060
|
+
export type AsObject = {
|
|
7061
|
+
v0?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.AsObject,
|
|
7062
|
+
}
|
|
7063
|
+
|
|
7064
|
+
export class GetTokenPreProgrammedDistributionsRequestV0 extends jspb.Message {
|
|
7065
|
+
getTokenId(): Uint8Array | string;
|
|
7066
|
+
getTokenId_asU8(): Uint8Array;
|
|
7067
|
+
getTokenId_asB64(): string;
|
|
7068
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7069
|
+
|
|
7070
|
+
hasStartAtInfo(): boolean;
|
|
7071
|
+
clearStartAtInfo(): void;
|
|
7072
|
+
getStartAtInfo(): GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.StartAtInfo | undefined;
|
|
7073
|
+
setStartAtInfo(value?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.StartAtInfo): void;
|
|
7074
|
+
|
|
7075
|
+
hasLimit(): boolean;
|
|
7076
|
+
clearLimit(): void;
|
|
7077
|
+
getLimit(): number;
|
|
7078
|
+
setLimit(value: number): void;
|
|
7079
|
+
|
|
7080
|
+
getProve(): boolean;
|
|
7081
|
+
setProve(value: boolean): void;
|
|
7082
|
+
|
|
7083
|
+
serializeBinary(): Uint8Array;
|
|
7084
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsRequestV0.AsObject;
|
|
7085
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsRequestV0): GetTokenPreProgrammedDistributionsRequestV0.AsObject;
|
|
7086
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7087
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7088
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsRequestV0, writer: jspb.BinaryWriter): void;
|
|
7089
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsRequestV0;
|
|
7090
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsRequestV0, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsRequestV0;
|
|
7091
|
+
}
|
|
7092
|
+
|
|
7093
|
+
export namespace GetTokenPreProgrammedDistributionsRequestV0 {
|
|
7094
|
+
export type AsObject = {
|
|
7095
|
+
tokenId: Uint8Array | string,
|
|
7096
|
+
startAtInfo?: GetTokenPreProgrammedDistributionsRequest.GetTokenPreProgrammedDistributionsRequestV0.StartAtInfo.AsObject,
|
|
7097
|
+
limit: number,
|
|
7098
|
+
prove: boolean,
|
|
7099
|
+
}
|
|
7100
|
+
|
|
7101
|
+
export class StartAtInfo extends jspb.Message {
|
|
7102
|
+
getStartTimeMs(): number;
|
|
7103
|
+
setStartTimeMs(value: number): void;
|
|
7104
|
+
|
|
7105
|
+
hasStartRecipient(): boolean;
|
|
7106
|
+
clearStartRecipient(): void;
|
|
7107
|
+
getStartRecipient(): Uint8Array | string;
|
|
7108
|
+
getStartRecipient_asU8(): Uint8Array;
|
|
7109
|
+
getStartRecipient_asB64(): string;
|
|
7110
|
+
setStartRecipient(value: Uint8Array | string): void;
|
|
7111
|
+
|
|
7112
|
+
hasStartRecipientIncluded(): boolean;
|
|
7113
|
+
clearStartRecipientIncluded(): void;
|
|
7114
|
+
getStartRecipientIncluded(): boolean;
|
|
7115
|
+
setStartRecipientIncluded(value: boolean): void;
|
|
7116
|
+
|
|
7117
|
+
serializeBinary(): Uint8Array;
|
|
7118
|
+
toObject(includeInstance?: boolean): StartAtInfo.AsObject;
|
|
7119
|
+
static toObject(includeInstance: boolean, msg: StartAtInfo): StartAtInfo.AsObject;
|
|
7120
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7121
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7122
|
+
static serializeBinaryToWriter(message: StartAtInfo, writer: jspb.BinaryWriter): void;
|
|
7123
|
+
static deserializeBinary(bytes: Uint8Array): StartAtInfo;
|
|
7124
|
+
static deserializeBinaryFromReader(message: StartAtInfo, reader: jspb.BinaryReader): StartAtInfo;
|
|
7125
|
+
}
|
|
7126
|
+
|
|
7127
|
+
export namespace StartAtInfo {
|
|
7128
|
+
export type AsObject = {
|
|
7129
|
+
startTimeMs: number,
|
|
7130
|
+
startRecipient: Uint8Array | string,
|
|
7131
|
+
startRecipientIncluded: boolean,
|
|
7132
|
+
}
|
|
7133
|
+
}
|
|
7134
|
+
}
|
|
7135
|
+
|
|
7136
|
+
export enum VersionCase {
|
|
7137
|
+
VERSION_NOT_SET = 0,
|
|
7138
|
+
V0 = 1,
|
|
7139
|
+
}
|
|
7140
|
+
}
|
|
7141
|
+
|
|
7142
|
+
export class GetTokenPreProgrammedDistributionsResponse extends jspb.Message {
|
|
7143
|
+
hasV0(): boolean;
|
|
7144
|
+
clearV0(): void;
|
|
7145
|
+
getV0(): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0 | undefined;
|
|
7146
|
+
setV0(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0): void;
|
|
7147
|
+
|
|
7148
|
+
getVersionCase(): GetTokenPreProgrammedDistributionsResponse.VersionCase;
|
|
7149
|
+
serializeBinary(): Uint8Array;
|
|
7150
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsResponse.AsObject;
|
|
7151
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsResponse): GetTokenPreProgrammedDistributionsResponse.AsObject;
|
|
7152
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7153
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7154
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsResponse, writer: jspb.BinaryWriter): void;
|
|
7155
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsResponse;
|
|
7156
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsResponse, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsResponse;
|
|
7157
|
+
}
|
|
7158
|
+
|
|
7159
|
+
export namespace GetTokenPreProgrammedDistributionsResponse {
|
|
7160
|
+
export type AsObject = {
|
|
7161
|
+
v0?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.AsObject,
|
|
7162
|
+
}
|
|
7163
|
+
|
|
7164
|
+
export class GetTokenPreProgrammedDistributionsResponseV0 extends jspb.Message {
|
|
7165
|
+
hasTokenDistributions(): boolean;
|
|
7166
|
+
clearTokenDistributions(): void;
|
|
7167
|
+
getTokenDistributions(): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributions | undefined;
|
|
7168
|
+
setTokenDistributions(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributions): void;
|
|
7169
|
+
|
|
7170
|
+
hasProof(): boolean;
|
|
7171
|
+
clearProof(): void;
|
|
7172
|
+
getProof(): Proof | undefined;
|
|
7173
|
+
setProof(value?: Proof): void;
|
|
7174
|
+
|
|
7175
|
+
hasMetadata(): boolean;
|
|
7176
|
+
clearMetadata(): void;
|
|
7177
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7178
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7179
|
+
|
|
7180
|
+
getResultCase(): GetTokenPreProgrammedDistributionsResponseV0.ResultCase;
|
|
7181
|
+
serializeBinary(): Uint8Array;
|
|
7182
|
+
toObject(includeInstance?: boolean): GetTokenPreProgrammedDistributionsResponseV0.AsObject;
|
|
7183
|
+
static toObject(includeInstance: boolean, msg: GetTokenPreProgrammedDistributionsResponseV0): GetTokenPreProgrammedDistributionsResponseV0.AsObject;
|
|
7184
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7185
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7186
|
+
static serializeBinaryToWriter(message: GetTokenPreProgrammedDistributionsResponseV0, writer: jspb.BinaryWriter): void;
|
|
7187
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenPreProgrammedDistributionsResponseV0;
|
|
7188
|
+
static deserializeBinaryFromReader(message: GetTokenPreProgrammedDistributionsResponseV0, reader: jspb.BinaryReader): GetTokenPreProgrammedDistributionsResponseV0;
|
|
7189
|
+
}
|
|
7190
|
+
|
|
7191
|
+
export namespace GetTokenPreProgrammedDistributionsResponseV0 {
|
|
7192
|
+
export type AsObject = {
|
|
7193
|
+
tokenDistributions?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributions.AsObject,
|
|
7194
|
+
proof?: Proof.AsObject,
|
|
7195
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7196
|
+
}
|
|
7197
|
+
|
|
7198
|
+
export class TokenDistributionEntry extends jspb.Message {
|
|
7199
|
+
getRecipientId(): Uint8Array | string;
|
|
7200
|
+
getRecipientId_asU8(): Uint8Array;
|
|
7201
|
+
getRecipientId_asB64(): string;
|
|
7202
|
+
setRecipientId(value: Uint8Array | string): void;
|
|
7203
|
+
|
|
7204
|
+
getAmount(): number;
|
|
7205
|
+
setAmount(value: number): void;
|
|
7206
|
+
|
|
7207
|
+
serializeBinary(): Uint8Array;
|
|
7208
|
+
toObject(includeInstance?: boolean): TokenDistributionEntry.AsObject;
|
|
7209
|
+
static toObject(includeInstance: boolean, msg: TokenDistributionEntry): TokenDistributionEntry.AsObject;
|
|
7210
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7211
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7212
|
+
static serializeBinaryToWriter(message: TokenDistributionEntry, writer: jspb.BinaryWriter): void;
|
|
7213
|
+
static deserializeBinary(bytes: Uint8Array): TokenDistributionEntry;
|
|
7214
|
+
static deserializeBinaryFromReader(message: TokenDistributionEntry, reader: jspb.BinaryReader): TokenDistributionEntry;
|
|
7215
|
+
}
|
|
7216
|
+
|
|
7217
|
+
export namespace TokenDistributionEntry {
|
|
7218
|
+
export type AsObject = {
|
|
7219
|
+
recipientId: Uint8Array | string,
|
|
7220
|
+
amount: number,
|
|
7221
|
+
}
|
|
7222
|
+
}
|
|
7223
|
+
|
|
7224
|
+
export class TokenTimedDistributionEntry extends jspb.Message {
|
|
7225
|
+
getTimestamp(): number;
|
|
7226
|
+
setTimestamp(value: number): void;
|
|
7227
|
+
|
|
7228
|
+
clearDistributionsList(): void;
|
|
7229
|
+
getDistributionsList(): Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry>;
|
|
7230
|
+
setDistributionsList(value: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry>): void;
|
|
7231
|
+
addDistributions(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry, index?: number): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry;
|
|
7232
|
+
|
|
7233
|
+
serializeBinary(): Uint8Array;
|
|
7234
|
+
toObject(includeInstance?: boolean): TokenTimedDistributionEntry.AsObject;
|
|
7235
|
+
static toObject(includeInstance: boolean, msg: TokenTimedDistributionEntry): TokenTimedDistributionEntry.AsObject;
|
|
7236
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7237
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7238
|
+
static serializeBinaryToWriter(message: TokenTimedDistributionEntry, writer: jspb.BinaryWriter): void;
|
|
7239
|
+
static deserializeBinary(bytes: Uint8Array): TokenTimedDistributionEntry;
|
|
7240
|
+
static deserializeBinaryFromReader(message: TokenTimedDistributionEntry, reader: jspb.BinaryReader): TokenTimedDistributionEntry;
|
|
7241
|
+
}
|
|
7242
|
+
|
|
7243
|
+
export namespace TokenTimedDistributionEntry {
|
|
7244
|
+
export type AsObject = {
|
|
7245
|
+
timestamp: number,
|
|
7246
|
+
distributionsList: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenDistributionEntry.AsObject>,
|
|
7247
|
+
}
|
|
7248
|
+
}
|
|
7249
|
+
|
|
7250
|
+
export class TokenDistributions extends jspb.Message {
|
|
7251
|
+
clearTokenDistributionsList(): void;
|
|
7252
|
+
getTokenDistributionsList(): Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry>;
|
|
7253
|
+
setTokenDistributionsList(value: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry>): void;
|
|
7254
|
+
addTokenDistributions(value?: GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry, index?: number): GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry;
|
|
7255
|
+
|
|
7256
|
+
serializeBinary(): Uint8Array;
|
|
7257
|
+
toObject(includeInstance?: boolean): TokenDistributions.AsObject;
|
|
7258
|
+
static toObject(includeInstance: boolean, msg: TokenDistributions): TokenDistributions.AsObject;
|
|
7259
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7260
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7261
|
+
static serializeBinaryToWriter(message: TokenDistributions, writer: jspb.BinaryWriter): void;
|
|
7262
|
+
static deserializeBinary(bytes: Uint8Array): TokenDistributions;
|
|
7263
|
+
static deserializeBinaryFromReader(message: TokenDistributions, reader: jspb.BinaryReader): TokenDistributions;
|
|
7264
|
+
}
|
|
7265
|
+
|
|
7266
|
+
export namespace TokenDistributions {
|
|
7267
|
+
export type AsObject = {
|
|
7268
|
+
tokenDistributionsList: Array<GetTokenPreProgrammedDistributionsResponse.GetTokenPreProgrammedDistributionsResponseV0.TokenTimedDistributionEntry.AsObject>,
|
|
7269
|
+
}
|
|
7270
|
+
}
|
|
7271
|
+
|
|
7272
|
+
export enum ResultCase {
|
|
7273
|
+
RESULT_NOT_SET = 0,
|
|
7274
|
+
TOKEN_DISTRIBUTIONS = 1,
|
|
7275
|
+
PROOF = 2,
|
|
7276
|
+
}
|
|
7277
|
+
}
|
|
7278
|
+
|
|
7279
|
+
export enum VersionCase {
|
|
7280
|
+
VERSION_NOT_SET = 0,
|
|
7281
|
+
V0 = 1,
|
|
7282
|
+
}
|
|
7283
|
+
}
|
|
7284
|
+
|
|
7285
|
+
export class GetTokenTotalSupplyRequest extends jspb.Message {
|
|
7286
|
+
hasV0(): boolean;
|
|
7287
|
+
clearV0(): void;
|
|
7288
|
+
getV0(): GetTokenTotalSupplyRequest.GetTokenTotalSupplyRequestV0 | undefined;
|
|
7289
|
+
setV0(value?: GetTokenTotalSupplyRequest.GetTokenTotalSupplyRequestV0): void;
|
|
7290
|
+
|
|
7291
|
+
getVersionCase(): GetTokenTotalSupplyRequest.VersionCase;
|
|
7292
|
+
serializeBinary(): Uint8Array;
|
|
7293
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyRequest.AsObject;
|
|
7294
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyRequest): GetTokenTotalSupplyRequest.AsObject;
|
|
7295
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7296
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7297
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyRequest, writer: jspb.BinaryWriter): void;
|
|
7298
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyRequest;
|
|
7299
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyRequest, reader: jspb.BinaryReader): GetTokenTotalSupplyRequest;
|
|
7300
|
+
}
|
|
7301
|
+
|
|
7302
|
+
export namespace GetTokenTotalSupplyRequest {
|
|
7303
|
+
export type AsObject = {
|
|
7304
|
+
v0?: GetTokenTotalSupplyRequest.GetTokenTotalSupplyRequestV0.AsObject,
|
|
7305
|
+
}
|
|
7306
|
+
|
|
7307
|
+
export class GetTokenTotalSupplyRequestV0 extends jspb.Message {
|
|
7308
|
+
getTokenId(): Uint8Array | string;
|
|
7309
|
+
getTokenId_asU8(): Uint8Array;
|
|
7310
|
+
getTokenId_asB64(): string;
|
|
7311
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7312
|
+
|
|
7313
|
+
getProve(): boolean;
|
|
7314
|
+
setProve(value: boolean): void;
|
|
7315
|
+
|
|
7316
|
+
serializeBinary(): Uint8Array;
|
|
7317
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyRequestV0.AsObject;
|
|
7318
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyRequestV0): GetTokenTotalSupplyRequestV0.AsObject;
|
|
7319
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7320
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7321
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyRequestV0, writer: jspb.BinaryWriter): void;
|
|
7322
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyRequestV0;
|
|
7323
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyRequestV0, reader: jspb.BinaryReader): GetTokenTotalSupplyRequestV0;
|
|
7324
|
+
}
|
|
7325
|
+
|
|
7326
|
+
export namespace GetTokenTotalSupplyRequestV0 {
|
|
7327
|
+
export type AsObject = {
|
|
7328
|
+
tokenId: Uint8Array | string,
|
|
7329
|
+
prove: boolean,
|
|
7330
|
+
}
|
|
7331
|
+
}
|
|
7332
|
+
|
|
7333
|
+
export enum VersionCase {
|
|
7334
|
+
VERSION_NOT_SET = 0,
|
|
7335
|
+
V0 = 1,
|
|
7336
|
+
}
|
|
7337
|
+
}
|
|
7338
|
+
|
|
7339
|
+
export class GetTokenTotalSupplyResponse extends jspb.Message {
|
|
7340
|
+
hasV0(): boolean;
|
|
7341
|
+
clearV0(): void;
|
|
7342
|
+
getV0(): GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0 | undefined;
|
|
7343
|
+
setV0(value?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0): void;
|
|
7344
|
+
|
|
7345
|
+
getVersionCase(): GetTokenTotalSupplyResponse.VersionCase;
|
|
7346
|
+
serializeBinary(): Uint8Array;
|
|
7347
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyResponse.AsObject;
|
|
7348
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyResponse): GetTokenTotalSupplyResponse.AsObject;
|
|
7349
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7350
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7351
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyResponse, writer: jspb.BinaryWriter): void;
|
|
7352
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyResponse;
|
|
7353
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyResponse, reader: jspb.BinaryReader): GetTokenTotalSupplyResponse;
|
|
7354
|
+
}
|
|
7355
|
+
|
|
7356
|
+
export namespace GetTokenTotalSupplyResponse {
|
|
7357
|
+
export type AsObject = {
|
|
7358
|
+
v0?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.AsObject,
|
|
7359
|
+
}
|
|
7360
|
+
|
|
7361
|
+
export class GetTokenTotalSupplyResponseV0 extends jspb.Message {
|
|
7362
|
+
hasTokenTotalSupply(): boolean;
|
|
7363
|
+
clearTokenTotalSupply(): void;
|
|
7364
|
+
getTokenTotalSupply(): GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.TokenTotalSupplyEntry | undefined;
|
|
7365
|
+
setTokenTotalSupply(value?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.TokenTotalSupplyEntry): void;
|
|
7366
|
+
|
|
7367
|
+
hasProof(): boolean;
|
|
7368
|
+
clearProof(): void;
|
|
7369
|
+
getProof(): Proof | undefined;
|
|
7370
|
+
setProof(value?: Proof): void;
|
|
7371
|
+
|
|
7372
|
+
hasMetadata(): boolean;
|
|
7373
|
+
clearMetadata(): void;
|
|
7374
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7375
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7376
|
+
|
|
7377
|
+
getResultCase(): GetTokenTotalSupplyResponseV0.ResultCase;
|
|
7378
|
+
serializeBinary(): Uint8Array;
|
|
7379
|
+
toObject(includeInstance?: boolean): GetTokenTotalSupplyResponseV0.AsObject;
|
|
7380
|
+
static toObject(includeInstance: boolean, msg: GetTokenTotalSupplyResponseV0): GetTokenTotalSupplyResponseV0.AsObject;
|
|
7381
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7382
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7383
|
+
static serializeBinaryToWriter(message: GetTokenTotalSupplyResponseV0, writer: jspb.BinaryWriter): void;
|
|
7384
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenTotalSupplyResponseV0;
|
|
7385
|
+
static deserializeBinaryFromReader(message: GetTokenTotalSupplyResponseV0, reader: jspb.BinaryReader): GetTokenTotalSupplyResponseV0;
|
|
7386
|
+
}
|
|
7387
|
+
|
|
7388
|
+
export namespace GetTokenTotalSupplyResponseV0 {
|
|
7389
|
+
export type AsObject = {
|
|
7390
|
+
tokenTotalSupply?: GetTokenTotalSupplyResponse.GetTokenTotalSupplyResponseV0.TokenTotalSupplyEntry.AsObject,
|
|
7391
|
+
proof?: Proof.AsObject,
|
|
7392
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7393
|
+
}
|
|
7394
|
+
|
|
7395
|
+
export class TokenTotalSupplyEntry extends jspb.Message {
|
|
7396
|
+
getTokenId(): Uint8Array | string;
|
|
7397
|
+
getTokenId_asU8(): Uint8Array;
|
|
7398
|
+
getTokenId_asB64(): string;
|
|
7399
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7400
|
+
|
|
7401
|
+
getTotalAggregatedAmountInUserAccounts(): number;
|
|
7402
|
+
setTotalAggregatedAmountInUserAccounts(value: number): void;
|
|
7403
|
+
|
|
7404
|
+
getTotalSystemAmount(): number;
|
|
7405
|
+
setTotalSystemAmount(value: number): void;
|
|
7406
|
+
|
|
7407
|
+
serializeBinary(): Uint8Array;
|
|
7408
|
+
toObject(includeInstance?: boolean): TokenTotalSupplyEntry.AsObject;
|
|
7409
|
+
static toObject(includeInstance: boolean, msg: TokenTotalSupplyEntry): TokenTotalSupplyEntry.AsObject;
|
|
7410
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7411
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7412
|
+
static serializeBinaryToWriter(message: TokenTotalSupplyEntry, writer: jspb.BinaryWriter): void;
|
|
7413
|
+
static deserializeBinary(bytes: Uint8Array): TokenTotalSupplyEntry;
|
|
7414
|
+
static deserializeBinaryFromReader(message: TokenTotalSupplyEntry, reader: jspb.BinaryReader): TokenTotalSupplyEntry;
|
|
7415
|
+
}
|
|
7416
|
+
|
|
7417
|
+
export namespace TokenTotalSupplyEntry {
|
|
7418
|
+
export type AsObject = {
|
|
7419
|
+
tokenId: Uint8Array | string,
|
|
7420
|
+
totalAggregatedAmountInUserAccounts: number,
|
|
7421
|
+
totalSystemAmount: number,
|
|
7422
|
+
}
|
|
7423
|
+
}
|
|
7424
|
+
|
|
7425
|
+
export enum ResultCase {
|
|
7426
|
+
RESULT_NOT_SET = 0,
|
|
7427
|
+
TOKEN_TOTAL_SUPPLY = 1,
|
|
7428
|
+
PROOF = 2,
|
|
7429
|
+
}
|
|
7430
|
+
}
|
|
7431
|
+
|
|
7432
|
+
export enum VersionCase {
|
|
7433
|
+
VERSION_NOT_SET = 0,
|
|
7434
|
+
V0 = 1,
|
|
7435
|
+
}
|
|
7436
|
+
}
|
|
7437
|
+
|
|
7438
|
+
export class GetGroupInfoRequest extends jspb.Message {
|
|
7439
|
+
hasV0(): boolean;
|
|
7440
|
+
clearV0(): void;
|
|
7441
|
+
getV0(): GetGroupInfoRequest.GetGroupInfoRequestV0 | undefined;
|
|
7442
|
+
setV0(value?: GetGroupInfoRequest.GetGroupInfoRequestV0): void;
|
|
7443
|
+
|
|
7444
|
+
getVersionCase(): GetGroupInfoRequest.VersionCase;
|
|
7445
|
+
serializeBinary(): Uint8Array;
|
|
7446
|
+
toObject(includeInstance?: boolean): GetGroupInfoRequest.AsObject;
|
|
7447
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoRequest): GetGroupInfoRequest.AsObject;
|
|
7448
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7449
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7450
|
+
static serializeBinaryToWriter(message: GetGroupInfoRequest, writer: jspb.BinaryWriter): void;
|
|
7451
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoRequest;
|
|
7452
|
+
static deserializeBinaryFromReader(message: GetGroupInfoRequest, reader: jspb.BinaryReader): GetGroupInfoRequest;
|
|
7453
|
+
}
|
|
7454
|
+
|
|
7455
|
+
export namespace GetGroupInfoRequest {
|
|
7456
|
+
export type AsObject = {
|
|
7457
|
+
v0?: GetGroupInfoRequest.GetGroupInfoRequestV0.AsObject,
|
|
7458
|
+
}
|
|
7459
|
+
|
|
7460
|
+
export class GetGroupInfoRequestV0 extends jspb.Message {
|
|
7461
|
+
getContractId(): Uint8Array | string;
|
|
7462
|
+
getContractId_asU8(): Uint8Array;
|
|
7463
|
+
getContractId_asB64(): string;
|
|
7464
|
+
setContractId(value: Uint8Array | string): void;
|
|
7465
|
+
|
|
7466
|
+
getGroupContractPosition(): number;
|
|
7467
|
+
setGroupContractPosition(value: number): void;
|
|
7468
|
+
|
|
7469
|
+
getProve(): boolean;
|
|
7470
|
+
setProve(value: boolean): void;
|
|
7471
|
+
|
|
7472
|
+
serializeBinary(): Uint8Array;
|
|
7473
|
+
toObject(includeInstance?: boolean): GetGroupInfoRequestV0.AsObject;
|
|
7474
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoRequestV0): GetGroupInfoRequestV0.AsObject;
|
|
7475
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7476
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7477
|
+
static serializeBinaryToWriter(message: GetGroupInfoRequestV0, writer: jspb.BinaryWriter): void;
|
|
7478
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoRequestV0;
|
|
7479
|
+
static deserializeBinaryFromReader(message: GetGroupInfoRequestV0, reader: jspb.BinaryReader): GetGroupInfoRequestV0;
|
|
7480
|
+
}
|
|
7481
|
+
|
|
7482
|
+
export namespace GetGroupInfoRequestV0 {
|
|
7483
|
+
export type AsObject = {
|
|
7484
|
+
contractId: Uint8Array | string,
|
|
7485
|
+
groupContractPosition: number,
|
|
7486
|
+
prove: boolean,
|
|
7487
|
+
}
|
|
7488
|
+
}
|
|
7489
|
+
|
|
7490
|
+
export enum VersionCase {
|
|
7491
|
+
VERSION_NOT_SET = 0,
|
|
7492
|
+
V0 = 1,
|
|
7493
|
+
}
|
|
7494
|
+
}
|
|
7495
|
+
|
|
7496
|
+
export class GetGroupInfoResponse extends jspb.Message {
|
|
7497
|
+
hasV0(): boolean;
|
|
7498
|
+
clearV0(): void;
|
|
7499
|
+
getV0(): GetGroupInfoResponse.GetGroupInfoResponseV0 | undefined;
|
|
7500
|
+
setV0(value?: GetGroupInfoResponse.GetGroupInfoResponseV0): void;
|
|
7501
|
+
|
|
7502
|
+
getVersionCase(): GetGroupInfoResponse.VersionCase;
|
|
7503
|
+
serializeBinary(): Uint8Array;
|
|
7504
|
+
toObject(includeInstance?: boolean): GetGroupInfoResponse.AsObject;
|
|
7505
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoResponse): GetGroupInfoResponse.AsObject;
|
|
7506
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7507
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7508
|
+
static serializeBinaryToWriter(message: GetGroupInfoResponse, writer: jspb.BinaryWriter): void;
|
|
7509
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoResponse;
|
|
7510
|
+
static deserializeBinaryFromReader(message: GetGroupInfoResponse, reader: jspb.BinaryReader): GetGroupInfoResponse;
|
|
7511
|
+
}
|
|
7512
|
+
|
|
7513
|
+
export namespace GetGroupInfoResponse {
|
|
7514
|
+
export type AsObject = {
|
|
7515
|
+
v0?: GetGroupInfoResponse.GetGroupInfoResponseV0.AsObject,
|
|
7516
|
+
}
|
|
7517
|
+
|
|
7518
|
+
export class GetGroupInfoResponseV0 extends jspb.Message {
|
|
7519
|
+
hasGroupInfo(): boolean;
|
|
7520
|
+
clearGroupInfo(): void;
|
|
7521
|
+
getGroupInfo(): GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfo | undefined;
|
|
7522
|
+
setGroupInfo(value?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfo): void;
|
|
7523
|
+
|
|
7524
|
+
hasProof(): boolean;
|
|
7525
|
+
clearProof(): void;
|
|
7526
|
+
getProof(): Proof | undefined;
|
|
7527
|
+
setProof(value?: Proof): void;
|
|
7528
|
+
|
|
7529
|
+
hasMetadata(): boolean;
|
|
7530
|
+
clearMetadata(): void;
|
|
7531
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7532
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7533
|
+
|
|
7534
|
+
getResultCase(): GetGroupInfoResponseV0.ResultCase;
|
|
7535
|
+
serializeBinary(): Uint8Array;
|
|
7536
|
+
toObject(includeInstance?: boolean): GetGroupInfoResponseV0.AsObject;
|
|
7537
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfoResponseV0): GetGroupInfoResponseV0.AsObject;
|
|
7538
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7539
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7540
|
+
static serializeBinaryToWriter(message: GetGroupInfoResponseV0, writer: jspb.BinaryWriter): void;
|
|
7541
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfoResponseV0;
|
|
7542
|
+
static deserializeBinaryFromReader(message: GetGroupInfoResponseV0, reader: jspb.BinaryReader): GetGroupInfoResponseV0;
|
|
7543
|
+
}
|
|
7544
|
+
|
|
7545
|
+
export namespace GetGroupInfoResponseV0 {
|
|
7546
|
+
export type AsObject = {
|
|
7547
|
+
groupInfo?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfo.AsObject,
|
|
7548
|
+
proof?: Proof.AsObject,
|
|
7549
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7550
|
+
}
|
|
7551
|
+
|
|
7552
|
+
export class GroupMemberEntry extends jspb.Message {
|
|
7553
|
+
getMemberId(): Uint8Array | string;
|
|
7554
|
+
getMemberId_asU8(): Uint8Array;
|
|
7555
|
+
getMemberId_asB64(): string;
|
|
7556
|
+
setMemberId(value: Uint8Array | string): void;
|
|
7557
|
+
|
|
7558
|
+
getPower(): number;
|
|
7559
|
+
setPower(value: number): void;
|
|
7560
|
+
|
|
7561
|
+
serializeBinary(): Uint8Array;
|
|
7562
|
+
toObject(includeInstance?: boolean): GroupMemberEntry.AsObject;
|
|
7563
|
+
static toObject(includeInstance: boolean, msg: GroupMemberEntry): GroupMemberEntry.AsObject;
|
|
7564
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7565
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7566
|
+
static serializeBinaryToWriter(message: GroupMemberEntry, writer: jspb.BinaryWriter): void;
|
|
7567
|
+
static deserializeBinary(bytes: Uint8Array): GroupMemberEntry;
|
|
7568
|
+
static deserializeBinaryFromReader(message: GroupMemberEntry, reader: jspb.BinaryReader): GroupMemberEntry;
|
|
7569
|
+
}
|
|
7570
|
+
|
|
7571
|
+
export namespace GroupMemberEntry {
|
|
7572
|
+
export type AsObject = {
|
|
7573
|
+
memberId: Uint8Array | string,
|
|
7574
|
+
power: number,
|
|
7575
|
+
}
|
|
7576
|
+
}
|
|
7577
|
+
|
|
7578
|
+
export class GroupInfoEntry extends jspb.Message {
|
|
7579
|
+
clearMembersList(): void;
|
|
7580
|
+
getMembersList(): Array<GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry>;
|
|
7581
|
+
setMembersList(value: Array<GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry>): void;
|
|
7582
|
+
addMembers(value?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry, index?: number): GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry;
|
|
7583
|
+
|
|
7584
|
+
getGroupRequiredPower(): number;
|
|
7585
|
+
setGroupRequiredPower(value: number): void;
|
|
7586
|
+
|
|
7587
|
+
serializeBinary(): Uint8Array;
|
|
7588
|
+
toObject(includeInstance?: boolean): GroupInfoEntry.AsObject;
|
|
7589
|
+
static toObject(includeInstance: boolean, msg: GroupInfoEntry): GroupInfoEntry.AsObject;
|
|
7590
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7591
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7592
|
+
static serializeBinaryToWriter(message: GroupInfoEntry, writer: jspb.BinaryWriter): void;
|
|
7593
|
+
static deserializeBinary(bytes: Uint8Array): GroupInfoEntry;
|
|
7594
|
+
static deserializeBinaryFromReader(message: GroupInfoEntry, reader: jspb.BinaryReader): GroupInfoEntry;
|
|
7595
|
+
}
|
|
7596
|
+
|
|
7597
|
+
export namespace GroupInfoEntry {
|
|
7598
|
+
export type AsObject = {
|
|
7599
|
+
membersList: Array<GetGroupInfoResponse.GetGroupInfoResponseV0.GroupMemberEntry.AsObject>,
|
|
7600
|
+
groupRequiredPower: number,
|
|
7601
|
+
}
|
|
7602
|
+
}
|
|
7603
|
+
|
|
7604
|
+
export class GroupInfo extends jspb.Message {
|
|
7605
|
+
hasGroupInfo(): boolean;
|
|
7606
|
+
clearGroupInfo(): void;
|
|
7607
|
+
getGroupInfo(): GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfoEntry | undefined;
|
|
7608
|
+
setGroupInfo(value?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfoEntry): void;
|
|
7609
|
+
|
|
7610
|
+
serializeBinary(): Uint8Array;
|
|
7611
|
+
toObject(includeInstance?: boolean): GroupInfo.AsObject;
|
|
7612
|
+
static toObject(includeInstance: boolean, msg: GroupInfo): GroupInfo.AsObject;
|
|
7613
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7614
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7615
|
+
static serializeBinaryToWriter(message: GroupInfo, writer: jspb.BinaryWriter): void;
|
|
7616
|
+
static deserializeBinary(bytes: Uint8Array): GroupInfo;
|
|
7617
|
+
static deserializeBinaryFromReader(message: GroupInfo, reader: jspb.BinaryReader): GroupInfo;
|
|
7618
|
+
}
|
|
7619
|
+
|
|
7620
|
+
export namespace GroupInfo {
|
|
7621
|
+
export type AsObject = {
|
|
7622
|
+
groupInfo?: GetGroupInfoResponse.GetGroupInfoResponseV0.GroupInfoEntry.AsObject,
|
|
7623
|
+
}
|
|
7624
|
+
}
|
|
7625
|
+
|
|
7626
|
+
export enum ResultCase {
|
|
7627
|
+
RESULT_NOT_SET = 0,
|
|
7628
|
+
GROUP_INFO = 1,
|
|
7629
|
+
PROOF = 2,
|
|
7630
|
+
}
|
|
7631
|
+
}
|
|
7632
|
+
|
|
7633
|
+
export enum VersionCase {
|
|
7634
|
+
VERSION_NOT_SET = 0,
|
|
7635
|
+
V0 = 1,
|
|
7636
|
+
}
|
|
7637
|
+
}
|
|
7638
|
+
|
|
7639
|
+
export class GetGroupInfosRequest extends jspb.Message {
|
|
7640
|
+
hasV0(): boolean;
|
|
7641
|
+
clearV0(): void;
|
|
7642
|
+
getV0(): GetGroupInfosRequest.GetGroupInfosRequestV0 | undefined;
|
|
7643
|
+
setV0(value?: GetGroupInfosRequest.GetGroupInfosRequestV0): void;
|
|
7644
|
+
|
|
7645
|
+
getVersionCase(): GetGroupInfosRequest.VersionCase;
|
|
7646
|
+
serializeBinary(): Uint8Array;
|
|
7647
|
+
toObject(includeInstance?: boolean): GetGroupInfosRequest.AsObject;
|
|
7648
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosRequest): GetGroupInfosRequest.AsObject;
|
|
7649
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7650
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7651
|
+
static serializeBinaryToWriter(message: GetGroupInfosRequest, writer: jspb.BinaryWriter): void;
|
|
7652
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosRequest;
|
|
7653
|
+
static deserializeBinaryFromReader(message: GetGroupInfosRequest, reader: jspb.BinaryReader): GetGroupInfosRequest;
|
|
7654
|
+
}
|
|
7655
|
+
|
|
7656
|
+
export namespace GetGroupInfosRequest {
|
|
7657
|
+
export type AsObject = {
|
|
7658
|
+
v0?: GetGroupInfosRequest.GetGroupInfosRequestV0.AsObject,
|
|
7659
|
+
}
|
|
7660
|
+
|
|
7661
|
+
export class StartAtGroupContractPosition extends jspb.Message {
|
|
7662
|
+
getStartGroupContractPosition(): number;
|
|
7663
|
+
setStartGroupContractPosition(value: number): void;
|
|
7664
|
+
|
|
7665
|
+
getStartGroupContractPositionIncluded(): boolean;
|
|
7666
|
+
setStartGroupContractPositionIncluded(value: boolean): void;
|
|
7667
|
+
|
|
7668
|
+
serializeBinary(): Uint8Array;
|
|
7669
|
+
toObject(includeInstance?: boolean): StartAtGroupContractPosition.AsObject;
|
|
7670
|
+
static toObject(includeInstance: boolean, msg: StartAtGroupContractPosition): StartAtGroupContractPosition.AsObject;
|
|
7671
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7672
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7673
|
+
static serializeBinaryToWriter(message: StartAtGroupContractPosition, writer: jspb.BinaryWriter): void;
|
|
7674
|
+
static deserializeBinary(bytes: Uint8Array): StartAtGroupContractPosition;
|
|
7675
|
+
static deserializeBinaryFromReader(message: StartAtGroupContractPosition, reader: jspb.BinaryReader): StartAtGroupContractPosition;
|
|
7676
|
+
}
|
|
7677
|
+
|
|
7678
|
+
export namespace StartAtGroupContractPosition {
|
|
7679
|
+
export type AsObject = {
|
|
7680
|
+
startGroupContractPosition: number,
|
|
7681
|
+
startGroupContractPositionIncluded: boolean,
|
|
7682
|
+
}
|
|
7683
|
+
}
|
|
7684
|
+
|
|
7685
|
+
export class GetGroupInfosRequestV0 extends jspb.Message {
|
|
7686
|
+
getContractId(): Uint8Array | string;
|
|
7687
|
+
getContractId_asU8(): Uint8Array;
|
|
7688
|
+
getContractId_asB64(): string;
|
|
7689
|
+
setContractId(value: Uint8Array | string): void;
|
|
7690
|
+
|
|
7691
|
+
hasStartAtGroupContractPosition(): boolean;
|
|
7692
|
+
clearStartAtGroupContractPosition(): void;
|
|
7693
|
+
getStartAtGroupContractPosition(): GetGroupInfosRequest.StartAtGroupContractPosition | undefined;
|
|
7694
|
+
setStartAtGroupContractPosition(value?: GetGroupInfosRequest.StartAtGroupContractPosition): void;
|
|
7695
|
+
|
|
7696
|
+
hasCount(): boolean;
|
|
7697
|
+
clearCount(): void;
|
|
7698
|
+
getCount(): number;
|
|
7699
|
+
setCount(value: number): void;
|
|
7700
|
+
|
|
7701
|
+
getProve(): boolean;
|
|
7702
|
+
setProve(value: boolean): void;
|
|
7703
|
+
|
|
7704
|
+
serializeBinary(): Uint8Array;
|
|
7705
|
+
toObject(includeInstance?: boolean): GetGroupInfosRequestV0.AsObject;
|
|
7706
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosRequestV0): GetGroupInfosRequestV0.AsObject;
|
|
7707
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7708
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7709
|
+
static serializeBinaryToWriter(message: GetGroupInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
7710
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosRequestV0;
|
|
7711
|
+
static deserializeBinaryFromReader(message: GetGroupInfosRequestV0, reader: jspb.BinaryReader): GetGroupInfosRequestV0;
|
|
7712
|
+
}
|
|
7713
|
+
|
|
7714
|
+
export namespace GetGroupInfosRequestV0 {
|
|
7715
|
+
export type AsObject = {
|
|
7716
|
+
contractId: Uint8Array | string,
|
|
7717
|
+
startAtGroupContractPosition?: GetGroupInfosRequest.StartAtGroupContractPosition.AsObject,
|
|
7718
|
+
count: number,
|
|
7719
|
+
prove: boolean,
|
|
7720
|
+
}
|
|
7721
|
+
}
|
|
7722
|
+
|
|
7723
|
+
export enum VersionCase {
|
|
7724
|
+
VERSION_NOT_SET = 0,
|
|
7725
|
+
V0 = 1,
|
|
7726
|
+
}
|
|
7727
|
+
}
|
|
7728
|
+
|
|
7729
|
+
export class GetGroupInfosResponse extends jspb.Message {
|
|
7730
|
+
hasV0(): boolean;
|
|
7731
|
+
clearV0(): void;
|
|
7732
|
+
getV0(): GetGroupInfosResponse.GetGroupInfosResponseV0 | undefined;
|
|
7733
|
+
setV0(value?: GetGroupInfosResponse.GetGroupInfosResponseV0): void;
|
|
7734
|
+
|
|
7735
|
+
getVersionCase(): GetGroupInfosResponse.VersionCase;
|
|
7736
|
+
serializeBinary(): Uint8Array;
|
|
7737
|
+
toObject(includeInstance?: boolean): GetGroupInfosResponse.AsObject;
|
|
7738
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosResponse): GetGroupInfosResponse.AsObject;
|
|
7739
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7740
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7741
|
+
static serializeBinaryToWriter(message: GetGroupInfosResponse, writer: jspb.BinaryWriter): void;
|
|
7742
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosResponse;
|
|
7743
|
+
static deserializeBinaryFromReader(message: GetGroupInfosResponse, reader: jspb.BinaryReader): GetGroupInfosResponse;
|
|
7744
|
+
}
|
|
7745
|
+
|
|
7746
|
+
export namespace GetGroupInfosResponse {
|
|
7747
|
+
export type AsObject = {
|
|
7748
|
+
v0?: GetGroupInfosResponse.GetGroupInfosResponseV0.AsObject,
|
|
7749
|
+
}
|
|
7750
|
+
|
|
7751
|
+
export class GetGroupInfosResponseV0 extends jspb.Message {
|
|
7752
|
+
hasGroupInfos(): boolean;
|
|
7753
|
+
clearGroupInfos(): void;
|
|
7754
|
+
getGroupInfos(): GetGroupInfosResponse.GetGroupInfosResponseV0.GroupInfos | undefined;
|
|
7755
|
+
setGroupInfos(value?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupInfos): void;
|
|
7756
|
+
|
|
7757
|
+
hasProof(): boolean;
|
|
7758
|
+
clearProof(): void;
|
|
7759
|
+
getProof(): Proof | undefined;
|
|
7760
|
+
setProof(value?: Proof): void;
|
|
7761
|
+
|
|
7762
|
+
hasMetadata(): boolean;
|
|
7763
|
+
clearMetadata(): void;
|
|
7764
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7765
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7766
|
+
|
|
7767
|
+
getResultCase(): GetGroupInfosResponseV0.ResultCase;
|
|
7768
|
+
serializeBinary(): Uint8Array;
|
|
7769
|
+
toObject(includeInstance?: boolean): GetGroupInfosResponseV0.AsObject;
|
|
7770
|
+
static toObject(includeInstance: boolean, msg: GetGroupInfosResponseV0): GetGroupInfosResponseV0.AsObject;
|
|
7771
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7772
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7773
|
+
static serializeBinaryToWriter(message: GetGroupInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
7774
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupInfosResponseV0;
|
|
7775
|
+
static deserializeBinaryFromReader(message: GetGroupInfosResponseV0, reader: jspb.BinaryReader): GetGroupInfosResponseV0;
|
|
7776
|
+
}
|
|
7777
|
+
|
|
7778
|
+
export namespace GetGroupInfosResponseV0 {
|
|
7779
|
+
export type AsObject = {
|
|
7780
|
+
groupInfos?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupInfos.AsObject,
|
|
7781
|
+
proof?: Proof.AsObject,
|
|
7782
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7783
|
+
}
|
|
7784
|
+
|
|
7785
|
+
export class GroupMemberEntry extends jspb.Message {
|
|
7786
|
+
getMemberId(): Uint8Array | string;
|
|
7787
|
+
getMemberId_asU8(): Uint8Array;
|
|
7788
|
+
getMemberId_asB64(): string;
|
|
7789
|
+
setMemberId(value: Uint8Array | string): void;
|
|
7790
|
+
|
|
7791
|
+
getPower(): number;
|
|
7792
|
+
setPower(value: number): void;
|
|
7793
|
+
|
|
7794
|
+
serializeBinary(): Uint8Array;
|
|
7795
|
+
toObject(includeInstance?: boolean): GroupMemberEntry.AsObject;
|
|
7796
|
+
static toObject(includeInstance: boolean, msg: GroupMemberEntry): GroupMemberEntry.AsObject;
|
|
7797
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7798
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7799
|
+
static serializeBinaryToWriter(message: GroupMemberEntry, writer: jspb.BinaryWriter): void;
|
|
7800
|
+
static deserializeBinary(bytes: Uint8Array): GroupMemberEntry;
|
|
7801
|
+
static deserializeBinaryFromReader(message: GroupMemberEntry, reader: jspb.BinaryReader): GroupMemberEntry;
|
|
7802
|
+
}
|
|
7803
|
+
|
|
7804
|
+
export namespace GroupMemberEntry {
|
|
7805
|
+
export type AsObject = {
|
|
7806
|
+
memberId: Uint8Array | string,
|
|
7807
|
+
power: number,
|
|
7808
|
+
}
|
|
7809
|
+
}
|
|
7810
|
+
|
|
7811
|
+
export class GroupPositionInfoEntry extends jspb.Message {
|
|
7812
|
+
getGroupContractPosition(): number;
|
|
7813
|
+
setGroupContractPosition(value: number): void;
|
|
7814
|
+
|
|
7815
|
+
clearMembersList(): void;
|
|
7816
|
+
getMembersList(): Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry>;
|
|
7817
|
+
setMembersList(value: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry>): void;
|
|
7818
|
+
addMembers(value?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry, index?: number): GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry;
|
|
7819
|
+
|
|
7820
|
+
getGroupRequiredPower(): number;
|
|
7821
|
+
setGroupRequiredPower(value: number): void;
|
|
7822
|
+
|
|
7823
|
+
serializeBinary(): Uint8Array;
|
|
7824
|
+
toObject(includeInstance?: boolean): GroupPositionInfoEntry.AsObject;
|
|
7825
|
+
static toObject(includeInstance: boolean, msg: GroupPositionInfoEntry): GroupPositionInfoEntry.AsObject;
|
|
7826
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7827
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7828
|
+
static serializeBinaryToWriter(message: GroupPositionInfoEntry, writer: jspb.BinaryWriter): void;
|
|
7829
|
+
static deserializeBinary(bytes: Uint8Array): GroupPositionInfoEntry;
|
|
7830
|
+
static deserializeBinaryFromReader(message: GroupPositionInfoEntry, reader: jspb.BinaryReader): GroupPositionInfoEntry;
|
|
7831
|
+
}
|
|
7832
|
+
|
|
7833
|
+
export namespace GroupPositionInfoEntry {
|
|
7834
|
+
export type AsObject = {
|
|
7835
|
+
groupContractPosition: number,
|
|
7836
|
+
membersList: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupMemberEntry.AsObject>,
|
|
7837
|
+
groupRequiredPower: number,
|
|
7838
|
+
}
|
|
7839
|
+
}
|
|
7840
|
+
|
|
7841
|
+
export class GroupInfos extends jspb.Message {
|
|
7842
|
+
clearGroupInfosList(): void;
|
|
7843
|
+
getGroupInfosList(): Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry>;
|
|
7844
|
+
setGroupInfosList(value: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry>): void;
|
|
7845
|
+
addGroupInfos(value?: GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry, index?: number): GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry;
|
|
7846
|
+
|
|
7847
|
+
serializeBinary(): Uint8Array;
|
|
7848
|
+
toObject(includeInstance?: boolean): GroupInfos.AsObject;
|
|
7849
|
+
static toObject(includeInstance: boolean, msg: GroupInfos): GroupInfos.AsObject;
|
|
7850
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7851
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7852
|
+
static serializeBinaryToWriter(message: GroupInfos, writer: jspb.BinaryWriter): void;
|
|
7853
|
+
static deserializeBinary(bytes: Uint8Array): GroupInfos;
|
|
7854
|
+
static deserializeBinaryFromReader(message: GroupInfos, reader: jspb.BinaryReader): GroupInfos;
|
|
7855
|
+
}
|
|
7856
|
+
|
|
7857
|
+
export namespace GroupInfos {
|
|
7858
|
+
export type AsObject = {
|
|
7859
|
+
groupInfosList: Array<GetGroupInfosResponse.GetGroupInfosResponseV0.GroupPositionInfoEntry.AsObject>,
|
|
7860
|
+
}
|
|
7861
|
+
}
|
|
7862
|
+
|
|
7863
|
+
export enum ResultCase {
|
|
7864
|
+
RESULT_NOT_SET = 0,
|
|
7865
|
+
GROUP_INFOS = 1,
|
|
7866
|
+
PROOF = 2,
|
|
7867
|
+
}
|
|
7868
|
+
}
|
|
7869
|
+
|
|
7870
|
+
export enum VersionCase {
|
|
7871
|
+
VERSION_NOT_SET = 0,
|
|
7872
|
+
V0 = 1,
|
|
7873
|
+
}
|
|
7874
|
+
}
|
|
7875
|
+
|
|
7876
|
+
export class GetGroupActionsRequest extends jspb.Message {
|
|
7877
|
+
hasV0(): boolean;
|
|
7878
|
+
clearV0(): void;
|
|
7879
|
+
getV0(): GetGroupActionsRequest.GetGroupActionsRequestV0 | undefined;
|
|
7880
|
+
setV0(value?: GetGroupActionsRequest.GetGroupActionsRequestV0): void;
|
|
7881
|
+
|
|
7882
|
+
getVersionCase(): GetGroupActionsRequest.VersionCase;
|
|
7883
|
+
serializeBinary(): Uint8Array;
|
|
7884
|
+
toObject(includeInstance?: boolean): GetGroupActionsRequest.AsObject;
|
|
7885
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsRequest): GetGroupActionsRequest.AsObject;
|
|
7886
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7887
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7888
|
+
static serializeBinaryToWriter(message: GetGroupActionsRequest, writer: jspb.BinaryWriter): void;
|
|
7889
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsRequest;
|
|
7890
|
+
static deserializeBinaryFromReader(message: GetGroupActionsRequest, reader: jspb.BinaryReader): GetGroupActionsRequest;
|
|
7891
|
+
}
|
|
7892
|
+
|
|
7893
|
+
export namespace GetGroupActionsRequest {
|
|
7894
|
+
export type AsObject = {
|
|
7895
|
+
v0?: GetGroupActionsRequest.GetGroupActionsRequestV0.AsObject,
|
|
7896
|
+
}
|
|
7897
|
+
|
|
7898
|
+
export class StartAtActionId extends jspb.Message {
|
|
7899
|
+
getStartActionId(): Uint8Array | string;
|
|
7900
|
+
getStartActionId_asU8(): Uint8Array;
|
|
7901
|
+
getStartActionId_asB64(): string;
|
|
7902
|
+
setStartActionId(value: Uint8Array | string): void;
|
|
7903
|
+
|
|
7904
|
+
getStartActionIdIncluded(): boolean;
|
|
7905
|
+
setStartActionIdIncluded(value: boolean): void;
|
|
7906
|
+
|
|
7907
|
+
serializeBinary(): Uint8Array;
|
|
7908
|
+
toObject(includeInstance?: boolean): StartAtActionId.AsObject;
|
|
7909
|
+
static toObject(includeInstance: boolean, msg: StartAtActionId): StartAtActionId.AsObject;
|
|
7910
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7911
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7912
|
+
static serializeBinaryToWriter(message: StartAtActionId, writer: jspb.BinaryWriter): void;
|
|
7913
|
+
static deserializeBinary(bytes: Uint8Array): StartAtActionId;
|
|
7914
|
+
static deserializeBinaryFromReader(message: StartAtActionId, reader: jspb.BinaryReader): StartAtActionId;
|
|
7915
|
+
}
|
|
7916
|
+
|
|
7917
|
+
export namespace StartAtActionId {
|
|
7918
|
+
export type AsObject = {
|
|
7919
|
+
startActionId: Uint8Array | string,
|
|
7920
|
+
startActionIdIncluded: boolean,
|
|
7921
|
+
}
|
|
7922
|
+
}
|
|
7923
|
+
|
|
7924
|
+
export class GetGroupActionsRequestV0 extends jspb.Message {
|
|
7925
|
+
getContractId(): Uint8Array | string;
|
|
7926
|
+
getContractId_asU8(): Uint8Array;
|
|
7927
|
+
getContractId_asB64(): string;
|
|
7928
|
+
setContractId(value: Uint8Array | string): void;
|
|
7929
|
+
|
|
7930
|
+
getGroupContractPosition(): number;
|
|
7931
|
+
setGroupContractPosition(value: number): void;
|
|
7932
|
+
|
|
7933
|
+
getStatus(): GetGroupActionsRequest.ActionStatusMap[keyof GetGroupActionsRequest.ActionStatusMap];
|
|
7934
|
+
setStatus(value: GetGroupActionsRequest.ActionStatusMap[keyof GetGroupActionsRequest.ActionStatusMap]): void;
|
|
7935
|
+
|
|
7936
|
+
hasStartAtActionId(): boolean;
|
|
7937
|
+
clearStartAtActionId(): void;
|
|
7938
|
+
getStartAtActionId(): GetGroupActionsRequest.StartAtActionId | undefined;
|
|
7939
|
+
setStartAtActionId(value?: GetGroupActionsRequest.StartAtActionId): void;
|
|
7940
|
+
|
|
7941
|
+
hasCount(): boolean;
|
|
7942
|
+
clearCount(): void;
|
|
7943
|
+
getCount(): number;
|
|
7944
|
+
setCount(value: number): void;
|
|
7945
|
+
|
|
7946
|
+
getProve(): boolean;
|
|
7947
|
+
setProve(value: boolean): void;
|
|
7948
|
+
|
|
7949
|
+
serializeBinary(): Uint8Array;
|
|
7950
|
+
toObject(includeInstance?: boolean): GetGroupActionsRequestV0.AsObject;
|
|
7951
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsRequestV0): GetGroupActionsRequestV0.AsObject;
|
|
7952
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7953
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7954
|
+
static serializeBinaryToWriter(message: GetGroupActionsRequestV0, writer: jspb.BinaryWriter): void;
|
|
7955
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsRequestV0;
|
|
7956
|
+
static deserializeBinaryFromReader(message: GetGroupActionsRequestV0, reader: jspb.BinaryReader): GetGroupActionsRequestV0;
|
|
7957
|
+
}
|
|
7958
|
+
|
|
7959
|
+
export namespace GetGroupActionsRequestV0 {
|
|
7960
|
+
export type AsObject = {
|
|
7961
|
+
contractId: Uint8Array | string,
|
|
7962
|
+
groupContractPosition: number,
|
|
7963
|
+
status: GetGroupActionsRequest.ActionStatusMap[keyof GetGroupActionsRequest.ActionStatusMap],
|
|
7964
|
+
startAtActionId?: GetGroupActionsRequest.StartAtActionId.AsObject,
|
|
7965
|
+
count: number,
|
|
7966
|
+
prove: boolean,
|
|
7967
|
+
}
|
|
7968
|
+
}
|
|
7969
|
+
|
|
7970
|
+
export interface ActionStatusMap {
|
|
7971
|
+
ACTIVE: 0;
|
|
7972
|
+
CLOSED: 1;
|
|
7973
|
+
}
|
|
7974
|
+
|
|
7975
|
+
export const ActionStatus: ActionStatusMap;
|
|
7976
|
+
|
|
7977
|
+
export enum VersionCase {
|
|
7978
|
+
VERSION_NOT_SET = 0,
|
|
7979
|
+
V0 = 1,
|
|
7980
|
+
}
|
|
7981
|
+
}
|
|
7982
|
+
|
|
7983
|
+
export class GetGroupActionsResponse extends jspb.Message {
|
|
7984
|
+
hasV0(): boolean;
|
|
7985
|
+
clearV0(): void;
|
|
7986
|
+
getV0(): GetGroupActionsResponse.GetGroupActionsResponseV0 | undefined;
|
|
7987
|
+
setV0(value?: GetGroupActionsResponse.GetGroupActionsResponseV0): void;
|
|
7988
|
+
|
|
7989
|
+
getVersionCase(): GetGroupActionsResponse.VersionCase;
|
|
7990
|
+
serializeBinary(): Uint8Array;
|
|
7991
|
+
toObject(includeInstance?: boolean): GetGroupActionsResponse.AsObject;
|
|
7992
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsResponse): GetGroupActionsResponse.AsObject;
|
|
7993
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7994
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7995
|
+
static serializeBinaryToWriter(message: GetGroupActionsResponse, writer: jspb.BinaryWriter): void;
|
|
7996
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsResponse;
|
|
7997
|
+
static deserializeBinaryFromReader(message: GetGroupActionsResponse, reader: jspb.BinaryReader): GetGroupActionsResponse;
|
|
7998
|
+
}
|
|
7999
|
+
|
|
8000
|
+
export namespace GetGroupActionsResponse {
|
|
8001
|
+
export type AsObject = {
|
|
8002
|
+
v0?: GetGroupActionsResponse.GetGroupActionsResponseV0.AsObject,
|
|
8003
|
+
}
|
|
8004
|
+
|
|
8005
|
+
export class GetGroupActionsResponseV0 extends jspb.Message {
|
|
8006
|
+
hasGroupActions(): boolean;
|
|
8007
|
+
clearGroupActions(): void;
|
|
8008
|
+
getGroupActions(): GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActions | undefined;
|
|
8009
|
+
setGroupActions(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActions): void;
|
|
8010
|
+
|
|
8011
|
+
hasProof(): boolean;
|
|
8012
|
+
clearProof(): void;
|
|
8013
|
+
getProof(): Proof | undefined;
|
|
8014
|
+
setProof(value?: Proof): void;
|
|
8015
|
+
|
|
8016
|
+
hasMetadata(): boolean;
|
|
8017
|
+
clearMetadata(): void;
|
|
8018
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
8019
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
8020
|
+
|
|
8021
|
+
getResultCase(): GetGroupActionsResponseV0.ResultCase;
|
|
8022
|
+
serializeBinary(): Uint8Array;
|
|
8023
|
+
toObject(includeInstance?: boolean): GetGroupActionsResponseV0.AsObject;
|
|
8024
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionsResponseV0): GetGroupActionsResponseV0.AsObject;
|
|
8025
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8026
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8027
|
+
static serializeBinaryToWriter(message: GetGroupActionsResponseV0, writer: jspb.BinaryWriter): void;
|
|
8028
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionsResponseV0;
|
|
8029
|
+
static deserializeBinaryFromReader(message: GetGroupActionsResponseV0, reader: jspb.BinaryReader): GetGroupActionsResponseV0;
|
|
8030
|
+
}
|
|
8031
|
+
|
|
8032
|
+
export namespace GetGroupActionsResponseV0 {
|
|
8033
|
+
export type AsObject = {
|
|
8034
|
+
groupActions?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActions.AsObject,
|
|
8035
|
+
proof?: Proof.AsObject,
|
|
8036
|
+
metadata?: ResponseMetadata.AsObject,
|
|
8037
|
+
}
|
|
8038
|
+
|
|
8039
|
+
export class MintEvent extends jspb.Message {
|
|
8040
|
+
getAmount(): number;
|
|
8041
|
+
setAmount(value: number): void;
|
|
8042
|
+
|
|
8043
|
+
getRecipientId(): Uint8Array | string;
|
|
8044
|
+
getRecipientId_asU8(): Uint8Array;
|
|
8045
|
+
getRecipientId_asB64(): string;
|
|
8046
|
+
setRecipientId(value: Uint8Array | string): void;
|
|
8047
|
+
|
|
8048
|
+
hasPublicNote(): boolean;
|
|
8049
|
+
clearPublicNote(): void;
|
|
8050
|
+
getPublicNote(): string;
|
|
8051
|
+
setPublicNote(value: string): void;
|
|
8052
|
+
|
|
8053
|
+
serializeBinary(): Uint8Array;
|
|
8054
|
+
toObject(includeInstance?: boolean): MintEvent.AsObject;
|
|
8055
|
+
static toObject(includeInstance: boolean, msg: MintEvent): MintEvent.AsObject;
|
|
8056
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8057
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8058
|
+
static serializeBinaryToWriter(message: MintEvent, writer: jspb.BinaryWriter): void;
|
|
8059
|
+
static deserializeBinary(bytes: Uint8Array): MintEvent;
|
|
8060
|
+
static deserializeBinaryFromReader(message: MintEvent, reader: jspb.BinaryReader): MintEvent;
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8063
|
+
export namespace MintEvent {
|
|
8064
|
+
export type AsObject = {
|
|
8065
|
+
amount: number,
|
|
8066
|
+
recipientId: Uint8Array | string,
|
|
8067
|
+
publicNote: string,
|
|
8068
|
+
}
|
|
8069
|
+
}
|
|
8070
|
+
|
|
8071
|
+
export class BurnEvent extends jspb.Message {
|
|
8072
|
+
getAmount(): number;
|
|
8073
|
+
setAmount(value: number): void;
|
|
8074
|
+
|
|
8075
|
+
hasPublicNote(): boolean;
|
|
8076
|
+
clearPublicNote(): void;
|
|
8077
|
+
getPublicNote(): string;
|
|
8078
|
+
setPublicNote(value: string): void;
|
|
8079
|
+
|
|
8080
|
+
serializeBinary(): Uint8Array;
|
|
8081
|
+
toObject(includeInstance?: boolean): BurnEvent.AsObject;
|
|
8082
|
+
static toObject(includeInstance: boolean, msg: BurnEvent): BurnEvent.AsObject;
|
|
8083
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8084
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8085
|
+
static serializeBinaryToWriter(message: BurnEvent, writer: jspb.BinaryWriter): void;
|
|
8086
|
+
static deserializeBinary(bytes: Uint8Array): BurnEvent;
|
|
8087
|
+
static deserializeBinaryFromReader(message: BurnEvent, reader: jspb.BinaryReader): BurnEvent;
|
|
8088
|
+
}
|
|
8089
|
+
|
|
8090
|
+
export namespace BurnEvent {
|
|
8091
|
+
export type AsObject = {
|
|
8092
|
+
amount: number,
|
|
8093
|
+
publicNote: string,
|
|
8094
|
+
}
|
|
8095
|
+
}
|
|
8096
|
+
|
|
8097
|
+
export class FreezeEvent extends jspb.Message {
|
|
8098
|
+
getFrozenId(): Uint8Array | string;
|
|
8099
|
+
getFrozenId_asU8(): Uint8Array;
|
|
8100
|
+
getFrozenId_asB64(): string;
|
|
8101
|
+
setFrozenId(value: Uint8Array | string): void;
|
|
8102
|
+
|
|
8103
|
+
hasPublicNote(): boolean;
|
|
8104
|
+
clearPublicNote(): void;
|
|
8105
|
+
getPublicNote(): string;
|
|
8106
|
+
setPublicNote(value: string): void;
|
|
8107
|
+
|
|
8108
|
+
serializeBinary(): Uint8Array;
|
|
8109
|
+
toObject(includeInstance?: boolean): FreezeEvent.AsObject;
|
|
8110
|
+
static toObject(includeInstance: boolean, msg: FreezeEvent): FreezeEvent.AsObject;
|
|
8111
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8112
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8113
|
+
static serializeBinaryToWriter(message: FreezeEvent, writer: jspb.BinaryWriter): void;
|
|
8114
|
+
static deserializeBinary(bytes: Uint8Array): FreezeEvent;
|
|
8115
|
+
static deserializeBinaryFromReader(message: FreezeEvent, reader: jspb.BinaryReader): FreezeEvent;
|
|
8116
|
+
}
|
|
8117
|
+
|
|
8118
|
+
export namespace FreezeEvent {
|
|
8119
|
+
export type AsObject = {
|
|
8120
|
+
frozenId: Uint8Array | string,
|
|
8121
|
+
publicNote: string,
|
|
8122
|
+
}
|
|
8123
|
+
}
|
|
8124
|
+
|
|
8125
|
+
export class UnfreezeEvent extends jspb.Message {
|
|
8126
|
+
getFrozenId(): Uint8Array | string;
|
|
8127
|
+
getFrozenId_asU8(): Uint8Array;
|
|
8128
|
+
getFrozenId_asB64(): string;
|
|
8129
|
+
setFrozenId(value: Uint8Array | string): void;
|
|
8130
|
+
|
|
8131
|
+
hasPublicNote(): boolean;
|
|
8132
|
+
clearPublicNote(): void;
|
|
8133
|
+
getPublicNote(): string;
|
|
8134
|
+
setPublicNote(value: string): void;
|
|
8135
|
+
|
|
8136
|
+
serializeBinary(): Uint8Array;
|
|
8137
|
+
toObject(includeInstance?: boolean): UnfreezeEvent.AsObject;
|
|
8138
|
+
static toObject(includeInstance: boolean, msg: UnfreezeEvent): UnfreezeEvent.AsObject;
|
|
8139
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8140
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8141
|
+
static serializeBinaryToWriter(message: UnfreezeEvent, writer: jspb.BinaryWriter): void;
|
|
8142
|
+
static deserializeBinary(bytes: Uint8Array): UnfreezeEvent;
|
|
8143
|
+
static deserializeBinaryFromReader(message: UnfreezeEvent, reader: jspb.BinaryReader): UnfreezeEvent;
|
|
8144
|
+
}
|
|
8145
|
+
|
|
8146
|
+
export namespace UnfreezeEvent {
|
|
8147
|
+
export type AsObject = {
|
|
8148
|
+
frozenId: Uint8Array | string,
|
|
8149
|
+
publicNote: string,
|
|
8150
|
+
}
|
|
8151
|
+
}
|
|
8152
|
+
|
|
8153
|
+
export class DestroyFrozenFundsEvent extends jspb.Message {
|
|
8154
|
+
getFrozenId(): Uint8Array | string;
|
|
8155
|
+
getFrozenId_asU8(): Uint8Array;
|
|
8156
|
+
getFrozenId_asB64(): string;
|
|
8157
|
+
setFrozenId(value: Uint8Array | string): void;
|
|
8158
|
+
|
|
8159
|
+
getAmount(): number;
|
|
8160
|
+
setAmount(value: number): void;
|
|
8161
|
+
|
|
8162
|
+
hasPublicNote(): boolean;
|
|
8163
|
+
clearPublicNote(): void;
|
|
8164
|
+
getPublicNote(): string;
|
|
8165
|
+
setPublicNote(value: string): void;
|
|
8166
|
+
|
|
8167
|
+
serializeBinary(): Uint8Array;
|
|
8168
|
+
toObject(includeInstance?: boolean): DestroyFrozenFundsEvent.AsObject;
|
|
8169
|
+
static toObject(includeInstance: boolean, msg: DestroyFrozenFundsEvent): DestroyFrozenFundsEvent.AsObject;
|
|
8170
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8171
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8172
|
+
static serializeBinaryToWriter(message: DestroyFrozenFundsEvent, writer: jspb.BinaryWriter): void;
|
|
8173
|
+
static deserializeBinary(bytes: Uint8Array): DestroyFrozenFundsEvent;
|
|
8174
|
+
static deserializeBinaryFromReader(message: DestroyFrozenFundsEvent, reader: jspb.BinaryReader): DestroyFrozenFundsEvent;
|
|
8175
|
+
}
|
|
8176
|
+
|
|
8177
|
+
export namespace DestroyFrozenFundsEvent {
|
|
8178
|
+
export type AsObject = {
|
|
8179
|
+
frozenId: Uint8Array | string,
|
|
8180
|
+
amount: number,
|
|
8181
|
+
publicNote: string,
|
|
8182
|
+
}
|
|
8183
|
+
}
|
|
8184
|
+
|
|
8185
|
+
export class SharedEncryptedNote extends jspb.Message {
|
|
8186
|
+
getSenderKeyIndex(): number;
|
|
8187
|
+
setSenderKeyIndex(value: number): void;
|
|
8188
|
+
|
|
8189
|
+
getRecipientKeyIndex(): number;
|
|
8190
|
+
setRecipientKeyIndex(value: number): void;
|
|
8191
|
+
|
|
8192
|
+
getEncryptedData(): Uint8Array | string;
|
|
8193
|
+
getEncryptedData_asU8(): Uint8Array;
|
|
8194
|
+
getEncryptedData_asB64(): string;
|
|
8195
|
+
setEncryptedData(value: Uint8Array | string): void;
|
|
8196
|
+
|
|
8197
|
+
serializeBinary(): Uint8Array;
|
|
8198
|
+
toObject(includeInstance?: boolean): SharedEncryptedNote.AsObject;
|
|
8199
|
+
static toObject(includeInstance: boolean, msg: SharedEncryptedNote): SharedEncryptedNote.AsObject;
|
|
8200
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8201
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8202
|
+
static serializeBinaryToWriter(message: SharedEncryptedNote, writer: jspb.BinaryWriter): void;
|
|
8203
|
+
static deserializeBinary(bytes: Uint8Array): SharedEncryptedNote;
|
|
8204
|
+
static deserializeBinaryFromReader(message: SharedEncryptedNote, reader: jspb.BinaryReader): SharedEncryptedNote;
|
|
8205
|
+
}
|
|
8206
|
+
|
|
8207
|
+
export namespace SharedEncryptedNote {
|
|
8208
|
+
export type AsObject = {
|
|
8209
|
+
senderKeyIndex: number,
|
|
8210
|
+
recipientKeyIndex: number,
|
|
8211
|
+
encryptedData: Uint8Array | string,
|
|
8212
|
+
}
|
|
8213
|
+
}
|
|
8214
|
+
|
|
8215
|
+
export class PersonalEncryptedNote extends jspb.Message {
|
|
8216
|
+
getRootEncryptionKeyIndex(): number;
|
|
8217
|
+
setRootEncryptionKeyIndex(value: number): void;
|
|
8218
|
+
|
|
8219
|
+
getDerivationEncryptionKeyIndex(): number;
|
|
8220
|
+
setDerivationEncryptionKeyIndex(value: number): void;
|
|
8221
|
+
|
|
8222
|
+
getEncryptedData(): Uint8Array | string;
|
|
8223
|
+
getEncryptedData_asU8(): Uint8Array;
|
|
8224
|
+
getEncryptedData_asB64(): string;
|
|
8225
|
+
setEncryptedData(value: Uint8Array | string): void;
|
|
8226
|
+
|
|
8227
|
+
serializeBinary(): Uint8Array;
|
|
8228
|
+
toObject(includeInstance?: boolean): PersonalEncryptedNote.AsObject;
|
|
8229
|
+
static toObject(includeInstance: boolean, msg: PersonalEncryptedNote): PersonalEncryptedNote.AsObject;
|
|
8230
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8231
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8232
|
+
static serializeBinaryToWriter(message: PersonalEncryptedNote, writer: jspb.BinaryWriter): void;
|
|
8233
|
+
static deserializeBinary(bytes: Uint8Array): PersonalEncryptedNote;
|
|
8234
|
+
static deserializeBinaryFromReader(message: PersonalEncryptedNote, reader: jspb.BinaryReader): PersonalEncryptedNote;
|
|
8235
|
+
}
|
|
8236
|
+
|
|
8237
|
+
export namespace PersonalEncryptedNote {
|
|
8238
|
+
export type AsObject = {
|
|
8239
|
+
rootEncryptionKeyIndex: number,
|
|
8240
|
+
derivationEncryptionKeyIndex: number,
|
|
8241
|
+
encryptedData: Uint8Array | string,
|
|
8242
|
+
}
|
|
8243
|
+
}
|
|
8244
|
+
|
|
8245
|
+
export class EmergencyActionEvent extends jspb.Message {
|
|
8246
|
+
getActionType(): GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap[keyof GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap];
|
|
8247
|
+
setActionType(value: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap[keyof GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap]): void;
|
|
8248
|
+
|
|
8249
|
+
hasPublicNote(): boolean;
|
|
8250
|
+
clearPublicNote(): void;
|
|
8251
|
+
getPublicNote(): string;
|
|
8252
|
+
setPublicNote(value: string): void;
|
|
8253
|
+
|
|
8254
|
+
serializeBinary(): Uint8Array;
|
|
8255
|
+
toObject(includeInstance?: boolean): EmergencyActionEvent.AsObject;
|
|
8256
|
+
static toObject(includeInstance: boolean, msg: EmergencyActionEvent): EmergencyActionEvent.AsObject;
|
|
8257
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8258
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8259
|
+
static serializeBinaryToWriter(message: EmergencyActionEvent, writer: jspb.BinaryWriter): void;
|
|
8260
|
+
static deserializeBinary(bytes: Uint8Array): EmergencyActionEvent;
|
|
8261
|
+
static deserializeBinaryFromReader(message: EmergencyActionEvent, reader: jspb.BinaryReader): EmergencyActionEvent;
|
|
8262
|
+
}
|
|
8263
|
+
|
|
8264
|
+
export namespace EmergencyActionEvent {
|
|
8265
|
+
export type AsObject = {
|
|
8266
|
+
actionType: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap[keyof GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.ActionTypeMap],
|
|
8267
|
+
publicNote: string,
|
|
8268
|
+
}
|
|
8269
|
+
|
|
8270
|
+
export interface ActionTypeMap {
|
|
8271
|
+
PAUSE: 0;
|
|
8272
|
+
RESUME: 1;
|
|
8273
|
+
}
|
|
8274
|
+
|
|
8275
|
+
export const ActionType: ActionTypeMap;
|
|
8276
|
+
}
|
|
8277
|
+
|
|
8278
|
+
export class TokenConfigUpdateEvent extends jspb.Message {
|
|
8279
|
+
getTokenConfigUpdateItem(): Uint8Array | string;
|
|
8280
|
+
getTokenConfigUpdateItem_asU8(): Uint8Array;
|
|
8281
|
+
getTokenConfigUpdateItem_asB64(): string;
|
|
8282
|
+
setTokenConfigUpdateItem(value: Uint8Array | string): void;
|
|
8283
|
+
|
|
8284
|
+
hasPublicNote(): boolean;
|
|
8285
|
+
clearPublicNote(): void;
|
|
8286
|
+
getPublicNote(): string;
|
|
8287
|
+
setPublicNote(value: string): void;
|
|
8288
|
+
|
|
8289
|
+
serializeBinary(): Uint8Array;
|
|
8290
|
+
toObject(includeInstance?: boolean): TokenConfigUpdateEvent.AsObject;
|
|
8291
|
+
static toObject(includeInstance: boolean, msg: TokenConfigUpdateEvent): TokenConfigUpdateEvent.AsObject;
|
|
8292
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8293
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8294
|
+
static serializeBinaryToWriter(message: TokenConfigUpdateEvent, writer: jspb.BinaryWriter): void;
|
|
8295
|
+
static deserializeBinary(bytes: Uint8Array): TokenConfigUpdateEvent;
|
|
8296
|
+
static deserializeBinaryFromReader(message: TokenConfigUpdateEvent, reader: jspb.BinaryReader): TokenConfigUpdateEvent;
|
|
8297
|
+
}
|
|
8298
|
+
|
|
8299
|
+
export namespace TokenConfigUpdateEvent {
|
|
8300
|
+
export type AsObject = {
|
|
8301
|
+
tokenConfigUpdateItem: Uint8Array | string,
|
|
8302
|
+
publicNote: string,
|
|
8303
|
+
}
|
|
8304
|
+
}
|
|
8305
|
+
|
|
8306
|
+
export class GroupActionEvent extends jspb.Message {
|
|
8307
|
+
hasTokenEvent(): boolean;
|
|
8308
|
+
clearTokenEvent(): void;
|
|
8309
|
+
getTokenEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.TokenEvent | undefined;
|
|
8310
|
+
setTokenEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenEvent): void;
|
|
8311
|
+
|
|
8312
|
+
hasDocumentEvent(): boolean;
|
|
8313
|
+
clearDocumentEvent(): void;
|
|
8314
|
+
getDocumentEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentEvent | undefined;
|
|
8315
|
+
setDocumentEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentEvent): void;
|
|
8316
|
+
|
|
8317
|
+
hasContractEvent(): boolean;
|
|
8318
|
+
clearContractEvent(): void;
|
|
8319
|
+
getContractEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.ContractEvent | undefined;
|
|
8320
|
+
setContractEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractEvent): void;
|
|
8321
|
+
|
|
8322
|
+
getEventTypeCase(): GroupActionEvent.EventTypeCase;
|
|
8323
|
+
serializeBinary(): Uint8Array;
|
|
8324
|
+
toObject(includeInstance?: boolean): GroupActionEvent.AsObject;
|
|
8325
|
+
static toObject(includeInstance: boolean, msg: GroupActionEvent): GroupActionEvent.AsObject;
|
|
8326
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8327
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8328
|
+
static serializeBinaryToWriter(message: GroupActionEvent, writer: jspb.BinaryWriter): void;
|
|
8329
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionEvent;
|
|
8330
|
+
static deserializeBinaryFromReader(message: GroupActionEvent, reader: jspb.BinaryReader): GroupActionEvent;
|
|
8331
|
+
}
|
|
8332
|
+
|
|
8333
|
+
export namespace GroupActionEvent {
|
|
8334
|
+
export type AsObject = {
|
|
8335
|
+
tokenEvent?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenEvent.AsObject,
|
|
8336
|
+
documentEvent?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentEvent.AsObject,
|
|
8337
|
+
contractEvent?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractEvent.AsObject,
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8340
|
+
export enum EventTypeCase {
|
|
8341
|
+
EVENT_TYPE_NOT_SET = 0,
|
|
8342
|
+
TOKEN_EVENT = 1,
|
|
8343
|
+
DOCUMENT_EVENT = 2,
|
|
8344
|
+
CONTRACT_EVENT = 3,
|
|
8345
|
+
}
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
export class DocumentEvent extends jspb.Message {
|
|
8349
|
+
hasCreate(): boolean;
|
|
8350
|
+
clearCreate(): void;
|
|
8351
|
+
getCreate(): GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentCreateEvent | undefined;
|
|
8352
|
+
setCreate(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentCreateEvent): void;
|
|
8353
|
+
|
|
8354
|
+
getTypeCase(): DocumentEvent.TypeCase;
|
|
8355
|
+
serializeBinary(): Uint8Array;
|
|
8356
|
+
toObject(includeInstance?: boolean): DocumentEvent.AsObject;
|
|
8357
|
+
static toObject(includeInstance: boolean, msg: DocumentEvent): DocumentEvent.AsObject;
|
|
8358
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8359
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8360
|
+
static serializeBinaryToWriter(message: DocumentEvent, writer: jspb.BinaryWriter): void;
|
|
8361
|
+
static deserializeBinary(bytes: Uint8Array): DocumentEvent;
|
|
8362
|
+
static deserializeBinaryFromReader(message: DocumentEvent, reader: jspb.BinaryReader): DocumentEvent;
|
|
8363
|
+
}
|
|
8364
|
+
|
|
8365
|
+
export namespace DocumentEvent {
|
|
8366
|
+
export type AsObject = {
|
|
8367
|
+
create?: GetGroupActionsResponse.GetGroupActionsResponseV0.DocumentCreateEvent.AsObject,
|
|
8368
|
+
}
|
|
8369
|
+
|
|
8370
|
+
export enum TypeCase {
|
|
8371
|
+
TYPE_NOT_SET = 0,
|
|
8372
|
+
CREATE = 1,
|
|
8373
|
+
}
|
|
8374
|
+
}
|
|
8375
|
+
|
|
8376
|
+
export class DocumentCreateEvent extends jspb.Message {
|
|
8377
|
+
getCreatedDocument(): Uint8Array | string;
|
|
8378
|
+
getCreatedDocument_asU8(): Uint8Array;
|
|
8379
|
+
getCreatedDocument_asB64(): string;
|
|
8380
|
+
setCreatedDocument(value: Uint8Array | string): void;
|
|
8381
|
+
|
|
8382
|
+
serializeBinary(): Uint8Array;
|
|
8383
|
+
toObject(includeInstance?: boolean): DocumentCreateEvent.AsObject;
|
|
8384
|
+
static toObject(includeInstance: boolean, msg: DocumentCreateEvent): DocumentCreateEvent.AsObject;
|
|
8385
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8386
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8387
|
+
static serializeBinaryToWriter(message: DocumentCreateEvent, writer: jspb.BinaryWriter): void;
|
|
8388
|
+
static deserializeBinary(bytes: Uint8Array): DocumentCreateEvent;
|
|
8389
|
+
static deserializeBinaryFromReader(message: DocumentCreateEvent, reader: jspb.BinaryReader): DocumentCreateEvent;
|
|
8390
|
+
}
|
|
8391
|
+
|
|
8392
|
+
export namespace DocumentCreateEvent {
|
|
8393
|
+
export type AsObject = {
|
|
8394
|
+
createdDocument: Uint8Array | string,
|
|
8395
|
+
}
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
export class ContractUpdateEvent extends jspb.Message {
|
|
8399
|
+
getUpdatedContract(): Uint8Array | string;
|
|
8400
|
+
getUpdatedContract_asU8(): Uint8Array;
|
|
8401
|
+
getUpdatedContract_asB64(): string;
|
|
8402
|
+
setUpdatedContract(value: Uint8Array | string): void;
|
|
8403
|
+
|
|
8404
|
+
serializeBinary(): Uint8Array;
|
|
8405
|
+
toObject(includeInstance?: boolean): ContractUpdateEvent.AsObject;
|
|
8406
|
+
static toObject(includeInstance: boolean, msg: ContractUpdateEvent): ContractUpdateEvent.AsObject;
|
|
8407
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8408
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8409
|
+
static serializeBinaryToWriter(message: ContractUpdateEvent, writer: jspb.BinaryWriter): void;
|
|
8410
|
+
static deserializeBinary(bytes: Uint8Array): ContractUpdateEvent;
|
|
8411
|
+
static deserializeBinaryFromReader(message: ContractUpdateEvent, reader: jspb.BinaryReader): ContractUpdateEvent;
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
export namespace ContractUpdateEvent {
|
|
8415
|
+
export type AsObject = {
|
|
8416
|
+
updatedContract: Uint8Array | string,
|
|
8417
|
+
}
|
|
8418
|
+
}
|
|
8419
|
+
|
|
8420
|
+
export class ContractEvent extends jspb.Message {
|
|
8421
|
+
hasUpdate(): boolean;
|
|
8422
|
+
clearUpdate(): void;
|
|
8423
|
+
getUpdate(): GetGroupActionsResponse.GetGroupActionsResponseV0.ContractUpdateEvent | undefined;
|
|
8424
|
+
setUpdate(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractUpdateEvent): void;
|
|
8425
|
+
|
|
8426
|
+
getTypeCase(): ContractEvent.TypeCase;
|
|
8427
|
+
serializeBinary(): Uint8Array;
|
|
8428
|
+
toObject(includeInstance?: boolean): ContractEvent.AsObject;
|
|
8429
|
+
static toObject(includeInstance: boolean, msg: ContractEvent): ContractEvent.AsObject;
|
|
8430
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8431
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8432
|
+
static serializeBinaryToWriter(message: ContractEvent, writer: jspb.BinaryWriter): void;
|
|
8433
|
+
static deserializeBinary(bytes: Uint8Array): ContractEvent;
|
|
8434
|
+
static deserializeBinaryFromReader(message: ContractEvent, reader: jspb.BinaryReader): ContractEvent;
|
|
8435
|
+
}
|
|
8436
|
+
|
|
8437
|
+
export namespace ContractEvent {
|
|
8438
|
+
export type AsObject = {
|
|
8439
|
+
update?: GetGroupActionsResponse.GetGroupActionsResponseV0.ContractUpdateEvent.AsObject,
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8442
|
+
export enum TypeCase {
|
|
8443
|
+
TYPE_NOT_SET = 0,
|
|
8444
|
+
UPDATE = 1,
|
|
8445
|
+
}
|
|
8446
|
+
}
|
|
8447
|
+
|
|
8448
|
+
export class TokenEvent extends jspb.Message {
|
|
8449
|
+
hasMint(): boolean;
|
|
8450
|
+
clearMint(): void;
|
|
8451
|
+
getMint(): GetGroupActionsResponse.GetGroupActionsResponseV0.MintEvent | undefined;
|
|
8452
|
+
setMint(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.MintEvent): void;
|
|
8453
|
+
|
|
8454
|
+
hasBurn(): boolean;
|
|
8455
|
+
clearBurn(): void;
|
|
8456
|
+
getBurn(): GetGroupActionsResponse.GetGroupActionsResponseV0.BurnEvent | undefined;
|
|
8457
|
+
setBurn(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.BurnEvent): void;
|
|
8458
|
+
|
|
8459
|
+
hasFreeze(): boolean;
|
|
8460
|
+
clearFreeze(): void;
|
|
8461
|
+
getFreeze(): GetGroupActionsResponse.GetGroupActionsResponseV0.FreezeEvent | undefined;
|
|
8462
|
+
setFreeze(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.FreezeEvent): void;
|
|
8463
|
+
|
|
8464
|
+
hasUnfreeze(): boolean;
|
|
8465
|
+
clearUnfreeze(): void;
|
|
8466
|
+
getUnfreeze(): GetGroupActionsResponse.GetGroupActionsResponseV0.UnfreezeEvent | undefined;
|
|
8467
|
+
setUnfreeze(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.UnfreezeEvent): void;
|
|
8468
|
+
|
|
8469
|
+
hasDestroyFrozenFunds(): boolean;
|
|
8470
|
+
clearDestroyFrozenFunds(): void;
|
|
8471
|
+
getDestroyFrozenFunds(): GetGroupActionsResponse.GetGroupActionsResponseV0.DestroyFrozenFundsEvent | undefined;
|
|
8472
|
+
setDestroyFrozenFunds(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.DestroyFrozenFundsEvent): void;
|
|
8473
|
+
|
|
8474
|
+
hasEmergencyAction(): boolean;
|
|
8475
|
+
clearEmergencyAction(): void;
|
|
8476
|
+
getEmergencyAction(): GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent | undefined;
|
|
8477
|
+
setEmergencyAction(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent): void;
|
|
8478
|
+
|
|
8479
|
+
hasTokenConfigUpdate(): boolean;
|
|
8480
|
+
clearTokenConfigUpdate(): void;
|
|
8481
|
+
getTokenConfigUpdate(): GetGroupActionsResponse.GetGroupActionsResponseV0.TokenConfigUpdateEvent | undefined;
|
|
8482
|
+
setTokenConfigUpdate(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenConfigUpdateEvent): void;
|
|
8483
|
+
|
|
8484
|
+
getTypeCase(): TokenEvent.TypeCase;
|
|
8485
|
+
serializeBinary(): Uint8Array;
|
|
8486
|
+
toObject(includeInstance?: boolean): TokenEvent.AsObject;
|
|
8487
|
+
static toObject(includeInstance: boolean, msg: TokenEvent): TokenEvent.AsObject;
|
|
8488
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8489
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8490
|
+
static serializeBinaryToWriter(message: TokenEvent, writer: jspb.BinaryWriter): void;
|
|
8491
|
+
static deserializeBinary(bytes: Uint8Array): TokenEvent;
|
|
8492
|
+
static deserializeBinaryFromReader(message: TokenEvent, reader: jspb.BinaryReader): TokenEvent;
|
|
8493
|
+
}
|
|
8494
|
+
|
|
8495
|
+
export namespace TokenEvent {
|
|
8496
|
+
export type AsObject = {
|
|
8497
|
+
mint?: GetGroupActionsResponse.GetGroupActionsResponseV0.MintEvent.AsObject,
|
|
8498
|
+
burn?: GetGroupActionsResponse.GetGroupActionsResponseV0.BurnEvent.AsObject,
|
|
8499
|
+
freeze?: GetGroupActionsResponse.GetGroupActionsResponseV0.FreezeEvent.AsObject,
|
|
8500
|
+
unfreeze?: GetGroupActionsResponse.GetGroupActionsResponseV0.UnfreezeEvent.AsObject,
|
|
8501
|
+
destroyFrozenFunds?: GetGroupActionsResponse.GetGroupActionsResponseV0.DestroyFrozenFundsEvent.AsObject,
|
|
8502
|
+
emergencyAction?: GetGroupActionsResponse.GetGroupActionsResponseV0.EmergencyActionEvent.AsObject,
|
|
8503
|
+
tokenConfigUpdate?: GetGroupActionsResponse.GetGroupActionsResponseV0.TokenConfigUpdateEvent.AsObject,
|
|
8504
|
+
}
|
|
8505
|
+
|
|
8506
|
+
export enum TypeCase {
|
|
8507
|
+
TYPE_NOT_SET = 0,
|
|
8508
|
+
MINT = 1,
|
|
8509
|
+
BURN = 2,
|
|
8510
|
+
FREEZE = 3,
|
|
8511
|
+
UNFREEZE = 4,
|
|
8512
|
+
DESTROY_FROZEN_FUNDS = 5,
|
|
8513
|
+
EMERGENCY_ACTION = 6,
|
|
8514
|
+
TOKEN_CONFIG_UPDATE = 7,
|
|
8515
|
+
}
|
|
8516
|
+
}
|
|
8517
|
+
|
|
8518
|
+
export class GroupActionEntry extends jspb.Message {
|
|
8519
|
+
getActionId(): Uint8Array | string;
|
|
8520
|
+
getActionId_asU8(): Uint8Array;
|
|
8521
|
+
getActionId_asB64(): string;
|
|
8522
|
+
setActionId(value: Uint8Array | string): void;
|
|
8523
|
+
|
|
8524
|
+
hasEvent(): boolean;
|
|
8525
|
+
clearEvent(): void;
|
|
8526
|
+
getEvent(): GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEvent | undefined;
|
|
8527
|
+
setEvent(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEvent): void;
|
|
8528
|
+
|
|
8529
|
+
serializeBinary(): Uint8Array;
|
|
8530
|
+
toObject(includeInstance?: boolean): GroupActionEntry.AsObject;
|
|
8531
|
+
static toObject(includeInstance: boolean, msg: GroupActionEntry): GroupActionEntry.AsObject;
|
|
8532
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8533
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8534
|
+
static serializeBinaryToWriter(message: GroupActionEntry, writer: jspb.BinaryWriter): void;
|
|
8535
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionEntry;
|
|
8536
|
+
static deserializeBinaryFromReader(message: GroupActionEntry, reader: jspb.BinaryReader): GroupActionEntry;
|
|
8537
|
+
}
|
|
8538
|
+
|
|
8539
|
+
export namespace GroupActionEntry {
|
|
8540
|
+
export type AsObject = {
|
|
8541
|
+
actionId: Uint8Array | string,
|
|
8542
|
+
event?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEvent.AsObject,
|
|
8543
|
+
}
|
|
8544
|
+
}
|
|
8545
|
+
|
|
8546
|
+
export class GroupActions extends jspb.Message {
|
|
8547
|
+
clearGroupActionsList(): void;
|
|
8548
|
+
getGroupActionsList(): Array<GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry>;
|
|
8549
|
+
setGroupActionsList(value: Array<GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry>): void;
|
|
8550
|
+
addGroupActions(value?: GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry, index?: number): GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry;
|
|
8551
|
+
|
|
8552
|
+
serializeBinary(): Uint8Array;
|
|
8553
|
+
toObject(includeInstance?: boolean): GroupActions.AsObject;
|
|
8554
|
+
static toObject(includeInstance: boolean, msg: GroupActions): GroupActions.AsObject;
|
|
8555
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8556
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8557
|
+
static serializeBinaryToWriter(message: GroupActions, writer: jspb.BinaryWriter): void;
|
|
8558
|
+
static deserializeBinary(bytes: Uint8Array): GroupActions;
|
|
8559
|
+
static deserializeBinaryFromReader(message: GroupActions, reader: jspb.BinaryReader): GroupActions;
|
|
8560
|
+
}
|
|
8561
|
+
|
|
8562
|
+
export namespace GroupActions {
|
|
8563
|
+
export type AsObject = {
|
|
8564
|
+
groupActionsList: Array<GetGroupActionsResponse.GetGroupActionsResponseV0.GroupActionEntry.AsObject>,
|
|
8565
|
+
}
|
|
8566
|
+
}
|
|
8567
|
+
|
|
8568
|
+
export enum ResultCase {
|
|
8569
|
+
RESULT_NOT_SET = 0,
|
|
8570
|
+
GROUP_ACTIONS = 1,
|
|
8571
|
+
PROOF = 2,
|
|
8572
|
+
}
|
|
8573
|
+
}
|
|
8574
|
+
|
|
8575
|
+
export enum VersionCase {
|
|
8576
|
+
VERSION_NOT_SET = 0,
|
|
8577
|
+
V0 = 1,
|
|
8578
|
+
}
|
|
8579
|
+
}
|
|
8580
|
+
|
|
8581
|
+
export class GetGroupActionSignersRequest extends jspb.Message {
|
|
8582
|
+
hasV0(): boolean;
|
|
8583
|
+
clearV0(): void;
|
|
8584
|
+
getV0(): GetGroupActionSignersRequest.GetGroupActionSignersRequestV0 | undefined;
|
|
8585
|
+
setV0(value?: GetGroupActionSignersRequest.GetGroupActionSignersRequestV0): void;
|
|
8586
|
+
|
|
8587
|
+
getVersionCase(): GetGroupActionSignersRequest.VersionCase;
|
|
8588
|
+
serializeBinary(): Uint8Array;
|
|
8589
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersRequest.AsObject;
|
|
8590
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersRequest): GetGroupActionSignersRequest.AsObject;
|
|
8591
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8592
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8593
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersRequest, writer: jspb.BinaryWriter): void;
|
|
8594
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersRequest;
|
|
8595
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersRequest, reader: jspb.BinaryReader): GetGroupActionSignersRequest;
|
|
8596
|
+
}
|
|
8597
|
+
|
|
8598
|
+
export namespace GetGroupActionSignersRequest {
|
|
8599
|
+
export type AsObject = {
|
|
8600
|
+
v0?: GetGroupActionSignersRequest.GetGroupActionSignersRequestV0.AsObject,
|
|
8601
|
+
}
|
|
8602
|
+
|
|
8603
|
+
export class GetGroupActionSignersRequestV0 extends jspb.Message {
|
|
8604
|
+
getContractId(): Uint8Array | string;
|
|
8605
|
+
getContractId_asU8(): Uint8Array;
|
|
8606
|
+
getContractId_asB64(): string;
|
|
8607
|
+
setContractId(value: Uint8Array | string): void;
|
|
8608
|
+
|
|
8609
|
+
getGroupContractPosition(): number;
|
|
8610
|
+
setGroupContractPosition(value: number): void;
|
|
8611
|
+
|
|
8612
|
+
getStatus(): GetGroupActionSignersRequest.ActionStatusMap[keyof GetGroupActionSignersRequest.ActionStatusMap];
|
|
8613
|
+
setStatus(value: GetGroupActionSignersRequest.ActionStatusMap[keyof GetGroupActionSignersRequest.ActionStatusMap]): void;
|
|
8614
|
+
|
|
8615
|
+
getActionId(): Uint8Array | string;
|
|
8616
|
+
getActionId_asU8(): Uint8Array;
|
|
8617
|
+
getActionId_asB64(): string;
|
|
8618
|
+
setActionId(value: Uint8Array | string): void;
|
|
8619
|
+
|
|
8620
|
+
getProve(): boolean;
|
|
8621
|
+
setProve(value: boolean): void;
|
|
8622
|
+
|
|
8623
|
+
serializeBinary(): Uint8Array;
|
|
8624
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersRequestV0.AsObject;
|
|
8625
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersRequestV0): GetGroupActionSignersRequestV0.AsObject;
|
|
8626
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8627
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8628
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersRequestV0, writer: jspb.BinaryWriter): void;
|
|
8629
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersRequestV0;
|
|
8630
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersRequestV0, reader: jspb.BinaryReader): GetGroupActionSignersRequestV0;
|
|
8631
|
+
}
|
|
8632
|
+
|
|
8633
|
+
export namespace GetGroupActionSignersRequestV0 {
|
|
8634
|
+
export type AsObject = {
|
|
8635
|
+
contractId: Uint8Array | string,
|
|
8636
|
+
groupContractPosition: number,
|
|
8637
|
+
status: GetGroupActionSignersRequest.ActionStatusMap[keyof GetGroupActionSignersRequest.ActionStatusMap],
|
|
8638
|
+
actionId: Uint8Array | string,
|
|
8639
|
+
prove: boolean,
|
|
8640
|
+
}
|
|
8641
|
+
}
|
|
8642
|
+
|
|
8643
|
+
export interface ActionStatusMap {
|
|
8644
|
+
ACTIVE: 0;
|
|
8645
|
+
CLOSED: 1;
|
|
8646
|
+
}
|
|
8647
|
+
|
|
8648
|
+
export const ActionStatus: ActionStatusMap;
|
|
8649
|
+
|
|
8650
|
+
export enum VersionCase {
|
|
8651
|
+
VERSION_NOT_SET = 0,
|
|
8652
|
+
V0 = 1,
|
|
8653
|
+
}
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8656
|
+
export class GetGroupActionSignersResponse extends jspb.Message {
|
|
8657
|
+
hasV0(): boolean;
|
|
8658
|
+
clearV0(): void;
|
|
8659
|
+
getV0(): GetGroupActionSignersResponse.GetGroupActionSignersResponseV0 | undefined;
|
|
8660
|
+
setV0(value?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0): void;
|
|
8661
|
+
|
|
8662
|
+
getVersionCase(): GetGroupActionSignersResponse.VersionCase;
|
|
8663
|
+
serializeBinary(): Uint8Array;
|
|
8664
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersResponse.AsObject;
|
|
8665
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersResponse): GetGroupActionSignersResponse.AsObject;
|
|
8666
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8667
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8668
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersResponse, writer: jspb.BinaryWriter): void;
|
|
8669
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersResponse;
|
|
8670
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersResponse, reader: jspb.BinaryReader): GetGroupActionSignersResponse;
|
|
8671
|
+
}
|
|
8672
|
+
|
|
8673
|
+
export namespace GetGroupActionSignersResponse {
|
|
8674
|
+
export type AsObject = {
|
|
8675
|
+
v0?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.AsObject,
|
|
8676
|
+
}
|
|
8677
|
+
|
|
8678
|
+
export class GetGroupActionSignersResponseV0 extends jspb.Message {
|
|
8679
|
+
hasGroupActionSigners(): boolean;
|
|
8680
|
+
clearGroupActionSigners(): void;
|
|
8681
|
+
getGroupActionSigners(): GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigners | undefined;
|
|
8682
|
+
setGroupActionSigners(value?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigners): void;
|
|
8683
|
+
|
|
8684
|
+
hasProof(): boolean;
|
|
8685
|
+
clearProof(): void;
|
|
8686
|
+
getProof(): Proof | undefined;
|
|
8687
|
+
setProof(value?: Proof): void;
|
|
8688
|
+
|
|
8689
|
+
hasMetadata(): boolean;
|
|
8690
|
+
clearMetadata(): void;
|
|
8691
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
8692
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
8693
|
+
|
|
8694
|
+
getResultCase(): GetGroupActionSignersResponseV0.ResultCase;
|
|
8695
|
+
serializeBinary(): Uint8Array;
|
|
8696
|
+
toObject(includeInstance?: boolean): GetGroupActionSignersResponseV0.AsObject;
|
|
8697
|
+
static toObject(includeInstance: boolean, msg: GetGroupActionSignersResponseV0): GetGroupActionSignersResponseV0.AsObject;
|
|
8698
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8699
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8700
|
+
static serializeBinaryToWriter(message: GetGroupActionSignersResponseV0, writer: jspb.BinaryWriter): void;
|
|
8701
|
+
static deserializeBinary(bytes: Uint8Array): GetGroupActionSignersResponseV0;
|
|
8702
|
+
static deserializeBinaryFromReader(message: GetGroupActionSignersResponseV0, reader: jspb.BinaryReader): GetGroupActionSignersResponseV0;
|
|
8703
|
+
}
|
|
8704
|
+
|
|
8705
|
+
export namespace GetGroupActionSignersResponseV0 {
|
|
8706
|
+
export type AsObject = {
|
|
8707
|
+
groupActionSigners?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigners.AsObject,
|
|
8708
|
+
proof?: Proof.AsObject,
|
|
8709
|
+
metadata?: ResponseMetadata.AsObject,
|
|
8710
|
+
}
|
|
8711
|
+
|
|
8712
|
+
export class GroupActionSigner extends jspb.Message {
|
|
8713
|
+
getSignerId(): Uint8Array | string;
|
|
8714
|
+
getSignerId_asU8(): Uint8Array;
|
|
8715
|
+
getSignerId_asB64(): string;
|
|
8716
|
+
setSignerId(value: Uint8Array | string): void;
|
|
8717
|
+
|
|
8718
|
+
getPower(): number;
|
|
8719
|
+
setPower(value: number): void;
|
|
8720
|
+
|
|
8721
|
+
serializeBinary(): Uint8Array;
|
|
8722
|
+
toObject(includeInstance?: boolean): GroupActionSigner.AsObject;
|
|
8723
|
+
static toObject(includeInstance: boolean, msg: GroupActionSigner): GroupActionSigner.AsObject;
|
|
8724
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8725
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8726
|
+
static serializeBinaryToWriter(message: GroupActionSigner, writer: jspb.BinaryWriter): void;
|
|
8727
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionSigner;
|
|
8728
|
+
static deserializeBinaryFromReader(message: GroupActionSigner, reader: jspb.BinaryReader): GroupActionSigner;
|
|
8729
|
+
}
|
|
8730
|
+
|
|
8731
|
+
export namespace GroupActionSigner {
|
|
8732
|
+
export type AsObject = {
|
|
8733
|
+
signerId: Uint8Array | string,
|
|
8734
|
+
power: number,
|
|
8735
|
+
}
|
|
8736
|
+
}
|
|
8737
|
+
|
|
8738
|
+
export class GroupActionSigners extends jspb.Message {
|
|
8739
|
+
clearSignersList(): void;
|
|
8740
|
+
getSignersList(): Array<GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner>;
|
|
8741
|
+
setSignersList(value: Array<GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner>): void;
|
|
8742
|
+
addSigners(value?: GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner, index?: number): GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner;
|
|
8743
|
+
|
|
8744
|
+
serializeBinary(): Uint8Array;
|
|
8745
|
+
toObject(includeInstance?: boolean): GroupActionSigners.AsObject;
|
|
8746
|
+
static toObject(includeInstance: boolean, msg: GroupActionSigners): GroupActionSigners.AsObject;
|
|
8747
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
8748
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
8749
|
+
static serializeBinaryToWriter(message: GroupActionSigners, writer: jspb.BinaryWriter): void;
|
|
8750
|
+
static deserializeBinary(bytes: Uint8Array): GroupActionSigners;
|
|
8751
|
+
static deserializeBinaryFromReader(message: GroupActionSigners, reader: jspb.BinaryReader): GroupActionSigners;
|
|
8752
|
+
}
|
|
8753
|
+
|
|
8754
|
+
export namespace GroupActionSigners {
|
|
8755
|
+
export type AsObject = {
|
|
8756
|
+
signersList: Array<GetGroupActionSignersResponse.GetGroupActionSignersResponseV0.GroupActionSigner.AsObject>,
|
|
8757
|
+
}
|
|
8758
|
+
}
|
|
8759
|
+
|
|
8760
|
+
export enum ResultCase {
|
|
8761
|
+
RESULT_NOT_SET = 0,
|
|
8762
|
+
GROUP_ACTION_SIGNERS = 1,
|
|
8763
|
+
PROOF = 2,
|
|
8764
|
+
}
|
|
8765
|
+
}
|
|
8766
|
+
|
|
8767
|
+
export enum VersionCase {
|
|
8768
|
+
VERSION_NOT_SET = 0,
|
|
8769
|
+
V0 = 1,
|
|
8770
|
+
}
|
|
8771
|
+
}
|
|
8772
|
+
|
|
6007
8773
|
export interface KeyPurposeMap {
|
|
6008
8774
|
AUTHENTICATION: 0;
|
|
6009
8775
|
ENCRYPTION: 1;
|