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
@@ -42,16 +42,16 @@ export { registry as CosmosGroupV1Registry, MessageComposer as CosmosGroupV1Mess
42
42
  export { registry as CosmosStakingV1beta1Registry, MessageComposer as CosmosStakingV1beta1MessageComposer } from "./staking/v1beta1/tx.registry";
43
43
  export { registry as CosmosVestingV1beta1Registry, MessageComposer as CosmosVestingV1beta1MessageComposer } from "./vesting/v1beta1/tx.registry";
44
44
  export { getAccounts, getAccount, getAccountAddressByID, getParams, getModuleAccounts, getModuleAccountByName, getBech32Prefix, getAddressBytesToString, getAddressStringToBytes, getAccountInfo } from "./auth/v1beta1/query.rpc.func";
45
- export { getBalance, getAllBalances, getSpendableBalances, getSpendableBalanceByDenom, getTotalSupply, getSupplyOf, getParams as getParams1, getDenomMetadata, getDenomMetadataByQueryString, getDenomsMetadata, getDenomOwners, getDenomOwnersByQuery, getSendEnabled } from "./bank/v1beta1/query.rpc.func";
46
- export { getProposal, getProposals, getVote, getVotes, getParams as getParams2, getDeposit, getDeposits, getTallyResult } from "./gov/v1beta1/query.rpc.func";
47
- export { getValidators, getValidator, getValidatorDelegations, getValidatorUnbondingDelegations, getDelegation, getUnbondingDelegation, getDelegatorDelegations, getDelegatorUnbondingDelegations, getRedelegations, getDelegatorValidators, getDelegatorValidator, getHistoricalInfo, getPool, getParams as getParams3 } from "./staking/v1beta1/query.rpc.func";
45
+ export { getBalance, getAllBalances, getSpendableBalances, getSpendableBalanceByDenom, getTotalSupply, getSupplyOf, getParams as getParamsCosmosBankV1beta1, getDenomMetadata, getDenomMetadataByQueryString, getDenomsMetadata, getDenomOwners, getDenomOwnersByQuery, getSendEnabled } from "./bank/v1beta1/query.rpc.func";
46
+ export { getProposal, getProposals, getVote, getVotes, getParams as getParamsCosmosGovV1beta1, getDeposit, getDeposits, getTallyResult } from "./gov/v1beta1/query.rpc.func";
47
+ export { getValidators, getValidator, getValidatorDelegations, getValidatorUnbondingDelegations, getDelegation, getUnbondingDelegation, getDelegatorDelegations, getDelegatorUnbondingDelegations, getRedelegations, getDelegatorValidators, getDelegatorValidator, getHistoricalInfo, getPool, getParams as getParamsCosmosStakingV1beta1 } from "./staking/v1beta1/query.rpc.func";
48
48
  export * from "./tx/v1beta1/service.rpc.func";
49
49
  export { grant, exec, revoke } from "./authz/v1beta1/tx.rpc.func";
50
50
  export { send, multiSend, updateParams, setSendEnabled } from "./bank/v1beta1/tx.rpc.func";
51
- export { setWithdrawAddress, withdrawDelegatorReward, withdrawValidatorCommission, fundCommunityPool, updateParams as updateParams1, communityPoolSpend, depositValidatorRewardsPool } from "./distribution/v1beta1/tx.rpc.func";
51
+ export { setWithdrawAddress, withdrawDelegatorReward, withdrawValidatorCommission, fundCommunityPool, updateParams as updateParamsCosmosDistributionV1beta1, communityPoolSpend, depositValidatorRewardsPool } from "./distribution/v1beta1/tx.rpc.func";
52
52
  export * from "./feegrant/v1beta1/tx.rpc.func";
53
- export { submitProposal, execLegacyContent, vote, voteWeighted, deposit, updateParams as updateParams2, cancelProposal } from "./gov/v1/tx.rpc.func";
54
- export { submitProposal as submitProposal1, vote as vote1, voteWeighted as voteWeighted1, deposit as deposit1 } from "./gov/v1beta1/tx.rpc.func";
55
- export { createGroup, updateGroupMembers, updateGroupAdmin, updateGroupMetadata, createGroupPolicy, createGroupWithPolicy, updateGroupPolicyAdmin, updateGroupPolicyDecisionPolicy, updateGroupPolicyMetadata, submitProposal as submitProposal2, withdrawProposal, vote as vote2, exec as exec1, leaveGroup } from "./group/v1/tx.rpc.func";
56
- export { createValidator, editValidator, delegate, beginRedelegate, undelegate, cancelUnbondingDelegation, updateParams as updateParams3 } from "./staking/v1beta1/tx.rpc.func";
53
+ export { submitProposal, execLegacyContent, vote, voteWeighted, deposit, updateParams as updateParamsCosmosGovV1, cancelProposal } from "./gov/v1/tx.rpc.func";
54
+ export { submitProposal as submitProposalCosmosGovV1beta1, vote as voteCosmosGovV1beta1, voteWeighted as voteWeightedCosmosGovV1beta1, deposit as depositCosmosGovV1beta1 } from "./gov/v1beta1/tx.rpc.func";
55
+ export { createGroup, updateGroupMembers, updateGroupAdmin, updateGroupMetadata, createGroupPolicy, createGroupWithPolicy, updateGroupPolicyAdmin, updateGroupPolicyDecisionPolicy, updateGroupPolicyMetadata, submitProposal as submitProposalCosmosGroupV1, withdrawProposal, vote as voteCosmosGroupV1, exec as execCosmosGroupV1, leaveGroup } from "./group/v1/tx.rpc.func";
56
+ export { createValidator, editValidator, delegate, beginRedelegate, undelegate, cancelUnbondingDelegation, updateParams as updateParamsCosmosStakingV1beta1 } from "./staking/v1beta1/tx.rpc.func";
57
57
  export * from "./vesting/v1beta1/tx.rpc.func";
@@ -5,6 +5,16 @@ function createBasePubKey() {
5
5
  key: new Uint8Array()
6
6
  };
7
7
  }
