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