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
@@ -11,6 +11,13 @@ function createBaseMsgSetWithdrawAddress() {
11
11
  withdrawAddress: ""
12
12
  };
13
13
  }
14
+ /**
15
+ * MsgSetWithdrawAddress sets the withdraw address for
16
+ * a delegator (or validator self-delegation).
17
+ * @name MsgSetWithdrawAddress
18
+ * @package cosmos.distribution.v1beta1
19
+ * @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddress
20
+ */
14
21
  exports.MsgSetWithdrawAddress = {
15
22
  typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddress",
16
23
  aminoType: "cosmos-sdk/MsgModifyWithdrawAddress",
@@ -97,6 +104,13 @@ exports.MsgSetWithdrawAddress = {
97
104
  function createBaseMsgSetWithdrawAddressResponse() {
98
105
  return {};
99
106
  }
107
+ /**
108
+ * MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response
109
+ * type.
110
+ * @name MsgSetWithdrawAddressResponse
111
+ * @package cosmos.distribution.v1beta1
112
+ * @see proto type: cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse
113
+ */
100
114
  exports.MsgSetWithdrawAddressResponse = {
101
115
  typeUrl: "/cosmos.distribution.v1beta1.MsgSetWithdrawAddressResponse",
102
116
  aminoType: "cosmos-sdk/MsgSetWithdrawAddressResponse",
@@ -164,6 +178,13 @@ function createBaseMsgWithdrawDelegatorReward() {
164
178
  validatorAddress: ""
165
179
  };
166
180
  }
181
+ /**
182
+ * MsgWithdrawDelegatorReward represents delegation withdrawal to a delegator
183
+ * from a single validator.
184
+ * @name MsgWithdrawDelegatorReward
185
+ * @package cosmos.distribution.v1beta1
186
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward
187
+ */
167
188
  exports.MsgWithdrawDelegatorReward = {
168
189
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward",
169
190
  aminoType: "cosmos-sdk/MsgWithdrawDelegationReward",
@@ -252,6 +273,13 @@ function createBaseMsgWithdrawDelegatorRewardResponse() {
252
273
  amount: []
253
274
  };
254
275
  }
276
+ /**
277
+ * MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward
278
+ * response type.
279
+ * @name MsgWithdrawDelegatorRewardResponse
280
+ * @package cosmos.distribution.v1beta1
281
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse
282
+ */
255
283
  exports.MsgWithdrawDelegatorRewardResponse = {
256
284
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawDelegatorRewardResponse",
257
285
  aminoType: "cosmos-sdk/MsgWithdrawDelegatorRewardResponse",
@@ -337,6 +365,13 @@ function createBaseMsgWithdrawValidatorCommission() {
337
365
  validatorAddress: ""
338
366
  };
339
367
  }
368
+ /**
369
+ * MsgWithdrawValidatorCommission withdraws the full commission to the validator
370
+ * address.
371
+ * @name MsgWithdrawValidatorCommission
372
+ * @package cosmos.distribution.v1beta1
373
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission
374
+ */
340
375
  exports.MsgWithdrawValidatorCommission = {
341
376
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission",
342
377
  aminoType: "cosmos-sdk/MsgWithdrawValidatorCommission",
@@ -414,6 +449,13 @@ function createBaseMsgWithdrawValidatorCommissionResponse() {
414
449
  amount: []
415
450
  };
416
451
  }
452
+ /**
453
+ * MsgWithdrawValidatorCommissionResponse defines the
454
+ * Msg/WithdrawValidatorCommission response type.
455
+ * @name MsgWithdrawValidatorCommissionResponse
456
+ * @package cosmos.distribution.v1beta1
457
+ * @see proto type: cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse
458
+ */
417
459
  exports.MsgWithdrawValidatorCommissionResponse = {
418
460
  typeUrl: "/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommissionResponse",
419
461
  aminoType: "cosmos-sdk/MsgWithdrawValidatorCommissionResponse",
@@ -500,6 +542,13 @@ function createBaseMsgFundCommunityPool() {
500
542
  depositor: ""
501
543
  };
502
544
  }
545
+ /**
546
+ * MsgFundCommunityPool allows an account to directly
547
+ * fund the community pool.
548
+ * @name MsgFundCommunityPool
549
+ * @package cosmos.distribution.v1beta1
550
+ * @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPool
551
+ */
503
552
  exports.MsgFundCommunityPool = {
504
553
  typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPool",
505
554
  aminoType: "cosmos-sdk/MsgFundCommunityPool",
@@ -594,6 +643,12 @@ exports.MsgFundCommunityPool = {
594
643
  function createBaseMsgFundCommunityPoolResponse() {
595
644
  return {};
596
645
  }
646
+ /**
647
+ * MsgFundCommunityPoolResponse defines the Msg/FundCommunityPool response type.
648
+ * @name MsgFundCommunityPoolResponse
649
+ * @package cosmos.distribution.v1beta1
650
+ * @see proto type: cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse
651
+ */
597
652
  exports.MsgFundCommunityPoolResponse = {
598
653
  typeUrl: "/cosmos.distribution.v1beta1.MsgFundCommunityPoolResponse",
599
654
  aminoType: "cosmos-sdk/MsgFundCommunityPoolResponse",
@@ -661,6 +716,14 @@ function createBaseMsgUpdateParams() {
661
716
  params: distribution_1.Params.fromPartial({})
662
717
  };
663
718
  }
719
+ /**
720
+ * MsgUpdateParams is the Msg/UpdateParams request type.
721
+ *
722
+ * Since: cosmos-sdk 0.47
723
+ * @name MsgUpdateParams
724
+ * @package cosmos.distribution.v1beta1
725
+ * @see proto type: cosmos.distribution.v1beta1.MsgUpdateParams
726
+ */
664
727
  exports.MsgUpdateParams = {
665
728
  typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParams",
666
729
  aminoType: "cosmos-sdk/distribution/MsgUpdateParams",
@@ -752,6 +815,15 @@ exports.MsgUpdateParams = {
752
815
  function createBaseMsgUpdateParamsResponse() {
753
816
  return {};
754
817
  }
818
+ /**
819
+ * MsgUpdateParamsResponse defines the response structure for executing a
820
+ * MsgUpdateParams message.
821
+ *
822
+ * Since: cosmos-sdk 0.47
823
+ * @name MsgUpdateParamsResponse
824
+ * @package cosmos.distribution.v1beta1
825
+ * @see proto type: cosmos.distribution.v1beta1.MsgUpdateParamsResponse
826
+ */
755
827
  exports.MsgUpdateParamsResponse = {
756
828
  typeUrl: "/cosmos.distribution.v1beta1.MsgUpdateParamsResponse",
757
829
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -820,6 +892,16 @@ function createBaseMsgCommunityPoolSpend() {
820
892
  amount: []
821
893
  };
822
894
  }
895
+ /**
896
+ * MsgCommunityPoolSpend defines a message for sending tokens from the community
897
+ * pool to another account. This message is typically executed via a governance
898
+ * proposal with the governance module being the executing authority.
899
+ *
900
+ * Since: cosmos-sdk 0.47
901
+ * @name MsgCommunityPoolSpend
902
+ * @package cosmos.distribution.v1beta1
903
+ * @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpend
904
+ */
823
905
  exports.MsgCommunityPoolSpend = {
824
906
  typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpend",
825
907
  aminoType: "cosmos-sdk/distr/MsgCommunityPoolSpend",
@@ -925,6 +1007,15 @@ exports.MsgCommunityPoolSpend = {
925
1007
  function createBaseMsgCommunityPoolSpendResponse() {
926
1008
  return {};
927
1009
  }
1010
+ /**
1011
+ * MsgCommunityPoolSpendResponse defines the response to executing a
1012
+ * MsgCommunityPoolSpend message.
1013
+ *
1014
+ * Since: cosmos-sdk 0.47
1015
+ * @name MsgCommunityPoolSpendResponse
1016
+ * @package cosmos.distribution.v1beta1
1017
+ * @see proto type: cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse
1018
+ */
928
1019
  exports.MsgCommunityPoolSpendResponse = {
929
1020
  typeUrl: "/cosmos.distribution.v1beta1.MsgCommunityPoolSpendResponse",
930
1021
  aminoType: "cosmos-sdk/MsgCommunityPoolSpendResponse",
@@ -993,6 +1084,15 @@ function createBaseMsgDepositValidatorRewardsPool() {
993
1084
  amount: []
994
1085
  };
995
1086
  }
1087
+ /**
1088
+ * DepositValidatorRewardsPool defines the request structure to provide
1089
+ * additional rewards to delegators from a specific validator.
1090
+ *
1091
+ * Since: cosmos-sdk 0.50
1092
+ * @name MsgDepositValidatorRewardsPool
1093
+ * @package cosmos.distribution.v1beta1
1094
+ * @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool
1095
+ */
996
1096
  exports.MsgDepositValidatorRewardsPool = {
997
1097
  typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPool",
998
1098
  aminoType: "cosmos-sdk/distr/MsgDepositValRewards",
@@ -1098,6 +1198,15 @@ exports.MsgDepositValidatorRewardsPool = {
1098
1198
  function createBaseMsgDepositValidatorRewardsPoolResponse() {
1099
1199
  return {};
1100
1200
  }
1201
+ /**
1202
+ * MsgDepositValidatorRewardsPoolResponse defines the response to executing a
1203
+ * MsgDepositValidatorRewardsPool message.
1204
+ *
1205
+ * Since: cosmos-sdk 0.50
1206
+ * @name MsgDepositValidatorRewardsPoolResponse
1207
+ * @package cosmos.distribution.v1beta1
1208
+ * @see proto type: cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse
1209
+ */
1101
1210
  exports.MsgDepositValidatorRewardsPoolResponse = {
1102
1211
  typeUrl: "/cosmos.distribution.v1beta1.MsgDepositValidatorRewardsPoolResponse",
1103
1212
  aminoType: "cosmos-sdk/MsgDepositValidatorRewardsPoolResponse",
@@ -1,8 +1,65 @@
1
1
  import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, MsgFundCommunityPool, MsgUpdateParams, MsgCommunityPoolSpend, MsgDepositValidatorRewardsPool } from "./tx";
2
+ /**
3
+ * SetWithdrawAddress defines a method to change the withdraw address
4
+ * for a delegator (or validator self-delegation).
5
+ * @name setWithdrawAddress
6
+ * @package cosmos.distribution.v1beta1
7
+ * @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
8
+ */
2
9
  export declare const setWithdrawAddress: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSetWithdrawAddress | MsgSetWithdrawAddress[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
10
+ /**
11
+ * WithdrawDelegatorReward defines a method to withdraw rewards of delegator
12
+ * from a single validator.
13
+ * @name withdrawDelegatorReward
14
+ * @package cosmos.distribution.v1beta1
15
+ * @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
16
+ */
3
17
  export declare const withdrawDelegatorReward: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawDelegatorReward | MsgWithdrawDelegatorReward[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
18
+ /**
19
+ * WithdrawValidatorCommission defines a method to withdraw the
20
+ * full commission to the validator address.
21
+ * @name withdrawValidatorCommission
22
+ * @package cosmos.distribution.v1beta1
23
+ * @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
24
+ */
4
25
  export declare const withdrawValidatorCommission: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdrawValidatorCommission | MsgWithdrawValidatorCommission[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
26
+ /**
27
+ * FundCommunityPool defines a method to allow an account to directly
28
+ * fund the community pool.
29
+ * @name fundCommunityPool
30
+ * @package cosmos.distribution.v1beta1
31
+ * @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
32
+ */
5
33
  export declare const fundCommunityPool: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgFundCommunityPool | MsgFundCommunityPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
34
+ /**
35
+ * UpdateParams defines a governance operation for updating the x/distribution
36
+ * module parameters. The authority is defined in the keeper.
37
+ *
38
+ * Since: cosmos-sdk 0.47
39
+ * @name updateParams
40
+ * @package cosmos.distribution.v1beta1
41
+ * @see proto service: cosmos.distribution.v1beta1.UpdateParams
42
+ */
6
43
  export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
44
+ /**
45
+ * CommunityPoolSpend defines a governance operation for sending tokens from
46
+ * the community pool in the x/distribution module to another account, which
47
+ * could be the governance module itself. The authority is defined in the
48
+ * keeper.
49
+ *
50
+ * Since: cosmos-sdk 0.47
51
+ * @name communityPoolSpend
52
+ * @package cosmos.distribution.v1beta1
53
+ * @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
54
+ */
7
55
  export declare const communityPoolSpend: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCommunityPoolSpend | MsgCommunityPoolSpend[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
56
+ /**
57
+ * DepositValidatorRewardsPool defines a method to provide additional rewards
58
+ * to delegators to a specific validator.
59
+ *
60
+ * Since: cosmos-sdk 0.50
61
+ * @name depositValidatorRewardsPool
62
+ * @package cosmos.distribution.v1beta1
63
+ * @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
64
+ */
8
65
  export declare const depositValidatorRewardsPool: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDepositValidatorRewardsPool | MsgDepositValidatorRewardsPool[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -3,46 +3,81 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.depositValidatorRewardsPool = exports.communityPoolSpend = exports.updateParams = exports.fundCommunityPool = exports.withdrawValidatorCommission = exports.withdrawDelegatorReward = exports.setWithdrawAddress = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const tx_1 = require("./tx");
6
- /* SetWithdrawAddress defines a method to change the withdraw address
7
- for a delegator (or validator self-delegation). */
6
+ /**
7
+ * SetWithdrawAddress defines a method to change the withdraw address
8
+ * for a delegator (or validator self-delegation).
9
+ * @name setWithdrawAddress
10
+ * @package cosmos.distribution.v1beta1
11
+ * @see proto service: cosmos.distribution.v1beta1.SetWithdrawAddress
12
+ */
8
13
  exports.setWithdrawAddress = (0, helper_func_types_1.buildTx)({
9
14
  msg: tx_1.MsgSetWithdrawAddress
10
15
  });
11
- /* WithdrawDelegatorReward defines a method to withdraw rewards of delegator
12
- from a single validator. */
16
+ /**
17
+ * WithdrawDelegatorReward defines a method to withdraw rewards of delegator
18
+ * from a single validator.
19
+ * @name withdrawDelegatorReward
20
+ * @package cosmos.distribution.v1beta1
21
+ * @see proto service: cosmos.distribution.v1beta1.WithdrawDelegatorReward
22
+ */
13
23
  exports.withdrawDelegatorReward = (0, helper_func_types_1.buildTx)({
14
24
  msg: tx_1.MsgWithdrawDelegatorReward
15
25
  });
16
- /* WithdrawValidatorCommission defines a method to withdraw the
17
- full commission to the validator address. */
26
+ /**
27
+ * WithdrawValidatorCommission defines a method to withdraw the
28
+ * full commission to the validator address.
29
+ * @name withdrawValidatorCommission
30
+ * @package cosmos.distribution.v1beta1
31
+ * @see proto service: cosmos.distribution.v1beta1.WithdrawValidatorCommission
32
+ */
18
33
  exports.withdrawValidatorCommission = (0, helper_func_types_1.buildTx)({
19
34
  msg: tx_1.MsgWithdrawValidatorCommission
20
35
  });
21
- /* FundCommunityPool defines a method to allow an account to directly
22
- fund the community pool. */
36
+ /**
37
+ * FundCommunityPool defines a method to allow an account to directly
38
+ * fund the community pool.
39
+ * @name fundCommunityPool
40
+ * @package cosmos.distribution.v1beta1
41
+ * @see proto service: cosmos.distribution.v1beta1.FundCommunityPool
42
+ */
23
43
  exports.fundCommunityPool = (0, helper_func_types_1.buildTx)({
24
44
  msg: tx_1.MsgFundCommunityPool
25
45
  });
26
- /* UpdateParams defines a governance operation for updating the x/distribution
27
- module parameters. The authority is defined in the keeper.
28
-
29
- Since: cosmos-sdk 0.47 */
46
+ /**
47
+ * UpdateParams defines a governance operation for updating the x/distribution
48
+ * module parameters. The authority is defined in the keeper.
49
+ *
50
+ * Since: cosmos-sdk 0.47
51
+ * @name updateParams
52
+ * @package cosmos.distribution.v1beta1
53
+ * @see proto service: cosmos.distribution.v1beta1.UpdateParams
54
+ */
30
55
  exports.updateParams = (0, helper_func_types_1.buildTx)({
31
56
  msg: tx_1.MsgUpdateParams
32
57
  });
33
- /* CommunityPoolSpend defines a governance operation for sending tokens from
34
- the community pool in the x/distribution module to another account, which
35
- could be the governance module itself. The authority is defined in the
36
- keeper.
37
-
38
- Since: cosmos-sdk 0.47 */
58
+ /**
59
+ * CommunityPoolSpend defines a governance operation for sending tokens from
60
+ * the community pool in the x/distribution module to another account, which
61
+ * could be the governance module itself. The authority is defined in the
62
+ * keeper.
63
+ *
64
+ * Since: cosmos-sdk 0.47
65
+ * @name communityPoolSpend
66
+ * @package cosmos.distribution.v1beta1
67
+ * @see proto service: cosmos.distribution.v1beta1.CommunityPoolSpend
68
+ */
39
69
  exports.communityPoolSpend = (0, helper_func_types_1.buildTx)({
40
70
  msg: tx_1.MsgCommunityPoolSpend
41
71
  });
42
- /* DepositValidatorRewardsPool defines a method to provide additional rewards
43
- to delegators to a specific validator.
44
-
45
- Since: cosmos-sdk 0.50 */
72
+ /**
73
+ * DepositValidatorRewardsPool defines a method to provide additional rewards
74
+ * to delegators to a specific validator.
75
+ *
76
+ * Since: cosmos-sdk 0.50
77
+ * @name depositValidatorRewardsPool
78
+ * @package cosmos.distribution.v1beta1
79
+ * @see proto service: cosmos.distribution.v1beta1.DepositValidatorRewardsPool
80
+ */
46
81
  exports.depositValidatorRewardsPool = (0, helper_func_types_1.buildTx)({
47
82
  msg: tx_1.MsgDepositValidatorRewardsPool
48
83
  });
@@ -4,13 +4,22 @@ import { DeepPartial } from "../../../helpers";
4
4
  /**
5
5
  * MsgGrantAllowance adds permission for Grantee to spend up to Allowance
6
6
  * of fees from the account of Granter.
7
+ * @name MsgGrantAllowance
8
+ * @package cosmos.feegrant.v1beta1
9
+ * @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowance
7
10
  */
8
11
  export interface MsgGrantAllowance {
9
- /** granter is the address of the user granting an allowance of their funds. */
12
+ /**
13
+ * granter is the address of the user granting an allowance of their funds.
14
+ */
10
15
  granter: string;
11
- /** grantee is the address of the user being granted an allowance of another user's funds. */
16
+ /**
17
+ * grantee is the address of the user being granted an allowance of another user's funds.
18
+ */
12
19
  grantee: string;
13
- /** allowance can be any of basic, periodic, allowed fee allowance. */
20
+ /**
21
+ * allowance can be any of basic, periodic, allowed fee allowance.
22
+ */
14
23
  allowance?: Any | undefined;
15
24
  }
16
25
  export interface MsgGrantAllowanceProtoMsg {
@@ -18,68 +27,118 @@ export interface MsgGrantAllowanceProtoMsg {
18
27
  value: Uint8Array;
19
28
  }
20
29
  export type MsgGrantAllowanceEncoded = Omit<MsgGrantAllowance, "allowance"> & {
21
- /** allowance can be any of basic, periodic, allowed fee allowance. */ allowance?: AnyProtoMsg | undefined;
30
+ /**
31
+ * allowance can be any of basic, periodic, allowed fee allowance.
32
+ */
33
+ allowance?: AnyProtoMsg | undefined;
22
34
  };
23
35
  /**
24
36
  * MsgGrantAllowance adds permission for Grantee to spend up to Allowance
25
37
  * of fees from the account of Granter.
38
+ * @name MsgGrantAllowanceAmino
39
+ * @package cosmos.feegrant.v1beta1
40
+ * @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowance
26
41
  */
27
42
  export interface MsgGrantAllowanceAmino {
28
- /** granter is the address of the user granting an allowance of their funds. */
43
+ /**
44
+ * granter is the address of the user granting an allowance of their funds.
45
+ */
29
46
  granter: string;
30
- /** grantee is the address of the user being granted an allowance of another user's funds. */
47
+ /**
48
+ * grantee is the address of the user being granted an allowance of another user's funds.
49
+ */
31
50
  grantee: string;
32
- /** allowance can be any of basic, periodic, allowed fee allowance. */
51
+ /**
52
+ * allowance can be any of basic, periodic, allowed fee allowance.
53
+ */
33
54
  allowance?: AnyAmino;
34
55
  }
35
56
  export interface MsgGrantAllowanceAminoMsg {
36
57
  type: "cosmos-sdk/MsgGrantAllowance";
37
58
  value: MsgGrantAllowanceAmino;
38
59
  }
39
- /** MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type. */
60
+ /**
61
+ * MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
62
+ * @name MsgGrantAllowanceResponse
63
+ * @package cosmos.feegrant.v1beta1
64
+ * @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse
65
+ */
40
66
  export interface MsgGrantAllowanceResponse {
41
67
  }
42
68
  export interface MsgGrantAllowanceResponseProtoMsg {
43
69
  typeUrl: "/cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse";
44
70
  value: Uint8Array;
45
71
  }
46
- /** MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type. */
72
+ /**
73
+ * MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
74
+ * @name MsgGrantAllowanceResponseAmino
75
+ * @package cosmos.feegrant.v1beta1
76
+ * @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse
77
+ */
47
78
  export interface MsgGrantAllowanceResponseAmino {
48
79
  }
49
80
  export interface MsgGrantAllowanceResponseAminoMsg {
50
81
  type: "cosmos-sdk/MsgGrantAllowanceResponse";
51
82
  value: MsgGrantAllowanceResponseAmino;
52
83
  }
53
- /** MsgRevokeAllowance removes any existing Allowance from Granter to Grantee. */
84
+ /**
85
+ * MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
86
+ * @name MsgRevokeAllowance
87
+ * @package cosmos.feegrant.v1beta1
88
+ * @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowance
89
+ */
54
90
  export interface MsgRevokeAllowance {
55
- /** granter is the address of the user granting an allowance of their funds. */
91
+ /**
92
+ * granter is the address of the user granting an allowance of their funds.
93
+ */
56
94
  granter: string;
57
- /** grantee is the address of the user being granted an allowance of another user's funds. */
95
+ /**
96
+ * grantee is the address of the user being granted an allowance of another user's funds.
97
+ */
58
98
  grantee: string;
59
99
  }
60
100
  export interface MsgRevokeAllowanceProtoMsg {
61
101
  typeUrl: "/cosmos.feegrant.v1beta1.MsgRevokeAllowance";
62
102
  value: Uint8Array;
63
103
  }
64
- /** MsgRevokeAllowance removes any existing Allowance from Granter to Grantee. */
104
+ /**
105
+ * MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
106
+ * @name MsgRevokeAllowanceAmino
107
+ * @package cosmos.feegrant.v1beta1
108
+ * @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowance
109
+ */
65
110
  export interface MsgRevokeAllowanceAmino {
66
- /** granter is the address of the user granting an allowance of their funds. */
111
+ /**
112
+ * granter is the address of the user granting an allowance of their funds.
113
+ */
67
114
  granter: string;
68
- /** grantee is the address of the user being granted an allowance of another user's funds. */
115
+ /**
116
+ * grantee is the address of the user being granted an allowance of another user's funds.
117
+ */
69
118
  grantee: string;
70
119
  }
71
120
  export interface MsgRevokeAllowanceAminoMsg {
72
121
  type: "cosmos-sdk/MsgRevokeAllowance";
73
122
  value: MsgRevokeAllowanceAmino;
74
123
  }
75
- /** MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type. */
124
+ /**
125
+ * MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
126
+ * @name MsgRevokeAllowanceResponse
127
+ * @package cosmos.feegrant.v1beta1
128
+ * @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse
129
+ */
76
130
  export interface MsgRevokeAllowanceResponse {
77
131
  }
78
132
  export interface MsgRevokeAllowanceResponseProtoMsg {
79
133
  typeUrl: "/cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse";
80
134
  value: Uint8Array;
81
135
  }
82
- /** MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type. */
136
+ /**
137
+ * MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
138
+ * @name MsgRevokeAllowanceResponseAmino
139
+ * @package cosmos.feegrant.v1beta1
140
+ * @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse
141
+ */
83
142
  export interface MsgRevokeAllowanceResponseAmino {
84
143
  }
85
144
  export interface MsgRevokeAllowanceResponseAminoMsg {
@@ -90,9 +149,14 @@ export interface MsgRevokeAllowanceResponseAminoMsg {
90
149
  * MsgPruneAllowances prunes expired fee allowances.
91
150
  *
92
151
  * Since cosmos-sdk 0.50
152
+ * @name MsgPruneAllowances
153
+ * @package cosmos.feegrant.v1beta1
154
+ * @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowances
93
155
  */
94
156
  export interface MsgPruneAllowances {
95
- /** pruner is the address of the user pruning expired allowances. */
157
+ /**
158
+ * pruner is the address of the user pruning expired allowances.
159
+ */
96
160
  pruner: string;
97
161
  }
98
162
  export interface MsgPruneAllowancesProtoMsg {
@@ -103,9 +167,14 @@ export interface MsgPruneAllowancesProtoMsg {
103
167
  * MsgPruneAllowances prunes expired fee allowances.
104
168
  *
105
169
  * Since cosmos-sdk 0.50
170
+ * @name MsgPruneAllowancesAmino
171
+ * @package cosmos.feegrant.v1beta1
172
+ * @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowances
106
173
  */
107
174
  export interface MsgPruneAllowancesAmino {
108
- /** pruner is the address of the user pruning expired allowances. */
175
+ /**
176
+ * pruner is the address of the user pruning expired allowances.
177
+ */
109
178
  pruner: string;
110
179
  }
111
180
  export interface MsgPruneAllowancesAminoMsg {
@@ -116,6 +185,9 @@ export interface MsgPruneAllowancesAminoMsg {
116
185
  * MsgPruneAllowancesResponse defines the Msg/PruneAllowancesResponse response type.
117
186
  *
118
187
  * Since cosmos-sdk 0.50
188
+ * @name MsgPruneAllowancesResponse
189
+ * @package cosmos.feegrant.v1beta1
190
+ * @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowancesResponse
119
191
  */
120
192
  export interface MsgPruneAllowancesResponse {
121
193
  }
@@ -127,6 +199,9 @@ export interface MsgPruneAllowancesResponseProtoMsg {
127
199
  * MsgPruneAllowancesResponse defines the Msg/PruneAllowancesResponse response type.
128
200
  *
129
201
  * Since cosmos-sdk 0.50
202
+ * @name MsgPruneAllowancesResponseAmino
203
+ * @package cosmos.feegrant.v1beta1
204
+ * @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowancesResponse
130
205
  */
131
206
  export interface MsgPruneAllowancesResponseAmino {
132
207
  }
@@ -134,6 +209,13 @@ export interface MsgPruneAllowancesResponseAminoMsg {
134
209
  type: "cosmos-sdk/MsgPruneAllowancesResponse";
135
210
  value: MsgPruneAllowancesResponseAmino;
136
211
  }
212
+ /**
213
+ * MsgGrantAllowance adds permission for Grantee to spend up to Allowance
214
+ * of fees from the account of Granter.
215
+ * @name MsgGrantAllowance
216
+ * @package cosmos.feegrant.v1beta1
217
+ * @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowance
218
+ */
137
219
  export declare const MsgGrantAllowance: {
138
220
  typeUrl: string;
139
221
  aminoType: string;
@@ -151,6 +233,12 @@ export declare const MsgGrantAllowance: {
151
233
  toProtoMsg(message: MsgGrantAllowance): MsgGrantAllowanceProtoMsg;
152
234
  registerTypeUrl(): void;
153
235
  };
236
+ /**
237
+ * MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type.
238
+ * @name MsgGrantAllowanceResponse
239
+ * @package cosmos.feegrant.v1beta1
240
+ * @see proto type: cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse
241
+ */
154
242
  export declare const MsgGrantAllowanceResponse: {
155
243
  typeUrl: string;
156
244
  aminoType: string;
@@ -168,6 +256,12 @@ export declare const MsgGrantAllowanceResponse: {
168
256
  toProtoMsg(message: MsgGrantAllowanceResponse): MsgGrantAllowanceResponseProtoMsg;
169
257
  registerTypeUrl(): void;
170
258
  };
259
+ /**
260
+ * MsgRevokeAllowance removes any existing Allowance from Granter to Grantee.
261
+ * @name MsgRevokeAllowance
262
+ * @package cosmos.feegrant.v1beta1
263
+ * @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowance
264
+ */
171
265
  export declare const MsgRevokeAllowance: {
172
266
  typeUrl: string;
173
267
  aminoType: string;
@@ -185,6 +279,12 @@ export declare const MsgRevokeAllowance: {
185
279
  toProtoMsg(message: MsgRevokeAllowance): MsgRevokeAllowanceProtoMsg;
186
280
  registerTypeUrl(): void;
187
281
  };
282
+ /**
283
+ * MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type.
284
+ * @name MsgRevokeAllowanceResponse
285
+ * @package cosmos.feegrant.v1beta1
286
+ * @see proto type: cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse
287
+ */
188
288
  export declare const MsgRevokeAllowanceResponse: {
189
289
  typeUrl: string;
190
290
  aminoType: string;
@@ -202,6 +302,14 @@ export declare const MsgRevokeAllowanceResponse: {
202
302
  toProtoMsg(message: MsgRevokeAllowanceResponse): MsgRevokeAllowanceResponseProtoMsg;
203
303
  registerTypeUrl(): void;
204
304
  };
305
+ /**
306
+ * MsgPruneAllowances prunes expired fee allowances.
307
+ *
308
+ * Since cosmos-sdk 0.50
309
+ * @name MsgPruneAllowances
310
+ * @package cosmos.feegrant.v1beta1
311
+ * @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowances
312
+ */
205
313
  export declare const MsgPruneAllowances: {
206
314
  typeUrl: string;
207
315
  aminoType: string;
@@ -219,6 +327,14 @@ export declare const MsgPruneAllowances: {
219
327
  toProtoMsg(message: MsgPruneAllowances): MsgPruneAllowancesProtoMsg;
220
328
  registerTypeUrl(): void;
221
329
  };
330
+ /**
331
+ * MsgPruneAllowancesResponse defines the Msg/PruneAllowancesResponse response type.
332
+ *
333
+ * Since cosmos-sdk 0.50
334
+ * @name MsgPruneAllowancesResponse
335
+ * @package cosmos.feegrant.v1beta1
336
+ * @see proto type: cosmos.feegrant.v1beta1.MsgPruneAllowancesResponse
337
+ */
222
338
  export declare const MsgPruneAllowancesResponse: {
223
339
  typeUrl: string;
224
340
  aminoType: string;