8
+ /**
9
+ * PubKey is an ed25519 public key for handling Tendermint keys in SDK.
10
+ * It's needed for Any serialization and SDK compatibility.
11
+ * It must not be used in a non Tendermint key context because it doesn't implement
12
+ * ADR-28. Nevertheless, you will like to use ed25519 in app user level
13
+ * then you must create a new proto message and follow ADR-28 for Address construction.
14
+ * @name PubKey
15
+ * @package cosmos.crypto.ed25519
16
+ * @see proto type: cosmos.crypto.ed25519.PubKey
17
+ */
8
18
  export const PubKey = {
9
19
  typeUrl: "/cosmos.crypto.ed25519.PubKey",
10
20
  aminoType: "tendermint/PubKeyEd25519",
@@ -82,6 +92,13 @@ function createBasePrivKey() {
82
92
  key: new Uint8Array()
83
93
  };
84
94
  }
95
+ /**
96
+ * PrivKey defines a ed25519 private key.
97
+ * NOTE: ed25519 keys must not be used in SDK apps except in a tendermint validator context.
98
+ * @name PrivKey
99
+ * @package cosmos.crypto.ed25519
100
+ * @see proto type: cosmos.crypto.ed25519.PrivKey
101
+ */
85
102
  export const PrivKey = {
86
103
  typeUrl: "/cosmos.crypto.ed25519.PrivKey",
87
104
  aminoType: "tendermint/PrivKeyEd25519",
@@ -5,6 +5,14 @@ function createBaseMultiSignature() {
5
5
  signatures: []
6
6
  };
7
7
  }
8
+ /**
9
+ * MultiSignature wraps the signatures from a multisig.LegacyAminoPubKey.
10
+ * See cosmos.tx.v1betata1.ModeInfo.Multi for how to specify which signers
11
+ * signed and with which modes.
12
+ * @name MultiSignature
13
+ * @package cosmos.crypto.multisig.v1beta1
14
+ * @see proto type: cosmos.crypto.multisig.v1beta1.MultiSignature
15
+ */
8
16
  export const MultiSignature = {
9
17
  typeUrl: "/cosmos.crypto.multisig.v1beta1.MultiSignature",
10
18
  aminoType: "cosmos-sdk/MultiSignature",
@@ -86,6 +94,15 @@ function createBaseCompactBitArray() {
86
94
  elems: new Uint8Array()
87
95
  };
88
96
  }
