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
@@ -180,6 +180,30 @@ function createBaseExistenceProof() {
180
180
  path: []
181
181
  };
182
182
  }
183
+ /**
184
+ * ExistenceProof takes a key and a value and a set of steps to perform on it.
185
+ * The result of peforming all these steps will provide a "root hash", which can
186
+ * be compared to the value in a header.
187
+ *
188
+ * Since it is computationally infeasible to produce a hash collission for any of the used
189
+ * cryptographic hash functions, if someone can provide a series of operations to transform
190
+ * a given key and value into a root hash that matches some trusted root, these key and values
191
+ * must be in the referenced merkle tree.
192
+ *
193
+ * The only possible issue is maliablity in LeafOp, such as providing extra prefix data,
194
+ * which should be controlled by a spec. Eg. with lengthOp as NONE,
195
+ * prefix = FOO, key = BAR, value = CHOICE
196
+ * and
197
+ * prefix = F, key = OOBAR, value = CHOICE
198
+ * would produce the same value.
199
+ *
200
+ * With LengthOp this is tricker but not impossible. Which is why the "leafPrefixEqual" field
201
+ * in the ProofSpec is valuable to prevent this mutability. And why all trees should
202
+ * length-prefix the data before hashing it.
203
+ * @name ExistenceProof
204
+ * @package cosmos.ics23.v1
205
+ * @see proto type: cosmos.ics23.v1.ExistenceProof
206
+ */
183
207
  export const ExistenceProof = {
184
208
  typeUrl: "/cosmos.ics23.v1.ExistenceProof",
185
209
  aminoType: "cosmos-sdk/ExistenceProof",
@@ -301,6 +325,14 @@ function createBaseNonExistenceProof() {
301
325
  right: undefined
302
326
  };
303
327
  }
328
+ /**
329
+ * NonExistenceProof takes a proof of two neighbors, one left of the desired key,
330
+ * one right of the desired key. If both proofs are valid AND they are neighbors,
331
+ * then there is no valid proof for the given key.
332
+ * @name NonExistenceProof
333
+ * @package cosmos.ics23.v1
334
+ * @see proto type: cosmos.ics23.v1.NonExistenceProof
335
+ */
304
336
  export const NonExistenceProof = {
305
337
  typeUrl: "/cosmos.ics23.v1.NonExistenceProof",
306
338
  aminoType: "cosmos-sdk/NonExistenceProof",
@@ -408,6 +440,12 @@ function createBaseCommitmentProof() {
408
440
  compressed: undefined
409
441
  };
410
442
  }
443
+ /**
444
+ * CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages
445
+ * @name CommitmentProof
446
+ * @package cosmos.ics23.v1
447
+ * @see proto type: cosmos.ics23.v1.CommitmentProof
448
+ */
411
449
  export const CommitmentProof = {
412
450
  typeUrl: "/cosmos.ics23.v1.CommitmentProof",
413
451
  aminoType: "cosmos-sdk/CommitmentProof",
@@ -530,6 +568,25 @@ function createBaseLeafOp() {
530
568
  prefix: new Uint8Array()
531
569
  };
532
570
  }
571
+ /**
572
+ * LeafOp represents the raw key-value data we wish to prove, and
573
+ * must be flexible to represent the internal transformation from
574
+ * the original key-value pairs into the basis hash, for many existing
575
+ * merkle trees.
576
+ *
577
+ * key and value are passed in. So that the signature of this operation is:
578
+ * leafOp(key, value) -> output
579
+ *
580
+ * To process this, first prehash the keys and values if needed (ANY means no hash in this case):
581
+ * hkey = prehashKey(key)
582
+ * hvalue = prehashValue(value)
583
+ *
584
+ * Then combine the bytes, and hash it
585
+ * output = hash(prefix || length(hkey) || hkey || length(hvalue) || hvalue)
586
+ * @name LeafOp
587
+ * @package cosmos.ics23.v1
588
+ * @see proto type: cosmos.ics23.v1.LeafOp
589
+ */
533
590
  export const LeafOp = {
534
591
  typeUrl: "/cosmos.ics23.v1.LeafOp",
535
592
  aminoType: "cosmos-sdk/LeafOp",
@@ -653,6 +710,26 @@ function createBaseInnerOp() {
653
710
  suffix: new Uint8Array()
654
711
  };
655
712
  }
