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
@@ -12,6 +12,13 @@ function createBaseQueryContractInfoRequest() {
12
12
  address: ""
13
13
  };
14
14
  }
15
+ /**
16
+ * QueryContractInfoRequest is the request type for the Query/ContractInfo RPC
17
+ * method
18
+ * @name QueryContractInfoRequest
19
+ * @package cosmwasm.wasm.v1
20
+ * @see proto type: cosmwasm.wasm.v1.QueryContractInfoRequest
21
+ */
15
22
  exports.QueryContractInfoRequest = {
16
23
  typeUrl: "/cosmwasm.wasm.v1.QueryContractInfoRequest",
17
24
  aminoType: "wasm/QueryContractInfoRequest",
@@ -90,6 +97,13 @@ function createBaseQueryContractInfoResponse() {
90
97
  contractInfo: types_1.ContractInfo.fromPartial({})
91
98
  };
92
99
  }
100
+ /**
101
+ * QueryContractInfoResponse is the response type for the Query/ContractInfo RPC
102
+ * method
103
+ * @name QueryContractInfoResponse
104
+ * @package cosmwasm.wasm.v1
105
+ * @see proto type: cosmwasm.wasm.v1.QueryContractInfoResponse
106
+ */
93
107
  exports.QueryContractInfoResponse = {
94
108
  typeUrl: "/cosmwasm.wasm.v1.QueryContractInfoResponse",
95
109
  aminoType: "wasm/QueryContractInfoResponse",
@@ -184,6 +198,13 @@ function createBaseQueryContractHistoryRequest() {
184
198
  pagination: undefined
185
199
  };
186
200
  }
201
+ /**
202
+ * QueryContractHistoryRequest is the request type for the Query/ContractHistory
203
+ * RPC method
204
+ * @name QueryContractHistoryRequest
205
+ * @package cosmwasm.wasm.v1
206
+ * @see proto type: cosmwasm.wasm.v1.QueryContractHistoryRequest
207
+ */
187
208
  exports.QueryContractHistoryRequest = {
188
209
  typeUrl: "/cosmwasm.wasm.v1.QueryContractHistoryRequest",
189
210
  aminoType: "wasm/QueryContractHistoryRequest",
@@ -278,6 +299,13 @@ function createBaseQueryContractHistoryResponse() {
278
299
  pagination: undefined
279
300
  };
280
301
  }
302
+ /**
303
+ * QueryContractHistoryResponse is the response type for the
304
+ * Query/ContractHistory RPC method
305
+ * @name QueryContractHistoryResponse
306
+ * @package cosmwasm.wasm.v1
307
+ * @see proto type: cosmwasm.wasm.v1.QueryContractHistoryResponse
308
+ */
281
309
  exports.QueryContractHistoryResponse = {
282
310
  typeUrl: "/cosmwasm.wasm.v1.QueryContractHistoryResponse",
283
311
  aminoType: "wasm/QueryContractHistoryResponse",
@@ -376,6 +404,13 @@ function createBaseQueryContractsByCodeRequest() {
376
404
  pagination: undefined
377
405
  };
378
406
  }
407
+ /**
408
+ * QueryContractsByCodeRequest is the request type for the Query/ContractsByCode
409
+ * RPC method
410
+ * @name QueryContractsByCodeRequest
411
+ * @package cosmwasm.wasm.v1
412
+ * @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeRequest
413
+ */
379
414
  exports.QueryContractsByCodeRequest = {
380
415
  typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCodeRequest",
381
416
  aminoType: "wasm/QueryContractsByCodeRequest",
@@ -470,6 +505,13 @@ function createBaseQueryContractsByCodeResponse() {
470
505
  pagination: undefined
471
506
  };
472
507
  }
508
+ /**
509
+ * QueryContractsByCodeResponse is the response type for the
510
+ * Query/ContractsByCode RPC method
511
+ * @name QueryContractsByCodeResponse
512
+ * @package cosmwasm.wasm.v1
513
+ * @see proto type: cosmwasm.wasm.v1.QueryContractsByCodeResponse
514
+ */
473
515
  exports.QueryContractsByCodeResponse = {
474
516
  typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCodeResponse",
475
517
  aminoType: "wasm/QueryContractsByCodeResponse",
@@ -567,6 +609,13 @@ function createBaseQueryAllContractStateRequest() {
567
609
  pagination: undefined
568
610
  };
569
611
  }
612
+ /**
613
+ * QueryAllContractStateRequest is the request type for the
614
+ * Query/AllContractState RPC method
615
+ * @name QueryAllContractStateRequest
616
+ * @package cosmwasm.wasm.v1
617
+ * @see proto type: cosmwasm.wasm.v1.QueryAllContractStateRequest
618
+ */
570
619
  exports.QueryAllContractStateRequest = {
571
620
  typeUrl: "/cosmwasm.wasm.v1.QueryAllContractStateRequest",
572
621
  aminoType: "wasm/QueryAllContractStateRequest",
@@ -661,6 +710,13 @@ function createBaseQueryAllContractStateResponse() {
661
710
  pagination: undefined
662
711
  };
663
712
  }
