@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7

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 (751) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
  4. package/cosmos/app/runtime/v1alpha1/module.js +44 -1
  5. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  6. package/cosmos/app/v1alpha1/module.js +19 -0
  7. package/cosmos/auth/module/v1/module.d.ts +72 -12
  8. package/cosmos/auth/module/v1/module.js +25 -1
  9. package/cosmos/auth/v1beta1/auth.d.ts +68 -10
  10. package/cosmos/auth/v1beta1/auth.js +26 -0
  11. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  12. package/cosmos/auth/v1beta1/genesis.js +6 -0
  13. package/cosmos/auth/v1beta1/query.d.ts +334 -92
  14. package/cosmos/auth/v1beta1/query.js +120 -0
  15. package/cosmos/auth/v1beta1/query.lcd.js +7 -21
  16. package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
  17. package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  18. package/cosmos/auth/v1beta1/tx.d.ts +31 -10
  19. package/cosmos/auth/v1beta1/tx.js +13 -0
  20. package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
  21. package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  22. package/cosmos/authz/module/v1/module.d.ts +18 -2
  23. package/cosmos/authz/module/v1/module.js +6 -0
  24. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  25. package/cosmos/authz/v1beta1/authz.js +27 -0
  26. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  27. package/cosmos/authz/v1beta1/event.js +12 -0
  28. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  29. package/cosmos/authz/v1beta1/genesis.js +6 -0
  30. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  31. package/cosmos/authz/v1beta1/query.js +36 -0
  32. package/cosmos/authz/v1beta1/query.lcd.js +2 -6
  33. package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
  34. package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  35. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  36. package/cosmos/authz/v1beta1/tx.js +40 -0
  37. package/cosmos/bank/module/v1/module.d.ts +24 -4
  38. package/cosmos/bank/module/v1/module.js +6 -0
  39. package/cosmos/bank/v1beta1/authz.d.ts +13 -8
  40. package/cosmos/bank/v1beta1/authz.js +7 -0
  41. package/cosmos/bank/v1beta1/bank.d.ts +136 -34
  42. package/cosmos/bank/v1beta1/bank.js +48 -0
  43. package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
  44. package/cosmos/bank/v1beta1/genesis.js +13 -0
  45. package/cosmos/bank/v1beta1/query.d.ts +599 -138
  46. package/cosmos/bank/v1beta1/query.js +179 -0
  47. package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
  48. package/cosmos/bank/v1beta1/query.lcd.js +28 -29
  49. package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
  50. package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
  51. package/cosmos/bank/v1beta1/tx.d.ts +143 -30
  52. package/cosmos/bank/v1beta1/tx.js +53 -0
  53. package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
  54. package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  55. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
  56. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  57. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  58. package/cosmos/base/node/v1beta1/query.js +24 -0
  59. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
  60. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  61. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  62. package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  63. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  64. package/cosmos/base/v1beta1/coin.js +32 -0
  65. package/cosmos/benchmark/module/v1/module.d.ts +102 -26
  66. package/cosmos/benchmark/module/v1/module.js +12 -0
  67. package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
  68. package/cosmos/benchmark/v1/benchmark.js +6 -0
  69. package/cosmos/benchmark/v1/tx.d.ts +36 -4
  70. package/cosmos/benchmark/v1/tx.js +12 -0
  71. package/cosmos/bundle.d.ts +2283 -2421
  72. package/cosmos/bundle.js +242 -261
  73. package/cosmos/circuit/module/v1/module.d.ts +24 -4
  74. package/cosmos/circuit/module/v1/module.js +6 -0
  75. package/cosmos/circuit/v1/query.d.ts +120 -16
  76. package/cosmos/circuit/v1/query.js +36 -0
  77. package/cosmos/circuit/v1/tx.d.ts +126 -18
  78. package/cosmos/circuit/v1/tx.js +36 -0
  79. package/cosmos/circuit/v1/types.d.ts +55 -6
  80. package/cosmos/circuit/v1/types.js +19 -0
  81. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  82. package/cosmos/consensus/module/v1/module.js +6 -0
  83. package/cosmos/consensus/v1/query.d.ts +36 -4
  84. package/cosmos/consensus/v1/query.js +12 -0
  85. package/cosmos/consensus/v1/tx.d.ts +37 -6
  86. package/cosmos/consensus/v1/tx.js +13 -0
  87. package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
  88. package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  89. package/cosmos/counter/module/v1/module.d.ts +24 -4
  90. package/cosmos/counter/module/v1/module.js +6 -0
  91. package/cosmos/counter/v1/query.d.ts +36 -4
  92. package/cosmos/counter/v1/query.js +12 -0
  93. package/cosmos/counter/v1/tx.d.ts +54 -10
  94. package/cosmos/counter/v1/tx.js +12 -0
  95. package/cosmos/crisis/module/v1/module.d.ts +30 -6
  96. package/cosmos/crisis/module/v1/module.js +6 -0
  97. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  98. package/cosmos/crypto/ed25519/keys.js +17 -0
  99. package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
  100. package/cosmos/crypto/hd/v1/hd.js +6 -0
  101. package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
  102. package/cosmos/crypto/keyring/v1/record.js +31 -0
  103. package/cosmos/crypto/multisig/keys.d.ts +14 -0
  104. package/cosmos/crypto/multisig/keys.js +8 -0
  105. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  106. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  107. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  108. package/cosmos/crypto/secp256k1/keys.js +16 -0
  109. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  110. package/cosmos/crypto/secp256r1/keys.js +12 -0
  111. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  112. package/cosmos/distribution/module/v1/module.js +6 -0
  113. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  114. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  115. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  116. package/cosmos/distribution/v1beta1/genesis.js +52 -0
  117. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  118. package/cosmos/distribution/v1beta1/query.js +136 -0
  119. package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  120. package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
  121. package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  122. package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
  123. package/cosmos/distribution/v1beta1/tx.js +97 -0
  124. package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
  125. package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  126. package/cosmos/epochs/module/v1/module.d.ts +18 -2
  127. package/cosmos/epochs/module/v1/module.js +6 -0
  128. package/cosmos/epochs/v1beta1/events.d.ts +36 -4
  129. package/cosmos/epochs/v1beta1/events.js +12 -0
  130. package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
  131. package/cosmos/epochs/v1beta1/genesis.js +13 -0
  132. package/cosmos/epochs/v1beta1/query.d.ts +52 -0
  133. package/cosmos/epochs/v1beta1/query.js +28 -0
  134. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  135. package/cosmos/evidence/module/v1/module.js +6 -0
  136. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  137. package/cosmos/feegrant/module/v1/module.js +6 -0
  138. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  139. package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  140. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  141. package/cosmos/feegrant/v1beta1/genesis.js +6 -0
  142. package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
  143. package/cosmos/feegrant/v1beta1/query.js +36 -0
  144. package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  145. package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
  146. package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  147. package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
  148. package/cosmos/feegrant/v1beta1/tx.js +37 -0
  149. package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
  150. package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  151. package/cosmos/genutil/module/v1/module.d.ts +18 -2
  152. package/cosmos/genutil/module/v1/module.js +6 -0
  153. package/cosmos/gov/module/v1/module.d.ts +24 -4
  154. package/cosmos/gov/module/v1/module.js +6 -0
  155. package/cosmos/gov/v1/genesis.d.ts +48 -24
  156. package/cosmos/gov/v1/genesis.js +6 -0
  157. package/cosmos/gov/v1/gov.d.ts +341 -124
  158. package/cosmos/gov/v1/gov.js +59 -0
  159. package/cosmos/gov/v1/query.d.ts +469 -92
  160. package/cosmos/gov/v1/query.js +109 -0
  161. package/cosmos/gov/v1/tx.d.ts +368 -93
  162. package/cosmos/gov/v1/tx.js +88 -0
  163. package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
  164. package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  165. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  166. package/cosmos/gov/v1beta1/genesis.js +6 -0
  167. package/cosmos/gov/v1beta1/gov.d.ts +291 -69
  168. package/cosmos/gov/v1beta1/gov.js +57 -0
  169. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  170. package/cosmos/gov/v1beta1/query.js +97 -0
  171. package/cosmos/gov/v1beta1/tx.d.ts +209 -45
  172. package/cosmos/gov/v1beta1/tx.js +49 -0
  173. package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
  174. package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  175. package/cosmos/group/module/v1/module.d.ts +18 -2
  176. package/cosmos/group/module/v1/module.js +6 -0
  177. package/cosmos/group/v1/events.d.ts +300 -56
  178. package/cosmos/group/v1/events.js +66 -0
  179. package/cosmos/group/v1/genesis.d.ts +48 -12
  180. package/cosmos/group/v1/genesis.js +6 -0
  181. package/cosmos/group/v1/query.d.ts +768 -152
  182. package/cosmos/group/v1/query.js +168 -0
  183. package/cosmos/group/v1/query.lcd.js +1 -3
  184. package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
  185. package/cosmos/group/v1/query.rpc.Query.js +1 -3
  186. package/cosmos/group/v1/tx.d.ts +804 -163
  187. package/cosmos/group/v1/tx.js +168 -0
  188. package/cosmos/group/v1/types.d.ts +398 -91
  189. package/cosmos/group/v1/types.js +82 -0
  190. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  191. package/cosmos/ics23/v1/proofs.js +138 -0
  192. package/cosmos/mint/module/v1/module.d.ts +24 -4
  193. package/cosmos/mint/module/v1/module.js +6 -0
  194. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  195. package/cosmos/mint/v1beta1/genesis.js +6 -0
  196. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  197. package/cosmos/mint/v1beta1/mint.js +12 -0
  198. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  199. package/cosmos/mint/v1beta1/query.js +39 -0
  200. package/cosmos/mint/v1beta1/tx.d.ts +31 -10
  201. package/cosmos/mint/v1beta1/tx.js +13 -0
  202. package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
  203. package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  204. package/cosmos/nft/module/v1/module.d.ts +18 -2
  205. package/cosmos/nft/module/v1/module.js +6 -0
  206. package/cosmos/params/module/v1/module.d.ts +18 -2
  207. package/cosmos/params/module/v1/module.js +6 -0
  208. package/cosmos/params/v1beta1/params.d.ts +31 -2
  209. package/cosmos/params/v1beta1/params.js +13 -0
  210. package/cosmos/params/v1beta1/query.d.ts +93 -22
  211. package/cosmos/params/v1beta1/query.js +33 -0
  212. package/cosmos/params/v1beta1/query.lcd.js +1 -3
  213. package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
  214. package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  215. package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
  216. package/cosmos/protocolpool/module/v1/module.js +6 -0
  217. package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
  218. package/cosmos/protocolpool/v1/genesis.js +6 -0
  219. package/cosmos/protocolpool/v1/query.d.ts +138 -12
  220. package/cosmos/protocolpool/v1/query.js +54 -0
  221. package/cosmos/protocolpool/v1/tx.d.ts +217 -30
  222. package/cosmos/protocolpool/v1/tx.js +67 -0
  223. package/cosmos/protocolpool/v1/types.d.ts +54 -10
  224. package/cosmos/protocolpool/v1/types.js +12 -0
  225. package/cosmos/reflection/v1/reflection.d.ts +42 -6
  226. package/cosmos/reflection/v1/reflection.js +12 -0
  227. package/cosmos/rpc.query.d.ts +1 -9
  228. package/cosmos/rpc.query.js +0 -5
  229. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  230. package/cosmos/slashing/module/v1/module.js +6 -0
  231. package/cosmos/staking/module/v1/module.d.ts +36 -8
  232. package/cosmos/staking/module/v1/module.js +6 -0
  233. package/cosmos/staking/v1beta1/authz.d.ts +43 -15
  234. package/cosmos/staking/v1beta1/authz.js +13 -5
  235. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  236. package/cosmos/staking/v1beta1/genesis.js +12 -0
  237. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  238. package/cosmos/staking/v1beta1/query.js +186 -0
  239. package/cosmos/staking/v1beta1/staking.d.ts +631 -121
  240. package/cosmos/staking/v1beta1/staking.js +153 -0
  241. package/cosmos/staking/v1beta1/tx.d.ts +234 -42
  242. package/cosmos/staking/v1beta1/tx.js +88 -0
  243. package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
  244. package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  245. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
  246. package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  247. package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
  248. package/cosmos/store/snapshots/v1/snapshot.js +42 -0
  249. package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
  250. package/cosmos/store/streaming/abci/grpc.js +24 -0
  251. package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
  252. package/cosmos/store/v1beta1/commit_info.js +21 -0
  253. package/cosmos/store/v1beta1/listening.d.ts +45 -10
  254. package/cosmos/store/v1beta1/listening.js +15 -0
  255. package/cosmos/tx/config/v1/config.d.ts +18 -2
  256. package/cosmos/tx/config/v1/config.js +6 -0
  257. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  258. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  259. package/cosmos/tx/v1beta1/service.d.ts +355 -94
  260. package/cosmos/tx/v1beta1/service.js +125 -0
  261. package/cosmos/tx/v1beta1/service.lcd.js +1 -3
  262. package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
  263. package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  264. package/cosmos/tx/v1beta1/tx.d.ts +371 -80
  265. package/cosmos/tx/v1beta1/tx.js +118 -0
  266. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  267. package/cosmos/upgrade/module/v1/module.js +6 -0
  268. package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
  269. package/cosmos/upgrade/v1beta1/query.js +70 -0
  270. package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  271. package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
  272. package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  273. package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
  274. package/cosmos/upgrade/v1beta1/tx.js +24 -0
  275. package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
  276. package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  277. package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
  278. package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  279. package/cosmos/vesting/module/v1/module.d.ts +18 -2
  280. package/cosmos/vesting/module/v1/module.js +6 -0
  281. package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
  282. package/cosmos/vesting/v1beta1/tx.js +40 -0
  283. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
  284. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  285. package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
  286. package/cosmos/vesting/v1beta1/vesting.js +43 -0
  287. package/cosmos_proto/cosmos.d.ts +31 -0
  288. package/cosmos_proto/cosmos.js +19 -0
  289. package/esm/binary.js +1 -1
  290. package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
  291. package/esm/cosmos/app/v1alpha1/module.js +19 -0
  292. package/esm/cosmos/auth/module/v1/module.js +25 -1
  293. package/esm/cosmos/auth/v1beta1/auth.js +26 -0
  294. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  295. package/esm/cosmos/auth/v1beta1/query.js +120 -0
  296. package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
  297. package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  298. package/esm/cosmos/auth/v1beta1/tx.js +13 -0
  299. package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  300. package/esm/cosmos/authz/module/v1/module.js +6 -0
  301. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  302. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  303. package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
  304. package/esm/cosmos/authz/v1beta1/query.js +36 -0
  305. package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
  306. package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  307. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  308. package/esm/cosmos/bank/module/v1/module.js +6 -0
  309. package/esm/cosmos/bank/v1beta1/authz.js +7 -0
  310. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  311. package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
  312. package/esm/cosmos/bank/v1beta1/query.js +179 -0
  313. package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
  314. package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
  315. package/esm/cosmos/bank/v1beta1/tx.js +53 -0
  316. package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  317. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  318. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  319. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  320. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  321. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  322. package/esm/cosmos/benchmark/module/v1/module.js +12 -0
  323. package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
  324. package/esm/cosmos/benchmark/v1/tx.js +12 -0
  325. package/esm/cosmos/bundle.js +242 -261
  326. package/esm/cosmos/circuit/module/v1/module.js +6 -0
  327. package/esm/cosmos/circuit/v1/query.js +36 -0
  328. package/esm/cosmos/circuit/v1/tx.js +36 -0
  329. package/esm/cosmos/circuit/v1/types.js +19 -0
  330. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  331. package/esm/cosmos/consensus/v1/query.js +12 -0
  332. package/esm/cosmos/consensus/v1/tx.js +13 -0
  333. package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  334. package/esm/cosmos/counter/module/v1/module.js +6 -0
  335. package/esm/cosmos/counter/v1/query.js +12 -0
  336. package/esm/cosmos/counter/v1/tx.js +12 -0
  337. package/esm/cosmos/crisis/module/v1/module.js +6 -0
  338. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  339. package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
  340. package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
  341. package/esm/cosmos/crypto/multisig/keys.js +8 -0
  342. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  343. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  344. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  345. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  346. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  347. package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
  348. package/esm/cosmos/distribution/v1beta1/query.js +136 -0
  349. package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  350. package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  351. package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
  352. package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  353. package/esm/cosmos/epochs/module/v1/module.js +6 -0
  354. package/esm/cosmos/epochs/v1beta1/events.js +12 -0
  355. package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
  356. package/esm/cosmos/epochs/v1beta1/query.js +28 -0
  357. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  358. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  359. package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  360. package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
  361. package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
  362. package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  363. package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  364. package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
  365. package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  366. package/esm/cosmos/genutil/module/v1/module.js +6 -0
  367. package/esm/cosmos/gov/module/v1/module.js +6 -0
  368. package/esm/cosmos/gov/v1/genesis.js +6 -0
  369. package/esm/cosmos/gov/v1/gov.js +59 -0
  370. package/esm/cosmos/gov/v1/query.js +109 -0
  371. package/esm/cosmos/gov/v1/tx.js +88 -0
  372. package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  373. package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
  374. package/esm/cosmos/gov/v1beta1/gov.js +57 -0
  375. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  376. package/esm/cosmos/gov/v1beta1/tx.js +49 -0
  377. package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  378. package/esm/cosmos/group/module/v1/module.js +6 -0
  379. package/esm/cosmos/group/v1/events.js +66 -0
  380. package/esm/cosmos/group/v1/genesis.js +6 -0
  381. package/esm/cosmos/group/v1/query.js +168 -0
  382. package/esm/cosmos/group/v1/query.lcd.js +1 -3
  383. package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
  384. package/esm/cosmos/group/v1/tx.js +168 -0
  385. package/esm/cosmos/group/v1/types.js +82 -0
  386. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  387. package/esm/cosmos/mint/module/v1/module.js +6 -0
  388. package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
  389. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  390. package/esm/cosmos/mint/v1beta1/query.js +39 -0
  391. package/esm/cosmos/mint/v1beta1/tx.js +13 -0
  392. package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  393. package/esm/cosmos/nft/module/v1/module.js +6 -0
  394. package/esm/cosmos/params/module/v1/module.js +6 -0
  395. package/esm/cosmos/params/v1beta1/params.js +13 -0
  396. package/esm/cosmos/params/v1beta1/query.js +33 -0
  397. package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
  398. package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  399. package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
  400. package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
  401. package/esm/cosmos/protocolpool/v1/query.js +54 -0
  402. package/esm/cosmos/protocolpool/v1/tx.js +67 -0
  403. package/esm/cosmos/protocolpool/v1/types.js +12 -0
  404. package/esm/cosmos/reflection/v1/reflection.js +12 -0
  405. package/esm/cosmos/rpc.query.js +0 -5
  406. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  407. package/esm/cosmos/staking/module/v1/module.js +6 -0
  408. package/esm/cosmos/staking/v1beta1/authz.js +13 -5
  409. package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
  410. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  411. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  412. package/esm/cosmos/staking/v1beta1/tx.js +88 -0
  413. package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  414. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  415. package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
  416. package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
  417. package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
  418. package/esm/cosmos/store/v1beta1/listening.js +15 -0
  419. package/esm/cosmos/tx/config/v1/config.js +6 -0
  420. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  421. package/esm/cosmos/tx/v1beta1/service.js +125 -0
  422. package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
  423. package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  424. package/esm/cosmos/tx/v1beta1/tx.js +119 -1
  425. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  426. package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
  427. package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  428. package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  429. package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
  430. package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  431. package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  432. package/esm/cosmos/vesting/module/v1/module.js +6 -0
  433. package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
  434. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  435. package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
  436. package/esm/cosmos_proto/cosmos.js +19 -0
  437. package/esm/gogoproto/bundle.js +2 -2
  438. package/esm/google/api/http.js +283 -0
  439. package/esm/google/bundle.js +7 -7
  440. package/esm/google/protobuf/any.js +90 -0
  441. package/esm/google/protobuf/descriptor.js +220 -0
  442. package/esm/google/protobuf/duration.js +63 -0
  443. package/esm/google/protobuf/timestamp.js +94 -0
  444. package/esm/helpers.js +1 -1
  445. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  446. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  447. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  448. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  449. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  450. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  451. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  452. package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
  453. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  454. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  455. package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  456. package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
  457. package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
  458. package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
  459. package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
  460. package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
  461. package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
  462. package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
  463. package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
  464. package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
  465. package/esm/ibc/applications/transfer/v1/authz.js +13 -0
  466. package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
  467. package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
  468. package/esm/ibc/applications/transfer/v1/packet.js +8 -0
  469. package/esm/ibc/applications/transfer/v1/query.js +78 -0
  470. package/esm/ibc/applications/transfer/v1/token.js +18 -0
  471. package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
  472. package/esm/ibc/applications/transfer/v1/tx.js +40 -1
  473. package/esm/ibc/bundle.js +196 -173
  474. package/esm/ibc/client.js +4 -1
  475. package/esm/ibc/core/channel/v1/channel.js +64 -0
  476. package/esm/ibc/core/channel/v1/genesis.js +13 -0
  477. package/esm/ibc/core/channel/v1/query.js +197 -0
  478. package/esm/ibc/core/channel/v1/tx.js +129 -0
  479. package/esm/ibc/core/channel/v2/genesis.js +21 -0
  480. package/esm/ibc/core/channel/v2/packet.js +29 -0
  481. package/esm/ibc/core/channel/v2/query.js +100 -0
  482. package/esm/ibc/core/channel/v2/tx.js +48 -0
  483. package/esm/ibc/core/client/v1/client.js +45 -0
  484. package/esm/ibc/core/client/v1/genesis.js +20 -0
  485. package/esm/ibc/core/client/v1/query.js +154 -0
  486. package/esm/ibc/core/client/v1/tx.amino.js +1 -6
  487. package/esm/ibc/core/client/v1/tx.js +86 -151
  488. package/esm/ibc/core/client/v1/tx.registry.js +2 -20
  489. package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
  490. package/esm/ibc/core/client/v2/config.js +9 -0
  491. package/esm/ibc/core/client/v2/counterparty.js +6 -0
  492. package/esm/ibc/core/client/v2/genesis.js +12 -0
  493. package/esm/ibc/core/client/v2/query.js +26 -0
  494. package/esm/ibc/core/client/v2/tx.js +24 -0
  495. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  496. package/esm/ibc/core/commitment/v2/commitment.js +36 -0
  497. package/esm/ibc/core/connection/v1/connection.js +47 -0
  498. package/esm/ibc/core/connection/v1/genesis.js +6 -0
  499. package/esm/ibc/core/connection/v1/query.js +83 -0
  500. package/esm/ibc/core/connection/v1/tx.js +66 -0
  501. package/esm/ibc/lcd.js +5 -0
  502. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  503. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  504. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  505. package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
  506. package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
  507. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  508. package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
  509. package/esm/ibc/rpc.query.js +3 -5
  510. package/esm/ibc/rpc.tx.js +3 -0
  511. package/esm/index.js +1 -1
  512. package/esm/sparkdream/blog/module/v1/module.js +6 -0
  513. package/esm/sparkdream/blog/v1/genesis.js +6 -0
  514. package/esm/sparkdream/blog/v1/params.js +6 -0
  515. package/esm/sparkdream/blog/v1/post.js +6 -0
  516. package/esm/sparkdream/blog/v1/query.js +36 -0
  517. package/esm/sparkdream/blog/v1/tx.js +49 -0
  518. package/esm/sparkdream/bundle.js +41 -41
  519. package/esm/sparkdream/rpc.query.js +0 -5
  520. package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
  521. package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
  522. package/esm/sparkdream/sparkdream/v1/params.js +6 -0
  523. package/esm/sparkdream/sparkdream/v1/query.js +12 -0
  524. package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
  525. package/esm/tendermint/abci/types.js +255 -0
  526. package/esm/tendermint/bundle.js +18 -18
  527. package/esm/tendermint/crypto/keys.js +6 -0
  528. package/esm/tendermint/crypto/proof.js +29 -0
  529. package/esm/tendermint/p2p/types.js +20 -0
  530. package/esm/tendermint/types/block.js +5 -0
  531. package/esm/tendermint/types/evidence.js +22 -0
  532. package/esm/tendermint/types/params.js +46 -0
  533. package/esm/tendermint/types/types.js +87 -0
  534. package/esm/tendermint/types/validator.js +15 -0
  535. package/esm/tendermint/version/types.js +16 -0
  536. package/esm/types.js +1 -1
  537. package/esm/utf8.js +1 -1
  538. package/esm/varint.js +1 -1
  539. package/gogoproto/bundle.js +2 -2
  540. package/google/api/http.d.ts +343 -14
  541. package/google/api/http.js +283 -0
  542. package/google/bundle.d.ts +418 -418
  543. package/google/bundle.js +7 -7
  544. package/google/protobuf/any.d.ts +102 -2
  545. package/google/protobuf/any.js +90 -0
  546. package/google/protobuf/descriptor.d.ts +738 -90
  547. package/google/protobuf/descriptor.js +220 -0
  548. package/google/protobuf/duration.d.ts +69 -0
  549. package/google/protobuf/duration.js +63 -0
  550. package/google/protobuf/timestamp.d.ts +100 -0
  551. package/google/protobuf/timestamp.js +94 -0
  552. package/helpers.d.ts +1 -1
  553. package/helpers.js +1 -1
  554. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  555. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  556. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  557. package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  558. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  559. package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  560. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  561. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  562. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  563. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  564. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  565. package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  566. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  567. package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  568. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  569. package/ibc/applications/interchain_accounts/v1/account.js +6 -0
  570. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  571. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  572. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  573. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  574. package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
  575. package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  576. package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
  577. package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
  578. package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
  579. package/ibc/applications/rate_limiting/v1/query.js +906 -0
  580. package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
  581. package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
  582. package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
  583. package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
  584. package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
  585. package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
  586. package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
  587. package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
  588. package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
  589. package/ibc/applications/rate_limiting/v1/tx.js +729 -0
  590. package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
  591. package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
  592. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
  593. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
  594. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  595. package/ibc/applications/transfer/v1/authz.js +13 -0
  596. package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
  597. package/ibc/applications/transfer/v1/denomtrace.js +8 -0
  598. package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
  599. package/ibc/applications/transfer/v1/genesis.js +6 -0
  600. package/ibc/applications/transfer/v1/packet.d.ts +44 -10
  601. package/ibc/applications/transfer/v1/packet.js +8 -0
  602. package/ibc/applications/transfer/v1/query.d.ts +252 -34
  603. package/ibc/applications/transfer/v1/query.js +78 -0
  604. package/ibc/applications/transfer/v1/token.d.ts +78 -14
  605. package/ibc/applications/transfer/v1/token.js +18 -0
  606. package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
  607. package/ibc/applications/transfer/v1/transfer.js +9 -0
  608. package/ibc/applications/transfer/v1/tx.d.ts +135 -22
  609. package/ibc/applications/transfer/v1/tx.js +40 -1
  610. package/ibc/bundle.d.ts +3830 -3396
  611. package/ibc/bundle.js +196 -173
  612. package/ibc/client.d.ts +20 -5
  613. package/ibc/client.js +4 -1
  614. package/ibc/core/channel/v1/channel.d.ts +292 -60
  615. package/ibc/core/channel/v1/channel.js +64 -0
  616. package/ibc/core/channel/v1/genesis.d.ts +37 -4
  617. package/ibc/core/channel/v1/genesis.js +13 -0
  618. package/ibc/core/channel/v1/query.d.ts +839 -158
  619. package/ibc/core/channel/v1/query.js +197 -0
  620. package/ibc/core/channel/v1/tx.d.ts +335 -30
  621. package/ibc/core/channel/v1/tx.js +129 -0
  622. package/ibc/core/channel/v2/genesis.d.ts +81 -14
  623. package/ibc/core/channel/v2/genesis.js +21 -0
  624. package/ibc/core/channel/v2/packet.d.ts +137 -28
  625. package/ibc/core/channel/v2/packet.js +29 -0
  626. package/ibc/core/channel/v2/query.d.ts +490 -98
  627. package/ibc/core/channel/v2/query.js +100 -0
  628. package/ibc/core/channel/v2/tx.d.ts +144 -16
  629. package/ibc/core/channel/v2/tx.js +48 -0
  630. package/ibc/core/client/v1/client.d.ts +129 -18
  631. package/ibc/core/client/v1/client.js +45 -0
  632. package/ibc/core/client/v1/genesis.d.ts +82 -16
  633. package/ibc/core/client/v1/genesis.js +20 -0
  634. package/ibc/core/client/v1/query.d.ts +508 -74
  635. package/ibc/core/client/v1/query.js +154 -0
  636. package/ibc/core/client/v1/tx.amino.d.ts +1 -6
  637. package/ibc/core/client/v1/tx.amino.js +0 -5
  638. package/ibc/core/client/v1/tx.d.ts +336 -138
  639. package/ibc/core/client/v1/tx.js +87 -152
  640. package/ibc/core/client/v1/tx.registry.d.ts +1 -13
  641. package/ibc/core/client/v1/tx.registry.js +1 -19
  642. package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
  643. package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
  644. package/ibc/core/client/v2/config.d.ts +21 -2
  645. package/ibc/core/client/v2/config.js +9 -0
  646. package/ibc/core/client/v2/counterparty.d.ts +30 -6
  647. package/ibc/core/client/v2/counterparty.js +6 -0
  648. package/ibc/core/client/v2/genesis.d.ts +54 -10
  649. package/ibc/core/client/v2/genesis.js +12 -0
  650. package/ibc/core/client/v2/query.d.ts +74 -8
  651. package/ibc/core/client/v2/query.js +26 -0
  652. package/ibc/core/client/v2/tx.d.ts +108 -20
  653. package/ibc/core/client/v2/tx.js +24 -0
  654. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  655. package/ibc/core/commitment/v1/commitment.js +25 -0
  656. package/ibc/core/commitment/v2/commitment.d.ts +42 -0
  657. package/ibc/core/commitment/v2/commitment.js +36 -0
  658. package/ibc/core/connection/v1/connection.d.ts +197 -36
  659. package/ibc/core/connection/v1/connection.js +47 -0
  660. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  661. package/ibc/core/connection/v1/genesis.js +6 -0
  662. package/ibc/core/connection/v1/query.d.ts +293 -46
  663. package/ibc/core/connection/v1/query.js +83 -0
  664. package/ibc/core/connection/v1/tx.d.ts +250 -56
  665. package/ibc/core/connection/v1/tx.js +66 -0
  666. package/ibc/lcd.d.ts +3 -0
  667. package/ibc/lcd.js +5 -0
  668. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
  669. package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  670. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
  671. package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  672. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
  673. package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  674. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  675. package/ibc/lightclients/wasm/v1/genesis.js +12 -0
  676. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  677. package/ibc/lightclients/wasm/v1/query.js +24 -0
  678. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  679. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  680. package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
  681. package/ibc/lightclients/wasm/v1/wasm.js +19 -74
  682. package/ibc/rpc.query.d.ts +11 -9
  683. package/ibc/rpc.query.js +3 -5
  684. package/ibc/rpc.tx.d.ts +3 -0
  685. package/ibc/rpc.tx.js +3 -0
  686. package/index.d.ts +1 -1
  687. package/index.js +1 -1
  688. package/package.json +1 -1
  689. package/sparkdream/blog/module/v1/module.d.ts +18 -2
  690. package/sparkdream/blog/module/v1/module.js +6 -0
  691. package/sparkdream/blog/v1/genesis.d.ts +24 -4
  692. package/sparkdream/blog/v1/genesis.js +6 -0
  693. package/sparkdream/blog/v1/params.d.ts +18 -2
  694. package/sparkdream/blog/v1/params.js +6 -0
  695. package/sparkdream/blog/v1/post.d.ts +18 -2
  696. package/sparkdream/blog/v1/post.js +6 -0
  697. package/sparkdream/blog/v1/query.d.ts +114 -14
  698. package/sparkdream/blog/v1/query.js +36 -0
  699. package/sparkdream/blog/v1/tx.d.ts +151 -18
  700. package/sparkdream/blog/v1/tx.js +49 -0
  701. package/sparkdream/bundle.d.ts +302 -310
  702. package/sparkdream/bundle.js +41 -41
  703. package/sparkdream/rpc.query.d.ts +1 -9
  704. package/sparkdream/rpc.query.js +0 -5
  705. package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
  706. package/sparkdream/sparkdream/module/v1/module.js +6 -0
  707. package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
  708. package/sparkdream/sparkdream/v1/genesis.js +6 -0
  709. package/sparkdream/sparkdream/v1/params.d.ts +18 -2
  710. package/sparkdream/sparkdream/v1/params.js +6 -0
  711. package/sparkdream/sparkdream/v1/query.d.ts +42 -6
  712. package/sparkdream/sparkdream/v1/query.js +12 -0
  713. package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
  714. package/sparkdream/sparkdream/v1/tx.js +13 -0
  715. package/tendermint/abci/types.d.ts +971 -98
  716. package/tendermint/abci/types.js +255 -0
  717. package/tendermint/bundle.d.ts +844 -844
  718. package/tendermint/bundle.js +18 -18
  719. package/tendermint/crypto/keys.d.ts +18 -2
  720. package/tendermint/crypto/keys.js +6 -0
  721. package/tendermint/crypto/proof.d.ts +89 -6
  722. package/tendermint/crypto/proof.js +29 -0
  723. package/tendermint/p2p/types.d.ts +60 -0
  724. package/tendermint/p2p/types.js +20 -0
  725. package/tendermint/types/block.d.ts +15 -0
  726. package/tendermint/types/block.js +5 -0
  727. package/tendermint/types/evidence.d.ts +66 -4
  728. package/tendermint/types/evidence.js +22 -0
  729. package/tendermint/types/params.d.ts +112 -8
  730. package/tendermint/types/params.js +46 -0
  731. package/tendermint/types/types.d.ts +327 -42
  732. package/tendermint/types/types.js +87 -0
  733. package/tendermint/types/validator.d.ts +45 -0
  734. package/tendermint/types/validator.js +15 -0
  735. package/tendermint/version/types.d.ts +28 -0
  736. package/tendermint/version/types.js +16 -0
  737. package/types.d.ts +1 -1
  738. package/types.js +1 -1
  739. package/utf8.d.ts +1 -1
  740. package/utf8.js +1 -1
  741. package/varint.d.ts +1 -1
  742. package/varint.js +1 -1
  743. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
  744. package/cosmos/orm/module/v1alpha1/module.js +0 -62
  745. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
  746. package/cosmos/orm/query/v1alpha1/query.js +0 -695
  747. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  748. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  749. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
  750. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
  751. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