713
+ /**
714
+ * InnerOp represents a merkle-proof step that is not a leaf.
715
+ * It represents concatenating two children and hashing them to provide the next result.
716
+ *
717
+ * The result of the previous step is passed in, so the signature of this op is:
718
+ * innerOp(child) -> output
719
+ *
720
+ * The result of applying InnerOp should be:
721
+ * output = op.hash(op.prefix || child || op.suffix)
722
+ *
723
+ * where the || operator is concatenation of binary data,
724
+ * and child is the result of hashing all the tree below this step.
725
+ *
726
+ * Any special data, like prepending child with the length, or prepending the entire operation with
727
+ * some value to differentiate from leaf nodes, should be included in prefix and suffix.
728
+ * If either of prefix or suffix is empty, we just treat it as an empty string
729
+ * @name InnerOp
730
+ * @package cosmos.ics23.v1
731
+ * @see proto type: cosmos.ics23.v1.InnerOp
732
+ */
656
733
  export const InnerOp = {
657
734
  typeUrl: "/cosmos.ics23.v1.InnerOp",
658
735
  aminoType: "cosmos-sdk/InnerOp",
@@ -756,6 +833,21 @@ function createBaseProofSpec() {
756
833
  prehashKeyBeforeComparison: false
757
834
  };
758
835
  }
836
+ /**
837
+ * ProofSpec defines what the expected parameters are for a given proof type.
838
+ * This can be stored in the client and used to validate any incoming proofs.
839
+ *
840
+ * verify(ProofSpec, Proof) -> Proof | Error
841
+ *
842
+ * As demonstrated in tests, if we don't fix the algorithm used to calculate the
843
+ * LeafHash for a given tree, there are many possible key-value pairs that can
844
+ * generate a given hash (by interpretting the preimage differently).
845
+ * We need this for proper security, requires client knows a priori what
846
+ * tree format server uses. But not in code, rather a configuration object.
847
+ * @name ProofSpec
848
+ * @package cosmos.ics23.v1
849
+ * @see proto type: cosmos.ics23.v1.ProofSpec
850
+ */
759
851
  export const ProofSpec = {
760
852
  typeUrl: "/cosmos.ics23.v1.ProofSpec",
761
853
  aminoType: "cosmos-sdk/ProofSpec",
@@ -888,6 +980,19 @@ function createBaseInnerSpec() {
888
980
  hash: 0
889
981
  };
890
982
  }
983
+ /**
984
+ * InnerSpec contains all store-specific structure info to determine if two proofs from a
985
+ * given store are neighbors.
986
+ *
987
+ * This enables:
988
+ *
989
+ * isLeftMost(spec: InnerSpec, op: InnerOp)
990
+ * isRightMost(spec: InnerSpec, op: InnerOp)
991
+ * isLeftNeighbor(spec: InnerSpec, left: InnerOp, right: InnerOp)
992
+ * @name InnerSpec
993
+ * @package cosmos.ics23.v1
994
+ * @see proto type: cosmos.ics23.v1.InnerSpec
995
+ */
891
996
  export const InnerSpec = {
892
997
  typeUrl: "/cosmos.ics23.v1.InnerSpec",
893
998
  aminoType: "cosmos-sdk/InnerSpec",
@@ -1033,6 +1138,12 @@ function createBaseBatchProof() {
1033
1138
  entries: []
1034
1139
  };
1035
1140
  }
1141
+ /**
1142
+ * BatchProof is a group of multiple proof types than can be compressed
1143
+ * @name BatchProof
1144
+ * @package cosmos.ics23.v1
1145
+ * @see proto type: cosmos.ics23.v1.BatchProof
1146
+ */
1036
1147
  export const BatchProof = {
1037
1148
  typeUrl: "/cosmos.ics23.v1.BatchProof",
1038
1149
  aminoType: "cosmos-sdk/BatchProof",
@@ -1119,6 +1230,12 @@ function createBaseBatchEntry() {
1119
1230
  nonexist: undefined
1120
1231
  };
1121
1232
  }
