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
@@ -1,6 +1,11 @@
1
1
  import { buildQuery } from "../../../helper-func-types";
2
2
  import { QueryBalanceRequest, QueryBalanceResponse, QueryAllBalancesRequest, QueryAllBalancesResponse, QuerySpendableBalancesRequest, QuerySpendableBalancesResponse, QuerySpendableBalanceByDenomRequest, QuerySpendableBalanceByDenomResponse, QueryTotalSupplyRequest, QueryTotalSupplyResponse, QuerySupplyOfRequest, QuerySupplyOfResponse, QueryParamsRequest, QueryParamsResponse, QueryDenomMetadataRequest, QueryDenomMetadataResponse, QueryDenomMetadataByQueryStringRequest, QueryDenomMetadataByQueryStringResponse, QueryDenomsMetadataRequest, QueryDenomsMetadataResponse, QueryDenomOwnersRequest, QueryDenomOwnersResponse, QueryDenomOwnersByQueryRequest, QueryDenomOwnersByQueryResponse, QuerySendEnabledRequest, QuerySendEnabledResponse } from "./query";
3
- /* Balance queries the balance of a single coin for a single account. */
3
+ /**
4
+ * Balance queries the balance of a single coin for a single account.
5
+ * @name getBalance
6
+ * @package cosmos.bank.v1beta1
7
+ * @see proto service: cosmos.bank.v1beta1.Balance
8
+ */
4
9
  export const getBalance = buildQuery({
5
10
  encode: QueryBalanceRequest.encode,
6
11
  decode: QueryBalanceResponse.decode,
@@ -8,10 +13,15 @@ export const getBalance = buildQuery({
8
13
  method: "Balance",
9
14
  deps: [QueryBalanceRequest, QueryBalanceResponse]
10
15
  });
11
- /* AllBalances queries the balance of all coins for a single account.
12
-
13
- When called from another module, this query might consume a high amount of
14
- gas if the pagination field is incorrectly set. */
16
+ /**
17
+ * AllBalances queries the balance of all coins for a single account.
18
+ *
19
+ * When called from another module, this query might consume a high amount of
20
+ * gas if the pagination field is incorrectly set.
21
+ * @name getAllBalances
22
+ * @package cosmos.bank.v1beta1
23
+ * @see proto service: cosmos.bank.v1beta1.AllBalances
24
+ */
15
25
  export const getAllBalances = buildQuery({
16
26
  encode: QueryAllBalancesRequest.encode,
17
27
  decode: QueryAllBalancesResponse.decode,
@@ -19,13 +29,18 @@ export const getAllBalances = buildQuery({
19
29
  method: "AllBalances",
20
30
  deps: [QueryAllBalancesRequest, QueryAllBalancesResponse]
21
31
  });
22
- /* SpendableBalances queries the spendable balance of all coins for a single
23
- account.
24
-
25
- When called from another module, this query might consume a high amount of
26
- gas if the pagination field is incorrectly set.
27
-
28
- Since: cosmos-sdk 0.46 */
32
+ /**
33
+ * SpendableBalances queries the spendable balance of all coins for a single
34
+ * account.
35
+ *
36
+ * When called from another module, this query might consume a high amount of
37
+ * gas if the pagination field is incorrectly set.
38
+ *
39
+ * Since: cosmos-sdk 0.46
40
+ * @name getSpendableBalances
41
+ * @package cosmos.bank.v1beta1
42
+ * @see proto service: cosmos.bank.v1beta1.SpendableBalances
43
+ */
29
44
  export const getSpendableBalances = buildQuery({
30
45
  encode: QuerySpendableBalancesRequest.encode,
31
46
  decode: QuerySpendableBalancesResponse.decode,
@@ -33,13 +48,18 @@ export const getSpendableBalances = buildQuery({
33
48
  method: "SpendableBalances",
34
49
  deps: [QuerySpendableBalancesRequest, QuerySpendableBalancesResponse]
35
50
  });
36
- /* SpendableBalanceByDenom queries the spendable balance of a single denom for
37
- a single account.
38
-
39
- When called from another module, this query might consume a high amount of
40
- gas if the pagination field is incorrectly set.
41
-
42
- Since: cosmos-sdk 0.47 */
51
+ /**
52
+ * SpendableBalanceByDenom queries the spendable balance of a single denom for
53
+ * a single account.
54
+ *
55
+ * When called from another module, this query might consume a high amount of
56
+ * gas if the pagination field is incorrectly set.
57
+ *
58
+ * Since: cosmos-sdk 0.47
59
+ * @name getSpendableBalanceByDenom
60
+ * @package cosmos.bank.v1beta1
61
+ * @see proto service: cosmos.bank.v1beta1.SpendableBalanceByDenom
62
+ */
43
63
  export const getSpendableBalanceByDenom = buildQuery({
44
64
  encode: QuerySpendableBalanceByDenomRequest.encode,
45
65
  decode: QuerySpendableBalanceByDenomResponse.decode,
@@ -47,10 +67,15 @@ export const getSpendableBalanceByDenom = buildQuery({
47
67
  method: "SpendableBalanceByDenom",
48
68
  deps: [QuerySpendableBalanceByDenomRequest, QuerySpendableBalanceByDenomResponse]
49
69
  });
50
- /* TotalSupply queries the total supply of all coins.
51
-
52
- When called from another module, this query might consume a high amount of
53
- gas if the pagination field is incorrectly set. */
70
+ /**
71
+ * TotalSupply queries the total supply of all coins.
72
+ *
73
+ * When called from another module, this query might consume a high amount of
74
+ * gas if the pagination field is incorrectly set.
75
+ * @name getTotalSupply
76
+ * @package cosmos.bank.v1beta1
77
+ * @see proto service: cosmos.bank.v1beta1.TotalSupply
78
+ */
54
79
  export const getTotalSupply = buildQuery({
55
80
  encode: QueryTotalSupplyRequest.encode,
56
81
  decode: QueryTotalSupplyResponse.decode,
@@ -58,10 +83,15 @@ export const getTotalSupply = buildQuery({
58
83
  method: "TotalSupply",
59
84
  deps: [QueryTotalSupplyRequest, QueryTotalSupplyResponse]
60
85
  });
61
- /* SupplyOf queries the supply of a single coin.
62
-
63
- When called from another module, this query might consume a high amount of
64
- gas if the pagination field is incorrectly set. */
86
+ /**
87
+ * SupplyOf queries the supply of a single coin.
88
+ *
89
+ * When called from another module, this query might consume a high amount of
90
+ * gas if the pagination field is incorrectly set.
91
+ * @name getSupplyOf
92
+ * @package cosmos.bank.v1beta1
93
+ * @see proto service: cosmos.bank.v1beta1.SupplyOf
94
+ */
65
95
  export const getSupplyOf = buildQuery({
66
96
  encode: QuerySupplyOfRequest.encode,
67
97
  decode: QuerySupplyOfResponse.decode,
@@ -69,7 +99,12 @@ export const getSupplyOf = buildQuery({
69
99
  method: "SupplyOf",
70
100
  deps: [QuerySupplyOfRequest, QuerySupplyOfResponse]
71
101
  });
72
- /* Params queries the parameters of x/bank module. */
102
+ /**
103
+ * Params queries the parameters of x/bank module.
104
+ * @name getParams
105
+ * @package cosmos.bank.v1beta1
106
+ * @see proto service: cosmos.bank.v1beta1.Params
107
+ */
73
108
  export const getParams = buildQuery({
74
109
  encode: QueryParamsRequest.encode,
75
110
  decode: QueryParamsResponse.decode,
@@ -77,7 +112,12 @@ export const getParams = buildQuery({
77
112
  method: "Params",
78
113
  deps: [QueryParamsRequest, QueryParamsResponse]
79
114
  });
80
- /* DenomMetadata queries the client metadata of a given coin denomination. */
115
+ /**
116
+ * DenomMetadata queries the client metadata of a given coin denomination.
117
+ * @name getDenomMetadata
118
+ * @package cosmos.bank.v1beta1
119
+ * @see proto service: cosmos.bank.v1beta1.DenomMetadata
120
+ */
81
121
  export const getDenomMetadata = buildQuery({
82
122
  encode: QueryDenomMetadataRequest.encode,
83
123
  decode: QueryDenomMetadataResponse.decode,
@@ -85,7 +125,12 @@ export const getDenomMetadata = buildQuery({
85
125
  method: "DenomMetadata",
86
126
  deps: [QueryDenomMetadataRequest, QueryDenomMetadataResponse]
87
127
  });
88
- /* DenomMetadataByQueryString queries the client metadata of a given coin denomination. */
128
+ /**
129
+ * DenomMetadataByQueryString queries the client metadata of a given coin denomination.
130
+ * @name getDenomMetadataByQueryString
131
+ * @package cosmos.bank.v1beta1
132
+ * @see proto service: cosmos.bank.v1beta1.DenomMetadataByQueryString
133
+ */
89
134
  export const getDenomMetadataByQueryString = buildQuery({
90
135
  encode: QueryDenomMetadataByQueryStringRequest.encode,
91
136
  decode: QueryDenomMetadataByQueryStringResponse.decode,
@@ -93,8 +138,13 @@ export const getDenomMetadataByQueryString = buildQuery({
93
138
  method: "DenomMetadataByQueryString",
94
139
  deps: [QueryDenomMetadataByQueryStringRequest, QueryDenomMetadataByQueryStringResponse]
95
140
  });
96
- /* DenomsMetadata queries the client metadata for all registered coin
97
- denominations. */
141
+ /**
142
+ * DenomsMetadata queries the client metadata for all registered coin
143
+ * denominations.
144
+ * @name getDenomsMetadata
145
+ * @package cosmos.bank.v1beta1
146
+ * @see proto service: cosmos.bank.v1beta1.DenomsMetadata
147
+ */
98
148
  export const getDenomsMetadata = buildQuery({
99
149
  encode: QueryDenomsMetadataRequest.encode,
100
150
  decode: QueryDenomsMetadataResponse.decode,
@@ -102,13 +152,18 @@ export const getDenomsMetadata = buildQuery({
102
152
  method: "DenomsMetadata",
103
153
  deps: [QueryDenomsMetadataRequest, QueryDenomsMetadataResponse]
104
154
  });
105
- /* DenomOwners queries for all account addresses that own a particular token
106
- denomination.
107
-
108
- When called from another module, this query might consume a high amount of
109
- gas if the pagination field is incorrectly set.
110
-
111
- Since: cosmos-sdk 0.46 */
155
+ /**
156
+ * DenomOwners queries for all account addresses that own a particular token
157
+ * denomination.
158
+ *
159
+ * When called from another module, this query might consume a high amount of
160
+ * gas if the pagination field is incorrectly set.
161
+ *
162
+ * Since: cosmos-sdk 0.46
163
+ * @name getDenomOwners
164
+ * @package cosmos.bank.v1beta1
165
+ * @see proto service: cosmos.bank.v1beta1.DenomOwners
166
+ */
112
167
  export const getDenomOwners = buildQuery({
113
168
  encode: QueryDenomOwnersRequest.encode,
114
169
  decode: QueryDenomOwnersResponse.decode,
@@ -116,10 +171,15 @@ export const getDenomOwners = buildQuery({
116
171
  method: "DenomOwners",
117
172
  deps: [QueryDenomOwnersRequest, QueryDenomOwnersResponse]
118
173
  });
119
- /* DenomOwnersByQuery queries for all account addresses that own a particular token
120
- denomination.
121
-
122
- Since: cosmos-sdk 0.50.3 */
174
+ /**
175
+ * DenomOwnersByQuery queries for all account addresses that own a particular token
176
+ * denomination.
177
+ *
178
+ * Since: cosmos-sdk 0.50.3
179
+ * @name getDenomOwnersByQuery
180
+ * @package cosmos.bank.v1beta1
181
+ * @see proto service: cosmos.bank.v1beta1.DenomOwnersByQuery
182
+ */
123
183
  export const getDenomOwnersByQuery = buildQuery({
124
184
  encode: QueryDenomOwnersByQueryRequest.encode,
125
185
  decode: QueryDenomOwnersByQueryResponse.decode,
@@ -127,13 +187,18 @@ export const getDenomOwnersByQuery = buildQuery({
127
187
  method: "DenomOwnersByQuery",
128
188
  deps: [QueryDenomOwnersByQueryRequest, QueryDenomOwnersByQueryResponse]
129
189
  });
130
- /* SendEnabled queries for SendEnabled entries.
131
-
132
- This query only returns denominations that have specific SendEnabled settings.
133
- Any denomination that does not have a specific setting will use the default
134
- params.default_send_enabled, and will not be returned by this query.
135
-
136
- Since: cosmos-sdk 0.47 */
190
+ /**
191
+ * SendEnabled queries for SendEnabled entries.
192
+ *
193
+ * This query only returns denominations that have specific SendEnabled settings.
194
+ * Any denomination that does not have a specific setting will use the default
195
+ * params.default_send_enabled, and will not be returned by this query.
196
+ *
197
+ * Since: cosmos-sdk 0.47
198
+ * @name getSendEnabled
199
+ * @package cosmos.bank.v1beta1
200
+ * @see proto service: cosmos.bank.v1beta1.SendEnabled
201
+ */
137
202
  export const getSendEnabled = buildQuery({
138
203
  encode: QuerySendEnabledRequest.encode,
139
204
  decode: QuerySendEnabledResponse.decode,
@@ -9,6 +9,12 @@ function createBaseMsgSend() {
9
9
  amount: []
10
10
  };
11
11
  }
12
+ /**
13
+ * MsgSend represents a message to send coins from one account to another.
14
+ * @name MsgSend
15
+ * @package cosmos.bank.v1beta1
16
+ * @see proto type: cosmos.bank.v1beta1.MsgSend
17
+ */
12
18
  export const MsgSend = {
13
19
  typeUrl: "/cosmos.bank.v1beta1.MsgSend",
14
20
  aminoType: "cosmos-sdk/MsgSend",
@@ -114,6 +120,12 @@ export const MsgSend = {
114
120
  function createBaseMsgSendResponse() {
115
121
  return {};
116
122
  }
123
+ /**
124
+ * MsgSendResponse defines the Msg/Send response type.
125
+ * @name MsgSendResponse
126
+ * @package cosmos.bank.v1beta1
127
+ * @see proto type: cosmos.bank.v1beta1.MsgSendResponse
128
+ */
117
129
  export const MsgSendResponse = {
118
130
  typeUrl: "/cosmos.bank.v1beta1.MsgSendResponse",
119
131
  aminoType: "cosmos-sdk/MsgSendResponse",
@@ -181,6 +193,12 @@ function createBaseMsgMultiSend() {
181
193
  outputs: []
182
194
  };
183
195
  }
196
+ /**
197
+ * MsgMultiSend represents an arbitrary multi-in, multi-out send message.
198
+ * @name MsgMultiSend
199
+ * @package cosmos.bank.v1beta1
200
+ * @see proto type: cosmos.bank.v1beta1.MsgMultiSend
201
+ */
184
202
  export const MsgMultiSend = {
185
203
  typeUrl: "/cosmos.bank.v1beta1.MsgMultiSend",
186
204
  aminoType: "cosmos-sdk/MsgMultiSend",
@@ -279,6 +297,12 @@ export const MsgMultiSend = {
279
297
  function createBaseMsgMultiSendResponse() {
280
298
  return {};
281
299
  }
300
+ /**
301
+ * MsgMultiSendResponse defines the Msg/MultiSend response type.
302
+ * @name MsgMultiSendResponse
303
+ * @package cosmos.bank.v1beta1
304
+ * @see proto type: cosmos.bank.v1beta1.MsgMultiSendResponse
305
+ */
282
306
  export const MsgMultiSendResponse = {
283
307
  typeUrl: "/cosmos.bank.v1beta1.MsgMultiSendResponse",
284
308
  aminoType: "cosmos-sdk/MsgMultiSendResponse",
@@ -346,6 +370,14 @@ function createBaseMsgUpdateParams() {
346
370
  params: Params.fromPartial({})
347
371
  };
348
372
  }
373
+ /**
374
+ * MsgUpdateParams is the Msg/UpdateParams request type.
375
+ *
376
+ * Since: cosmos-sdk 0.47
377
+ * @name MsgUpdateParams
378
+ * @package cosmos.bank.v1beta1
379
+ * @see proto type: cosmos.bank.v1beta1.MsgUpdateParams
380
+ */
349
381
  export const MsgUpdateParams = {
350
382
  typeUrl: "/cosmos.bank.v1beta1.MsgUpdateParams",
351
383
  aminoType: "cosmos-sdk/x/bank/MsgUpdateParams",
@@ -437,6 +469,15 @@ export const MsgUpdateParams = {
437
469
  function createBaseMsgUpdateParamsResponse() {
438
470
  return {};
439
471
  }
472
+ /**
473
+ * MsgUpdateParamsResponse defines the response structure for executing a
474
+ * MsgUpdateParams message.
475
+ *
476
+ * Since: cosmos-sdk 0.47
477
+ * @name MsgUpdateParamsResponse
478
+ * @package cosmos.bank.v1beta1
479
+ * @see proto type: cosmos.bank.v1beta1.MsgUpdateParamsResponse
480
+ */
440
481
  export const MsgUpdateParamsResponse = {
441
482
  typeUrl: "/cosmos.bank.v1beta1.MsgUpdateParamsResponse",
442
483
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -505,6 +546,18 @@ function createBaseMsgSetSendEnabled() {
505
546
  useDefaultFor: []
506
547
  };
507
548
  }
549
+ /**
550
+ * MsgSetSendEnabled is the Msg/SetSendEnabled request type.
551
+ *
552
+ * Only entries to add/update/delete need to be included.
553
+ * Existing SendEnabled entries that are not included in this
554
+ * message are left unchanged.
555
+ *
556
+ * Since: cosmos-sdk 0.47
557
+ * @name MsgSetSendEnabled
558
+ * @package cosmos.bank.v1beta1
559
+ * @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabled
560
+ */
508
561
  export const MsgSetSendEnabled = {
509
562
  typeUrl: "/cosmos.bank.v1beta1.MsgSetSendEnabled",
510
563
  aminoType: "cosmos-sdk/MsgSetSendEnabled",
@@ -613,6 +666,14 @@ export const MsgSetSendEnabled = {
613
666
  function createBaseMsgSetSendEnabledResponse() {
614
667
  return {};
615
668
  }
669
+ /**
670
+ * MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type.
671
+ *
672
+ * Since: cosmos-sdk 0.47
673
+ * @name MsgSetSendEnabledResponse
674
+ * @package cosmos.bank.v1beta1
675
+ * @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabledResponse
676
+ */
616
677
  export const MsgSetSendEnabledResponse = {
617
678
  typeUrl: "/cosmos.bank.v1beta1.MsgSetSendEnabledResponse",
618
679
  aminoType: "cosmos-sdk/MsgSetSendEnabledResponse",
@@ -1,26 +1,46 @@
1
1
  import { buildTx } from "../../../helper-func-types";
2
2
  import { MsgSend, MsgMultiSend, MsgUpdateParams, MsgSetSendEnabled } from "./tx";
3
- /* Send defines a method for sending coins from one account to another account. */
3
+ /**
4
+ * Send defines a method for sending coins from one account to another account.
5
+ * @name send
6
+ * @package cosmos.bank.v1beta1
7
+ * @see proto service: cosmos.bank.v1beta1.Send
8
+ */
4
9
  export const send = buildTx({
5
10
  msg: MsgSend
6
11
  });
7
- /* MultiSend defines a method for sending coins from some accounts to other accounts. */
12
+ /**
13
+ * MultiSend defines a method for sending coins from some accounts to other accounts.
14
+ * @name multiSend
15
+ * @package cosmos.bank.v1beta1
16
+ * @see proto service: cosmos.bank.v1beta1.MultiSend
17
+ */
8
18
  export const multiSend = buildTx({
9
19
  msg: MsgMultiSend
10
20
  });
11
- /* UpdateParams defines a governance operation for updating the x/bank module parameters.
12
- The authority is defined in the keeper.
13
-
14
- Since: cosmos-sdk 0.47 */
21
+ /**
22
+ * UpdateParams defines a governance operation for updating the x/bank module parameters.
23
+ * The authority is defined in the keeper.
24
+ *
25
+ * Since: cosmos-sdk 0.47
26
+ * @name updateParams
27
+ * @package cosmos.bank.v1beta1
28
+ * @see proto service: cosmos.bank.v1beta1.UpdateParams
29
+ */
15
30
  export const updateParams = buildTx({
16
31
  msg: MsgUpdateParams
17
32
  });
18
- /* SetSendEnabled is a governance operation for setting the SendEnabled flag
19
- on any number of Denoms. Only the entries to add or update should be
20
- included. Entries that already exist in the store, but that aren't
21
- included in this message, will be left unchanged.
22
-
23
- Since: cosmos-sdk 0.47 */
33
+ /**
34
+ * SetSendEnabled is a governance operation for setting the SendEnabled flag
35
+ * on any number of Denoms. Only the entries to add or update should be
36
+ * included. Entries that already exist in the store, but that aren't
37
+ * included in this message, will be left unchanged.
38
+ *
39
+ * Since: cosmos-sdk 0.47
40
+ * @name setSendEnabled
41
+ * @package cosmos.bank.v1beta1
42
+ * @see proto service: cosmos.bank.v1beta1.SetSendEnabled
43
+ */
24
44
  export const setSendEnabled = buildTx({
25
45
  msg: MsgSetSendEnabled
26
46
  });
@@ -21,6 +21,13 @@ function createBaseTxResponse() {
21
21
  events: []
22
22
  };
23
23
  }
24
+ /**
25
+ * TxResponse defines a structure containing relevant tx data and metadata. The
26
+ * tags are stringified and the log is JSON decoded.
27
+ * @name TxResponse
28
+ * @package cosmos.base.abci.v1beta1
29
+ * @see proto type: cosmos.base.abci.v1beta1.TxResponse
30
+ */
24
31
  export const TxResponse = {
25
32
  typeUrl: "/cosmos.base.abci.v1beta1.TxResponse",
26
33
  aminoType: "cosmos-sdk/TxResponse",
@@ -243,6 +250,12 @@ function createBaseABCIMessageLog() {
243
250
  events: []
244
251
  };
245
252
  }
253
+ /**
254
+ * ABCIMessageLog defines a structure containing an indexed tx ABCI message log.
255
+ * @name ABCIMessageLog
256
+ * @package cosmos.base.abci.v1beta1
257
+ * @see proto type: cosmos.base.abci.v1beta1.ABCIMessageLog
258
+ */
246
259
  export const ABCIMessageLog = {
247
260
  typeUrl: "/cosmos.base.abci.v1beta1.ABCIMessageLog",
248
261
  aminoType: "cosmos-sdk/ABCIMessageLog",
@@ -351,6 +364,13 @@ function createBaseStringEvent() {
351
364
  attributes: []
352
365
  };
353
366
  }
367
+ /**
368
+ * StringEvent defines en Event object wrapper where all the attributes
369
+ * contain key/value pairs that are strings instead of raw bytes.
370
+ * @name StringEvent
371
+ * @package cosmos.base.abci.v1beta1
372
+ * @see proto type: cosmos.base.abci.v1beta1.StringEvent
373
+ */
354
374
  export const StringEvent = {
355
375
  typeUrl: "/cosmos.base.abci.v1beta1.StringEvent",
356
376
  aminoType: "cosmos-sdk/StringEvent",
@@ -448,6 +468,13 @@ function createBaseAttribute() {
448
468
  value: ""
449
469
  };
450
470
  }
471
+ /**
472
+ * Attribute defines an attribute wrapper where the key and value are
473
+ * strings instead of raw bytes.
474
+ * @name Attribute
475
+ * @package cosmos.base.abci.v1beta1
476
+ * @see proto type: cosmos.base.abci.v1beta1.Attribute
477
+ */
451
478
  export const Attribute = {
452
479
  typeUrl: "/cosmos.base.abci.v1beta1.Attribute",
453
480
  aminoType: "cosmos-sdk/Attribute",
@@ -537,6 +564,12 @@ function createBaseGasInfo() {
537
564
  gasUsed: BigInt(0)
538
565
  };
539
566
  }
567
+ /**
568
+ * GasInfo defines tx execution gas context.
569
+ * @name GasInfo
570
+ * @package cosmos.base.abci.v1beta1
571
+ * @see proto type: cosmos.base.abci.v1beta1.GasInfo
572
+ */
540
573
  export const GasInfo = {
541
574
  typeUrl: "/cosmos.base.abci.v1beta1.GasInfo",
542
575
  aminoType: "cosmos-sdk/GasInfo",
@@ -628,6 +661,12 @@ function createBaseResult() {
628
661
  msgResponses: []
629
662
  };
630
663
  }
664
+ /**
665
+ * Result is the union of ResponseFormat and ResponseCheckTx.
666
+ * @name Result
667
+ * @package cosmos.base.abci.v1beta1
668
+ * @see proto type: cosmos.base.abci.v1beta1.Result
669
+ */
631
670
  export const Result = {
632
671
  typeUrl: "/cosmos.base.abci.v1beta1.Result",
633
672
  aminoType: "cosmos-sdk/Result",
@@ -745,6 +784,13 @@ function createBaseSimulationResponse() {
745
784
  result: undefined
746
785
  };
747
786
  }
787
+ /**
788
+ * SimulationResponse defines the response generated when a transaction is
789
+ * successfully simulated.
790
+ * @name SimulationResponse
791
+ * @package cosmos.base.abci.v1beta1
792
+ * @see proto type: cosmos.base.abci.v1beta1.SimulationResponse
793
+ */
748
794
  export const SimulationResponse = {
749
795
  typeUrl: "/cosmos.base.abci.v1beta1.SimulationResponse",
750
796
  aminoType: "cosmos-sdk/SimulationResponse",
@@ -840,6 +886,14 @@ function createBaseMsgData() {
840
886
  data: new Uint8Array()
841
887
  };
842
888
  }
889
+ /**
890
+ * MsgData defines the data returned in a Result object during message
891
+ * execution.
892
+ * @name MsgData
893
+ * @package cosmos.base.abci.v1beta1
894
+ * @see proto type: cosmos.base.abci.v1beta1.MsgData
895
+ * @deprecated
896
+ */
843
897
  export const MsgData = {
844
898
  typeUrl: "/cosmos.base.abci.v1beta1.MsgData",
845
899
  aminoType: "cosmos-sdk/MsgData",
@@ -929,6 +983,13 @@ function createBaseTxMsgData() {
929
983
  msgResponses: []
930
984
  };
931
985
  }
986
+ /**
987
+ * TxMsgData defines a list of MsgData. A transaction will have a MsgData object
988
+ * for each message.
989
+ * @name TxMsgData
990
+ * @package cosmos.base.abci.v1beta1
991
+ * @see proto type: cosmos.base.abci.v1beta1.TxMsgData
992
+ */
932
993
  export const TxMsgData = {
933
994
  typeUrl: "/cosmos.base.abci.v1beta1.TxMsgData",
934
995
  aminoType: "cosmos-sdk/TxMsgData",
@@ -1028,6 +1089,12 @@ function createBaseSearchTxsResult() {
1028
1089
  txs: []
1029
1090
  };
1030
1091
  }
1092
+ /**
1093
+ * SearchTxsResult defines a structure for querying txs pageable
1094
+ * @name SearchTxsResult
1095
+ * @package cosmos.base.abci.v1beta1
1096
+ * @see proto type: cosmos.base.abci.v1beta1.SearchTxsResult
1097
+ */
1031
1098
  export const SearchTxsResult = {
1032
1099
  typeUrl: "/cosmos.base.abci.v1beta1.SearchTxsResult",
1033
1100
  aminoType: "cosmos-sdk/SearchTxsResult",
@@ -1173,6 +1240,12 @@ function createBaseSearchBlocksResult() {
1173
1240
  blocks: []
1174
1241
  };
1175
1242
  }
1243
+ /**
1244
+ * SearchBlocksResult defines a structure for querying blocks pageable
1245
+ * @name SearchBlocksResult
1246
+ * @package cosmos.base.abci.v1beta1
1247
+ * @see proto type: cosmos.base.abci.v1beta1.SearchBlocksResult
1248
+ */
1176
1249
  export const SearchBlocksResult = {
1177
1250
  typeUrl: "/cosmos.base.abci.v1beta1.SearchBlocksResult",
1178
1251
  aminoType: "cosmos-sdk/SearchBlocksResult",
@@ -9,6 +9,18 @@ function createBasePageRequest() {
9
9
  reverse: false
10
10
  };
11
11
  }
12
+ /**
13
+ * PageRequest is to be embedded in gRPC request messages for efficient
14
+ * pagination. Ex:
15
+ *
16
+ * message SomeRequest {
17
+ * Foo some_parameter = 1;
18
+ * PageRequest pagination = 2;
19
+ * }
20
+ * @name PageRequest
21
+ * @package cosmos.base.query.v1beta1
22
+ * @see proto type: cosmos.base.query.v1beta1.PageRequest
23
+ */
12
24
  export const PageRequest = {
13
25
  typeUrl: "/cosmos.base.query.v1beta1.PageRequest",
14
26
  aminoType: "cosmos-sdk/PageRequest",
@@ -131,6 +143,18 @@ function createBasePageResponse() {
131
143
  total: BigInt(0)
132
144
  };
133
145
  }
146
+ /**
147
+ * PageResponse is to be embedded in gRPC response messages where the
148
+ * corresponding request message has used PageRequest.
149
+ *
150
+ * message SomeResponse {
151
+ * repeated Bar results = 1;
152
+ * PageResponse page = 2;
153
+ * }
154
+ * @name PageResponse
155
+ * @package cosmos.base.query.v1beta1
156
+ * @see proto type: cosmos.base.query.v1beta1.PageResponse
157
+ */
134
158
  export const PageResponse = {
135
159
  typeUrl: "/cosmos.base.query.v1beta1.PageResponse",
136
160
  aminoType: "cosmos-sdk/PageResponse",
@@ -6,6 +6,15 @@ function createBaseCoin() {
6
6
  amount: ""
7
7
  };
8
8
  }
9
+ /**
10
+ * Coin defines a token with a denomination and an amount.
11
+ *
12
+ * NOTE: The amount field is an Int which implements the custom method
13
+ * signatures required by gogoproto.
14
+ * @name Coin
15
+ * @package cosmos.base.v1beta1
16
+ * @see proto type: cosmos.base.v1beta1.Coin
17
+ */
9
18
  export const Coin = {
10
19
  typeUrl: "/cosmos.base.v1beta1.Coin",
11
20
  aminoType: "cosmos-sdk/Coin",
@@ -95,6 +104,15 @@ function createBaseDecCoin() {
95
104
  amount: ""
96
105
  };
97
106
  }
107
+ /**
108
+ * DecCoin defines a token with a denomination and a decimal amount.
109
+ *
110
+ * NOTE: The amount field is an Dec which implements the custom method
111
+ * signatures required by gogoproto.
112
+ * @name DecCoin
113
+ * @package cosmos.base.v1beta1
114
+ * @see proto type: cosmos.base.v1beta1.DecCoin
115
+ */
98
116
  export const DecCoin = {
99
117
  typeUrl: "/cosmos.base.v1beta1.DecCoin",
100
118
  aminoType: "cosmos-sdk/DecCoin",
@@ -183,6 +201,13 @@ function createBaseIntProto() {
183
201
  int: ""
184
202
  };
185
203
  }
204
+ /**
205
+ * IntProto defines a Protobuf wrapper around an Int object.
206
+ * Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.
207
+ * @name IntProto
208
+ * @package cosmos.base.v1beta1
209
+ * @see proto type: cosmos.base.v1beta1.IntProto
210
+ */
186
211
  export const IntProto = {
187
212
  typeUrl: "/cosmos.base.v1beta1.IntProto",
188
213
  aminoType: "cosmos-sdk/IntProto",
@@ -260,6 +285,13 @@ function createBaseDecProto() {
260
285
  dec: ""
261
286
  };
262
287
  }
288
+ /**
289
+ * DecProto defines a Protobuf wrapper around a Dec object.
290
+ * Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.
291
+ * @name DecProto
292
+ * @package cosmos.base.v1beta1
293
+ * @see proto type: cosmos.base.v1beta1.DecProto
294
+ */
263
295
  export const DecProto = {
264
296
  typeUrl: "/cosmos.base.v1beta1.DecProto",
265
297
  aminoType: "cosmos-sdk/DecProto",