713
+ /**
714
+ * QueryAllContractStateResponse is the response type for the
715
+ * Query/AllContractState RPC method
716
+ * @name QueryAllContractStateResponse
717
+ * @package cosmwasm.wasm.v1
718
+ * @see proto type: cosmwasm.wasm.v1.QueryAllContractStateResponse
719
+ */
664
720
  exports.QueryAllContractStateResponse = {
665
721
  typeUrl: "/cosmwasm.wasm.v1.QueryAllContractStateResponse",
666
722
  aminoType: "wasm/QueryAllContractStateResponse",
@@ -759,6 +815,13 @@ function createBaseQueryRawContractStateRequest() {
759
815
  queryData: new Uint8Array()
760
816
  };
761
817
  }
818
+ /**
819
+ * QueryRawContractStateRequest is the request type for the
820
+ * Query/RawContractState RPC method
821
+ * @name QueryRawContractStateRequest
822
+ * @package cosmwasm.wasm.v1
823
+ * @see proto type: cosmwasm.wasm.v1.QueryRawContractStateRequest
824
+ */
762
825
  exports.QueryRawContractStateRequest = {
763
826
  typeUrl: "/cosmwasm.wasm.v1.QueryRawContractStateRequest",
764
827
  aminoType: "wasm/QueryRawContractStateRequest",
@@ -847,6 +910,13 @@ function createBaseQueryRawContractStateResponse() {
847
910
  data: new Uint8Array()
848
911
  };
849
912
  }
913
+ /**
914
+ * QueryRawContractStateResponse is the response type for the
915
+ * Query/RawContractState RPC method
916
+ * @name QueryRawContractStateResponse
917
+ * @package cosmwasm.wasm.v1
918
+ * @see proto type: cosmwasm.wasm.v1.QueryRawContractStateResponse
919
+ */
850
920
  exports.QueryRawContractStateResponse = {
851
921
  typeUrl: "/cosmwasm.wasm.v1.QueryRawContractStateResponse",
852
922
  aminoType: "wasm/QueryRawContractStateResponse",
@@ -925,6 +995,13 @@ function createBaseQuerySmartContractStateRequest() {
925
995
  queryData: new Uint8Array()
926
996
  };
927
997
  }
998
+ /**
999
+ * QuerySmartContractStateRequest is the request type for the
1000
+ * Query/SmartContractState RPC method
1001
+ * @name QuerySmartContractStateRequest
1002
+ * @package cosmwasm.wasm.v1
1003
+ * @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateRequest
1004
+ */
928
1005
  exports.QuerySmartContractStateRequest = {
929
1006
  typeUrl: "/cosmwasm.wasm.v1.QuerySmartContractStateRequest",
930
1007
  aminoType: "wasm/QuerySmartContractStateRequest",
@@ -1013,6 +1090,13 @@ function createBaseQuerySmartContractStateResponse() {
1013
1090
  data: new Uint8Array()
1014
1091
  };
1015
1092
  }
1093
+ /**
1094
+ * QuerySmartContractStateResponse is the response type for the
1095
+ * Query/SmartContractState RPC method
1096
+ * @name QuerySmartContractStateResponse
1097
+ * @package cosmwasm.wasm.v1
1098
+ * @see proto type: cosmwasm.wasm.v1.QuerySmartContractStateResponse
1099
+ */
1016
1100
  exports.QuerySmartContractStateResponse = {
1017
1101
  typeUrl: "/cosmwasm.wasm.v1.QuerySmartContractStateResponse",
1018
1102
  aminoType: "wasm/QuerySmartContractStateResponse",
@@ -1090,6 +1174,12 @@ function createBaseQueryCodeRequest() {
1090
1174
  codeId: BigInt(0)
1091
1175
  };
1092
1176
  }
1177
+ /**
1178
+ * QueryCodeRequest is the request type for the Query/Code RPC method
1179
+ * @name QueryCodeRequest
1180
+ * @package cosmwasm.wasm.v1
1181
+ * @see proto type: cosmwasm.wasm.v1.QueryCodeRequest
1182
+ */
1093
1183
  exports.QueryCodeRequest = {
1094
1184
  typeUrl: "/cosmwasm.wasm.v1.QueryCodeRequest",
1095
1185
  aminoType: "wasm/QueryCodeRequest",
@@ -1167,6 +1257,12 @@ function createBaseQueryCodeInfoRequest() {
1167
1257
  codeId: BigInt(0)
1168
1258
  };
1169
1259
  }
