@dashevo/dapi-grpc 2.0.0-rc.9 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.toml +1 -1
- package/build.rs +6 -2
- package/clients/drive/v0/nodejs/drive_pbjs.js +3936 -736
- package/clients/platform/v0/nodejs/platform_pbjs.js +3936 -736
- package/clients/platform/v0/nodejs/platform_protoc.js +3447 -379
- package/clients/platform/v0/web/platform_pb.d.ts +431 -25
- package/clients/platform/v0/web/platform_pb.js +3447 -379
- package/clients/platform/v0/web/platform_pb_service.d.ts +38 -0
- package/clients/platform/v0/web/platform_pb_service.js +80 -0
- package/package.json +2 -2
- package/protos/platform/v0/platform.proto +130 -17
|
@@ -3562,6 +3562,257 @@ export namespace GetEpochsInfoResponse {
|
|
|
3562
3562
|
}
|
|
3563
3563
|
}
|
|
3564
3564
|
|
|
3565
|
+
export class GetFinalizedEpochInfosRequest extends jspb.Message {
|
|
3566
|
+
hasV0(): boolean;
|
|
3567
|
+
clearV0(): void;
|
|
3568
|
+
getV0(): GetFinalizedEpochInfosRequest.GetFinalizedEpochInfosRequestV0 | undefined;
|
|
3569
|
+
setV0(value?: GetFinalizedEpochInfosRequest.GetFinalizedEpochInfosRequestV0): void;
|
|
3570
|
+
|
|
3571
|
+
getVersionCase(): GetFinalizedEpochInfosRequest.VersionCase;
|
|
3572
|
+
serializeBinary(): Uint8Array;
|
|
3573
|
+
toObject(includeInstance?: boolean): GetFinalizedEpochInfosRequest.AsObject;
|
|
3574
|
+
static toObject(includeInstance: boolean, msg: GetFinalizedEpochInfosRequest): GetFinalizedEpochInfosRequest.AsObject;
|
|
3575
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3576
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3577
|
+
static serializeBinaryToWriter(message: GetFinalizedEpochInfosRequest, writer: jspb.BinaryWriter): void;
|
|
3578
|
+
static deserializeBinary(bytes: Uint8Array): GetFinalizedEpochInfosRequest;
|
|
3579
|
+
static deserializeBinaryFromReader(message: GetFinalizedEpochInfosRequest, reader: jspb.BinaryReader): GetFinalizedEpochInfosRequest;
|
|
3580
|
+
}
|
|
3581
|
+
|
|
3582
|
+
export namespace GetFinalizedEpochInfosRequest {
|
|
3583
|
+
export type AsObject = {
|
|
3584
|
+
v0?: GetFinalizedEpochInfosRequest.GetFinalizedEpochInfosRequestV0.AsObject,
|
|
3585
|
+
}
|
|
3586
|
+
|
|
3587
|
+
export class GetFinalizedEpochInfosRequestV0 extends jspb.Message {
|
|
3588
|
+
getStartEpochIndex(): number;
|
|
3589
|
+
setStartEpochIndex(value: number): void;
|
|
3590
|
+
|
|
3591
|
+
getStartEpochIndexIncluded(): boolean;
|
|
3592
|
+
setStartEpochIndexIncluded(value: boolean): void;
|
|
3593
|
+
|
|
3594
|
+
getEndEpochIndex(): number;
|
|
3595
|
+
setEndEpochIndex(value: number): void;
|
|
3596
|
+
|
|
3597
|
+
getEndEpochIndexIncluded(): boolean;
|
|
3598
|
+
setEndEpochIndexIncluded(value: boolean): void;
|
|
3599
|
+
|
|
3600
|
+
getProve(): boolean;
|
|
3601
|
+
setProve(value: boolean): void;
|
|
3602
|
+
|
|
3603
|
+
serializeBinary(): Uint8Array;
|
|
3604
|
+
toObject(includeInstance?: boolean): GetFinalizedEpochInfosRequestV0.AsObject;
|
|
3605
|
+
static toObject(includeInstance: boolean, msg: GetFinalizedEpochInfosRequestV0): GetFinalizedEpochInfosRequestV0.AsObject;
|
|
3606
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3607
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3608
|
+
static serializeBinaryToWriter(message: GetFinalizedEpochInfosRequestV0, writer: jspb.BinaryWriter): void;
|
|
3609
|
+
static deserializeBinary(bytes: Uint8Array): GetFinalizedEpochInfosRequestV0;
|
|
3610
|
+
static deserializeBinaryFromReader(message: GetFinalizedEpochInfosRequestV0, reader: jspb.BinaryReader): GetFinalizedEpochInfosRequestV0;
|
|
3611
|
+
}
|
|
3612
|
+
|
|
3613
|
+
export namespace GetFinalizedEpochInfosRequestV0 {
|
|
3614
|
+
export type AsObject = {
|
|
3615
|
+
startEpochIndex: number,
|
|
3616
|
+
startEpochIndexIncluded: boolean,
|
|
3617
|
+
endEpochIndex: number,
|
|
3618
|
+
endEpochIndexIncluded: boolean,
|
|
3619
|
+
prove: boolean,
|
|
3620
|
+
}
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
export enum VersionCase {
|
|
3624
|
+
VERSION_NOT_SET = 0,
|
|
3625
|
+
V0 = 1,
|
|
3626
|
+
}
|
|
3627
|
+
}
|
|
3628
|
+
|
|
3629
|
+
export class GetFinalizedEpochInfosResponse extends jspb.Message {
|
|
3630
|
+
hasV0(): boolean;
|
|
3631
|
+
clearV0(): void;
|
|
3632
|
+
getV0(): GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0 | undefined;
|
|
3633
|
+
setV0(value?: GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0): void;
|
|
3634
|
+
|
|
3635
|
+
getVersionCase(): GetFinalizedEpochInfosResponse.VersionCase;
|
|
3636
|
+
serializeBinary(): Uint8Array;
|
|
3637
|
+
toObject(includeInstance?: boolean): GetFinalizedEpochInfosResponse.AsObject;
|
|
3638
|
+
static toObject(includeInstance: boolean, msg: GetFinalizedEpochInfosResponse): GetFinalizedEpochInfosResponse.AsObject;
|
|
3639
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3640
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3641
|
+
static serializeBinaryToWriter(message: GetFinalizedEpochInfosResponse, writer: jspb.BinaryWriter): void;
|
|
3642
|
+
static deserializeBinary(bytes: Uint8Array): GetFinalizedEpochInfosResponse;
|
|
3643
|
+
static deserializeBinaryFromReader(message: GetFinalizedEpochInfosResponse, reader: jspb.BinaryReader): GetFinalizedEpochInfosResponse;
|
|
3644
|
+
}
|
|
3645
|
+
|
|
3646
|
+
export namespace GetFinalizedEpochInfosResponse {
|
|
3647
|
+
export type AsObject = {
|
|
3648
|
+
v0?: GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.AsObject,
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
export class GetFinalizedEpochInfosResponseV0 extends jspb.Message {
|
|
3652
|
+
hasEpochs(): boolean;
|
|
3653
|
+
clearEpochs(): void;
|
|
3654
|
+
getEpochs(): GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfos | undefined;
|
|
3655
|
+
setEpochs(value?: GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfos): void;
|
|
3656
|
+
|
|
3657
|
+
hasProof(): boolean;
|
|
3658
|
+
clearProof(): void;
|
|
3659
|
+
getProof(): Proof | undefined;
|
|
3660
|
+
setProof(value?: Proof): void;
|
|
3661
|
+
|
|
3662
|
+
hasMetadata(): boolean;
|
|
3663
|
+
clearMetadata(): void;
|
|
3664
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
3665
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
3666
|
+
|
|
3667
|
+
getResultCase(): GetFinalizedEpochInfosResponseV0.ResultCase;
|
|
3668
|
+
serializeBinary(): Uint8Array;
|
|
3669
|
+
toObject(includeInstance?: boolean): GetFinalizedEpochInfosResponseV0.AsObject;
|
|
3670
|
+
static toObject(includeInstance: boolean, msg: GetFinalizedEpochInfosResponseV0): GetFinalizedEpochInfosResponseV0.AsObject;
|
|
3671
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3672
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3673
|
+
static serializeBinaryToWriter(message: GetFinalizedEpochInfosResponseV0, writer: jspb.BinaryWriter): void;
|
|
3674
|
+
static deserializeBinary(bytes: Uint8Array): GetFinalizedEpochInfosResponseV0;
|
|
3675
|
+
static deserializeBinaryFromReader(message: GetFinalizedEpochInfosResponseV0, reader: jspb.BinaryReader): GetFinalizedEpochInfosResponseV0;
|
|
3676
|
+
}
|
|
3677
|
+
|
|
3678
|
+
export namespace GetFinalizedEpochInfosResponseV0 {
|
|
3679
|
+
export type AsObject = {
|
|
3680
|
+
epochs?: GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfos.AsObject,
|
|
3681
|
+
proof?: Proof.AsObject,
|
|
3682
|
+
metadata?: ResponseMetadata.AsObject,
|
|
3683
|
+
}
|
|
3684
|
+
|
|
3685
|
+
export class FinalizedEpochInfos extends jspb.Message {
|
|
3686
|
+
clearFinalizedEpochInfosList(): void;
|
|
3687
|
+
getFinalizedEpochInfosList(): Array<GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo>;
|
|
3688
|
+
setFinalizedEpochInfosList(value: Array<GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo>): void;
|
|
3689
|
+
addFinalizedEpochInfos(value?: GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo, index?: number): GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo;
|
|
3690
|
+
|
|
3691
|
+
serializeBinary(): Uint8Array;
|
|
3692
|
+
toObject(includeInstance?: boolean): FinalizedEpochInfos.AsObject;
|
|
3693
|
+
static toObject(includeInstance: boolean, msg: FinalizedEpochInfos): FinalizedEpochInfos.AsObject;
|
|
3694
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3695
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3696
|
+
static serializeBinaryToWriter(message: FinalizedEpochInfos, writer: jspb.BinaryWriter): void;
|
|
3697
|
+
static deserializeBinary(bytes: Uint8Array): FinalizedEpochInfos;
|
|
3698
|
+
static deserializeBinaryFromReader(message: FinalizedEpochInfos, reader: jspb.BinaryReader): FinalizedEpochInfos;
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
export namespace FinalizedEpochInfos {
|
|
3702
|
+
export type AsObject = {
|
|
3703
|
+
finalizedEpochInfosList: Array<GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.FinalizedEpochInfo.AsObject>,
|
|
3704
|
+
}
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
export class FinalizedEpochInfo extends jspb.Message {
|
|
3708
|
+
getNumber(): number;
|
|
3709
|
+
setNumber(value: number): void;
|
|
3710
|
+
|
|
3711
|
+
getFirstBlockHeight(): string;
|
|
3712
|
+
setFirstBlockHeight(value: string): void;
|
|
3713
|
+
|
|
3714
|
+
getFirstCoreBlockHeight(): number;
|
|
3715
|
+
setFirstCoreBlockHeight(value: number): void;
|
|
3716
|
+
|
|
3717
|
+
getFirstBlockTime(): string;
|
|
3718
|
+
setFirstBlockTime(value: string): void;
|
|
3719
|
+
|
|
3720
|
+
getFeeMultiplier(): number;
|
|
3721
|
+
setFeeMultiplier(value: number): void;
|
|
3722
|
+
|
|
3723
|
+
getProtocolVersion(): number;
|
|
3724
|
+
setProtocolVersion(value: number): void;
|
|
3725
|
+
|
|
3726
|
+
getTotalBlocksInEpoch(): string;
|
|
3727
|
+
setTotalBlocksInEpoch(value: string): void;
|
|
3728
|
+
|
|
3729
|
+
getNextEpochStartCoreBlockHeight(): number;
|
|
3730
|
+
setNextEpochStartCoreBlockHeight(value: number): void;
|
|
3731
|
+
|
|
3732
|
+
getTotalProcessingFees(): string;
|
|
3733
|
+
setTotalProcessingFees(value: string): void;
|
|
3734
|
+
|
|
3735
|
+
getTotalDistributedStorageFees(): string;
|
|
3736
|
+
setTotalDistributedStorageFees(value: string): void;
|
|
3737
|
+
|
|
3738
|
+
getTotalCreatedStorageFees(): string;
|
|
3739
|
+
setTotalCreatedStorageFees(value: string): void;
|
|
3740
|
+
|
|
3741
|
+
getCoreBlockRewards(): string;
|
|
3742
|
+
setCoreBlockRewards(value: string): void;
|
|
3743
|
+
|
|
3744
|
+
clearBlockProposersList(): void;
|
|
3745
|
+
getBlockProposersList(): Array<GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer>;
|
|
3746
|
+
setBlockProposersList(value: Array<GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer>): void;
|
|
3747
|
+
addBlockProposers(value?: GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer, index?: number): GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer;
|
|
3748
|
+
|
|
3749
|
+
serializeBinary(): Uint8Array;
|
|
3750
|
+
toObject(includeInstance?: boolean): FinalizedEpochInfo.AsObject;
|
|
3751
|
+
static toObject(includeInstance: boolean, msg: FinalizedEpochInfo): FinalizedEpochInfo.AsObject;
|
|
3752
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3753
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3754
|
+
static serializeBinaryToWriter(message: FinalizedEpochInfo, writer: jspb.BinaryWriter): void;
|
|
3755
|
+
static deserializeBinary(bytes: Uint8Array): FinalizedEpochInfo;
|
|
3756
|
+
static deserializeBinaryFromReader(message: FinalizedEpochInfo, reader: jspb.BinaryReader): FinalizedEpochInfo;
|
|
3757
|
+
}
|
|
3758
|
+
|
|
3759
|
+
export namespace FinalizedEpochInfo {
|
|
3760
|
+
export type AsObject = {
|
|
3761
|
+
number: number,
|
|
3762
|
+
firstBlockHeight: string,
|
|
3763
|
+
firstCoreBlockHeight: number,
|
|
3764
|
+
firstBlockTime: string,
|
|
3765
|
+
feeMultiplier: number,
|
|
3766
|
+
protocolVersion: number,
|
|
3767
|
+
totalBlocksInEpoch: string,
|
|
3768
|
+
nextEpochStartCoreBlockHeight: number,
|
|
3769
|
+
totalProcessingFees: string,
|
|
3770
|
+
totalDistributedStorageFees: string,
|
|
3771
|
+
totalCreatedStorageFees: string,
|
|
3772
|
+
coreBlockRewards: string,
|
|
3773
|
+
blockProposersList: Array<GetFinalizedEpochInfosResponse.GetFinalizedEpochInfosResponseV0.BlockProposer.AsObject>,
|
|
3774
|
+
}
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
export class BlockProposer extends jspb.Message {
|
|
3778
|
+
getProposerId(): Uint8Array | string;
|
|
3779
|
+
getProposerId_asU8(): Uint8Array;
|
|
3780
|
+
getProposerId_asB64(): string;
|
|
3781
|
+
setProposerId(value: Uint8Array | string): void;
|
|
3782
|
+
|
|
3783
|
+
getBlockCount(): number;
|
|
3784
|
+
setBlockCount(value: number): void;
|
|
3785
|
+
|
|
3786
|
+
serializeBinary(): Uint8Array;
|
|
3787
|
+
toObject(includeInstance?: boolean): BlockProposer.AsObject;
|
|
3788
|
+
static toObject(includeInstance: boolean, msg: BlockProposer): BlockProposer.AsObject;
|
|
3789
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
3790
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
3791
|
+
static serializeBinaryToWriter(message: BlockProposer, writer: jspb.BinaryWriter): void;
|
|
3792
|
+
static deserializeBinary(bytes: Uint8Array): BlockProposer;
|
|
3793
|
+
static deserializeBinaryFromReader(message: BlockProposer, reader: jspb.BinaryReader): BlockProposer;
|
|
3794
|
+
}
|
|
3795
|
+
|
|
3796
|
+
export namespace BlockProposer {
|
|
3797
|
+
export type AsObject = {
|
|
3798
|
+
proposerId: Uint8Array | string,
|
|
3799
|
+
blockCount: number,
|
|
3800
|
+
}
|
|
3801
|
+
}
|
|
3802
|
+
|
|
3803
|
+
export enum ResultCase {
|
|
3804
|
+
RESULT_NOT_SET = 0,
|
|
3805
|
+
EPOCHS = 1,
|
|
3806
|
+
PROOF = 2,
|
|
3807
|
+
}
|
|
3808
|
+
}
|
|
3809
|
+
|
|
3810
|
+
export enum VersionCase {
|
|
3811
|
+
VERSION_NOT_SET = 0,
|
|
3812
|
+
V0 = 1,
|
|
3813
|
+
}
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3565
3816
|
export class GetContestedResourcesRequest extends jspb.Message {
|
|
3566
3817
|
hasV0(): boolean;
|
|
3567
3818
|
clearV0(): void;
|
|
@@ -6821,6 +7072,62 @@ export namespace GetTokenStatusesResponse {
|
|
|
6821
7072
|
}
|
|
6822
7073
|
}
|
|
6823
7074
|
|
|
7075
|
+
export class GetTokenDirectPurchasePricesRequest extends jspb.Message {
|
|
7076
|
+
hasV0(): boolean;
|
|
7077
|
+
clearV0(): void;
|
|
7078
|
+
getV0(): GetTokenDirectPurchasePricesRequest.GetTokenDirectPurchasePricesRequestV0 | undefined;
|
|
7079
|
+
setV0(value?: GetTokenDirectPurchasePricesRequest.GetTokenDirectPurchasePricesRequestV0): void;
|
|
7080
|
+
|
|
7081
|
+
getVersionCase(): GetTokenDirectPurchasePricesRequest.VersionCase;
|
|
7082
|
+
serializeBinary(): Uint8Array;
|
|
7083
|
+
toObject(includeInstance?: boolean): GetTokenDirectPurchasePricesRequest.AsObject;
|
|
7084
|
+
static toObject(includeInstance: boolean, msg: GetTokenDirectPurchasePricesRequest): GetTokenDirectPurchasePricesRequest.AsObject;
|
|
7085
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7086
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7087
|
+
static serializeBinaryToWriter(message: GetTokenDirectPurchasePricesRequest, writer: jspb.BinaryWriter): void;
|
|
7088
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenDirectPurchasePricesRequest;
|
|
7089
|
+
static deserializeBinaryFromReader(message: GetTokenDirectPurchasePricesRequest, reader: jspb.BinaryReader): GetTokenDirectPurchasePricesRequest;
|
|
7090
|
+
}
|
|
7091
|
+
|
|
7092
|
+
export namespace GetTokenDirectPurchasePricesRequest {
|
|
7093
|
+
export type AsObject = {
|
|
7094
|
+
v0?: GetTokenDirectPurchasePricesRequest.GetTokenDirectPurchasePricesRequestV0.AsObject,
|
|
7095
|
+
}
|
|
7096
|
+
|
|
7097
|
+
export class GetTokenDirectPurchasePricesRequestV0 extends jspb.Message {
|
|
7098
|
+
clearTokenIdsList(): void;
|
|
7099
|
+
getTokenIdsList(): Array<Uint8Array | string>;
|
|
7100
|
+
getTokenIdsList_asU8(): Array<Uint8Array>;
|
|
7101
|
+
getTokenIdsList_asB64(): Array<string>;
|
|
7102
|
+
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
7103
|
+
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
7104
|
+
|
|
7105
|
+
getProve(): boolean;
|
|
7106
|
+
setProve(value: boolean): void;
|
|
7107
|
+
|
|
7108
|
+
serializeBinary(): Uint8Array;
|
|
7109
|
+
toObject(includeInstance?: boolean): GetTokenDirectPurchasePricesRequestV0.AsObject;
|
|
7110
|
+
static toObject(includeInstance: boolean, msg: GetTokenDirectPurchasePricesRequestV0): GetTokenDirectPurchasePricesRequestV0.AsObject;
|
|
7111
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7112
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7113
|
+
static serializeBinaryToWriter(message: GetTokenDirectPurchasePricesRequestV0, writer: jspb.BinaryWriter): void;
|
|
7114
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenDirectPurchasePricesRequestV0;
|
|
7115
|
+
static deserializeBinaryFromReader(message: GetTokenDirectPurchasePricesRequestV0, reader: jspb.BinaryReader): GetTokenDirectPurchasePricesRequestV0;
|
|
7116
|
+
}
|
|
7117
|
+
|
|
7118
|
+
export namespace GetTokenDirectPurchasePricesRequestV0 {
|
|
7119
|
+
export type AsObject = {
|
|
7120
|
+
tokenIdsList: Array<Uint8Array | string>,
|
|
7121
|
+
prove: boolean,
|
|
7122
|
+
}
|
|
7123
|
+
}
|
|
7124
|
+
|
|
7125
|
+
export enum VersionCase {
|
|
7126
|
+
VERSION_NOT_SET = 0,
|
|
7127
|
+
V0 = 1,
|
|
7128
|
+
}
|
|
7129
|
+
}
|
|
7130
|
+
|
|
6824
7131
|
export class GetTokenDirectPurchasePricesResponse extends jspb.Message {
|
|
6825
7132
|
hasV0(): boolean;
|
|
6826
7133
|
clearV0(): void;
|
|
@@ -6999,52 +7306,50 @@ export namespace GetTokenDirectPurchasePricesResponse {
|
|
|
6999
7306
|
}
|
|
7000
7307
|
}
|
|
7001
7308
|
|
|
7002
|
-
export class
|
|
7309
|
+
export class GetTokenContractInfoRequest extends jspb.Message {
|
|
7003
7310
|
hasV0(): boolean;
|
|
7004
7311
|
clearV0(): void;
|
|
7005
|
-
getV0():
|
|
7006
|
-
setV0(value?:
|
|
7312
|
+
getV0(): GetTokenContractInfoRequest.GetTokenContractInfoRequestV0 | undefined;
|
|
7313
|
+
setV0(value?: GetTokenContractInfoRequest.GetTokenContractInfoRequestV0): void;
|
|
7007
7314
|
|
|
7008
|
-
getVersionCase():
|
|
7315
|
+
getVersionCase(): GetTokenContractInfoRequest.VersionCase;
|
|
7009
7316
|
serializeBinary(): Uint8Array;
|
|
7010
|
-
toObject(includeInstance?: boolean):
|
|
7011
|
-
static toObject(includeInstance: boolean, msg:
|
|
7317
|
+
toObject(includeInstance?: boolean): GetTokenContractInfoRequest.AsObject;
|
|
7318
|
+
static toObject(includeInstance: boolean, msg: GetTokenContractInfoRequest): GetTokenContractInfoRequest.AsObject;
|
|
7012
7319
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7013
7320
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7014
|
-
static serializeBinaryToWriter(message:
|
|
7015
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
7016
|
-
static deserializeBinaryFromReader(message:
|
|
7321
|
+
static serializeBinaryToWriter(message: GetTokenContractInfoRequest, writer: jspb.BinaryWriter): void;
|
|
7322
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenContractInfoRequest;
|
|
7323
|
+
static deserializeBinaryFromReader(message: GetTokenContractInfoRequest, reader: jspb.BinaryReader): GetTokenContractInfoRequest;
|
|
7017
7324
|
}
|
|
7018
7325
|
|
|
7019
|
-
export namespace
|
|
7326
|
+
export namespace GetTokenContractInfoRequest {
|
|
7020
7327
|
export type AsObject = {
|
|
7021
|
-
v0?:
|
|
7328
|
+
v0?: GetTokenContractInfoRequest.GetTokenContractInfoRequestV0.AsObject,
|
|
7022
7329
|
}
|
|
7023
7330
|
|
|
7024
|
-
export class
|
|
7025
|
-
|
|
7026
|
-
|
|
7027
|
-
|
|
7028
|
-
|
|
7029
|
-
setTokenIdsList(value: Array<Uint8Array | string>): void;
|
|
7030
|
-
addTokenIds(value: Uint8Array | string, index?: number): Uint8Array | string;
|
|
7331
|
+
export class GetTokenContractInfoRequestV0 extends jspb.Message {
|
|
7332
|
+
getTokenId(): Uint8Array | string;
|
|
7333
|
+
getTokenId_asU8(): Uint8Array;
|
|
7334
|
+
getTokenId_asB64(): string;
|
|
7335
|
+
setTokenId(value: Uint8Array | string): void;
|
|
7031
7336
|
|
|
7032
7337
|
getProve(): boolean;
|
|
7033
7338
|
setProve(value: boolean): void;
|
|
7034
7339
|
|
|
7035
7340
|
serializeBinary(): Uint8Array;
|
|
7036
|
-
toObject(includeInstance?: boolean):
|
|
7037
|
-
static toObject(includeInstance: boolean, msg:
|
|
7341
|
+
toObject(includeInstance?: boolean): GetTokenContractInfoRequestV0.AsObject;
|
|
7342
|
+
static toObject(includeInstance: boolean, msg: GetTokenContractInfoRequestV0): GetTokenContractInfoRequestV0.AsObject;
|
|
7038
7343
|
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7039
7344
|
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7040
|
-
static serializeBinaryToWriter(message:
|
|
7041
|
-
static deserializeBinary(bytes: Uint8Array):
|
|
7042
|
-
static deserializeBinaryFromReader(message:
|
|
7345
|
+
static serializeBinaryToWriter(message: GetTokenContractInfoRequestV0, writer: jspb.BinaryWriter): void;
|
|
7346
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenContractInfoRequestV0;
|
|
7347
|
+
static deserializeBinaryFromReader(message: GetTokenContractInfoRequestV0, reader: jspb.BinaryReader): GetTokenContractInfoRequestV0;
|
|
7043
7348
|
}
|
|
7044
7349
|
|
|
7045
|
-
export namespace
|
|
7350
|
+
export namespace GetTokenContractInfoRequestV0 {
|
|
7046
7351
|
export type AsObject = {
|
|
7047
|
-
|
|
7352
|
+
tokenId: Uint8Array | string,
|
|
7048
7353
|
prove: boolean,
|
|
7049
7354
|
}
|
|
7050
7355
|
}
|
|
@@ -7055,6 +7360,101 @@ export namespace GetTokenDirectPurchasePricesRequest {
|
|
|
7055
7360
|
}
|
|
7056
7361
|
}
|
|
7057
7362
|
|
|
7363
|
+
export class GetTokenContractInfoResponse extends jspb.Message {
|
|
7364
|
+
hasV0(): boolean;
|
|
7365
|
+
clearV0(): void;
|
|
7366
|
+
getV0(): GetTokenContractInfoResponse.GetTokenContractInfoResponseV0 | undefined;
|
|
7367
|
+
setV0(value?: GetTokenContractInfoResponse.GetTokenContractInfoResponseV0): void;
|
|
7368
|
+
|
|
7369
|
+
getVersionCase(): GetTokenContractInfoResponse.VersionCase;
|
|
7370
|
+
serializeBinary(): Uint8Array;
|
|
7371
|
+
toObject(includeInstance?: boolean): GetTokenContractInfoResponse.AsObject;
|
|
7372
|
+
static toObject(includeInstance: boolean, msg: GetTokenContractInfoResponse): GetTokenContractInfoResponse.AsObject;
|
|
7373
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7374
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7375
|
+
static serializeBinaryToWriter(message: GetTokenContractInfoResponse, writer: jspb.BinaryWriter): void;
|
|
7376
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenContractInfoResponse;
|
|
7377
|
+
static deserializeBinaryFromReader(message: GetTokenContractInfoResponse, reader: jspb.BinaryReader): GetTokenContractInfoResponse;
|
|
7378
|
+
}
|
|
7379
|
+
|
|
7380
|
+
export namespace GetTokenContractInfoResponse {
|
|
7381
|
+
export type AsObject = {
|
|
7382
|
+
v0?: GetTokenContractInfoResponse.GetTokenContractInfoResponseV0.AsObject,
|
|
7383
|
+
}
|
|
7384
|
+
|
|
7385
|
+
export class GetTokenContractInfoResponseV0 extends jspb.Message {
|
|
7386
|
+
hasData(): boolean;
|
|
7387
|
+
clearData(): void;
|
|
7388
|
+
getData(): GetTokenContractInfoResponse.GetTokenContractInfoResponseV0.TokenContractInfoData | undefined;
|
|
7389
|
+
setData(value?: GetTokenContractInfoResponse.GetTokenContractInfoResponseV0.TokenContractInfoData): void;
|
|
7390
|
+
|
|
7391
|
+
hasProof(): boolean;
|
|
7392
|
+
clearProof(): void;
|
|
7393
|
+
getProof(): Proof | undefined;
|
|
7394
|
+
setProof(value?: Proof): void;
|
|
7395
|
+
|
|
7396
|
+
hasMetadata(): boolean;
|
|
7397
|
+
clearMetadata(): void;
|
|
7398
|
+
getMetadata(): ResponseMetadata | undefined;
|
|
7399
|
+
setMetadata(value?: ResponseMetadata): void;
|
|
7400
|
+
|
|
7401
|
+
getResultCase(): GetTokenContractInfoResponseV0.ResultCase;
|
|
7402
|
+
serializeBinary(): Uint8Array;
|
|
7403
|
+
toObject(includeInstance?: boolean): GetTokenContractInfoResponseV0.AsObject;
|
|
7404
|
+
static toObject(includeInstance: boolean, msg: GetTokenContractInfoResponseV0): GetTokenContractInfoResponseV0.AsObject;
|
|
7405
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7406
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7407
|
+
static serializeBinaryToWriter(message: GetTokenContractInfoResponseV0, writer: jspb.BinaryWriter): void;
|
|
7408
|
+
static deserializeBinary(bytes: Uint8Array): GetTokenContractInfoResponseV0;
|
|
7409
|
+
static deserializeBinaryFromReader(message: GetTokenContractInfoResponseV0, reader: jspb.BinaryReader): GetTokenContractInfoResponseV0;
|
|
7410
|
+
}
|
|
7411
|
+
|
|
7412
|
+
export namespace GetTokenContractInfoResponseV0 {
|
|
7413
|
+
export type AsObject = {
|
|
7414
|
+
data?: GetTokenContractInfoResponse.GetTokenContractInfoResponseV0.TokenContractInfoData.AsObject,
|
|
7415
|
+
proof?: Proof.AsObject,
|
|
7416
|
+
metadata?: ResponseMetadata.AsObject,
|
|
7417
|
+
}
|
|
7418
|
+
|
|
7419
|
+
export class TokenContractInfoData extends jspb.Message {
|
|
7420
|
+
getContractId(): Uint8Array | string;
|
|
7421
|
+
getContractId_asU8(): Uint8Array;
|
|
7422
|
+
getContractId_asB64(): string;
|
|
7423
|
+
setContractId(value: Uint8Array | string): void;
|
|
7424
|
+
|
|
7425
|
+
getTokenContractPosition(): number;
|
|
7426
|
+
setTokenContractPosition(value: number): void;
|
|
7427
|
+
|
|
7428
|
+
serializeBinary(): Uint8Array;
|
|
7429
|
+
toObject(includeInstance?: boolean): TokenContractInfoData.AsObject;
|
|
7430
|
+
static toObject(includeInstance: boolean, msg: TokenContractInfoData): TokenContractInfoData.AsObject;
|
|
7431
|
+
static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
|
|
7432
|
+
static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
|
|
7433
|
+
static serializeBinaryToWriter(message: TokenContractInfoData, writer: jspb.BinaryWriter): void;
|
|
7434
|
+
static deserializeBinary(bytes: Uint8Array): TokenContractInfoData;
|
|
7435
|
+
static deserializeBinaryFromReader(message: TokenContractInfoData, reader: jspb.BinaryReader): TokenContractInfoData;
|
|
7436
|
+
}
|
|
7437
|
+
|
|
7438
|
+
export namespace TokenContractInfoData {
|
|
7439
|
+
export type AsObject = {
|
|
7440
|
+
contractId: Uint8Array | string,
|
|
7441
|
+
tokenContractPosition: number,
|
|
7442
|
+
}
|
|
7443
|
+
}
|
|
7444
|
+
|
|
7445
|
+
export enum ResultCase {
|
|
7446
|
+
RESULT_NOT_SET = 0,
|
|
7447
|
+
DATA = 1,
|
|
7448
|
+
PROOF = 2,
|
|
7449
|
+
}
|
|
7450
|
+
}
|
|
7451
|
+
|
|
7452
|
+
export enum VersionCase {
|
|
7453
|
+
VERSION_NOT_SET = 0,
|
|
7454
|
+
V0 = 1,
|
|
7455
|
+
}
|
|
7456
|
+
}
|
|
7457
|
+
|
|
7058
7458
|
export class GetTokenPreProgrammedDistributionsRequest extends jspb.Message {
|
|
7059
7459
|
hasV0(): boolean;
|
|
7060
7460
|
clearV0(): void;
|
|
@@ -8300,6 +8700,11 @@ export namespace GetGroupActionsResponse {
|
|
|
8300
8700
|
getAmount(): number;
|
|
8301
8701
|
setAmount(value: number): void;
|
|
8302
8702
|
|
|
8703
|
+
getBurnFromId(): Uint8Array | string;
|
|
8704
|
+
getBurnFromId_asU8(): Uint8Array;
|
|
8705
|
+
getBurnFromId_asB64(): string;
|
|
8706
|
+
setBurnFromId(value: Uint8Array | string): void;
|
|
8707
|
+
|
|
8303
8708
|
hasPublicNote(): boolean;
|
|
8304
8709
|
clearPublicNote(): void;
|
|
8305
8710
|
getPublicNote(): string;
|
|
@@ -8318,6 +8723,7 @@ export namespace GetGroupActionsResponse {
|
|
|
8318
8723
|
export namespace BurnEvent {
|
|
8319
8724
|
export type AsObject = {
|
|
8320
8725
|
amount: number,
|
|
8726
|
+
burnFromId: Uint8Array | string,
|
|
8321
8727
|
publicNote: string,
|
|
8322
8728
|
}
|
|
8323
8729
|
}
|