import { Rpc } from "../../../helpers"; import * as _m0 from "protobufjs/minimal"; 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; } export class MsgClientImpl implements Msg { private readonly rpc: Rpc; constructor(rpc: Rpc) { this.rpc = rpc; this.unjail = this.unjail.bind(this); } unjail(request: MsgUnjail): Promise { const data = MsgUnjail.encode(request).finish(); const promise = this.rpc.request("cosmos.slashing.v1beta1.Msg", "Unjail", data); return promise.then(data => MsgUnjailResponse.decode(new _m0.Reader(data))); } }