Skip to main content
logo

interchain_accounts

The interchain_accounts module is responsible for the implementation of the ICS-27 protocol, which enables cross-chain account management built upon IBC. Chains using the Interchain Accounts module can programmatically create accounts on other chains and control these accounts via IBC transactions.

For more info, visit https://ibc.cosmos.network/main/apps/interchain-accounts/overview.html

Queries

Query (controller) defines the gRPC querier service of the ICA controller submodule.

query.proto
Copy

_6
service Query {
_6
// Params queries all parameters of the ICA controller submodule.
_6
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
_6
option (google.api.http).get = "/ibc/apps/interchain_accounts/controller/v1/params";
_6
}
_6
}

Query (host) defines the gRPC querier service of the ICA host submodule.

query.proto
Copy

_6
service Query {
_6
// Params queries all parameters of the ICA host submodule.
_6
rpc Params(QueryParamsRequest) returns (QueryParamsResponse) {
_6
option (google.api.http).get = "/ibc/apps/interchain_accounts/host/v1/params";
_6
}
_6
}

QueryParamsRequest

QueryParamsRequest is the request type for the Query/Params RPC method.

query.proto
Copy

_1
message QueryParamsRequest {}

QueryParamsResponse

QueryParamsResponse is the response type for the Query/Params RPC method.

query.proto
Copy

_4
message QueryParamsResponse {
_4
// params defines the parameters of the module.
_4
Params params = 1;
_4
}