@@ -300,6 +300,105 @@ paths:
300
300
format : byte
301
301
tags :
302
302
- Query
303
+ /ibc/apps/interchain_accounts/controller/v1/params :
304
+ get :
305
+ summary : Params queries all parameters of the ICA controller submodule.
306
+ operationId : InterchainAccountsControllerParams
307
+ responses :
308
+ ' 200 ' :
309
+ description : A successful response.
310
+ schema :
311
+ type : object
312
+ properties :
313
+ params :
314
+ description : params defines the parameters of the module.
315
+ type : object
316
+ properties :
317
+ controller_enabled :
318
+ type : boolean
319
+ format : boolean
320
+ description : >-
321
+ controller_enabled enables or disables the controller
322
+ submodule.
323
+ description : >-
324
+ QueryParamsResponse is the response type for the Query/Params RPC
325
+ method.
326
+ default :
327
+ description : An unexpected error response
328
+ schema :
329
+ type : object
330
+ properties :
331
+ error :
332
+ type : string
333
+ code :
334
+ type : integer
335
+ format : int32
336
+ message :
337
+ type : string
338
+ details :
339
+ type : array
340
+ items :
341
+ type : object
342
+ properties :
343
+ type_url :
344
+ type : string
345
+ value :
346
+ type : string
347
+ format : byte
348
+ tags :
349
+ - Query
350
+ /ibc/apps/interchain_accounts/host/v1/params :
351
+ get :
352
+ summary : Params queries all parameters of the ICA host submodule.
353
+ operationId : InterchainAccountsHostParams
354
+ responses :
355
+ ' 200 ' :
356
+ description : A successful response.
357
+ schema :
358
+ type : object
359
+ properties :
360
+ params :
361
+ description : params defines the parameters of the module.
362
+ type : object
363
+ properties :
364
+ host_enabled :
365
+ type : boolean
366
+ format : boolean
367
+ description : host_enabled enables or disables the host submodule.
368
+ allow_messages :
369
+ type : array
370
+ items :
371
+ type : string
372
+ description : >-
373
+ allow_messages defines a list of sdk message typeURLs
374
+ allowed to be executed on a host chain.
375
+ description : >-
376
+ QueryParamsResponse is the response type for the Query/Params RPC
377
+ method.
378
+ default :
379
+ description : An unexpected error response
380
+ schema :
381
+ type : object
382
+ properties :
383
+ error :
384
+ type : string
385
+ code :
386
+ type : integer
387
+ format : int32
388
+ message :
389
+ type : string
390
+ details :
391
+ type : array
392
+ items :
393
+ type : object
394
+ properties :
395
+ type_url :
396
+ type : string
397
+ value :
398
+ type : string
399
+ format : byte
400
+ tags :
401
+ - Query
303
402
/ibc/client/v1/params :
304
403
get :
305
404
summary : ClientParams queries all parameters of the ibc client.
@@ -10002,6 +10101,64 @@ definitions:
10002
10101
10003
10102
chain.
10004
10103
description : QueryParamsResponse is the response type for the Query/Params RPC method.
10104
+ ibc.applications.interchain_accounts.controller.v1.Params :
10105
+ type : object
10106
+ properties :
10107
+ controller_enabled :
10108
+ type : boolean
10109
+ format : boolean
10110
+ description : controller_enabled enables or disables the controller submodule.
10111
+ description : |-
10112
+ Params defines the set of on-chain interchain accounts parameters.
10113
+ The following parameters may be used to disable the controller submodule.
10114
+ ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse :
10115
+ type : object
10116
+ properties :
10117
+ params :
10118
+ description : params defines the parameters of the module.
10119
+ type : object
10120
+ properties :
10121
+ controller_enabled :
10122
+ type : boolean
10123
+ format : boolean
10124
+ description : controller_enabled enables or disables the controller submodule.
10125
+ description : QueryParamsResponse is the response type for the Query/Params RPC method.
10126
+ ibc.applications.interchain_accounts.host.v1.Params :
10127
+ type : object
10128
+ properties :
10129
+ host_enabled :
10130
+ type : boolean
10131
+ format : boolean
10132
+ description : host_enabled enables or disables the host submodule.
10133
+ allow_messages :
10134
+ type : array
10135
+ items :
10136
+ type : string
10137
+ description : >-
10138
+ allow_messages defines a list of sdk message typeURLs allowed to be
10139
+ executed on a host chain.
10140
+ description : |-
10141
+ Params defines the set of on-chain interchain accounts parameters.
10142
+ The following parameters may be used to disable the host submodule.
10143
+ ibc.applications.interchain_accounts.host.v1.QueryParamsResponse :
10144
+ type : object
10145
+ properties :
10146
+ params :
10147
+ description : params defines the parameters of the module.
10148
+ type : object
10149
+ properties :
10150
+ host_enabled :
10151
+ type : boolean
10152
+ format : boolean
10153
+ description : host_enabled enables or disables the host submodule.
10154
+ allow_messages :
10155
+ type : array
10156
+ items :
10157
+ type : string
10158
+ description : >-
10159
+ allow_messages defines a list of sdk message typeURLs allowed to
10160
+ be executed on a host chain.
10161
+ description : QueryParamsResponse is the response type for the Query/Params RPC method.
10005
10162
ibc.core.client.v1.ConsensusStateWithHeight :
10006
10163
type : object
10007
10164
properties :
0 commit comments