1233
+ /**
1234
+ * Use BatchEntry not CommitmentProof, to avoid recursion
1235
+ * @name BatchEntry
1236
+ * @package cosmos.ics23.v1
1237
+ * @see proto type: cosmos.ics23.v1.BatchEntry
1238
+ */
1122
1239
  export const BatchEntry = {
1123
1240
  typeUrl: "/cosmos.ics23.v1.BatchEntry",
1124
1241
  aminoType: "cosmos-sdk/BatchEntry",
@@ -1214,6 +1331,11 @@ function createBaseCompressedBatchProof() {
1214
1331
  lookupInners: []
1215
1332
  };
1216
1333
  }
1334
+ /**
1335
+ * @name CompressedBatchProof
1336
+ * @package cosmos.ics23.v1
1337
+ * @see proto type: cosmos.ics23.v1.CompressedBatchProof
1338
+ */
1217
1339
  export const CompressedBatchProof = {
1218
1340
  typeUrl: "/cosmos.ics23.v1.CompressedBatchProof",
1219
1341
  aminoType: "cosmos-sdk/CompressedBatchProof",
@@ -1315,6 +1437,12 @@ function createBaseCompressedBatchEntry() {
1315
1437
  nonexist: undefined
1316
1438
  };
1317
1439
  }
1440
+ /**
1441
+ * Use BatchEntry not CommitmentProof, to avoid recursion
1442
+ * @name CompressedBatchEntry
1443
+ * @package cosmos.ics23.v1
1444
+ * @see proto type: cosmos.ics23.v1.CompressedBatchEntry
1445
+ */
1318
1446
  export const CompressedBatchEntry = {
1319
1447
  typeUrl: "/cosmos.ics23.v1.CompressedBatchEntry",
1320
1448
  aminoType: "cosmos-sdk/CompressedBatchEntry",
@@ -1412,6 +1540,11 @@ function createBaseCompressedExistenceProof() {
1412
1540
  path: []
1413
1541
  };
1414
1542
  }
1543
+ /**
1544
+ * @name CompressedExistenceProof
1545
+ * @package cosmos.ics23.v1
1546
+ * @see proto type: cosmos.ics23.v1.CompressedExistenceProof
1547
+ */
1415
1548
  export const CompressedExistenceProof = {
1416
1549
  typeUrl: "/cosmos.ics23.v1.CompressedExistenceProof",
1417
1550
  aminoType: "cosmos-sdk/CompressedExistenceProof",
@@ -1542,6 +1675,11 @@ function createBaseCompressedNonExistenceProof() {
1542
1675
  right: undefined
1543
1676
  };
1544
1677
  }
1678
+ /**
1679
+ * @name CompressedNonExistenceProof
1680
+ * @package cosmos.ics23.v1
1681
+ * @see proto type: cosmos.ics23.v1.CompressedNonExistenceProof
1682
+ */
1545
1683
  export const CompressedNonExistenceProof = {
1546
1684
  typeUrl: "/cosmos.ics23.v1.CompressedNonExistenceProof",
1547
1685
  aminoType: "cosmos-sdk/CompressedNonExistenceProof",
@@ -8,6 +8,12 @@ function createBaseQueryValidatorsRequest() {
8
8
  pagination: undefined
9
9
  };
10
10
  }
11
+ /**
12
+ * QueryValidatorsRequest is request type for Query/Validators RPC method.
13
+ * @name QueryValidatorsRequest
14
+ * @package cosmos.staking.v1beta1
15
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
16
+ */
11
17
  export const QueryValidatorsRequest = {
12
18
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest",
13
19
  aminoType: "cosmos-sdk/QueryValidatorsRequest",
@@ -102,6 +108,12 @@ function createBaseQueryValidatorsResponse() {
102
108
  pagination: undefined
103
109
  };
104
110
  }
111
+ /**
112
+ * QueryValidatorsResponse is response type for the Query/Validators RPC method
113
+ * @name QueryValidatorsResponse
114
+ * @package cosmos.staking.v1beta1
115
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
116
+ */
105
117
  export const QueryValidatorsResponse = {
106
118
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse",
107
119
  aminoType: "cosmos-sdk/QueryValidatorsResponse",
@@ -199,6 +211,12 @@ function createBaseQueryValidatorRequest() {
199
211
  validatorAddr: ""
200
212
  };
201
213
  }
