interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
19 lines (18 loc) • 1.15 kB
TypeScript
import { MsgUnjail, MsgUpdateParams } from "./tx";
/**
* 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.
* @name unjail
* @package cosmos.slashing.v1beta1
* @see proto service: cosmos.slashing.v1beta1.Unjail
*/
export declare const unjail: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgUnjail | MsgUnjail[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
/**
* UpdateParams defines a governance operation for updating the x/slashing module
* parameters. The authority defaults to the x/gov module account.
* @name updateParams
* @package cosmos.slashing.v1beta1
* @see proto service: cosmos.slashing.v1beta1.UpdateParams
*/
export declare const updateParams: (client: import("@interchainjs/cosmos").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;