97
+ /**
98
+ * CompactBitArray is an implementation of a space efficient bit array.
99
+ * This is used to ensure that the encoded data takes up a minimal amount of
100
+ * space after proto encoding.
101
+ * This is not thread safe, and is not intended for concurrent usage.
102
+ * @name CompactBitArray
103
+ * @package cosmos.crypto.multisig.v1beta1
104
+ * @see proto type: cosmos.crypto.multisig.v1beta1.CompactBitArray
105
+ */
89
106
  export const CompactBitArray = {
90
107
  typeUrl: "/cosmos.crypto.multisig.v1beta1.CompactBitArray",
91
108
  aminoType: "cosmos-sdk/CompactBitArray",
@@ -5,6 +5,16 @@ function createBasePubKey() {
5
5
  key: new Uint8Array()
6
6
  };
7
7
  }
8
+ /**
9
+ * PubKey defines a secp256k1 public key
10
+ * Key is the compressed form of the pubkey. The first byte depends is a 0x02 byte
11
+ * if the y-coordinate is the lexicographically largest of the two associated with
12
+ * the x-coordinate. Otherwise the first byte is a 0x03.
13
+ * This prefix is followed with the x-coordinate.
14
+ * @name PubKey
15
+ * @package cosmos.crypto.secp256k1
16
+ * @see proto type: cosmos.crypto.secp256k1.PubKey
17
+ */
8
18
  export const PubKey = {
9
19
  typeUrl: "/cosmos.crypto.secp256k1.PubKey",
10
20
  aminoType: "tendermint/PubKeySecp256k1",
@@ -82,6 +92,12 @@ function createBasePrivKey() {
82
92
  key: new Uint8Array()
83
93
  };
84
94
  }
95
+ /**
96
+ * PrivKey defines a secp256k1 private key.
97
+ * @name PrivKey
98
+ * @package cosmos.crypto.secp256k1
99
+ * @see proto type: cosmos.crypto.secp256k1.PrivKey
100
+ */
85
101
  export const PrivKey = {
86
102
  typeUrl: "/cosmos.crypto.secp256k1.PrivKey",
87
103
  aminoType: "tendermint/PrivKeySecp256k1",
@@ -5,6 +5,12 @@ function createBasePubKey() {
5
5
  key: new Uint8Array()
6
6
  };
7
7
  }
8
+ /**
9
+ * PubKey defines a secp256r1 ECDSA public key.
10
+ * @name PubKey
11
+ * @package cosmos.crypto.secp256r1
12
+ * @see proto type: cosmos.crypto.secp256r1.PubKey
13
+ */
8
14
  export const PubKey = {
9
15
  typeUrl: "/cosmos.crypto.secp256r1.PubKey",
10
16
  aminoType: "cosmos-sdk/PubKey",
@@ -82,6 +88,12 @@ function createBasePrivKey() {
82
88
  secret: new Uint8Array()
83
89
  };
84
90
  }
91
+ /**
92
+ * PrivKey defines a secp256r1 ECDSA private key.
93
+ * @name PrivKey
94
+ * @package cosmos.crypto.secp256r1
95
+ * @see proto type: cosmos.crypto.secp256r1.PrivKey
96
+ */
85
97
  export const PrivKey = {
86
98
  typeUrl: "/cosmos.crypto.secp256r1.PrivKey",
87
99
  aminoType: "cosmos-sdk/PrivKey",
@@ -10,6 +10,12 @@ function createBaseParams() {
10
10
  withdrawAddrEnabled: false
11
11
  };
12
12
  }
13
+ /**
14
+ * Params defines the set of params for the distribution module.
15
+ * @name Params
16
+ * @package cosmos.distribution.v1beta1
17
+ * @see proto type: cosmos.distribution.v1beta1.Params
18
+ */
13
19
  export const Params = {
14
20
  typeUrl: "/cosmos.distribution.v1beta1.Params",
15
21
  aminoType: "cosmos-sdk/x/distribution/Params",
@@ -121,6 +127,23 @@ function createBaseValidatorHistoricalRewards() {
121
127
  referenceCount: 0
122
128
  };
123
129
  }