214
+ /**
215
+ * QueryValidatorRequest is response type for the Query/Validator RPC method
216
+ * @name QueryValidatorRequest
217
+ * @package cosmos.staking.v1beta1
218
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
219
+ */
202
220
  export const QueryValidatorRequest = {
203
221
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorRequest",
204
222
  aminoType: "cosmos-sdk/QueryValidatorRequest",
@@ -276,6 +294,12 @@ function createBaseQueryValidatorResponse() {
276
294
  validator: Validator.fromPartial({})
277
295
  };
278
296
  }
297
+ /**
298
+ * QueryValidatorResponse is response type for the Query/Validator RPC method
299
+ * @name QueryValidatorResponse
300
+ * @package cosmos.staking.v1beta1
301
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
302
+ */
279
303
  export const QueryValidatorResponse = {
280
304
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorResponse",
281
305
  aminoType: "cosmos-sdk/QueryValidatorResponse",
@@ -359,6 +383,13 @@ function createBaseQueryValidatorDelegationsRequest() {
359
383
  pagination: undefined
360
384
  };
361
385
  }
386
+ /**
387
+ * QueryValidatorDelegationsRequest is request type for the
388
+ * Query/ValidatorDelegations RPC method
389
+ * @name QueryValidatorDelegationsRequest
390
+ * @package cosmos.staking.v1beta1
391
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
392
+ */
362
393
  export const QueryValidatorDelegationsRequest = {
363
394
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsRequest",
364
395
  aminoType: "cosmos-sdk/QueryValidatorDelegationsRequest",
@@ -453,6 +484,13 @@ function createBaseQueryValidatorDelegationsResponse() {
453
484
  pagination: undefined
454
485
  };
455
486
  }
487
+ /**
488
+ * QueryValidatorDelegationsResponse is response type for the
489
+ * Query/ValidatorDelegations RPC method
490
+ * @name QueryValidatorDelegationsResponse
491
+ * @package cosmos.staking.v1beta1
492
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
493
+ */
456
494
  export const QueryValidatorDelegationsResponse = {
457
495
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorDelegationsResponse",
458
496
  aminoType: "cosmos-sdk/QueryValidatorDelegationsResponse",
@@ -551,6 +589,13 @@ function createBaseQueryValidatorUnbondingDelegationsRequest() {
551
589
  pagination: undefined
552
590
  };
553
591
  }
592
+ /**
593
+ * QueryValidatorUnbondingDelegationsRequest is required type for the
594
+ * Query/ValidatorUnbondingDelegations RPC method
595
+ * @name QueryValidatorUnbondingDelegationsRequest
596
+ * @package cosmos.staking.v1beta1
597
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
598
+ */
554
599
  export const QueryValidatorUnbondingDelegationsRequest = {
555
600
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest",
556
601
  aminoType: "cosmos-sdk/QueryValidatorUnbondingDelegationsRequest",
@@ -645,6 +690,13 @@ function createBaseQueryValidatorUnbondingDelegationsResponse() {
645
690
  pagination: undefined
646
691
  };
647
692
  }
693
+ /**
694
+ * QueryValidatorUnbondingDelegationsResponse is response type for the
695
+ * Query/ValidatorUnbondingDelegations RPC method.
696
+ * @name QueryValidatorUnbondingDelegationsResponse
697
+ * @package cosmos.staking.v1beta1
698
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
699
+ */
648
700
  export const QueryValidatorUnbondingDelegationsResponse = {
649
701
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse",
650
702
  aminoType: "cosmos-sdk/QueryValidatorUnbondingDelegationsResponse",
@@ -743,6 +795,12 @@ function createBaseQueryDelegationRequest() {
743
795
  validatorAddr: ""
744
796
  };
745
797
  }
798
+ /**
799
+ * QueryDelegationRequest is request type for the Query/Delegation RPC method.
800
+ * @name QueryDelegationRequest
801
+ * @package cosmos.staking.v1beta1
802
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
803
+ */
746
804
  export const QueryDelegationRequest = {
747
805
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegationRequest",
748
806
  aminoType: "cosmos-sdk/QueryDelegationRequest",
@@ -831,6 +889,12 @@ function createBaseQueryDelegationResponse() {
831
889
  delegationResponse: undefined
832
890
  };
833
891
  }