1260
+ /**
1261
+ * QueryCodeInfoRequest is the request type for the Query/CodeInfo RPC method
1262
+ * @name QueryCodeInfoRequest
1263
+ * @package cosmwasm.wasm.v1
1264
+ * @see proto type: cosmwasm.wasm.v1.QueryCodeInfoRequest
1265
+ */
1170
1266
  exports.QueryCodeInfoRequest = {
1171
1267
  typeUrl: "/cosmwasm.wasm.v1.QueryCodeInfoRequest",
1172
1268
  aminoType: "wasm/QueryCodeInfoRequest",
@@ -1247,6 +1343,12 @@ function createBaseQueryCodeInfoResponse() {
1247
1343
  instantiatePermission: types_1.AccessConfig.fromPartial({})
1248
1344
  };
1249
1345
  }
1346
+ /**
1347
+ * QueryCodeInfoResponse is the response type for the Query/CodeInfo RPC method
1348
+ * @name QueryCodeInfoResponse
1349
+ * @package cosmwasm.wasm.v1
1350
+ * @see proto type: cosmwasm.wasm.v1.QueryCodeInfoResponse
1351
+ */
1250
1352
  exports.QueryCodeInfoResponse = {
1251
1353
  typeUrl: "/cosmwasm.wasm.v1.QueryCodeInfoResponse",
1252
1354
  aminoType: "wasm/QueryCodeInfoResponse",
@@ -1365,6 +1467,12 @@ function createBaseCodeInfoResponse() {
1365
1467
  instantiatePermission: types_1.AccessConfig.fromPartial({})
1366
1468
  };
1367
1469
  }
1470
+ /**
1471
+ * CodeInfoResponse contains code meta data from CodeInfo
1472
+ * @name CodeInfoResponse
1473
+ * @package cosmwasm.wasm.v1
1474
+ * @see proto type: cosmwasm.wasm.v1.CodeInfoResponse
1475
+ */
1368
1476
  exports.CodeInfoResponse = {
1369
1477
  typeUrl: "/cosmwasm.wasm.v1.CodeInfoResponse",
1370
1478
  aminoType: "wasm/CodeInfoResponse",
@@ -1481,6 +1589,12 @@ function createBaseQueryCodeResponse() {
1481
1589
  data: new Uint8Array()
1482
1590
  };
1483
1591
  }
1592
+ /**
1593
+ * QueryCodeResponse is the response type for the Query/Code RPC method
1594
+ * @name QueryCodeResponse
1595
+ * @package cosmwasm.wasm.v1
1596
+ * @see proto type: cosmwasm.wasm.v1.QueryCodeResponse
1597
+ */
1484
1598
  exports.QueryCodeResponse = {
1485
1599
  typeUrl: "/cosmwasm.wasm.v1.QueryCodeResponse",
1486
1600
  aminoType: "wasm/QueryCodeResponse",
@@ -1574,6 +1688,12 @@ function createBaseQueryCodesRequest() {
1574
1688
  pagination: undefined
1575
1689
  };
1576
1690
  }
1691
+ /**
1692
+ * QueryCodesRequest is the request type for the Query/Codes RPC method
1693
+ * @name QueryCodesRequest
1694
+ * @package cosmwasm.wasm.v1
1695
+ * @see proto type: cosmwasm.wasm.v1.QueryCodesRequest
1696
+ */
1577
1697
  exports.QueryCodesRequest = {
1578
1698
  typeUrl: "/cosmwasm.wasm.v1.QueryCodesRequest",
1579
1699
  aminoType: "wasm/QueryCodesRequest",
@@ -1657,6 +1777,12 @@ function createBaseQueryCodesResponse() {
1657
1777
  pagination: undefined
1658
1778
  };
1659
1779
  }
1780
+ /**
1781
+ * QueryCodesResponse is the response type for the Query/Codes RPC method
1782
+ * @name QueryCodesResponse
1783
+ * @package cosmwasm.wasm.v1
1784
+ * @see proto type: cosmwasm.wasm.v1.QueryCodesResponse
1785
+ */
1660
1786
  exports.QueryCodesResponse = {
1661
1787
  typeUrl: "/cosmwasm.wasm.v1.QueryCodesResponse",
1662
1788
  aminoType: "wasm/QueryCodesResponse",
@@ -1754,6 +1880,13 @@ function createBaseQueryPinnedCodesRequest() {
1754
1880
  pagination: undefined
1755
1881
  };
1756
1882
  }
1883
+ /**
1884
+ * QueryPinnedCodesRequest is the request type for the Query/PinnedCodes
1885
+ * RPC method
1886
+ * @name QueryPinnedCodesRequest
1887
+ * @package cosmwasm.wasm.v1
1888
+ * @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesRequest
1889
+ */
1757
1890
  exports.QueryPinnedCodesRequest = {
1758
1891
  typeUrl: "/cosmwasm.wasm.v1.QueryPinnedCodesRequest",
1759
1892
  aminoType: "wasm/QueryPinnedCodesRequest",
@@ -1837,6 +1970,13 @@ function createBaseQueryPinnedCodesResponse() {
1837
1970
  pagination: undefined
1838
1971
  };
1839
1972
  }
