interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
12 lines (11 loc) • 616 B
TypeScript
import { MsgUpdateParams } from "./tx";
/**
* UpdateParams defines a (governance) operation for updating the x/auth module
* parameters. The authority defaults to the x/gov module account.
*
* Since: cosmos-sdk 0.47
* @name updateParams
* @package cosmos.auth.v1beta1
* @see proto service: cosmos.auth.v1beta1.UpdateParams
*/
export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;