UNPKG

interchainjs

Version:

InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.

19 lines (18 loc) 747 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getParams = void 0; const helper_func_types_1 = require("../../../../../helper-func-types"); const query_1 = require("./query"); /** * Params queries all parameters of the ICA host submodule. * @name getParams * @package ibc.applications.interchain_accounts.host.v1 * @see proto service: ibc.applications.interchain_accounts.host.v1.Params */ exports.getParams = (0, helper_func_types_1.buildQuery)({ encode: query_1.QueryParamsRequest.encode, decode: query_1.QueryParamsResponse.decode, service: "ibc.applications.interchain_accounts.host.v1.Query", method: "Params", deps: [query_1.QueryParamsRequest, query_1.QueryParamsResponse] });