1973
+ /**
1974
+ * QueryPinnedCodesResponse is the response type for the
1975
+ * Query/PinnedCodes RPC method
1976
+ * @name QueryPinnedCodesResponse
1977
+ * @package cosmwasm.wasm.v1
1978
+ * @see proto type: cosmwasm.wasm.v1.QueryPinnedCodesResponse
1979
+ */
1840
1980
  exports.QueryPinnedCodesResponse = {
1841
1981
  typeUrl: "/cosmwasm.wasm.v1.QueryPinnedCodesResponse",
1842
1982
  aminoType: "wasm/QueryPinnedCodesResponse",
@@ -1941,6 +2081,12 @@ exports.QueryPinnedCodesResponse = {
1941
2081
  function createBaseQueryParamsRequest() {
1942
2082
  return {};
1943
2083
  }
2084
+ /**
2085
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
2086
+ * @name QueryParamsRequest
2087
+ * @package cosmwasm.wasm.v1
2088
+ * @see proto type: cosmwasm.wasm.v1.QueryParamsRequest
2089
+ */
1944
2090
  exports.QueryParamsRequest = {
1945
2091
  typeUrl: "/cosmwasm.wasm.v1.QueryParamsRequest",
1946
2092
  aminoType: "wasm/QueryParamsRequest",
@@ -2007,6 +2153,12 @@ function createBaseQueryParamsResponse() {
2007
2153
  params: types_1.Params.fromPartial({})
2008
2154
  };
2009
2155
  }
2156
+ /**
2157
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
2158
+ * @name QueryParamsResponse
2159
+ * @package cosmwasm.wasm.v1
2160
+ * @see proto type: cosmwasm.wasm.v1.QueryParamsResponse
2161
+ */
2010
2162
  exports.QueryParamsResponse = {
2011
2163
  typeUrl: "/cosmwasm.wasm.v1.QueryParamsResponse",
2012
2164
  aminoType: "wasm/QueryParamsResponse",
@@ -2090,6 +2242,13 @@ function createBaseQueryContractsByCreatorRequest() {
2090
2242
  pagination: undefined
2091
2243
  };
2092
2244
  }
2245
+ /**
2246
+ * QueryContractsByCreatorRequest is the request type for the
2247
+ * Query/ContractsByCreator RPC method.
2248
+ * @name QueryContractsByCreatorRequest
2249
+ * @package cosmwasm.wasm.v1
2250
+ * @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorRequest
2251
+ */
2093
2252
  exports.QueryContractsByCreatorRequest = {
2094
2253
  typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCreatorRequest",
2095
2254
  aminoType: "wasm/QueryContractsByCreatorRequest",
@@ -2184,6 +2343,13 @@ function createBaseQueryContractsByCreatorResponse() {
2184
2343
  pagination: undefined
2185
2344
  };
2186
2345
  }
2346
+ /**
2347
+ * QueryContractsByCreatorResponse is the response type for the
2348
+ * Query/ContractsByCreator RPC method.
2349
+ * @name QueryContractsByCreatorResponse
2350
+ * @package cosmwasm.wasm.v1
2351
+ * @see proto type: cosmwasm.wasm.v1.QueryContractsByCreatorResponse
2352
+ */
2187
2353
  exports.QueryContractsByCreatorResponse = {
2188
2354
  typeUrl: "/cosmwasm.wasm.v1.QueryContractsByCreatorResponse",
2189
2355
  aminoType: "wasm/QueryContractsByCreatorResponse",
@@ -2278,6 +2444,13 @@ exports.QueryContractsByCreatorResponse = {
2278
2444
  function createBaseQueryWasmLimitsConfigRequest() {
2279
2445
  return {};
2280
2446
  }
2447
+ /**
2448
+ * QueryWasmLimitsConfigRequest is the request type for the
2449
+ * Query/WasmLimitsConfig RPC method.
2450
+ * @name QueryWasmLimitsConfigRequest
2451
+ * @package cosmwasm.wasm.v1
2452
+ * @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest
2453
+ */
2281
2454
  exports.QueryWasmLimitsConfigRequest = {
2282
2455
  typeUrl: "/cosmwasm.wasm.v1.QueryWasmLimitsConfigRequest",
2283
2456
  aminoType: "wasm/QueryWasmLimitsConfigRequest",
@@ -2344,6 +2517,14 @@ function createBaseQueryWasmLimitsConfigResponse() {
2344
2517
  config: ""
2345
2518
  };
2346
2519
  }
2520
+ /**
2521
+ * QueryWasmLimitsConfigResponse is the response type for the
2522
+ * Query/WasmLimitsConfig RPC method. It contains the JSON encoded limits for
2523
+ * static validation of Wasm files.
2524
+ * @name QueryWasmLimitsConfigResponse
2525
+ * @package cosmwasm.wasm.v1
2526
+ * @see proto type: cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse
2527
+ */
2347
2528
  exports.QueryWasmLimitsConfigResponse = {
2348
2529
  typeUrl: "/cosmwasm.wasm.v1.QueryWasmLimitsConfigResponse",
2349
2530
  aminoType: "wasm/QueryWasmLimitsConfigResponse",
@@ -2424,6 +2605,13 @@ function createBaseQueryBuildAddressRequest() {
2424
2605
  initArgs: new Uint8Array()
2425
2606
  };
2426
2607
  }
2608
+ /**
2609
+ * QueryBuildAddressRequest is the request type for the Query/BuildAddress RPC
2610
+ * method.
2611
+ * @name QueryBuildAddressRequest
2612
+ * @package cosmwasm.wasm.v1
2613
+ * @see proto type: cosmwasm.wasm.v1.QueryBuildAddressRequest
2614
+ */
2427
2615
  exports.QueryBuildAddressRequest = {
2428
2616
  typeUrl: "/cosmwasm.wasm.v1.QueryBuildAddressRequest",
2429
2617
  aminoType: "wasm/QueryBuildAddressRequest",
@@ -2534,6 +2722,13 @@ function createBaseQueryBuildAddressResponse() {
2534
2722
  address: ""
2535
2723
  };
2536
2724
  }
2725
+ /**
2726
+ * QueryBuildAddressResponse is the response type for the Query/BuildAddress RPC
2727
+ * method.
2728
+ * @name QueryBuildAddressResponse
2729
+ * @package cosmwasm.wasm.v1
2730
+ * @see proto type: cosmwasm.wasm.v1.QueryBuildAddressResponse
2731
+ */
2537
2732
  exports.QueryBuildAddressResponse = {
2538
2733
  typeUrl: "/cosmwasm.wasm.v1.QueryBuildAddressResponse",
2539
2734
  aminoType: "wasm/QueryBuildAddressResponse",
@@ -1,15 +1,100 @@
1
1
  import { QueryContractInfoRequest, QueryContractInfoResponse, QueryContractHistoryRequest, QueryContractHistoryResponse, QueryContractsByCodeRequest, QueryContractsByCodeResponse, QueryAllContractStateRequest, QueryAllContractStateResponse, QueryRawContractStateRequest, QueryRawContractStateResponse, QuerySmartContractStateRequest, QuerySmartContractStateResponse, QueryCodeRequest, QueryCodeResponse, QueryCodesRequest, QueryCodesResponse, QueryCodeInfoRequest, QueryCodeInfoResponse, QueryPinnedCodesRequest, QueryPinnedCodesResponse, QueryParamsRequest, QueryParamsResponse, QueryContractsByCreatorRequest, QueryContractsByCreatorResponse, QueryWasmLimitsConfigRequest, QueryWasmLimitsConfigResponse, QueryBuildAddressRequest, QueryBuildAddressResponse } from "./query";
2
+ /**
3
+ * ContractInfo gets the contract meta data
4
+ * @name getContractInfo
5
+ * @package cosmwasm.wasm.v1
6
+ * @see proto service: cosmwasm.wasm.v1.ContractInfo
7
+ */
2
8
  export declare const getContractInfo: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractInfoRequest) => Promise<QueryContractInfoResponse>;
9
+ /**
10
+ * ContractHistory gets the contract code history
11
+ * @name getContractHistory
12
+ * @package cosmwasm.wasm.v1
13
+ * @see proto service: cosmwasm.wasm.v1.ContractHistory
14
+ */
3
15
  export declare const getContractHistory: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractHistoryRequest) => Promise<QueryContractHistoryResponse>;
16
+ /**
17
+ * ContractsByCode lists all smart contracts for a code id
18
+ * @name getContractsByCode
19
+ * @package cosmwasm.wasm.v1
20
+ * @see proto service: cosmwasm.wasm.v1.ContractsByCode
21
+ */
4
22
  export declare const getContractsByCode: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractsByCodeRequest) => Promise<QueryContractsByCodeResponse>;
23
+ /**
24
+ * AllContractState gets all raw store data for a single contract
25
+ * @name getAllContractState
26
+ * @package cosmwasm.wasm.v1
27
+ * @see proto service: cosmwasm.wasm.v1.AllContractState
28
+ */
5
29
  export declare const getAllContractState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryAllContractStateRequest) => Promise<QueryAllContractStateResponse>;
30
+ /**
31
+ * RawContractState gets single key from the raw store data of a contract
32
+ * @name getRawContractState
33
+ * @package cosmwasm.wasm.v1
34
+ * @see proto service: cosmwasm.wasm.v1.RawContractState
35
+ */
6
36
  export declare const getRawContractState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryRawContractStateRequest) => Promise<QueryRawContractStateResponse>;