@@ -2,80 +2,144 @@ import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "
2
2
  import { Validator, ValidatorAmino, DelegationResponse, DelegationResponseAmino, UnbondingDelegation, UnbondingDelegationAmino, RedelegationResponse, RedelegationResponseAmino, HistoricalInfo, HistoricalInfoAmino, Pool, PoolAmino, Params, ParamsAmino } from "./staking";
3
3
  import { BinaryReader, BinaryWriter } from "../../../binary";
4
4
  import { DeepPartial } from "../../../helpers";
5
- /** QueryValidatorsRequest is request type for Query/Validators RPC method. */
5
+ /**
6
+ * QueryValidatorsRequest is request type for Query/Validators RPC method.
7
+ * @name QueryValidatorsRequest
8
+ * @package cosmos.staking.v1beta1
9
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
10
+ */
6
11
  export interface QueryValidatorsRequest {
7
- /** status enables to query for validators matching a given status. */
12
+ /**
13
+ * status enables to query for validators matching a given status.
14
+ */
8
15
  status: string;
9
- /** pagination defines an optional pagination for the request. */
16
+ /**
17
+ * pagination defines an optional pagination for the request.
18
+ */
10
19
  pagination?: PageRequest;
11
20
  }
12
21
  export interface QueryValidatorsRequestProtoMsg {
13
22
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest";
14
23
  value: Uint8Array;
15
24
  }
