@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
625 lines (624 loc) • 26.6 kB
TypeScript
import { Round1Info, Round1InfoAmino, Round1InfoSDKType, Round2Info, Round2InfoAmino, Round2InfoSDKType, Complaint, ComplaintAmino, ComplaintSDKType, DE, DEAmino, DESDKType } from "./tss";
import { Params, ParamsAmino, ParamsSDKType } from "./genesis";
import { BinaryReader, BinaryWriter } from "../../../binary";
/** MsgSubmitDKGRound1 is the Msg/MsgSubmitDKGRound1 request type. */
export interface MsgSubmitDKGRound1 {
/** group_id is ID of the group. */
groupId: bigint;
/** round1_info is all data that require to handle round 1. */
round1Info: Round1Info;
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender: string;
}
export interface MsgSubmitDKGRound1ProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitDKGRound1";
value: Uint8Array;
}
/** MsgSubmitDKGRound1 is the Msg/MsgSubmitDKGRound1 request type. */
export interface MsgSubmitDKGRound1Amino {
/** group_id is ID of the group. */
group_id?: string;
/** round1_info is all data that require to handle round 1. */
round1_info?: Round1InfoAmino;
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender?: string;
}
export interface MsgSubmitDKGRound1AminoMsg {
type: "tss/MsgSubmitDKGRound1";
value: MsgSubmitDKGRound1Amino;
}
/** MsgSubmitDKGRound1 is the Msg/MsgSubmitDKGRound1 request type. */
export interface MsgSubmitDKGRound1SDKType {
group_id: bigint;
round1_info: Round1InfoSDKType;
sender: string;
}
/** MsgSubmitDKGRound1Response is the Msg/SubmitDKGRound1 response type. */
export interface MsgSubmitDKGRound1Response {
}
export interface MsgSubmitDKGRound1ResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitDKGRound1Response";
value: Uint8Array;
}
/** MsgSubmitDKGRound1Response is the Msg/SubmitDKGRound1 response type. */
export interface MsgSubmitDKGRound1ResponseAmino {
}
export interface MsgSubmitDKGRound1ResponseAminoMsg {
type: "/band.tss.v1beta1.MsgSubmitDKGRound1Response";
value: MsgSubmitDKGRound1ResponseAmino;
}
/** MsgSubmitDKGRound1Response is the Msg/SubmitDKGRound1 response type. */
export interface MsgSubmitDKGRound1ResponseSDKType {
}
/** MsgSubmitDKGRound2 is the Msg/SubmitDKGRound2 request type. */
export interface MsgSubmitDKGRound2 {
/** group_id is ID of the group. */
groupId: bigint;
/** round2_info is all data that is required to handle round 2. */
round2Info: Round2Info;
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender: string;
}
export interface MsgSubmitDKGRound2ProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitDKGRound2";
value: Uint8Array;
}
/** MsgSubmitDKGRound2 is the Msg/SubmitDKGRound2 request type. */
export interface MsgSubmitDKGRound2Amino {
/** group_id is ID of the group. */
group_id?: string;
/** round2_info is all data that is required to handle round 2. */
round2_info?: Round2InfoAmino;
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender?: string;
}
export interface MsgSubmitDKGRound2AminoMsg {
type: "tss/MsgSubmitDKGRound2";
value: MsgSubmitDKGRound2Amino;
}
/** MsgSubmitDKGRound2 is the Msg/SubmitDKGRound2 request type. */
export interface MsgSubmitDKGRound2SDKType {
group_id: bigint;
round2_info: Round2InfoSDKType;
sender: string;
}
/** MsgSubmitDKGRound2Response is response data for MsgSubmitDKGRound2 message */
export interface MsgSubmitDKGRound2Response {
}
export interface MsgSubmitDKGRound2ResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitDKGRound2Response";
value: Uint8Array;
}
/** MsgSubmitDKGRound2Response is response data for MsgSubmitDKGRound2 message */
export interface MsgSubmitDKGRound2ResponseAmino {
}
export interface MsgSubmitDKGRound2ResponseAminoMsg {
type: "/band.tss.v1beta1.MsgSubmitDKGRound2Response";
value: MsgSubmitDKGRound2ResponseAmino;
}
/** MsgSubmitDKGRound2Response is response data for MsgSubmitDKGRound2 message */
export interface MsgSubmitDKGRound2ResponseSDKType {
}
/** MsgComplain is a message used to complain about malicious actors in the group. */
export interface MsgComplain {
/** group_id is ID of the group. */
groupId: bigint;
/** complaints is a list of complaints. */
complaints: Complaint[];
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender: string;
}
export interface MsgComplainProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgComplain";
value: Uint8Array;
}
/** MsgComplain is a message used to complain about malicious actors in the group. */
export interface MsgComplainAmino {
/** group_id is ID of the group. */
group_id?: string;
/** complaints is a list of complaints. */
complaints?: ComplaintAmino[];
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender?: string;
}
export interface MsgComplainAminoMsg {
type: "tss/MsgComplaint";
value: MsgComplainAmino;
}
/** MsgComplain is a message used to complain about malicious actors in the group. */
export interface MsgComplainSDKType {
group_id: bigint;
complaints: ComplaintSDKType[];
sender: string;
}
/** MsgComplainResponse is response data for MsgComplain message */
export interface MsgComplainResponse {
}
export interface MsgComplainResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgComplainResponse";
value: Uint8Array;
}
/** MsgComplainResponse is response data for MsgComplain message */
export interface MsgComplainResponseAmino {
}
export interface MsgComplainResponseAminoMsg {
type: "/band.tss.v1beta1.MsgComplainResponse";
value: MsgComplainResponseAmino;
}
/** MsgComplainResponse is response data for MsgComplain message */
export interface MsgComplainResponseSDKType {
}
/** MsgConfirm is a message used to confirm own public key. */
export interface MsgConfirm {
/** group_id is ID of the group. */
groupId: bigint;
/** member_id is ID of the sender. */
memberId: bigint;
/**
* own_pub_key_sig is a signature of the member_i on its own PubKey to confirm
* that the address is able to derive the PubKey.
*/
ownPubKeySig: Uint8Array;
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender: string;
}
export interface MsgConfirmProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgConfirm";
value: Uint8Array;
}
/** MsgConfirm is a message used to confirm own public key. */
export interface MsgConfirmAmino {
/** group_id is ID of the group. */
group_id?: string;
/** member_id is ID of the sender. */
member_id?: string;
/**
* own_pub_key_sig is a signature of the member_i on its own PubKey to confirm
* that the address is able to derive the PubKey.
*/
own_pub_key_sig?: string;
/**
* sender is the user address that submits the group creation information;
* must be a member of this group.
*/
sender?: string;
}
export interface MsgConfirmAminoMsg {
type: "tss/MsgConfirm";
value: MsgConfirmAmino;
}
/** MsgConfirm is a message used to confirm own public key. */
export interface MsgConfirmSDKType {
group_id: bigint;
member_id: bigint;
own_pub_key_sig: Uint8Array;
sender: string;
}
/** MsgConfirmResponse is response data for MsgConfirm message */
export interface MsgConfirmResponse {
}
export interface MsgConfirmResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgConfirmResponse";
value: Uint8Array;
}
/** MsgConfirmResponse is response data for MsgConfirm message */
export interface MsgConfirmResponseAmino {
}
export interface MsgConfirmResponseAminoMsg {
type: "/band.tss.v1beta1.MsgConfirmResponse";
value: MsgConfirmResponseAmino;
}
/** MsgConfirmResponse is response data for MsgConfirm message */
export interface MsgConfirmResponseSDKType {
}
/** MsgSubmitDEs is a message used to submit a list of DEs. */
export interface MsgSubmitDEs {
/** des is a list of DE objects. */
des: DE[];
/** sender is the user address that submits DE objects. */
sender: string;
}
export interface MsgSubmitDEsProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitDEs";
value: Uint8Array;
}
/** MsgSubmitDEs is a message used to submit a list of DEs. */
export interface MsgSubmitDEsAmino {
/** des is a list of DE objects. */
des?: DEAmino[];
/** sender is the user address that submits DE objects. */
sender?: string;
}
export interface MsgSubmitDEsAminoMsg {
type: "tss/MsgSubmitDEs";
value: MsgSubmitDEsAmino;
}
/** MsgSubmitDEs is a message used to submit a list of DEs. */
export interface MsgSubmitDEsSDKType {
des: DESDKType[];
sender: string;
}
/** MsgSubmitDEsResponse is response data for MsgSubmitDEs message */
export interface MsgSubmitDEsResponse {
}
export interface MsgSubmitDEsResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitDEsResponse";
value: Uint8Array;
}
/** MsgSubmitDEsResponse is response data for MsgSubmitDEs message */
export interface MsgSubmitDEsResponseAmino {
}
export interface MsgSubmitDEsResponseAminoMsg {
type: "/band.tss.v1beta1.MsgSubmitDEsResponse";
value: MsgSubmitDEsResponseAmino;
}
/** MsgSubmitDEsResponse is response data for MsgSubmitDEs message */
export interface MsgSubmitDEsResponseSDKType {
}
/** MsgResetDE is a message used to reset the DEs that being stored on chain. */
export interface MsgResetDE {
/** sender is the user address that request for resetting DEs. */
sender: string;
}
export interface MsgResetDEProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgResetDE";
value: Uint8Array;
}
/** MsgResetDE is a message used to reset the DEs that being stored on chain. */
export interface MsgResetDEAmino {
/** sender is the user address that request for resetting DEs. */
sender?: string;
}
export interface MsgResetDEAminoMsg {
type: "tss/MsgResetDE";
value: MsgResetDEAmino;
}
/** MsgResetDE is a message used to reset the DEs that being stored on chain. */
export interface MsgResetDESDKType {
sender: string;
}
/** MsgResetDEResponse is response data for MsgResetDE message */
export interface MsgResetDEResponse {
}
export interface MsgResetDEResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgResetDEResponse";
value: Uint8Array;
}
/** MsgResetDEResponse is response data for MsgResetDE message */
export interface MsgResetDEResponseAmino {
}
export interface MsgResetDEResponseAminoMsg {
type: "/band.tss.v1beta1.MsgResetDEResponse";
value: MsgResetDEResponseAmino;
}
/** MsgResetDEResponse is response data for MsgResetDE message */
export interface MsgResetDEResponseSDKType {
}
/** MsgSubmitSignature is a message used to submitting signature data. */
export interface MsgSubmitSignature {
/** signing_id is the unique identifier of the signing process. */
signingId: bigint;
/** member_id is the unique identifier of the signer in the group. */
memberId: bigint;
/** signature is the signature produced by the signer. */
signature: Uint8Array;
/** signer is the address who signs a message; must be a member of the group. */
signer: string;
}
export interface MsgSubmitSignatureProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitSignature";
value: Uint8Array;
}
/** MsgSubmitSignature is a message used to submitting signature data. */
export interface MsgSubmitSignatureAmino {
/** signing_id is the unique identifier of the signing process. */
signing_id?: string;
/** member_id is the unique identifier of the signer in the group. */
member_id?: string;
/** signature is the signature produced by the signer. */
signature?: string;
/** signer is the address who signs a message; must be a member of the group. */
signer?: string;
}
export interface MsgSubmitSignatureAminoMsg {
type: "tss/MsgSubmitSignature";
value: MsgSubmitSignatureAmino;
}
/** MsgSubmitSignature is a message used to submitting signature data. */
export interface MsgSubmitSignatureSDKType {
signing_id: bigint;
member_id: bigint;
signature: Uint8Array;
signer: string;
}
/** MsgSubmitSignatureResponse is response data for MsgSubmitSignature message */
export interface MsgSubmitSignatureResponse {
}
export interface MsgSubmitSignatureResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgSubmitSignatureResponse";
value: Uint8Array;
}
/** MsgSubmitSignatureResponse is response data for MsgSubmitSignature message */
export interface MsgSubmitSignatureResponseAmino {
}
export interface MsgSubmitSignatureResponseAminoMsg {
type: "/band.tss.v1beta1.MsgSubmitSignatureResponse";
value: MsgSubmitSignatureResponseAmino;
}
/** MsgSubmitSignatureResponse is response data for MsgSubmitSignature message */
export interface MsgSubmitSignatureResponseSDKType {
}
/** MsgUpdateParams is the Msg/UpdateParams request type. */
export interface MsgUpdateParams {
/** params defines the x/tss parameters to update. */
params: Params;
/** authority is the address of the governance account. */
authority: string;
}
export interface MsgUpdateParamsProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgUpdateParams";
value: Uint8Array;
}
/** MsgUpdateParams is the Msg/UpdateParams request type. */
export interface MsgUpdateParamsAmino {
/** params defines the x/tss parameters to update. */
params?: ParamsAmino;
/** authority is the address of the governance account. */
authority?: string;
}
export interface MsgUpdateParamsAminoMsg {
type: "tss/MsgUpdateParams";
value: MsgUpdateParamsAmino;
}
/** MsgUpdateParams is the Msg/UpdateParams request type. */
export interface MsgUpdateParamsSDKType {
params: ParamsSDKType;
authority: string;
}
/**
* MsgUpdateParamsResponse defines the response structure for executing a
* MsgUpdateParams message.
*/
export interface MsgUpdateParamsResponse {
}
export interface MsgUpdateParamsResponseProtoMsg {
typeUrl: "/band.tss.v1beta1.MsgUpdateParamsResponse";
value: Uint8Array;
}
/**
* MsgUpdateParamsResponse defines the response structure for executing a
* MsgUpdateParams message.
*/
export interface MsgUpdateParamsResponseAmino {
}
export interface MsgUpdateParamsResponseAminoMsg {
type: "/band.tss.v1beta1.MsgUpdateParamsResponse";
value: MsgUpdateParamsResponseAmino;
}
/**
* MsgUpdateParamsResponse defines the response structure for executing a
* MsgUpdateParams message.
*/
export interface MsgUpdateParamsResponseSDKType {
}
export declare const MsgSubmitDKGRound1: {
typeUrl: string;
encode(message: MsgSubmitDKGRound1, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitDKGRound1;
fromPartial(object: Partial<MsgSubmitDKGRound1>): MsgSubmitDKGRound1;
fromAmino(object: MsgSubmitDKGRound1Amino): MsgSubmitDKGRound1;
toAmino(message: MsgSubmitDKGRound1): MsgSubmitDKGRound1Amino;
fromAminoMsg(object: MsgSubmitDKGRound1AminoMsg): MsgSubmitDKGRound1;
toAminoMsg(message: MsgSubmitDKGRound1): MsgSubmitDKGRound1AminoMsg;
fromProtoMsg(message: MsgSubmitDKGRound1ProtoMsg): MsgSubmitDKGRound1;
toProto(message: MsgSubmitDKGRound1): Uint8Array;
toProtoMsg(message: MsgSubmitDKGRound1): MsgSubmitDKGRound1ProtoMsg;
};
export declare const MsgSubmitDKGRound1Response: {
typeUrl: string;
encode(_: MsgSubmitDKGRound1Response, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitDKGRound1Response;
fromPartial(_: Partial<MsgSubmitDKGRound1Response>): MsgSubmitDKGRound1Response;
fromAmino(_: MsgSubmitDKGRound1ResponseAmino): MsgSubmitDKGRound1Response;
toAmino(_: MsgSubmitDKGRound1Response): MsgSubmitDKGRound1ResponseAmino;
fromAminoMsg(object: MsgSubmitDKGRound1ResponseAminoMsg): MsgSubmitDKGRound1Response;
fromProtoMsg(message: MsgSubmitDKGRound1ResponseProtoMsg): MsgSubmitDKGRound1Response;
toProto(message: MsgSubmitDKGRound1Response): Uint8Array;
toProtoMsg(message: MsgSubmitDKGRound1Response): MsgSubmitDKGRound1ResponseProtoMsg;
};
export declare const MsgSubmitDKGRound2: {
typeUrl: string;
encode(message: MsgSubmitDKGRound2, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitDKGRound2;
fromPartial(object: Partial<MsgSubmitDKGRound2>): MsgSubmitDKGRound2;
fromAmino(object: MsgSubmitDKGRound2Amino): MsgSubmitDKGRound2;
toAmino(message: MsgSubmitDKGRound2): MsgSubmitDKGRound2Amino;
fromAminoMsg(object: MsgSubmitDKGRound2AminoMsg): MsgSubmitDKGRound2;
toAminoMsg(message: MsgSubmitDKGRound2): MsgSubmitDKGRound2AminoMsg;
fromProtoMsg(message: MsgSubmitDKGRound2ProtoMsg): MsgSubmitDKGRound2;
toProto(message: MsgSubmitDKGRound2): Uint8Array;
toProtoMsg(message: MsgSubmitDKGRound2): MsgSubmitDKGRound2ProtoMsg;
};
export declare const MsgSubmitDKGRound2Response: {
typeUrl: string;
encode(_: MsgSubmitDKGRound2Response, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitDKGRound2Response;
fromPartial(_: Partial<MsgSubmitDKGRound2Response>): MsgSubmitDKGRound2Response;
fromAmino(_: MsgSubmitDKGRound2ResponseAmino): MsgSubmitDKGRound2Response;
toAmino(_: MsgSubmitDKGRound2Response): MsgSubmitDKGRound2ResponseAmino;
fromAminoMsg(object: MsgSubmitDKGRound2ResponseAminoMsg): MsgSubmitDKGRound2Response;
fromProtoMsg(message: MsgSubmitDKGRound2ResponseProtoMsg): MsgSubmitDKGRound2Response;
toProto(message: MsgSubmitDKGRound2Response): Uint8Array;
toProtoMsg(message: MsgSubmitDKGRound2Response): MsgSubmitDKGRound2ResponseProtoMsg;
};
export declare const MsgComplain: {
typeUrl: string;
encode(message: MsgComplain, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgComplain;
fromPartial(object: Partial<MsgComplain>): MsgComplain;
fromAmino(object: MsgComplainAmino): MsgComplain;
toAmino(message: MsgComplain): MsgComplainAmino;
fromAminoMsg(object: MsgComplainAminoMsg): MsgComplain;
toAminoMsg(message: MsgComplain): MsgComplainAminoMsg;
fromProtoMsg(message: MsgComplainProtoMsg): MsgComplain;
toProto(message: MsgComplain): Uint8Array;
toProtoMsg(message: MsgComplain): MsgComplainProtoMsg;
};
export declare const MsgComplainResponse: {
typeUrl: string;
encode(_: MsgComplainResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgComplainResponse;
fromPartial(_: Partial<MsgComplainResponse>): MsgComplainResponse;
fromAmino(_: MsgComplainResponseAmino): MsgComplainResponse;
toAmino(_: MsgComplainResponse): MsgComplainResponseAmino;
fromAminoMsg(object: MsgComplainResponseAminoMsg): MsgComplainResponse;
fromProtoMsg(message: MsgComplainResponseProtoMsg): MsgComplainResponse;
toProto(message: MsgComplainResponse): Uint8Array;
toProtoMsg(message: MsgComplainResponse): MsgComplainResponseProtoMsg;
};
export declare const MsgConfirm: {
typeUrl: string;
encode(message: MsgConfirm, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgConfirm;
fromPartial(object: Partial<MsgConfirm>): MsgConfirm;
fromAmino(object: MsgConfirmAmino): MsgConfirm;
toAmino(message: MsgConfirm): MsgConfirmAmino;
fromAminoMsg(object: MsgConfirmAminoMsg): MsgConfirm;
toAminoMsg(message: MsgConfirm): MsgConfirmAminoMsg;
fromProtoMsg(message: MsgConfirmProtoMsg): MsgConfirm;
toProto(message: MsgConfirm): Uint8Array;
toProtoMsg(message: MsgConfirm): MsgConfirmProtoMsg;
};
export declare const MsgConfirmResponse: {
typeUrl: string;
encode(_: MsgConfirmResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgConfirmResponse;
fromPartial(_: Partial<MsgConfirmResponse>): MsgConfirmResponse;
fromAmino(_: MsgConfirmResponseAmino): MsgConfirmResponse;
toAmino(_: MsgConfirmResponse): MsgConfirmResponseAmino;
fromAminoMsg(object: MsgConfirmResponseAminoMsg): MsgConfirmResponse;
fromProtoMsg(message: MsgConfirmResponseProtoMsg): MsgConfirmResponse;
toProto(message: MsgConfirmResponse): Uint8Array;
toProtoMsg(message: MsgConfirmResponse): MsgConfirmResponseProtoMsg;
};
export declare const MsgSubmitDEs: {
typeUrl: string;
encode(message: MsgSubmitDEs, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitDEs;
fromPartial(object: Partial<MsgSubmitDEs>): MsgSubmitDEs;
fromAmino(object: MsgSubmitDEsAmino): MsgSubmitDEs;
toAmino(message: MsgSubmitDEs): MsgSubmitDEsAmino;
fromAminoMsg(object: MsgSubmitDEsAminoMsg): MsgSubmitDEs;
toAminoMsg(message: MsgSubmitDEs): MsgSubmitDEsAminoMsg;
fromProtoMsg(message: MsgSubmitDEsProtoMsg): MsgSubmitDEs;
toProto(message: MsgSubmitDEs): Uint8Array;
toProtoMsg(message: MsgSubmitDEs): MsgSubmitDEsProtoMsg;
};
export declare const MsgSubmitDEsResponse: {
typeUrl: string;
encode(_: MsgSubmitDEsResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitDEsResponse;
fromPartial(_: Partial<MsgSubmitDEsResponse>): MsgSubmitDEsResponse;
fromAmino(_: MsgSubmitDEsResponseAmino): MsgSubmitDEsResponse;
toAmino(_: MsgSubmitDEsResponse): MsgSubmitDEsResponseAmino;
fromAminoMsg(object: MsgSubmitDEsResponseAminoMsg): MsgSubmitDEsResponse;
fromProtoMsg(message: MsgSubmitDEsResponseProtoMsg): MsgSubmitDEsResponse;
toProto(message: MsgSubmitDEsResponse): Uint8Array;
toProtoMsg(message: MsgSubmitDEsResponse): MsgSubmitDEsResponseProtoMsg;
};
export declare const MsgResetDE: {
typeUrl: string;
encode(message: MsgResetDE, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgResetDE;
fromPartial(object: Partial<MsgResetDE>): MsgResetDE;
fromAmino(object: MsgResetDEAmino): MsgResetDE;
toAmino(message: MsgResetDE): MsgResetDEAmino;
fromAminoMsg(object: MsgResetDEAminoMsg): MsgResetDE;
toAminoMsg(message: MsgResetDE): MsgResetDEAminoMsg;
fromProtoMsg(message: MsgResetDEProtoMsg): MsgResetDE;
toProto(message: MsgResetDE): Uint8Array;
toProtoMsg(message: MsgResetDE): MsgResetDEProtoMsg;
};
export declare const MsgResetDEResponse: {
typeUrl: string;
encode(_: MsgResetDEResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgResetDEResponse;
fromPartial(_: Partial<MsgResetDEResponse>): MsgResetDEResponse;
fromAmino(_: MsgResetDEResponseAmino): MsgResetDEResponse;
toAmino(_: MsgResetDEResponse): MsgResetDEResponseAmino;
fromAminoMsg(object: MsgResetDEResponseAminoMsg): MsgResetDEResponse;
fromProtoMsg(message: MsgResetDEResponseProtoMsg): MsgResetDEResponse;
toProto(message: MsgResetDEResponse): Uint8Array;
toProtoMsg(message: MsgResetDEResponse): MsgResetDEResponseProtoMsg;
};
export declare const MsgSubmitSignature: {
typeUrl: string;
encode(message: MsgSubmitSignature, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitSignature;
fromPartial(object: Partial<MsgSubmitSignature>): MsgSubmitSignature;
fromAmino(object: MsgSubmitSignatureAmino): MsgSubmitSignature;
toAmino(message: MsgSubmitSignature): MsgSubmitSignatureAmino;
fromAminoMsg(object: MsgSubmitSignatureAminoMsg): MsgSubmitSignature;
toAminoMsg(message: MsgSubmitSignature): MsgSubmitSignatureAminoMsg;
fromProtoMsg(message: MsgSubmitSignatureProtoMsg): MsgSubmitSignature;
toProto(message: MsgSubmitSignature): Uint8Array;
toProtoMsg(message: MsgSubmitSignature): MsgSubmitSignatureProtoMsg;
};
export declare const MsgSubmitSignatureResponse: {
typeUrl: string;
encode(_: MsgSubmitSignatureResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitSignatureResponse;
fromPartial(_: Partial<MsgSubmitSignatureResponse>): MsgSubmitSignatureResponse;
fromAmino(_: MsgSubmitSignatureResponseAmino): MsgSubmitSignatureResponse;
toAmino(_: MsgSubmitSignatureResponse): MsgSubmitSignatureResponseAmino;
fromAminoMsg(object: MsgSubmitSignatureResponseAminoMsg): MsgSubmitSignatureResponse;
fromProtoMsg(message: MsgSubmitSignatureResponseProtoMsg): MsgSubmitSignatureResponse;
toProto(message: MsgSubmitSignatureResponse): Uint8Array;
toProtoMsg(message: MsgSubmitSignatureResponse): MsgSubmitSignatureResponseProtoMsg;
};
export declare const MsgUpdateParams: {
typeUrl: string;
encode(message: MsgUpdateParams, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParams;
fromPartial(object: Partial<MsgUpdateParams>): MsgUpdateParams;
fromAmino(object: MsgUpdateParamsAmino): MsgUpdateParams;
toAmino(message: MsgUpdateParams): MsgUpdateParamsAmino;
fromAminoMsg(object: MsgUpdateParamsAminoMsg): MsgUpdateParams;
toAminoMsg(message: MsgUpdateParams): MsgUpdateParamsAminoMsg;
fromProtoMsg(message: MsgUpdateParamsProtoMsg): MsgUpdateParams;
toProto(message: MsgUpdateParams): Uint8Array;
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
};
export declare const MsgUpdateParamsResponse: {
typeUrl: string;
encode(_: MsgUpdateParamsResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateParamsResponse;
fromPartial(_: Partial<MsgUpdateParamsResponse>): MsgUpdateParamsResponse;
fromAmino(_: MsgUpdateParamsResponseAmino): MsgUpdateParamsResponse;
toAmino(_: MsgUpdateParamsResponse): MsgUpdateParamsResponseAmino;
fromAminoMsg(object: MsgUpdateParamsResponseAminoMsg): MsgUpdateParamsResponse;
fromProtoMsg(message: MsgUpdateParamsResponseProtoMsg): MsgUpdateParamsResponse;
toProto(message: MsgUpdateParamsResponse): Uint8Array;
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
};