892
+ /**
893
+ * QueryDelegationResponse is response type for the Query/Delegation RPC method.
894
+ * @name QueryDelegationResponse
895
+ * @package cosmos.staking.v1beta1
896
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
897
+ */
834
898
  export const QueryDelegationResponse = {
835
899
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse",
836
900
  aminoType: "cosmos-sdk/QueryDelegationResponse",
@@ -914,6 +978,13 @@ function createBaseQueryUnbondingDelegationRequest() {
914
978
  validatorAddr: ""
915
979
  };
916
980
  }
981
+ /**
982
+ * QueryUnbondingDelegationRequest is request type for the
983
+ * Query/UnbondingDelegation RPC method.
984
+ * @name QueryUnbondingDelegationRequest
985
+ * @package cosmos.staking.v1beta1
986
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
987
+ */
917
988
  export const QueryUnbondingDelegationRequest = {
918
989
  typeUrl: "/cosmos.staking.v1beta1.QueryUnbondingDelegationRequest",
919
990
  aminoType: "cosmos-sdk/QueryUnbondingDelegationRequest",
@@ -1002,6 +1073,13 @@ function createBaseQueryUnbondingDelegationResponse() {
1002
1073
  unbond: UnbondingDelegation.fromPartial({})
1003
1074
  };
1004
1075
  }
1076
+ /**
1077
+ * QueryDelegationResponse is response type for the Query/UnbondingDelegation
1078
+ * RPC method.
1079
+ * @name QueryUnbondingDelegationResponse
1080
+ * @package cosmos.staking.v1beta1
1081
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
1082
+ */
1005
1083
  export const QueryUnbondingDelegationResponse = {
1006
1084
  typeUrl: "/cosmos.staking.v1beta1.QueryUnbondingDelegationResponse",
1007
1085
  aminoType: "cosmos-sdk/QueryUnbondingDelegationResponse",
@@ -1085,6 +1163,13 @@ function createBaseQueryDelegatorDelegationsRequest() {
1085
1163
  pagination: undefined
1086
1164
  };
1087
1165
  }
1166
+ /**
1167
+ * QueryDelegatorDelegationsRequest is request type for the
1168
+ * Query/DelegatorDelegations RPC method.
1169
+ * @name QueryDelegatorDelegationsRequest
1170
+ * @package cosmos.staking.v1beta1
1171
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
1172
+ */
1088
1173
  export const QueryDelegatorDelegationsRequest = {
1089
1174
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest",
1090
1175
  aminoType: "cosmos-sdk/QueryDelegatorDelegationsRequest",
@@ -1179,6 +1264,13 @@ function createBaseQueryDelegatorDelegationsResponse() {
1179
1264
  pagination: undefined
1180
1265
  };
1181
1266
  }
1267
+ /**
1268
+ * QueryDelegatorDelegationsResponse is response type for the
1269
+ * Query/DelegatorDelegations RPC method.
1270
+ * @name QueryDelegatorDelegationsResponse
1271
+ * @package cosmos.staking.v1beta1
1272
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
1273
+ */
1182
1274
  export const QueryDelegatorDelegationsResponse = {
1183
1275
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse",
1184
1276
  aminoType: "cosmos-sdk/QueryDelegatorDelegationsResponse",
@@ -1277,6 +1369,13 @@ function createBaseQueryDelegatorUnbondingDelegationsRequest() {
1277
1369
  pagination: undefined
1278
1370
  };
1279
1371
  }
1372
+ /**
1373
+ * QueryDelegatorUnbondingDelegationsRequest is request type for the
1374
+ * Query/DelegatorUnbondingDelegations RPC method.
1375
+ * @name QueryDelegatorUnbondingDelegationsRequest
1376
+ * @package cosmos.staking.v1beta1
1377
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
1378
+ */
1280
1379
  export const QueryDelegatorUnbondingDelegationsRequest = {
1281
1380
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest",
1282
1381
  aminoType: "cosmos-sdk/QueryDelegatorUnbondingDelegationsRequest",
@@ -1371,6 +1470,13 @@ function createBaseQueryDelegatorUnbondingDelegationsResponse() {
1371
1470
  pagination: undefined
1372
1471
  };
1373
1472
  }
