interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
16 lines (15 loc) • 562 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/auth module
* parameters. The authority defaults to the x/gov module account.
* @name updateParams
* @package cosmos.auth.v1beta1
* @see proto service: cosmos.auth.v1beta1.UpdateParams
*/
exports.updateParams = (0, helper_func_types_1.buildTx)({
msg: tx_1.MsgUpdateParams
});