130
+ /**
131
+ * ValidatorHistoricalRewards represents historical rewards for a validator.
132
+ * Height is implicit within the store key.
133
+ * Cumulative reward ratio is the sum from the zeroeth period
134
+ * until this period of rewards / tokens, per the spec.
135
+ * The reference count indicates the number of objects
136
+ * which might need to reference this historical entry at any point.
137
+ * ReferenceCount =
138
+ * number of outstanding delegations which ended the associated period (and
139
+ * might need to read that record)
140
+ * + number of slashes which ended the associated period (and might need to
141
+ * read that record)
142
+ * + one per validator for the zeroeth period, set on initialization
143
+ * @name ValidatorHistoricalRewards
144
+ * @package cosmos.distribution.v1beta1
145
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
146
+ */
124
147
  export const ValidatorHistoricalRewards = {
125
148
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorHistoricalRewards",
126
149
  aminoType: "cosmos-sdk/ValidatorHistoricalRewards",
@@ -218,6 +241,14 @@ function createBaseValidatorCurrentRewards() {
218
241
  period: BigInt(0)
219
242
  };
220
243
  }
244
+ /**
245
+ * ValidatorCurrentRewards represents current rewards and current
246
+ * period for a validator kept as a running counter and incremented
247
+ * each block as long as the validator's tokens remain constant.
248
+ * @name ValidatorCurrentRewards
249
+ * @package cosmos.distribution.v1beta1
250
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
251
+ */
221
252
  export const ValidatorCurrentRewards = {
222
253
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewards",
223
254
  aminoType: "cosmos-sdk/ValidatorCurrentRewards",
@@ -314,6 +345,13 @@ function createBaseValidatorAccumulatedCommission() {
314
345
  commission: []
315
346
  };
316
347
  }
348
+ /**
349
+ * ValidatorAccumulatedCommission represents accumulated commission
350
+ * for a validator kept as a running counter, can be withdrawn at any time.
351
+ * @name ValidatorAccumulatedCommission
352
+ * @package cosmos.distribution.v1beta1
353
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
354
+ */
317
355
  export const ValidatorAccumulatedCommission = {
318
356
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorAccumulatedCommission",
319
357
  aminoType: "cosmos-sdk/ValidatorAccumulatedCommission",
@@ -399,6 +437,13 @@ function createBaseValidatorOutstandingRewards() {
399
437
  rewards: []
400
438
  };
401
439
  }
440
+ /**
441
+ * ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
442
+ * for a validator inexpensive to track, allows simple sanity checks.
443
+ * @name ValidatorOutstandingRewards
444
+ * @package cosmos.distribution.v1beta1
445
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
446
+ */
402
447
  export const ValidatorOutstandingRewards = {
403
448
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorOutstandingRewards",
404
449
  aminoType: "cosmos-sdk/ValidatorOutstandingRewards",
@@ -485,6 +530,15 @@ function createBaseValidatorSlashEvent() {
485
530
  fraction: ""
486
531
  };
487
532
  }
533
+ /**
534
+ * ValidatorSlashEvent represents a validator slash event.
535
+ * Height is implicit within the store key.
536
+ * This is needed to calculate appropriate amount of staking tokens
537
+ * for delegations which are withdrawn after a slash has occurred.
538
+ * @name ValidatorSlashEvent
539
+ * @package cosmos.distribution.v1beta1
540
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
541
+ */
488
542
  export const ValidatorSlashEvent = {
489
543
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvent",
490
544
  aminoType: "cosmos-sdk/ValidatorSlashEvent",
@@ -573,6 +627,12 @@ function createBaseValidatorSlashEvents() {
573
627
  validatorSlashEvents: []
574
628
  };
575
629
  }
630
+ /**
631
+ * ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
632
+ * @name ValidatorSlashEvents
633
+ * @package cosmos.distribution.v1beta1
634
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
635
+ */
576
636
  export const ValidatorSlashEvents = {
577
637
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvents",
578
638
  aminoType: "cosmos-sdk/ValidatorSlashEvents",
@@ -658,6 +718,12 @@ function createBaseFeePool() {
658
718
  communityPool: []
659
719
  };
660
720
  }
