interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
18 lines (17 loc) • 592 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.updateParams = void 0;
const helper_func_types_1 = require("../../../helper-func-types");
const tx_1 = require("./tx");
/**
* UpdateParams defines a governance operation for updating the x/mint module
* parameters. The authority is defaults to the x/gov module account.
*
* Since: cosmos-sdk 0.47
* @name updateParams
* @package cosmos.mint.v1beta1
* @see proto service: cosmos.mint.v1beta1.UpdateParams
*/
exports.updateParams = (0, helper_func_types_1.buildTx)({
msg: tx_1.MsgUpdateParams
});