injectivejs 1.11.13 → 1.11.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (520) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  4. package/cosmos/auth/v1beta1/auth.js +28 -0
  5. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  6. package/cosmos/auth/v1beta1/query.js +148 -0
  7. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
  8. package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  9. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  10. package/cosmos/authz/v1beta1/authz.js +27 -0
  11. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  12. package/cosmos/authz/v1beta1/tx.js +40 -0
  13. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
  14. package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  15. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  16. package/cosmos/bank/v1beta1/bank.js +48 -0
  17. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  18. package/cosmos/bank/v1beta1/query.js +199 -0
  19. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
  20. package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  21. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  22. package/cosmos/bank/v1beta1/tx.js +61 -0
  23. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
  24. package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  25. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  26. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  27. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  28. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  29. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  30. package/cosmos/base/v1beta1/coin.js +32 -0
  31. package/cosmos/bundle.d.ts +8 -8
  32. package/cosmos/bundle.js +15 -15
  33. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  34. package/cosmos/crypto/ed25519/keys.js +17 -0
  35. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  36. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  37. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  38. package/cosmos/crypto/secp256k1/keys.js +16 -0
  39. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  40. package/cosmos/crypto/secp256r1/keys.js +12 -0
  41. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  42. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  43. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  44. package/cosmos/distribution/v1beta1/tx.js +109 -0
  45. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
  46. package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  47. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  48. package/cosmos/feegrant/v1beta1/tx.js +41 -0
  49. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
  50. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  51. package/cosmos/gov/v1/gov.d.ts +343 -80
  52. package/cosmos/gov/v1/gov.js +61 -0
  53. package/cosmos/gov/v1/tx.d.ts +376 -65
  54. package/cosmos/gov/v1/tx.js +96 -0
  55. package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
  56. package/cosmos/gov/v1/tx.rpc.func.js +48 -13
  57. package/cosmos/gov/v1beta1/gov.d.ts +293 -61
  58. package/cosmos/gov/v1beta1/gov.js +59 -0
  59. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  60. package/cosmos/gov/v1beta1/query.js +97 -0
  61. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
  62. package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  63. package/cosmos/gov/v1beta1/tx.d.ts +213 -37
  64. package/cosmos/gov/v1beta1/tx.js +53 -0
  65. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
  66. package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  67. package/cosmos/group/v1/tx.d.ts +804 -155
  68. package/cosmos/group/v1/tx.js +168 -0
  69. package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
  70. package/cosmos/group/v1/tx.rpc.func.js +84 -14
  71. package/cosmos/group/v1/types.d.ts +398 -83
  72. package/cosmos/group/v1/types.js +82 -0
  73. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  74. package/cosmos/ics23/v1/proofs.js +138 -0
  75. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  76. package/cosmos/staking/v1beta1/query.js +186 -0
  77. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
  78. package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  79. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  80. package/cosmos/staking/v1beta1/staking.js +153 -0
  81. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  82. package/cosmos/staking/v1beta1/tx.js +96 -0
  83. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
  84. package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  85. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  86. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  87. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  88. package/cosmos/tx/v1beta1/service.js +145 -0
  89. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
  90. package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  91. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  92. package/cosmos/tx/v1beta1/tx.js +99 -0
  93. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  94. package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  95. package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
  96. package/cosmos/vesting/v1beta1/tx.js +48 -0
  97. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
  98. package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  99. package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
  100. package/cosmos/vesting/v1beta1/vesting.js +45 -0
  101. package/cosmos_proto/cosmos.d.ts +31 -0
  102. package/cosmos_proto/cosmos.js +19 -0
  103. package/cosmwasm/bundle.d.ts +2 -2
  104. package/cosmwasm/bundle.js +3 -3
  105. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  106. package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  107. package/cosmwasm/wasm/v1/query.d.ts +615 -82
  108. package/cosmwasm/wasm/v1/query.js +195 -0
  109. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
  110. package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  111. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  112. package/cosmwasm/wasm/v1/tx.js +242 -0
  113. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
  114. package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  115. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  116. package/cosmwasm/wasm/v1/types.js +49 -0
  117. package/esm/binary.js +1 -1
  118. package/esm/cosmos/auth/v1beta1/auth.js +28 -0
  119. package/esm/cosmos/auth/v1beta1/query.js +148 -0
  120. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  121. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  122. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  123. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  124. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  125. package/esm/cosmos/bank/v1beta1/query.js +199 -0
  126. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  127. package/esm/cosmos/bank/v1beta1/tx.js +61 -0
  128. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  129. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  130. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  131. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  132. package/esm/cosmos/bundle.js +8 -8
  133. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  134. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  135. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  136. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  137. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  138. package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
  139. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  140. package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
  141. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  142. package/esm/cosmos/gov/v1/gov.js +61 -0
  143. package/esm/cosmos/gov/v1/tx.js +96 -0
  144. package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
  145. package/esm/cosmos/gov/v1beta1/gov.js +59 -0
  146. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  147. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  148. package/esm/cosmos/gov/v1beta1/tx.js +53 -0
  149. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  150. package/esm/cosmos/group/v1/tx.js +168 -0
  151. package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
  152. package/esm/cosmos/group/v1/types.js +82 -0
  153. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  154. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  155. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  156. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  157. package/esm/cosmos/staking/v1beta1/tx.js +96 -0
  158. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  159. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  160. package/esm/cosmos/tx/v1beta1/service.js +145 -0
  161. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  162. package/esm/cosmos/tx/v1beta1/tx.js +99 -0
  163. package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  164. package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
  165. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  166. package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
  167. package/esm/cosmos_proto/cosmos.js +19 -0
  168. package/esm/cosmwasm/bundle.js +2 -2
  169. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  170. package/esm/cosmwasm/wasm/v1/query.js +195 -0
  171. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  172. package/esm/cosmwasm/wasm/v1/tx.js +242 -0
  173. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  174. package/esm/cosmwasm/wasm/v1/types.js +49 -0
  175. package/esm/extern.js +1 -1
  176. package/esm/google/api/http.js +283 -0
  177. package/esm/google/protobuf/any.js +90 -0
  178. package/esm/google/protobuf/descriptor.js +215 -0
  179. package/esm/google/protobuf/duration.js +63 -0
  180. package/esm/google/protobuf/timestamp.js +94 -0
  181. package/esm/helper-func-types.js +1 -1
  182. package/esm/helpers.js +1 -1
  183. package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
  184. package/esm/ibc/applications/transfer/v1/tx.js +27 -0
  185. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  186. package/esm/ibc/bundle.js +1 -1
  187. package/esm/ibc/core/channel/v1/channel.js +70 -0
  188. package/esm/ibc/core/channel/v1/tx.js +242 -0
  189. package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  190. package/esm/ibc/core/channel/v1/upgrade.js +25 -0
  191. package/esm/ibc/core/client/v1/client.js +45 -0
  192. package/esm/ibc/core/client/v1/tx.js +90 -0
  193. package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
  194. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  195. package/esm/ibc/core/connection/v1/connection.js +47 -0
  196. package/esm/ibc/core/connection/v1/tx.js +66 -0
  197. package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  198. package/esm/index.js +1 -1
  199. package/esm/injective/auction/v1beta1/auction.js +30 -0
  200. package/esm/injective/auction/v1beta1/genesis.js +6 -0
  201. package/esm/injective/auction/v1beta1/query.js +52 -0
  202. package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
  203. package/esm/injective/auction/v1beta1/tx.js +21 -0
  204. package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  205. package/esm/injective/bundle.js +14 -14
  206. package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  207. package/esm/injective/exchange/v1beta1/authz.js +58 -0
  208. package/esm/injective/exchange/v1beta1/events.js +180 -0
  209. package/esm/injective/exchange/v1beta1/exchange.js +263 -0
  210. package/esm/injective/exchange/v1beta1/genesis.js +89 -0
  211. package/esm/injective/exchange/v1beta1/proposal.js +113 -0
  212. package/esm/injective/exchange/v1beta1/query.js +864 -0
  213. package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  214. package/esm/injective/exchange/v1beta1/tx.js +487 -0
  215. package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  216. package/esm/injective/insurance/v1beta1/events.js +25 -0
  217. package/esm/injective/insurance/v1beta1/genesis.js +6 -0
  218. package/esm/injective/insurance/v1beta1/insurance.js +15 -0
  219. package/esm/injective/insurance/v1beta1/query.js +84 -0
  220. package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  221. package/esm/injective/insurance/v1beta1/tx.js +46 -0
  222. package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  223. package/esm/injective/ocr/v1beta1/genesis.js +41 -0
  224. package/esm/injective/ocr/v1beta1/ocr.js +108 -0
  225. package/esm/injective/ocr/v1beta1/query.js +70 -0
  226. package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  227. package/esm/injective/ocr/v1beta1/tx.js +90 -0
  228. package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  229. package/esm/injective/oracle/v1beta1/events.js +56 -0
  230. package/esm/injective/oracle/v1beta1/genesis.js +11 -0
  231. package/esm/injective/oracle/v1beta1/oracle.js +122 -0
  232. package/esm/injective/oracle/v1beta1/proposal.js +55 -0
  233. package/esm/injective/oracle/v1beta1/query.js +240 -0
  234. package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  235. package/esm/injective/oracle/v1beta1/tx.js +93 -0
  236. package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  237. package/esm/injective/peggy/v1/attestation.js +31 -0
  238. package/esm/injective/peggy/v1/batch.js +12 -0
  239. package/esm/injective/peggy/v1/events.js +85 -0
  240. package/esm/injective/peggy/v1/genesis.js +6 -0
  241. package/esm/injective/peggy/v1/msgs.js +223 -0
  242. package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
  243. package/esm/injective/peggy/v1/params.js +5 -0
  244. package/esm/injective/peggy/v1/pool.js +11 -0
  245. package/esm/injective/peggy/v1/proposal.js +10 -0
  246. package/esm/injective/peggy/v1/query.js +214 -0
  247. package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
  248. package/esm/injective/peggy/v1/types.js +37 -0
  249. package/esm/injective/permissions/v1beta1/events.js +5 -0
  250. package/esm/injective/permissions/v1beta1/genesis.js +6 -0
  251. package/esm/injective/permissions/v1beta1/params.js +6 -0
  252. package/esm/injective/permissions/v1beta1/permissions.js +33 -0
  253. package/esm/injective/permissions/v1beta1/query.js +74 -0
  254. package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  255. package/esm/injective/permissions/v1beta1/tx.js +90 -0
  256. package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  257. package/esm/injective/stream/v1beta1/query.js +110 -0
  258. package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  259. package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
  260. package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
  261. package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
  262. package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
  263. package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  264. package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
  265. package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  266. package/esm/injective/types/v1beta1/account.js +7 -0
  267. package/esm/injective/types/v1beta1/tx_ext.js +5 -0
  268. package/esm/injective/types/v1beta1/tx_response.js +13 -0
  269. package/esm/injective/wasmx/v1/events.js +15 -0
  270. package/esm/injective/wasmx/v1/genesis.js +11 -0
  271. package/esm/injective/wasmx/v1/proposal.js +25 -0
  272. package/esm/injective/wasmx/v1/query.js +39 -0
  273. package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
  274. package/esm/injective/wasmx/v1/tx.js +63 -0
  275. package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
  276. package/esm/injective/wasmx/v1/wasmx.js +10 -0
  277. package/esm/registry.js +1 -1
  278. package/esm/tendermint/abci/types.js +255 -0
  279. package/esm/tendermint/crypto/keys.js +6 -0
  280. package/esm/tendermint/crypto/proof.js +29 -0
  281. package/esm/tendermint/types/block.js +5 -0
  282. package/esm/tendermint/types/evidence.js +22 -0
  283. package/esm/tendermint/types/params.js +46 -0
  284. package/esm/tendermint/types/types.js +87 -0
  285. package/esm/tendermint/types/validator.js +15 -0
  286. package/esm/tendermint/version/types.js +16 -0
  287. package/esm/types.js +1 -1
  288. package/esm/utf8.js +1 -1
  289. package/esm/varint.js +1 -1
  290. package/extern.d.ts +1 -1
  291. package/extern.js +1 -1
  292. package/google/api/http.d.ts +343 -14
  293. package/google/api/http.js +283 -0
  294. package/google/protobuf/any.d.ts +102 -2
  295. package/google/protobuf/any.js +90 -0
  296. package/google/protobuf/descriptor.d.ts +715 -86
  297. package/google/protobuf/descriptor.js +215 -0
  298. package/google/protobuf/duration.d.ts +69 -0
  299. package/google/protobuf/duration.js +63 -0
  300. package/google/protobuf/timestamp.d.ts +100 -0
  301. package/google/protobuf/timestamp.js +94 -0
  302. package/helper-func-types.d.ts +1 -1
  303. package/helper-func-types.js +1 -1
  304. package/helpers.d.ts +1 -1
  305. package/helpers.js +1 -1
  306. package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
  307. package/ibc/applications/transfer/v1/transfer.js +24 -0
  308. package/ibc/applications/transfer/v1/tx.d.ts +125 -26
  309. package/ibc/applications/transfer/v1/tx.js +27 -0
  310. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
  311. package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  312. package/ibc/bundle.d.ts +1 -1
  313. package/ibc/bundle.js +2 -2
  314. package/ibc/core/channel/v1/channel.d.ts +316 -64
  315. package/ibc/core/channel/v1/channel.js +70 -0
  316. package/ibc/core/channel/v1/tx.d.ts +676 -70
  317. package/ibc/core/channel/v1/tx.js +242 -0
  318. package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
  319. package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  320. package/ibc/core/channel/v1/upgrade.d.ts +55 -4
  321. package/ibc/core/channel/v1/upgrade.js +25 -0
  322. package/ibc/core/client/v1/client.d.ts +129 -18
  323. package/ibc/core/client/v1/client.js +45 -0
  324. package/ibc/core/client/v1/tx.d.ts +338 -56
  325. package/ibc/core/client/v1/tx.js +90 -0
  326. package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
  327. package/ibc/core/client/v1/tx.rpc.func.js +42 -7
  328. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  329. package/ibc/core/commitment/v1/commitment.js +25 -0
  330. package/ibc/core/connection/v1/connection.d.ts +197 -36
  331. package/ibc/core/connection/v1/connection.js +47 -0
  332. package/ibc/core/connection/v1/tx.d.ts +250 -56
  333. package/ibc/core/connection/v1/tx.js +66 -0
  334. package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
  335. package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  336. package/index.d.ts +1 -1
  337. package/index.js +1 -1
  338. package/injective/auction/v1beta1/auction.d.ts +168 -26
  339. package/injective/auction/v1beta1/auction.js +30 -0
  340. package/injective/auction/v1beta1/genesis.d.ts +48 -12
  341. package/injective/auction/v1beta1/genesis.js +6 -0
  342. package/injective/auction/v1beta1/query.d.ts +138 -10
  343. package/injective/auction/v1beta1/query.js +52 -0
  344. package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
  345. package/injective/auction/v1beta1/query.rpc.func.js +23 -3
  346. package/injective/auction/v1beta1/tx.d.ts +81 -8
  347. package/injective/auction/v1beta1/tx.js +21 -0
  348. package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
  349. package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  350. package/injective/bundle.d.ts +14 -14
  351. package/injective/bundle.js +18 -18
  352. package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
  353. package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  354. package/injective/exchange/v1beta1/authz.d.ts +174 -6
  355. package/injective/exchange/v1beta1/authz.js +58 -0
  356. package/injective/exchange/v1beta1/events.d.ts +546 -2
  357. package/injective/exchange/v1beta1/events.js +180 -0
  358. package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
  359. package/injective/exchange/v1beta1/exchange.js +263 -0
  360. package/injective/exchange/v1beta1/genesis.d.ts +357 -38
  361. package/injective/exchange/v1beta1/genesis.js +89 -0
  362. package/injective/exchange/v1beta1/proposal.d.ts +589 -94
  363. package/injective/exchange/v1beta1/proposal.js +113 -0
  364. package/injective/exchange/v1beta1/query.d.ts +2162 -136
  365. package/injective/exchange/v1beta1/query.js +864 -0
  366. package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
  367. package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  368. package/injective/exchange/v1beta1/tx.d.ts +1503 -170
  369. package/injective/exchange/v1beta1/tx.js +487 -0
  370. package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
  371. package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  372. package/injective/insurance/v1beta1/events.d.ts +111 -12
  373. package/injective/insurance/v1beta1/events.js +25 -0
  374. package/injective/insurance/v1beta1/genesis.d.ts +30 -6
  375. package/injective/insurance/v1beta1/genesis.js +6 -0
  376. package/injective/insurance/v1beta1/insurance.d.ts +117 -24
  377. package/injective/insurance/v1beta1/insurance.js +15 -0
  378. package/injective/insurance/v1beta1/query.d.ts +162 -2
  379. package/injective/insurance/v1beta1/query.js +84 -0
  380. package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
  381. package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  382. package/injective/insurance/v1beta1/tx.d.ts +186 -24
  383. package/injective/insurance/v1beta1/tx.js +46 -0
  384. package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
  385. package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  386. package/injective/ocr/v1beta1/genesis.d.ts +171 -18
  387. package/injective/ocr/v1beta1/genesis.js +41 -0
  388. package/injective/ocr/v1beta1/ocr.d.ts +514 -68
  389. package/injective/ocr/v1beta1/ocr.js +108 -0
  390. package/injective/ocr/v1beta1/query.d.ts +210 -0
  391. package/injective/ocr/v1beta1/query.js +70 -0
  392. package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
  393. package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  394. package/injective/ocr/v1beta1/tx.d.ts +360 -30
  395. package/injective/ocr/v1beta1/tx.js +90 -0
  396. package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
  397. package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  398. package/injective/oracle/v1beta1/events.d.ts +174 -4
  399. package/injective/oracle/v1beta1/events.js +56 -0
  400. package/injective/oracle/v1beta1/genesis.d.ts +39 -4
  401. package/injective/oracle/v1beta1/genesis.js +11 -0
  402. package/injective/oracle/v1beta1/oracle.d.ts +514 -52
  403. package/injective/oracle/v1beta1/oracle.js +122 -0
  404. package/injective/oracle/v1beta1/proposal.d.ts +165 -0
  405. package/injective/oracle/v1beta1/proposal.js +55 -0
  406. package/injective/oracle/v1beta1/query.d.ts +502 -0
  407. package/injective/oracle/v1beta1/query.js +240 -0
  408. package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
  409. package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  410. package/injective/oracle/v1beta1/tx.d.ts +251 -10
  411. package/injective/oracle/v1beta1/tx.js +93 -0
  412. package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
  413. package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  414. package/injective/peggy/v1/attestation.d.ts +43 -0
  415. package/injective/peggy/v1/attestation.js +31 -0
  416. package/injective/peggy/v1/batch.d.ts +36 -4
  417. package/injective/peggy/v1/batch.js +12 -0
  418. package/injective/peggy/v1/events.d.ts +255 -0
  419. package/injective/peggy/v1/events.js +85 -0
  420. package/injective/peggy/v1/genesis.d.ts +18 -2
  421. package/injective/peggy/v1/genesis.js +6 -0
  422. package/injective/peggy/v1/msgs.d.ts +473 -10
  423. package/injective/peggy/v1/msgs.js +223 -0
  424. package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
  425. package/injective/peggy/v1/msgs.rpc.func.js +73 -3
  426. package/injective/peggy/v1/params.d.ts +15 -0
  427. package/injective/peggy/v1/params.js +5 -0
  428. package/injective/peggy/v1/pool.d.ts +33 -2
  429. package/injective/peggy/v1/pool.js +11 -0
  430. package/injective/peggy/v1/proposal.d.ts +30 -0
  431. package/injective/peggy/v1/proposal.js +10 -0
  432. package/injective/peggy/v1/query.d.ts +626 -0
  433. package/injective/peggy/v1/query.js +214 -0
  434. package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
  435. package/injective/peggy/v1/query.rpc.func.js +110 -5
  436. package/injective/peggy/v1/types.d.ts +85 -6
  437. package/injective/peggy/v1/types.js +37 -0
  438. package/injective/permissions/v1beta1/events.d.ts +15 -0
  439. package/injective/permissions/v1beta1/events.js +5 -0
  440. package/injective/permissions/v1beta1/genesis.d.ts +24 -4
  441. package/injective/permissions/v1beta1/genesis.js +6 -0
  442. package/injective/permissions/v1beta1/params.d.ts +18 -2
  443. package/injective/permissions/v1beta1/params.js +6 -0
  444. package/injective/permissions/v1beta1/permissions.d.ts +117 -12
  445. package/injective/permissions/v1beta1/permissions.js +33 -0
  446. package/injective/permissions/v1beta1/query.d.ts +180 -6
  447. package/injective/permissions/v1beta1/query.js +74 -0
  448. package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
  449. package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  450. package/injective/permissions/v1beta1/tx.d.ts +318 -16
  451. package/injective/permissions/v1beta1/tx.js +90 -0
  452. package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
  453. package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  454. package/injective/stream/v1beta1/query.d.ts +336 -2
  455. package/injective/stream/v1beta1/query.js +110 -0
  456. package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
  457. package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  458. package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
  459. package/injective/tokenfactory/v1beta1/events.js +25 -0
  460. package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
  461. package/injective/tokenfactory/v1beta1/genesis.js +14 -0
  462. package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
  463. package/injective/tokenfactory/v1beta1/params.js +6 -0
  464. package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
  465. package/injective/tokenfactory/v1beta1/query.js +54 -0
  466. package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
  467. package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  468. package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
  469. package/injective/tokenfactory/v1beta1/tx.js +83 -0
  470. package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
  471. package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  472. package/injective/types/v1beta1/account.d.ts +13 -0
  473. package/injective/types/v1beta1/account.js +7 -0
  474. package/injective/types/v1beta1/tx_ext.d.ts +15 -0
  475. package/injective/types/v1beta1/tx_ext.js +5 -0
  476. package/injective/types/v1beta1/tx_response.d.ts +31 -2
  477. package/injective/types/v1beta1/tx_response.js +13 -0
  478. package/injective/wasmx/v1/events.d.ts +45 -0
  479. package/injective/wasmx/v1/events.js +15 -0
  480. package/injective/wasmx/v1/genesis.d.ts +39 -4
  481. package/injective/wasmx/v1/genesis.js +11 -0
  482. package/injective/wasmx/v1/proposal.d.ts +99 -8
  483. package/injective/wasmx/v1/proposal.js +25 -0
  484. package/injective/wasmx/v1/query.d.ts +85 -2
  485. package/injective/wasmx/v1/query.js +39 -0
  486. package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
  487. package/injective/wasmx/v1/query.rpc.func.js +18 -3
  488. package/injective/wasmx/v1/tx.d.ts +253 -26
  489. package/injective/wasmx/v1/tx.js +63 -0
  490. package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
  491. package/injective/wasmx/v1/tx.rpc.func.js +30 -0
  492. package/injective/wasmx/v1/wasmx.d.ts +60 -10
  493. package/injective/wasmx/v1/wasmx.js +10 -0
  494. package/package.json +9 -9
  495. package/registry.d.ts +1 -1
  496. package/registry.js +1 -1
  497. package/tendermint/abci/types.d.ts +971 -98
  498. package/tendermint/abci/types.js +255 -0
  499. package/tendermint/crypto/keys.d.ts +18 -2
  500. package/tendermint/crypto/keys.js +6 -0
  501. package/tendermint/crypto/proof.d.ts +89 -6
  502. package/tendermint/crypto/proof.js +29 -0
  503. package/tendermint/types/block.d.ts +15 -0
  504. package/tendermint/types/block.js +5 -0
  505. package/tendermint/types/evidence.d.ts +66 -4
  506. package/tendermint/types/evidence.js +22 -0
  507. package/tendermint/types/params.d.ts +112 -8
  508. package/tendermint/types/params.js +46 -0
  509. package/tendermint/types/types.d.ts +327 -42
  510. package/tendermint/types/types.js +87 -0
  511. package/tendermint/types/validator.d.ts +45 -0
  512. package/tendermint/types/validator.js +15 -0
  513. package/tendermint/version/types.d.ts +28 -0
  514. package/tendermint/version/types.js +16 -0
  515. package/types.d.ts +1 -1
  516. package/types.js +1 -1
  517. package/utf8.d.ts +1 -1
  518. package/utf8.js +1 -1
  519. package/varint.d.ts +1 -1
  520. package/varint.js +1 -1
