injectivejs 1.11.13 → 1.11.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (520) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  4. package/cosmos/auth/v1beta1/auth.js +28 -0
  5. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  6. package/cosmos/auth/v1beta1/query.js +148 -0
  7. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
  8. package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  9. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  10. package/cosmos/authz/v1beta1/authz.js +27 -0
  11. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  12. package/cosmos/authz/v1beta1/tx.js +40 -0
  13. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
  14. package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  15. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  16. package/cosmos/bank/v1beta1/bank.js +48 -0
  17. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  18. package/cosmos/bank/v1beta1/query.js +199 -0
  19. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
  20. package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  21. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  22. package/cosmos/bank/v1beta1/tx.js +61 -0
  23. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
  24. package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  25. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  26. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  27. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  28. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  29. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  30. package/cosmos/base/v1beta1/coin.js +32 -0
  31. package/cosmos/bundle.d.ts +8 -8
  32. package/cosmos/bundle.js +15 -15
  33. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  34. package/cosmos/crypto/ed25519/keys.js +17 -0
  35. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  36. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  37. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  38. package/cosmos/crypto/secp256k1/keys.js +16 -0
  39. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  40. package/cosmos/crypto/secp256r1/keys.js +12 -0
  41. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  42. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  43. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  44. package/cosmos/distribution/v1beta1/tx.js +109 -0
  45. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
  46. package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  47. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  48. package/cosmos/feegrant/v1beta1/tx.js +41 -0
  49. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
  50. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  51. package/cosmos/gov/v1/gov.d.ts +343 -80
  52. package/cosmos/gov/v1/gov.js +61 -0
  53. package/cosmos/gov/v1/tx.d.ts +376 -65
  54. package/cosmos/gov/v1/tx.js +96 -0
  55. package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
  56. package/cosmos/gov/v1/tx.rpc.func.js +48 -13
  57. package/cosmos/gov/v1beta1/gov.d.ts +293 -61
  58. package/cosmos/gov/v1beta1/gov.js +59 -0
  59. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  60. package/cosmos/gov/v1beta1/query.js +97 -0
  61. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
  62. package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  63. package/cosmos/gov/v1beta1/tx.d.ts +213 -37
  64. package/cosmos/gov/v1beta1/tx.js +53 -0
  65. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
  66. package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  67. package/cosmos/group/v1/tx.d.ts +804 -155
  68. package/cosmos/group/v1/tx.js +168 -0
  69. package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
  70. package/cosmos/group/v1/tx.rpc.func.js +84 -14
  71. package/cosmos/group/v1/types.d.ts +398 -83
  72. package/cosmos/group/v1/types.js +82 -0
  73. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  74. package/cosmos/ics23/v1/proofs.js +138 -0
  75. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  76. package/cosmos/staking/v1beta1/query.js +186 -0
  77. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
  78. package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  79. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  80. package/cosmos/staking/v1beta1/staking.js +153 -0
  81. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  82. package/cosmos/staking/v1beta1/tx.js +96 -0
  83. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
  84. package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  85. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  86. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  87. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  88. package/cosmos/tx/v1beta1/service.js +145 -0
  89. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
  90. package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  91. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  92. package/cosmos/tx/v1beta1/tx.js +99 -0
  93. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  94. package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  95. package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
  96. package/cosmos/vesting/v1beta1/tx.js +48 -0
  97. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
  98. package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  99. package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
  100. package/cosmos/vesting/v1beta1/vesting.js +45 -0
  101. package/cosmos_proto/cosmos.d.ts +31 -0
  102. package/cosmos_proto/cosmos.js +19 -0
  103. package/cosmwasm/bundle.d.ts +2 -2
  104. package/cosmwasm/bundle.js +3 -3
  105. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  106. package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  107. package/cosmwasm/wasm/v1/query.d.ts +615 -82
  108. package/cosmwasm/wasm/v1/query.js +195 -0
  109. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
  110. package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  111. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  112. package/cosmwasm/wasm/v1/tx.js +242 -0
  113. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
  114. package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  115. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  116. package/cosmwasm/wasm/v1/types.js +49 -0
  117. package/esm/binary.js +1 -1
  118. package/esm/cosmos/auth/v1beta1/auth.js +28 -0
  119. package/esm/cosmos/auth/v1beta1/query.js +148 -0
  120. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  121. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  122. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  123. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  124. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  125. package/esm/cosmos/bank/v1beta1/query.js +199 -0
  126. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  127. package/esm/cosmos/bank/v1beta1/tx.js +61 -0
  128. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  129. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  130. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  131. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  132. package/esm/cosmos/bundle.js +8 -8
  133. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  134. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  135. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  136. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  137. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  138. package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
  139. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  140. package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
  141. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  142. package/esm/cosmos/gov/v1/gov.js +61 -0
  143. package/esm/cosmos/gov/v1/tx.js +96 -0
  144. package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
  145. package/esm/cosmos/gov/v1beta1/gov.js +59 -0
  146. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  147. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  148. package/esm/cosmos/gov/v1beta1/tx.js +53 -0
  149. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  150. package/esm/cosmos/group/v1/tx.js +168 -0
  151. package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
  152. package/esm/cosmos/group/v1/types.js +82 -0
  153. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  154. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  155. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  156. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  157. package/esm/cosmos/staking/v1beta1/tx.js +96 -0
  158. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  159. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  160. package/esm/cosmos/tx/v1beta1/service.js +145 -0
  161. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  162. package/esm/cosmos/tx/v1beta1/tx.js +99 -0
  163. package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  164. package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
  165. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  166. package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
  167. package/esm/cosmos_proto/cosmos.js +19 -0
  168. package/esm/cosmwasm/bundle.js +2 -2
  169. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  170. package/esm/cosmwasm/wasm/v1/query.js +195 -0
  171. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  172. package/esm/cosmwasm/wasm/v1/tx.js +242 -0
  173. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  174. package/esm/cosmwasm/wasm/v1/types.js +49 -0
  175. package/esm/extern.js +1 -1
  176. package/esm/google/api/http.js +283 -0
  177. package/esm/google/protobuf/any.js +90 -0
  178. package/esm/google/protobuf/descriptor.js +215 -0
  179. package/esm/google/protobuf/duration.js +63 -0
  180. package/esm/google/protobuf/timestamp.js +94 -0
  181. package/esm/helper-func-types.js +1 -1
  182. package/esm/helpers.js +1 -1
  183. package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
  184. package/esm/ibc/applications/transfer/v1/tx.js +27 -0
  185. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  186. package/esm/ibc/bundle.js +1 -1
  187. package/esm/ibc/core/channel/v1/channel.js +70 -0
  188. package/esm/ibc/core/channel/v1/tx.js +242 -0
  189. package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  190. package/esm/ibc/core/channel/v1/upgrade.js +25 -0
  191. package/esm/ibc/core/client/v1/client.js +45 -0
  192. package/esm/ibc/core/client/v1/tx.js +90 -0
  193. package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
  194. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  195. package/esm/ibc/core/connection/v1/connection.js +47 -0
  196. package/esm/ibc/core/connection/v1/tx.js +66 -0
  197. package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  198. package/esm/index.js +1 -1
  199. package/esm/injective/auction/v1beta1/auction.js +30 -0
  200. package/esm/injective/auction/v1beta1/genesis.js +6 -0
  201. package/esm/injective/auction/v1beta1/query.js +52 -0
  202. package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
  203. package/esm/injective/auction/v1beta1/tx.js +21 -0
  204. package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  205. package/esm/injective/bundle.js +14 -14
  206. package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  207. package/esm/injective/exchange/v1beta1/authz.js +58 -0
  208. package/esm/injective/exchange/v1beta1/events.js +180 -0
  209. package/esm/injective/exchange/v1beta1/exchange.js +263 -0
  210. package/esm/injective/exchange/v1beta1/genesis.js +89 -0
  211. package/esm/injective/exchange/v1beta1/proposal.js +113 -0
  212. package/esm/injective/exchange/v1beta1/query.js +864 -0
  213. package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  214. package/esm/injective/exchange/v1beta1/tx.js +487 -0
  215. package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  216. package/esm/injective/insurance/v1beta1/events.js +25 -0
  217. package/esm/injective/insurance/v1beta1/genesis.js +6 -0
  218. package/esm/injective/insurance/v1beta1/insurance.js +15 -0
  219. package/esm/injective/insurance/v1beta1/query.js +84 -0
  220. package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  221. package/esm/injective/insurance/v1beta1/tx.js +46 -0
  222. package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  223. package/esm/injective/ocr/v1beta1/genesis.js +41 -0
  224. package/esm/injective/ocr/v1beta1/ocr.js +108 -0
  225. package/esm/injective/ocr/v1beta1/query.js +70 -0
  226. package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  227. package/esm/injective/ocr/v1beta1/tx.js +90 -0
  228. package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  229. package/esm/injective/oracle/v1beta1/events.js +56 -0
  230. package/esm/injective/oracle/v1beta1/genesis.js +11 -0
  231. package/esm/injective/oracle/v1beta1/oracle.js +122 -0
  232. package/esm/injective/oracle/v1beta1/proposal.js +55 -0
  233. package/esm/injective/oracle/v1beta1/query.js +240 -0
  234. package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  235. package/esm/injective/oracle/v1beta1/tx.js +93 -0
  236. package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  237. package/esm/injective/peggy/v1/attestation.js +31 -0
  238. package/esm/injective/peggy/v1/batch.js +12 -0
  239. package/esm/injective/peggy/v1/events.js +85 -0
  240. package/esm/injective/peggy/v1/genesis.js +6 -0
  241. package/esm/injective/peggy/v1/msgs.js +223 -0
  242. package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
  243. package/esm/injective/peggy/v1/params.js +5 -0
  244. package/esm/injective/peggy/v1/pool.js +11 -0
  245. package/esm/injective/peggy/v1/proposal.js +10 -0
  246. package/esm/injective/peggy/v1/query.js +214 -0
  247. package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
  248. package/esm/injective/peggy/v1/types.js +37 -0
  249. package/esm/injective/permissions/v1beta1/events.js +5 -0
  250. package/esm/injective/permissions/v1beta1/genesis.js +6 -0
  251. package/esm/injective/permissions/v1beta1/params.js +6 -0
  252. package/esm/injective/permissions/v1beta1/permissions.js +33 -0
  253. package/esm/injective/permissions/v1beta1/query.js +74 -0
  254. package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  255. package/esm/injective/permissions/v1beta1/tx.js +90 -0
  256. package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  257. package/esm/injective/stream/v1beta1/query.js +110 -0
  258. package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  259. package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
  260. package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
  261. package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
  262. package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
  263. package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  264. package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
  265. package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  266. package/esm/injective/types/v1beta1/account.js +7 -0
  267. package/esm/injective/types/v1beta1/tx_ext.js +5 -0
  268. package/esm/injective/types/v1beta1/tx_response.js +13 -0
  269. package/esm/injective/wasmx/v1/events.js +15 -0
  270. package/esm/injective/wasmx/v1/genesis.js +11 -0
  271. package/esm/injective/wasmx/v1/proposal.js +25 -0
  272. package/esm/injective/wasmx/v1/query.js +39 -0
  273. package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
  274. package/esm/injective/wasmx/v1/tx.js +63 -0
  275. package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
  276. package/esm/injective/wasmx/v1/wasmx.js +10 -0
  277. package/esm/registry.js +1 -1
  278. package/esm/tendermint/abci/types.js +255 -0
  279. package/esm/tendermint/crypto/keys.js +6 -0
  280. package/esm/tendermint/crypto/proof.js +29 -0
  281. package/esm/tendermint/types/block.js +5 -0
  282. package/esm/tendermint/types/evidence.js +22 -0
  283. package/esm/tendermint/types/params.js +46 -0
  284. package/esm/tendermint/types/types.js +87 -0
  285. package/esm/tendermint/types/validator.js +15 -0
  286. package/esm/tendermint/version/types.js +16 -0
  287. package/esm/types.js +1 -1
  288. package/esm/utf8.js +1 -1
  289. package/esm/varint.js +1 -1
  290. package/extern.d.ts +1 -1
  291. package/extern.js +1 -1
  292. package/google/api/http.d.ts +343 -14
  293. package/google/api/http.js +283 -0
  294. package/google/protobuf/any.d.ts +102 -2
  295. package/google/protobuf/any.js +90 -0
  296. package/google/protobuf/descriptor.d.ts +715 -86
  297. package/google/protobuf/descriptor.js +215 -0
  298. package/google/protobuf/duration.d.ts +69 -0
  299. package/google/protobuf/duration.js +63 -0
  300. package/google/protobuf/timestamp.d.ts +100 -0
  301. package/google/protobuf/timestamp.js +94 -0
  302. package/helper-func-types.d.ts +1 -1
  303. package/helper-func-types.js +1 -1
  304. package/helpers.d.ts +1 -1
  305. package/helpers.js +1 -1
  306. package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
  307. package/ibc/applications/transfer/v1/transfer.js +24 -0
  308. package/ibc/applications/transfer/v1/tx.d.ts +125 -26
  309. package/ibc/applications/transfer/v1/tx.js +27 -0
  310. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
  311. package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  312. package/ibc/bundle.d.ts +1 -1
  313. package/ibc/bundle.js +2 -2
  314. package/ibc/core/channel/v1/channel.d.ts +316 -64
  315. package/ibc/core/channel/v1/channel.js +70 -0
  316. package/ibc/core/channel/v1/tx.d.ts +676 -70
  317. package/ibc/core/channel/v1/tx.js +242 -0
  318. package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
  319. package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  320. package/ibc/core/channel/v1/upgrade.d.ts +55 -4
  321. package/ibc/core/channel/v1/upgrade.js +25 -0
  322. package/ibc/core/client/v1/client.d.ts +129 -18
  323. package/ibc/core/client/v1/client.js +45 -0
  324. package/ibc/core/client/v1/tx.d.ts +338 -56
  325. package/ibc/core/client/v1/tx.js +90 -0
  326. package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
  327. package/ibc/core/client/v1/tx.rpc.func.js +42 -7
  328. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  329. package/ibc/core/commitment/v1/commitment.js +25 -0
  330. package/ibc/core/connection/v1/connection.d.ts +197 -36
  331. package/ibc/core/connection/v1/connection.js +47 -0
  332. package/ibc/core/connection/v1/tx.d.ts +250 -56
  333. package/ibc/core/connection/v1/tx.js +66 -0
  334. package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
  335. package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  336. package/index.d.ts +1 -1
  337. package/index.js +1 -1
  338. package/injective/auction/v1beta1/auction.d.ts +168 -26
  339. package/injective/auction/v1beta1/auction.js +30 -0
  340. package/injective/auction/v1beta1/genesis.d.ts +48 -12
  341. package/injective/auction/v1beta1/genesis.js +6 -0
  342. package/injective/auction/v1beta1/query.d.ts +138 -10
  343. package/injective/auction/v1beta1/query.js +52 -0
  344. package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
  345. package/injective/auction/v1beta1/query.rpc.func.js +23 -3
  346. package/injective/auction/v1beta1/tx.d.ts +81 -8
  347. package/injective/auction/v1beta1/tx.js +21 -0
  348. package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
  349. package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  350. package/injective/bundle.d.ts +14 -14
  351. package/injective/bundle.js +18 -18
  352. package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
  353. package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  354. package/injective/exchange/v1beta1/authz.d.ts +174 -6
  355. package/injective/exchange/v1beta1/authz.js +58 -0
  356. package/injective/exchange/v1beta1/events.d.ts +546 -2
  357. package/injective/exchange/v1beta1/events.js +180 -0
  358. package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
  359. package/injective/exchange/v1beta1/exchange.js +263 -0
  360. package/injective/exchange/v1beta1/genesis.d.ts +357 -38
  361. package/injective/exchange/v1beta1/genesis.js +89 -0
  362. package/injective/exchange/v1beta1/proposal.d.ts +589 -94
  363. package/injective/exchange/v1beta1/proposal.js +113 -0
  364. package/injective/exchange/v1beta1/query.d.ts +2162 -136
  365. package/injective/exchange/v1beta1/query.js +864 -0
  366. package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
  367. package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  368. package/injective/exchange/v1beta1/tx.d.ts +1503 -170
  369. package/injective/exchange/v1beta1/tx.js +487 -0
  370. package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
  371. package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  372. package/injective/insurance/v1beta1/events.d.ts +111 -12
  373. package/injective/insurance/v1beta1/events.js +25 -0
  374. package/injective/insurance/v1beta1/genesis.d.ts +30 -6
  375. package/injective/insurance/v1beta1/genesis.js +6 -0
  376. package/injective/insurance/v1beta1/insurance.d.ts +117 -24
  377. package/injective/insurance/v1beta1/insurance.js +15 -0
  378. package/injective/insurance/v1beta1/query.d.ts +162 -2
  379. package/injective/insurance/v1beta1/query.js +84 -0
  380. package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
  381. package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  382. package/injective/insurance/v1beta1/tx.d.ts +186 -24
  383. package/injective/insurance/v1beta1/tx.js +46 -0
  384. package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
  385. package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  386. package/injective/ocr/v1beta1/genesis.d.ts +171 -18
  387. package/injective/ocr/v1beta1/genesis.js +41 -0
  388. package/injective/ocr/v1beta1/ocr.d.ts +514 -68
  389. package/injective/ocr/v1beta1/ocr.js +108 -0
  390. package/injective/ocr/v1beta1/query.d.ts +210 -0
  391. package/injective/ocr/v1beta1/query.js +70 -0
  392. package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
  393. package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  394. package/injective/ocr/v1beta1/tx.d.ts +360 -30
  395. package/injective/ocr/v1beta1/tx.js +90 -0
  396. package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
  397. package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  398. package/injective/oracle/v1beta1/events.d.ts +174 -4
  399. package/injective/oracle/v1beta1/events.js +56 -0
  400. package/injective/oracle/v1beta1/genesis.d.ts +39 -4
  401. package/injective/oracle/v1beta1/genesis.js +11 -0
  402. package/injective/oracle/v1beta1/oracle.d.ts +514 -52
  403. package/injective/oracle/v1beta1/oracle.js +122 -0
  404. package/injective/oracle/v1beta1/proposal.d.ts +165 -0
  405. package/injective/oracle/v1beta1/proposal.js +55 -0
  406. package/injective/oracle/v1beta1/query.d.ts +502 -0
  407. package/injective/oracle/v1beta1/query.js +240 -0
  408. package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
  409. package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  410. package/injective/oracle/v1beta1/tx.d.ts +251 -10
  411. package/injective/oracle/v1beta1/tx.js +93 -0
  412. package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
  413. package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  414. package/injective/peggy/v1/attestation.d.ts +43 -0
  415. package/injective/peggy/v1/attestation.js +31 -0
  416. package/injective/peggy/v1/batch.d.ts +36 -4
  417. package/injective/peggy/v1/batch.js +12 -0
  418. package/injective/peggy/v1/events.d.ts +255 -0
  419. package/injective/peggy/v1/events.js +85 -0
  420. package/injective/peggy/v1/genesis.d.ts +18 -2
  421. package/injective/peggy/v1/genesis.js +6 -0
  422. package/injective/peggy/v1/msgs.d.ts +473 -10
  423. package/injective/peggy/v1/msgs.js +223 -0
  424. package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
  425. package/injective/peggy/v1/msgs.rpc.func.js +73 -3
  426. package/injective/peggy/v1/params.d.ts +15 -0
  427. package/injective/peggy/v1/params.js +5 -0
  428. package/injective/peggy/v1/pool.d.ts +33 -2
  429. package/injective/peggy/v1/pool.js +11 -0
  430. package/injective/peggy/v1/proposal.d.ts +30 -0
  431. package/injective/peggy/v1/proposal.js +10 -0
  432. package/injective/peggy/v1/query.d.ts +626 -0
  433. package/injective/peggy/v1/query.js +214 -0
  434. package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
  435. package/injective/peggy/v1/query.rpc.func.js +110 -5
  436. package/injective/peggy/v1/types.d.ts +85 -6
  437. package/injective/peggy/v1/types.js +37 -0
  438. package/injective/permissions/v1beta1/events.d.ts +15 -0
  439. package/injective/permissions/v1beta1/events.js +5 -0
  440. package/injective/permissions/v1beta1/genesis.d.ts +24 -4
  441. package/injective/permissions/v1beta1/genesis.js +6 -0
  442. package/injective/permissions/v1beta1/params.d.ts +18 -2
  443. package/injective/permissions/v1beta1/params.js +6 -0
  444. package/injective/permissions/v1beta1/permissions.d.ts +117 -12
  445. package/injective/permissions/v1beta1/permissions.js +33 -0
  446. package/injective/permissions/v1beta1/query.d.ts +180 -6
  447. package/injective/permissions/v1beta1/query.js +74 -0
  448. package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
  449. package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  450. package/injective/permissions/v1beta1/tx.d.ts +318 -16
  451. package/injective/permissions/v1beta1/tx.js +90 -0
  452. package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
  453. package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  454. package/injective/stream/v1beta1/query.d.ts +336 -2
  455. package/injective/stream/v1beta1/query.js +110 -0
  456. package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
  457. package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  458. package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
  459. package/injective/tokenfactory/v1beta1/events.js +25 -0
  460. package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
  461. package/injective/tokenfactory/v1beta1/genesis.js +14 -0
  462. package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
  463. package/injective/tokenfactory/v1beta1/params.js +6 -0
  464. package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
  465. package/injective/tokenfactory/v1beta1/query.js +54 -0
  466. package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
  467. package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  468. package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
  469. package/injective/tokenfactory/v1beta1/tx.js +83 -0
  470. package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
  471. package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  472. package/injective/types/v1beta1/account.d.ts +13 -0
  473. package/injective/types/v1beta1/account.js +7 -0
  474. package/injective/types/v1beta1/tx_ext.d.ts +15 -0
  475. package/injective/types/v1beta1/tx_ext.js +5 -0
  476. package/injective/types/v1beta1/tx_response.d.ts +31 -2
  477. package/injective/types/v1beta1/tx_response.js +13 -0
  478. package/injective/wasmx/v1/events.d.ts +45 -0
  479. package/injective/wasmx/v1/events.js +15 -0
  480. package/injective/wasmx/v1/genesis.d.ts +39 -4
  481. package/injective/wasmx/v1/genesis.js +11 -0
  482. package/injective/wasmx/v1/proposal.d.ts +99 -8
  483. package/injective/wasmx/v1/proposal.js +25 -0
  484. package/injective/wasmx/v1/query.d.ts +85 -2
  485. package/injective/wasmx/v1/query.js +39 -0
  486. package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
  487. package/injective/wasmx/v1/query.rpc.func.js +18 -3
  488. package/injective/wasmx/v1/tx.d.ts +253 -26
  489. package/injective/wasmx/v1/tx.js +63 -0
  490. package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
  491. package/injective/wasmx/v1/tx.rpc.func.js +30 -0
  492. package/injective/wasmx/v1/wasmx.d.ts +60 -10
  493. package/injective/wasmx/v1/wasmx.js +10 -0
  494. package/package.json +9 -9
  495. package/registry.d.ts +1 -1
  496. package/registry.js +1 -1
  497. package/tendermint/abci/types.d.ts +971 -98
  498. package/tendermint/abci/types.js +255 -0
  499. package/tendermint/crypto/keys.d.ts +18 -2
  500. package/tendermint/crypto/keys.js +6 -0
  501. package/tendermint/crypto/proof.d.ts +89 -6
  502. package/tendermint/crypto/proof.js +29 -0
  503. package/tendermint/types/block.d.ts +15 -0
  504. package/tendermint/types/block.js +5 -0
  505. package/tendermint/types/evidence.d.ts +66 -4
  506. package/tendermint/types/evidence.js +22 -0
  507. package/tendermint/types/params.d.ts +112 -8
  508. package/tendermint/types/params.js +46 -0
  509. package/tendermint/types/types.d.ts +327 -42
  510. package/tendermint/types/types.js +87 -0
  511. package/tendermint/types/validator.d.ts +45 -0
  512. package/tendermint/types/validator.js +15 -0
  513. package/tendermint/version/types.d.ts +28 -0
  514. package/tendermint/version/types.js +16 -0
  515. package/types.d.ts +1 -1
  516. package/types.js +1 -1
  517. package/utf8.d.ts +1 -1
  518. package/utf8.js +1 -1
  519. package/varint.d.ts +1 -1
  520. package/varint.js +1 -1
