injectivejs 1.11.13 → 1.11.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (520) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  4. package/cosmos/auth/v1beta1/auth.js +28 -0
  5. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  6. package/cosmos/auth/v1beta1/query.js +148 -0
  7. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
  8. package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  9. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  10. package/cosmos/authz/v1beta1/authz.js +27 -0
  11. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  12. package/cosmos/authz/v1beta1/tx.js +40 -0
  13. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
  14. package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  15. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  16. package/cosmos/bank/v1beta1/bank.js +48 -0
  17. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  18. package/cosmos/bank/v1beta1/query.js +199 -0
  19. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
  20. package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  21. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  22. package/cosmos/bank/v1beta1/tx.js +61 -0
  23. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
  24. package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  25. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  26. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  27. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  28. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  29. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  30. package/cosmos/base/v1beta1/coin.js +32 -0
  31. package/cosmos/bundle.d.ts +8 -8
  32. package/cosmos/bundle.js +15 -15
  33. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  34. package/cosmos/crypto/ed25519/keys.js +17 -0
  35. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  36. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  37. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  38. package/cosmos/crypto/secp256k1/keys.js +16 -0
  39. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  40. package/cosmos/crypto/secp256r1/keys.js +12 -0
  41. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  42. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  43. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  44. package/cosmos/distribution/v1beta1/tx.js +109 -0
  45. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
  46. package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  47. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  48. package/cosmos/feegrant/v1beta1/tx.js +41 -0
  49. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
  50. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  51. package/cosmos/gov/v1/gov.d.ts +343 -80
  52. package/cosmos/gov/v1/gov.js +61 -0
  53. package/cosmos/gov/v1/tx.d.ts +376 -65
  54. package/cosmos/gov/v1/tx.js +96 -0
  55. package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
  56. package/cosmos/gov/v1/tx.rpc.func.js +48 -13
  57. package/cosmos/gov/v1beta1/gov.d.ts +293 -61
  58. package/cosmos/gov/v1beta1/gov.js +59 -0
  59. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  60. package/cosmos/gov/v1beta1/query.js +97 -0
  61. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
  62. package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  63. package/cosmos/gov/v1beta1/tx.d.ts +213 -37
  64. package/cosmos/gov/v1beta1/tx.js +53 -0
  65. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
  66. package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  67. package/cosmos/group/v1/tx.d.ts +804 -155
  68. package/cosmos/group/v1/tx.js +168 -0
  69. package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
  70. package/cosmos/group/v1/tx.rpc.func.js +84 -14
  71. package/cosmos/group/v1/types.d.ts +398 -83
  72. package/cosmos/group/v1/types.js +82 -0
  73. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  74. package/cosmos/ics23/v1/proofs.js +138 -0
  75. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  76. package/cosmos/staking/v1beta1/query.js +186 -0
  77. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
  78. package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  79. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  80. package/cosmos/staking/v1beta1/staking.js +153 -0
  81. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  82. package/cosmos/staking/v1beta1/tx.js +96 -0
  83. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
  84. package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  85. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  86. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  87. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  88. package/cosmos/tx/v1beta1/service.js +145 -0
  89. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
  90. package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  91. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  92. package/cosmos/tx/v1beta1/tx.js +99 -0
  93. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  94. package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  95. package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
  96. package/cosmos/vesting/v1beta1/tx.js +48 -0
  97. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
  98. package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  99. package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
  100. package/cosmos/vesting/v1beta1/vesting.js +45 -0
  101. package/cosmos_proto/cosmos.d.ts +31 -0
  102. package/cosmos_proto/cosmos.js +19 -0
  103. package/cosmwasm/bundle.d.ts +2 -2
  104. package/cosmwasm/bundle.js +3 -3
  105. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  106. package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  107. package/cosmwasm/wasm/v1/query.d.ts +615 -82
  108. package/cosmwasm/wasm/v1/query.js +195 -0
  109. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
  110. package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  111. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  112. package/cosmwasm/wasm/v1/tx.js +242 -0
  113. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
  114. package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  115. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  116. package/cosmwasm/wasm/v1/types.js +49 -0
  117. package/esm/binary.js +1 -1
  118. package/esm/cosmos/auth/v1beta1/auth.js +28 -0
  119. package/esm/cosmos/auth/v1beta1/query.js +148 -0
  120. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  121. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  122. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  123. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  124. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  125. package/esm/cosmos/bank/v1beta1/query.js +199 -0
  126. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  127. package/esm/cosmos/bank/v1beta1/tx.js +61 -0
  128. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  129. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  130. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  131. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  132. package/esm/cosmos/bundle.js +8 -8
  133. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  134. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  135. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  136. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  137. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  138. package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
  139. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  140. package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
  141. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  142. package/esm/cosmos/gov/v1/gov.js +61 -0
  143. package/esm/cosmos/gov/v1/tx.js +96 -0
  144. package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
  145. package/esm/cosmos/gov/v1beta1/gov.js +59 -0
  146. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  147. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  148. package/esm/cosmos/gov/v1beta1/tx.js +53 -0
  149. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  150. package/esm/cosmos/group/v1/tx.js +168 -0
  151. package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
  152. package/esm/cosmos/group/v1/types.js +82 -0
  153. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  154. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  155. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  156. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  157. package/esm/cosmos/staking/v1beta1/tx.js +96 -0
  158. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  159. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  160. package/esm/cosmos/tx/v1beta1/service.js +145 -0
  161. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  162. package/esm/cosmos/tx/v1beta1/tx.js +99 -0
  163. package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  164. package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
  165. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  166. package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
  167. package/esm/cosmos_proto/cosmos.js +19 -0
  168. package/esm/cosmwasm/bundle.js +2 -2
  169. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  170. package/esm/cosmwasm/wasm/v1/query.js +195 -0
  171. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  172. package/esm/cosmwasm/wasm/v1/tx.js +242 -0
  173. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  174. package/esm/cosmwasm/wasm/v1/types.js +49 -0
  175. package/esm/extern.js +1 -1
  176. package/esm/google/api/http.js +283 -0
  177. package/esm/google/protobuf/any.js +90 -0
  178. package/esm/google/protobuf/descriptor.js +215 -0
  179. package/esm/google/protobuf/duration.js +63 -0
  180. package/esm/google/protobuf/timestamp.js +94 -0
  181. package/esm/helper-func-types.js +1 -1
  182. package/esm/helpers.js +1 -1
  183. package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
  184. package/esm/ibc/applications/transfer/v1/tx.js +27 -0
  185. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  186. package/esm/ibc/bundle.js +1 -1
  187. package/esm/ibc/core/channel/v1/channel.js +70 -0
  188. package/esm/ibc/core/channel/v1/tx.js +242 -0
  189. package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  190. package/esm/ibc/core/channel/v1/upgrade.js +25 -0
  191. package/esm/ibc/core/client/v1/client.js +45 -0
  192. package/esm/ibc/core/client/v1/tx.js +90 -0
  193. package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
  194. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  195. package/esm/ibc/core/connection/v1/connection.js +47 -0
  196. package/esm/ibc/core/connection/v1/tx.js +66 -0
  197. package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  198. package/esm/index.js +1 -1
  199. package/esm/injective/auction/v1beta1/auction.js +30 -0
  200. package/esm/injective/auction/v1beta1/genesis.js +6 -0
  201. package/esm/injective/auction/v1beta1/query.js +52 -0
  202. package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
  203. package/esm/injective/auction/v1beta1/tx.js +21 -0
  204. package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  205. package/esm/injective/bundle.js +14 -14
  206. package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  207. package/esm/injective/exchange/v1beta1/authz.js +58 -0
  208. package/esm/injective/exchange/v1beta1/events.js +180 -0
  209. package/esm/injective/exchange/v1beta1/exchange.js +263 -0
  210. package/esm/injective/exchange/v1beta1/genesis.js +89 -0
  211. package/esm/injective/exchange/v1beta1/proposal.js +113 -0
  212. package/esm/injective/exchange/v1beta1/query.js +864 -0
  213. package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  214. package/esm/injective/exchange/v1beta1/tx.js +487 -0
  215. package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  216. package/esm/injective/insurance/v1beta1/events.js +25 -0
  217. package/esm/injective/insurance/v1beta1/genesis.js +6 -0
  218. package/esm/injective/insurance/v1beta1/insurance.js +15 -0
  219. package/esm/injective/insurance/v1beta1/query.js +84 -0
  220. package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  221. package/esm/injective/insurance/v1beta1/tx.js +46 -0
  222. package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  223. package/esm/injective/ocr/v1beta1/genesis.js +41 -0
  224. package/esm/injective/ocr/v1beta1/ocr.js +108 -0
  225. package/esm/injective/ocr/v1beta1/query.js +70 -0
  226. package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  227. package/esm/injective/ocr/v1beta1/tx.js +90 -0
  228. package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  229. package/esm/injective/oracle/v1beta1/events.js +56 -0
  230. package/esm/injective/oracle/v1beta1/genesis.js +11 -0
  231. package/esm/injective/oracle/v1beta1/oracle.js +122 -0
  232. package/esm/injective/oracle/v1beta1/proposal.js +55 -0
  233. package/esm/injective/oracle/v1beta1/query.js +240 -0
  234. package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  235. package/esm/injective/oracle/v1beta1/tx.js +93 -0
  236. package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  237. package/esm/injective/peggy/v1/attestation.js +31 -0
  238. package/esm/injective/peggy/v1/batch.js +12 -0
  239. package/esm/injective/peggy/v1/events.js +85 -0
  240. package/esm/injective/peggy/v1/genesis.js +6 -0
  241. package/esm/injective/peggy/v1/msgs.js +223 -0
  242. package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
  243. package/esm/injective/peggy/v1/params.js +5 -0
  244. package/esm/injective/peggy/v1/pool.js +11 -0
  245. package/esm/injective/peggy/v1/proposal.js +10 -0
  246. package/esm/injective/peggy/v1/query.js +214 -0
  247. package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
  248. package/esm/injective/peggy/v1/types.js +37 -0
  249. package/esm/injective/permissions/v1beta1/events.js +5 -0
  250. package/esm/injective/permissions/v1beta1/genesis.js +6 -0
  251. package/esm/injective/permissions/v1beta1/params.js +6 -0
  252. package/esm/injective/permissions/v1beta1/permissions.js +33 -0
  253. package/esm/injective/permissions/v1beta1/query.js +74 -0
  254. package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  255. package/esm/injective/permissions/v1beta1/tx.js +90 -0
  256. package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  257. package/esm/injective/stream/v1beta1/query.js +110 -0
  258. package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  259. package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
  260. package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
  261. package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
  262. package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
  263. package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  264. package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
  265. package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  266. package/esm/injective/types/v1beta1/account.js +7 -0
  267. package/esm/injective/types/v1beta1/tx_ext.js +5 -0
  268. package/esm/injective/types/v1beta1/tx_response.js +13 -0
  269. package/esm/injective/wasmx/v1/events.js +15 -0
  270. package/esm/injective/wasmx/v1/genesis.js +11 -0
  271. package/esm/injective/wasmx/v1/proposal.js +25 -0
  272. package/esm/injective/wasmx/v1/query.js +39 -0
  273. package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
  274. package/esm/injective/wasmx/v1/tx.js +63 -0
  275. package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
  276. package/esm/injective/wasmx/v1/wasmx.js +10 -0
  277. package/esm/registry.js +1 -1
  278. package/esm/tendermint/abci/types.js +255 -0
  279. package/esm/tendermint/crypto/keys.js +6 -0
  280. package/esm/tendermint/crypto/proof.js +29 -0
  281. package/esm/tendermint/types/block.js +5 -0
  282. package/esm/tendermint/types/evidence.js +22 -0
  283. package/esm/tendermint/types/params.js +46 -0
  284. package/esm/tendermint/types/types.js +87 -0
  285. package/esm/tendermint/types/validator.js +15 -0
  286. package/esm/tendermint/version/types.js +16 -0
  287. package/esm/types.js +1 -1
  288. package/esm/utf8.js +1 -1
  289. package/esm/varint.js +1 -1
  290. package/extern.d.ts +1 -1
  291. package/extern.js +1 -1
  292. package/google/api/http.d.ts +343 -14
  293. package/google/api/http.js +283 -0
  294. package/google/protobuf/any.d.ts +102 -2
  295. package/google/protobuf/any.js +90 -0
  296. package/google/protobuf/descriptor.d.ts +715 -86
  297. package/google/protobuf/descriptor.js +215 -0
  298. package/google/protobuf/duration.d.ts +69 -0
  299. package/google/protobuf/duration.js +63 -0
  300. package/google/protobuf/timestamp.d.ts +100 -0
  301. package/google/protobuf/timestamp.js +94 -0
  302. package/helper-func-types.d.ts +1 -1
  303. package/helper-func-types.js +1 -1
  304. package/helpers.d.ts +1 -1
  305. package/helpers.js +1 -1
  306. package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
  307. package/ibc/applications/transfer/v1/transfer.js +24 -0
  308. package/ibc/applications/transfer/v1/tx.d.ts +125 -26
  309. package/ibc/applications/transfer/v1/tx.js +27 -0
  310. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
  311. package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  312. package/ibc/bundle.d.ts +1 -1
  313. package/ibc/bundle.js +2 -2
  314. package/ibc/core/channel/v1/channel.d.ts +316 -64
  315. package/ibc/core/channel/v1/channel.js +70 -0
  316. package/ibc/core/channel/v1/tx.d.ts +676 -70
  317. package/ibc/core/channel/v1/tx.js +242 -0
  318. package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
  319. package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  320. package/ibc/core/channel/v1/upgrade.d.ts +55 -4
  321. package/ibc/core/channel/v1/upgrade.js +25 -0
  322. package/ibc/core/client/v1/client.d.ts +129 -18
  323. package/ibc/core/client/v1/client.js +45 -0
  324. package/ibc/core/client/v1/tx.d.ts +338 -56
  325. package/ibc/core/client/v1/tx.js +90 -0
  326. package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
  327. package/ibc/core/client/v1/tx.rpc.func.js +42 -7
  328. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  329. package/ibc/core/commitment/v1/commitment.js +25 -0
  330. package/ibc/core/connection/v1/connection.d.ts +197 -36
  331. package/ibc/core/connection/v1/connection.js +47 -0
  332. package/ibc/core/connection/v1/tx.d.ts +250 -56
  333. package/ibc/core/connection/v1/tx.js +66 -0
  334. package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
  335. package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  336. package/index.d.ts +1 -1
  337. package/index.js +1 -1
  338. package/injective/auction/v1beta1/auction.d.ts +168 -26
  339. package/injective/auction/v1beta1/auction.js +30 -0
  340. package/injective/auction/v1beta1/genesis.d.ts +48 -12
  341. package/injective/auction/v1beta1/genesis.js +6 -0
  342. package/injective/auction/v1beta1/query.d.ts +138 -10
  343. package/injective/auction/v1beta1/query.js +52 -0
  344. package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
  345. package/injective/auction/v1beta1/query.rpc.func.js +23 -3
  346. package/injective/auction/v1beta1/tx.d.ts +81 -8
  347. package/injective/auction/v1beta1/tx.js +21 -0
  348. package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
  349. package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  350. package/injective/bundle.d.ts +14 -14
  351. package/injective/bundle.js +18 -18
  352. package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
  353. package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  354. package/injective/exchange/v1beta1/authz.d.ts +174 -6
  355. package/injective/exchange/v1beta1/authz.js +58 -0
  356. package/injective/exchange/v1beta1/events.d.ts +546 -2
  357. package/injective/exchange/v1beta1/events.js +180 -0
  358. package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
  359. package/injective/exchange/v1beta1/exchange.js +263 -0
  360. package/injective/exchange/v1beta1/genesis.d.ts +357 -38
  361. package/injective/exchange/v1beta1/genesis.js +89 -0
  362. package/injective/exchange/v1beta1/proposal.d.ts +589 -94
  363. package/injective/exchange/v1beta1/proposal.js +113 -0
  364. package/injective/exchange/v1beta1/query.d.ts +2162 -136
  365. package/injective/exchange/v1beta1/query.js +864 -0
  366. package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
  367. package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  368. package/injective/exchange/v1beta1/tx.d.ts +1503 -170
  369. package/injective/exchange/v1beta1/tx.js +487 -0
  370. package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
  371. package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  372. package/injective/insurance/v1beta1/events.d.ts +111 -12
  373. package/injective/insurance/v1beta1/events.js +25 -0
  374. package/injective/insurance/v1beta1/genesis.d.ts +30 -6
  375. package/injective/insurance/v1beta1/genesis.js +6 -0
  376. package/injective/insurance/v1beta1/insurance.d.ts +117 -24
  377. package/injective/insurance/v1beta1/insurance.js +15 -0
  378. package/injective/insurance/v1beta1/query.d.ts +162 -2
  379. package/injective/insurance/v1beta1/query.js +84 -0
  380. package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
  381. package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  382. package/injective/insurance/v1beta1/tx.d.ts +186 -24
  383. package/injective/insurance/v1beta1/tx.js +46 -0
  384. package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
  385. package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  386. package/injective/ocr/v1beta1/genesis.d.ts +171 -18
  387. package/injective/ocr/v1beta1/genesis.js +41 -0
  388. package/injective/ocr/v1beta1/ocr.d.ts +514 -68
  389. package/injective/ocr/v1beta1/ocr.js +108 -0
  390. package/injective/ocr/v1beta1/query.d.ts +210 -0
  391. package/injective/ocr/v1beta1/query.js +70 -0
  392. package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
  393. package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  394. package/injective/ocr/v1beta1/tx.d.ts +360 -30
  395. package/injective/ocr/v1beta1/tx.js +90 -0
  396. package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
  397. package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  398. package/injective/oracle/v1beta1/events.d.ts +174 -4
  399. package/injective/oracle/v1beta1/events.js +56 -0
  400. package/injective/oracle/v1beta1/genesis.d.ts +39 -4
  401. package/injective/oracle/v1beta1/genesis.js +11 -0
  402. package/injective/oracle/v1beta1/oracle.d.ts +514 -52
  403. package/injective/oracle/v1beta1/oracle.js +122 -0
  404. package/injective/oracle/v1beta1/proposal.d.ts +165 -0
  405. package/injective/oracle/v1beta1/proposal.js +55 -0
  406. package/injective/oracle/v1beta1/query.d.ts +502 -0
  407. package/injective/oracle/v1beta1/query.js +240 -0
  408. package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
  409. package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  410. package/injective/oracle/v1beta1/tx.d.ts +251 -10
  411. package/injective/oracle/v1beta1/tx.js +93 -0
  412. package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
  413. package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  414. package/injective/peggy/v1/attestation.d.ts +43 -0
  415. package/injective/peggy/v1/attestation.js +31 -0
  416. package/injective/peggy/v1/batch.d.ts +36 -4
  417. package/injective/peggy/v1/batch.js +12 -0
  418. package/injective/peggy/v1/events.d.ts +255 -0
  419. package/injective/peggy/v1/events.js +85 -0
  420. package/injective/peggy/v1/genesis.d.ts +18 -2
  421. package/injective/peggy/v1/genesis.js +6 -0
  422. package/injective/peggy/v1/msgs.d.ts +473 -10
  423. package/injective/peggy/v1/msgs.js +223 -0
  424. package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
  425. package/injective/peggy/v1/msgs.rpc.func.js +73 -3
  426. package/injective/peggy/v1/params.d.ts +15 -0
  427. package/injective/peggy/v1/params.js +5 -0
  428. package/injective/peggy/v1/pool.d.ts +33 -2
  429. package/injective/peggy/v1/pool.js +11 -0
  430. package/injective/peggy/v1/proposal.d.ts +30 -0
  431. package/injective/peggy/v1/proposal.js +10 -0
  432. package/injective/peggy/v1/query.d.ts +626 -0
  433. package/injective/peggy/v1/query.js +214 -0
  434. package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
  435. package/injective/peggy/v1/query.rpc.func.js +110 -5
  436. package/injective/peggy/v1/types.d.ts +85 -6
  437. package/injective/peggy/v1/types.js +37 -0
  438. package/injective/permissions/v1beta1/events.d.ts +15 -0
  439. package/injective/permissions/v1beta1/events.js +5 -0
  440. package/injective/permissions/v1beta1/genesis.d.ts +24 -4
  441. package/injective/permissions/v1beta1/genesis.js +6 -0
  442. package/injective/permissions/v1beta1/params.d.ts +18 -2
  443. package/injective/permissions/v1beta1/params.js +6 -0
  444. package/injective/permissions/v1beta1/permissions.d.ts +117 -12
  445. package/injective/permissions/v1beta1/permissions.js +33 -0
  446. package/injective/permissions/v1beta1/query.d.ts +180 -6
  447. package/injective/permissions/v1beta1/query.js +74 -0
  448. package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
  449. package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  450. package/injective/permissions/v1beta1/tx.d.ts +318 -16
  451. package/injective/permissions/v1beta1/tx.js +90 -0
  452. package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
  453. package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  454. package/injective/stream/v1beta1/query.d.ts +336 -2
  455. package/injective/stream/v1beta1/query.js +110 -0
  456. package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
  457. package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  458. package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
  459. package/injective/tokenfactory/v1beta1/events.js +25 -0
  460. package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
  461. package/injective/tokenfactory/v1beta1/genesis.js +14 -0
  462. package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
  463. package/injective/tokenfactory/v1beta1/params.js +6 -0
  464. package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
  465. package/injective/tokenfactory/v1beta1/query.js +54 -0
  466. package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
  467. package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  468. package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
  469. package/injective/tokenfactory/v1beta1/tx.js +83 -0
  470. package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
  471. package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  472. package/injective/types/v1beta1/account.d.ts +13 -0
  473. package/injective/types/v1beta1/account.js +7 -0
  474. package/injective/types/v1beta1/tx_ext.d.ts +15 -0
  475. package/injective/types/v1beta1/tx_ext.js +5 -0
  476. package/injective/types/v1beta1/tx_response.d.ts +31 -2
  477. package/injective/types/v1beta1/tx_response.js +13 -0
  478. package/injective/wasmx/v1/events.d.ts +45 -0
  479. package/injective/wasmx/v1/events.js +15 -0
  480. package/injective/wasmx/v1/genesis.d.ts +39 -4
  481. package/injective/wasmx/v1/genesis.js +11 -0
  482. package/injective/wasmx/v1/proposal.d.ts +99 -8
  483. package/injective/wasmx/v1/proposal.js +25 -0
  484. package/injective/wasmx/v1/query.d.ts +85 -2
  485. package/injective/wasmx/v1/query.js +39 -0
  486. package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
  487. package/injective/wasmx/v1/query.rpc.func.js +18 -3
  488. package/injective/wasmx/v1/tx.d.ts +253 -26
  489. package/injective/wasmx/v1/tx.js +63 -0
  490. package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
  491. package/injective/wasmx/v1/tx.rpc.func.js +30 -0
  492. package/injective/wasmx/v1/wasmx.d.ts +60 -10
  493. package/injective/wasmx/v1/wasmx.js +10 -0
  494. package/package.json +9 -9
  495. package/registry.d.ts +1 -1
  496. package/registry.js +1 -1
  497. package/tendermint/abci/types.d.ts +971 -98
  498. package/tendermint/abci/types.js +255 -0
  499. package/tendermint/crypto/keys.d.ts +18 -2
  500. package/tendermint/crypto/keys.js +6 -0
  501. package/tendermint/crypto/proof.d.ts +89 -6
  502. package/tendermint/crypto/proof.js +29 -0
  503. package/tendermint/types/block.d.ts +15 -0
  504. package/tendermint/types/block.js +5 -0
  505. package/tendermint/types/evidence.d.ts +66 -4
  506. package/tendermint/types/evidence.js +22 -0
  507. package/tendermint/types/params.d.ts +112 -8
  508. package/tendermint/types/params.js +46 -0
  509. package/tendermint/types/types.d.ts +327 -42
  510. package/tendermint/types/types.js +87 -0
  511. package/tendermint/types/validator.d.ts +45 -0
  512. package/tendermint/types/validator.js +15 -0
  513. package/tendermint/version/types.d.ts +28 -0
  514. package/tendermint/version/types.js +16 -0
  515. package/types.d.ts +1 -1
  516. package/types.js +1 -1
  517. package/utf8.d.ts +1 -1
  518. package/utf8.js +1 -1
  519. package/varint.d.ts +1 -1
  520. package/varint.js +1 -1