16
- /** QueryValidatorsRequest is request type for Query/Validators RPC method. */
25
+ /**
26
+ * QueryValidatorsRequest is request type for Query/Validators RPC method.
27
+ * @name QueryValidatorsRequestAmino
28
+ * @package cosmos.staking.v1beta1
29
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
30
+ */
17
31
  export interface QueryValidatorsRequestAmino {
18
- /** status enables to query for validators matching a given status. */
32
+ /**
33
+ * status enables to query for validators matching a given status.
34
+ */
19
35
  status?: string;
20
- /** pagination defines an optional pagination for the request. */
36
+ /**
37
+ * pagination defines an optional pagination for the request.
38
+ */
21
39
  pagination?: PageRequestAmino;
22
40
  }
23
41
  export interface QueryValidatorsRequestAminoMsg {
24
42
  type: "cosmos-sdk/QueryValidatorsRequest";
25
43
  value: QueryValidatorsRequestAmino;
26
44
  }
27
- /** QueryValidatorsResponse is response type for the Query/Validators RPC method */
45
+ /**
46
+ * QueryValidatorsResponse is response type for the Query/Validators RPC method
47
+ * @name QueryValidatorsResponse
48
+ * @package cosmos.staking.v1beta1
49
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
50
+ */
28
51
  export interface QueryValidatorsResponse {
29
- /** validators contains all the queried validators. */
52
+ /**
53
+ * validators contains all the queried validators.
54
+ */
30
55
  validators: Validator[];
31
- /** pagination defines the pagination in the response. */
56
+ /**
57
+ * pagination defines the pagination in the response.
58
+ */
32
59
  pagination?: PageResponse;
33
60
  }
