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
@@ -65,6 +65,13 @@ function createBaseMsgChannelOpenInit() {
65
65
  signer: ""
66
66
  };
67
67
  }
68
+ /**
69
+ * MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
70
+ * is called by a relayer on Chain A.
71
+ * @name MsgChannelOpenInit
72
+ * @package ibc.core.channel.v1
73
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
74
+ */
68
75
  exports.MsgChannelOpenInit = {
69
76
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInit",
70
77
  aminoType: "cosmos-sdk/MsgChannelOpenInit",
@@ -170,6 +177,12 @@ function createBaseMsgChannelOpenInitResponse() {
170
177
  version: ""
171
178
  };
172
179
  }
180
+ /**
181
+ * MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
182
+ * @name MsgChannelOpenInitResponse
183
+ * @package ibc.core.channel.v1
184
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
185
+ */
173
186
  exports.MsgChannelOpenInitResponse = {
174
187
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse",
175
188
  aminoType: "cosmos-sdk/MsgChannelOpenInitResponse",
@@ -264,6 +277,14 @@ function createBaseMsgChannelOpenTry() {
264
277
  signer: ""
265
278
  };
266
279
  }
280
+ /**
281
+ * MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
282
+ * on Chain B. The version field within the Channel field has been deprecated. Its
283
+ * value will be ignored by core IBC.
284
+ * @name MsgChannelOpenTry
285
+ * @package ibc.core.channel.v1
286
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
287
+ */
267
288
  exports.MsgChannelOpenTry = {
268
289
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTry",
269
290
  aminoType: "cosmos-sdk/MsgChannelOpenTry",
@@ -414,6 +435,12 @@ function createBaseMsgChannelOpenTryResponse() {
414
435
  channelId: ""
415
436
  };
416
437
  }
438
+ /**
439
+ * MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
440
+ * @name MsgChannelOpenTryResponse
441
+ * @package ibc.core.channel.v1
442
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
443
+ */
417
444
  exports.MsgChannelOpenTryResponse = {
418
445
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse",
419
446
  aminoType: "cosmos-sdk/MsgChannelOpenTryResponse",
@@ -508,6 +535,16 @@ function createBaseMsgChannelOpenAck() {
508
535
  signer: ""
509
536
  };
510
537
  }