@@ -1,20 +1,25 @@
1
1
  import { DecCoin, DecCoinAmino, Coin, CoinAmino } from "../../base/v1beta1/coin";
2
2
  import { BinaryReader, BinaryWriter } from "../../../binary";
3
3
  import { DeepPartial } from "../../../helpers";
4
- /** Params defines the set of params for the distribution module. */
4
+ /**
5
+ * Params defines the set of params for the distribution module.
6
+ * @name Params
7
+ * @package cosmos.distribution.v1beta1
8
+ * @see proto type: cosmos.distribution.v1beta1.Params
9
+ */
5
10
  export interface Params {
6
11
  communityTax: string;
7
12
  /**
8
13
  * Deprecated: The base_proposer_reward field is deprecated and is no longer used
9
14
  * in the x/distribution module's reward mechanism.
15
+ * @deprecated
10
16
  */
11
- /** @deprecated */
12
17
  baseProposerReward: string;
13
18
  /**
14
19
  * Deprecated: The bonus_proposer_reward field is deprecated and is no longer used
15
20
  * in the x/distribution module's reward mechanism.
21
+ * @deprecated
16
22
  */
17
- /** @deprecated */
18
23
  bonusProposerReward: string;
19
24
  withdrawAddrEnabled: boolean;
20
25
  }