34
61
  export interface QueryValidatorsResponseProtoMsg {
35
62
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse";
36
63
  value: Uint8Array;
37
64
  }
38
- /** QueryValidatorsResponse is response type for the Query/Validators RPC method */
65
+ /**
66
+ * QueryValidatorsResponse is response type for the Query/Validators RPC method
67
+ * @name QueryValidatorsResponseAmino
68
+ * @package cosmos.staking.v1beta1
69
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
70
+ */
39
71
  export interface QueryValidatorsResponseAmino {
40
- /** validators contains all the queried validators. */
72
+ /**
73
+ * validators contains all the queried validators.
74
+ */
41
75
  validators: ValidatorAmino[];
42
- /** pagination defines the pagination in the response. */
76
+ /**
77
+ * pagination defines the pagination in the response.
78
+ */
43
79
  pagination?: PageResponseAmino;
44
80
  }
45
81
  export interface QueryValidatorsResponseAminoMsg {
46
82
  type: "cosmos-sdk/QueryValidatorsResponse";
47
83
  value: QueryValidatorsResponseAmino;
48
84
  }
49
- /** QueryValidatorRequest is response type for the Query/Validator RPC method */
85
+ /**
86
+ * QueryValidatorRequest is response type for the Query/Validator RPC method
87
+ * @name QueryValidatorRequest
88
+ * @package cosmos.staking.v1beta1
89
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
90
+ */
50
91
  export interface QueryValidatorRequest {
51
- /** validator_addr defines the validator address to query for. */
92
+ /**
93
+ * validator_addr defines the validator address to query for.
94
+ */
52
95
  validatorAddr: string;
53
96
  }
54
97
  export interface QueryValidatorRequestProtoMsg {
55
98
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorRequest";
56
99
  value: Uint8Array;
57
100
  }
58
- /** QueryValidatorRequest is response type for the Query/Validator RPC method */
101
+ /**
102
+ * QueryValidatorRequest is response type for the Query/Validator RPC method
103
+ * @name QueryValidatorRequestAmino
104
+ * @package cosmos.staking.v1beta1
105
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
106
+ */
59
107
  export interface QueryValidatorRequestAmino {
60
- /** validator_addr defines the validator address to query for. */
108
+ /**
109
+ * validator_addr defines the validator address to query for.
110
+ */
61
111
  validator_addr?: string;
62
112
  }
63
113
  export interface QueryValidatorRequestAminoMsg {
64
114
  type: "cosmos-sdk/QueryValidatorRequest";
65
115
  value: QueryValidatorRequestAmino;
66
116
  }
67
- /** QueryValidatorResponse is response type for the Query/Validator RPC method */
117
+ /**
118
+ * QueryValidatorResponse is response type for the Query/Validator RPC method
119
+ * @name QueryValidatorResponse
120
+ * @package cosmos.staking.v1beta1
121
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
122
+ */
68
123
  export interface QueryValidatorResponse {
69
- /** validator defines the validator info. */
124
+ /**
125
+ * validator defines the validator info.
126
+ */
70
127
  validator: Validator;
71
128
  }
72
129
  export interface QueryValidatorResponseProtoMsg {
73
130
  typeUrl: "/cosmos.staking.v1beta1.QueryValidatorResponse";
74
131
  value: Uint8Array;
75
132
  }
76
- /** QueryValidatorResponse is response type for the Query/Validator RPC method */
133
+ /**
134
+ * QueryValidatorResponse is response type for the Query/Validator RPC method
135
+ * @name QueryValidatorResponseAmino
136
+ * @package cosmos.staking.v1beta1
137
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
138
+ */
77
139
  export interface QueryValidatorResponseAmino {
78
- /** validator defines the validator info. */
140
+ /**
141
+ * validator defines the validator info.
142
+ */
79
143
  validator: ValidatorAmino;
80
144
  }