538
+ /**
539
+ * MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
540
+ * the change of channel state to TRYOPEN on Chain B.
541
+ * WARNING: a channel upgrade MUST NOT initialize an upgrade for this channel
542
+ * in the same block as executing this message otherwise the counterparty will
543
+ * be incapable of opening.
544
+ * @name MsgChannelOpenAck
545
+ * @package ibc.core.channel.v1
546
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
547
+ */
511
548
  exports.MsgChannelOpenAck = {
512
549
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAck",
513
550
  aminoType: "cosmos-sdk/MsgChannelOpenAck",
@@ -654,6 +691,12 @@ exports.MsgChannelOpenAck = {
654
691
  function createBaseMsgChannelOpenAckResponse() {
655
692
  return {};
656
693
  }
694
+ /**
695
+ * MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
696
+ * @name MsgChannelOpenAckResponse
697
+ * @package ibc.core.channel.v1
698
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
699
+ */
657
700
  exports.MsgChannelOpenAckResponse = {
658
701
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse",
659
702
  aminoType: "cosmos-sdk/MsgChannelOpenAckResponse",
@@ -724,6 +767,13 @@ function createBaseMsgChannelOpenConfirm() {
724
767
  signer: ""
725
768
  };
726
769
  }
770
+ /**
771
+ * MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
772
+ * acknowledge the change of channel state to OPEN on Chain A.
773
+ * @name MsgChannelOpenConfirm
774
+ * @package ibc.core.channel.v1
775
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
776
+ */
727
777
  exports.MsgChannelOpenConfirm = {
728
778
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirm",
729
779
  aminoType: "cosmos-sdk/MsgChannelOpenConfirm",
@@ -848,6 +898,13 @@ exports.MsgChannelOpenConfirm = {
848
898
  function createBaseMsgChannelOpenConfirmResponse() {
849
899
  return {};
850
900
  }
901
+ /**
902
+ * MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
903
+ * type.
904
+ * @name MsgChannelOpenConfirmResponse
905
+ * @package ibc.core.channel.v1
906
+ * @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
907
+ */
851
908
  exports.MsgChannelOpenConfirmResponse = {
852
909
  typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirmResponse",
853
910
  aminoType: "cosmos-sdk/MsgChannelOpenConfirmResponse",
@@ -916,6 +973,13 @@ function createBaseMsgChannelCloseInit() {
916
973
  signer: ""
917
974
  };
918
975
  }
976
+ /**
977
+ * MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
978
+ * to close a channel with Chain B.
979
+ * @name MsgChannelCloseInit
980
+ * @package ibc.core.channel.v1
981
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
982
+ */
919
983
  exports.MsgChannelCloseInit = {
920
984
  typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInit",
921
985
  aminoType: "cosmos-sdk/MsgChannelCloseInit",
@@ -1013,6 +1077,12 @@ exports.MsgChannelCloseInit = {
1013
1077
  function createBaseMsgChannelCloseInitResponse() {
1014
1078
  return {};
1015
1079
  }
1080
+ /**
1081
+ * MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
1082
+ * @name MsgChannelCloseInitResponse
1083
+ * @package ibc.core.channel.v1
1084
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
1085
+ */
1016
1086
  exports.MsgChannelCloseInitResponse = {
1017
1087
  typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse",
1018
1088
  aminoType: "cosmos-sdk/MsgChannelCloseInitResponse",
@@ -1084,6 +1154,13 @@ function createBaseMsgChannelCloseConfirm() {
1084
1154
  counterpartyUpgradeSequence: BigInt(0)
1085
1155
  };
1086
1156
  }
1157
+ /**
1158
+ * MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
1159
+ * to acknowledge the change of channel state to CLOSED on Chain A.
1160
+ * @name MsgChannelCloseConfirm
1161
+ * @package ibc.core.channel.v1
1162
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
1163
+ */
1087
1164
  exports.MsgChannelCloseConfirm = {
1088
1165
  typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm",
1089
1166
  aminoType: "cosmos-sdk/MsgChannelCloseConfirm",
@@ -1219,6 +1296,13 @@ exports.MsgChannelCloseConfirm = {
1219
1296
  function createBaseMsgChannelCloseConfirmResponse() {
1220
1297
  return {};
1221
1298
  }
1299
+ /**
1300
+ * MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
1301
+ * type.
1302
+ * @name MsgChannelCloseConfirmResponse
1303
+ * @package ibc.core.channel.v1
1304
+ * @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
1305
+ */
1222
1306
  exports.MsgChannelCloseConfirmResponse = {
1223
1307
  typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirmResponse",
1224
1308
  aminoType: "cosmos-sdk/MsgChannelCloseConfirmResponse",
@@ -1288,6 +1372,12 @@ function createBaseMsgRecvPacket() {
1288
1372
  signer: ""
1289
1373
  };
1290
1374
  }
1375
+ /**
1376
+ * MsgRecvPacket receives incoming IBC packet
1377
+ * @name MsgRecvPacket
1378
+ * @package ibc.core.channel.v1
1379
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacket
1380
+ */
1291
1381
  exports.MsgRecvPacket = {
1292
1382
  typeUrl: "/ibc.core.channel.v1.MsgRecvPacket",
1293
1383
  aminoType: "cosmos-sdk/MsgRecvPacket",
@@ -1404,6 +1494,12 @@ function createBaseMsgRecvPacketResponse() {
1404
1494
  result: 0
1405
1495
  };
1406
1496
  }
1497
+ /**
1498
+ * MsgRecvPacketResponse defines the Msg/RecvPacket response type.
1499
+ * @name MsgRecvPacketResponse
1500
+ * @package ibc.core.channel.v1
1501
+ * @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
1502
+ */
1407
1503
  exports.MsgRecvPacketResponse = {
1408
1504
  typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse",
1409
1505
  aminoType: "cosmos-sdk/MsgRecvPacketResponse",
@@ -1485,6 +1581,12 @@ function createBaseMsgTimeout() {
1485
1581
  signer: ""
1486
1582
  };
1487
1583
  }
1584
+ /**
1585
+ * MsgTimeout receives timed-out packet
1586
+ * @name MsgTimeout
1587
+ * @package ibc.core.channel.v1
1588
+ * @see proto type: ibc.core.channel.v1.MsgTimeout
1589
+ */
1488
1590
  exports.MsgTimeout = {
1489
1591
  typeUrl: "/ibc.core.channel.v1.MsgTimeout",
1490
1592
  aminoType: "cosmos-sdk/MsgTimeout",
@@ -1612,6 +1714,12 @@ function createBaseMsgTimeoutResponse() {
1612
1714
  result: 0
1613
1715
  };
1614
1716
  }
1717
+ /**
1718
+ * MsgTimeoutResponse defines the Msg/Timeout response type.
1719
+ * @name MsgTimeoutResponse
1720
+ * @package ibc.core.channel.v1
1721
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
1722
+ */
1615
1723
  exports.MsgTimeoutResponse = {
1616
1724
  typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse",
1617
1725
  aminoType: "cosmos-sdk/MsgTimeoutResponse",
@@ -1695,6 +1803,12 @@ function createBaseMsgTimeoutOnClose() {
1695
1803
  counterpartyUpgradeSequence: BigInt(0)
1696
1804
  };
1697
1805
  }
1806
+ /**
1807
+ * MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
1808
+ * @name MsgTimeoutOnClose
1809
+ * @package ibc.core.channel.v1
1810
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
1811
+ */
1698
1812
  exports.MsgTimeoutOnClose = {
1699
1813
  typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose",
1700
1814
  aminoType: "cosmos-sdk/MsgTimeoutOnClose",
@@ -1844,6 +1958,12 @@ function createBaseMsgTimeoutOnCloseResponse() {
1844
1958
  result: 0
1845
1959
  };
1846
1960
  }
1961
+ /**
1962
+ * MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
1963
+ * @name MsgTimeoutOnCloseResponse
1964
+ * @package ibc.core.channel.v1
1965
+ * @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
1966
+ */
1847
1967
  exports.MsgTimeoutOnCloseResponse = {
1848
1968
  typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse",
1849
1969
  aminoType: "cosmos-sdk/MsgTimeoutOnCloseResponse",
@@ -1925,6 +2045,12 @@ function createBaseMsgAcknowledgement() {
1925
2045
  signer: ""
1926
2046
  };
1927
2047
  }
2048
+ /**
2049
+ * MsgAcknowledgement receives incoming IBC acknowledgement
2050
+ * @name MsgAcknowledgement
2051
+ * @package ibc.core.channel.v1
2052
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgement
2053
+ */
1928
2054
  exports.MsgAcknowledgement = {
1929
2055
  typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement",
1930
2056
  aminoType: "cosmos-sdk/MsgAcknowledgement",
@@ -2052,6 +2178,12 @@ function createBaseMsgAcknowledgementResponse() {
2052
2178
  result: 0
2053
2179
  };
2054
2180
  }
2181
+ /**
2182
+ * MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
2183
+ * @name MsgAcknowledgementResponse
2184
+ * @package ibc.core.channel.v1
2185
+ * @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
2186
+ */
2055
2187
  exports.MsgAcknowledgementResponse = {
2056
2188
  typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse",
2057
2189
  aminoType: "cosmos-sdk/MsgAcknowledgementResponse",
@@ -2132,6 +2264,14 @@ function createBaseMsgChannelUpgradeInit() {
2132
2264
  signer: ""
2133
2265
  };
2134
2266
  }
2267
+ /**
2268
+ * MsgChannelUpgradeInit defines the request type for the ChannelUpgradeInit rpc
2269
+ * WARNING: Initializing a channel upgrade in the same block as opening the channel
2270
+ * may result in the counterparty being incapable of opening.
2271
+ * @name MsgChannelUpgradeInit
2272
+ * @package ibc.core.channel.v1
2273
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInit
2274
+ */
2135
2275
  exports.MsgChannelUpgradeInit = {
2136
2276
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInit",
2137
2277
  aminoType: "cosmos-sdk/MsgChannelUpgradeInit",
@@ -2248,6 +2388,12 @@ function createBaseMsgChannelUpgradeInitResponse() {
2248
2388
  upgradeSequence: BigInt(0)
2249
2389
  };
2250
2390
  }
2391
+ /**
2392
+ * MsgChannelUpgradeInitResponse defines the MsgChannelUpgradeInit response type
2393
+ * @name MsgChannelUpgradeInitResponse
2394
+ * @package ibc.core.channel.v1
2395
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeInitResponse
2396
+ */
2251
2397
  exports.MsgChannelUpgradeInitResponse = {
2252
2398
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeInitResponse",
2253
2399
  aminoType: "cosmos-sdk/MsgChannelUpgradeInitResponse",
@@ -2349,6 +2495,12 @@ function createBaseMsgChannelUpgradeTry() {
2349
2495
  signer: ""
2350
2496
  };
2351
2497
  }
2498
+ /**
2499
+ * MsgChannelUpgradeTry defines the request type for the ChannelUpgradeTry rpc
2500
+ * @name MsgChannelUpgradeTry
2501
+ * @package ibc.core.channel.v1
2502
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTry
2503
+ */
2352
2504
  exports.MsgChannelUpgradeTry = {
2353
2505
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTry",
2354
2506
  aminoType: "cosmos-sdk/MsgChannelUpgradeTry",
@@ -2525,6 +2677,12 @@ function createBaseMsgChannelUpgradeTryResponse() {
2525
2677
  result: 0
2526
2678
  };
2527
2679
  }
2680
+ /**
2681
+ * MsgChannelUpgradeTryResponse defines the MsgChannelUpgradeTry response type
2682
+ * @name MsgChannelUpgradeTryResponse
2683
+ * @package ibc.core.channel.v1
2684
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTryResponse
2685
+ */
2528
2686
  exports.MsgChannelUpgradeTryResponse = {
2529
2687
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTryResponse",
2530
2688
  aminoType: "cosmos-sdk/MsgChannelUpgradeTryResponse",
@@ -2635,6 +2793,12 @@ function createBaseMsgChannelUpgradeAck() {
2635
2793
  signer: ""
2636
2794
  };
2637
2795
  }
2796
+ /**
2797
+ * MsgChannelUpgradeAck defines the request type for the ChannelUpgradeAck rpc
2798
+ * @name MsgChannelUpgradeAck
2799
+ * @package ibc.core.channel.v1
2800
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAck
2801
+ */
2638
2802
  exports.MsgChannelUpgradeAck = {
2639
2803
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAck",
2640
2804
  aminoType: "cosmos-sdk/MsgChannelUpgradeAck",
@@ -2784,6 +2948,12 @@ function createBaseMsgChannelUpgradeAckResponse() {
2784
2948
  result: 0
2785
2949
  };
2786
2950
  }
2951
+ /**
2952
+ * MsgChannelUpgradeAckResponse defines MsgChannelUpgradeAck response type
2953
+ * @name MsgChannelUpgradeAckResponse
2954
+ * @package ibc.core.channel.v1
2955
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeAckResponse
2956
+ */
2787
2957
  exports.MsgChannelUpgradeAckResponse = {
2788
2958
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeAckResponse",
2789
2959
  aminoType: "cosmos-sdk/MsgChannelUpgradeAckResponse",
@@ -2868,6 +3038,12 @@ function createBaseMsgChannelUpgradeConfirm() {
2868
3038
  signer: ""
2869
3039
  };
2870
3040
  }
3041
+ /**
3042
+ * MsgChannelUpgradeConfirm defines the request type for the ChannelUpgradeConfirm rpc
3043
+ * @name MsgChannelUpgradeConfirm
3044
+ * @package ibc.core.channel.v1
3045
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirm
3046
+ */
2871
3047
  exports.MsgChannelUpgradeConfirm = {
2872
3048
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirm",
2873
3049
  aminoType: "cosmos-sdk/MsgChannelUpgradeConfirm",
@@ -3028,6 +3204,12 @@ function createBaseMsgChannelUpgradeConfirmResponse() {
3028
3204
  result: 0
3029
3205
  };
3030
3206
  }
3207
+ /**
3208
+ * MsgChannelUpgradeConfirmResponse defines MsgChannelUpgradeConfirm response type
3209
+ * @name MsgChannelUpgradeConfirmResponse
3210
+ * @package ibc.core.channel.v1
3211
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse
3212
+ */
3031
3213
  exports.MsgChannelUpgradeConfirmResponse = {
3032
3214
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeConfirmResponse",
3033
3215
  aminoType: "cosmos-sdk/MsgChannelUpgradeConfirmResponse",
@@ -3111,6 +3293,12 @@ function createBaseMsgChannelUpgradeOpen() {
3111
3293
  signer: ""
3112
3294
  };
3113
3295
  }
3296
+ /**
3297
+ * MsgChannelUpgradeOpen defines the request type for the ChannelUpgradeOpen rpc
3298
+ * @name MsgChannelUpgradeOpen
3299
+ * @package ibc.core.channel.v1
3300
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpen
3301
+ */
3114
3302
  exports.MsgChannelUpgradeOpen = {
3115
3303
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpen",
3116
3304
  aminoType: "cosmos-sdk/MsgChannelUpgradeOpen",
@@ -3257,6 +3445,12 @@ exports.MsgChannelUpgradeOpen = {
3257
3445
  function createBaseMsgChannelUpgradeOpenResponse() {
3258
3446
  return {};
3259
3447
  }
3448
+ /**
3449
+ * MsgChannelUpgradeOpenResponse defines the MsgChannelUpgradeOpen response type
3450
+ * @name MsgChannelUpgradeOpenResponse
3451
+ * @package ibc.core.channel.v1
3452
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeOpenResponse
3453
+ */
3260
3454
  exports.MsgChannelUpgradeOpenResponse = {
3261
3455
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeOpenResponse",
3262
3456
  aminoType: "cosmos-sdk/MsgChannelUpgradeOpenResponse",
@@ -3328,6 +3522,12 @@ function createBaseMsgChannelUpgradeTimeout() {
3328
3522
  signer: ""
3329
3523
  };
3330
3524
  }
3525
+ /**
3526
+ * MsgChannelUpgradeTimeout defines the request type for the ChannelUpgradeTimeout rpc
3527
+ * @name MsgChannelUpgradeTimeout
3528
+ * @package ibc.core.channel.v1
3529
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeout
3530
+ */
3331
3531
  exports.MsgChannelUpgradeTimeout = {
3332
3532
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeout",
3333
3533
  aminoType: "cosmos-sdk/MsgChannelUpgradeTimeout",
@@ -3464,6 +3664,12 @@ exports.MsgChannelUpgradeTimeout = {
3464
3664
  function createBaseMsgChannelUpgradeTimeoutResponse() {
3465
3665
  return {};
3466
3666
  }
3667
+ /**
3668
+ * MsgChannelUpgradeTimeoutResponse defines the MsgChannelUpgradeTimeout response type
3669
+ * @name MsgChannelUpgradeTimeoutResponse
3670
+ * @package ibc.core.channel.v1
3671
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse
3672
+ */
3467
3673
  exports.MsgChannelUpgradeTimeoutResponse = {
3468
3674
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeTimeoutResponse",
3469
3675
  aminoType: "cosmos-sdk/MsgChannelUpgradeTimeoutResponse",
@@ -3535,6 +3741,12 @@ function createBaseMsgChannelUpgradeCancel() {
3535
3741
  signer: ""
3536
3742
  };
3537
3743
  }
3744
+ /**
3745
+ * MsgChannelUpgradeCancel defines the request type for the ChannelUpgradeCancel rpc
3746
+ * @name MsgChannelUpgradeCancel
3747
+ * @package ibc.core.channel.v1
3748
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancel
3749
+ */
3538
3750
  exports.MsgChannelUpgradeCancel = {
3539
3751
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancel",
3540
3752
  aminoType: "cosmos-sdk/MsgChannelUpgradeCancel",
@@ -3671,6 +3883,12 @@ exports.MsgChannelUpgradeCancel = {
3671
3883
  function createBaseMsgChannelUpgradeCancelResponse() {
3672
3884
  return {};
3673
3885
  }
3886
+ /**
3887
+ * MsgChannelUpgradeCancelResponse defines the MsgChannelUpgradeCancel response type
3888
+ * @name MsgChannelUpgradeCancelResponse
3889
+ * @package ibc.core.channel.v1
3890
+ * @see proto type: ibc.core.channel.v1.MsgChannelUpgradeCancelResponse
3891
+ */
3674
3892
  exports.MsgChannelUpgradeCancelResponse = {
3675
3893
  typeUrl: "/ibc.core.channel.v1.MsgChannelUpgradeCancelResponse",
3676
3894
  aminoType: "cosmos-sdk/MsgChannelUpgradeCancelResponse",
@@ -3738,6 +3956,12 @@ function createBaseMsgUpdateParams() {
3738
3956
  params: client_1.Params.fromPartial({})
3739
3957
  };
3740
3958
  }
3959
+ /**
3960
+ * MsgUpdateParams is the MsgUpdateParams request type.
3961
+ * @name MsgUpdateParams
3962
+ * @package ibc.core.channel.v1
3963
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParams
3964
+ */
3741
3965
  exports.MsgUpdateParams = {
3742
3966
  typeUrl: "/ibc.core.channel.v1.MsgUpdateParams",
3743
3967
  aminoType: "cosmos-sdk/MsgUpdateParams",
@@ -3829,6 +4053,12 @@ exports.MsgUpdateParams = {
3829
4053
  function createBaseMsgUpdateParamsResponse() {
3830
4054
  return {};
3831
4055
  }
4056
+ /**
4057
+ * MsgUpdateParamsResponse defines the MsgUpdateParams response type.
4058
+ * @name MsgUpdateParamsResponse
4059
+ * @package ibc.core.channel.v1
4060
+ * @see proto type: ibc.core.channel.v1.MsgUpdateParamsResponse
4061
+ */
3832
4062
  exports.MsgUpdateParamsResponse = {
3833
4063
  typeUrl: "/ibc.core.channel.v1.MsgUpdateParamsResponse",
3834
4064
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -3898,6 +4128,12 @@ function createBaseMsgPruneAcknowledgements() {
3898
4128
  signer: ""
3899
4129
  };
3900
4130
  }
4131
+ /**
4132
+ * MsgPruneAcknowledgements defines the request type for the PruneAcknowledgements rpc.
4133
+ * @name MsgPruneAcknowledgements
4134
+ * @package ibc.core.channel.v1
4135
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgements
4136
+ */
3901
4137
  exports.MsgPruneAcknowledgements = {
3902
4138
  typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgements",
3903
4139
  aminoType: "cosmos-sdk/MsgPruneAcknowledgements",
@@ -4009,6 +4245,12 @@ function createBaseMsgPruneAcknowledgementsResponse() {
4009
4245
  totalRemainingSequences: BigInt(0)
4010
4246
  };
4011
4247
  }
4248
+ /**
4249
+ * MsgPruneAcknowledgementsResponse defines the response type for the PruneAcknowledgements rpc.
4250
+ * @name MsgPruneAcknowledgementsResponse
4251
+ * @package ibc.core.channel.v1
4252
+ * @see proto type: ibc.core.channel.v1.MsgPruneAcknowledgementsResponse
4253
+ */
4012
4254
  exports.MsgPruneAcknowledgementsResponse = {
4013
4255
  typeUrl: "/ibc.core.channel.v1.MsgPruneAcknowledgementsResponse",
4014
4256
  aminoType: "cosmos-sdk/MsgPruneAcknowledgementsResponse",
@@ -1,20 +1,135 @@
1
1
  import { MsgChannelOpenInit, MsgChannelOpenTry, MsgChannelOpenAck, MsgChannelOpenConfirm, MsgChannelCloseInit, MsgChannelCloseConfirm, MsgRecvPacket, MsgTimeout, MsgTimeoutOnClose, MsgAcknowledgement, MsgChannelUpgradeInit, MsgChannelUpgradeTry, MsgChannelUpgradeAck, MsgChannelUpgradeConfirm, MsgChannelUpgradeOpen, MsgChannelUpgradeTimeout, MsgChannelUpgradeCancel, MsgUpdateParams, MsgPruneAcknowledgements } from "./tx";
2
+ /**
3
+ * ChannelOpenInit defines a rpc handler method for MsgChannelOpenInit.
4
+ * @name channelOpenInit
5
+ * @package ibc.core.channel.v1
6
+ * @see proto service: ibc.core.channel.v1.ChannelOpenInit
7
+ */
2
8
  export declare const channelOpenInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenInit | MsgChannelOpenInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
+ /**
10
+ * ChannelOpenTry defines a rpc handler method for MsgChannelOpenTry.
11
+ * @name channelOpenTry
12
+ * @package ibc.core.channel.v1
13
+ * @see proto service: ibc.core.channel.v1.ChannelOpenTry
14
+ */
3
15
  export declare const channelOpenTry: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenTry | MsgChannelOpenTry[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
+ /**
17
+ * ChannelOpenAck defines a rpc handler method for MsgChannelOpenAck.
18
+ * @name channelOpenAck
19
+ * @package ibc.core.channel.v1
20
+ * @see proto service: ibc.core.channel.v1.ChannelOpenAck
21
+ */
4
22
  export declare const channelOpenAck: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenAck | MsgChannelOpenAck[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
23
+ /**
24
+ * ChannelOpenConfirm defines a rpc handler method for MsgChannelOpenConfirm.
25
+ * @name channelOpenConfirm
26
+ * @package ibc.core.channel.v1
27
+ * @see proto service: ibc.core.channel.v1.ChannelOpenConfirm
28
+ */
5
29
  export declare const channelOpenConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelOpenConfirm | MsgChannelOpenConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
30
+ /**
31
+ * ChannelCloseInit defines a rpc handler method for MsgChannelCloseInit.
32
+ * @name channelCloseInit
33
+ * @package ibc.core.channel.v1
34
+ * @see proto service: ibc.core.channel.v1.ChannelCloseInit
35
+ */
6
36
  export declare const channelCloseInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelCloseInit | MsgChannelCloseInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
37
+ /**
38
+ * ChannelCloseConfirm defines a rpc handler method for
39
+ * MsgChannelCloseConfirm.
40
+ * @name channelCloseConfirm
41
+ * @package ibc.core.channel.v1
42
+ * @see proto service: ibc.core.channel.v1.ChannelCloseConfirm
43
+ */
7
44
  export declare const channelCloseConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelCloseConfirm | MsgChannelCloseConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
45
+ /**
46
+ * RecvPacket defines a rpc handler method for MsgRecvPacket.
47
+ * @name recvPacket
48
+ * @package ibc.core.channel.v1
49
+ * @see proto service: ibc.core.channel.v1.RecvPacket
50
+ */
8
51
  export declare const recvPacket: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRecvPacket | MsgRecvPacket[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
52
+ /**
53
+ * Timeout defines a rpc handler method for MsgTimeout.
54
+ * @name timeout
55
+ * @package ibc.core.channel.v1
56
+ * @see proto service: ibc.core.channel.v1.Timeout
57
+ */
9
58
  export declare const timeout: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgTimeout | MsgTimeout[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
59
+ /**
60
+ * TimeoutOnClose defines a rpc handler method for MsgTimeoutOnClose.
61
+ * @name timeoutOnClose
62
+ * @package ibc.core.channel.v1
63
+ * @see proto service: ibc.core.channel.v1.TimeoutOnClose
64
+ */
10
65
  export declare const timeoutOnClose: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgTimeoutOnClose | MsgTimeoutOnClose[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
66
+ /**
67
+ * Acknowledgement defines a rpc handler method for MsgAcknowledgement.
68
+ * @name acknowledgement
69
+ * @package ibc.core.channel.v1
70
+ * @see proto service: ibc.core.channel.v1.Acknowledgement
71
+ */
11
72
  export declare const acknowledgement: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgAcknowledgement | MsgAcknowledgement[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
73
+ /**
74
+ * ChannelUpgradeInit defines a rpc handler method for MsgChannelUpgradeInit.
75
+ * @name channelUpgradeInit
76
+ * @package ibc.core.channel.v1
77
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeInit
78
+ */
12
79
  export declare const channelUpgradeInit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeInit | MsgChannelUpgradeInit[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
80
+ /**
81
+ * ChannelUpgradeTry defines a rpc handler method for MsgChannelUpgradeTry.
82
+ * @name channelUpgradeTry
83
+ * @package ibc.core.channel.v1
84
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeTry
85
+ */
13
86
  export declare const channelUpgradeTry: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeTry | MsgChannelUpgradeTry[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
87
+ /**
88
+ * ChannelUpgradeAck defines a rpc handler method for MsgChannelUpgradeAck.
89
+ * @name channelUpgradeAck
90
+ * @package ibc.core.channel.v1
91
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeAck
92
+ */
14
93
  export declare const channelUpgradeAck: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeAck | MsgChannelUpgradeAck[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
94
+ /**
95
+ * ChannelUpgradeConfirm defines a rpc handler method for MsgChannelUpgradeConfirm.
96
+ * @name channelUpgradeConfirm
97
+ * @package ibc.core.channel.v1
98
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeConfirm
99
+ */
15
100
  export declare const channelUpgradeConfirm: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeConfirm | MsgChannelUpgradeConfirm[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
101
+ /**
102
+ * ChannelUpgradeOpen defines a rpc handler method for MsgChannelUpgradeOpen.
103
+ * @name channelUpgradeOpen
104
+ * @package ibc.core.channel.v1
105
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeOpen
106
+ */
16
107
  export declare const channelUpgradeOpen: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeOpen | MsgChannelUpgradeOpen[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
108
+ /**
109
+ * ChannelUpgradeTimeout defines a rpc handler method for MsgChannelUpgradeTimeout.
110
+ * @name channelUpgradeTimeout
111
+ * @package ibc.core.channel.v1
112
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeTimeout
113
+ */
17
114
  export declare const channelUpgradeTimeout: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeTimeout | MsgChannelUpgradeTimeout[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
115
+ /**
116
+ * ChannelUpgradeCancel defines a rpc handler method for MsgChannelUpgradeCancel.
117
+ * @name channelUpgradeCancel
118
+ * @package ibc.core.channel.v1
119
+ * @see proto service: ibc.core.channel.v1.ChannelUpgradeCancel
120
+ */
18
121
  export declare const channelUpgradeCancel: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgChannelUpgradeCancel | MsgChannelUpgradeCancel[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
122
+ /**
123
+ * UpdateChannelParams defines a rpc handler method for MsgUpdateParams.
124
+ * @name updateChannelParams
125
+ * @package ibc.core.channel.v1
126
+ * @see proto service: ibc.core.channel.v1.UpdateChannelParams
127
+ */
19
128
  export declare const updateChannelParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
129
+ /**
130
+ * PruneAcknowledgements defines a rpc handler method for MsgPruneAcknowledgements.
131
+ * @name pruneAcknowledgements
132
+ * @package ibc.core.channel.v1
133
+ * @see proto service: ibc.core.channel.v1.PruneAcknowledgements
134
+ */
20
135
  export declare const pruneAcknowledgements: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgPruneAcknowledgements | MsgPruneAcknowledgements[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;