@@ -22,20 +27,25 @@ export interface ParamsProtoMsg {
22
27
  typeUrl: "/cosmos.distribution.v1beta1.Params";
23
28
  value: Uint8Array;
24
29
  }
25
- /** Params defines the set of params for the distribution module. */
30
+ /**
31
+ * Params defines the set of params for the distribution module.
32
+ * @name ParamsAmino
33
+ * @package cosmos.distribution.v1beta1
34
+ * @see proto type: cosmos.distribution.v1beta1.Params
35
+ */
26
36
  export interface ParamsAmino {
27
37
  community_tax: string;
28
38
  /**
29
39
  * Deprecated: The base_proposer_reward field is deprecated and is no longer used
30
40
  * in the x/distribution module's reward mechanism.
41
+ * @deprecated
31
42
  */
32
- /** @deprecated */
33
43
  base_proposer_reward: string;
34
44
  /**
35
45
  * Deprecated: The bonus_proposer_reward field is deprecated and is no longer used
36
46
  * in the x/distribution module's reward mechanism.
47
+ * @deprecated
37
48
  */
38
- /** @deprecated */
39
49
  bonus_proposer_reward: string;
40
50
  withdraw_addr_enabled: boolean;
41
51
  }
@@ -56,6 +66,9 @@ export interface ParamsAminoMsg {
56
66
  * + number of slashes which ended the associated period (and might need to
57
67
  * read that record)
58
68
  * + one per validator for the zeroeth period, set on initialization
69
+ * @name ValidatorHistoricalRewards
70
+ * @package cosmos.distribution.v1beta1
71
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
59
72
  */
60
73
  export interface ValidatorHistoricalRewards {
61
74
  cumulativeRewardRatio: DecCoin[];
@@ -78,6 +91,9 @@ export interface ValidatorHistoricalRewardsProtoMsg {
78
91
  * + number of slashes which ended the associated period (and might need to
79
92
  * read that record)
80
93
  * + one per validator for the zeroeth period, set on initialization
94
+ * @name ValidatorHistoricalRewardsAmino
95
+ * @package cosmos.distribution.v1beta1
96
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
81
97
  */
82
98
  export interface ValidatorHistoricalRewardsAmino {
83
99
  cumulative_reward_ratio: DecCoinAmino[];
@@ -91,6 +107,9 @@ export interface ValidatorHistoricalRewardsAminoMsg {
91
107
  * ValidatorCurrentRewards represents current rewards and current
92
108
  * period for a validator kept as a running counter and incremented
93
109
  * each block as long as the validator's tokens remain constant.
110
+ * @name ValidatorCurrentRewards
111
+ * @package cosmos.distribution.v1beta1
112
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
94
113
  */
95
114
  export interface ValidatorCurrentRewards {
96
115
  rewards: DecCoin[];
@@ -104,6 +123,9 @@ export interface ValidatorCurrentRewardsProtoMsg {
104
123
  * ValidatorCurrentRewards represents current rewards and current
105
124
  * period for a validator kept as a running counter and incremented
106
125
  * each block as long as the validator's tokens remain constant.
126
+ * @name ValidatorCurrentRewardsAmino
127
+ * @package cosmos.distribution.v1beta1
128
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
107
129
  */
108
130
  export interface ValidatorCurrentRewardsAmino {
109
131
  rewards: DecCoinAmino[];
@@ -116,6 +138,9 @@ export interface ValidatorCurrentRewardsAminoMsg {
116
138
  /**
117
139
  * ValidatorAccumulatedCommission represents accumulated commission
118
140
  * for a validator kept as a running counter, can be withdrawn at any time.
141
+ * @name ValidatorAccumulatedCommission
142
+ * @package cosmos.distribution.v1beta1
143
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
119
144
  */
120
145
  export interface ValidatorAccumulatedCommission {
121
146
  commission: DecCoin[];
@@ -127,6 +152,9 @@ export interface ValidatorAccumulatedCommissionProtoMsg {
127
152
  /**
128
153
  * ValidatorAccumulatedCommission represents accumulated commission
129
154
  * for a validator kept as a running counter, can be withdrawn at any time.
155
+ * @name ValidatorAccumulatedCommissionAmino
156
+ * @package cosmos.distribution.v1beta1
157
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
130
158
  */
131
159
  export interface ValidatorAccumulatedCommissionAmino {
132
160
  commission: DecCoinAmino[];
@@ -138,6 +166,9 @@ export interface ValidatorAccumulatedCommissionAminoMsg {
138
166
  /**
139
167
  * ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
140
168
  * for a validator inexpensive to track, allows simple sanity checks.
169
+ * @name ValidatorOutstandingRewards
170
+ * @package cosmos.distribution.v1beta1
171
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
141
172
  */
142
173
  export interface ValidatorOutstandingRewards {
143
174
  rewards: DecCoin[];
@@ -149,6 +180,9 @@ export interface ValidatorOutstandingRewardsProtoMsg {
149
180
  /**
150
181
  * ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
151
182
  * for a validator inexpensive to track, allows simple sanity checks.
183
+ * @name ValidatorOutstandingRewardsAmino
184
+ * @package cosmos.distribution.v1beta1
185
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
152
186
  */
153
187
  export interface ValidatorOutstandingRewardsAmino {
154
188
  rewards: DecCoinAmino[];
@@ -162,6 +196,9 @@ export interface ValidatorOutstandingRewardsAminoMsg {
162
196
  * Height is implicit within the store key.
163
197
  * This is needed to calculate appropriate amount of staking tokens
164
198
  * for delegations which are withdrawn after a slash has occurred.
199
+ * @name ValidatorSlashEvent
200
+ * @package cosmos.distribution.v1beta1
201
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
165
202
  */
166
203
  export interface ValidatorSlashEvent {
167
204
  validatorPeriod: bigint;
@@ -176,6 +213,9 @@ export interface ValidatorSlashEventProtoMsg {
176
213
  * Height is implicit within the store key.
177
214
  * This is needed to calculate appropriate amount of staking tokens
178
215
  * for delegations which are withdrawn after a slash has occurred.
216
+ * @name ValidatorSlashEventAmino
217
+ * @package cosmos.distribution.v1beta1
218
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
179
219
  */
180
220
  export interface ValidatorSlashEventAmino {
181
221
  validator_period: string;
@@ -185,7 +225,12 @@ export interface ValidatorSlashEventAminoMsg {
185
225
  type: "cosmos-sdk/ValidatorSlashEvent";
186
226
  value: ValidatorSlashEventAmino;
187
227
  }
188
- /** ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. */
228
+ /**
229
+ * ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
230
+ * @name ValidatorSlashEvents
231
+ * @package cosmos.distribution.v1beta1
232
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
233
+ */
189
234
  export interface ValidatorSlashEvents {
190
235
  validatorSlashEvents: ValidatorSlashEvent[];
191
236
  }
@@ -193,7 +238,12 @@ export interface ValidatorSlashEventsProtoMsg {
193
238
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvents";
194
239
  value: Uint8Array;
195
240
  }
196
- /** ValidatorSlashEvents is a collection of ValidatorSlashEvent messages. */
241
+ /**
242
+ * ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
243
+ * @name ValidatorSlashEventsAmino
244
+ * @package cosmos.distribution.v1beta1
245
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
246
+ */
197
247
  export interface ValidatorSlashEventsAmino {
198
248
  validator_slash_events: ValidatorSlashEventAmino[];
199
249
  }
@@ -201,7 +251,12 @@ export interface ValidatorSlashEventsAminoMsg {
201
251
  type: "cosmos-sdk/ValidatorSlashEvents";
202
252
  value: ValidatorSlashEventsAmino;
203
253
  }
204
- /** FeePool is the global fee pool for distribution. */
254
+ /**
255
+ * FeePool is the global fee pool for distribution.
256
+ * @name FeePool
257
+ * @package cosmos.distribution.v1beta1
258
+ * @see proto type: cosmos.distribution.v1beta1.FeePool
259
+ */
205
260
  export interface FeePool {
206
261
  communityPool: DecCoin[];
207
262
  }
@@ -209,7 +264,12 @@ export interface FeePoolProtoMsg {
209
264
  typeUrl: "/cosmos.distribution.v1beta1.FeePool";
210
265
  value: Uint8Array;
211
266
  }
212
- /** FeePool is the global fee pool for distribution. */
267
+ /**
268
+ * FeePool is the global fee pool for distribution.
269
+ * @name FeePoolAmino
270
+ * @package cosmos.distribution.v1beta1
271
+ * @see proto type: cosmos.distribution.v1beta1.FeePool
272
+ */
213
273
  export interface FeePoolAmino {
214
274
  community_pool: DecCoinAmino[];
215
275
  }
@@ -226,8 +286,11 @@ export interface FeePoolAminoMsg {
226
286
  * longer a need for an explicit CommunityPoolSpendProposal. To spend community
227
287
  * pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
228
288
  * module via a v1 governance proposal.
289
+ * @name CommunityPoolSpendProposal
290
+ * @package cosmos.distribution.v1beta1
291
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
292
+ * @deprecated
229
293
  */
230
- /** @deprecated */
231
294
  export interface CommunityPoolSpendProposal {
232
295
  title: string;
233
296
  description: string;
@@ -247,8 +310,11 @@ export interface CommunityPoolSpendProposalProtoMsg {
247
310
  * longer a need for an explicit CommunityPoolSpendProposal. To spend community
248
311
  * pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
249
312
  * module via a v1 governance proposal.
313
+ * @name CommunityPoolSpendProposalAmino
314
+ * @package cosmos.distribution.v1beta1
315
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
316
+ * @deprecated
250
317
  */
251
- /** @deprecated */
252
318
  export interface CommunityPoolSpendProposalAmino {
253
319
  title: string;
254
320
  description: string;
@@ -266,6 +332,9 @@ export interface CommunityPoolSpendProposalAminoMsg {
266
332
  * occurred). NOTE: Even though validators are slashed to whole staking tokens,
267
333
  * the delegators within the validator may be left with less than a full token,
268
334
  * thus sdk.Dec is used.
335
+ * @name DelegatorStartingInfo
336
+ * @package cosmos.distribution.v1beta1
337
+ * @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
269
338
  */
270
339
  export interface DelegatorStartingInfo {
271
340
  previousPeriod: bigint;
@@ -283,6 +352,9 @@ export interface DelegatorStartingInfoProtoMsg {
283
352
  * occurred). NOTE: Even though validators are slashed to whole staking tokens,
284
353
  * the delegators within the validator may be left with less than a full token,
285
354
  * thus sdk.Dec is used.
355
+ * @name DelegatorStartingInfoAmino
356
+ * @package cosmos.distribution.v1beta1
357
+ * @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
286
358
  */
287
359
  export interface DelegatorStartingInfoAmino {
288
360
  previous_period: string;
@@ -296,6 +368,9 @@ export interface DelegatorStartingInfoAminoMsg {
296
368
  /**
297
369
  * DelegationDelegatorReward represents the properties
298
370
  * of a delegator's delegation reward.
371
+ * @name DelegationDelegatorReward
372
+ * @package cosmos.distribution.v1beta1
373
+ * @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
299
374
  */
300
375
  export interface DelegationDelegatorReward {
301
376
  validatorAddress: string;
@@ -308,6 +383,9 @@ export interface DelegationDelegatorRewardProtoMsg {
308
383
  /**
309
384
  * DelegationDelegatorReward represents the properties
310
385
  * of a delegator's delegation reward.
386
+ * @name DelegationDelegatorRewardAmino
387
+ * @package cosmos.distribution.v1beta1
388
+ * @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
311
389
  */
312
390
  export interface DelegationDelegatorRewardAmino {
313
391
  validator_address: string;
@@ -320,6 +398,9 @@ export interface DelegationDelegatorRewardAminoMsg {
320
398
  /**
321
399
  * CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
322
400
  * with a deposit
401
+ * @name CommunityPoolSpendProposalWithDeposit
402
+ * @package cosmos.distribution.v1beta1
403
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
323
404
  */
324
405
  export interface CommunityPoolSpendProposalWithDeposit {
325
406
  title: string;
@@ -335,6 +416,9 @@ export interface CommunityPoolSpendProposalWithDepositProtoMsg {
335
416
  /**
336
417
  * CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
337
418
  * with a deposit
419
+ * @name CommunityPoolSpendProposalWithDepositAmino
420
+ * @package cosmos.distribution.v1beta1
421
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
338
422
  */
339
423
  export interface CommunityPoolSpendProposalWithDepositAmino {
340
424
  title: string;
@@ -347,6 +431,12 @@ export interface CommunityPoolSpendProposalWithDepositAminoMsg {
347
431
  type: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit";
348
432
  value: CommunityPoolSpendProposalWithDepositAmino;
349
433
  }
434
+ /**
435
+ * Params defines the set of params for the distribution module.
436
+ * @name Params
437
+ * @package cosmos.distribution.v1beta1
438
+ * @see proto type: cosmos.distribution.v1beta1.Params
439
+ */
350
440
  export declare const Params: {
351
441
  typeUrl: string;
352
442
  aminoType: string;
@@ -364,6 +454,23 @@ export declare const Params: {
364
454
  toProtoMsg(message: Params): ParamsProtoMsg;
365
455
  registerTypeUrl(): void;
366
456
  };
457
+ /**
458
+ * ValidatorHistoricalRewards represents historical rewards for a validator.
459
+ * Height is implicit within the store key.
460
+ * Cumulative reward ratio is the sum from the zeroeth period
461
+ * until this period of rewards / tokens, per the spec.
462
+ * The reference count indicates the number of objects
463
+ * which might need to reference this historical entry at any point.
464
+ * ReferenceCount =
465
+ * number of outstanding delegations which ended the associated period (and
466
+ * might need to read that record)
467
+ * + number of slashes which ended the associated period (and might need to
468
+ * read that record)
469
+ * + one per validator for the zeroeth period, set on initialization
470
+ * @name ValidatorHistoricalRewards
471
+ * @package cosmos.distribution.v1beta1
472
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
473
+ */
367
474
  export declare const ValidatorHistoricalRewards: {
368
475
  typeUrl: string;
369
476
  aminoType: string;
@@ -381,6 +488,14 @@ export declare const ValidatorHistoricalRewards: {
381
488
  toProtoMsg(message: ValidatorHistoricalRewards): ValidatorHistoricalRewardsProtoMsg;
382
489
  registerTypeUrl(): void;
383
490
  };
491
+ /**
492
+ * ValidatorCurrentRewards represents current rewards and current
493
+ * period for a validator kept as a running counter and incremented
494
+ * each block as long as the validator's tokens remain constant.
495
+ * @name ValidatorCurrentRewards
496
+ * @package cosmos.distribution.v1beta1
497
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
498
+ */
384
499
  export declare const ValidatorCurrentRewards: {
385
500
  typeUrl: string;
386
501
  aminoType: string;
@@ -398,6 +513,13 @@ export declare const ValidatorCurrentRewards: {
398
513
  toProtoMsg(message: ValidatorCurrentRewards): ValidatorCurrentRewardsProtoMsg;
399
514
  registerTypeUrl(): void;
400
515
  };
516
+ /**
517
+ * ValidatorAccumulatedCommission represents accumulated commission
518
+ * for a validator kept as a running counter, can be withdrawn at any time.
519
+ * @name ValidatorAccumulatedCommission
520
+ * @package cosmos.distribution.v1beta1
521
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
522
+ */
401
523
  export declare const ValidatorAccumulatedCommission: {
402
524
  typeUrl: string;
403
525
  aminoType: string;
@@ -415,6 +537,13 @@ export declare const ValidatorAccumulatedCommission: {
415
537
  toProtoMsg(message: ValidatorAccumulatedCommission): ValidatorAccumulatedCommissionProtoMsg;
416
538
  registerTypeUrl(): void;
417
539
  };
540
+ /**
541
+ * ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
542
+ * for a validator inexpensive to track, allows simple sanity checks.
543
+ * @name ValidatorOutstandingRewards
544
+ * @package cosmos.distribution.v1beta1
545
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
546
+ */
418
547
  export declare const ValidatorOutstandingRewards: {
419
548
  typeUrl: string;
420
549
  aminoType: string;
@@ -432,6 +561,15 @@ export declare const ValidatorOutstandingRewards: {
432
561
  toProtoMsg(message: ValidatorOutstandingRewards): ValidatorOutstandingRewardsProtoMsg;
433
562
  registerTypeUrl(): void;
434
563
  };
564
+ /**
565
+ * ValidatorSlashEvent represents a validator slash event.
566
+ * Height is implicit within the store key.
567
+ * This is needed to calculate appropriate amount of staking tokens
568
+ * for delegations which are withdrawn after a slash has occurred.
569
+ * @name ValidatorSlashEvent
570
+ * @package cosmos.distribution.v1beta1
571
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
572
+ */
435
573
  export declare const ValidatorSlashEvent: {
436
574
  typeUrl: string;
437
575
  aminoType: string;
@@ -449,6 +587,12 @@ export declare const ValidatorSlashEvent: {
449
587
  toProtoMsg(message: ValidatorSlashEvent): ValidatorSlashEventProtoMsg;
450
588
  registerTypeUrl(): void;
451
589
  };
590
+ /**
591
+ * ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
592
+ * @name ValidatorSlashEvents
593
+ * @package cosmos.distribution.v1beta1
594
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
595
+ */
452
596
  export declare const ValidatorSlashEvents: {
453
597
  typeUrl: string;
454
598
  aminoType: string;
@@ -466,6 +610,12 @@ export declare const ValidatorSlashEvents: {
466
610
  toProtoMsg(message: ValidatorSlashEvents): ValidatorSlashEventsProtoMsg;
467
611
  registerTypeUrl(): void;
468
612
  };
613
+ /**
614
+ * FeePool is the global fee pool for distribution.
615
+ * @name FeePool
616
+ * @package cosmos.distribution.v1beta1
617
+ * @see proto type: cosmos.distribution.v1beta1.FeePool
618
+ */
469
619
  export declare const FeePool: {
470
620
  typeUrl: string;
471
621
  aminoType: string;
@@ -483,6 +633,20 @@ export declare const FeePool: {
483
633
  toProtoMsg(message: FeePool): FeePoolProtoMsg;
484
634
  registerTypeUrl(): void;
485
635
  };
636
+ /**
637
+ * CommunityPoolSpendProposal details a proposal for use of community funds,
638
+ * together with how many coins are proposed to be spent, and to which
639
+ * recipient account.
640
+ *
641
+ * Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
642
+ * longer a need for an explicit CommunityPoolSpendProposal. To spend community
643
+ * pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
644
+ * module via a v1 governance proposal.
645
+ * @name CommunityPoolSpendProposal
646
+ * @package cosmos.distribution.v1beta1
647
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
648
+ * @deprecated
649
+ */
486
650
  export declare const CommunityPoolSpendProposal: {
487
651
  typeUrl: string;
488
652
  aminoType: string;
@@ -500,6 +664,17 @@ export declare const CommunityPoolSpendProposal: {
500
664
  toProtoMsg(message: CommunityPoolSpendProposal): CommunityPoolSpendProposalProtoMsg;
501
665
  registerTypeUrl(): void;
502
666
  };
667
+ /**
668
+ * DelegatorStartingInfo represents the starting info for a delegator reward
669
+ * period. It tracks the previous validator period, the delegation's amount of
670
+ * staking token, and the creation height (to check later on if any slashes have
671
+ * occurred). NOTE: Even though validators are slashed to whole staking tokens,
672
+ * the delegators within the validator may be left with less than a full token,
673
+ * thus sdk.Dec is used.
674
+ * @name DelegatorStartingInfo
675
+ * @package cosmos.distribution.v1beta1
676
+ * @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
677
+ */
503
678
  export declare const DelegatorStartingInfo: {
504
679
  typeUrl: string;
505
680
  aminoType: string;
@@ -517,6 +692,13 @@ export declare const DelegatorStartingInfo: {
517
692
  toProtoMsg(message: DelegatorStartingInfo): DelegatorStartingInfoProtoMsg;
518
693
  registerTypeUrl(): void;
519
694
  };
695
+ /**
696
+ * DelegationDelegatorReward represents the properties
697
+ * of a delegator's delegation reward.
698
+ * @name DelegationDelegatorReward
699
+ * @package cosmos.distribution.v1beta1
700
+ * @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
701
+ */
520
702
  export declare const DelegationDelegatorReward: {
521
703
  typeUrl: string;
522
704
  aminoType: string;
@@ -534,6 +716,13 @@ export declare const DelegationDelegatorReward: {
534
716
  toProtoMsg(message: DelegationDelegatorReward): DelegationDelegatorRewardProtoMsg;
535
717
  registerTypeUrl(): void;
536
718
  };
719
+ /**
720
+ * CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
721
+ * with a deposit
722
+ * @name CommunityPoolSpendProposalWithDeposit
723
+ * @package cosmos.distribution.v1beta1
724
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
725
+ */
537
726
  export declare const CommunityPoolSpendProposalWithDeposit: {
538
727
  typeUrl: string;
539
728
  aminoType: string;
@@ -13,6 +13,12 @@ function createBaseParams() {
13
13
  withdrawAddrEnabled: false
14
14
  };
15
15
  }
16
+ /**
17
+ * Params defines the set of params for the distribution module.
18
+ * @name Params
19
+ * @package cosmos.distribution.v1beta1
20
+ * @see proto type: cosmos.distribution.v1beta1.Params
21
+ */
16
22
  exports.Params = {
17
23
  typeUrl: "/cosmos.distribution.v1beta1.Params",
18
24
  aminoType: "cosmos-sdk/x/distribution/Params",
@@ -124,6 +130,23 @@ function createBaseValidatorHistoricalRewards() {
124
130
  referenceCount: 0
125
131
  };
126
132
  }
133
+ /**
134
+ * ValidatorHistoricalRewards represents historical rewards for a validator.
135
+ * Height is implicit within the store key.
136
+ * Cumulative reward ratio is the sum from the zeroeth period
137
+ * until this period of rewards / tokens, per the spec.
138
+ * The reference count indicates the number of objects
139
+ * which might need to reference this historical entry at any point.
140
+ * ReferenceCount =
141
+ * number of outstanding delegations which ended the associated period (and
142
+ * might need to read that record)
143
+ * + number of slashes which ended the associated period (and might need to
144
+ * read that record)
145
+ * + one per validator for the zeroeth period, set on initialization
146
+ * @name ValidatorHistoricalRewards
147
+ * @package cosmos.distribution.v1beta1
148
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorHistoricalRewards
149
+ */
127
150
  exports.ValidatorHistoricalRewards = {
128
151
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorHistoricalRewards",
129
152
  aminoType: "cosmos-sdk/ValidatorHistoricalRewards",
@@ -221,6 +244,14 @@ function createBaseValidatorCurrentRewards() {
221
244
  period: BigInt(0)
222
245
  };
223
246
  }
247
+ /**
248
+ * ValidatorCurrentRewards represents current rewards and current
249
+ * period for a validator kept as a running counter and incremented
250
+ * each block as long as the validator's tokens remain constant.
251
+ * @name ValidatorCurrentRewards
252
+ * @package cosmos.distribution.v1beta1
253
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorCurrentRewards
254
+ */
224
255
  exports.ValidatorCurrentRewards = {
225
256
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorCurrentRewards",
226
257
  aminoType: "cosmos-sdk/ValidatorCurrentRewards",
@@ -317,6 +348,13 @@ function createBaseValidatorAccumulatedCommission() {
317
348
  commission: []
318
349
  };
319
350
  }
351
+ /**
352
+ * ValidatorAccumulatedCommission represents accumulated commission
353
+ * for a validator kept as a running counter, can be withdrawn at any time.
354
+ * @name ValidatorAccumulatedCommission
355
+ * @package cosmos.distribution.v1beta1
356
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorAccumulatedCommission
357
+ */
320
358
  exports.ValidatorAccumulatedCommission = {
321
359
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorAccumulatedCommission",
322
360
  aminoType: "cosmos-sdk/ValidatorAccumulatedCommission",
@@ -402,6 +440,13 @@ function createBaseValidatorOutstandingRewards() {
402
440
  rewards: []
403
441
  };
404
442
  }
443
+ /**
444
+ * ValidatorOutstandingRewards represents outstanding (un-withdrawn) rewards
445
+ * for a validator inexpensive to track, allows simple sanity checks.
446
+ * @name ValidatorOutstandingRewards
447
+ * @package cosmos.distribution.v1beta1
448
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorOutstandingRewards
449
+ */
405
450
  exports.ValidatorOutstandingRewards = {
406
451
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorOutstandingRewards",
407
452
  aminoType: "cosmos-sdk/ValidatorOutstandingRewards",
@@ -488,6 +533,15 @@ function createBaseValidatorSlashEvent() {
488
533
  fraction: ""
489
534
  };
490
535
  }
536
+ /**
537
+ * ValidatorSlashEvent represents a validator slash event.
538
+ * Height is implicit within the store key.
539
+ * This is needed to calculate appropriate amount of staking tokens
540
+ * for delegations which are withdrawn after a slash has occurred.
541
+ * @name ValidatorSlashEvent
542
+ * @package cosmos.distribution.v1beta1
543
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvent
544
+ */
491
545
  exports.ValidatorSlashEvent = {
492
546
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvent",
493
547
  aminoType: "cosmos-sdk/ValidatorSlashEvent",
@@ -576,6 +630,12 @@ function createBaseValidatorSlashEvents() {
576
630
  validatorSlashEvents: []
577
631
  };
578
632
  }
633
+ /**
634
+ * ValidatorSlashEvents is a collection of ValidatorSlashEvent messages.
635
+ * @name ValidatorSlashEvents
636
+ * @package cosmos.distribution.v1beta1
637
+ * @see proto type: cosmos.distribution.v1beta1.ValidatorSlashEvents
638
+ */
579
639
  exports.ValidatorSlashEvents = {
580
640
  typeUrl: "/cosmos.distribution.v1beta1.ValidatorSlashEvents",
581
641
  aminoType: "cosmos-sdk/ValidatorSlashEvents",
@@ -661,6 +721,12 @@ function createBaseFeePool() {
661
721
  communityPool: []
662
722
  };
663
723
  }
724
+ /**
725
+ * FeePool is the global fee pool for distribution.
726
+ * @name FeePool
727
+ * @package cosmos.distribution.v1beta1
728
+ * @see proto type: cosmos.distribution.v1beta1.FeePool
729
+ */
664
730
  exports.FeePool = {
665
731
  typeUrl: "/cosmos.distribution.v1beta1.FeePool",
666
732
  aminoType: "cosmos-sdk/FeePool",
@@ -749,6 +815,20 @@ function createBaseCommunityPoolSpendProposal() {
749
815
  amount: []
750
816
  };
751
817
  }
818
+ /**
819
+ * CommunityPoolSpendProposal details a proposal for use of community funds,
820
+ * together with how many coins are proposed to be spent, and to which
821
+ * recipient account.
822
+ *
823
+ * Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
824
+ * longer a need for an explicit CommunityPoolSpendProposal. To spend community
825
+ * pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
826
+ * module via a v1 governance proposal.
827
+ * @name CommunityPoolSpendProposal
828
+ * @package cosmos.distribution.v1beta1
829
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposal
830
+ * @deprecated
831
+ */
752
832
  exports.CommunityPoolSpendProposal = {
753
833
  typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposal",
754
834
  aminoType: "cosmos-sdk/CommunityPoolSpendProposal",
@@ -871,6 +951,17 @@ function createBaseDelegatorStartingInfo() {
871
951
  height: BigInt(0)
872
952
  };
873
953
  }
954
+ /**
955
+ * DelegatorStartingInfo represents the starting info for a delegator reward
956
+ * period. It tracks the previous validator period, the delegation's amount of
957
+ * staking token, and the creation height (to check later on if any slashes have
958
+ * occurred). NOTE: Even though validators are slashed to whole staking tokens,
959
+ * the delegators within the validator may be left with less than a full token,
960
+ * thus sdk.Dec is used.
961
+ * @name DelegatorStartingInfo
962
+ * @package cosmos.distribution.v1beta1
963
+ * @see proto type: cosmos.distribution.v1beta1.DelegatorStartingInfo
964
+ */
874
965
  exports.DelegatorStartingInfo = {
875
966
  typeUrl: "/cosmos.distribution.v1beta1.DelegatorStartingInfo",
876
967
  aminoType: "cosmos-sdk/DelegatorStartingInfo",
@@ -971,6 +1062,13 @@ function createBaseDelegationDelegatorReward() {
971
1062
  reward: []
972
1063
  };
973
1064
  }
1065
+ /**
1066
+ * DelegationDelegatorReward represents the properties
1067
+ * of a delegator's delegation reward.
1068
+ * @name DelegationDelegatorReward
1069
+ * @package cosmos.distribution.v1beta1
1070
+ * @see proto type: cosmos.distribution.v1beta1.DelegationDelegatorReward
1071
+ */
974
1072
  exports.DelegationDelegatorReward = {
975
1073
  typeUrl: "/cosmos.distribution.v1beta1.DelegationDelegatorReward",
976
1074
  aminoType: "cosmos-sdk/DelegationDelegatorReward",
@@ -1071,6 +1169,13 @@ function createBaseCommunityPoolSpendProposalWithDeposit() {
1071
1169
  deposit: ""
1072
1170
  };
1073
1171
  }
1172
+ /**
1173
+ * CommunityPoolSpendProposalWithDeposit defines a CommunityPoolSpendProposal
1174
+ * with a deposit
1175
+ * @name CommunityPoolSpendProposalWithDeposit
1176
+ * @package cosmos.distribution.v1beta1
1177
+ * @see proto type: cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit
1178
+ */
1074
1179
  exports.CommunityPoolSpendProposalWithDeposit = {
1075
1180
  typeUrl: "/cosmos.distribution.v1beta1.CommunityPoolSpendProposalWithDeposit",
1076
1181
  aminoType: "cosmos-sdk/CommunityPoolSpendProposalWithDeposit",