1473
+ /**
1474
+ * QueryUnbondingDelegatorDelegationsResponse is response type for the
1475
+ * Query/UnbondingDelegatorDelegations RPC method.
1476
+ * @name QueryDelegatorUnbondingDelegationsResponse
1477
+ * @package cosmos.staking.v1beta1
1478
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
1479
+ */
1374
1480
  export const QueryDelegatorUnbondingDelegationsResponse = {
1375
1481
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse",
1376
1482
  aminoType: "cosmos-sdk/QueryDelegatorUnbondingDelegationsResponse",
@@ -1471,6 +1577,13 @@ function createBaseQueryRedelegationsRequest() {
1471
1577
  pagination: undefined
1472
1578
  };
1473
1579
  }
1580
+ /**
1581
+ * QueryRedelegationsRequest is request type for the Query/Redelegations RPC
1582
+ * method.
1583
+ * @name QueryRedelegationsRequest
1584
+ * @package cosmos.staking.v1beta1
1585
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
1586
+ */
1474
1587
  export const QueryRedelegationsRequest = {
1475
1588
  typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsRequest",
1476
1589
  aminoType: "cosmos-sdk/QueryRedelegationsRequest",
@@ -1587,6 +1700,13 @@ function createBaseQueryRedelegationsResponse() {
1587
1700
  pagination: undefined
1588
1701
  };
1589
1702
  }
1703
+ /**
1704
+ * QueryRedelegationsResponse is response type for the Query/Redelegations RPC
1705
+ * method.
1706
+ * @name QueryRedelegationsResponse
1707
+ * @package cosmos.staking.v1beta1
1708
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
1709
+ */
1590
1710
  export const QueryRedelegationsResponse = {
1591
1711
  typeUrl: "/cosmos.staking.v1beta1.QueryRedelegationsResponse",
1592
1712
  aminoType: "cosmos-sdk/QueryRedelegationsResponse",
@@ -1685,6 +1805,13 @@ function createBaseQueryDelegatorValidatorsRequest() {
1685
1805
  pagination: undefined
1686
1806
  };
1687
1807
  }
1808
+ /**
1809
+ * QueryDelegatorValidatorsRequest is request type for the
1810
+ * Query/DelegatorValidators RPC method.
1811
+ * @name QueryDelegatorValidatorsRequest
1812
+ * @package cosmos.staking.v1beta1
1813
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
1814
+ */
1688
1815
  export const QueryDelegatorValidatorsRequest = {
1689
1816
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest",
1690
1817
  aminoType: "cosmos-sdk/QueryDelegatorValidatorsRequest",
@@ -1779,6 +1906,13 @@ function createBaseQueryDelegatorValidatorsResponse() {
1779
1906
  pagination: undefined
1780
1907
  };
1781
1908
  }
1909
+ /**
1910
+ * QueryDelegatorValidatorsResponse is response type for the
1911
+ * Query/DelegatorValidators RPC method.
1912
+ * @name QueryDelegatorValidatorsResponse
1913
+ * @package cosmos.staking.v1beta1
1914
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
1915
+ */
1782
1916
  export const QueryDelegatorValidatorsResponse = {
1783
1917
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse",
1784
1918
  aminoType: "cosmos-sdk/QueryDelegatorValidatorsResponse",
@@ -1877,6 +2011,13 @@ function createBaseQueryDelegatorValidatorRequest() {
1877
2011
  validatorAddr: ""
1878
2012
  };
1879
2013
  }
2014
+ /**
2015
+ * QueryDelegatorValidatorRequest is request type for the
2016
+ * Query/DelegatorValidator RPC method.
2017
+ * @name QueryDelegatorValidatorRequest
2018
+ * @package cosmos.staking.v1beta1
2019
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
2020
+ */
1880
2021
  export const QueryDelegatorValidatorRequest = {
1881
2022
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorRequest",
1882
2023
  aminoType: "cosmos-sdk/QueryDelegatorValidatorRequest",
@@ -1965,6 +2106,13 @@ function createBaseQueryDelegatorValidatorResponse() {
1965
2106
  validator: Validator.fromPartial({})
1966
2107
  };
1967
2108
  }