@@ -21,55 +21,100 @@ export declare enum Exec {
21
21
  export declare const ExecAmino: typeof Exec;
22
22
  export declare function execFromJSON(object: any): Exec;
23
23
  export declare function execToJSON(object: Exec): string;
24
- /** MsgCreateGroup is the Msg/CreateGroup request type. */
24
+ /**
25
+ * MsgCreateGroup is the Msg/CreateGroup request type.
26
+ * @name MsgCreateGroup
27
+ * @package cosmos.group.v1
28
+ * @see proto type: cosmos.group.v1.MsgCreateGroup
29
+ */
25
30
  export interface MsgCreateGroup {
26
- /** admin is the account address of the group admin. */
31
+ /**
32
+ * admin is the account address of the group admin.
33
+ */
27
34
  admin: string;
28
- /** members defines the group members. */
35
+ /**
36
+ * members defines the group members.
37
+ */
29
38
  members: MemberRequest[];
30
- /** metadata is any arbitrary metadata to attached to the group. */
39
+ /**
40
+ * metadata is any arbitrary metadata to attached to the group.
41
+ */
31
42
  metadata: string;
32
43
  }
33
44
  export interface MsgCreateGroupProtoMsg {
34
45
  typeUrl: "/cosmos.group.v1.MsgCreateGroup";
35
46
  value: Uint8Array;
36
47
  }
37
- /** MsgCreateGroup is the Msg/CreateGroup request type. */
48
+ /**
49
+ * MsgCreateGroup is the Msg/CreateGroup request type.
50
+ * @name MsgCreateGroupAmino
51
+ * @package cosmos.group.v1
52
+ * @see proto type: cosmos.group.v1.MsgCreateGroup
53
+ */
38
54
  export interface MsgCreateGroupAmino {
39
- /** admin is the account address of the group admin. */
55
+ /**
56
+ * admin is the account address of the group admin.
57
+ */
40
58
  admin: string;
41
- /** members defines the group members. */
59
+ /**
60
+ * members defines the group members.
61
+ */
42
62
  members: MemberRequestAmino[];
43
- /** metadata is any arbitrary metadata to attached to the group. */
63
+ /**
64
+ * metadata is any arbitrary metadata to attached to the group.
65
+ */
44
66
  metadata: string;
45
67
  }
46
68
  export interface MsgCreateGroupAminoMsg {
47
69
  type: "cosmos-sdk/MsgCreateGroup";
48
70
  value: MsgCreateGroupAmino;
49
71
  }
50
- /** MsgCreateGroupResponse is the Msg/CreateGroup response type. */
72
+ /**
73
+ * MsgCreateGroupResponse is the Msg/CreateGroup response type.
74
+ * @name MsgCreateGroupResponse
75
+ * @package cosmos.group.v1
76
+ * @see proto type: cosmos.group.v1.MsgCreateGroupResponse
77
+ */
51
78
  export interface MsgCreateGroupResponse {
52
- /** group_id is the unique ID of the newly created group. */
79
+ /**
80
+ * group_id is the unique ID of the newly created group.
81
+ */
53
82
  groupId: bigint;
54
83
  }
55
84
  export interface MsgCreateGroupResponseProtoMsg {
56
85
  typeUrl: "/cosmos.group.v1.MsgCreateGroupResponse";
57
86
  value: Uint8Array;
58
87
  }
59
- /** MsgCreateGroupResponse is the Msg/CreateGroup response type. */
88
+ /**
89
+ * MsgCreateGroupResponse is the Msg/CreateGroup response type.
90
+ * @name MsgCreateGroupResponseAmino
91
+ * @package cosmos.group.v1
92
+ * @see proto type: cosmos.group.v1.MsgCreateGroupResponse
93
+ */
60
94
  export interface MsgCreateGroupResponseAmino {
61
- /** group_id is the unique ID of the newly created group. */
95
+ /**
96
+ * group_id is the unique ID of the newly created group.
97
+ */
62
98
  group_id: string;
63
99
  }
64
100
  export interface MsgCreateGroupResponseAminoMsg {
65
101
  type: "cosmos-sdk/MsgCreateGroupResponse";
66
102
  value: MsgCreateGroupResponseAmino;
67
103
  }
68
- /** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */
104
+ /**
105
+ * MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
106
+ * @name MsgUpdateGroupMembers
107
+ * @package cosmos.group.v1
108
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
109
+ */
69
110
  export interface MsgUpdateGroupMembers {
70
- /** admin is the account address of the group admin. */
111
+ /**
112
+ * admin is the account address of the group admin.
113
+ */
71
114
  admin: string;
72
- /** group_id is the unique ID of the group. */
115
+ /**
116
+ * group_id is the unique ID of the group.
117
+ */
73
118
  groupId: bigint;
74
119
  /**
75
120
  * member_updates is the list of members to update,
@@ -81,11 +126,20 @@ export interface MsgUpdateGroupMembersProtoMsg {
81
126
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembers";
82
127
  value: Uint8Array;
83
128
  }
84
- /** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */
129
+ /**
130
+ * MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
131
+ * @name MsgUpdateGroupMembersAmino
132
+ * @package cosmos.group.v1
133
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
134
+ */
85
135
  export interface MsgUpdateGroupMembersAmino {
86
- /** admin is the account address of the group admin. */
136
+ /**
137
+ * admin is the account address of the group admin.
138
+ */
87
139
  admin: string;
88
- /** group_id is the unique ID of the group. */
140
+ /**
141
+ * group_id is the unique ID of the group.
142
+ */
89
143
  group_id: string;
90
144
  /**
91
145
  * member_updates is the list of members to update,
@@ -97,109 +151,196 @@ export interface MsgUpdateGroupMembersAminoMsg {
97
151
  type: "cosmos-sdk/MsgUpdateGroupMembers";
98
152
  value: MsgUpdateGroupMembersAmino;
99
153
  }
100
- /** MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type. */
154
+ /**
155
+ * MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
156
+ * @name MsgUpdateGroupMembersResponse
157
+ * @package cosmos.group.v1
158
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
159
+ */
101
160
  export interface MsgUpdateGroupMembersResponse {
102
161
  }
103
162
  export interface MsgUpdateGroupMembersResponseProtoMsg {
104
163
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembersResponse";
105
164
  value: Uint8Array;
106
165
  }
107
- /** MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type. */
166
+ /**
167
+ * MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
168
+ * @name MsgUpdateGroupMembersResponseAmino
169
+ * @package cosmos.group.v1
170
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
171
+ */
108
172
  export interface MsgUpdateGroupMembersResponseAmino {
109
173
  }
110
174
  export interface MsgUpdateGroupMembersResponseAminoMsg {
111
175
  type: "cosmos-sdk/MsgUpdateGroupMembersResponse";
112
176
  value: MsgUpdateGroupMembersResponseAmino;
113
177
  }
114
- /** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */
178
+ /**
179
+ * MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
180
+ * @name MsgUpdateGroupAdmin
181
+ * @package cosmos.group.v1
182
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
183
+ */
115
184
  export interface MsgUpdateGroupAdmin {
116
- /** admin is the current account address of the group admin. */
185
+ /**
186
+ * admin is the current account address of the group admin.
187
+ */
117
188
  admin: string;
118
- /** group_id is the unique ID of the group. */
189
+ /**
190
+ * group_id is the unique ID of the group.
191
+ */
119
192
  groupId: bigint;
120
- /** new_admin is the group new admin account address. */
193
+ /**
194
+ * new_admin is the group new admin account address.
195
+ */
121
196
  newAdmin: string;
122
197
  }
123
198
  export interface MsgUpdateGroupAdminProtoMsg {
124
199
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdmin";
125
200
  value: Uint8Array;
126
201
  }
127
- /** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */
202
+ /**
203
+ * MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
204
+ * @name MsgUpdateGroupAdminAmino
205
+ * @package cosmos.group.v1
206
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
207
+ */
128
208
  export interface MsgUpdateGroupAdminAmino {
129
- /** admin is the current account address of the group admin. */
209
+ /**
210
+ * admin is the current account address of the group admin.
211
+ */
130
212
  admin: string;
131
- /** group_id is the unique ID of the group. */
213
+ /**
214
+ * group_id is the unique ID of the group.
215
+ */
132
216
  group_id: string;
133
- /** new_admin is the group new admin account address. */
217
+ /**
218
+ * new_admin is the group new admin account address.
219
+ */
134
220
  new_admin: string;
135
221
  }
136
222
  export interface MsgUpdateGroupAdminAminoMsg {
137
223
  type: "cosmos-sdk/MsgUpdateGroupAdmin";
138
224
  value: MsgUpdateGroupAdminAmino;
139
225
  }
140
- /** MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. */
226
+ /**
227
+ * MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
228
+ * @name MsgUpdateGroupAdminResponse
229
+ * @package cosmos.group.v1
230
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
231
+ */
141
232
  export interface MsgUpdateGroupAdminResponse {
142
233
  }
143
234
  export interface MsgUpdateGroupAdminResponseProtoMsg {
144
235
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdminResponse";
145
236
  value: Uint8Array;
146
237
  }
147
- /** MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. */
238
+ /**
239
+ * MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
240
+ * @name MsgUpdateGroupAdminResponseAmino
241
+ * @package cosmos.group.v1
242
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
243
+ */
148
244
  export interface MsgUpdateGroupAdminResponseAmino {
149
245
  }
150
246
  export interface MsgUpdateGroupAdminResponseAminoMsg {
151
247
  type: "cosmos-sdk/MsgUpdateGroupAdminResponse";
152
248
  value: MsgUpdateGroupAdminResponseAmino;
153
249
  }
154
- /** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */
250
+ /**
251
+ * MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
252
+ * @name MsgUpdateGroupMetadata
253
+ * @package cosmos.group.v1
254
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
255
+ */
155
256
  export interface MsgUpdateGroupMetadata {
156
- /** admin is the account address of the group admin. */
257
+ /**
258
+ * admin is the account address of the group admin.
259
+ */
157
260
  admin: string;
158
- /** group_id is the unique ID of the group. */
261
+ /**
262
+ * group_id is the unique ID of the group.
263
+ */
159
264
  groupId: bigint;
160
- /** metadata is the updated group's metadata. */
265
+ /**
266
+ * metadata is the updated group's metadata.
267
+ */
161
268
  metadata: string;
162
269
  }
163
270
  export interface MsgUpdateGroupMetadataProtoMsg {
164
271
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadata";
165
272
  value: Uint8Array;
166
273
  }
167
- /** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */
274
+ /**
275
+ * MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
276
+ * @name MsgUpdateGroupMetadataAmino
277
+ * @package cosmos.group.v1
278
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
279
+ */
168
280
  export interface MsgUpdateGroupMetadataAmino {
169
- /** admin is the account address of the group admin. */
281
+ /**
282
+ * admin is the account address of the group admin.
283
+ */
170
284
  admin: string;
171
- /** group_id is the unique ID of the group. */
285
+ /**
286
+ * group_id is the unique ID of the group.
287
+ */
172
288
  group_id: string;
173
- /** metadata is the updated group's metadata. */
289
+ /**
290
+ * metadata is the updated group's metadata.
291
+ */
174
292
  metadata: string;
175
293
  }
176
294
  export interface MsgUpdateGroupMetadataAminoMsg {
177
295
  type: "cosmos-sdk/MsgUpdateGroupMetadata";
178
296
  value: MsgUpdateGroupMetadataAmino;
179
297
  }
180
- /** MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type. */
298
+ /**
299
+ * MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
300
+ * @name MsgUpdateGroupMetadataResponse
301
+ * @package cosmos.group.v1
302
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
303
+ */
181
304
  export interface MsgUpdateGroupMetadataResponse {
182
305
  }
183
306
  export interface MsgUpdateGroupMetadataResponseProtoMsg {
184
307
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadataResponse";
185
308
  value: Uint8Array;
186
309
  }
187
- /** MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type. */
310
+ /**
311
+ * MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
312
+ * @name MsgUpdateGroupMetadataResponseAmino
313
+ * @package cosmos.group.v1
314
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
315
+ */
188
316
  export interface MsgUpdateGroupMetadataResponseAmino {
189
317
  }
190
318
  export interface MsgUpdateGroupMetadataResponseAminoMsg {
191
319
  type: "cosmos-sdk/MsgUpdateGroupMetadataResponse";
192
320
  value: MsgUpdateGroupMetadataResponseAmino;
193
321
  }
194
- /** MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type. */
322
+ /**
323
+ * MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
324
+ * @name MsgCreateGroupPolicy
325
+ * @package cosmos.group.v1
326
+ * @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
327
+ */
195
328
  export interface MsgCreateGroupPolicy {
196
- /** admin is the account address of the group admin. */
329
+ /**
330
+ * admin is the account address of the group admin.
331
+ */
197
332
  admin: string;
198
- /** group_id is the unique ID of the group. */
333
+ /**
334
+ * group_id is the unique ID of the group.
335
+ */
199
336
  groupId: bigint;
200
- /** metadata is any arbitrary metadata attached to the group policy. */
337
+ /**
338
+ * metadata is any arbitrary metadata attached to the group policy.
339
+ */
201
340
  metadata: string;
202
- /** decision_policy specifies the group policy's decision policy. */
341
+ /**
342
+ * decision_policy specifies the group policy's decision policy.
343
+ */
203
344
  decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
204
345
  }
205
346
  export interface MsgCreateGroupPolicyProtoMsg {
@@ -207,97 +348,174 @@ export interface MsgCreateGroupPolicyProtoMsg {
207
348
  value: Uint8Array;
208
349
  }
209
350
  export type MsgCreateGroupPolicyEncoded = Omit<MsgCreateGroupPolicy, "decisionPolicy"> & {
210
- /** decision_policy specifies the group policy's decision policy. */ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
351
+ /**
352
+ * decision_policy specifies the group policy's decision policy.
353
+ */
354
+ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
211
355
  };
212
- /** MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type. */
356
+ /**
357
+ * MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
358
+ * @name MsgCreateGroupPolicyAmino
359
+ * @package cosmos.group.v1
360
+ * @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
361
+ */
213
362
  export interface MsgCreateGroupPolicyAmino {
214
- /** admin is the account address of the group admin. */
363
+ /**
364
+ * admin is the account address of the group admin.
365
+ */
215
366
  admin: string;
216
- /** group_id is the unique ID of the group. */
367
+ /**
368
+ * group_id is the unique ID of the group.
369
+ */
217
370
  group_id: string;
218
- /** metadata is any arbitrary metadata attached to the group policy. */
371
+ /**
372
+ * metadata is any arbitrary metadata attached to the group policy.
373
+ */
219
374
  metadata: string;
220
- /** decision_policy specifies the group policy's decision policy. */
375
+ /**
376
+ * decision_policy specifies the group policy's decision policy.
377
+ */
221
378
  decision_policy?: AnyAmino;
222
379
  }
223
380
  export interface MsgCreateGroupPolicyAminoMsg {
224
381
  type: "cosmos-sdk/MsgCreateGroupPolicy";
225
382
  value: MsgCreateGroupPolicyAmino;
226
383
  }
227
- /** MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type. */
384
+ /**
385
+ * MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
386
+ * @name MsgCreateGroupPolicyResponse
387
+ * @package cosmos.group.v1
388
+ * @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
389
+ */
228
390
  export interface MsgCreateGroupPolicyResponse {
229
- /** address is the account address of the newly created group policy. */
391
+ /**
392
+ * address is the account address of the newly created group policy.
393
+ */
230
394
  address: string;
231
395
  }
232
396
  export interface MsgCreateGroupPolicyResponseProtoMsg {
233
397
  typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicyResponse";
234
398
  value: Uint8Array;
235
399
  }
236
- /** MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type. */
400
+ /**
401
+ * MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
402
+ * @name MsgCreateGroupPolicyResponseAmino
403
+ * @package cosmos.group.v1
404
+ * @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
405
+ */
237
406
  export interface MsgCreateGroupPolicyResponseAmino {
238
- /** address is the account address of the newly created group policy. */
407
+ /**
408
+ * address is the account address of the newly created group policy.
409
+ */
239
410
  address: string;
240
411
  }
241
412
  export interface MsgCreateGroupPolicyResponseAminoMsg {
242
413
  type: "cosmos-sdk/MsgCreateGroupPolicyResponse";
243
414
  value: MsgCreateGroupPolicyResponseAmino;
244
415
  }
245
- /** MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type. */
416
+ /**
417
+ * MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
418
+ * @name MsgUpdateGroupPolicyAdmin
419
+ * @package cosmos.group.v1
420
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
421
+ */
246
422
  export interface MsgUpdateGroupPolicyAdmin {
247
- /** admin is the account address of the group admin. */
423
+ /**
424
+ * admin is the account address of the group admin.
425
+ */
248
426
  admin: string;
249
- /** group_policy_address is the account address of the group policy. */
427
+ /**
428
+ * group_policy_address is the account address of the group policy.
429
+ */
250
430
  groupPolicyAddress: string;
251
- /** new_admin is the new group policy admin. */
431
+ /**
432
+ * new_admin is the new group policy admin.
433
+ */
252
434
  newAdmin: string;
253
435
  }
254
436
  export interface MsgUpdateGroupPolicyAdminProtoMsg {
255
437
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdmin";
256
438
  value: Uint8Array;
257
439
  }
258
- /** MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type. */
440
+ /**
441
+ * MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
442
+ * @name MsgUpdateGroupPolicyAdminAmino
443
+ * @package cosmos.group.v1
444
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
445
+ */
259
446
  export interface MsgUpdateGroupPolicyAdminAmino {
260
- /** admin is the account address of the group admin. */
447
+ /**
448
+ * admin is the account address of the group admin.
449
+ */
261
450
  admin: string;
262
- /** group_policy_address is the account address of the group policy. */
451
+ /**
452
+ * group_policy_address is the account address of the group policy.
453
+ */
263
454
  group_policy_address: string;
264
- /** new_admin is the new group policy admin. */
455
+ /**
456
+ * new_admin is the new group policy admin.
457
+ */
265
458
  new_admin: string;
266
459
  }
267
460
  export interface MsgUpdateGroupPolicyAdminAminoMsg {
268
461
  type: "cosmos-sdk/MsgUpdateGroupPolicyAdmin";
269
462
  value: MsgUpdateGroupPolicyAdminAmino;
270
463
  }
271
- /** MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type. */
464
+ /**
465
+ * MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
466
+ * @name MsgUpdateGroupPolicyAdminResponse
467
+ * @package cosmos.group.v1
468
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
469
+ */
272
470
  export interface MsgUpdateGroupPolicyAdminResponse {
273
471
  }
274
472
  export interface MsgUpdateGroupPolicyAdminResponseProtoMsg {
275
473
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse";
276
474
  value: Uint8Array;
277
475
  }
278
- /** MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type. */
476
+ /**
477
+ * MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
478
+ * @name MsgUpdateGroupPolicyAdminResponseAmino
479
+ * @package cosmos.group.v1
480
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
481
+ */
279
482
  export interface MsgUpdateGroupPolicyAdminResponseAmino {
280
483
  }
281
484
  export interface MsgUpdateGroupPolicyAdminResponseAminoMsg {
282
485
  type: "cosmos-sdk/MsgUpdateGroupPolicyAdminResponse";
283
486
  value: MsgUpdateGroupPolicyAdminResponseAmino;
284
487
  }
285
- /** MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type. */
488
+ /**
489
+ * MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
490
+ * @name MsgCreateGroupWithPolicy
491
+ * @package cosmos.group.v1
492
+ * @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
493
+ */
286
494
  export interface MsgCreateGroupWithPolicy {
287
- /** admin is the account address of the group and group policy admin. */
495
+ /**
496
+ * admin is the account address of the group and group policy admin.
497
+ */
288
498
  admin: string;
289
- /** members defines the group members. */
499
+ /**
500
+ * members defines the group members.
501
+ */
290
502
  members: MemberRequest[];
291
- /** group_metadata is any arbitrary metadata attached to the group. */
503
+ /**
504
+ * group_metadata is any arbitrary metadata attached to the group.
505
+ */
292
506
  groupMetadata: string;
293
- /** group_policy_metadata is any arbitrary metadata attached to the group policy. */
507
+ /**
508
+ * group_policy_metadata is any arbitrary metadata attached to the group policy.
509
+ */
294
510
  groupPolicyMetadata: string;
295
511
  /**
296
512
  * group_policy_as_admin is a boolean field, if set to true, the group policy account address will be used as group
297
513
  * and group policy admin.
298
514
  */
299
515
  groupPolicyAsAdmin: boolean;
300
- /** decision_policy specifies the group policy's decision policy. */
516
+ /**
517
+ * decision_policy specifies the group policy's decision policy.
518
+ */
301
519
  decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
302
520
  }
303
521
  export interface MsgCreateGroupWithPolicyProtoMsg {
@@ -305,59 +523,106 @@ export interface MsgCreateGroupWithPolicyProtoMsg {
305
523
  value: Uint8Array;
306
524
  }
307
525
  export type MsgCreateGroupWithPolicyEncoded = Omit<MsgCreateGroupWithPolicy, "decisionPolicy"> & {
308
- /** decision_policy specifies the group policy's decision policy. */ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
526
+ /**
527
+ * decision_policy specifies the group policy's decision policy.
528
+ */
529
+ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
309
530
  };
310
- /** MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type. */
531
+ /**
532
+ * MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
533
+ * @name MsgCreateGroupWithPolicyAmino
534
+ * @package cosmos.group.v1
535
+ * @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
536
+ */
311
537
  export interface MsgCreateGroupWithPolicyAmino {
312
- /** admin is the account address of the group and group policy admin. */
538
+ /**
539
+ * admin is the account address of the group and group policy admin.
540
+ */
313
541
  admin: string;
314
- /** members defines the group members. */
542
+ /**
543
+ * members defines the group members.
544
+ */
315
545
  members: MemberRequestAmino[];
316
- /** group_metadata is any arbitrary metadata attached to the group. */
546
+ /**
547
+ * group_metadata is any arbitrary metadata attached to the group.
548
+ */
317
549
  group_metadata: string;
318
- /** group_policy_metadata is any arbitrary metadata attached to the group policy. */
550
+ /**
551
+ * group_policy_metadata is any arbitrary metadata attached to the group policy.
552
+ */
319
553
  group_policy_metadata: string;
320
554
  /**
321
555
  * group_policy_as_admin is a boolean field, if set to true, the group policy account address will be used as group
322
556
  * and group policy admin.
323
557
  */
324
558
  group_policy_as_admin: boolean;
325
- /** decision_policy specifies the group policy's decision policy. */
559
+ /**
560
+ * decision_policy specifies the group policy's decision policy.
561
+ */
326
562
  decision_policy?: AnyAmino;
327
563
  }
328
564
  export interface MsgCreateGroupWithPolicyAminoMsg {
329
565
  type: "cosmos-sdk/MsgCreateGroupWithPolicy";
330
566
  value: MsgCreateGroupWithPolicyAmino;
331
567
  }
332
- /** MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type. */
568
+ /**
569
+ * MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
570
+ * @name MsgCreateGroupWithPolicyResponse
571
+ * @package cosmos.group.v1
572
+ * @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
573
+ */
333
574
  export interface MsgCreateGroupWithPolicyResponse {
334
- /** group_id is the unique ID of the newly created group with policy. */
575
+ /**
576
+ * group_id is the unique ID of the newly created group with policy.
577
+ */
335
578
  groupId: bigint;
336
- /** group_policy_address is the account address of the newly created group policy. */
579
+ /**
580
+ * group_policy_address is the account address of the newly created group policy.
581
+ */
337
582
  groupPolicyAddress: string;
338
583
  }
339
584
  export interface MsgCreateGroupWithPolicyResponseProtoMsg {
340
585
  typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicyResponse";
341
586
  value: Uint8Array;
342
587
  }
343
- /** MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type. */
588
+ /**
589
+ * MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
590
+ * @name MsgCreateGroupWithPolicyResponseAmino
591
+ * @package cosmos.group.v1
592
+ * @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
593
+ */
344
594
  export interface MsgCreateGroupWithPolicyResponseAmino {
345
- /** group_id is the unique ID of the newly created group with policy. */
595
+ /**
596
+ * group_id is the unique ID of the newly created group with policy.
597
+ */
346
598
  group_id: string;
347
- /** group_policy_address is the account address of the newly created group policy. */
599
+ /**
600
+ * group_policy_address is the account address of the newly created group policy.
601
+ */
348
602
  group_policy_address: string;
349
603
  }
350
604
  export interface MsgCreateGroupWithPolicyResponseAminoMsg {
351
605
  type: "cosmos-sdk/MsgCreateGroupWithPolicyResponse";
352
606
  value: MsgCreateGroupWithPolicyResponseAmino;
353
607
  }
354
- /** MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type. */
608
+ /**
609
+ * MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
610
+ * @name MsgUpdateGroupPolicyDecisionPolicy
611
+ * @package cosmos.group.v1
612
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
613
+ */
355
614
  export interface MsgUpdateGroupPolicyDecisionPolicy {
356
- /** admin is the account address of the group admin. */
615
+ /**
616
+ * admin is the account address of the group admin.
617
+ */
357
618
  admin: string;
358
- /** group_policy_address is the account address of group policy. */
619
+ /**
620
+ * group_policy_address is the account address of group policy.
621
+ */
359
622
  groupPolicyAddress: string;
360
- /** decision_policy is the updated group policy's decision policy. */
623
+ /**
624
+ * decision_policy is the updated group policy's decision policy.
625
+ */
361
626
  decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
362
627
  }
363
628
  export interface MsgUpdateGroupPolicyDecisionPolicyProtoMsg {
@@ -365,87 +630,154 @@ export interface MsgUpdateGroupPolicyDecisionPolicyProtoMsg {
365
630
  value: Uint8Array;
366
631
  }
367
632
  export type MsgUpdateGroupPolicyDecisionPolicyEncoded = Omit<MsgUpdateGroupPolicyDecisionPolicy, "decisionPolicy"> & {
368
- /** decision_policy is the updated group policy's decision policy. */ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
633
+ /**
634
+ * decision_policy is the updated group policy's decision policy.
635
+ */
636
+ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
369
637
  };
370
- /** MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type. */
638
+ /**
639
+ * MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
640
+ * @name MsgUpdateGroupPolicyDecisionPolicyAmino
641
+ * @package cosmos.group.v1
642
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
643
+ */
371
644
  export interface MsgUpdateGroupPolicyDecisionPolicyAmino {
372
- /** admin is the account address of the group admin. */
645
+ /**
646
+ * admin is the account address of the group admin.
647
+ */
373
648
  admin: string;
374
- /** group_policy_address is the account address of group policy. */
649
+ /**
650
+ * group_policy_address is the account address of group policy.
651
+ */
375
652
  group_policy_address: string;
376
- /** decision_policy is the updated group policy's decision policy. */
653
+ /**
654
+ * decision_policy is the updated group policy's decision policy.
655
+ */
377
656
  decision_policy?: AnyAmino;
378
657
  }
379
658
  export interface MsgUpdateGroupPolicyDecisionPolicyAminoMsg {
380
659
  type: "cosmos-sdk/MsgUpdateGroupDecisionPolicy";
381
660
  value: MsgUpdateGroupPolicyDecisionPolicyAmino;
382
661
  }
383
- /** MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type. */
662
+ /**
663
+ * MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
664
+ * @name MsgUpdateGroupPolicyDecisionPolicyResponse
665
+ * @package cosmos.group.v1
666
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
667
+ */
384
668
  export interface MsgUpdateGroupPolicyDecisionPolicyResponse {
385
669
  }
386
670
  export interface MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg {
387
671
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse";
388
672
  value: Uint8Array;
389
673
  }
390
- /** MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type. */
674
+ /**
675
+ * MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
676
+ * @name MsgUpdateGroupPolicyDecisionPolicyResponseAmino
677
+ * @package cosmos.group.v1
678
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
679
+ */
391
680
  export interface MsgUpdateGroupPolicyDecisionPolicyResponseAmino {
392
681
  }
393
682
  export interface MsgUpdateGroupPolicyDecisionPolicyResponseAminoMsg {
394
683
  type: "cosmos-sdk/MsgUpdateGroupPolicyDecisionPolicyResponse";
395
684
  value: MsgUpdateGroupPolicyDecisionPolicyResponseAmino;
396
685
  }
397
- /** MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type. */
686
+ /**
687
+ * MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
688
+ * @name MsgUpdateGroupPolicyMetadata
689
+ * @package cosmos.group.v1
690
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
691
+ */
398
692
  export interface MsgUpdateGroupPolicyMetadata {
399
- /** admin is the account address of the group admin. */
693
+ /**
694
+ * admin is the account address of the group admin.
695
+ */
400
696
  admin: string;
401
- /** group_policy_address is the account address of group policy. */
697
+ /**
698
+ * group_policy_address is the account address of group policy.
699
+ */
402
700
  groupPolicyAddress: string;
403
- /** metadata is the group policy metadata to be updated. */
701
+ /**
702
+ * metadata is the group policy metadata to be updated.
703
+ */
404
704
  metadata: string;
405
705
  }
406
706
  export interface MsgUpdateGroupPolicyMetadataProtoMsg {
407
707
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadata";
408
708
  value: Uint8Array;
409
709
  }
410
- /** MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type. */
710
+ /**
711
+ * MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
712
+ * @name MsgUpdateGroupPolicyMetadataAmino
713
+ * @package cosmos.group.v1
714
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
715
+ */
411
716
  export interface MsgUpdateGroupPolicyMetadataAmino {
412
- /** admin is the account address of the group admin. */
717
+ /**
718
+ * admin is the account address of the group admin.
719
+ */
413
720
  admin: string;
414
- /** group_policy_address is the account address of group policy. */
721
+ /**
722
+ * group_policy_address is the account address of group policy.
723
+ */
415
724
  group_policy_address: string;
416
- /** metadata is the group policy metadata to be updated. */
725
+ /**
726
+ * metadata is the group policy metadata to be updated.
727
+ */
417
728
  metadata: string;
418
729
  }
419
730
  export interface MsgUpdateGroupPolicyMetadataAminoMsg {
420
731
  type: "cosmos-sdk/MsgUpdateGroupPolicyMetadata";
421
732
  value: MsgUpdateGroupPolicyMetadataAmino;
422
733
  }
423
- /** MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type. */
734
+ /**
735
+ * MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
736
+ * @name MsgUpdateGroupPolicyMetadataResponse
737
+ * @package cosmos.group.v1
738
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
739
+ */
424
740
  export interface MsgUpdateGroupPolicyMetadataResponse {
425
741
  }
426
742
  export interface MsgUpdateGroupPolicyMetadataResponseProtoMsg {
427
743
  typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse";
428
744
  value: Uint8Array;
429
745
  }
430
- /** MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type. */
746
+ /**
747
+ * MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
748
+ * @name MsgUpdateGroupPolicyMetadataResponseAmino
749
+ * @package cosmos.group.v1
750
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
751
+ */
431
752
  export interface MsgUpdateGroupPolicyMetadataResponseAmino {
432
753
  }
433
754
  export interface MsgUpdateGroupPolicyMetadataResponseAminoMsg {
434
755
  type: "cosmos-sdk/MsgUpdateGroupPolicyMetadataResponse";
435
756
  value: MsgUpdateGroupPolicyMetadataResponseAmino;
436
757
  }
437
- /** MsgSubmitProposal is the Msg/SubmitProposal request type. */
758
+ /**
759
+ * MsgSubmitProposal is the Msg/SubmitProposal request type.
760
+ * @name MsgSubmitProposal
761
+ * @package cosmos.group.v1
762
+ * @see proto type: cosmos.group.v1.MsgSubmitProposal
763
+ */
438
764
  export interface MsgSubmitProposal {
439
- /** group_policy_address is the account address of group policy. */
765
+ /**
766
+ * group_policy_address is the account address of group policy.
767
+ */
440
768
  groupPolicyAddress: string;
441
769
  /**
442
770
  * proposers are the account addresses of the proposers.
443
771
  * Proposers signatures will be counted as yes votes.
444
772
  */
445
773
  proposers: string[];
446
- /** metadata is any arbitrary metadata attached to the proposal. */
774
+ /**
775
+ * metadata is any arbitrary metadata attached to the proposal.
776
+ */
447
777
  metadata: string;
448
- /** messages is a list of `sdk.Msg`s that will be executed if the proposal passes. */
778
+ /**
779
+ * messages is a list of `sdk.Msg`s that will be executed if the proposal passes.
780
+ */
449
781
  messages: Any[];
450
782
  /**
451
783
  * exec defines the mode of execution of the proposal,
@@ -470,18 +802,29 @@ export interface MsgSubmitProposalProtoMsg {
470
802
  typeUrl: "/cosmos.group.v1.MsgSubmitProposal";
471
803
  value: Uint8Array;
472
804
  }
473
- /** MsgSubmitProposal is the Msg/SubmitProposal request type. */
805
+ /**
806
+ * MsgSubmitProposal is the Msg/SubmitProposal request type.
807
+ * @name MsgSubmitProposalAmino
808
+ * @package cosmos.group.v1
809
+ * @see proto type: cosmos.group.v1.MsgSubmitProposal
810
+ */
474
811
  export interface MsgSubmitProposalAmino {
475
- /** group_policy_address is the account address of group policy. */
812
+ /**
813
+ * group_policy_address is the account address of group policy.
814
+ */
476
815
  group_policy_address: string;
477
816
  /**
478
817
  * proposers are the account addresses of the proposers.
479
818
  * Proposers signatures will be counted as yes votes.
480
819
  */
481
820
  proposers: string[];
482
- /** metadata is any arbitrary metadata attached to the proposal. */
821
+ /**
822
+ * metadata is any arbitrary metadata attached to the proposal.
823
+ */
483
824
  metadata: string;
484
- /** messages is a list of `sdk.Msg`s that will be executed if the proposal passes. */
825
+ /**
826
+ * messages is a list of `sdk.Msg`s that will be executed if the proposal passes.
827
+ */
485
828
  messages: AnyAmino[];
486
829
  /**
487
830
  * exec defines the mode of execution of the proposal,
@@ -506,69 +849,124 @@ export interface MsgSubmitProposalAminoMsg {
506
849
  type: "cosmos-sdk/group/MsgSubmitProposal";
507
850
  value: MsgSubmitProposalAmino;
508
851
  }
509
- /** MsgSubmitProposalResponse is the Msg/SubmitProposal response type. */
852
+ /**
853
+ * MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
854
+ * @name MsgSubmitProposalResponse
855
+ * @package cosmos.group.v1
856
+ * @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
857
+ */
510
858
  export interface MsgSubmitProposalResponse {
511
- /** proposal is the unique ID of the proposal. */
859
+ /**
860
+ * proposal is the unique ID of the proposal.
861
+ */
512
862
  proposalId: bigint;
513
863
  }
514
864
  export interface MsgSubmitProposalResponseProtoMsg {
515
865
  typeUrl: "/cosmos.group.v1.MsgSubmitProposalResponse";
516
866
  value: Uint8Array;
517
867
  }
518
- /** MsgSubmitProposalResponse is the Msg/SubmitProposal response type. */
868
+ /**
869
+ * MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
870
+ * @name MsgSubmitProposalResponseAmino
871
+ * @package cosmos.group.v1
872
+ * @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
873
+ */
519
874
  export interface MsgSubmitProposalResponseAmino {
520
- /** proposal is the unique ID of the proposal. */
875
+ /**
876
+ * proposal is the unique ID of the proposal.
877
+ */
521
878
  proposal_id: string;
522
879
  }
523
880
  export interface MsgSubmitProposalResponseAminoMsg {
524
881
  type: "cosmos-sdk/MsgSubmitProposalResponse";
525
882
  value: MsgSubmitProposalResponseAmino;
526
883
  }
527
- /** MsgWithdrawProposal is the Msg/WithdrawProposal request type. */
884
+ /**
885
+ * MsgWithdrawProposal is the Msg/WithdrawProposal request type.
886
+ * @name MsgWithdrawProposal
887
+ * @package cosmos.group.v1
888
+ * @see proto type: cosmos.group.v1.MsgWithdrawProposal
889
+ */
528
890
  export interface MsgWithdrawProposal {
529
- /** proposal is the unique ID of the proposal. */
891
+ /**
892
+ * proposal is the unique ID of the proposal.
893
+ */
530
894
  proposalId: bigint;
531
- /** address is the admin of the group policy or one of the proposer of the proposal. */
895
+ /**
896
+ * address is the admin of the group policy or one of the proposer of the proposal.
897
+ */
532
898
  address: string;
533
899
  }
534
900
  export interface MsgWithdrawProposalProtoMsg {
535
901
  typeUrl: "/cosmos.group.v1.MsgWithdrawProposal";
536
902
  value: Uint8Array;
537
903
  }
538
- /** MsgWithdrawProposal is the Msg/WithdrawProposal request type. */
904
+ /**
905
+ * MsgWithdrawProposal is the Msg/WithdrawProposal request type.
906
+ * @name MsgWithdrawProposalAmino
907
+ * @package cosmos.group.v1
908
+ * @see proto type: cosmos.group.v1.MsgWithdrawProposal
909
+ */
539
910
  export interface MsgWithdrawProposalAmino {
540
- /** proposal is the unique ID of the proposal. */
911
+ /**
912
+ * proposal is the unique ID of the proposal.
913
+ */
541
914
  proposal_id: string;
542
- /** address is the admin of the group policy or one of the proposer of the proposal. */
915
+ /**
916
+ * address is the admin of the group policy or one of the proposer of the proposal.
917
+ */
543
918
  address: string;
544
919
  }
545
920
  export interface MsgWithdrawProposalAminoMsg {
546
921
  type: "cosmos-sdk/group/MsgWithdrawProposal";
547
922
  value: MsgWithdrawProposalAmino;
548
923
  }
549
- /** MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type. */
924
+ /**
925
+ * MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
926
+ * @name MsgWithdrawProposalResponse
927
+ * @package cosmos.group.v1
928
+ * @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
929
+ */
550
930
  export interface MsgWithdrawProposalResponse {
551
931
  }
552
932
  export interface MsgWithdrawProposalResponseProtoMsg {
553
933
  typeUrl: "/cosmos.group.v1.MsgWithdrawProposalResponse";
554
934
  value: Uint8Array;
555
935
  }
556
- /** MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type. */
936
+ /**
937
+ * MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
938
+ * @name MsgWithdrawProposalResponseAmino
939
+ * @package cosmos.group.v1
940
+ * @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
941
+ */
557
942
  export interface MsgWithdrawProposalResponseAmino {
558
943
  }
559
944
  export interface MsgWithdrawProposalResponseAminoMsg {
560
945
  type: "cosmos-sdk/MsgWithdrawProposalResponse";
561
946
  value: MsgWithdrawProposalResponseAmino;
562
947
  }
563
- /** MsgVote is the Msg/Vote request type. */
948
+ /**
949
+ * MsgVote is the Msg/Vote request type.
950
+ * @name MsgVote
951
+ * @package cosmos.group.v1
952
+ * @see proto type: cosmos.group.v1.MsgVote
953
+ */
564
954
  export interface MsgVote {
565
- /** proposal is the unique ID of the proposal. */
955
+ /**
956
+ * proposal is the unique ID of the proposal.
957
+ */
566
958
  proposalId: bigint;
567
- /** voter is the voter account address. */
959
+ /**
960
+ * voter is the voter account address.
961
+ */
568
962
  voter: string;
569
- /** option is the voter's choice on the proposal. */
963
+ /**
964
+ * option is the voter's choice on the proposal.
965
+ */
570
966
  option: VoteOption;
571
- /** metadata is any arbitrary metadata attached to the vote. */
967
+ /**
968
+ * metadata is any arbitrary metadata attached to the vote.
969
+ */
572
970
  metadata: string;
573
971
  /**
574
972
  * exec defines whether the proposal should be executed
@@ -580,15 +978,28 @@ export interface MsgVoteProtoMsg {
580
978
  typeUrl: "/cosmos.group.v1.MsgVote";
581
979
  value: Uint8Array;
582
980
  }
583
- /** MsgVote is the Msg/Vote request type. */
981
+ /**
982
+ * MsgVote is the Msg/Vote request type.
983
+ * @name MsgVoteAmino
984
+ * @package cosmos.group.v1
985
+ * @see proto type: cosmos.group.v1.MsgVote
986
+ */
584
987
  export interface MsgVoteAmino {
585
- /** proposal is the unique ID of the proposal. */
988
+ /**
989
+ * proposal is the unique ID of the proposal.
990
+ */
586
991
  proposal_id: string;
587
- /** voter is the voter account address. */
992
+ /**
993
+ * voter is the voter account address.
994
+ */
588
995
  voter: string;
589
- /** option is the voter's choice on the proposal. */
996
+ /**
997
+ * option is the voter's choice on the proposal.
998
+ */
590
999
  option: VoteOption;
591
- /** metadata is any arbitrary metadata attached to the vote. */
1000
+ /**
1001
+ * metadata is any arbitrary metadata attached to the vote.
1002
+ */
592
1003
  metadata: string;
593
1004
  /**
594
1005
  * exec defines whether the proposal should be executed
@@ -600,96 +1011,172 @@ export interface MsgVoteAminoMsg {
600
1011
  type: "cosmos-sdk/group/MsgVote";
601
1012
  value: MsgVoteAmino;
602
1013
  }
603
- /** MsgVoteResponse is the Msg/Vote response type. */
1014
+ /**
1015
+ * MsgVoteResponse is the Msg/Vote response type.
1016
+ * @name MsgVoteResponse
1017
+ * @package cosmos.group.v1
1018
+ * @see proto type: cosmos.group.v1.MsgVoteResponse
1019
+ */
604
1020
  export interface MsgVoteResponse {
605
1021
  }
606
1022
  export interface MsgVoteResponseProtoMsg {
607
1023
  typeUrl: "/cosmos.group.v1.MsgVoteResponse";
608
1024
  value: Uint8Array;
609
1025
  }
610
- /** MsgVoteResponse is the Msg/Vote response type. */
1026
+ /**
1027
+ * MsgVoteResponse is the Msg/Vote response type.
1028
+ * @name MsgVoteResponseAmino
1029
+ * @package cosmos.group.v1
1030
+ * @see proto type: cosmos.group.v1.MsgVoteResponse
1031
+ */
611
1032
  export interface MsgVoteResponseAmino {
612
1033
  }
613
1034
  export interface MsgVoteResponseAminoMsg {
614
1035
  type: "cosmos-sdk/MsgVoteResponse";
615
1036
  value: MsgVoteResponseAmino;
616
1037
  }
617
- /** MsgExec is the Msg/Exec request type. */
1038
+ /**
1039
+ * MsgExec is the Msg/Exec request type.
1040
+ * @name MsgExec
1041
+ * @package cosmos.group.v1
1042
+ * @see proto type: cosmos.group.v1.MsgExec
1043
+ */
618
1044
  export interface MsgExec {
619
- /** proposal is the unique ID of the proposal. */
1045
+ /**
1046
+ * proposal is the unique ID of the proposal.
1047
+ */
620
1048
  proposalId: bigint;
621
- /** executor is the account address used to execute the proposal. */
1049
+ /**
1050
+ * executor is the account address used to execute the proposal.
1051
+ */
622
1052
  executor: string;
623
1053
  }
624
1054
  export interface MsgExecProtoMsg {
625
1055
  typeUrl: "/cosmos.group.v1.MsgExec";
626
1056
  value: Uint8Array;
627
1057
  }
628
- /** MsgExec is the Msg/Exec request type. */
1058
+ /**
1059
+ * MsgExec is the Msg/Exec request type.
1060
+ * @name MsgExecAmino
1061
+ * @package cosmos.group.v1
1062
+ * @see proto type: cosmos.group.v1.MsgExec
1063
+ */
629
1064
  export interface MsgExecAmino {
630
- /** proposal is the unique ID of the proposal. */
1065
+ /**
1066
+ * proposal is the unique ID of the proposal.
1067
+ */
631
1068
  proposal_id: string;
632
- /** executor is the account address used to execute the proposal. */
1069
+ /**
1070
+ * executor is the account address used to execute the proposal.
1071
+ */
633
1072
  executor: string;
634
1073
  }
635
1074
  export interface MsgExecAminoMsg {
636
1075
  type: "cosmos-sdk/group/MsgExec";
637
1076
  value: MsgExecAmino;
638
1077
  }
639
- /** MsgExecResponse is the Msg/Exec request type. */
1078
+ /**
1079
+ * MsgExecResponse is the Msg/Exec request type.
1080
+ * @name MsgExecResponse
1081
+ * @package cosmos.group.v1
1082
+ * @see proto type: cosmos.group.v1.MsgExecResponse
1083
+ */
640
1084
  export interface MsgExecResponse {
641
- /** result is the final result of the proposal execution. */
1085
+ /**
1086
+ * result is the final result of the proposal execution.
1087
+ */
642
1088
  result: ProposalExecutorResult;
643
1089
  }
644
1090
  export interface MsgExecResponseProtoMsg {
645
1091
  typeUrl: "/cosmos.group.v1.MsgExecResponse";
646
1092
  value: Uint8Array;
647
1093
  }
648
- /** MsgExecResponse is the Msg/Exec request type. */
1094
+ /**
1095
+ * MsgExecResponse is the Msg/Exec request type.
1096
+ * @name MsgExecResponseAmino
1097
+ * @package cosmos.group.v1
1098
+ * @see proto type: cosmos.group.v1.MsgExecResponse
1099
+ */
649
1100
  export interface MsgExecResponseAmino {
650
- /** result is the final result of the proposal execution. */
1101
+ /**
1102
+ * result is the final result of the proposal execution.
1103
+ */
651
1104
  result: ProposalExecutorResult;
652
1105
  }
653
1106
  export interface MsgExecResponseAminoMsg {
654
1107
  type: "cosmos-sdk/MsgExecResponse";
655
1108
  value: MsgExecResponseAmino;
656
1109
  }
657
- /** MsgLeaveGroup is the Msg/LeaveGroup request type. */
1110
+ /**
1111
+ * MsgLeaveGroup is the Msg/LeaveGroup request type.
1112
+ * @name MsgLeaveGroup
1113
+ * @package cosmos.group.v1
1114
+ * @see proto type: cosmos.group.v1.MsgLeaveGroup
1115
+ */
658
1116
  export interface MsgLeaveGroup {
659
- /** address is the account address of the group member. */
1117
+ /**
1118
+ * address is the account address of the group member.
1119
+ */
660
1120
  address: string;
661
- /** group_id is the unique ID of the group. */
1121
+ /**
1122
+ * group_id is the unique ID of the group.
1123
+ */
662
1124
  groupId: bigint;
663
1125
  }
664
1126
  export interface MsgLeaveGroupProtoMsg {
665
1127
  typeUrl: "/cosmos.group.v1.MsgLeaveGroup";
666
1128
  value: Uint8Array;
667
1129
  }
668
- /** MsgLeaveGroup is the Msg/LeaveGroup request type. */
1130
+ /**
1131
+ * MsgLeaveGroup is the Msg/LeaveGroup request type.
1132
+ * @name MsgLeaveGroupAmino
1133
+ * @package cosmos.group.v1
1134
+ * @see proto type: cosmos.group.v1.MsgLeaveGroup
1135
+ */
669
1136
  export interface MsgLeaveGroupAmino {
670
- /** address is the account address of the group member. */
1137
+ /**
1138
+ * address is the account address of the group member.
1139
+ */
671
1140
  address: string;
672
- /** group_id is the unique ID of the group. */
1141
+ /**
1142
+ * group_id is the unique ID of the group.
1143
+ */
673
1144
  group_id: string;
674
1145
  }
675
1146
  export interface MsgLeaveGroupAminoMsg {
676
1147
  type: "cosmos-sdk/group/MsgLeaveGroup";
677
1148
  value: MsgLeaveGroupAmino;
678
1149
  }
679
- /** MsgLeaveGroupResponse is the Msg/LeaveGroup response type. */
1150
+ /**
1151
+ * MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
1152
+ * @name MsgLeaveGroupResponse
1153
+ * @package cosmos.group.v1
1154
+ * @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
1155
+ */
680
1156
  export interface MsgLeaveGroupResponse {
681
1157
  }
682
1158
  export interface MsgLeaveGroupResponseProtoMsg {
683
1159
  typeUrl: "/cosmos.group.v1.MsgLeaveGroupResponse";
684
1160
  value: Uint8Array;
685
1161
  }
686
- /** MsgLeaveGroupResponse is the Msg/LeaveGroup response type. */
1162
+ /**
1163
+ * MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
1164
+ * @name MsgLeaveGroupResponseAmino
1165
+ * @package cosmos.group.v1
1166
+ * @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
1167
+ */
687
1168
  export interface MsgLeaveGroupResponseAmino {
688
1169
  }
689
1170
  export interface MsgLeaveGroupResponseAminoMsg {
690
1171
  type: "cosmos-sdk/MsgLeaveGroupResponse";
691
1172
  value: MsgLeaveGroupResponseAmino;
692
1173
  }
1174
+ /**
1175
+ * MsgCreateGroup is the Msg/CreateGroup request type.
1176
+ * @name MsgCreateGroup
1177
+ * @package cosmos.group.v1
1178
+ * @see proto type: cosmos.group.v1.MsgCreateGroup
1179
+ */
693
1180
  export declare const MsgCreateGroup: {
694
1181
  typeUrl: string;
695
1182
  aminoType: string;
@@ -707,6 +1194,12 @@ export declare const MsgCreateGroup: {
707
1194
  toProtoMsg(message: MsgCreateGroup): MsgCreateGroupProtoMsg;
708
1195
  registerTypeUrl(): void;
709
1196
  };
1197
+ /**
1198
+ * MsgCreateGroupResponse is the Msg/CreateGroup response type.
1199
+ * @name MsgCreateGroupResponse
1200
+ * @package cosmos.group.v1
1201
+ * @see proto type: cosmos.group.v1.MsgCreateGroupResponse
1202
+ */
710
1203
  export declare const MsgCreateGroupResponse: {
711
1204
  typeUrl: string;
712
1205
  aminoType: string;
@@ -724,6 +1217,12 @@ export declare const MsgCreateGroupResponse: {
724
1217
  toProtoMsg(message: MsgCreateGroupResponse): MsgCreateGroupResponseProtoMsg;
725
1218
  registerTypeUrl(): void;
726
1219
  };
1220
+ /**
1221
+ * MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type.
1222
+ * @name MsgUpdateGroupMembers
1223
+ * @package cosmos.group.v1
1224
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMembers
1225
+ */
727
1226
  export declare const MsgUpdateGroupMembers: {
728
1227
  typeUrl: string;
729
1228
  aminoType: string;
@@ -741,6 +1240,12 @@ export declare const MsgUpdateGroupMembers: {
741
1240
  toProtoMsg(message: MsgUpdateGroupMembers): MsgUpdateGroupMembersProtoMsg;
742
1241
  registerTypeUrl(): void;
743
1242
  };
1243
+ /**
1244
+ * MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type.
1245
+ * @name MsgUpdateGroupMembersResponse
1246
+ * @package cosmos.group.v1
1247
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMembersResponse
1248
+ */
744
1249
  export declare const MsgUpdateGroupMembersResponse: {
745
1250
  typeUrl: string;
746
1251
  aminoType: string;
@@ -758,6 +1263,12 @@ export declare const MsgUpdateGroupMembersResponse: {
758
1263
  toProtoMsg(message: MsgUpdateGroupMembersResponse): MsgUpdateGroupMembersResponseProtoMsg;
759
1264
  registerTypeUrl(): void;
760
1265
  };
1266
+ /**
1267
+ * MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type.
1268
+ * @name MsgUpdateGroupAdmin
1269
+ * @package cosmos.group.v1
1270
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupAdmin
1271
+ */
761
1272
  export declare const MsgUpdateGroupAdmin: {
762
1273
  typeUrl: string;
763
1274
  aminoType: string;
@@ -775,6 +1286,12 @@ export declare const MsgUpdateGroupAdmin: {
775
1286
  toProtoMsg(message: MsgUpdateGroupAdmin): MsgUpdateGroupAdminProtoMsg;
776
1287
  registerTypeUrl(): void;
777
1288
  };
1289
+ /**
1290
+ * MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type.
1291
+ * @name MsgUpdateGroupAdminResponse
1292
+ * @package cosmos.group.v1
1293
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupAdminResponse
1294
+ */
778
1295
  export declare const MsgUpdateGroupAdminResponse: {
779
1296
  typeUrl: string;
780
1297
  aminoType: string;
@@ -792,6 +1309,12 @@ export declare const MsgUpdateGroupAdminResponse: {
792
1309
  toProtoMsg(message: MsgUpdateGroupAdminResponse): MsgUpdateGroupAdminResponseProtoMsg;
793
1310
  registerTypeUrl(): void;
794
1311
  };
1312
+ /**
1313
+ * MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type.
1314
+ * @name MsgUpdateGroupMetadata
1315
+ * @package cosmos.group.v1
1316
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMetadata
1317
+ */
795
1318
  export declare const MsgUpdateGroupMetadata: {
796
1319
  typeUrl: string;
797
1320
  aminoType: string;
@@ -809,6 +1332,12 @@ export declare const MsgUpdateGroupMetadata: {
809
1332
  toProtoMsg(message: MsgUpdateGroupMetadata): MsgUpdateGroupMetadataProtoMsg;
810
1333
  registerTypeUrl(): void;
811
1334
  };
1335
+ /**
1336
+ * MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type.
1337
+ * @name MsgUpdateGroupMetadataResponse
1338
+ * @package cosmos.group.v1
1339
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupMetadataResponse
1340
+ */
812
1341
  export declare const MsgUpdateGroupMetadataResponse: {
813
1342
  typeUrl: string;
814
1343
  aminoType: string;
@@ -826,6 +1355,12 @@ export declare const MsgUpdateGroupMetadataResponse: {
826
1355
  toProtoMsg(message: MsgUpdateGroupMetadataResponse): MsgUpdateGroupMetadataResponseProtoMsg;
827
1356
  registerTypeUrl(): void;
828
1357
  };
1358
+ /**
1359
+ * MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type.
1360
+ * @name MsgCreateGroupPolicy
1361
+ * @package cosmos.group.v1
1362
+ * @see proto type: cosmos.group.v1.MsgCreateGroupPolicy
1363
+ */
829
1364
  export declare const MsgCreateGroupPolicy: {
830
1365
  typeUrl: string;
831
1366
  aminoType: string;
@@ -843,6 +1378,12 @@ export declare const MsgCreateGroupPolicy: {
843
1378
  toProtoMsg(message: MsgCreateGroupPolicy): MsgCreateGroupPolicyProtoMsg;
844
1379
  registerTypeUrl(): void;
845
1380
  };
1381
+ /**
1382
+ * MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type.
1383
+ * @name MsgCreateGroupPolicyResponse
1384
+ * @package cosmos.group.v1
1385
+ * @see proto type: cosmos.group.v1.MsgCreateGroupPolicyResponse
1386
+ */
846
1387
  export declare const MsgCreateGroupPolicyResponse: {
847
1388
  typeUrl: string;
848
1389
  aminoType: string;
@@ -860,6 +1401,12 @@ export declare const MsgCreateGroupPolicyResponse: {
860
1401
  toProtoMsg(message: MsgCreateGroupPolicyResponse): MsgCreateGroupPolicyResponseProtoMsg;
861
1402
  registerTypeUrl(): void;
862
1403
  };
1404
+ /**
1405
+ * MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type.
1406
+ * @name MsgUpdateGroupPolicyAdmin
1407
+ * @package cosmos.group.v1
1408
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdmin
1409
+ */
863
1410
  export declare const MsgUpdateGroupPolicyAdmin: {
864
1411
  typeUrl: string;
865
1412
  aminoType: string;
@@ -877,6 +1424,12 @@ export declare const MsgUpdateGroupPolicyAdmin: {
877
1424
  toProtoMsg(message: MsgUpdateGroupPolicyAdmin): MsgUpdateGroupPolicyAdminProtoMsg;
878
1425
  registerTypeUrl(): void;
879
1426
  };
1427
+ /**
1428
+ * MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type.
1429
+ * @name MsgUpdateGroupPolicyAdminResponse
1430
+ * @package cosmos.group.v1
1431
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse
1432
+ */
880
1433
  export declare const MsgUpdateGroupPolicyAdminResponse: {
881
1434
  typeUrl: string;
882
1435
  aminoType: string;
@@ -894,6 +1447,12 @@ export declare const MsgUpdateGroupPolicyAdminResponse: {
894
1447
  toProtoMsg(message: MsgUpdateGroupPolicyAdminResponse): MsgUpdateGroupPolicyAdminResponseProtoMsg;
895
1448
  registerTypeUrl(): void;
896
1449
  };
1450
+ /**
1451
+ * MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type.
1452
+ * @name MsgCreateGroupWithPolicy
1453
+ * @package cosmos.group.v1
1454
+ * @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicy
1455
+ */
897
1456
  export declare const MsgCreateGroupWithPolicy: {
898
1457
  typeUrl: string;
899
1458
  aminoType: string;
@@ -911,6 +1470,12 @@ export declare const MsgCreateGroupWithPolicy: {
911
1470
  toProtoMsg(message: MsgCreateGroupWithPolicy): MsgCreateGroupWithPolicyProtoMsg;
912
1471
  registerTypeUrl(): void;
913
1472
  };
1473
+ /**
1474
+ * MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type.
1475
+ * @name MsgCreateGroupWithPolicyResponse
1476
+ * @package cosmos.group.v1
1477
+ * @see proto type: cosmos.group.v1.MsgCreateGroupWithPolicyResponse
1478
+ */
914
1479
  export declare const MsgCreateGroupWithPolicyResponse: {
915
1480
  typeUrl: string;
916
1481
  aminoType: string;
@@ -928,6 +1493,12 @@ export declare const MsgCreateGroupWithPolicyResponse: {
928
1493
  toProtoMsg(message: MsgCreateGroupWithPolicyResponse): MsgCreateGroupWithPolicyResponseProtoMsg;
929
1494
  registerTypeUrl(): void;
930
1495
  };
1496
+ /**
1497
+ * MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type.
1498
+ * @name MsgUpdateGroupPolicyDecisionPolicy
1499
+ * @package cosmos.group.v1
1500
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy
1501
+ */
931
1502
  export declare const MsgUpdateGroupPolicyDecisionPolicy: {
932
1503
  typeUrl: string;
933
1504
  aminoType: string;
@@ -945,6 +1516,12 @@ export declare const MsgUpdateGroupPolicyDecisionPolicy: {
945
1516
  toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicy): MsgUpdateGroupPolicyDecisionPolicyProtoMsg;
946
1517
  registerTypeUrl(): void;
947
1518
  };
1519
+ /**
1520
+ * MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type.
1521
+ * @name MsgUpdateGroupPolicyDecisionPolicyResponse
1522
+ * @package cosmos.group.v1
1523
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse
1524
+ */
948
1525
  export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: {
949
1526
  typeUrl: string;
950
1527
  aminoType: string;
@@ -962,6 +1539,12 @@ export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: {
962
1539
  toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicyResponse): MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg;
963
1540
  registerTypeUrl(): void;
964
1541
  };
1542
+ /**
1543
+ * MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type.
1544
+ * @name MsgUpdateGroupPolicyMetadata
1545
+ * @package cosmos.group.v1
1546
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadata
1547
+ */
965
1548
  export declare const MsgUpdateGroupPolicyMetadata: {
966
1549
  typeUrl: string;
967
1550
  aminoType: string;
@@ -979,6 +1562,12 @@ export declare const MsgUpdateGroupPolicyMetadata: {
979
1562
  toProtoMsg(message: MsgUpdateGroupPolicyMetadata): MsgUpdateGroupPolicyMetadataProtoMsg;
980
1563
  registerTypeUrl(): void;
981
1564
  };
1565
+ /**
1566
+ * MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type.
1567
+ * @name MsgUpdateGroupPolicyMetadataResponse
1568
+ * @package cosmos.group.v1
1569
+ * @see proto type: cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse
1570
+ */
982
1571
  export declare const MsgUpdateGroupPolicyMetadataResponse: {
983
1572
  typeUrl: string;
984
1573
  aminoType: string;
@@ -996,6 +1585,12 @@ export declare const MsgUpdateGroupPolicyMetadataResponse: {
996
1585
  toProtoMsg(message: MsgUpdateGroupPolicyMetadataResponse): MsgUpdateGroupPolicyMetadataResponseProtoMsg;
997
1586
  registerTypeUrl(): void;
998
1587
  };
1588
+ /**
1589
+ * MsgSubmitProposal is the Msg/SubmitProposal request type.
1590
+ * @name MsgSubmitProposal
1591
+ * @package cosmos.group.v1
1592
+ * @see proto type: cosmos.group.v1.MsgSubmitProposal
1593
+ */
999
1594
  export declare const MsgSubmitProposal: {
1000
1595
  typeUrl: string;
1001
1596
  aminoType: string;
@@ -1013,6 +1608,12 @@ export declare const MsgSubmitProposal: {
1013
1608
  toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg;
1014
1609
  registerTypeUrl(): void;
1015
1610
  };
1611
+ /**
1612
+ * MsgSubmitProposalResponse is the Msg/SubmitProposal response type.
1613
+ * @name MsgSubmitProposalResponse
1614
+ * @package cosmos.group.v1
1615
+ * @see proto type: cosmos.group.v1.MsgSubmitProposalResponse
1616
+ */
1016
1617
  export declare const MsgSubmitProposalResponse: {
1017
1618
  typeUrl: string;
1018
1619
  aminoType: string;
@@ -1030,6 +1631,12 @@ export declare const MsgSubmitProposalResponse: {
1030
1631
  toProtoMsg(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseProtoMsg;
1031
1632
  registerTypeUrl(): void;
1032
1633
  };
1634
+ /**
1635
+ * MsgWithdrawProposal is the Msg/WithdrawProposal request type.
1636
+ * @name MsgWithdrawProposal
1637
+ * @package cosmos.group.v1
1638
+ * @see proto type: cosmos.group.v1.MsgWithdrawProposal
1639
+ */
1033
1640
  export declare const MsgWithdrawProposal: {
1034
1641
  typeUrl: string;
1035
1642
  aminoType: string;
@@ -1047,6 +1654,12 @@ export declare const MsgWithdrawProposal: {
1047
1654
  toProtoMsg(message: MsgWithdrawProposal): MsgWithdrawProposalProtoMsg;
1048
1655
  registerTypeUrl(): void;
1049
1656
  };
1657
+ /**
1658
+ * MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type.
1659
+ * @name MsgWithdrawProposalResponse
1660
+ * @package cosmos.group.v1
1661
+ * @see proto type: cosmos.group.v1.MsgWithdrawProposalResponse
1662
+ */
1050
1663
  export declare const MsgWithdrawProposalResponse: {
1051
1664
  typeUrl: string;
1052
1665
  aminoType: string;
@@ -1064,6 +1677,12 @@ export declare const MsgWithdrawProposalResponse: {
1064
1677
  toProtoMsg(message: MsgWithdrawProposalResponse): MsgWithdrawProposalResponseProtoMsg;
1065
1678
  registerTypeUrl(): void;
1066
1679
  };
1680
+ /**
1681
+ * MsgVote is the Msg/Vote request type.
1682
+ * @name MsgVote
1683
+ * @package cosmos.group.v1
1684
+ * @see proto type: cosmos.group.v1.MsgVote
1685
+ */
1067
1686
  export declare const MsgVote: {
1068
1687
  typeUrl: string;
1069
1688
  aminoType: string;
@@ -1081,6 +1700,12 @@ export declare const MsgVote: {
1081
1700
  toProtoMsg(message: MsgVote): MsgVoteProtoMsg;
1082
1701
  registerTypeUrl(): void;
1083
1702
  };
1703
+ /**
1704
+ * MsgVoteResponse is the Msg/Vote response type.
1705
+ * @name MsgVoteResponse
1706
+ * @package cosmos.group.v1
1707
+ * @see proto type: cosmos.group.v1.MsgVoteResponse
1708
+ */
1084
1709
  export declare const MsgVoteResponse: {
1085
1710
  typeUrl: string;
1086
1711
  aminoType: string;
@@ -1098,6 +1723,12 @@ export declare const MsgVoteResponse: {
1098
1723
  toProtoMsg(message: MsgVoteResponse): MsgVoteResponseProtoMsg;
1099
1724
  registerTypeUrl(): void;
1100
1725
  };
1726
+ /**
1727
+ * MsgExec is the Msg/Exec request type.
1728
+ * @name MsgExec
1729
+ * @package cosmos.group.v1
1730
+ * @see proto type: cosmos.group.v1.MsgExec
1731
+ */
1101
1732
  export declare const MsgExec: {
1102
1733
  typeUrl: string;
1103
1734
  aminoType: string;
@@ -1115,6 +1746,12 @@ export declare const MsgExec: {
1115
1746
  toProtoMsg(message: MsgExec): MsgExecProtoMsg;
1116
1747
  registerTypeUrl(): void;
1117
1748
  };
1749
+ /**
1750
+ * MsgExecResponse is the Msg/Exec request type.
1751
+ * @name MsgExecResponse
1752
+ * @package cosmos.group.v1
1753
+ * @see proto type: cosmos.group.v1.MsgExecResponse
1754
+ */
1118
1755
  export declare const MsgExecResponse: {
1119
1756
  typeUrl: string;
1120
1757
  aminoType: string;
@@ -1132,6 +1769,12 @@ export declare const MsgExecResponse: {
1132
1769
  toProtoMsg(message: MsgExecResponse): MsgExecResponseProtoMsg;
1133
1770
  registerTypeUrl(): void;
1134
1771
  };
1772
+ /**
1773
+ * MsgLeaveGroup is the Msg/LeaveGroup request type.
1774
+ * @name MsgLeaveGroup
1775
+ * @package cosmos.group.v1
1776
+ * @see proto type: cosmos.group.v1.MsgLeaveGroup
1777
+ */
1135
1778
  export declare const MsgLeaveGroup: {
1136
1779
  typeUrl: string;
1137
1780
  aminoType: string;
@@ -1149,6 +1792,12 @@ export declare const MsgLeaveGroup: {
1149
1792
  toProtoMsg(message: MsgLeaveGroup): MsgLeaveGroupProtoMsg;
1150
1793
  registerTypeUrl(): void;
1151
1794
  };
1795
+ /**
1796
+ * MsgLeaveGroupResponse is the Msg/LeaveGroup response type.
1797
+ * @name MsgLeaveGroupResponse
1798
+ * @package cosmos.group.v1
1799
+ * @see proto type: cosmos.group.v1.MsgLeaveGroupResponse
1800
+ */
1152
1801
  export declare const MsgLeaveGroupResponse: {
1153
1802
  typeUrl: string;
1154
1803
  aminoType: string;