forked from LaconicNetwork/cosmos-explorer
16 lines
592 B
TypeScript
16 lines
592 B
TypeScript
import { Rpc } from "../../../helpers";
|
|
import { MsgSubmitEvidence, MsgSubmitEvidenceResponse } from "./tx";
|
|
/** Msg defines the evidence Msg service. */
|
|
export interface Msg {
|
|
/**
|
|
* SubmitEvidence submits an arbitrary Evidence of misbehavior such as equivocation or
|
|
* counterfactual signing.
|
|
*/
|
|
submitEvidence(request: MsgSubmitEvidence): Promise<MsgSubmitEvidenceResponse>;
|
|
}
|
|
export declare class MsgClientImpl implements Msg {
|
|
private readonly rpc;
|
|
constructor(rpc: Rpc);
|
|
submitEvidence(request: MsgSubmitEvidence): Promise<MsgSubmitEvidenceResponse>;
|
|
}
|