interchainjs
Version:
InterchainJS is a JavaScript library for interacting with Cosmos SDK based blockchains.
29 lines (28 loc) • 1.33 kB
JavaScript
import { buildQuery } from "../../../../../helper-func-types";
import { QueryInterchainAccountRequest, QueryInterchainAccountResponse, QueryParamsRequest, QueryParamsResponse } from "./query";
/**
* InterchainAccount returns the interchain account address for a given owner address on a given connection
* @name getInterchainAccount
* @package ibc.applications.interchain_accounts.controller.v1
* @see proto service: ibc.applications.interchain_accounts.controller.v1.InterchainAccount
*/
export const getInterchainAccount = buildQuery({
encode: QueryInterchainAccountRequest.encode,
decode: QueryInterchainAccountResponse.decode,
service: "ibc.applications.interchain_accounts.controller.v1.Query",
method: "InterchainAccount",
deps: [QueryInterchainAccountRequest, QueryInterchainAccountResponse]
});
/**
* Params queries all parameters of the ICA controller submodule.
* @name getParams
* @package ibc.applications.interchain_accounts.controller.v1
* @see proto service: ibc.applications.interchain_accounts.controller.v1.Params
*/
export const getParams = buildQuery({
encode: QueryParamsRequest.encode,
decode: QueryParamsResponse.decode,
service: "ibc.applications.interchain_accounts.controller.v1.Query",
method: "Params",
deps: [QueryParamsRequest, QueryParamsResponse]
});