interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
13 lines (12 loc) • 427 B
JavaScript
import { buildTx } from "../../../helper-func-types";
import { MsgUpdateParams } from "./tx";
/**
* UpdateParams defines a governance operation for updating the x/mint module
* parameters. The authority is defaults to the x/gov module account.
* @name updateParams
* @package cosmos.mint.v1beta1
* @see proto service: cosmos.mint.v1beta1.UpdateParams
*/
export const updateParams = buildTx({
msg: MsgUpdateParams
});