interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
10 lines (9 loc) • 572 B
TypeScript
import { MsgUpdateParams } from "./tx";
/**
* UpdateParams defines a governance operation for updating the x/consensus module parameters.
* The authority is defined in the keeper.
* @name updateParams
* @package cosmos.consensus.v1
* @see proto service: cosmos.consensus.v1.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>;