721
+ /**
722
+ * FeePool is the global fee pool for distribution.
723
+ * @name FeePool
724
+ * @package cosmos.distribution.v1beta1
725
+ * @see proto type: cosmos.distribution.v1beta1.FeePool
726
+ */
661
727
  export const FeePool = {
662
728
  typeUrl: "/cosmos.distribution.v1beta1.FeePool",
663
729
  aminoType: "cosmos-sdk/FeePool",
@@ -746,6 +812,20 @@ function createBaseCommunityPoolSpendProposal() {
746
812
  amount: []
747
813
  };
748
814
  }
815
+ /**
816
+ * CommunityPoolSpendProposal details a proposal for use of community funds,
817
+ * together with how many coins are proposed to be spent, and to which
818
+ * recipient account.
819
+ *
820
+ * Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
821
+ * longer a need for an explicit CommunityPoolSpendProposal. To spend community
822
+ * pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
823
+ * module via a v1 governance proposal.
824
+ * @name CommunityPoolSpendProposal
825
+ * @package cosmos.distribution.v1beta1
826
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
827
+ * @deprecated
828
+ */
749
829
  export const CommunityPoolSpendProposal = {
750
830
  typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal",
751
831
  aminoType: "cosmos-sdk/CommunityPoolSpendProposal",
@@ -868,6 +948,17 @@ function createBaseDelegatorStartingInfo() {
868
948
  height: BigInt(0)
869
949
  };
870
950
  }
951
+ /**
952
+ * DelegatorStartingInfo represents the starting info for a delegator reward
953
+ * period. It tracks the previous validator period, the delegation's amount of
954
+ * staking token, and the creation height (to check later on if any slashes have
955
+ * occurred). NOTE: Even though validators are slashed to whole staking tokens,
956
+ * the delegators within the validator may be left with less than a full token,
957
+ * thus sdk.Dec is used.
958
+ * @name DelegatorStartingInfo
959
+ * @package cosmos.distribution.v1beta1
960
+ * @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
961
+ */
871
962
  export const DelegatorStartingInfo = {
872
963
  typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfo",
873
964
  aminoType: "cosmos-sdk/DelegatorStartingInfo",
@@ -968,6 +1059,13 @@ function createBaseDelegationDelegatorReward() {
968
1059
  reward: []
969
1060
  };
970
1061
  }
1062
+ /**
1063
+ * DelegationDelegatorReward represents the properties
1064
+ * of a delegator's delegation reward.
1065
+ * @name DelegationDelegatorReward
1066
+ * @package cosmos.distribution.v1beta1
1067
+ * @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
1068
+ */
971
1069
  export const DelegationDelegatorReward = {
972
1070
  typeUrl: "/cosmos.distribution.v1beta1.DelegationDelegatorReward",
973
1071
  aminoType: "cosmos-sdk/DelegationDelegatorReward",
@@ -1068,6 +1166,13 @@ function createBaseCommunityPoolSpendProposalWithDeposit() {
1068
1166
  deposit: ""
1069
1167
  };
1070
1168
  }
1169
+ /**
1170
+ * CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
1171
+ * with a deposit
1172
+ * @name CommunityPoolSpendProposalWithDeposit
1173
+ * @package cosmos.distribution.v1beta1
1174
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
1175
+ */
1071
1176
  export const CommunityPoolSpendProposalWithDeposit = {
1072
1177
  typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit",
1073
1178
  aminoType: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit",
@@ -8,6 +8,13 @@ function createBaseMsgSetWithdrawAddress() {
8
8
  withdrawAddress: ""
9
9
  };
10
10
  }