37
+ /**
38
+ * SmartContractState get smart query result from the contract
39
+ * @name getSmartContractState
40
+ * @package cosmwasm.wasm.v1
41
+ * @see proto service: cosmwasm.wasm.v1.SmartContractState
42
+ */
7
43
  export declare const getSmartContractState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QuerySmartContractStateRequest) => Promise<QuerySmartContractStateResponse>;
44
+ /**
45
+ * Code gets the binary code and metadata for a single wasm code
46
+ * @name getCode
47
+ * @package cosmwasm.wasm.v1
48
+ * @see proto service: cosmwasm.wasm.v1.Code
49
+ */
8
50
  export declare const getCode: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCodeRequest) => Promise<QueryCodeResponse>;
51
+ /**
52
+ * Codes gets the metadata for all stored wasm codes
53
+ * @name getCodes
54
+ * @package cosmwasm.wasm.v1
55
+ * @see proto service: cosmwasm.wasm.v1.Codes
56
+ */
9
57
  export declare const getCodes: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCodesRequest) => Promise<QueryCodesResponse>;
58
+ /**
59
+ * CodeInfo gets the metadata for a single wasm code
60
+ * @name getCodeInfo
61
+ * @package cosmwasm.wasm.v1
62
+ * @see proto service: cosmwasm.wasm.v1.CodeInfo
63
+ */
10
64
  export declare const getCodeInfo: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCodeInfoRequest) => Promise<QueryCodeInfoResponse>;