2109
+ /**
2110
+ * QueryDelegatorValidatorResponse response type for the
2111
+ * Query/DelegatorValidator RPC method.
2112
+ * @name QueryDelegatorValidatorResponse
2113
+ * @package cosmos.staking.v1beta1
2114
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
2115
+ */
1968
2116
  export const QueryDelegatorValidatorResponse = {
1969
2117
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegatorValidatorResponse",
1970
2118
  aminoType: "cosmos-sdk/QueryDelegatorValidatorResponse",
@@ -2047,6 +2195,13 @@ function createBaseQueryHistoricalInfoRequest() {
2047
2195
  height: BigInt(0)
2048
2196
  };
2049
2197
  }
2198
+ /**
2199
+ * QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
2200
+ * method.
2201
+ * @name QueryHistoricalInfoRequest
2202
+ * @package cosmos.staking.v1beta1
2203
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
2204
+ */
2050
2205
  export const QueryHistoricalInfoRequest = {
2051
2206
  typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoRequest",
2052
2207
  aminoType: "cosmos-sdk/QueryHistoricalInfoRequest",
@@ -2124,6 +2279,13 @@ function createBaseQueryHistoricalInfoResponse() {
2124
2279
  hist: undefined
2125
2280
  };
2126
2281
  }
2282
+ /**
2283
+ * QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
2284
+ * method.
2285
+ * @name QueryHistoricalInfoResponse
2286
+ * @package cosmos.staking.v1beta1
2287
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
2288
+ */
2127
2289
  export const QueryHistoricalInfoResponse = {
2128
2290
  typeUrl: "/cosmos.staking.v1beta1.QueryHistoricalInfoResponse",
2129
2291
  aminoType: "cosmos-sdk/QueryHistoricalInfoResponse",
@@ -2204,6 +2366,12 @@ export const QueryHistoricalInfoResponse = {
2204
2366
  function createBaseQueryPoolRequest() {
2205
2367
  return {};
2206
2368
  }
2369
+ /**
2370
+ * QueryPoolRequest is request type for the Query/Pool RPC method.
2371
+ * @name QueryPoolRequest
2372
+ * @package cosmos.staking.v1beta1
2373
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
2374
+ */
2207
2375
  export const QueryPoolRequest = {
2208
2376
  typeUrl: "/cosmos.staking.v1beta1.QueryPoolRequest",
2209
2377
  aminoType: "cosmos-sdk/QueryPoolRequest",
@@ -2270,6 +2438,12 @@ function createBaseQueryPoolResponse() {
2270
2438
  pool: Pool.fromPartial({})
2271
2439
  };
2272
2440
  }
2441
+ /**
2442
+ * QueryPoolResponse is response type for the Query/Pool RPC method.
2443
+ * @name QueryPoolResponse
2444
+ * @package cosmos.staking.v1beta1
2445
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
2446
+ */
2273
2447
  export const QueryPoolResponse = {
2274
2448
  typeUrl: "/cosmos.staking.v1beta1.QueryPoolResponse",
2275
2449
  aminoType: "cosmos-sdk/QueryPoolResponse",
@@ -2350,6 +2524,12 @@ export const QueryPoolResponse = {
2350
2524
  function createBaseQueryParamsRequest() {
2351
2525
  return {};
2352
2526
  }
2527
+ /**
2528
+ * QueryParamsRequest is request type for the Query/Params RPC method.
2529
+ * @name QueryParamsRequest
2530
+ * @package cosmos.staking.v1beta1
2531
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
2532
+ */
2353
2533
  export const QueryParamsRequest = {
2354
2534
  typeUrl: "/cosmos.staking.v1beta1.QueryParamsRequest",
2355
2535
  aminoType: "cosmos-sdk/QueryParamsRequest",
@@ -2416,6 +2596,12 @@ function createBaseQueryParamsResponse() {
2416
2596
  params: Params.fromPartial({})
2417
2597
  };
2418
2598
  }
2599
+ /**
2600
+ * QueryParamsResponse is response type for the Query/Params RPC method.
2601
+ * @name QueryParamsResponse
2602
+ * @package cosmos.staking.v1beta1
2603
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
2604
+ */
2419
2605
  export const QueryParamsResponse = {
2420
2606
  typeUrl: "/cosmos.staking.v1beta1.QueryParamsResponse",
2421
2607
  aminoType: "cosmos-sdk/QueryParamsResponse",