@@ -21,6 +21,9 @@ export declare function responseResultTypeToJSON(object: ResponseResultType): st
21
21
  /**
22
22
  * MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
23
23
  * is called by a relayer on Chain A.
24
+ * @name MsgChannelOpenInit
25
+ * @package ibc.core.channel.v1
26
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
24
27
  */
25
28
  export interface MsgChannelOpenInit {
26
29
  portId: string;
@@ -34,6 +37,9 @@ export interface MsgChannelOpenInitProtoMsg {
34
37
  /**
35
38
  * MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
36
39
  * is called by a relayer on Chain A.
40
+ * @name MsgChannelOpenInitAmino
41
+ * @package ibc.core.channel.v1
42
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
37
43
  */
38
44
  export interface MsgChannelOpenInitAmino {
39
45
  port_id: string;
@@ -44,7 +50,12 @@ export interface MsgChannelOpenInitAminoMsg {
44
50
  type: "cosmos-sdk/MsgChannelOpenInit";
45
51
  value: MsgChannelOpenInitAmino;
46
52
  }
47
- /** MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. */
53
+ /**
54
+ * MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
55
+ * @name MsgChannelOpenInitResponse
56
+ * @package ibc.core.channel.v1
57
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
58
+ */
48
59
  export interface MsgChannelOpenInitResponse {
49
60
  channelId: string;
50
61
  version: string;
@@ -53,7 +64,12 @@ export interface MsgChannelOpenInitResponseProtoMsg {
53
64
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse";
54
65
  value: Uint8Array;
55
66
  }
56
- /** MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type. */
67
+ /**
68
+ * MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
69
+ * @name MsgChannelOpenInitResponseAmino
70
+ * @package ibc.core.channel.v1
71
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
72
+ */
57
73
  export interface MsgChannelOpenInitResponseAmino {
58
74
  channel_id: string;
59
75
  version: string;
@@ -66,13 +82,20 @@ export interface MsgChannelOpenInitResponseAminoMsg {
66
82
  * MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
67
83
  * on Chain B. The version field within the Channel field has been deprecated. Its
68
84
  * value will be ignored by core IBC.
85
+ * @name MsgChannelOpenTry
86
+ * @package ibc.core.channel.v1
87
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
69
88
  */
70
89
  export interface MsgChannelOpenTry {
71
90
  portId: string;
72
- /** Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC. */
73
- /** @deprecated */
91
+ /**
92
+ * Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
93
+ * @deprecated
94
+ */
74
95
  previousChannelId: string;
75
- /** NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC. */
96
+ /**
97
+ * NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
98
+ */
76
99
  channel: Channel;
77
100
  counterpartyVersion: string;
78
101
  proofInit: Uint8Array;
@@ -87,13 +110,20 @@ export interface MsgChannelOpenTryProtoMsg {
87
110
  * MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
88
111
  * on Chain B. The version field within the Channel field has been deprecated. Its
89
112
  * value will be ignored by core IBC.
113
+ * @name MsgChannelOpenTryAmino
114
+ * @package ibc.core.channel.v1
115
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
90
116
  */
91
117
  export interface MsgChannelOpenTryAmino {
92
118
  port_id: string;
93
- /** Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC. */
94
- /** @deprecated */
119
+ /**
120
+ * Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
121
+ * @deprecated
122
+ */
95
123
  previous_channel_id: string;
96
- /** NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC. */
124
+ /**
125
+ * NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
126
+ */
97
127
  channel: ChannelAmino;
98
128
  counterparty_version: string;
99
129
  proof_init: string;
@@ -104,7 +134,12 @@ export interface MsgChannelOpenTryAminoMsg {
104
134
  type: "cosmos-sdk/MsgChannelOpenTry";
105
135
  value: MsgChannelOpenTryAmino;
106
136
  }
107
- /** MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. */
137
+ /**
138
+ * MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
139
+ * @name MsgChannelOpenTryResponse
140
+ * @package ibc.core.channel.v1
141
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
142
+ */
108
143
  export interface MsgChannelOpenTryResponse {
109
144
  version: string;
110
145
  channelId: string;
@@ -113,7 +148,12 @@ export interface MsgChannelOpenTryResponseProtoMsg {
113
148
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse";
114
149
  value: Uint8Array;
115
150
  }
116
- /** MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. */
151
+ /**
152
+ * MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
153
+ * @name MsgChannelOpenTryResponseAmino
154
+ * @package ibc.core.channel.v1
155
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
156
+ */
117
157
  export interface MsgChannelOpenTryResponseAmino {
118
158
  version: string;
119
159
  channel_id: string;
@@ -128,6 +168,9 @@ export interface MsgChannelOpenTryResponseAminoMsg {
128
168
  * WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel
129
169
  * in the same block as executing this message otherwise the counterparty will
130
170
  * be incapable of opening.
171
+ * @name MsgChannelOpenAck
172
+ * @package ibc.core.channel.v1
173
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
131
174
  */
132
175
  export interface MsgChannelOpenAck {
133
176
  portId: string;
@@ -148,6 +191,9 @@ export interface MsgChannelOpenAckProtoMsg {
148
191
  * WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel
149
192
  * in the same block as executing this message otherwise the counterparty will
150
193
  * be incapable of opening.
194
+ * @name MsgChannelOpenAckAmino
195
+ * @package ibc.core.channel.v1
196
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
151
197
  */
152
198
  export interface MsgChannelOpenAckAmino {
153
199
  port_id: string;
@@ -162,14 +208,24 @@ export interface MsgChannelOpenAckAminoMsg {
162
208
  type: "cosmos-sdk/MsgChannelOpenAck";
163
209
  value: MsgChannelOpenAckAmino;
164
210
  }
165
- /** MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. */
211
+ /**
212
+ * MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
213
+ * @name MsgChannelOpenAckResponse
214
+ * @package ibc.core.channel.v1
215
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
216
+ */
166
217
  export interface MsgChannelOpenAckResponse {
167
218
  }
168
219
  export interface MsgChannelOpenAckResponseProtoMsg {
169
220
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse";
170
221
  value: Uint8Array;
171
222
  }
172
- /** MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type. */
223
+ /**
224
+ * MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
225
+ * @name MsgChannelOpenAckResponseAmino
226
+ * @package ibc.core.channel.v1
227
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
228
+ */
173
229
  export interface MsgChannelOpenAckResponseAmino {
174
230
  }
175
231
  export interface MsgChannelOpenAckResponseAminoMsg {
@@ -179,6 +235,9 @@ export interface MsgChannelOpenAckResponseAminoMsg {
179
235
  /**
180
236
  * MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
181
237
  * acknowledge the change of channel state to OPEN on Chain A.
238
+ * @name MsgChannelOpenConfirm
239
+ * @package ibc.core.channel.v1
240
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
182
241
  */
183
242
  export interface MsgChannelOpenConfirm {
184
243
  portId: string;
@@ -194,6 +253,9 @@ export interface MsgChannelOpenConfirmProtoMsg {
194
253
  /**
195
254
  * MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
196
255
  * acknowledge the change of channel state to OPEN on Chain A.
256
+ * @name MsgChannelOpenConfirmAmino
257
+ * @package ibc.core.channel.v1
258
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
197
259
  */
198
260
  export interface MsgChannelOpenConfirmAmino {
199
261
  port_id: string;
@@ -209,6 +271,9 @@ export interface MsgChannelOpenConfirmAminoMsg {
209
271
  /**
210
272
  * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
211
273
  * type.
274
+ * @name MsgChannelOpenConfirmResponse
275
+ * @package ibc.core.channel.v1
276
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
212
277
  */
213
278
  export interface MsgChannelOpenConfirmResponse {
214
279
  }
@@ -219,6 +284,9 @@ export interface MsgChannelOpenConfirmResponseProtoMsg {
219
284
  /**
220
285
  * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
221
286
  * type.
287
+ * @name MsgChannelOpenConfirmResponseAmino
288
+ * @package ibc.core.channel.v1
289
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
222
290
  */
223
291
  export interface MsgChannelOpenConfirmResponseAmino {
224
292
  }
@@ -229,6 +297,9 @@ export interface MsgChannelOpenConfirmResponseAminoMsg {
229
297
  /**
230
298
  * MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
231
299
  * to close a channel with Chain B.
300
+ * @name MsgChannelCloseInit
301
+ * @package ibc.core.channel.v1
302
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
232
303
  */
233
304
  export interface MsgChannelCloseInit {
234
305
  portId: string;
@@ -242,6 +313,9 @@ export interface MsgChannelCloseInitProtoMsg {
242
313
  /**
243
314
  * MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
244
315
  * to close a channel with Chain B.
316
+ * @name MsgChannelCloseInitAmino
317
+ * @package ibc.core.channel.v1
318
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
245
319
  */
246
320
  export interface MsgChannelCloseInitAmino {
247
321
  port_id: string;
@@ -252,14 +326,24 @@ export interface MsgChannelCloseInitAminoMsg {
252
326
  type: "cosmos-sdk/MsgChannelCloseInit";
253
327
  value: MsgChannelCloseInitAmino;
254
328
  }
255
- /** MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. */
329
+ /**
330
+ * MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
331
+ * @name MsgChannelCloseInitResponse
332
+ * @package ibc.core.channel.v1
333
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
334
+ */
256
335
  export interface MsgChannelCloseInitResponse {
257
336
  }
258
337
  export interface MsgChannelCloseInitResponseProtoMsg {
259
338
  typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse";
260
339
  value: Uint8Array;
261
340
  }
262
- /** MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type. */
341
+ /**
342
+ * MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
343
+ * @name MsgChannelCloseInitResponseAmino
344
+ * @package ibc.core.channel.v1
345
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
346
+ */
263
347
  export interface MsgChannelCloseInitResponseAmino {
264
348
  }
265
349
  export interface MsgChannelCloseInitResponseAminoMsg {
@@ -269,6 +353,9 @@ export interface MsgChannelCloseInitResponseAminoMsg {
269
353
  /**
270
354
  * MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
271
355
  * to acknowledge the change of channel state to CLOSED on Chain A.
356
+ * @name MsgChannelCloseConfirm
357
+ * @package ibc.core.channel.v1
358
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
272
359
  */
273
360
  export interface MsgChannelCloseConfirm {
274
361
  portId: string;
@@ -285,6 +372,9 @@ export interface MsgChannelCloseConfirmProtoMsg {
285
372
  /**
286
373
  * MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
287
374
  * to acknowledge the change of channel state to CLOSED on Chain A.
375
+ * @name MsgChannelCloseConfirmAmino
376
+ * @package ibc.core.channel.v1
377
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
288
378
  */
289
379
  export interface MsgChannelCloseConfirmAmino {
290
380
  port_id: string;
@@ -301,6 +391,9 @@ export interface MsgChannelCloseConfirmAminoMsg {
301
391
  /**
302
392
  * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
303
393
  * type.
394
+ * @name MsgChannelCloseConfirmResponse
395
+ * @package ibc.core.channel.v1
396
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
304
397
  */
305
398
  export interface MsgChannelCloseConfirmResponse {
306
399
  }
@@ -311,6 +404,9 @@ export interface MsgChannelCloseConfirmResponseProtoMsg {
311
404
  /**
312
405
  * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
313
406
  * type.
407
+ * @name MsgChannelCloseConfirmResponseAmino
408
+ * @package ibc.core.channel.v1
409
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
314
410
  */
315
411
  export interface MsgChannelCloseConfirmResponseAmino {
316
412
  }
@@ -318,7 +414,12 @@ export interface MsgChannelCloseConfirmResponseAminoMsg {
318
414
  type: "cosmos-sdk/MsgChannelCloseConfirmResponse";
319
415
  value: MsgChannelCloseConfirmResponseAmino;
320
416
  }
321
- /** MsgRecvPacket receives incoming IBC packet */
417
+ /**
418
+ * MsgRecvPacket receives incoming IBC packet
419
+ * @name MsgRecvPacket
420
+ * @package ibc.core.channel.v1
421
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacket
422
+ */
322
423
  export interface MsgRecvPacket {
323
424
  packet: Packet;
324
425
  proofCommitment: Uint8Array;
@@ -329,7 +430,12 @@ export interface MsgRecvPacketProtoMsg {
329
430
  typeUrl: "/ibc.core.channel.v1.MsgRecvPacket";
330
431
  value: Uint8Array;
331
432
  }
332
- /** MsgRecvPacket receives incoming IBC packet */
433
+ /**
434
+ * MsgRecvPacket receives incoming IBC packet
435
+ * @name MsgRecvPacketAmino
436
+ * @package ibc.core.channel.v1
437
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacket
438
+ */
333
439
  export interface MsgRecvPacketAmino {
334
440
  packet: PacketAmino;
335
441
  proof_commitment: string;
@@ -340,7 +446,12 @@ export interface MsgRecvPacketAminoMsg {
340
446
  type: "cosmos-sdk/MsgRecvPacket";
341
447
  value: MsgRecvPacketAmino;
342
448
  }
343
- /** MsgRecvPacketResponse defines the Msg/RecvPacket response type. */
449
+ /**
450
+ * MsgRecvPacketResponse defines the Msg/RecvPacket response type.
451
+ * @name MsgRecvPacketResponse
452
+ * @package ibc.core.channel.v1
453
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
454
+ */
344
455
  export interface MsgRecvPacketResponse {
345
456
  result: ResponseResultType;
346
457
  }
@@ -348,7 +459,12 @@ export interface MsgRecvPacketResponseProtoMsg {
348
459
  typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse";
349
460
  value: Uint8Array;
350
461
  }
351
- /** MsgRecvPacketResponse defines the Msg/RecvPacket response type. */
462
+ /**
463
+ * MsgRecvPacketResponse defines the Msg/RecvPacket response type.
464
+ * @name MsgRecvPacketResponseAmino
465
+ * @package ibc.core.channel.v1
466
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
467
+ */
352
468
  export interface MsgRecvPacketResponseAmino {
353
469
  result: ResponseResultType;
354
470
  }
@@ -356,7 +472,12 @@ export interface MsgRecvPacketResponseAminoMsg {
356
472
  type: "cosmos-sdk/MsgRecvPacketResponse";
357
473
  value: MsgRecvPacketResponseAmino;
358
474
  }
359
- /** MsgTimeout receives timed-out packet */
475
+ /**
476
+ * MsgTimeout receives timed-out packet
477
+ * @name MsgTimeout
478
+ * @package ibc.core.channel.v1
479
+ * @see proto type: ibc.core.channel.v1.MsgTimeout
480
+ */
360
481
  export interface MsgTimeout {
361
482
  packet: Packet;
362
483
  proofUnreceived: Uint8Array;
@@ -368,7 +489,12 @@ export interface MsgTimeoutProtoMsg {
368
489
  typeUrl: "/ibc.core.channel.v1.MsgTimeout";
369
490
  value: Uint8Array;
370
491
  }
371
- /** MsgTimeout receives timed-out packet */
492
+ /**
493
+ * MsgTimeout receives timed-out packet
494
+ * @name MsgTimeoutAmino
495
+ * @package ibc.core.channel.v1
496
+ * @see proto type: ibc.core.channel.v1.MsgTimeout
497
+ */
372
498
  export interface MsgTimeoutAmino {
373
499
  packet: PacketAmino;
374
500
  proof_unreceived: string;
@@ -380,7 +506,12 @@ export interface MsgTimeoutAminoMsg {
380
506
  type: "cosmos-sdk/MsgTimeout";
381
507
  value: MsgTimeoutAmino;
382
508
  }
383
- /** MsgTimeoutResponse defines the Msg/Timeout response type. */
509
+ /**
510
+ * MsgTimeoutResponse defines the Msg/Timeout response type.
511
+ * @name MsgTimeoutResponse
512
+ * @package ibc.core.channel.v1
513
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
514
+ */
384
515
  export interface MsgTimeoutResponse {
385
516
  result: ResponseResultType;
386
517
  }
@@ -388,7 +519,12 @@ export interface MsgTimeoutResponseProtoMsg {
388
519
  typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse";
389
520
  value: Uint8Array;
390
521
  }
391
- /** MsgTimeoutResponse defines the Msg/Timeout response type. */
522
+ /**
523
+ * MsgTimeoutResponse defines the Msg/Timeout response type.
524
+ * @name MsgTimeoutResponseAmino
525
+ * @package ibc.core.channel.v1
526
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
527
+ */
392
528
  export interface MsgTimeoutResponseAmino {
393
529
  result: ResponseResultType;
394
530
  }
@@ -396,7 +532,12 @@ export interface MsgTimeoutResponseAminoMsg {
396
532
  type: "cosmos-sdk/MsgTimeoutResponse";
397
533
  value: MsgTimeoutResponseAmino;
398
534
  }
399
- /** MsgTimeoutOnClose timed-out packet upon counterparty channel closure. */
535
+ /**
536
+ * MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
537
+ * @name MsgTimeoutOnClose
538
+ * @package ibc.core.channel.v1
539
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
540
+ */
400
541
  export interface MsgTimeoutOnClose {
401
542
  packet: Packet;
402
543
  proofUnreceived: Uint8Array;
@@ -410,7 +551,12 @@ export interface MsgTimeoutOnCloseProtoMsg {
410
551
  typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose";
411
552
  value: Uint8Array;
412
553
  }
413
- /** MsgTimeoutOnClose timed-out packet upon counterparty channel closure. */
554
+ /**
555
+ * MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
556
+ * @name MsgTimeoutOnCloseAmino
557
+ * @package ibc.core.channel.v1
558
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
559
+ */
414
560
  export interface MsgTimeoutOnCloseAmino {
415
561
  packet: PacketAmino;
416
562
  proof_unreceived: string;
@@ -424,7 +570,12 @@ export interface MsgTimeoutOnCloseAminoMsg {
424
570
  type: "cosmos-sdk/MsgTimeoutOnClose";
425
571
  value: MsgTimeoutOnCloseAmino;
426
572
  }
427
- /** MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. */
573
+ /**
574
+ * MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
575
+ * @name MsgTimeoutOnCloseResponse
576
+ * @package ibc.core.channel.v1
577
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
578
+ */
428
579
  export interface MsgTimeoutOnCloseResponse {
429
580
  result: ResponseResultType;
430
581
  }
@@ -432,7 +583,12 @@ export interface MsgTimeoutOnCloseResponseProtoMsg {
432
583
  typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse";
433
584
  value: Uint8Array;
434
585
  }
435
- /** MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type. */
586
+ /**
587
+ * MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
588
+ * @name MsgTimeoutOnCloseResponseAmino
589
+ * @package ibc.core.channel.v1
590
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
591
+ */
436
592
  export interface MsgTimeoutOnCloseResponseAmino {
437
593
  result: ResponseResultType;
438
594
  }
@@ -440,7 +596,12 @@ export interface MsgTimeoutOnCloseResponseAminoMsg {
440
596
  type: "cosmos-sdk/MsgTimeoutOnCloseResponse";
441
597
  value: MsgTimeoutOnCloseResponseAmino;
442
598
  }
443
- /** MsgAcknowledgement receives incoming IBC acknowledgement */
599
+ /**
600
+ * MsgAcknowledgement receives incoming IBC acknowledgement
601
+ * @name MsgAcknowledgement
602
+ * @package ibc.core.channel.v1
603
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgement
604
+ */
444
605
  export interface MsgAcknowledgement {
445
606
  packet: Packet;
446
607
  acknowledgement: Uint8Array;
@@ -452,7 +613,12 @@ export interface MsgAcknowledgementProtoMsg {
452
613
  typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement";
453
614
  value: Uint8Array;
454
615
  }
455
- /** MsgAcknowledgement receives incoming IBC acknowledgement */
616
+ /**
617
+ * MsgAcknowledgement receives incoming IBC acknowledgement
618
+ * @name MsgAcknowledgementAmino
619
+ * @package ibc.core.channel.v1
620
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgement
621
+ */
456
622
  export interface MsgAcknowledgementAmino {
457
623
  packet: PacketAmino;
458
624
  acknowledgement: string;
@@ -464,7 +630,12 @@ export interface MsgAcknowledgementAminoMsg {
464
630
  type: "cosmos-sdk/MsgAcknowledgement";
465
631
  value: MsgAcknowledgementAmino;
466
632
  }
467
- /** MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. */
633
+ /**
634
+ * MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
635
+ * @name MsgAcknowledgementResponse
636
+ * @package ibc.core.channel.v1
637
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
638
+ */
468
639
  export interface MsgAcknowledgementResponse {
469
640
  result: ResponseResultType;
470
641
  }
@@ -472,7 +643,12 @@ export interface MsgAcknowledgementResponseProtoMsg {
472
643
  typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse";
473
644
  value: Uint8Array;
474
645
  }
475
- /** MsgAcknowledgementResponse defines the Msg/Acknowledgement response type. */
646
+ /**
647
+ * MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
648
+ * @name MsgAcknowledgementResponseAmino
649
+ * @package ibc.core.channel.v1
650
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
651
+ */
476
652
  export interface MsgAcknowledgementResponseAmino {
477
653
  result: ResponseResultType;
478
654
  }
@@ -484,6 +660,9 @@ export interface MsgAcknowledgementResponseAminoMsg {
484
660
  * MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
485
661
  * WARNING: Initializing a channel upgrade in the same block as opening the channel
486
662
  * may result in the counterparty being incapable of opening.
663
+ * @name MsgChannelUpgradeInit
664
+ * @package ibc.core.channel.v1
665
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInit
487
666
  */
488
667
  export interface MsgChannelUpgradeInit {
489
668
  portId: string;
@@ -499,6 +678,9 @@ export interface MsgChannelUpgradeInitProtoMsg {
499
678
  * MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
500
679
  * WARNING: Initializing a channel upgrade in the same block as opening the channel
501
680
  * may result in the counterparty being incapable of opening.
681
+ * @name MsgChannelUpgradeInitAmino
682
+ * @package ibc.core.channel.v1
683
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInit
502
684
  */
503
685
  export interface MsgChannelUpgradeInitAmino {
504
686
  port_id: string;
@@ -510,7 +692,12 @@ export interface MsgChannelUpgradeInitAminoMsg {
510
692
  type: "cosmos-sdk/MsgChannelUpgradeInit";
511
693
  value: MsgChannelUpgradeInitAmino;
512
694
  }
513
- /** MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type */
695
+ /**
696
+ * MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type
697
+ * @name MsgChannelUpgradeInitResponse
698
+ * @package ibc.core.channel.v1
699
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInitResponse
700
+ */
514
701
  export interface MsgChannelUpgradeInitResponse {
515
702
  upgrade: Upgrade;
516
703
  upgradeSequence: bigint;
@@ -519,7 +706,12 @@ export interface MsgChannelUpgradeInitResponseProtoMsg {
519
706
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInitResponse";
520
707
  value: Uint8Array;
521
708
  }
522
- /** MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type */
709
+ /**
710
+ * MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type
711
+ * @name MsgChannelUpgradeInitResponseAmino
712
+ * @package ibc.core.channel.v1
713
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInitResponse
714
+ */
523
715
  export interface MsgChannelUpgradeInitResponseAmino {
524
716
  upgrade: UpgradeAmino;
525
717
  upgrade_sequence: string;
@@ -528,7 +720,12 @@ export interface MsgChannelUpgradeInitResponseAminoMsg {
528
720
  type: "cosmos-sdk/MsgChannelUpgradeInitResponse";
529
721
  value: MsgChannelUpgradeInitResponseAmino;
530
722
  }
531
- /** MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc */
723
+ /**
724
+ * MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc
725
+ * @name MsgChannelUpgradeTry
726
+ * @package ibc.core.channel.v1
727
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTry
728
+ */
532
729
  export interface MsgChannelUpgradeTry {
533
730
  portId: string;
534
731
  channelId: string;
@@ -544,7 +741,12 @@ export interface MsgChannelUpgradeTryProtoMsg {
544
741
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTry";
545
742
  value: Uint8Array;
546
743
  }
547
- /** MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc */
744
+ /**
745
+ * MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc
746
+ * @name MsgChannelUpgradeTryAmino
747
+ * @package ibc.core.channel.v1
748
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTry
749
+ */
548
750
  export interface MsgChannelUpgradeTryAmino {
549
751
  port_id: string;
550
752
  channel_id: string;
@@ -560,7 +762,12 @@ export interface MsgChannelUpgradeTryAminoMsg {
560
762
  type: "cosmos-sdk/MsgChannelUpgradeTry";
561
763
  value: MsgChannelUpgradeTryAmino;
562
764
  }
563
- /** MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type */
765
+ /**
766
+ * MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type
767
+ * @name MsgChannelUpgradeTryResponse
768
+ * @package ibc.core.channel.v1
769
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTryResponse
770
+ */
564
771
  export interface MsgChannelUpgradeTryResponse {
565
772
  upgrade: Upgrade;
566
773
  upgradeSequence: bigint;
@@ -570,7 +777,12 @@ export interface MsgChannelUpgradeTryResponseProtoMsg {
570
777
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTryResponse";
571
778
  value: Uint8Array;
572
779
  }
573
- /** MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type */
780
+ /**
781
+ * MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type
782
+ * @name MsgChannelUpgradeTryResponseAmino
783
+ * @package ibc.core.channel.v1
784
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTryResponse
785
+ */
574
786
  export interface MsgChannelUpgradeTryResponseAmino {
575
787
  upgrade: UpgradeAmino;
576
788
  upgrade_sequence: string;
@@ -580,7 +792,12 @@ export interface MsgChannelUpgradeTryResponseAminoMsg {
580
792
  type: "cosmos-sdk/MsgChannelUpgradeTryResponse";
581
793
  value: MsgChannelUpgradeTryResponseAmino;
582
794
  }
583
- /** MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc */
795
+ /**
796
+ * MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc
797
+ * @name MsgChannelUpgradeAck
798
+ * @package ibc.core.channel.v1
799
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAck
800
+ */
584
801
  export interface MsgChannelUpgradeAck {
585
802
  portId: string;
586
803
  channelId: string;
@@ -594,7 +811,12 @@ export interface MsgChannelUpgradeAckProtoMsg {
594
811
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAck";
595
812
  value: Uint8Array;
596
813
  }
597
- /** MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc */
814
+ /**
815
+ * MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc
816
+ * @name MsgChannelUpgradeAckAmino
817
+ * @package ibc.core.channel.v1
818
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAck
819
+ */
598
820
  export interface MsgChannelUpgradeAckAmino {
599
821
  port_id: string;
600
822
  channel_id: string;
@@ -608,7 +830,12 @@ export interface MsgChannelUpgradeAckAminoMsg {
608
830
  type: "cosmos-sdk/MsgChannelUpgradeAck";
609
831
  value: MsgChannelUpgradeAckAmino;
610
832
  }
611
- /** MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type */
833
+ /**
834
+ * MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type
835
+ * @name MsgChannelUpgradeAckResponse
836
+ * @package ibc.core.channel.v1
837
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAckResponse
838
+ */
612
839
  export interface MsgChannelUpgradeAckResponse {
613
840
  result: ResponseResultType;
614
841
  }
@@ -616,7 +843,12 @@ export interface MsgChannelUpgradeAckResponseProtoMsg {
616
843
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAckResponse";
617
844
  value: Uint8Array;
618
845
  }
619
- /** MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type */
846
+ /**
847
+ * MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type
848
+ * @name MsgChannelUpgradeAckResponseAmino
849
+ * @package ibc.core.channel.v1
850
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAckResponse
851
+ */
620
852
  export interface MsgChannelUpgradeAckResponseAmino {
621
853
  result: ResponseResultType;
622
854
  }
@@ -624,7 +856,12 @@ export interface MsgChannelUpgradeAckResponseAminoMsg {
624
856
  type: "cosmos-sdk/MsgChannelUpgradeAckResponse";
625
857
  value: MsgChannelUpgradeAckResponseAmino;
626
858
  }
627
- /** MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc */
859
+ /**
860
+ * MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc
861
+ * @name MsgChannelUpgradeConfirm
862
+ * @package ibc.core.channel.v1
863
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirm
864
+ */
628
865
  export interface MsgChannelUpgradeConfirm {
629
866
  portId: string;
630
867
  channelId: string;
@@ -639,7 +876,12 @@ export interface MsgChannelUpgradeConfirmProtoMsg {
639
876
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirm";
640
877
  value: Uint8Array;
641
878
  }
642
- /** MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc */
879
+ /**
880
+ * MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc
881
+ * @name MsgChannelUpgradeConfirmAmino
882
+ * @package ibc.core.channel.v1
883
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirm
884
+ */
643
885
  export interface MsgChannelUpgradeConfirmAmino {
644
886
  port_id: string;
645
887
  channel_id: string;
@@ -654,7 +896,12 @@ export interface MsgChannelUpgradeConfirmAminoMsg {
654
896
  type: "cosmos-sdk/MsgChannelUpgradeConfirm";
655
897
  value: MsgChannelUpgradeConfirmAmino;
656
898
  }
657
- /** MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type */
899
+ /**
900
+ * MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type
901
+ * @name MsgChannelUpgradeConfirmResponse
902
+ * @package ibc.core.channel.v1
903
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse
904
+ */
658
905
  export interface MsgChannelUpgradeConfirmResponse {
659
906
  result: ResponseResultType;
660
907
  }
@@ -662,7 +909,12 @@ export interface MsgChannelUpgradeConfirmResponseProtoMsg {
662
909
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse";
663
910
  value: Uint8Array;
664
911
  }
665
- /** MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type */
912
+ /**
913
+ * MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type
914
+ * @name MsgChannelUpgradeConfirmResponseAmino
915
+ * @package ibc.core.channel.v1
916
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse
917
+ */
666
918
  export interface MsgChannelUpgradeConfirmResponseAmino {
667
919
  result: ResponseResultType;
668
920
  }
@@ -670,7 +922,12 @@ export interface MsgChannelUpgradeConfirmResponseAminoMsg {
670
922
  type: "cosmos-sdk/MsgChannelUpgradeConfirmResponse";
671
923
  value: MsgChannelUpgradeConfirmResponseAmino;
672
924
  }
673
- /** MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc */
925
+ /**
926
+ * MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc
927
+ * @name MsgChannelUpgradeOpen
928
+ * @package ibc.core.channel.v1
929
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpen
930
+ */
674
931
  export interface MsgChannelUpgradeOpen {
675
932
  portId: string;
676
933
  channelId: string;
@@ -684,7 +941,12 @@ export interface MsgChannelUpgradeOpenProtoMsg {
684
941
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpen";
685
942
  value: Uint8Array;
686
943
  }
687
- /** MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc */
944
+ /**
945
+ * MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc
946
+ * @name MsgChannelUpgradeOpenAmino
947
+ * @package ibc.core.channel.v1
948
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpen
949
+ */
688
950
  export interface MsgChannelUpgradeOpenAmino {
689
951
  port_id: string;
690
952
  channel_id: string;
@@ -698,21 +960,36 @@ export interface MsgChannelUpgradeOpenAminoMsg {
698
960
  type: "cosmos-sdk/MsgChannelUpgradeOpen";
699
961
  value: MsgChannelUpgradeOpenAmino;
700
962
  }
701
- /** MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type */
963
+ /**
964
+ * MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type
965
+ * @name MsgChannelUpgradeOpenResponse
966
+ * @package ibc.core.channel.v1
967
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpenResponse
968
+ */
702
969
  export interface MsgChannelUpgradeOpenResponse {
703
970
  }
704
971
  export interface MsgChannelUpgradeOpenResponseProtoMsg {
705
972
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse";
706
973
  value: Uint8Array;
707
974
  }
708
- /** MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type */
975
+ /**
976
+ * MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type
977
+ * @name MsgChannelUpgradeOpenResponseAmino
978
+ * @package ibc.core.channel.v1
979
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpenResponse
980
+ */
709
981
  export interface MsgChannelUpgradeOpenResponseAmino {
710
982
  }
711
983
  export interface MsgChannelUpgradeOpenResponseAminoMsg {
712
984
  type: "cosmos-sdk/MsgChannelUpgradeOpenResponse";
713
985
  value: MsgChannelUpgradeOpenResponseAmino;
714
986
  }
715
- /** MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc */
987
+ /**
988
+ * MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc
989
+ * @name MsgChannelUpgradeTimeout
990
+ * @package ibc.core.channel.v1
991
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeout
992
+ */
716
993
  export interface MsgChannelUpgradeTimeout {
717
994
  portId: string;
718
995
  channelId: string;
@@ -725,7 +1002,12 @@ export interface MsgChannelUpgradeTimeoutProtoMsg {
725
1002
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeout";
726
1003
  value: Uint8Array;
727
1004
  }
728
- /** MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc */
1005
+ /**
1006
+ * MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc
1007
+ * @name MsgChannelUpgradeTimeoutAmino
1008
+ * @package ibc.core.channel.v1
1009
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeout
1010
+ */
729
1011
  export interface MsgChannelUpgradeTimeoutAmino {
730
1012
  port_id: string;
731
1013
  channel_id: string;
@@ -738,21 +1020,36 @@ export interface MsgChannelUpgradeTimeoutAminoMsg {
738
1020
  type: "cosmos-sdk/MsgChannelUpgradeTimeout";
739
1021
  value: MsgChannelUpgradeTimeoutAmino;
740
1022
  }
741
- /** MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type */
1023
+ /**
1024
+ * MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type
1025
+ * @name MsgChannelUpgradeTimeoutResponse
1026
+ * @package ibc.core.channel.v1
1027
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse
1028
+ */
742
1029
  export interface MsgChannelUpgradeTimeoutResponse {
743
1030
  }
744
1031
  export interface MsgChannelUpgradeTimeoutResponseProtoMsg {
745
1032
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse";
746
1033
  value: Uint8Array;
747
1034
  }
748
- /** MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type */
1035
+ /**
1036
+ * MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type
1037
+ * @name MsgChannelUpgradeTimeoutResponseAmino
1038
+ * @package ibc.core.channel.v1
1039
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse
1040
+ */
749
1041
  export interface MsgChannelUpgradeTimeoutResponseAmino {
750
1042
  }
751
1043
  export interface MsgChannelUpgradeTimeoutResponseAminoMsg {
752
1044
  type: "cosmos-sdk/MsgChannelUpgradeTimeoutResponse";
753
1045
  value: MsgChannelUpgradeTimeoutResponseAmino;
754
1046
  }
755
- /** MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc */
1047
+ /**
1048
+ * MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc
1049
+ * @name MsgChannelUpgradeCancel
1050
+ * @package ibc.core.channel.v1
1051
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancel
1052
+ */
756
1053
  export interface MsgChannelUpgradeCancel {
757
1054
  portId: string;
758
1055
  channelId: string;
@@ -765,7 +1062,12 @@ export interface MsgChannelUpgradeCancelProtoMsg {
765
1062
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancel";
766
1063
  value: Uint8Array;
767
1064
  }
768
- /** MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc */
1065
+ /**
1066
+ * MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc
1067
+ * @name MsgChannelUpgradeCancelAmino
1068
+ * @package ibc.core.channel.v1
1069
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancel
1070
+ */
769
1071
  export interface MsgChannelUpgradeCancelAmino {
770
1072
  port_id: string;
771
1073
  channel_id: string;
@@ -778,23 +1080,40 @@ export interface MsgChannelUpgradeCancelAminoMsg {
778
1080
  type: "cosmos-sdk/MsgChannelUpgradeCancel";
779
1081
  value: MsgChannelUpgradeCancelAmino;
780
1082
  }
781
- /** MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type */
1083
+ /**
1084
+ * MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type
1085
+ * @name MsgChannelUpgradeCancelResponse
1086
+ * @package ibc.core.channel.v1
1087
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancelResponse
1088
+ */
782
1089
  export interface MsgChannelUpgradeCancelResponse {
783
1090
  }
784
1091
  export interface MsgChannelUpgradeCancelResponseProtoMsg {
785
1092
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse";
786
1093
  value: Uint8Array;
787
1094
  }
788
- /** MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type */
1095
+ /**
1096
+ * MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type
1097
+ * @name MsgChannelUpgradeCancelResponseAmino
1098
+ * @package ibc.core.channel.v1
1099
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancelResponse
1100
+ */
789
1101
  export interface MsgChannelUpgradeCancelResponseAmino {
790
1102
  }
791
1103
  export interface MsgChannelUpgradeCancelResponseAminoMsg {
792
1104
  type: "cosmos-sdk/MsgChannelUpgradeCancelResponse";
793
1105
  value: MsgChannelUpgradeCancelResponseAmino;
794
1106
  }
795
- /** MsgUpdateParams is the MsgUpdateParams request type. */
1107
+ /**
1108
+ * MsgUpdateParams is the MsgUpdateParams request type.
1109
+ * @name MsgUpdateParams
1110
+ * @package ibc.core.channel.v1
1111
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParams
1112
+ */
796
1113
  export interface MsgUpdateParams {
797
- /** authority is the address that controls the module (defaults to x/gov unless overwritten). */
1114
+ /**
1115
+ * authority is the address that controls the module (defaults to x/gov unless overwritten).
1116
+ */
798
1117
  authority: string;
799
1118
  /**
800
1119
  * params defines the channel parameters to update.
@@ -807,9 +1126,16 @@ export interface MsgUpdateParamsProtoMsg {
807
1126
  typeUrl: "/ibc.core.channel.v1.MsgUpdateParams";
808
1127
  value: Uint8Array;
809
1128
  }
810
- /** MsgUpdateParams is the MsgUpdateParams request type. */
1129
+ /**
1130
+ * MsgUpdateParams is the MsgUpdateParams request type.
1131
+ * @name MsgUpdateParamsAmino
1132
+ * @package ibc.core.channel.v1
1133
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParams
1134
+ */
811
1135
  export interface MsgUpdateParamsAmino {
812
- /** authority is the address that controls the module (defaults to x/gov unless overwritten). */
1136
+ /**
1137
+ * authority is the address that controls the module (defaults to x/gov unless overwritten).
1138
+ */
813
1139
  authority: string;
814
1140
  /**
815
1141
  * params defines the channel parameters to update.
@@ -822,21 +1148,36 @@ export interface MsgUpdateParamsAminoMsg {
822
1148
  type: "cosmos-sdk/MsgUpdateParams";
823
1149
  value: MsgUpdateParamsAmino;
824
1150
  }
825
- /** MsgUpdateParamsResponse defines the MsgUpdateParams response type. */
1151
+ /**
1152
+ * MsgUpdateParamsResponse defines the MsgUpdateParams response type.
1153
+ * @name MsgUpdateParamsResponse
1154
+ * @package ibc.core.channel.v1
1155
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParamsResponse
1156
+ */
826
1157
  export interface MsgUpdateParamsResponse {
827
1158
  }
828
1159
  export interface MsgUpdateParamsResponseProtoMsg {
829
1160
  typeUrl: "/ibc.core.channel.v1.MsgUpdateParamsResponse";
830
1161
  value: Uint8Array;
831
1162
  }
832
- /** MsgUpdateParamsResponse defines the MsgUpdateParams response type. */
1163
+ /**
1164
+ * MsgUpdateParamsResponse defines the MsgUpdateParams response type.
1165
+ * @name MsgUpdateParamsResponseAmino
1166
+ * @package ibc.core.channel.v1
1167
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParamsResponse
1168
+ */
833
1169
  export interface MsgUpdateParamsResponseAmino {
834
1170
  }
835
1171
  export interface MsgUpdateParamsResponseAminoMsg {
836
1172
  type: "cosmos-sdk/MsgUpdateParamsResponse";
837
1173
  value: MsgUpdateParamsResponseAmino;
838
1174
  }
839
- /** MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. */
1175
+ /**
1176
+ * MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.
1177
+ * @name MsgPruneAcknowledgements
1178
+ * @package ibc.core.channel.v1
1179
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgements
1180
+ */
840
1181
  export interface MsgPruneAcknowledgements {
841
1182
  portId: string;
842
1183
  channelId: string;
@@ -847,7 +1188,12 @@ export interface MsgPruneAcknowledgementsProtoMsg {
847
1188
  typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgements";
848
1189
  value: Uint8Array;
849
1190
  }
850
- /** MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc. */
1191
+ /**
1192
+ * MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.
1193
+ * @name MsgPruneAcknowledgementsAmino
1194
+ * @package ibc.core.channel.v1
1195
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgements
1196
+ */
851
1197
  export interface MsgPruneAcknowledgementsAmino {
852
1198
  port_id: string;
853
1199
  channel_id: string;
@@ -858,28 +1204,53 @@ export interface MsgPruneAcknowledgementsAminoMsg {
858
1204
  type: "cosmos-sdk/MsgPruneAcknowledgements";
859
1205
  value: MsgPruneAcknowledgementsAmino;
860
1206
  }
861
- /** MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. */
1207
+ /**
1208
+ * MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.
1209
+ * @name MsgPruneAcknowledgementsResponse
1210
+ * @package ibc.core.channel.v1
1211
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgementsResponse
1212
+ */
862
1213
  export interface MsgPruneAcknowledgementsResponse {
863
- /** Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate). */
1214
+ /**
1215
+ * Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate).
1216
+ */
864
1217
  totalPrunedSequences: bigint;
865
- /** Number of sequences left after pruning. */
1218
+ /**
1219
+ * Number of sequences left after pruning.
1220
+ */
866
1221
  totalRemainingSequences: bigint;
867
1222
  }
868
1223
  export interface MsgPruneAcknowledgementsResponseProtoMsg {
869
1224
  typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse";
870
1225
  value: Uint8Array;
871
1226
  }
872
- /** MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc. */
1227
+ /**
1228
+ * MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.
1229
+ * @name MsgPruneAcknowledgementsResponseAmino
1230
+ * @package ibc.core.channel.v1
1231
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgementsResponse
1232
+ */
873
1233
  export interface MsgPruneAcknowledgementsResponseAmino {
874
- /** Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate). */
1234
+ /**
1235
+ * Number of sequences pruned (includes both packet acknowledgements and packet receipts where appropriate).
1236
+ */
875
1237
  total_pruned_sequences: string;
876
- /** Number of sequences left after pruning. */
1238
+ /**
1239
+ * Number of sequences left after pruning.
1240
+ */
877
1241
  total_remaining_sequences: string;
878
1242
  }
879
1243
  export interface MsgPruneAcknowledgementsResponseAminoMsg {
880
1244
  type: "cosmos-sdk/MsgPruneAcknowledgementsResponse";
881
1245
  value: MsgPruneAcknowledgementsResponseAmino;
882
1246
  }
1247
+ /**
1248
+ * MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
1249
+ * is called by a relayer on Chain A.
1250
+ * @name MsgChannelOpenInit
1251
+ * @package ibc.core.channel.v1
1252
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
1253
+ */
883
1254
  export declare const MsgChannelOpenInit: {
884
1255
  typeUrl: string;
885
1256
  aminoType: string;
@@ -897,6 +1268,12 @@ export declare const MsgChannelOpenInit: {
897
1268
  toProtoMsg(message: MsgChannelOpenInit): MsgChannelOpenInitProtoMsg;
898
1269
  registerTypeUrl(): void;
899
1270
  };
1271
+ /**
1272
+ * MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
1273
+ * @name MsgChannelOpenInitResponse
1274
+ * @package ibc.core.channel.v1
1275
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
1276
+ */
900
1277
  export declare const MsgChannelOpenInitResponse: {
901
1278
  typeUrl: string;
902
1279
  aminoType: string;
@@ -914,6 +1291,14 @@ export declare const MsgChannelOpenInitResponse: {
914
1291
  toProtoMsg(message: MsgChannelOpenInitResponse): MsgChannelOpenInitResponseProtoMsg;
915
1292
  registerTypeUrl(): void;
916
1293
  };
1294
+ /**
1295
+ * MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
1296
+ * on Chain B. The version field within the Channel field has been deprecated. Its
1297
+ * value will be ignored by core IBC.
1298
+ * @name MsgChannelOpenTry
1299
+ * @package ibc.core.channel.v1
1300
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
1301
+ */
917
1302
  export declare const MsgChannelOpenTry: {
918
1303
  typeUrl: string;
919
1304
  aminoType: string;
@@ -931,6 +1316,12 @@ export declare const MsgChannelOpenTry: {
931
1316
  toProtoMsg(message: MsgChannelOpenTry): MsgChannelOpenTryProtoMsg;
932
1317
  registerTypeUrl(): void;
933
1318
  };
1319
+ /**
1320
+ * MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
1321
+ * @name MsgChannelOpenTryResponse
1322
+ * @package ibc.core.channel.v1
1323
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
1324
+ */
934
1325
  export declare const MsgChannelOpenTryResponse: {
935
1326
  typeUrl: string;
936
1327
  aminoType: string;
@@ -948,6 +1339,16 @@ export declare const MsgChannelOpenTryResponse: {
948
1339
  toProtoMsg(message: MsgChannelOpenTryResponse): MsgChannelOpenTryResponseProtoMsg;
949
1340
  registerTypeUrl(): void;
950
1341
  };
1342
+ /**
1343
+ * MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
1344
+ * the change of channel state to TRYOPEN on Chain B.
1345
+ * WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel
1346
+ * in the same block as executing this message otherwise the counterparty will
1347
+ * be incapable of opening.
1348
+ * @name MsgChannelOpenAck
1349
+ * @package ibc.core.channel.v1
1350
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
1351
+ */
951
1352
  export declare const MsgChannelOpenAck: {
952
1353
  typeUrl: string;
953
1354
  aminoType: string;
@@ -965,6 +1366,12 @@ export declare const MsgChannelOpenAck: {
965
1366
  toProtoMsg(message: MsgChannelOpenAck): MsgChannelOpenAckProtoMsg;
966
1367
  registerTypeUrl(): void;
967
1368
  };
1369
+ /**
1370
+ * MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
1371
+ * @name MsgChannelOpenAckResponse
1372
+ * @package ibc.core.channel.v1
1373
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
1374
+ */
968
1375
  export declare const MsgChannelOpenAckResponse: {
969
1376
  typeUrl: string;
970
1377
  aminoType: string;
@@ -982,6 +1389,13 @@ export declare const MsgChannelOpenAckResponse: {
982
1389
  toProtoMsg(message: MsgChannelOpenAckResponse): MsgChannelOpenAckResponseProtoMsg;
983
1390
  registerTypeUrl(): void;
984
1391
  };
1392
+ /**
1393
+ * MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
1394
+ * acknowledge the change of channel state to OPEN on Chain A.
1395
+ * @name MsgChannelOpenConfirm
1396
+ * @package ibc.core.channel.v1
1397
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
1398
+ */
985
1399
  export declare const MsgChannelOpenConfirm: {
986
1400
  typeUrl: string;
987
1401
  aminoType: string;
@@ -999,6 +1413,13 @@ export declare const MsgChannelOpenConfirm: {
999
1413
  toProtoMsg(message: MsgChannelOpenConfirm): MsgChannelOpenConfirmProtoMsg;
1000
1414
  registerTypeUrl(): void;
1001
1415
  };
1416
+ /**
1417
+ * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
1418
+ * type.
1419
+ * @name MsgChannelOpenConfirmResponse
1420
+ * @package ibc.core.channel.v1
1421
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
1422
+ */
1002
1423
  export declare const MsgChannelOpenConfirmResponse: {
1003
1424
  typeUrl: string;
1004
1425
  aminoType: string;
@@ -1016,6 +1437,13 @@ export declare const MsgChannelOpenConfirmResponse: {
1016
1437
  toProtoMsg(message: MsgChannelOpenConfirmResponse): MsgChannelOpenConfirmResponseProtoMsg;
1017
1438
  registerTypeUrl(): void;
1018
1439
  };
1440
+ /**
1441
+ * MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
1442
+ * to close a channel with Chain B.
1443
+ * @name MsgChannelCloseInit
1444
+ * @package ibc.core.channel.v1
1445
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
1446
+ */
1019
1447
  export declare const MsgChannelCloseInit: {
1020
1448
  typeUrl: string;
1021
1449
  aminoType: string;
@@ -1033,6 +1461,12 @@ export declare const MsgChannelCloseInit: {
1033
1461
  toProtoMsg(message: MsgChannelCloseInit): MsgChannelCloseInitProtoMsg;
1034
1462
  registerTypeUrl(): void;
1035
1463
  };
1464
+ /**
1465
+ * MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
1466
+ * @name MsgChannelCloseInitResponse
1467
+ * @package ibc.core.channel.v1
1468
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
1469
+ */
1036
1470
  export declare const MsgChannelCloseInitResponse: {
1037
1471
  typeUrl: string;
1038
1472
  aminoType: string;
@@ -1050,6 +1484,13 @@ export declare const MsgChannelCloseInitResponse: {
1050
1484
  toProtoMsg(message: MsgChannelCloseInitResponse): MsgChannelCloseInitResponseProtoMsg;
1051
1485
  registerTypeUrl(): void;
1052
1486
  };
1487
+ /**
1488
+ * MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
1489
+ * to acknowledge the change of channel state to CLOSED on Chain A.
1490
+ * @name MsgChannelCloseConfirm
1491
+ * @package ibc.core.channel.v1
1492
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
1493
+ */
1053
1494
  export declare const MsgChannelCloseConfirm: {
1054
1495
  typeUrl: string;
1055
1496
  aminoType: string;
@@ -1067,6 +1508,13 @@ export declare const MsgChannelCloseConfirm: {
1067
1508
  toProtoMsg(message: MsgChannelCloseConfirm): MsgChannelCloseConfirmProtoMsg;
1068
1509
  registerTypeUrl(): void;
1069
1510
  };
1511
+ /**
1512
+ * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
1513
+ * type.
1514
+ * @name MsgChannelCloseConfirmResponse
1515
+ * @package ibc.core.channel.v1
1516
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
1517
+ */
1070
1518
  export declare const MsgChannelCloseConfirmResponse: {
1071
1519
  typeUrl: string;
1072
1520
  aminoType: string;
@@ -1084,6 +1532,12 @@ export declare const MsgChannelCloseConfirmResponse: {
1084
1532
  toProtoMsg(message: MsgChannelCloseConfirmResponse): MsgChannelCloseConfirmResponseProtoMsg;
1085
1533
  registerTypeUrl(): void;
1086
1534
  };
1535
+ /**
1536
+ * MsgRecvPacket receives incoming IBC packet
1537
+ * @name MsgRecvPacket
1538
+ * @package ibc.core.channel.v1
1539
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacket
1540
+ */
1087
1541
  export declare const MsgRecvPacket: {
1088
1542
  typeUrl: string;
1089
1543
  aminoType: string;
@@ -1101,6 +1555,12 @@ export declare const MsgRecvPacket: {
1101
1555
  toProtoMsg(message: MsgRecvPacket): MsgRecvPacketProtoMsg;
1102
1556
  registerTypeUrl(): void;
1103
1557
  };
1558
+ /**
1559
+ * MsgRecvPacketResponse defines the Msg/RecvPacket response type.
1560
+ * @name MsgRecvPacketResponse
1561
+ * @package ibc.core.channel.v1
1562
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
1563
+ */
1104
1564
  export declare const MsgRecvPacketResponse: {
1105
1565
  typeUrl: string;
1106
1566
  aminoType: string;
@@ -1118,6 +1578,12 @@ export declare const MsgRecvPacketResponse: {
1118
1578
  toProtoMsg(message: MsgRecvPacketResponse): MsgRecvPacketResponseProtoMsg;
1119
1579
  registerTypeUrl(): void;
1120
1580
  };
1581
+ /**
1582
+ * MsgTimeout receives timed-out packet
1583
+ * @name MsgTimeout
1584
+ * @package ibc.core.channel.v1
1585
+ * @see proto type: ibc.core.channel.v1.MsgTimeout
1586
+ */
1121
1587
  export declare const MsgTimeout: {
1122
1588
  typeUrl: string;
1123
1589
  aminoType: string;
@@ -1135,6 +1601,12 @@ export declare const MsgTimeout: {
1135
1601
  toProtoMsg(message: MsgTimeout): MsgTimeoutProtoMsg;
1136
1602
  registerTypeUrl(): void;
1137
1603
  };
1604
+ /**
1605
+ * MsgTimeoutResponse defines the Msg/Timeout response type.
1606
+ * @name MsgTimeoutResponse
1607
+ * @package ibc.core.channel.v1
1608
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
1609
+ */
1138
1610
  export declare const MsgTimeoutResponse: {
1139
1611
  typeUrl: string;
1140
1612
  aminoType: string;
@@ -1152,6 +1624,12 @@ export declare const MsgTimeoutResponse: {
1152
1624
  toProtoMsg(message: MsgTimeoutResponse): MsgTimeoutResponseProtoMsg;
1153
1625
  registerTypeUrl(): void;
1154
1626
  };
1627
+ /**
1628
+ * MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
1629
+ * @name MsgTimeoutOnClose
1630
+ * @package ibc.core.channel.v1
1631
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
1632
+ */
1155
1633
  export declare const MsgTimeoutOnClose: {
1156
1634
  typeUrl: string;
1157
1635
  aminoType: string;
@@ -1169,6 +1647,12 @@ export declare const MsgTimeoutOnClose: {
1169
1647
  toProtoMsg(message: MsgTimeoutOnClose): MsgTimeoutOnCloseProtoMsg;
1170
1648
  registerTypeUrl(): void;
1171
1649
  };
1650
+ /**
1651
+ * MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
1652
+ * @name MsgTimeoutOnCloseResponse
1653
+ * @package ibc.core.channel.v1
1654
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
1655
+ */
1172
1656
  export declare const MsgTimeoutOnCloseResponse: {
1173
1657
  typeUrl: string;
1174
1658
  aminoType: string;
@@ -1186,6 +1670,12 @@ export declare const MsgTimeoutOnCloseResponse: {
1186
1670
  toProtoMsg(message: MsgTimeoutOnCloseResponse): MsgTimeoutOnCloseResponseProtoMsg;
1187
1671
  registerTypeUrl(): void;
1188
1672
  };
1673
+ /**
1674
+ * MsgAcknowledgement receives incoming IBC acknowledgement
1675
+ * @name MsgAcknowledgement
1676
+ * @package ibc.core.channel.v1
1677
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgement
1678
+ */
1189
1679
  export declare const MsgAcknowledgement: {
1190
1680
  typeUrl: string;
1191
1681
  aminoType: string;
@@ -1203,6 +1693,12 @@ export declare const MsgAcknowledgement: {
1203
1693
  toProtoMsg(message: MsgAcknowledgement): MsgAcknowledgementProtoMsg;
1204
1694
  registerTypeUrl(): void;
1205
1695
  };
1696
+ /**
1697
+ * MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
1698
+ * @name MsgAcknowledgementResponse
1699
+ * @package ibc.core.channel.v1
1700
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
1701
+ */
1206
1702
  export declare const MsgAcknowledgementResponse: {
1207
1703
  typeUrl: string;
1208
1704
  aminoType: string;
@@ -1220,6 +1716,14 @@ export declare const MsgAcknowledgementResponse: {
1220
1716
  toProtoMsg(message: MsgAcknowledgementResponse): MsgAcknowledgementResponseProtoMsg;
1221
1717
  registerTypeUrl(): void;
1222
1718
  };
1719
+ /**
1720
+ * MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
1721
+ * WARNING: Initializing a channel upgrade in the same block as opening the channel
1722
+ * may result in the counterparty being incapable of opening.
1723
+ * @name MsgChannelUpgradeInit
1724
+ * @package ibc.core.channel.v1
1725
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInit
1726
+ */
1223
1727
  export declare const MsgChannelUpgradeInit: {
1224
1728
  typeUrl: string;
1225
1729
  aminoType: string;
@@ -1237,6 +1741,12 @@ export declare const MsgChannelUpgradeInit: {
1237
1741
  toProtoMsg(message: MsgChannelUpgradeInit): MsgChannelUpgradeInitProtoMsg;
1238
1742
  registerTypeUrl(): void;
1239
1743
  };
1744
+ /**
1745
+ * MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type
1746
+ * @name MsgChannelUpgradeInitResponse
1747
+ * @package ibc.core.channel.v1
1748
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInitResponse
1749
+ */
1240
1750
  export declare const MsgChannelUpgradeInitResponse: {
1241
1751
  typeUrl: string;
1242
1752
  aminoType: string;
@@ -1254,6 +1764,12 @@ export declare const MsgChannelUpgradeInitResponse: {
1254
1764
  toProtoMsg(message: MsgChannelUpgradeInitResponse): MsgChannelUpgradeInitResponseProtoMsg;
1255
1765
  registerTypeUrl(): void;
1256
1766
  };
1767
+ /**
1768
+ * MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc
1769
+ * @name MsgChannelUpgradeTry
1770
+ * @package ibc.core.channel.v1
1771
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTry
1772
+ */
1257
1773
  export declare const MsgChannelUpgradeTry: {
1258
1774
  typeUrl: string;
1259
1775
  aminoType: string;
@@ -1271,6 +1787,12 @@ export declare const MsgChannelUpgradeTry: {
1271
1787
  toProtoMsg(message: MsgChannelUpgradeTry): MsgChannelUpgradeTryProtoMsg;
1272
1788
  registerTypeUrl(): void;
1273
1789
  };
1790
+ /**
1791
+ * MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type
1792
+ * @name MsgChannelUpgradeTryResponse
1793
+ * @package ibc.core.channel.v1
1794
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTryResponse
1795
+ */
1274
1796
  export declare const MsgChannelUpgradeTryResponse: {
1275
1797
  typeUrl: string;
1276
1798
  aminoType: string;
@@ -1288,6 +1810,12 @@ export declare const MsgChannelUpgradeTryResponse: {
1288
1810
  toProtoMsg(message: MsgChannelUpgradeTryResponse): MsgChannelUpgradeTryResponseProtoMsg;
1289
1811
  registerTypeUrl(): void;
1290
1812
  };
1813
+ /**
1814
+ * MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc
1815
+ * @name MsgChannelUpgradeAck
1816
+ * @package ibc.core.channel.v1
1817
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAck
1818
+ */
1291
1819
  export declare const MsgChannelUpgradeAck: {
1292
1820
  typeUrl: string;
1293
1821
  aminoType: string;
@@ -1305,6 +1833,12 @@ export declare const MsgChannelUpgradeAck: {
1305
1833
  toProtoMsg(message: MsgChannelUpgradeAck): MsgChannelUpgradeAckProtoMsg;
1306
1834
  registerTypeUrl(): void;
1307
1835
  };
1836
+ /**
1837
+ * MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type
1838
+ * @name MsgChannelUpgradeAckResponse
1839
+ * @package ibc.core.channel.v1
1840
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAckResponse
1841
+ */
1308
1842
  export declare const MsgChannelUpgradeAckResponse: {
1309
1843
  typeUrl: string;
1310
1844
  aminoType: string;
@@ -1322,6 +1856,12 @@ export declare const MsgChannelUpgradeAckResponse: {
1322
1856
  toProtoMsg(message: MsgChannelUpgradeAckResponse): MsgChannelUpgradeAckResponseProtoMsg;
1323
1857
  registerTypeUrl(): void;
1324
1858
  };
1859
+ /**
1860
+ * MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc
1861
+ * @name MsgChannelUpgradeConfirm
1862
+ * @package ibc.core.channel.v1
1863
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirm
1864
+ */
1325
1865
  export declare const MsgChannelUpgradeConfirm: {
1326
1866
  typeUrl: string;
1327
1867
  aminoType: string;
@@ -1339,6 +1879,12 @@ export declare const MsgChannelUpgradeConfirm: {
1339
1879
  toProtoMsg(message: MsgChannelUpgradeConfirm): MsgChannelUpgradeConfirmProtoMsg;
1340
1880
  registerTypeUrl(): void;
1341
1881
  };
1882
+ /**
1883
+ * MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type
1884
+ * @name MsgChannelUpgradeConfirmResponse
1885
+ * @package ibc.core.channel.v1
1886
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse
1887
+ */
1342
1888
  export declare const MsgChannelUpgradeConfirmResponse: {
1343
1889
  typeUrl: string;
1344
1890
  aminoType: string;
@@ -1356,6 +1902,12 @@ export declare const MsgChannelUpgradeConfirmResponse: {
1356
1902
  toProtoMsg(message: MsgChannelUpgradeConfirmResponse): MsgChannelUpgradeConfirmResponseProtoMsg;
1357
1903
  registerTypeUrl(): void;
1358
1904
  };
1905
+ /**
1906
+ * MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc
1907
+ * @name MsgChannelUpgradeOpen
1908
+ * @package ibc.core.channel.v1
1909
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpen
1910
+ */
1359
1911
  export declare const MsgChannelUpgradeOpen: {
1360
1912
  typeUrl: string;
1361
1913
  aminoType: string;
@@ -1373,6 +1925,12 @@ export declare const MsgChannelUpgradeOpen: {
1373
1925
  toProtoMsg(message: MsgChannelUpgradeOpen): MsgChannelUpgradeOpenProtoMsg;
1374
1926
  registerTypeUrl(): void;
1375
1927
  };
1928
+ /**
1929
+ * MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type
1930
+ * @name MsgChannelUpgradeOpenResponse
1931
+ * @package ibc.core.channel.v1
1932
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpenResponse
1933
+ */
1376
1934
  export declare const MsgChannelUpgradeOpenResponse: {
1377
1935
  typeUrl: string;
1378
1936
  aminoType: string;
@@ -1390,6 +1948,12 @@ export declare const MsgChannelUpgradeOpenResponse: {
1390
1948
  toProtoMsg(message: MsgChannelUpgradeOpenResponse): MsgChannelUpgradeOpenResponseProtoMsg;
1391
1949
  registerTypeUrl(): void;
1392
1950
  };
1951
+ /**
1952
+ * MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc
1953
+ * @name MsgChannelUpgradeTimeout
1954
+ * @package ibc.core.channel.v1
1955
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeout
1956
+ */
1393
1957
  export declare const MsgChannelUpgradeTimeout: {
1394
1958
  typeUrl: string;
1395
1959
  aminoType: string;
@@ -1407,6 +1971,12 @@ export declare const MsgChannelUpgradeTimeout: {
1407
1971
  toProtoMsg(message: MsgChannelUpgradeTimeout): MsgChannelUpgradeTimeoutProtoMsg;
1408
1972
  registerTypeUrl(): void;
1409
1973
  };
1974
+ /**
1975
+ * MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type
1976
+ * @name MsgChannelUpgradeTimeoutResponse
1977
+ * @package ibc.core.channel.v1
1978
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse
1979
+ */
1410
1980
  export declare const MsgChannelUpgradeTimeoutResponse: {
1411
1981
  typeUrl: string;
1412
1982
  aminoType: string;
@@ -1424,6 +1994,12 @@ export declare const MsgChannelUpgradeTimeoutResponse: {
1424
1994
  toProtoMsg(message: MsgChannelUpgradeTimeoutResponse): MsgChannelUpgradeTimeoutResponseProtoMsg;
1425
1995
  registerTypeUrl(): void;
1426
1996
  };
1997
+ /**
1998
+ * MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc
1999
+ * @name MsgChannelUpgradeCancel
2000
+ * @package ibc.core.channel.v1
2001
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancel
2002
+ */
1427
2003
  export declare const MsgChannelUpgradeCancel: {
1428
2004
  typeUrl: string;
1429
2005
  aminoType: string;
@@ -1441,6 +2017,12 @@ export declare const MsgChannelUpgradeCancel: {
1441
2017
  toProtoMsg(message: MsgChannelUpgradeCancel): MsgChannelUpgradeCancelProtoMsg;
1442
2018
  registerTypeUrl(): void;
1443
2019
  };
2020
+ /**
2021
+ * MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type
2022
+ * @name MsgChannelUpgradeCancelResponse
2023
+ * @package ibc.core.channel.v1
2024
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancelResponse
2025
+ */
1444
2026
  export declare const MsgChannelUpgradeCancelResponse: {
1445
2027
  typeUrl: string;
1446
2028
  aminoType: string;
@@ -1458,6 +2040,12 @@ export declare const MsgChannelUpgradeCancelResponse: {
1458
2040
  toProtoMsg(message: MsgChannelUpgradeCancelResponse): MsgChannelUpgradeCancelResponseProtoMsg;
1459
2041
  registerTypeUrl(): void;
1460
2042
  };
2043
+ /**
2044
+ * MsgUpdateParams is the MsgUpdateParams request type.
2045
+ * @name MsgUpdateParams
2046
+ * @package ibc.core.channel.v1
2047
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParams
2048
+ */
1461
2049
  export declare const MsgUpdateParams: {
1462
2050
  typeUrl: string;
1463
2051
  aminoType: string;
@@ -1475,6 +2063,12 @@ export declare const MsgUpdateParams: {
1475
2063
  toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
1476
2064
  registerTypeUrl(): void;
1477
2065
  };
2066
+ /**
2067
+ * MsgUpdateParamsResponse defines the MsgUpdateParams response type.
2068
+ * @name MsgUpdateParamsResponse
2069
+ * @package ibc.core.channel.v1
2070
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParamsResponse
2071
+ */
1478
2072
  export declare const MsgUpdateParamsResponse: {
1479
2073
  typeUrl: string;
1480
2074
  aminoType: string;
@@ -1492,6 +2086,12 @@ export declare const MsgUpdateParamsResponse: {
1492
2086
  toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
1493
2087
  registerTypeUrl(): void;
1494
2088
  };
2089
+ /**
2090
+ * MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.
2091
+ * @name MsgPruneAcknowledgements
2092
+ * @package ibc.core.channel.v1
2093
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgements
2094
+ */
1495
2095
  export declare const MsgPruneAcknowledgements: {
1496
2096
  typeUrl: string;
1497
2097
  aminoType: string;
@@ -1509,6 +2109,12 @@ export declare const MsgPruneAcknowledgements: {
1509
2109
  toProtoMsg(message: MsgPruneAcknowledgements): MsgPruneAcknowledgementsProtoMsg;
1510
2110
  registerTypeUrl(): void;
1511
2111
  };
2112
+ /**
2113
+ * MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.
2114
+ * @name MsgPruneAcknowledgementsResponse
2115
+ * @package ibc.core.channel.v1
2116
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgementsResponse
2117
+ */
1512
2118
  export declare const MsgPruneAcknowledgementsResponse: {
1513
2119
  typeUrl: string;
1514
2120
  aminoType: string;