65
+ /**
66
+ * PinnedCodes gets the pinned code ids
67
+ * @name getPinnedCodes
68
+ * @package cosmwasm.wasm.v1
69
+ * @see proto service: cosmwasm.wasm.v1.PinnedCodes
70
+ */
11
71
  export declare const getPinnedCodes: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryPinnedCodesRequest) => Promise<QueryPinnedCodesResponse>;
72
+ /**
73
+ * Params gets the module params
74
+ * @name getParams
75
+ * @package cosmwasm.wasm.v1
76
+ * @see proto service: cosmwasm.wasm.v1.Params
77
+ */
12
78
  export declare const getParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryParamsRequest) => Promise<QueryParamsResponse>;
79
+ /**
80
+ * ContractsByCreator gets the contracts by creator
81
+ * @name getContractsByCreator
82
+ * @package cosmwasm.wasm.v1
83
+ * @see proto service: cosmwasm.wasm.v1.ContractsByCreator
84
+ */
13
85
  export declare const getContractsByCreator: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryContractsByCreatorRequest) => Promise<QueryContractsByCreatorResponse>;
86
+ /**
87
+ * WasmLimitsConfig gets the configured limits for static validation of Wasm
88
+ * files, encoded in JSON.
89
+ * @name getWasmLimitsConfig
90
+ * @package cosmwasm.wasm.v1
91
+ * @see proto service: cosmwasm.wasm.v1.WasmLimitsConfig
92
+ */
14
93
  export declare const getWasmLimitsConfig: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryWasmLimitsConfigRequest) => Promise<QueryWasmLimitsConfigResponse>;
94
+ /**
95
+ * BuildAddress builds a contract address
96
+ * @name getBuildAddress
97
+ * @package cosmwasm.wasm.v1
98
+ * @see proto service: cosmwasm.wasm.v1.BuildAddress
99
+ */
15
100
  export declare const getBuildAddress: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryBuildAddressRequest) => Promise<QueryBuildAddressResponse>;
