forked from cerc-io/cosmos-explorer
17 lines
594 B
TypeScript
17 lines
594 B
TypeScript
import { Rpc } from "../../../helpers";
|
|
import { MsgUnjail, MsgUnjailResponse } from "./tx";
|
|
/** Msg defines the slashing Msg service. */
|
|
export interface Msg {
|
|
/**
|
|
* Unjail defines a method for unjailing a jailed validator, thus returning
|
|
* them into the bonded validator set, so they can begin receiving provisions
|
|
* and rewards again.
|
|
*/
|
|
unjail(request: MsgUnjail): Promise<MsgUnjailResponse>;
|
|
}
|
|
export declare class MsgClientImpl implements Msg {
|
|
private readonly rpc;
|
|
constructor(rpc: Rpc);
|
|
unjail(request: MsgUnjail): Promise<MsgUnjailResponse>;
|
|
}
|