11
+ /**
12
+ * MsgSetWithdrawAddress sets the withdraw address for
13
+ * a delegator (or validator self-delegation).
14
+ * @name MsgSetWithdrawAddress
15
+ * @package cosmos.distribution.v1beta1
16
+ * @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddress
17
+ */
11
18
  export const MsgSetWithdrawAddress = {
12
19
  typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress",
13
20
  aminoType: "cosmos-sdk/MsgModifyWithdrawAddress",
@@ -94,6 +101,13 @@ export const MsgSetWithdrawAddress = {
94
101
  function createBaseMsgSetWithdrawAddressResponse() {
95
102
  return {};
96
103
  }
104
+ /**
105
+ * MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response
106
+ * type.
107
+ * @name MsgSetWithdrawAddressResponse
108
+ * @package cosmos.distribution.v1beta1
109
+ * @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse
110
+ */
97
111
  export const MsgSetWithdrawAddressResponse = {
98
112
  typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse",
99
113
  aminoType: "cosmos-sdk/MsgSetWithdrawAddressResponse",
@@ -161,6 +175,13 @@ function createBaseMsgWithdrawDelegatorReward() {
161
175
  validatorAddress: ""
162
176
  };
163
177
  }
178
+ /**
179
+ * MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator
180
+ * from a single validator.
181
+ * @name MsgWithdrawDelegatorReward
182
+ * @package cosmos.distribution.v1beta1
183
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward
184
+ */
164
185
  export const MsgWithdrawDelegatorReward = {
165
186
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward",
166
187
  aminoType: "cosmos-sdk/MsgWithdrawDelegationReward",
@@ -249,6 +270,13 @@ function createBaseMsgWithdrawDelegatorRewardResponse() {
249
270
  amount: []
250
271
  };
251
272
  }
273
+ /**
274
+ * MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward
275
+ * response type.
276
+ * @name MsgWithdrawDelegatorRewardResponse
277
+ * @package cosmos.distribution.v1beta1
278
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse
279
+ */
252
280
  export const MsgWithdrawDelegatorRewardResponse = {
253
281
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse",
254
282
  aminoType: "cosmos-sdk/MsgWithdrawDelegatorRewardResponse",
@@ -334,6 +362,13 @@ function createBaseMsgWithdrawValidatorCommission() {
334
362
  validatorAddress: ""
335
363
  };
336
364
  }
365
+ /**
366
+ * MsgWithdrawValidatorCommission withdraws the full commission to the validator
367
+ * address.
368
+ * @name MsgWithdrawValidatorCommission
369
+ * @package cosmos.distribution.v1beta1
370
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission
371
+ */
337
372
  export const MsgWithdrawValidatorCommission = {
338
373
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission",
339
374
  aminoType: "cosmos-sdk/MsgWithdrawValidatorCommission",
@@ -411,6 +446,13 @@ function createBaseMsgWithdrawValidatorCommissionResponse() {
411
446
  amount: []
412
447
  };
413
448
  }
449
+ /**
450
+ * MsgWithdrawValidatorCommissionResponse defines the
451
+ * Msg/WithdrawValidatorCommission response type.
452
+ * @name MsgWithdrawValidatorCommissionResponse
453
+ * @package cosmos.distribution.v1beta1
454
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse
455
+ */
414
456
  export const MsgWithdrawValidatorCommissionResponse = {
415
457
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse",
416
458
  aminoType: "cosmos-sdk/MsgWithdrawValidatorCommissionResponse",
@@ -497,6 +539,13 @@ function createBaseMsgFundCommunityPool() {
497
539
  depositor: ""
498
540
  };
499
541
  }
542
+ /**
543
+ * MsgFundCommunityPool allows an account to directly
544
+ * fund the community pool.
545
+ * @name MsgFundCommunityPool
546
+ * @package cosmos.distribution.v1beta1
547
+ * @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPool
548
+ */
500
549
  export const MsgFundCommunityPool = {
501
550
  typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool",
502
551
  aminoType: "cosmos-sdk/MsgFundCommunityPool",
@@ -591,6 +640,12 @@ export const MsgFundCommunityPool = {
591
640
  function createBaseMsgFundCommunityPoolResponse() {
592
641
  return {};
593
642
  }
643
+ /**
644
+ * MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
645
+ * @name MsgFundCommunityPoolResponse
646
+ * @package cosmos.distribution.v1beta1
647
+ * @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse
648
+ */
594
649
  export const MsgFundCommunityPoolResponse = {
595
650
  typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse",
596
651
  aminoType: "cosmos-sdk/MsgFundCommunityPoolResponse",
@@ -658,6 +713,14 @@ function createBaseMsgUpdateParams() {
658
713
  params: Params.fromPartial({})
659
714
  };
660
715
  }
716
+ /**
717
+ * MsgUpdateParams is the Msg/UpdateParams request type.
718
+ *
719
+ * Since: cosmos-sdk 0.47
720
+ * @name MsgUpdateParams
721
+ * @package cosmos.distribution.v1beta1
722
+ * @see proto type: cosmos.distribution.v1beta1.MsgUpdateParams
723
+ */
661
724
  export const MsgUpdateParams = {
662
725
  typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams",
663
726
  aminoType: "cosmos-sdk/distribution/MsgUpdateParams",
@@ -749,6 +812,15 @@ export const MsgUpdateParams = {
749
812
  function createBaseMsgUpdateParamsResponse() {
750
813
  return {};
751
814
  }
815
+ /**
816
+ * MsgUpdateParamsResponse defines the response structure for executing a
817
+ * MsgUpdateParams message.
818
+ *
819
+ * Since: cosmos-sdk 0.47
820
+ * @name MsgUpdateParamsResponse
821
+ * @package cosmos.distribution.v1beta1
822
+ * @see proto type: cosmos.distribution.v1beta1.MsgUpdateParamsResponse
823
+ */
752
824
  export const MsgUpdateParamsResponse = {
753
825
  typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParamsResponse",
754
826
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -817,6 +889,16 @@ function createBaseMsgCommunityPoolSpend() {
817
889
  amount: []
818
890
  };
819
891
  }
892
+ /**
893
+ * MsgCommunityPoolSpend defines a message for sending tokens from the community
894
+ * pool to another account. This message is typically executed via a governance
895
+ * proposal with the governance module being the executing authority.
896
+ *
897
+ * Since: cosmos-sdk 0.47
898
+ * @name MsgCommunityPoolSpend
899
+ * @package cosmos.distribution.v1beta1
900
+ * @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpend
901
+ */
820
902
  export const MsgCommunityPoolSpend = {
821
903
  typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend",
822
904
  aminoType: "cosmos-sdk/distr/MsgCommunityPoolSpend",
@@ -922,6 +1004,15 @@ export const MsgCommunityPoolSpend = {
922
1004
  function createBaseMsgCommunityPoolSpendResponse() {
923
1005
  return {};
924
1006
  }
1007
+ /**
1008
+ * MsgCommunityPoolSpendResponse defines the response to executing a
1009
+ * MsgCommunityPoolSpend message.
1010
+ *
1011
+ * Since: cosmos-sdk 0.47
1012
+ * @name MsgCommunityPoolSpendResponse
1013
+ * @package cosmos.distribution.v1beta1
1014
+ * @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse
1015
+ */
925
1016
  export const MsgCommunityPoolSpendResponse = {
926
1017
  typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse",
927
1018
  aminoType: "cosmos-sdk/MsgCommunityPoolSpendResponse",
@@ -990,6 +1081,15 @@ function createBaseMsgDepositValidatorRewardsPool() {
990
1081
  amount: []
991
1082
  };
992
1083
  }
1084
+ /**
1085
+ * DepositValidatorRewardsPool defines the request structure to provide
1086
+ * additional rewards to delegators from a specific validator.
1087
+ *
1088
+ * Since: cosmos-sdk 0.50
1089
+ * @name MsgDepositValidatorRewardsPool
1090
+ * @package cosmos.distribution.v1beta1
1091
+ * @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool
1092
+ */
993
1093
  export const MsgDepositValidatorRewardsPool = {
994
1094
  typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool",
995
1095
  aminoType: "cosmos-sdk/distr/MsgDepositValRewards",
@@ -1095,6 +1195,15 @@ export const MsgDepositValidatorRewardsPool = {
1095
1195
  function createBaseMsgDepositValidatorRewardsPoolResponse() {
1096
1196
  return {};
1097
1197
  }
1198
+ /**
1199
+ * MsgDepositValidatorRewardsPoolResponse defines the response to executing a
1200
+ * MsgDepositValidatorRewardsPool message.
1201
+ *
1202
+ * Since: cosmos-sdk 0.50
1203
+ * @name MsgDepositValidatorRewardsPoolResponse
1204
+ * @package cosmos.distribution.v1beta1
1205
+ * @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse
1206
+ */
1098
1207
  export const MsgDepositValidatorRewardsPoolResponse = {
1099
1208
  typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse",
1100
1209
  aminoType: "cosmos-sdk/MsgDepositValidatorRewardsPoolResponse",
@@ -1,45 +1,80 @@
1
1
  import { buildTx } from "../../../helper-func-types";
2
2
  import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, MsgFundCommunityPool, MsgUpdateParams, MsgCommunityPoolSpend, MsgDepositValidatorRewardsPool } from "./tx";
3
- /* SetWithdrawAddress defines a method to change the withdraw address
4
- for a delegator (or validator self-delegation). */
3
+ /**
4
+ * SetWithdrawAddress defines a method to change the withdraw address
5
+ * for a delegator (or validator self-delegation).
6
+ * @name setWithdrawAddress
7
+ * @package cosmos.distribution.v1beta1
8
+ * @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
9
+ */
5
10
  export const setWithdrawAddress = buildTx({
6
11
  msg: MsgSetWithdrawAddress
7
12
  });
8
- /* WithdrawDelegatorReward defines a method to withdraw rewards of delegator
9
- from a single validator. */
13
+ /**
14
+ * WithdrawDelegatorReward defines a method to withdraw rewards of delegator
15
+ * from a single validator.
16
+ * @name withdrawDelegatorReward
17
+ * @package cosmos.distribution.v1beta1
18
+ * @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
19
+ */
10
20
  export const withdrawDelegatorReward = buildTx({
11
21
  msg: MsgWithdrawDelegatorReward
12
22
  });
13
- /* WithdrawValidatorCommission defines a method to withdraw the
14
- full commission to the validator address. */
23
+ /**
24
+ * WithdrawValidatorCommission defines a method to withdraw the
25
+ * full commission to the validator address.
26
+ * @name withdrawValidatorCommission
27
+ * @package cosmos.distribution.v1beta1
28
+ * @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
29
+ */
15
30
  export const withdrawValidatorCommission = buildTx({
16
31
  msg: MsgWithdrawValidatorCommission
17
32
  });
18
- /* FundCommunityPool defines a method to allow an account to directly
19
- fund the community pool. */
33
+ /**
34
+ * FundCommunityPool defines a method to allow an account to directly
35
+ * fund the community pool.
36
+ * @name fundCommunityPool
37
+ * @package cosmos.distribution.v1beta1
38
+ * @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
39
+ */
20
40
  export const fundCommunityPool = buildTx({
21
41
  msg: MsgFundCommunityPool
22
42
  });
23
- /* UpdateParams defines a governance operation for updating the x/distribution
24
- module parameters. The authority is defined in the keeper.
25
-
26
- Since: cosmos-sdk 0.47 */
43
+ /**
44
+ * UpdateParams defines a governance operation for updating the x/distribution
45
+ * module parameters. The authority is defined in the keeper.
46
+ *
47
+ * Since: cosmos-sdk 0.47
48
+ * @name updateParams
49
+ * @package cosmos.distribution.v1beta1
50
+ * @see proto service: cosmos.distribution.v1beta1.UpdateParams
51
+ */
27
52
  export const updateParams = buildTx({
28
53
  msg: MsgUpdateParams
29
54
  });
30
- /* CommunityPoolSpend defines a governance operation for sending tokens from
31
- the community pool in the x/distribution module to another account, which
32
- could be the governance module itself. The authority is defined in the
33
- keeper.
34
-
35
- Since: cosmos-sdk 0.47 */
55
+ /**
56
+ * CommunityPoolSpend defines a governance operation for sending tokens from
57
+ * the community pool in the x/distribution module to another account, which
58
+ * could be the governance module itself. The authority is defined in the
59
+ * keeper.
60
+ *
61
+ * Since: cosmos-sdk 0.47
62
+ * @name communityPoolSpend
63
+ * @package cosmos.distribution.v1beta1
64
+ * @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
65
+ */
36
66
  export const communityPoolSpend = buildTx({
37
67
  msg: MsgCommunityPoolSpend
38
68
  });
39
- /* DepositValidatorRewardsPool defines a method to provide additional rewards
40
- to delegators to a specific validator.
41
-
42
- Since: cosmos-sdk 0.50 */
69
+ /**
70
+ * DepositValidatorRewardsPool defines a method to provide additional rewards
71
+ * to delegators to a specific validator.
72
+ *
73
+ * Since: cosmos-sdk 0.50
74
+ * @name depositValidatorRewardsPool
75
+ * @package cosmos.distribution.v1beta1
76
+ * @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
77
+ */
43
78
  export const depositValidatorRewardsPool = buildTx({
44
79
  msg: MsgDepositValidatorRewardsPool
45
80
  });