diff --git a/client/docs/config.json b/client/docs/config.json index 6b765d59db..44aa543a89 100644 --- a/client/docs/config.json +++ b/client/docs/config.json @@ -181,10 +181,10 @@ } }, { - "url": "./tmp-swagger-gen/ibc/applications/interchain_accounts/host/v1/query.swagger.json", + "url": "./tmp-swagger-gen/icaauth/v1/query.swagger.json", "operationIds": { "rename": { - "Params": "InterchainAccountsHostParams" + "Params": "IcaauthParams" } } } diff --git a/client/docs/swagger-ui/swagger.yaml b/client/docs/swagger-ui/swagger.yaml index 0d716df3e3..78f872b4da 100644 --- a/client/docs/swagger-ui/swagger.yaml +++ b/client/docs/swagger-ui/swagger.yaml @@ -43719,10 +43719,62 @@ paths: format: byte tags: - Query - /ibc/apps/interchain_accounts/host/v1/params: + /cronos/icaauth/v1/interchain_account_address/{connection_id}/{owner}: get: - summary: Params queries all parameters of the ICA host submodule. - operationId: InterchainAccountsHostParams + summary: >- + InterchainAccountAddress queries the interchain account address for + given + + `connection_id` and `owner` + operationId: InterchainAccountAddress + responses: + '200': + description: A successful response. + schema: + type: object + properties: + interchain_account_address: + type: string + description: |- + QueryInterchainAccountAddressResponse defines the response for the + InterchainAccountAddress query. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: connection_id + in: path + required: true + type: string + - name: owner + in: path + required: true + type: string + tags: + - Query + /cronos/icaauth/v1/params: + get: + summary: Parameters queries the parameters of the module. + operationId: IcaauthParams responses: '200': description: A successful response. @@ -43730,21 +43782,19 @@ paths: type: object properties: params: - description: params defines the parameters of the module. + description: params holds all the parameters of this module. type: object properties: - host_enabled: - type: boolean - description: host_enabled enables or disables the host submodule. - allow_messages: - type: array - items: - type: string - description: >- - allow_messages defines a list of sdk message typeURLs - allowed to be executed on a host chain. + min_timeout_duration: + type: string + title: >- + min_timeout_duration defines the minimum value of packet + timeout when + + submitting transactions to host chain on behalf of + interchain account description: >- - QueryParamsResponse is the response type for the Query/Params RPC + QueryParamsResponse is response type for the Query/Params RPC method. default: description: An unexpected error response. @@ -71090,37 +71140,36 @@ definitions: type: boolean description: controller_enabled enables or disables the controller submodule. description: QueryParamsResponse is the response type for the Query/Params RPC method. - ibc.applications.interchain_accounts.host.v1.Params: + icaauth.v1.Params: type: object properties: - host_enabled: - type: boolean - description: host_enabled enables or disables the host submodule. - allow_messages: - type: array - items: - type: string - description: >- - allow_messages defines a list of sdk message typeURLs allowed to be - executed on a host chain. + min_timeout_duration: + type: string + title: |- + min_timeout_duration defines the minimum value of packet timeout when + submitting transactions to host chain on behalf of interchain account + description: Params defines the parameters for the module. + icaauth.v1.QueryInterchainAccountAddressResponse: + type: object + properties: + interchain_account_address: + type: string description: |- - Params defines the set of on-chain interchain accounts parameters. - The following parameters may be used to disable the host submodule. - ibc.applications.interchain_accounts.host.v1.QueryParamsResponse: + QueryInterchainAccountAddressResponse defines the response for the + InterchainAccountAddress query. + icaauth.v1.QueryParamsResponse: type: object properties: params: - description: params defines the parameters of the module. + description: params holds all the parameters of this module. type: object properties: - host_enabled: - type: boolean - description: host_enabled enables or disables the host submodule. - allow_messages: - type: array - items: - type: string - description: >- - allow_messages defines a list of sdk message typeURLs allowed to - be executed on a host chain. - description: QueryParamsResponse is the response type for the Query/Params RPC method. + min_timeout_duration: + type: string + title: >- + min_timeout_duration defines the minimum value of packet timeout + when + + submitting transactions to host chain on behalf of interchain + account + description: QueryParamsResponse is response type for the Query/Params RPC method.