@@ -3,7 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getBuildAddress = exports.getWasmLimitsConfig = exports.getContractsByCreator = exports.getParams = exports.getPinnedCodes = exports.getCodeInfo = exports.getCodes = exports.getCode = exports.getSmartContractState = exports.getRawContractState = exports.getAllContractState = exports.getContractsByCode = exports.getContractHistory = exports.getContractInfo = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const query_1 = require("./query");
6
- /* ContractInfo gets the contract meta data */
6
+ /**
7
+ * ContractInfo gets the contract meta data
8
+ * @name getContractInfo
9
+ * @package cosmwasm.wasm.v1
10
+ * @see proto service: cosmwasm.wasm.v1.ContractInfo
11
+ */
7
12
  exports.getContractInfo = (0, helper_func_types_1.buildQuery)({
8
13
  encode: query_1.QueryContractInfoRequest.encode,
9
14
  decode: query_1.QueryContractInfoResponse.decode,
@@ -11,7 +16,12 @@ exports.getContractInfo = (0, helper_func_types_1.buildQuery)({
11
16
  method: "ContractInfo",
12
17
  deps: [query_1.QueryContractInfoRequest, query_1.QueryContractInfoResponse]
13
18
  });
14
- /* ContractHistory gets the contract code history */
19
+ /**
20
+ * ContractHistory gets the contract code history
21
+ * @name getContractHistory
22
+ * @package cosmwasm.wasm.v1
23
+ * @see proto service: cosmwasm.wasm.v1.ContractHistory
24
+ */
15
25
  exports.getContractHistory = (0, helper_func_types_1.buildQuery)({
16
26
  encode: query_1.QueryContractHistoryRequest.encode,
17
27
  decode: query_1.QueryContractHistoryResponse.decode,
@@ -19,7 +29,12 @@ exports.getContractHistory = (0, helper_func_types_1.buildQuery)({
19
29
  method: "ContractHistory",
20
30
  deps: [query_1.QueryContractHistoryRequest, query_1.QueryContractHistoryResponse]
21
31
  });
22
- /* ContractsByCode lists all smart contracts for a code id */
32
+ /**
33
+ * ContractsByCode lists all smart contracts for a code id
34
+ * @name getContractsByCode
35
+ * @package cosmwasm.wasm.v1
36
+ * @see proto service: cosmwasm.wasm.v1.ContractsByCode
37
+ */
23
38
  exports.getContractsByCode = (0, helper_func_types_1.buildQuery)({
24
39
  encode: query_1.QueryContractsByCodeRequest.encode,
25
40
  decode: query_1.QueryContractsByCodeResponse.decode,
@@ -27,7 +42,12 @@ exports.getContractsByCode = (0, helper_func_types_1.buildQuery)({
27
42
  method: "ContractsByCode",
28
43
  deps: [query_1.QueryContractsByCodeRequest, query_1.QueryContractsByCodeResponse]
29
44
  });
30
- /* AllContractState gets all raw store data for a single contract */
45
+ /**
46
+ * AllContractState gets all raw store data for a single contract
47
+ * @name getAllContractState
48
+ * @package cosmwasm.wasm.v1
49
+ * @see proto service: cosmwasm.wasm.v1.AllContractState
50
+ */
31
51
  exports.getAllContractState = (0, helper_func_types_1.buildQuery)({
32
52
  encode: query_1.QueryAllContractStateRequest.encode,
33
53
  decode: query_1.QueryAllContractStateResponse.decode,
@@ -35,7 +55,12 @@ exports.getAllContractState = (0, helper_func_types_1.buildQuery)({
35
55
  method: "AllContractState",
36
56
  deps: [query_1.QueryAllContractStateRequest, query_1.QueryAllContractStateResponse]
37
57
  });
38
- /* RawContractState gets single key from the raw store data of a contract */
58
+ /**
59
+ * RawContractState gets single key from the raw store data of a contract
60
+ * @name getRawContractState
61
+ * @package cosmwasm.wasm.v1
62
+ * @see proto service: cosmwasm.wasm.v1.RawContractState
63
+ */
39
64
  exports.getRawContractState = (0, helper_func_types_1.buildQuery)({
40
65
  encode: query_1.QueryRawContractStateRequest.encode,
41
66
  decode: query_1.QueryRawContractStateResponse.decode,
@@ -43,7 +68,12 @@ exports.getRawContractState = (0, helper_func_types_1.buildQuery)({
43
68
  method: "RawContractState",
44
69
  deps: [query_1.QueryRawContractStateRequest, query_1.QueryRawContractStateResponse]
45
70
  });
46
- /* SmartContractState get smart query result from the contract */
71
+ /**
72
+ * SmartContractState get smart query result from the contract
73
+ * @name getSmartContractState
74
+ * @package cosmwasm.wasm.v1
75
+ * @see proto service: cosmwasm.wasm.v1.SmartContractState
76
+ */
47
77
  exports.getSmartContractState = (0, helper_func_types_1.buildQuery)({
48
78
  encode: query_1.QuerySmartContractStateRequest.encode,
49
79
  decode: query_1.QuerySmartContractStateResponse.decode,
@@ -51,7 +81,12 @@ exports.getSmartContractState = (0, helper_func_types_1.buildQuery)({
51
81
  method: "SmartContractState",
52
82
  deps: [query_1.QuerySmartContractStateRequest, query_1.QuerySmartContractStateResponse]
53
83
  });
54
- /* Code gets the binary code and metadata for a single wasm code */
84
+ /**
85
+ * Code gets the binary code and metadata for a single wasm code
86
+ * @name getCode
87
+ * @package cosmwasm.wasm.v1
88
+ * @see proto service: cosmwasm.wasm.v1.Code
89
+ */
55
90
  exports.getCode = (0, helper_func_types_1.buildQuery)({
56
91
  encode: query_1.QueryCodeRequest.encode,
57
92
  decode: query_1.QueryCodeResponse.decode,
@@ -59,7 +94,12 @@ exports.getCode = (0, helper_func_types_1.buildQuery)({
59
94
  method: "Code",
60
95
  deps: [query_1.QueryCodeRequest, query_1.QueryCodeResponse]
61
96
  });
62
- /* Codes gets the metadata for all stored wasm codes */
97
+ /**
98
+ * Codes gets the metadata for all stored wasm codes
99
+ * @name getCodes
100
+ * @package cosmwasm.wasm.v1
101
+ * @see proto service: cosmwasm.wasm.v1.Codes
102
+ */
63
103
  exports.getCodes = (0, helper_func_types_1.buildQuery)({
64
104
  encode: query_1.QueryCodesRequest.encode,
65
105
  decode: query_1.QueryCodesResponse.decode,
@@ -67,7 +107,12 @@ exports.getCodes = (0, helper_func_types_1.buildQuery)({
67
107
  method: "Codes",
68
108
  deps: [query_1.QueryCodesRequest, query_1.QueryCodesResponse]
69
109
  });
70
- /* CodeInfo gets the metadata for a single wasm code */
110
+ /**
111
+ * CodeInfo gets the metadata for a single wasm code
112
+ * @name getCodeInfo
113
+ * @package cosmwasm.wasm.v1
114
+ * @see proto service: cosmwasm.wasm.v1.CodeInfo
115
+ */
71
116
  exports.getCodeInfo = (0, helper_func_types_1.buildQuery)({
72
117
  encode: query_1.QueryCodeInfoRequest.encode,
73
118
  decode: query_1.QueryCodeInfoResponse.decode,
@@ -75,7 +120,12 @@ exports.getCodeInfo = (0, helper_func_types_1.buildQuery)({
75
120
  method: "CodeInfo",
76
121
  deps: [query_1.QueryCodeInfoRequest, query_1.QueryCodeInfoResponse]
77
122
  });
78
- /* PinnedCodes gets the pinned code ids */
123
+ /**
124
+ * PinnedCodes gets the pinned code ids
125
+ * @name getPinnedCodes
126
+ * @package cosmwasm.wasm.v1
127
+ * @see proto service: cosmwasm.wasm.v1.PinnedCodes
128
+ */
79
129
  exports.getPinnedCodes = (0, helper_func_types_1.buildQuery)({
80
130
  encode: query_1.QueryPinnedCodesRequest.encode,
81
131
  decode: query_1.QueryPinnedCodesResponse.decode,
@@ -83,7 +133,12 @@ exports.getPinnedCodes = (0, helper_func_types_1.buildQuery)({
83
133
  method: "PinnedCodes",
84
134
  deps: [query_1.QueryPinnedCodesRequest, query_1.QueryPinnedCodesResponse]
85
135
  });
86
- /* Params gets the module params */
136
+ /**
137
+ * Params gets the module params
138
+ * @name getParams
139
+ * @package cosmwasm.wasm.v1
140
+ * @see proto service: cosmwasm.wasm.v1.Params
141
+ */
87
142
  exports.getParams = (0, helper_func_types_1.buildQuery)({
88
143
  encode: query_1.QueryParamsRequest.encode,
89
144
  decode: query_1.QueryParamsResponse.decode,
@@ -91,7 +146,12 @@ exports.getParams = (0, helper_func_types_1.buildQuery)({
91
146
  method: "Params",
92
147
  deps: [query_1.QueryParamsRequest, query_1.QueryParamsResponse]
93
148
  });
94
- /* ContractsByCreator gets the contracts by creator */
149
+ /**
150
+ * ContractsByCreator gets the contracts by creator
151
+ * @name getContractsByCreator
152
+ * @package cosmwasm.wasm.v1
153
+ * @see proto service: cosmwasm.wasm.v1.ContractsByCreator
154
+ */
95
155
  exports.getContractsByCreator = (0, helper_func_types_1.buildQuery)({
96
156
  encode: query_1.QueryContractsByCreatorRequest.encode,
97
157
  decode: query_1.QueryContractsByCreatorResponse.decode,
@@ -99,8 +159,13 @@ exports.getContractsByCreator = (0, helper_func_types_1.buildQuery)({
99
159
  method: "ContractsByCreator",
100
160
  deps: [query_1.QueryContractsByCreatorRequest, query_1.QueryContractsByCreatorResponse]
101
161
  });
102
- /* WasmLimitsConfig gets the configured limits for static validation of Wasm
103
- files, encoded in JSON. */
162
+ /**
163
+ * WasmLimitsConfig gets the configured limits for static validation of Wasm
164
+ * files, encoded in JSON.
165
+ * @name getWasmLimitsConfig
166
+ * @package cosmwasm.wasm.v1
167
+ * @see proto service: cosmwasm.wasm.v1.WasmLimitsConfig
168
+ */
104
169
  exports.getWasmLimitsConfig = (0, helper_func_types_1.buildQuery)({
105
170
  encode: query_1.QueryWasmLimitsConfigRequest.encode,
106
171
  decode: query_1.QueryWasmLimitsConfigResponse.decode,
@@ -108,7 +173,12 @@ exports.getWasmLimitsConfig = (0, helper_func_types_1.buildQuery)({
108
173
  method: "WasmLimitsConfig",
109
174
  deps: [query_1.QueryWasmLimitsConfigRequest, query_1.QueryWasmLimitsConfigResponse]
110
175
  });
111
- /* BuildAddress builds a contract address */
176
+ /**
177
+ * BuildAddress builds a contract address
178
+ * @name getBuildAddress
179
+ * @package cosmwasm.wasm.v1
180
+ * @see proto service: cosmwasm.wasm.v1.BuildAddress
181
+ */
112
182
  exports.getBuildAddress = (0, helper_func_types_1.buildQuery)({
113
183
  encode: query_1.QueryBuildAddressRequest.encode,
114
184
  decode: query_1.QueryBuildAddressResponse.decode,