81
145
  export interface QueryValidatorResponseAminoMsg {
@@ -85,11 +149,18 @@ export interface QueryValidatorResponseAminoMsg {
85
149
  /**
86
150
  * QueryValidatorDelegationsRequest is request type for the
87
151
  * Query/ValidatorDelegations RPC method
152
+ * @name QueryValidatorDelegationsRequest
153
+ * @package cosmos.staking.v1beta1
154
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
88
155
  */
89
156
  export interface QueryValidatorDelegationsRequest {
90
- /** validator_addr defines the validator address to query for. */
157
+ /**
158
+ * validator_addr defines the validator address to query for.
159
+ */
91
160
  validatorAddr: string;
92
- /** pagination defines an optional pagination for the request. */
161
+ /**
162
+ * pagination defines an optional pagination for the request.
163
+ */
93
164
  pagination?: PageRequest;
94
165
  }
95
166
  export interface QueryValidatorDelegationsRequestProtoMsg {
@@ -99,11 +170,18 @@ export interface QueryValidatorDelegationsRequestProtoMsg {
99
170
  /**
100
171
  * QueryValidatorDelegationsRequest is request type for the
101
172
  * Query/ValidatorDelegations RPC method
173
+ * @name QueryValidatorDelegationsRequestAmino
174
+ * @package cosmos.staking.v1beta1
175
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
102
176
  */
103
177
  export interface QueryValidatorDelegationsRequestAmino {
104
- /** validator_addr defines the validator address to query for. */
178
+ /**
179
+ * validator_addr defines the validator address to query for.
180
+ */
105
181
  validator_addr?: string;
106
- /** pagination defines an optional pagination for the request. */
182
+ /**
183
+ * pagination defines an optional pagination for the request.
184
+ */
107
185
  pagination?: PageRequestAmino;
108
186
  }
109
187
  export interface QueryValidatorDelegationsRequestAminoMsg {
@@ -113,10 +191,15 @@ export interface QueryValidatorDelegationsRequestAminoMsg {
113
191
  /**
114
192
  * QueryValidatorDelegationsResponse is response type for the
115
193
  * Query/ValidatorDelegations RPC method
194
+ * @name QueryValidatorDelegationsResponse
195
+ * @package cosmos.staking.v1beta1
196
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
116
197
  */
117
198
  export interface QueryValidatorDelegationsResponse {
118
199
  delegationResponses: DelegationResponse[];
119
- /** pagination defines the pagination in the response. */
200
+ /**
201
+ * pagination defines the pagination in the response.
202
+ */
120
203
  pagination?: PageResponse;
121
204
  }
122
205
  export interface QueryValidatorDelegationsResponseProtoMsg {
@@ -126,10 +209,15 @@ export interface QueryValidatorDelegationsResponseProtoMsg {
126
209
  /**
127
210
  * QueryValidatorDelegationsResponse is response type for the
128
211
  * Query/ValidatorDelegations RPC method
212
+ * @name QueryValidatorDelegationsResponseAmino
213
+ * @package cosmos.staking.v1beta1
214
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
129
215
  */
130
216
  export interface QueryValidatorDelegationsResponseAmino {
131
217
  delegation_responses: DelegationResponseAmino[];
132
- /** pagination defines the pagination in the response. */
218
+ /**
219
+ * pagination defines the pagination in the response.
220
+ */
133
221
  pagination?: PageResponseAmino;
134
222
  }
135
223
  export interface QueryValidatorDelegationsResponseAminoMsg {
@@ -139,11 +227,18 @@ export interface QueryValidatorDelegationsResponseAminoMsg {
139
227
  /**
140
228
  * QueryValidatorUnbondingDelegationsRequest is required type for the
141
229
  * Query/ValidatorUnbondingDelegations RPC method
230
+ * @name QueryValidatorUnbondingDelegationsRequest
231
+ * @package cosmos.staking.v1beta1
232
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
142
233
  */
143
234
  export interface QueryValidatorUnbondingDelegationsRequest {
144
- /** validator_addr defines the validator address to query for. */
235
+ /**
236
+ * validator_addr defines the validator address to query for.
237
+ */
145
238
  validatorAddr: string;
146
- /** pagination defines an optional pagination for the request. */
239
+ /**
240
+ * pagination defines an optional pagination for the request.
241
+ */
147
242
  pagination?: PageRequest;
148
243
  }
149
244
  export interface QueryValidatorUnbondingDelegationsRequestProtoMsg {
@@ -153,11 +248,18 @@ export interface QueryValidatorUnbondingDelegationsRequestProtoMsg {
153
248
  /**
154
249
  * QueryValidatorUnbondingDelegationsRequest is required type for the
155
250
  * Query/ValidatorUnbondingDelegations RPC method
251
+ * @name QueryValidatorUnbondingDelegationsRequestAmino
252
+ * @package cosmos.staking.v1beta1
253
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
156
254
  */
157
255
  export interface QueryValidatorUnbondingDelegationsRequestAmino {
158
- /** validator_addr defines the validator address to query for. */
256
+ /**
257
+ * validator_addr defines the validator address to query for.
258
+ */
159
259
  validator_addr?: string;
160
- /** pagination defines an optional pagination for the request. */
260
+ /**
261
+ * pagination defines an optional pagination for the request.
262
+ */
161
263
  pagination?: PageRequestAmino;
162
264
  }
163
265
  export interface QueryValidatorUnbondingDelegationsRequestAminoMsg {
@@ -167,10 +269,15 @@ export interface QueryValidatorUnbondingDelegationsRequestAminoMsg {
167
269
  /**
168
270
  * QueryValidatorUnbondingDelegationsResponse is response type for the
169
271
  * Query/ValidatorUnbondingDelegations RPC method.
272
+ * @name QueryValidatorUnbondingDelegationsResponse
273
+ * @package cosmos.staking.v1beta1
274
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
170
275
  */
171
276
  export interface QueryValidatorUnbondingDelegationsResponse {
172
277
  unbondingResponses: UnbondingDelegation[];
173
- /** pagination defines the pagination in the response. */
278
+ /**
279
+ * pagination defines the pagination in the response.
280
+ */
174
281
  pagination?: PageResponse;
175
282
  }
176
283
  export interface QueryValidatorUnbondingDelegationsResponseProtoMsg {
@@ -180,50 +287,87 @@ export interface QueryValidatorUnbondingDelegationsResponseProtoMsg {
180
287
  /**
181
288
  * QueryValidatorUnbondingDelegationsResponse is response type for the
182
289
  * Query/ValidatorUnbondingDelegations RPC method.
290
+ * @name QueryValidatorUnbondingDelegationsResponseAmino
291
+ * @package cosmos.staking.v1beta1
292
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
183
293
  */
184
294
  export interface QueryValidatorUnbondingDelegationsResponseAmino {
185
295
  unbonding_responses: UnbondingDelegationAmino[];
186
- /** pagination defines the pagination in the response. */
296
+ /**
297
+ * pagination defines the pagination in the response.
298
+ */
187
299
  pagination?: PageResponseAmino;
188
300
  }
189
301
  export interface QueryValidatorUnbondingDelegationsResponseAminoMsg {
190
302
  type: "cosmos-sdk/QueryValidatorUnbondingDelegationsResponse";
191
303
  value: QueryValidatorUnbondingDelegationsResponseAmino;
192
304
  }
193
- /** QueryDelegationRequest is request type for the Query/Delegation RPC method. */
305
+ /**
306
+ * QueryDelegationRequest is request type for the Query/Delegation RPC method.
307
+ * @name QueryDelegationRequest
308
+ * @package cosmos.staking.v1beta1
309
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
310
+ */
194
311
  export interface QueryDelegationRequest {
195
- /** delegator_addr defines the delegator address to query for. */
312
+ /**
313
+ * delegator_addr defines the delegator address to query for.
314
+ */
196
315
  delegatorAddr: string;
197
- /** validator_addr defines the validator address to query for. */
316
+ /**
317
+ * validator_addr defines the validator address to query for.
318
+ */
198
319
  validatorAddr: string;
199
320
  }
200
321
  export interface QueryDelegationRequestProtoMsg {
201
322
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegationRequest";
202
323
  value: Uint8Array;
203
324
  }
204
- /** QueryDelegationRequest is request type for the Query/Delegation RPC method. */
325
+ /**
326
+ * QueryDelegationRequest is request type for the Query/Delegation RPC method.
327
+ * @name QueryDelegationRequestAmino
328
+ * @package cosmos.staking.v1beta1
329
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
330
+ */
205
331
  export interface QueryDelegationRequestAmino {
206
- /** delegator_addr defines the delegator address to query for. */
332
+ /**
333
+ * delegator_addr defines the delegator address to query for.
334
+ */
207
335
  delegator_addr?: string;
208
- /** validator_addr defines the validator address to query for. */
336
+ /**
337
+ * validator_addr defines the validator address to query for.
338
+ */
209
339
  validator_addr?: string;
210
340
  }
211
341
  export interface QueryDelegationRequestAminoMsg {
212
342
  type: "cosmos-sdk/QueryDelegationRequest";
213
343
  value: QueryDelegationRequestAmino;
214
344
  }
215
- /** QueryDelegationResponse is response type for the Query/Delegation RPC method. */
345
+ /**
346
+ * QueryDelegationResponse is response type for the Query/Delegation RPC method.
347
+ * @name QueryDelegationResponse
348
+ * @package cosmos.staking.v1beta1
349
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
350
+ */
216
351
  export interface QueryDelegationResponse {
217
- /** delegation_responses defines the delegation info of a delegation. */
352
+ /**
353
+ * delegation_responses defines the delegation info of a delegation.
354
+ */
218
355
  delegationResponse?: DelegationResponse;
219
356
  }
220
357
  export interface QueryDelegationResponseProtoMsg {
221
358
  typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse";
222
359
  value: Uint8Array;
223
360
  }
224
- /** QueryDelegationResponse is response type for the Query/Delegation RPC method. */
361
+ /**
362
+ * QueryDelegationResponse is response type for the Query/Delegation RPC method.
363
+ * @name QueryDelegationResponseAmino
364
+ * @package cosmos.staking.v1beta1
365
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
366
+ */
225
367
  export interface QueryDelegationResponseAmino {
226
- /** delegation_responses defines the delegation info of a delegation. */
368
+ /**
369
+ * delegation_responses defines the delegation info of a delegation.
370
+ */
227
371
  delegation_response?: DelegationResponseAmino;
228
372
  }
229
373
  export interface QueryDelegationResponseAminoMsg {
@@ -233,11 +377,18 @@ export interface QueryDelegationResponseAminoMsg {
233
377
  /**
234
378
  * QueryUnbondingDelegationRequest is request type for the
235
379
  * Query/UnbondingDelegation RPC method.
380
+ * @name QueryUnbondingDelegationRequest
381
+ * @package cosmos.staking.v1beta1
382
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
236
383
  */
237
384
  export interface QueryUnbondingDelegationRequest {
238
- /** delegator_addr defines the delegator address to query for. */
385
+ /**
386
+ * delegator_addr defines the delegator address to query for.
387
+ */
239
388
  delegatorAddr: string;
240
- /** validator_addr defines the validator address to query for. */
389
+ /**
390
+ * validator_addr defines the validator address to query for.
391
+ */
241
392
  validatorAddr: string;
242
393
  }
243
394
  export interface QueryUnbondingDelegationRequestProtoMsg {
@@ -247,11 +398,18 @@ export interface QueryUnbondingDelegationRequestProtoMsg {
247
398
  /**
248
399
  * QueryUnbondingDelegationRequest is request type for the
249
400
  * Query/UnbondingDelegation RPC method.
401
+ * @name QueryUnbondingDelegationRequestAmino
402
+ * @package cosmos.staking.v1beta1
403
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
250
404
  */
251
405
  export interface QueryUnbondingDelegationRequestAmino {
252
- /** delegator_addr defines the delegator address to query for. */
406
+ /**
407
+ * delegator_addr defines the delegator address to query for.
408
+ */
253
409
  delegator_addr?: string;
254
- /** validator_addr defines the validator address to query for. */
410
+ /**
411
+ * validator_addr defines the validator address to query for.
412
+ */
255
413
  validator_addr?: string;
256
414
  }
257
415
  export interface QueryUnbondingDelegationRequestAminoMsg {
@@ -261,9 +419,14 @@ export interface QueryUnbondingDelegationRequestAminoMsg {
261
419
  /**
262
420
  * QueryDelegationResponse is response type for the Query/UnbondingDelegation
263
421
  * RPC method.
422
+ * @name QueryUnbondingDelegationResponse
423
+ * @package cosmos.staking.v1beta1
424
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
264
425
  */
265
426
  export interface QueryUnbondingDelegationResponse {
266
- /** unbond defines the unbonding information of a delegation. */
427
+ /**
428
+ * unbond defines the unbonding information of a delegation.
429
+ */
267
430
  unbond: UnbondingDelegation;
268
431
  }
269
432
  export interface QueryUnbondingDelegationResponseProtoMsg {
@@ -273,9 +436,14 @@ export interface QueryUnbondingDelegationResponseProtoMsg {
273
436
  /**
274
437
  * QueryDelegationResponse is response type for the Query/UnbondingDelegation
275
438
  * RPC method.
439
+ * @name QueryUnbondingDelegationResponseAmino
440
+ * @package cosmos.staking.v1beta1
441
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
276
442
  */
277
443
  export interface QueryUnbondingDelegationResponseAmino {
278
- /** unbond defines the unbonding information of a delegation. */
444
+ /**
445
+ * unbond defines the unbonding information of a delegation.
446
+ */
279
447
  unbond: UnbondingDelegationAmino;
280
448
  }
281
449
  export interface QueryUnbondingDelegationResponseAminoMsg {
@@ -285,11 +453,18 @@ export interface QueryUnbondingDelegationResponseAminoMsg {
285
453
  /**
286
454
  * QueryDelegatorDelegationsRequest is request type for the
287
455
  * Query/DelegatorDelegations RPC method.
456
+ * @name QueryDelegatorDelegationsRequest
457
+ * @package cosmos.staking.v1beta1
458
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
288
459
  */
289
460
  export interface QueryDelegatorDelegationsRequest {
290
- /** delegator_addr defines the delegator address to query for. */
461
+ /**
462
+ * delegator_addr defines the delegator address to query for.
463
+ */
291
464
  delegatorAddr: string;
292
- /** pagination defines an optional pagination for the request. */
465
+ /**
466
+ * pagination defines an optional pagination for the request.
467
+ */
293
468
  pagination?: PageRequest;
294
469
  }
295
470
  export interface QueryDelegatorDelegationsRequestProtoMsg {
@@ -299,11 +474,18 @@ export interface QueryDelegatorDelegationsRequestProtoMsg {
299
474
  /**
300
475
  * QueryDelegatorDelegationsRequest is request type for the
301
476
  * Query/DelegatorDelegations RPC method.
477
+ * @name QueryDelegatorDelegationsRequestAmino
478
+ * @package cosmos.staking.v1beta1
479
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
302
480
  */
303
481
  export interface QueryDelegatorDelegationsRequestAmino {
304
- /** delegator_addr defines the delegator address to query for. */
482
+ /**
483
+ * delegator_addr defines the delegator address to query for.
484
+ */
305
485
  delegator_addr?: string;
306
- /** pagination defines an optional pagination for the request. */
486
+ /**
487
+ * pagination defines an optional pagination for the request.
488
+ */
307
489
  pagination?: PageRequestAmino;
308
490
  }
309
491
  export interface QueryDelegatorDelegationsRequestAminoMsg {
@@ -313,11 +495,18 @@ export interface QueryDelegatorDelegationsRequestAminoMsg {
313
495
  /**
314
496
  * QueryDelegatorDelegationsResponse is response type for the
315
497
  * Query/DelegatorDelegations RPC method.
498
+ * @name QueryDelegatorDelegationsResponse
499
+ * @package cosmos.staking.v1beta1
500
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
316
501
  */
317
502
  export interface QueryDelegatorDelegationsResponse {
318
- /** delegation_responses defines all the delegations' info of a delegator. */
503
+ /**
504
+ * delegation_responses defines all the delegations' info of a delegator.
505
+ */
319
506
  delegationResponses: DelegationResponse[];
320
- /** pagination defines the pagination in the response. */
507
+ /**
508
+ * pagination defines the pagination in the response.
509
+ */
321
510
  pagination?: PageResponse;
322
511
  }
323
512
  export interface QueryDelegatorDelegationsResponseProtoMsg {
@@ -327,11 +516,18 @@ export interface QueryDelegatorDelegationsResponseProtoMsg {
327
516
  /**
328
517
  * QueryDelegatorDelegationsResponse is response type for the
329
518
  * Query/DelegatorDelegations RPC method.
519
+ * @name QueryDelegatorDelegationsResponseAmino
520
+ * @package cosmos.staking.v1beta1
521
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
330
522
  */
331
523
  export interface QueryDelegatorDelegationsResponseAmino {
332
- /** delegation_responses defines all the delegations' info of a delegator. */
524
+ /**
525
+ * delegation_responses defines all the delegations' info of a delegator.
526
+ */
333
527
  delegation_responses: DelegationResponseAmino[];
334
- /** pagination defines the pagination in the response. */
528
+ /**
529
+ * pagination defines the pagination in the response.
530
+ */
335
531
  pagination?: PageResponseAmino;
336
532
  }
337
533
  export interface QueryDelegatorDelegationsResponseAminoMsg {
@@ -341,11 +537,18 @@ export interface QueryDelegatorDelegationsResponseAminoMsg {
341
537
  /**
342
538
  * QueryDelegatorUnbondingDelegationsRequest is request type for the
343
539
  * Query/DelegatorUnbondingDelegations RPC method.
540
+ * @name QueryDelegatorUnbondingDelegationsRequest
541
+ * @package cosmos.staking.v1beta1
542
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
344
543
  */
345
544
  export interface QueryDelegatorUnbondingDelegationsRequest {
346
- /** delegator_addr defines the delegator address to query for. */
545
+ /**
546
+ * delegator_addr defines the delegator address to query for.
547
+ */
347
548
  delegatorAddr: string;
348
- /** pagination defines an optional pagination for the request. */
549
+ /**
550
+ * pagination defines an optional pagination for the request.
551
+ */
349
552
  pagination?: PageRequest;
350
553
  }
351
554
  export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg {
@@ -355,11 +558,18 @@ export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg {
355
558
  /**
356
559
  * QueryDelegatorUnbondingDelegationsRequest is request type for the
357
560
  * Query/DelegatorUnbondingDelegations RPC method.
561
+ * @name QueryDelegatorUnbondingDelegationsRequestAmino
562
+ * @package cosmos.staking.v1beta1
563
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
358
564
  */
359
565
  export interface QueryDelegatorUnbondingDelegationsRequestAmino {
360
- /** delegator_addr defines the delegator address to query for. */
566
+ /**
567
+ * delegator_addr defines the delegator address to query for.
568
+ */
361
569
  delegator_addr?: string;
362
- /** pagination defines an optional pagination for the request. */
570
+ /**
571
+ * pagination defines an optional pagination for the request.
572
+ */
363
573
  pagination?: PageRequestAmino;
364
574
  }
365
575
  export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg {
@@ -369,10 +579,15 @@ export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg {
369
579
  /**
370
580
  * QueryUnbondingDelegatorDelegationsResponse is response type for the
371
581
  * Query/UnbondingDelegatorDelegations RPC method.
582
+ * @name QueryDelegatorUnbondingDelegationsResponse
583
+ * @package cosmos.staking.v1beta1
584
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
372
585
  */
373
586
  export interface QueryDelegatorUnbondingDelegationsResponse {
374
587
  unbondingResponses: UnbondingDelegation[];
375
- /** pagination defines the pagination in the response. */
588
+ /**
589
+ * pagination defines the pagination in the response.
590
+ */
376
591
  pagination?: PageResponse;
377
592
  }
378
593
  export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg {
@@ -382,10 +597,15 @@ export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg {
382
597
  /**
383
598
  * QueryUnbondingDelegatorDelegationsResponse is response type for the
384
599
  * Query/UnbondingDelegatorDelegations RPC method.
600
+ * @name QueryDelegatorUnbondingDelegationsResponseAmino
601
+ * @package cosmos.staking.v1beta1
602
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
385
603
  */
386
604
  export interface QueryDelegatorUnbondingDelegationsResponseAmino {
387
605
  unbonding_responses: UnbondingDelegationAmino[];
388
- /** pagination defines the pagination in the response. */
606
+ /**
607
+ * pagination defines the pagination in the response.
608
+ */
389
609
  pagination?: PageResponseAmino;
390
610
  }
391
611
  export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg {
@@ -395,15 +615,26 @@ export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg {
395
615
  /**
396
616
  * QueryRedelegationsRequest is request type for the Query/Redelegations RPC
397
617
  * method.
618
+ * @name QueryRedelegationsRequest
619
+ * @package cosmos.staking.v1beta1
620
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
398
621
  */
399
622
  export interface QueryRedelegationsRequest {
400
- /** delegator_addr defines the delegator address to query for. */
623
+ /**
624
+ * delegator_addr defines the delegator address to query for.
625
+ */
401
626
  delegatorAddr: string;
402
- /** src_validator_addr defines the validator address to redelegate from. */
627
+ /**
628
+ * src_validator_addr defines the validator address to redelegate from.
629
+ */
403
630
  srcValidatorAddr: string;
404
- /** dst_validator_addr defines the validator address to redelegate to. */
631
+ /**
632
+ * dst_validator_addr defines the validator address to redelegate to.
633
+ */
405
634
  dstValidatorAddr: string;
406
- /** pagination defines an optional pagination for the request. */
635
+ /**
636
+ * pagination defines an optional pagination for the request.
637
+ */
407
638
  pagination?: PageRequest;
408
639
  }
409
640
  export interface QueryRedelegationsRequestProtoMsg {
@@ -413,15 +644,26 @@ export interface QueryRedelegationsRequestProtoMsg {
413
644
  /**
414
645
  * QueryRedelegationsRequest is request type for the Query/Redelegations RPC
415
646
  * method.
647
+ * @name QueryRedelegationsRequestAmino
648
+ * @package cosmos.staking.v1beta1
649
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
416
650
  */
417
651
  export interface QueryRedelegationsRequestAmino {
418
- /** delegator_addr defines the delegator address to query for. */
652
+ /**
653
+ * delegator_addr defines the delegator address to query for.
654
+ */
419
655
  delegator_addr?: string;
420
- /** src_validator_addr defines the validator address to redelegate from. */
656
+ /**
657
+ * src_validator_addr defines the validator address to redelegate from.
658
+ */
421
659
  src_validator_addr?: string;
422
- /** dst_validator_addr defines the validator address to redelegate to. */
660
+ /**
661
+ * dst_validator_addr defines the validator address to redelegate to.
662
+ */
423
663
  dst_validator_addr?: string;
424
- /** pagination defines an optional pagination for the request. */
664
+ /**
665
+ * pagination defines an optional pagination for the request.
666
+ */
425
667
  pagination?: PageRequestAmino;
426
668
  }
427
669
  export interface QueryRedelegationsRequestAminoMsg {
@@ -431,10 +673,15 @@ export interface QueryRedelegationsRequestAminoMsg {
431
673
  /**
432
674
  * QueryRedelegationsResponse is response type for the Query/Redelegations RPC
433
675
  * method.
676
+ * @name QueryRedelegationsResponse
677
+ * @package cosmos.staking.v1beta1
678
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
434
679
  */
435
680
  export interface QueryRedelegationsResponse {
436
681
  redelegationResponses: RedelegationResponse[];
437
- /** pagination defines the pagination in the response. */
682
+ /**
683
+ * pagination defines the pagination in the response.
684
+ */
438
685
  pagination?: PageResponse;
439
686
  }
440
687
  export interface QueryRedelegationsResponseProtoMsg {
@@ -444,10 +691,15 @@ export interface QueryRedelegationsResponseProtoMsg {
444
691
  /**
445
692
  * QueryRedelegationsResponse is response type for the Query/Redelegations RPC
446
693
  * method.
694
+ * @name QueryRedelegationsResponseAmino
695
+ * @package cosmos.staking.v1beta1
696
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
447
697
  */
448
698
  export interface QueryRedelegationsResponseAmino {
449
699
  redelegation_responses: RedelegationResponseAmino[];
450
- /** pagination defines the pagination in the response. */
700
+ /**
701
+ * pagination defines the pagination in the response.
702
+ */
451
703
  pagination?: PageResponseAmino;
452
704
  }
453
705
  export interface QueryRedelegationsResponseAminoMsg {
@@ -457,11 +709,18 @@ export interface QueryRedelegationsResponseAminoMsg {
457
709
  /**
458
710
  * QueryDelegatorValidatorsRequest is request type for the
459
711
  * Query/DelegatorValidators RPC method.
712
+ * @name QueryDelegatorValidatorsRequest
713
+ * @package cosmos.staking.v1beta1
714
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
460
715
  */
461
716
  export interface QueryDelegatorValidatorsRequest {
462
- /** delegator_addr defines the delegator address to query for. */
717
+ /**
718
+ * delegator_addr defines the delegator address to query for.
719
+ */
463
720
  delegatorAddr: string;
464
- /** pagination defines an optional pagination for the request. */
721
+ /**
722
+ * pagination defines an optional pagination for the request.
723
+ */
465
724
  pagination?: PageRequest;
466
725
  }
467
726
  export interface QueryDelegatorValidatorsRequestProtoMsg {
@@ -471,11 +730,18 @@ export interface QueryDelegatorValidatorsRequestProtoMsg {
471
730
  /**
472
731
  * QueryDelegatorValidatorsRequest is request type for the
473
732
  * Query/DelegatorValidators RPC method.
733
+ * @name QueryDelegatorValidatorsRequestAmino
734
+ * @package cosmos.staking.v1beta1
735
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
474
736
  */
475
737
  export interface QueryDelegatorValidatorsRequestAmino {
476
- /** delegator_addr defines the delegator address to query for. */
738
+ /**
739
+ * delegator_addr defines the delegator address to query for.
740
+ */
477
741
  delegator_addr?: string;
478
- /** pagination defines an optional pagination for the request. */
742
+ /**
743
+ * pagination defines an optional pagination for the request.
744
+ */
479
745
  pagination?: PageRequestAmino;
480
746
  }
481
747
  export interface QueryDelegatorValidatorsRequestAminoMsg {
@@ -485,11 +751,18 @@ export interface QueryDelegatorValidatorsRequestAminoMsg {
485
751
  /**
486
752
  * QueryDelegatorValidatorsResponse is response type for the
487
753
  * Query/DelegatorValidators RPC method.
754
+ * @name QueryDelegatorValidatorsResponse
755
+ * @package cosmos.staking.v1beta1
756
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
488
757
  */
489
758
  export interface QueryDelegatorValidatorsResponse {
490
- /** validators defines the validators' info of a delegator. */
759
+ /**
760
+ * validators defines the validators' info of a delegator.
761
+ */
491
762
  validators: Validator[];
492
- /** pagination defines the pagination in the response. */
763
+ /**
764
+ * pagination defines the pagination in the response.
765
+ */
493
766
  pagination?: PageResponse;
494
767
  }
495
768
  export interface QueryDelegatorValidatorsResponseProtoMsg {
@@ -499,11 +772,18 @@ export interface QueryDelegatorValidatorsResponseProtoMsg {
499
772
  /**
500
773
  * QueryDelegatorValidatorsResponse is response type for the
501
774
  * Query/DelegatorValidators RPC method.
775
+ * @name QueryDelegatorValidatorsResponseAmino
776
+ * @package cosmos.staking.v1beta1
777
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
502
778
  */
503
779
  export interface QueryDelegatorValidatorsResponseAmino {
504
- /** validators defines the validators' info of a delegator. */
780
+ /**
781
+ * validators defines the validators' info of a delegator.
782
+ */
505
783
  validators: ValidatorAmino[];
506
- /** pagination defines the pagination in the response. */
784
+ /**
785
+ * pagination defines the pagination in the response.
786
+ */
507
787
  pagination?: PageResponseAmino;
508
788
  }
509
789
  export interface QueryDelegatorValidatorsResponseAminoMsg {
@@ -513,11 +793,18 @@ export interface QueryDelegatorValidatorsResponseAminoMsg {
513
793
  /**
514
794
  * QueryDelegatorValidatorRequest is request type for the
515
795
  * Query/DelegatorValidator RPC method.
796
+ * @name QueryDelegatorValidatorRequest
797
+ * @package cosmos.staking.v1beta1
798
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
516
799
  */
517
800
  export interface QueryDelegatorValidatorRequest {
518
- /** delegator_addr defines the delegator address to query for. */
801
+ /**
802
+ * delegator_addr defines the delegator address to query for.
803
+ */
519
804
  delegatorAddr: string;
520
- /** validator_addr defines the validator address to query for. */
805
+ /**
806
+ * validator_addr defines the validator address to query for.
807
+ */
521
808
  validatorAddr: string;
522
809
  }
523
810
  export interface QueryDelegatorValidatorRequestProtoMsg {
@@ -527,11 +814,18 @@ export interface QueryDelegatorValidatorRequestProtoMsg {
527
814
  /**
528
815
  * QueryDelegatorValidatorRequest is request type for the
529
816
  * Query/DelegatorValidator RPC method.
817
+ * @name QueryDelegatorValidatorRequestAmino
818
+ * @package cosmos.staking.v1beta1
819
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
530
820
  */
531
821
  export interface QueryDelegatorValidatorRequestAmino {
532
- /** delegator_addr defines the delegator address to query for. */
822
+ /**
823
+ * delegator_addr defines the delegator address to query for.
824
+ */
533
825
  delegator_addr?: string;
534
- /** validator_addr defines the validator address to query for. */
826
+ /**
827
+ * validator_addr defines the validator address to query for.
828
+ */
535
829
  validator_addr?: string;
536
830
  }
537
831
  export interface QueryDelegatorValidatorRequestAminoMsg {
@@ -541,9 +835,14 @@ export interface QueryDelegatorValidatorRequestAminoMsg {
541
835
  /**
542
836
  * QueryDelegatorValidatorResponse response type for the
543
837
  * Query/DelegatorValidator RPC method.
838
+ * @name QueryDelegatorValidatorResponse
839
+ * @package cosmos.staking.v1beta1
840
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
544
841
  */
545
842
  export interface QueryDelegatorValidatorResponse {
546
- /** validator defines the validator info. */
843
+ /**
844
+ * validator defines the validator info.
845
+ */
547
846
  validator: Validator;
548
847
  }
549
848
  export interface QueryDelegatorValidatorResponseProtoMsg {
@@ -553,9 +852,14 @@ export interface QueryDelegatorValidatorResponseProtoMsg {
553
852
  /**
554
853
  * QueryDelegatorValidatorResponse response type for the
555
854
  * Query/DelegatorValidator RPC method.
855
+ * @name QueryDelegatorValidatorResponseAmino
856
+ * @package cosmos.staking.v1beta1
857
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
556
858
  */
557
859
  export interface QueryDelegatorValidatorResponseAmino {
558
- /** validator defines the validator info. */
860
+ /**
861
+ * validator defines the validator info.
862
+ */
559
863
  validator: ValidatorAmino;
560
864
  }
561
865
  export interface QueryDelegatorValidatorResponseAminoMsg {
@@ -565,9 +869,14 @@ export interface QueryDelegatorValidatorResponseAminoMsg {
565
869
  /**
566
870
  * QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
567
871
  * method.
872
+ * @name QueryHistoricalInfoRequest
873
+ * @package cosmos.staking.v1beta1
874
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
568
875
  */
569
876
  export interface QueryHistoricalInfoRequest {
570
- /** height defines at which height to query the historical info. */
877
+ /**
878
+ * height defines at which height to query the historical info.
879
+ */
571
880
  height: bigint;
572
881
  }
573
882
  export interface QueryHistoricalInfoRequestProtoMsg {
@@ -577,9 +886,14 @@ export interface QueryHistoricalInfoRequestProtoMsg {
577
886
  /**
578
887
  * QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
579
888
  * method.
889
+ * @name QueryHistoricalInfoRequestAmino
890
+ * @package cosmos.staking.v1beta1
891
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
580
892
  */
581
893
  export interface QueryHistoricalInfoRequestAmino {
582
- /** height defines at which height to query the historical info. */
894
+ /**
895
+ * height defines at which height to query the historical info.
896
+ */
583
897
  height?: string;
584
898
  }
585
899
  export interface QueryHistoricalInfoRequestAminoMsg {
@@ -589,9 +903,14 @@ export interface QueryHistoricalInfoRequestAminoMsg {
589
903
  /**
590
904
  * QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
591
905
  * method.
906
+ * @name QueryHistoricalInfoResponse
907
+ * @package cosmos.staking.v1beta1
908
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
592
909
  */
593
910
  export interface QueryHistoricalInfoResponse {
594
- /** hist defines the historical info at the given height. */
911
+ /**
912
+ * hist defines the historical info at the given height.
913
+ */
595
914
  hist?: HistoricalInfo;
596
915
  }
597
916
  export interface QueryHistoricalInfoResponseProtoMsg {
@@ -601,79 +920,138 @@ export interface QueryHistoricalInfoResponseProtoMsg {
601
920
  /**
602
921
  * QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
603
922
  * method.
923
+ * @name QueryHistoricalInfoResponseAmino
924
+ * @package cosmos.staking.v1beta1
925
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
604
926
  */
605
927
  export interface QueryHistoricalInfoResponseAmino {
606
- /** hist defines the historical info at the given height. */
928
+ /**
929
+ * hist defines the historical info at the given height.
930
+ */
607
931
  hist?: HistoricalInfoAmino;
608
932
  }
609
933
  export interface QueryHistoricalInfoResponseAminoMsg {
610
934
  type: "cosmos-sdk/QueryHistoricalInfoResponse";
611
935
  value: QueryHistoricalInfoResponseAmino;
612
936
  }
613
- /** QueryPoolRequest is request type for the Query/Pool RPC method. */
937
+ /**
938
+ * QueryPoolRequest is request type for the Query/Pool RPC method.
939
+ * @name QueryPoolRequest
940
+ * @package cosmos.staking.v1beta1
941
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
942
+ */
614
943
  export interface QueryPoolRequest {
615
944
  }
616
945
  export interface QueryPoolRequestProtoMsg {
617
946
  typeUrl: "/cosmos.staking.v1beta1.QueryPoolRequest";
618
947
  value: Uint8Array;
619
948
  }
620
- /** QueryPoolRequest is request type for the Query/Pool RPC method. */
949
+ /**
950
+ * QueryPoolRequest is request type for the Query/Pool RPC method.
951
+ * @name QueryPoolRequestAmino
952
+ * @package cosmos.staking.v1beta1
953
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
954
+ */
621
955
  export interface QueryPoolRequestAmino {
622
956
  }
623
957
  export interface QueryPoolRequestAminoMsg {
624
958
  type: "cosmos-sdk/QueryPoolRequest";
625
959
  value: QueryPoolRequestAmino;
626
960
  }
627
- /** QueryPoolResponse is response type for the Query/Pool RPC method. */
961
+ /**
962
+ * QueryPoolResponse is response type for the Query/Pool RPC method.
963
+ * @name QueryPoolResponse
964
+ * @package cosmos.staking.v1beta1
965
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
966
+ */
628
967
  export interface QueryPoolResponse {
629
- /** pool defines the pool info. */
968
+ /**
969
+ * pool defines the pool info.
970
+ */
630
971
  pool: Pool;
631
972
  }
632
973
  export interface QueryPoolResponseProtoMsg {
633
974
  typeUrl: "/cosmos.staking.v1beta1.QueryPoolResponse";
634
975
  value: Uint8Array;
635
976
  }
636
- /** QueryPoolResponse is response type for the Query/Pool RPC method. */
977
+ /**
978
+ * QueryPoolResponse is response type for the Query/Pool RPC method.
979
+ * @name QueryPoolResponseAmino
980
+ * @package cosmos.staking.v1beta1
981
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
982
+ */
637
983
  export interface QueryPoolResponseAmino {
638
- /** pool defines the pool info. */
984
+ /**
985
+ * pool defines the pool info.
986
+ */
639
987
  pool: PoolAmino;
640
988
  }
641
989
  export interface QueryPoolResponseAminoMsg {
642
990
  type: "cosmos-sdk/QueryPoolResponse";
643
991
  value: QueryPoolResponseAmino;
644
992
  }
645
- /** QueryParamsRequest is request type for the Query/Params RPC method. */
993
+ /**
994
+ * QueryParamsRequest is request type for the Query/Params RPC method.
995
+ * @name QueryParamsRequest
996
+ * @package cosmos.staking.v1beta1
997
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
998
+ */
646
999
  export interface QueryParamsRequest {
647
1000
  }
648
1001
  export interface QueryParamsRequestProtoMsg {
649
1002
  typeUrl: "/cosmos.staking.v1beta1.QueryParamsRequest";
650
1003
  value: Uint8Array;
651
1004
  }
652
- /** QueryParamsRequest is request type for the Query/Params RPC method. */
1005
+ /**
1006
+ * QueryParamsRequest is request type for the Query/Params RPC method.
1007
+ * @name QueryParamsRequestAmino
1008
+ * @package cosmos.staking.v1beta1
1009
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
1010
+ */
653
1011
  export interface QueryParamsRequestAmino {
654
1012
  }
655
1013
  export interface QueryParamsRequestAminoMsg {
656
1014
  type: "cosmos-sdk/QueryParamsRequest";
657
1015
  value: QueryParamsRequestAmino;
658
1016
  }
659
- /** QueryParamsResponse is response type for the Query/Params RPC method. */
1017
+ /**
1018
+ * QueryParamsResponse is response type for the Query/Params RPC method.
1019
+ * @name QueryParamsResponse
1020
+ * @package cosmos.staking.v1beta1
1021
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
1022
+ */
660
1023
  export interface QueryParamsResponse {
661
- /** params holds all the parameters of this module. */
1024
+ /**
1025
+ * params holds all the parameters of this module.
1026
+ */
662
1027
  params: Params;
663
1028
  }
664
1029
  export interface QueryParamsResponseProtoMsg {
665
1030
  typeUrl: "/cosmos.staking.v1beta1.QueryParamsResponse";
666
1031
  value: Uint8Array;
667
1032
  }
668
- /** QueryParamsResponse is response type for the Query/Params RPC method. */
1033
+ /**
1034
+ * QueryParamsResponse is response type for the Query/Params RPC method.
1035
+ * @name QueryParamsResponseAmino
1036
+ * @package cosmos.staking.v1beta1
1037
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
1038
+ */
669
1039
  export interface QueryParamsResponseAmino {
670
- /** params holds all the parameters of this module. */
1040
+ /**
1041
+ * params holds all the parameters of this module.
1042
+ */
671
1043
  params: ParamsAmino;
672
1044
  }
673
1045
  export interface QueryParamsResponseAminoMsg {
674
1046
  type: "cosmos-sdk/QueryParamsResponse";
675
1047
  value: QueryParamsResponseAmino;
676
1048
  }
1049
+ /**
1050
+ * QueryValidatorsRequest is request type for Query/Validators RPC method.
1051
+ * @name QueryValidatorsRequest
1052
+ * @package cosmos.staking.v1beta1
1053
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
1054
+ */
677
1055
  export declare const QueryValidatorsRequest: {
678
1056
  typeUrl: string;
679
1057
  aminoType: string;
@@ -688,6 +1066,12 @@ export declare const QueryValidatorsRequest: {
688
1066
  toProto(message: QueryValidatorsRequest): Uint8Array;
689
1067
  toProtoMsg(message: QueryValidatorsRequest): QueryValidatorsRequestProtoMsg;
690
1068
  };
1069
+ /**
1070
+ * QueryValidatorsResponse is response type for the Query/Validators RPC method
1071
+ * @name QueryValidatorsResponse
1072
+ * @package cosmos.staking.v1beta1
1073
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
1074
+ */
691
1075
  export declare const QueryValidatorsResponse: {
692
1076
  typeUrl: string;
693
1077
  aminoType: string;
@@ -702,6 +1086,12 @@ export declare const QueryValidatorsResponse: {
702
1086
  toProto(message: QueryValidatorsResponse): Uint8Array;
703
1087
  toProtoMsg(message: QueryValidatorsResponse): QueryValidatorsResponseProtoMsg;
704
1088
  };
1089
+ /**
1090
+ * QueryValidatorRequest is response type for the Query/Validator RPC method
1091
+ * @name QueryValidatorRequest
1092
+ * @package cosmos.staking.v1beta1
1093
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
1094
+ */
705
1095
  export declare const QueryValidatorRequest: {
706
1096
  typeUrl: string;
707
1097
  aminoType: string;
@@ -716,6 +1106,12 @@ export declare const QueryValidatorRequest: {
716
1106
  toProto(message: QueryValidatorRequest): Uint8Array;
717
1107
  toProtoMsg(message: QueryValidatorRequest): QueryValidatorRequestProtoMsg;
718
1108
  };
1109
+ /**
1110
+ * QueryValidatorResponse is response type for the Query/Validator RPC method
1111
+ * @name QueryValidatorResponse
1112
+ * @package cosmos.staking.v1beta1
1113
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
1114
+ */
719
1115
  export declare const QueryValidatorResponse: {
720
1116
  typeUrl: string;
721
1117
  aminoType: string;
@@ -730,6 +1126,13 @@ export declare const QueryValidatorResponse: {
730
1126
  toProto(message: QueryValidatorResponse): Uint8Array;
731
1127
  toProtoMsg(message: QueryValidatorResponse): QueryValidatorResponseProtoMsg;
732
1128
  };
1129
+ /**
1130
+ * QueryValidatorDelegationsRequest is request type for the
1131
+ * Query/ValidatorDelegations RPC method
1132
+ * @name QueryValidatorDelegationsRequest
1133
+ * @package cosmos.staking.v1beta1
1134
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
1135
+ */
733
1136
  export declare const QueryValidatorDelegationsRequest: {
734
1137
  typeUrl: string;
735
1138
  aminoType: string;
@@ -744,6 +1147,13 @@ export declare const QueryValidatorDelegationsRequest: {
744
1147
  toProto(message: QueryValidatorDelegationsRequest): Uint8Array;
745
1148
  toProtoMsg(message: QueryValidatorDelegationsRequest): QueryValidatorDelegationsRequestProtoMsg;
746
1149
  };
1150
+ /**
1151
+ * QueryValidatorDelegationsResponse is response type for the
1152
+ * Query/ValidatorDelegations RPC method
1153
+ * @name QueryValidatorDelegationsResponse
1154
+ * @package cosmos.staking.v1beta1
1155
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
1156
+ */
747
1157
  export declare const QueryValidatorDelegationsResponse: {
748
1158
  typeUrl: string;
749
1159
  aminoType: string;
@@ -758,6 +1168,13 @@ export declare const QueryValidatorDelegationsResponse: {
758
1168
  toProto(message: QueryValidatorDelegationsResponse): Uint8Array;
759
1169
  toProtoMsg(message: QueryValidatorDelegationsResponse): QueryValidatorDelegationsResponseProtoMsg;
760
1170
  };
1171
+ /**
1172
+ * QueryValidatorUnbondingDelegationsRequest is required type for the
1173
+ * Query/ValidatorUnbondingDelegations RPC method
1174
+ * @name QueryValidatorUnbondingDelegationsRequest
1175
+ * @package cosmos.staking.v1beta1
1176
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
1177
+ */
761
1178
  export declare const QueryValidatorUnbondingDelegationsRequest: {
762
1179
  typeUrl: string;
763
1180
  aminoType: string;
@@ -772,6 +1189,13 @@ export declare const QueryValidatorUnbondingDelegationsRequest: {
772
1189
  toProto(message: QueryValidatorUnbondingDelegationsRequest): Uint8Array;
773
1190
  toProtoMsg(message: QueryValidatorUnbondingDelegationsRequest): QueryValidatorUnbondingDelegationsRequestProtoMsg;
774
1191
  };
1192
+ /**
1193
+ * QueryValidatorUnbondingDelegationsResponse is response type for the
1194
+ * Query/ValidatorUnbondingDelegations RPC method.
1195
+ * @name QueryValidatorUnbondingDelegationsResponse
1196
+ * @package cosmos.staking.v1beta1
1197
+ * @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
1198
+ */
775
1199
  export declare const QueryValidatorUnbondingDelegationsResponse: {
776
1200
  typeUrl: string;
777
1201
  aminoType: string;
@@ -786,6 +1210,12 @@ export declare const QueryValidatorUnbondingDelegationsResponse: {
786
1210
  toProto(message: QueryValidatorUnbondingDelegationsResponse): Uint8Array;
787
1211
  toProtoMsg(message: QueryValidatorUnbondingDelegationsResponse): QueryValidatorUnbondingDelegationsResponseProtoMsg;
788
1212
  };
1213
+ /**
1214
+ * QueryDelegationRequest is request type for the Query/Delegation RPC method.
1215
+ * @name QueryDelegationRequest
1216
+ * @package cosmos.staking.v1beta1
1217
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
1218
+ */
789
1219
  export declare const QueryDelegationRequest: {
790
1220
  typeUrl: string;
791
1221
  aminoType: string;
@@ -800,6 +1230,12 @@ export declare const QueryDelegationRequest: {
800
1230
  toProto(message: QueryDelegationRequest): Uint8Array;
801
1231
  toProtoMsg(message: QueryDelegationRequest): QueryDelegationRequestProtoMsg;
802
1232
  };
1233
+ /**
1234
+ * QueryDelegationResponse is response type for the Query/Delegation RPC method.
1235
+ * @name QueryDelegationResponse
1236
+ * @package cosmos.staking.v1beta1
1237
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
1238
+ */
803
1239
  export declare const QueryDelegationResponse: {
804
1240
  typeUrl: string;
805
1241
  aminoType: string;
@@ -814,6 +1250,13 @@ export declare const QueryDelegationResponse: {
814
1250
  toProto(message: QueryDelegationResponse): Uint8Array;
815
1251
  toProtoMsg(message: QueryDelegationResponse): QueryDelegationResponseProtoMsg;
816
1252
  };
1253
+ /**
1254
+ * QueryUnbondingDelegationRequest is request type for the
1255
+ * Query/UnbondingDelegation RPC method.
1256
+ * @name QueryUnbondingDelegationRequest
1257
+ * @package cosmos.staking.v1beta1
1258
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
1259
+ */
817
1260
  export declare const QueryUnbondingDelegationRequest: {
818
1261
  typeUrl: string;
819
1262
  aminoType: string;
@@ -828,6 +1271,13 @@ export declare const QueryUnbondingDelegationRequest: {
828
1271
  toProto(message: QueryUnbondingDelegationRequest): Uint8Array;
829
1272
  toProtoMsg(message: QueryUnbondingDelegationRequest): QueryUnbondingDelegationRequestProtoMsg;
830
1273
  };
1274
+ /**
1275
+ * QueryDelegationResponse is response type for the Query/UnbondingDelegation
1276
+ * RPC method.
1277
+ * @name QueryUnbondingDelegationResponse
1278
+ * @package cosmos.staking.v1beta1
1279
+ * @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
1280
+ */
831
1281
  export declare const QueryUnbondingDelegationResponse: {
832
1282
  typeUrl: string;
833
1283
  aminoType: string;
@@ -842,6 +1292,13 @@ export declare const QueryUnbondingDelegationResponse: {
842
1292
  toProto(message: QueryUnbondingDelegationResponse): Uint8Array;
843
1293
  toProtoMsg(message: QueryUnbondingDelegationResponse): QueryUnbondingDelegationResponseProtoMsg;
844
1294
  };
1295
+ /**
1296
+ * QueryDelegatorDelegationsRequest is request type for the
1297
+ * Query/DelegatorDelegations RPC method.
1298
+ * @name QueryDelegatorDelegationsRequest
1299
+ * @package cosmos.staking.v1beta1
1300
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
1301
+ */
845
1302
  export declare const QueryDelegatorDelegationsRequest: {
846
1303
  typeUrl: string;
847
1304
  aminoType: string;
@@ -856,6 +1313,13 @@ export declare const QueryDelegatorDelegationsRequest: {
856
1313
  toProto(message: QueryDelegatorDelegationsRequest): Uint8Array;
857
1314
  toProtoMsg(message: QueryDelegatorDelegationsRequest): QueryDelegatorDelegationsRequestProtoMsg;
858
1315
  };
1316
+ /**
1317
+ * QueryDelegatorDelegationsResponse is response type for the
1318
+ * Query/DelegatorDelegations RPC method.
1319
+ * @name QueryDelegatorDelegationsResponse
1320
+ * @package cosmos.staking.v1beta1
1321
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
1322
+ */
859
1323
  export declare const QueryDelegatorDelegationsResponse: {
860
1324
  typeUrl: string;
861
1325
  aminoType: string;
@@ -870,6 +1334,13 @@ export declare const QueryDelegatorDelegationsResponse: {
870
1334
  toProto(message: QueryDelegatorDelegationsResponse): Uint8Array;
871
1335
  toProtoMsg(message: QueryDelegatorDelegationsResponse): QueryDelegatorDelegationsResponseProtoMsg;
872
1336
  };
1337
+ /**
1338
+ * QueryDelegatorUnbondingDelegationsRequest is request type for the
1339
+ * Query/DelegatorUnbondingDelegations RPC method.
1340
+ * @name QueryDelegatorUnbondingDelegationsRequest
1341
+ * @package cosmos.staking.v1beta1
1342
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
1343
+ */
873
1344
  export declare const QueryDelegatorUnbondingDelegationsRequest: {
874
1345
  typeUrl: string;
875
1346
  aminoType: string;
@@ -884,6 +1355,13 @@ export declare const QueryDelegatorUnbondingDelegationsRequest: {
884
1355
  toProto(message: QueryDelegatorUnbondingDelegationsRequest): Uint8Array;
885
1356
  toProtoMsg(message: QueryDelegatorUnbondingDelegationsRequest): QueryDelegatorUnbondingDelegationsRequestProtoMsg;
886
1357
  };
1358
+ /**
1359
+ * QueryUnbondingDelegatorDelegationsResponse is response type for the
1360
+ * Query/UnbondingDelegatorDelegations RPC method.
1361
+ * @name QueryDelegatorUnbondingDelegationsResponse
1362
+ * @package cosmos.staking.v1beta1
1363
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
1364
+ */
887
1365
  export declare const QueryDelegatorUnbondingDelegationsResponse: {
888
1366
  typeUrl: string;
889
1367
  aminoType: string;
@@ -898,6 +1376,13 @@ export declare const QueryDelegatorUnbondingDelegationsResponse: {
898
1376
  toProto(message: QueryDelegatorUnbondingDelegationsResponse): Uint8Array;
899
1377
  toProtoMsg(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseProtoMsg;
900
1378
  };
1379
+ /**
1380
+ * QueryRedelegationsRequest is request type for the Query/Redelegations RPC
1381
+ * method.
1382
+ * @name QueryRedelegationsRequest
1383
+ * @package cosmos.staking.v1beta1
1384
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
1385
+ */
901
1386
  export declare const QueryRedelegationsRequest: {
902
1387
  typeUrl: string;
903
1388
  aminoType: string;
@@ -912,6 +1397,13 @@ export declare const QueryRedelegationsRequest: {
912
1397
  toProto(message: QueryRedelegationsRequest): Uint8Array;
913
1398
  toProtoMsg(message: QueryRedelegationsRequest): QueryRedelegationsRequestProtoMsg;
914
1399
  };
1400
+ /**
1401
+ * QueryRedelegationsResponse is response type for the Query/Redelegations RPC
1402
+ * method.
1403
+ * @name QueryRedelegationsResponse
1404
+ * @package cosmos.staking.v1beta1
1405
+ * @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
1406
+ */
915
1407
  export declare const QueryRedelegationsResponse: {
916
1408
  typeUrl: string;
917
1409
  aminoType: string;
@@ -926,6 +1418,13 @@ export declare const QueryRedelegationsResponse: {
926
1418
  toProto(message: QueryRedelegationsResponse): Uint8Array;
927
1419
  toProtoMsg(message: QueryRedelegationsResponse): QueryRedelegationsResponseProtoMsg;
928
1420
  };
1421
+ /**
1422
+ * QueryDelegatorValidatorsRequest is request type for the
1423
+ * Query/DelegatorValidators RPC method.
1424
+ * @name QueryDelegatorValidatorsRequest
1425
+ * @package cosmos.staking.v1beta1
1426
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
1427
+ */
929
1428
  export declare const QueryDelegatorValidatorsRequest: {
930
1429
  typeUrl: string;
931
1430
  aminoType: string;
@@ -940,6 +1439,13 @@ export declare const QueryDelegatorValidatorsRequest: {
940
1439
  toProto(message: QueryDelegatorValidatorsRequest): Uint8Array;
941
1440
  toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg;
942
1441
  };
1442
+ /**
1443
+ * QueryDelegatorValidatorsResponse is response type for the
1444
+ * Query/DelegatorValidators RPC method.
1445
+ * @name QueryDelegatorValidatorsResponse
1446
+ * @package cosmos.staking.v1beta1
1447
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
1448
+ */
943
1449
  export declare const QueryDelegatorValidatorsResponse: {
944
1450
  typeUrl: string;
945
1451
  aminoType: string;
@@ -954,6 +1460,13 @@ export declare const QueryDelegatorValidatorsResponse: {
954
1460
  toProto(message: QueryDelegatorValidatorsResponse): Uint8Array;
955
1461
  toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg;
956
1462
  };
1463
+ /**
1464
+ * QueryDelegatorValidatorRequest is request type for the
1465
+ * Query/DelegatorValidator RPC method.
1466
+ * @name QueryDelegatorValidatorRequest
1467
+ * @package cosmos.staking.v1beta1
1468
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
1469
+ */
957
1470
  export declare const QueryDelegatorValidatorRequest: {
958
1471
  typeUrl: string;
959
1472
  aminoType: string;
@@ -968,6 +1481,13 @@ export declare const QueryDelegatorValidatorRequest: {
968
1481
  toProto(message: QueryDelegatorValidatorRequest): Uint8Array;
969
1482
  toProtoMsg(message: QueryDelegatorValidatorRequest): QueryDelegatorValidatorRequestProtoMsg;
970
1483
  };
1484
+ /**
1485
+ * QueryDelegatorValidatorResponse response type for the
1486
+ * Query/DelegatorValidator RPC method.
1487
+ * @name QueryDelegatorValidatorResponse
1488
+ * @package cosmos.staking.v1beta1
1489
+ * @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
1490
+ */
971
1491
  export declare const QueryDelegatorValidatorResponse: {
972
1492
  typeUrl: string;
973
1493
  aminoType: string;
@@ -982,6 +1502,13 @@ export declare const QueryDelegatorValidatorResponse: {
982
1502
  toProto(message: QueryDelegatorValidatorResponse): Uint8Array;
983
1503
  toProtoMsg(message: QueryDelegatorValidatorResponse): QueryDelegatorValidatorResponseProtoMsg;
984
1504
  };
1505
+ /**
1506
+ * QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
1507
+ * method.
1508
+ * @name QueryHistoricalInfoRequest
1509
+ * @package cosmos.staking.v1beta1
1510
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
1511
+ */
985
1512
  export declare const QueryHistoricalInfoRequest: {
986
1513
  typeUrl: string;
987
1514
  aminoType: string;
@@ -996,6 +1523,13 @@ export declare const QueryHistoricalInfoRequest: {
996
1523
  toProto(message: QueryHistoricalInfoRequest): Uint8Array;
997
1524
  toProtoMsg(message: QueryHistoricalInfoRequest): QueryHistoricalInfoRequestProtoMsg;
998
1525
  };
1526
+ /**
1527
+ * QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
1528
+ * method.
1529
+ * @name QueryHistoricalInfoResponse
1530
+ * @package cosmos.staking.v1beta1
1531
+ * @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
1532
+ */
999
1533
  export declare const QueryHistoricalInfoResponse: {
1000
1534
  typeUrl: string;
1001
1535
  aminoType: string;
@@ -1010,6 +1544,12 @@ export declare const QueryHistoricalInfoResponse: {
1010
1544
  toProto(message: QueryHistoricalInfoResponse): Uint8Array;
1011
1545
  toProtoMsg(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseProtoMsg;
1012
1546
  };
1547
+ /**
1548
+ * QueryPoolRequest is request type for the Query/Pool RPC method.
1549
+ * @name QueryPoolRequest
1550
+ * @package cosmos.staking.v1beta1
1551
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
1552
+ */
1013
1553
  export declare const QueryPoolRequest: {
1014
1554
  typeUrl: string;
1015
1555
  aminoType: string;
@@ -1024,6 +1564,12 @@ export declare const QueryPoolRequest: {
1024
1564
  toProto(message: QueryPoolRequest): Uint8Array;
1025
1565
  toProtoMsg(message: QueryPoolRequest): QueryPoolRequestProtoMsg;
1026
1566
  };
1567
+ /**
1568
+ * QueryPoolResponse is response type for the Query/Pool RPC method.
1569
+ * @name QueryPoolResponse
1570
+ * @package cosmos.staking.v1beta1
1571
+ * @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
1572
+ */
1027
1573
  export declare const QueryPoolResponse: {
1028
1574
  typeUrl: string;
1029
1575
  aminoType: string;
@@ -1038,6 +1584,12 @@ export declare const QueryPoolResponse: {
1038
1584
  toProto(message: QueryPoolResponse): Uint8Array;
1039
1585
  toProtoMsg(message: QueryPoolResponse): QueryPoolResponseProtoMsg;
1040
1586
  };
1587
+ /**
1588
+ * QueryParamsRequest is request type for the Query/Params RPC method.
1589
+ * @name QueryParamsRequest
1590
+ * @package cosmos.staking.v1beta1
1591
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
1592
+ */
1041
1593
  export declare const QueryParamsRequest: {
1042
1594
  typeUrl: string;
1043
1595
  aminoType: string;
@@ -1052,6 +1604,12 @@ export declare const QueryParamsRequest: {
1052
1604
  toProto(message: QueryParamsRequest): Uint8Array;
1053
1605
  toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
1054
1606
  };
1607
+ /**
1608
+ * QueryParamsResponse is response type for the Query/Params RPC method.
1609
+ * @name QueryParamsResponse
1610
+ * @package cosmos.staking.v1beta1
1611
+ * @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
1612
+ */
1055
1613
  export declare const QueryParamsResponse: {
1056
1614
  typeUrl: string;
1057
1615
  aminoType: string;