@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
@@ -39,6 +39,9 @@ export declare function infractionToJSON(object: Infraction): string;
39
39
  * It is stored as part of staking module's state, which persists the `n` most
40
40
  * recent HistoricalInfo
41
41
  * (`n` is set by the staking module's `historical_entries` parameter).
42
+ * @name HistoricalInfo
43
+ * @package cosmos.staking.v1beta1
44
+ * @see proto type: cosmos.staking.v1beta1.HistoricalInfo
42
45
  */
43
46
  export interface HistoricalInfo {
44
47
  header: Header;
@@ -53,6 +56,9 @@ export interface HistoricalInfoProtoMsg {
53
56
  * It is stored as part of staking module's state, which persists the `n` most
54
57
  * recent HistoricalInfo
55
58
  * (`n` is set by the staking module's `historical_entries` parameter).
59
+ * @name HistoricalInfoAmino
60
+ * @package cosmos.staking.v1beta1
61
+ * @see proto type: cosmos.staking.v1beta1.HistoricalInfo
56
62
  */
57
63
  export interface HistoricalInfoAmino {
58
64
  header: HeaderAmino;
@@ -65,13 +71,22 @@ export interface HistoricalInfoAminoMsg {
65
71
  /**
66
72
  * CommissionRates defines the initial commission rates to be used for creating
67
73
  * a validator.
74
+ * @name CommissionRates
75
+ * @package cosmos.staking.v1beta1
76
+ * @see proto type: cosmos.staking.v1beta1.CommissionRates
68
77
  */
69
78
  export interface CommissionRates {
70
- /** rate is the commission rate charged to delegators, as a fraction. */
79
+ /**
80
+ * rate is the commission rate charged to delegators, as a fraction.
81
+ */
71
82
  rate: string;
72
- /** max_rate defines the maximum commission rate which validator can ever charge, as a fraction. */
83
+ /**
84
+ * max_rate defines the maximum commission rate which validator can ever charge, as a fraction.
85
+ */
73
86
  maxRate: string;
74
- /** max_change_rate defines the maximum daily increase of the validator commission, as a fraction. */
87
+ /**
88
+ * max_change_rate defines the maximum daily increase of the validator commission, as a fraction.
89
+ */
75
90
  maxChangeRate: string;
76
91
  }
77
92
  export interface CommissionRatesProtoMsg {
@@ -81,69 +96,126 @@ export interface CommissionRatesProtoMsg {
81
96
  /**
82
97
  * CommissionRates defines the initial commission rates to be used for creating
83
98
  * a validator.
99
+ * @name CommissionRatesAmino
100
+ * @package cosmos.staking.v1beta1
101
+ * @see proto type: cosmos.staking.v1beta1.CommissionRates
84
102
  */
85
103
  export interface CommissionRatesAmino {
86
- /** rate is the commission rate charged to delegators, as a fraction. */
104
+ /**
105
+ * rate is the commission rate charged to delegators, as a fraction.
106
+ */
87
107
  rate: string;
88
- /** max_rate defines the maximum commission rate which validator can ever charge, as a fraction. */
108
+ /**
109
+ * max_rate defines the maximum commission rate which validator can ever charge, as a fraction.
110
+ */
89
111
  max_rate: string;
90
- /** max_change_rate defines the maximum daily increase of the validator commission, as a fraction. */
112
+ /**
113
+ * max_change_rate defines the maximum daily increase of the validator commission, as a fraction.
114
+ */
91
115
  max_change_rate: string;
92
116
  }
93
117
  export interface CommissionRatesAminoMsg {
94
118
  type: "cosmos-sdk/CommissionRates";
95
119
  value: CommissionRatesAmino;
96
120
  }
97
- /** Commission defines commission parameters for a given validator. */
121
+ /**
122
+ * Commission defines commission parameters for a given validator.
123
+ * @name Commission
124
+ * @package cosmos.staking.v1beta1
125
+ * @see proto type: cosmos.staking.v1beta1.Commission
126
+ */
98
127
  export interface Commission {
99
- /** commission_rates defines the initial commission rates to be used for creating a validator. */
128
+ /**
129
+ * commission_rates defines the initial commission rates to be used for creating a validator.
130
+ */
100
131
  commissionRates: CommissionRates;
101
- /** update_time is the last time the commission rate was changed. */
132
+ /**
133
+ * update_time is the last time the commission rate was changed.
134
+ */
102
135
  updateTime: Date;
103
136
  }
104
137
  export interface CommissionProtoMsg {
105
138
  typeUrl: "/cosmos.staking.v1beta1.Commission";
106
139
  value: Uint8Array;
107
140
  }
108
- /** Commission defines commission parameters for a given validator. */
141
+ /**
142
+ * Commission defines commission parameters for a given validator.
143
+ * @name CommissionAmino
144
+ * @package cosmos.staking.v1beta1
145
+ * @see proto type: cosmos.staking.v1beta1.Commission
146
+ */
109
147
  export interface CommissionAmino {
110
- /** commission_rates defines the initial commission rates to be used for creating a validator. */
148
+ /**
149
+ * commission_rates defines the initial commission rates to be used for creating a validator.
150
+ */
111
151
  commission_rates: CommissionRatesAmino;
112
- /** update_time is the last time the commission rate was changed. */
152
+ /**
153
+ * update_time is the last time the commission rate was changed.
154
+ */
113
155
  update_time: string;
114
156
  }
115
157
  export interface CommissionAminoMsg {
116
158
  type: "cosmos-sdk/Commission";
117
159
  value: CommissionAmino;
118
160
  }
119
- /** Description defines a validator description. */
161
+ /**
162
+ * Description defines a validator description.
163
+ * @name Description
164
+ * @package cosmos.staking.v1beta1
165
+ * @see proto type: cosmos.staking.v1beta1.Description
166
+ */
120
167
  export interface Description {
121
- /** moniker defines a human-readable name for the validator. */
168
+ /**
169
+ * moniker defines a human-readable name for the validator.
170
+ */
122
171
  moniker: string;
123
- /** identity defines an optional identity signature (ex. UPort or Keybase). */
172
+ /**
173
+ * identity defines an optional identity signature (ex. UPort or Keybase).
174
+ */
124
175
  identity: string;
125
- /** website defines an optional website link. */
176
+ /**
177
+ * website defines an optional website link.
178
+ */
126
179
  website: string;
127
- /** security_contact defines an optional email for security contact. */
180
+ /**
181
+ * security_contact defines an optional email for security contact.
182
+ */
128
183
  securityContact: string;
129
- /** details define other optional details. */
184
+ /**
185
+ * details define other optional details.
186
+ */
130
187
  details: string;
131
188
  }
132
189
  export interface DescriptionProtoMsg {
133
190
  typeUrl: "/cosmos.staking.v1beta1.Description";
134
191
  value: Uint8Array;
135
192
  }
136
- /** Description defines a validator description. */
193
+ /**
194
+ * Description defines a validator description.
195
+ * @name DescriptionAmino
196
+ * @package cosmos.staking.v1beta1
197
+ * @see proto type: cosmos.staking.v1beta1.Description
198
+ */
137
199
  export interface DescriptionAmino {
138
- /** moniker defines a human-readable name for the validator. */
200
+ /**
201
+ * moniker defines a human-readable name for the validator.
202
+ */
139
203
  moniker?: string;
140
- /** identity defines an optional identity signature (ex. UPort or Keybase). */
204
+ /**
205
+ * identity defines an optional identity signature (ex. UPort or Keybase).
206
+ */
141
207
  identity?: string;
142
- /** website defines an optional website link. */
208
+ /**
209
+ * website defines an optional website link.
210
+ */
143
211
  website?: string;
144
- /** security_contact defines an optional email for security contact. */
212
+ /**
213
+ * security_contact defines an optional email for security contact.
214
+ */
145
215
  security_contact?: string;
146
- /** details define other optional details. */
216
+ /**
217
+ * details define other optional details.
218
+ */
147
219
  details?: string;
148
220
  }
149
221
  export interface DescriptionAminoMsg {
@@ -159,37 +231,62 @@ export interface DescriptionAminoMsg {
159
231
  * bond shares is based on the amount of coins delegated divided by the current
160
232
  * exchange rate. Voting power can be calculated as total bonded shares
161
233
  * multiplied by exchange rate.
234
+ * @name Validator
235
+ * @package cosmos.staking.v1beta1
236
+ * @see proto type: cosmos.staking.v1beta1.Validator
162
237
  */
163
238
  export interface Validator {
164
- /** operator_address defines the address of the validator's operator; bech encoded in JSON. */
239
+ /**
240
+ * operator_address defines the address of the validator's operator; bech encoded in JSON.
241
+ */
165
242
  operatorAddress: string;
166
- /** consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. */
243
+ /**
244
+ * consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
245
+ */
167
246
  consensusPubkey?: Any | undefined;
168
- /** jailed defined whether the validator has been jailed from bonded status or not. */
247
+ /**
248
+ * jailed defined whether the validator has been jailed from bonded status or not.
249
+ */
169
250
  jailed: boolean;
170
- /** status is the validator status (bonded/unbonding/unbonded). */
251
+ /**
252
+ * status is the validator status (bonded/unbonding/unbonded).
253
+ */
171
254
  status: BondStatus;
172
- /** tokens define the delegated tokens (incl. self-delegation). */
255
+ /**
256
+ * tokens define the delegated tokens (incl. self-delegation).
257
+ */
173
258
  tokens: string;
174
- /** delegator_shares defines total shares issued to a validator's delegators. */
259
+ /**
260
+ * delegator_shares defines total shares issued to a validator's delegators.
261
+ */
175
262
  delegatorShares: string;
176
- /** description defines the description terms for the validator. */
263
+ /**
264
+ * description defines the description terms for the validator.
265
+ */
177
266
  description: Description;
178
- /** unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. */
267
+ /**
268
+ * unbonding_height defines, if unbonding, the height at which this validator has begun unbonding.
269
+ */
179
270
  unbondingHeight: bigint;
180
- /** unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. */
271
+ /**
272
+ * unbonding_time defines, if unbonding, the min time for the validator to complete unbonding.
273
+ */
181
274
  unbondingTime: Date;
182
- /** commission defines the commission parameters. */
275
+ /**
276
+ * commission defines the commission parameters.
277
+ */
183
278
  commission: Commission;
184
279
  /**
185
280
  * min_self_delegation is the validator's self declared minimum self delegation.
186
- *
187
- * Since: cosmos-sdk 0.46
188
281
  */
189
282
  minSelfDelegation: string;
190
- /** strictly positive if this validator's unbonding has been stopped by external modules */
283
+ /**
284
+ * strictly positive if this validator's unbonding has been stopped by external modules
285
+ */
191
286
  unbondingOnHoldRefCount: bigint;
192
- /** list of unbonding ids, each uniquely identifing an unbonding of this validator */
287
+ /**
288
+ * list of unbonding ids, each uniquely identifing an unbonding of this validator
289
+ */
193
290
  unbondingIds: bigint[];
194
291
  }
195
292
  export interface ValidatorProtoMsg {
@@ -197,7 +294,10 @@ export interface ValidatorProtoMsg {
197
294
  value: Uint8Array;
198
295
  }
199
296
  export type ValidatorEncoded = Omit<Validator, "consensusPubkey"> & {
200
- /** consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. */ consensusPubkey?: AnyProtoMsg | undefined;
297
+ /**
298
+ * consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
299
+ */
300
+ consensusPubkey?: AnyProtoMsg | undefined;
201
301
  };
202
302
  /**
203
303
  * Validator defines a validator, together with the total amount of the
@@ -208,44 +308,74 @@ export type ValidatorEncoded = Omit<Validator, "consensusPubkey"> & {
208
308
  * bond shares is based on the amount of coins delegated divided by the current
209
309
  * exchange rate. Voting power can be calculated as total bonded shares
210
310
  * multiplied by exchange rate.
311
+ * @name ValidatorAmino
312
+ * @package cosmos.staking.v1beta1
313
+ * @see proto type: cosmos.staking.v1beta1.Validator
211
314
  */
212
315
  export interface ValidatorAmino {
213
- /** operator_address defines the address of the validator's operator; bech encoded in JSON. */
316
+ /**
317
+ * operator_address defines the address of the validator's operator; bech encoded in JSON.
318
+ */
214
319
  operator_address?: string;
215
- /** consensus_pubkey is the consensus public key of the validator, as a Protobuf Any. */
320
+ /**
321
+ * consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
322
+ */
216
323
  consensus_pubkey?: AnyAmino;
217
- /** jailed defined whether the validator has been jailed from bonded status or not. */
324
+ /**
325
+ * jailed defined whether the validator has been jailed from bonded status or not.
326
+ */
218
327
  jailed?: boolean;
219
- /** status is the validator status (bonded/unbonding/unbonded). */
328
+ /**
329
+ * status is the validator status (bonded/unbonding/unbonded).
330
+ */
220
331
  status?: BondStatus;
221
- /** tokens define the delegated tokens (incl. self-delegation). */
332
+ /**
333
+ * tokens define the delegated tokens (incl. self-delegation).
334
+ */
222
335
  tokens?: string;
223
- /** delegator_shares defines total shares issued to a validator's delegators. */
336
+ /**
337
+ * delegator_shares defines total shares issued to a validator's delegators.
338
+ */
224
339
  delegator_shares?: string;
225
- /** description defines the description terms for the validator. */
340
+ /**
341
+ * description defines the description terms for the validator.
342
+ */
226
343
  description: DescriptionAmino;
227
- /** unbonding_height defines, if unbonding, the height at which this validator has begun unbonding. */
344
+ /**
345
+ * unbonding_height defines, if unbonding, the height at which this validator has begun unbonding.
346
+ */
228
347
  unbonding_height?: string;
229
- /** unbonding_time defines, if unbonding, the min time for the validator to complete unbonding. */
348
+ /**
349
+ * unbonding_time defines, if unbonding, the min time for the validator to complete unbonding.
350
+ */
230
351
  unbonding_time: string;
231
- /** commission defines the commission parameters. */
352
+ /**
353
+ * commission defines the commission parameters.
354
+ */
232
355
  commission: CommissionAmino;
233
356
  /**
234
357
  * min_self_delegation is the validator's self declared minimum self delegation.
235
- *
236
- * Since: cosmos-sdk 0.46
237
358
  */
238
359
  min_self_delegation?: string;
239
- /** strictly positive if this validator's unbonding has been stopped by external modules */
360
+ /**
361
+ * strictly positive if this validator's unbonding has been stopped by external modules
362
+ */
240
363
  unbonding_on_hold_ref_count?: string;
241
- /** list of unbonding ids, each uniquely identifing an unbonding of this validator */
364
+ /**
365
+ * list of unbonding ids, each uniquely identifing an unbonding of this validator
366
+ */
242
367
  unbonding_ids?: string[];
243
368
  }
244
369
  export interface ValidatorAminoMsg {
245
370
  type: "cosmos-sdk/Validator";
246
371
  value: ValidatorAmino;
247
372
  }
248
- /** ValAddresses defines a repeated set of validator addresses. */
373
+ /**
374
+ * ValAddresses defines a repeated set of validator addresses.
375
+ * @name ValAddresses
376
+ * @package cosmos.staking.v1beta1
377
+ * @see proto type: cosmos.staking.v1beta1.ValAddresses
378
+ */
249
379
  export interface ValAddresses {
250
380
  addresses: string[];
251
381
  }
@@ -253,7 +383,12 @@ export interface ValAddressesProtoMsg {
253
383
  typeUrl: "/cosmos.staking.v1beta1.ValAddresses";
254
384
  value: Uint8Array;
255
385
  }
256
- /** ValAddresses defines a repeated set of validator addresses. */
386
+ /**
387
+ * ValAddresses defines a repeated set of validator addresses.
388
+ * @name ValAddressesAmino
389
+ * @package cosmos.staking.v1beta1
390
+ * @see proto type: cosmos.staking.v1beta1.ValAddresses
391
+ */
257
392
  export interface ValAddressesAmino {
258
393
  addresses?: string[];
259
394
  }
@@ -265,6 +400,9 @@ export interface ValAddressesAminoMsg {
265
400
  * DVPair is struct that just has a delegator-validator pair with no other data.
266
401
  * It is intended to be used as a marshalable pointer. For example, a DVPair can
267
402
  * be used to construct the key to getting an UnbondingDelegation from state.
403
+ * @name DVPair
404
+ * @package cosmos.staking.v1beta1
405
+ * @see proto type: cosmos.staking.v1beta1.DVPair
268
406
  */
269
407
  export interface DVPair {
270
408
  delegatorAddress: string;
@@ -278,6 +416,9 @@ export interface DVPairProtoMsg {
278
416
  * DVPair is struct that just has a delegator-validator pair with no other data.
279
417
  * It is intended to be used as a marshalable pointer. For example, a DVPair can
280
418
  * be used to construct the key to getting an UnbondingDelegation from state.
419
+ * @name DVPairAmino
420
+ * @package cosmos.staking.v1beta1
421
+ * @see proto type: cosmos.staking.v1beta1.DVPair
281
422
  */
282
423
  export interface DVPairAmino {
283
424
  delegator_address?: string;
@@ -287,7 +428,12 @@ export interface DVPairAminoMsg {
287
428
  type: "cosmos-sdk/DVPair";
288
429
  value: DVPairAmino;
289
430
  }
290
- /** DVPairs defines an array of DVPair objects. */
431
+ /**
432
+ * DVPairs defines an array of DVPair objects.
433
+ * @name DVPairs
434
+ * @package cosmos.staking.v1beta1
435
+ * @see proto type: cosmos.staking.v1beta1.DVPairs
436
+ */
291
437
  export interface DVPairs {
292
438
  pairs: DVPair[];
293
439
  }
@@ -295,7 +441,12 @@ export interface DVPairsProtoMsg {
295
441
  typeUrl: "/cosmos.staking.v1beta1.DVPairs";
296
442
  value: Uint8Array;
297
443
  }
298
- /** DVPairs defines an array of DVPair objects. */
444
+ /**
445
+ * DVPairs defines an array of DVPair objects.
446
+ * @name DVPairsAmino
447
+ * @package cosmos.staking.v1beta1
448
+ * @see proto type: cosmos.staking.v1beta1.DVPairs
449
+ */
299
450
  export interface DVPairsAmino {
300
451
  pairs: DVPairAmino[];
301
452
  }
@@ -308,6 +459,9 @@ export interface DVPairsAminoMsg {
308
459
  * with no other data. It is intended to be used as a marshalable pointer. For
309
460
  * example, a DVVTriplet can be used to construct the key to getting a
310
461
  * Redelegation from state.
462
+ * @name DVVTriplet
463
+ * @package cosmos.staking.v1beta1
464
+ * @see proto type: cosmos.staking.v1beta1.DVVTriplet
311
465
  */
312
466
  export interface DVVTriplet {
313
467
  delegatorAddress: string;
@@ -323,6 +477,9 @@ export interface DVVTripletProtoMsg {
323
477
  * with no other data. It is intended to be used as a marshalable pointer. For
324
478
  * example, a DVVTriplet can be used to construct the key to getting a
325
479
  * Redelegation from state.
480
+ * @name DVVTripletAmino
481
+ * @package cosmos.staking.v1beta1
482
+ * @see proto type: cosmos.staking.v1beta1.DVVTriplet
326
483
  */
327
484
  export interface DVVTripletAmino {
328
485
  delegator_address?: string;
@@ -333,7 +490,12 @@ export interface DVVTripletAminoMsg {
333
490
  type: "cosmos-sdk/DVVTriplet";
334
491
  value: DVVTripletAmino;
335
492
  }
336
- /** DVVTriplets defines an array of DVVTriplet objects. */
493
+ /**
494
+ * DVVTriplets defines an array of DVVTriplet objects.
495
+ * @name DVVTriplets
496
+ * @package cosmos.staking.v1beta1
497
+ * @see proto type: cosmos.staking.v1beta1.DVVTriplets
498
+ */
337
499
  export interface DVVTriplets {
338
500
  triplets: DVVTriplet[];
339
501
  }
@@ -341,7 +503,12 @@ export interface DVVTripletsProtoMsg {
341
503
  typeUrl: "/cosmos.staking.v1beta1.DVVTriplets";
342
504
  value: Uint8Array;
343
505
  }
344
- /** DVVTriplets defines an array of DVVTriplet objects. */
506
+ /**
507
+ * DVVTriplets defines an array of DVVTriplet objects.
508
+ * @name DVVTripletsAmino
509
+ * @package cosmos.staking.v1beta1
510
+ * @see proto type: cosmos.staking.v1beta1.DVVTriplets
511
+ */
345
512
  export interface DVVTripletsAmino {
346
513
  triplets: DVVTripletAmino[];
347
514
  }
@@ -353,13 +520,22 @@ export interface DVVTripletsAminoMsg {
353
520
  * Delegation represents the bond with tokens held by an account. It is
354
521
  * owned by one delegator, and is associated with the voting power of one
355
522
  * validator.
523
+ * @name Delegation
524
+ * @package cosmos.staking.v1beta1
525
+ * @see proto type: cosmos.staking.v1beta1.Delegation
356
526
  */
357
527
  export interface Delegation {
358
- /** delegator_address is the encoded address of the delegator. */
528
+ /**
529
+ * delegator_address is the encoded address of the delegator.
530
+ */
359
531
  delegatorAddress: string;
360
- /** validator_address is the encoded address of the validator. */
532
+ /**
533
+ * validator_address is the encoded address of the validator.
534
+ */
361
535
  validatorAddress: string;
362
- /** shares define the delegation shares received. */
536
+ /**
537
+ * shares define the delegation shares received.
538
+ */
363
539
  shares: string;
364
540
  }
365
541
  export interface DelegationProtoMsg {
@@ -370,13 +546,22 @@ export interface DelegationProtoMsg {
370
546
  * Delegation represents the bond with tokens held by an account. It is
371
547
  * owned by one delegator, and is associated with the voting power of one
372
548
  * validator.
549
+ * @name DelegationAmino
550
+ * @package cosmos.staking.v1beta1
551
+ * @see proto type: cosmos.staking.v1beta1.Delegation
373
552
  */
374
553
  export interface DelegationAmino {
375
- /** delegator_address is the encoded address of the delegator. */
554
+ /**
555
+ * delegator_address is the encoded address of the delegator.
556
+ */
376
557
  delegator_address?: string;
377
- /** validator_address is the encoded address of the validator. */
558
+ /**
559
+ * validator_address is the encoded address of the validator.
560
+ */
378
561
  validator_address?: string;
379
- /** shares define the delegation shares received. */
562
+ /**
563
+ * shares define the delegation shares received.
564
+ */
380
565
  shares?: string;
381
566
  }
382
567
  export interface DelegationAminoMsg {
@@ -386,13 +571,22 @@ export interface DelegationAminoMsg {
386
571
  /**
387
572
  * UnbondingDelegation stores all of a single delegator's unbonding bonds
388
573
  * for a single validator in an time-ordered list.
574
+ * @name UnbondingDelegation
575
+ * @package cosmos.staking.v1beta1
576
+ * @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
389
577
  */
390
578
  export interface UnbondingDelegation {
391
- /** delegator_address is the encoded address of the delegator. */
579
+ /**
580
+ * delegator_address is the encoded address of the delegator.
581
+ */
392
582
  delegatorAddress: string;
393
- /** validator_address is the encoded address of the validator. */
583
+ /**
584
+ * validator_address is the encoded address of the validator.
585
+ */
394
586
  validatorAddress: string;
395
- /** entries are the unbonding delegation entries. */
587
+ /**
588
+ * entries are the unbonding delegation entries.
589
+ */
396
590
  entries: UnbondingDelegationEntry[];
397
591
  }
398
592
  export interface UnbondingDelegationProtoMsg {
@@ -402,89 +596,166 @@ export interface UnbondingDelegationProtoMsg {
402
596
  /**
403
597
  * UnbondingDelegation stores all of a single delegator's unbonding bonds
404
598
  * for a single validator in an time-ordered list.
599
+ * @name UnbondingDelegationAmino
600
+ * @package cosmos.staking.v1beta1
601
+ * @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
405
602
  */
406
603
  export interface UnbondingDelegationAmino {
407
- /** delegator_address is the encoded address of the delegator. */
604
+ /**
605
+ * delegator_address is the encoded address of the delegator.
606
+ */
408
607
  delegator_address?: string;
409
- /** validator_address is the encoded address of the validator. */
608
+ /**
609
+ * validator_address is the encoded address of the validator.
610
+ */
410
611
  validator_address?: string;
411
- /** entries are the unbonding delegation entries. */
612
+ /**
613
+ * entries are the unbonding delegation entries.
614
+ */
412
615
  entries: UnbondingDelegationEntryAmino[];
413
616
  }
414
617
  export interface UnbondingDelegationAminoMsg {
415
618
  type: "cosmos-sdk/UnbondingDelegation";
416
619
  value: UnbondingDelegationAmino;
417
620
  }
418
- /** UnbondingDelegationEntry defines an unbonding object with relevant metadata. */
621
+ /**
622
+ * UnbondingDelegationEntry defines an unbonding object with relevant metadata.
623
+ * @name UnbondingDelegationEntry
624
+ * @package cosmos.staking.v1beta1
625
+ * @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
626
+ */
419
627
  export interface UnbondingDelegationEntry {
420
- /** creation_height is the height which the unbonding took place. */
628
+ /**
629
+ * creation_height is the height which the unbonding took place.
630
+ */
421
631
  creationHeight: bigint;
422
- /** completion_time is the unix time for unbonding completion. */
632
+ /**
633
+ * completion_time is the unix time for unbonding completion.
634
+ */
423
635
  completionTime: Date;
424
- /** initial_balance defines the tokens initially scheduled to receive at completion. */
636
+ /**
637
+ * initial_balance defines the tokens initially scheduled to receive at completion.
638
+ */
425
639
  initialBalance: string;
426
- /** balance defines the tokens to receive at completion. */
640
+ /**
641
+ * balance defines the tokens to receive at completion.
642
+ */
427
643
  balance: string;
428
- /** Incrementing id that uniquely identifies this entry */
644
+ /**
645
+ * Incrementing id that uniquely identifies this entry
646
+ */
429
647
  unbondingId: bigint;
430
- /** Strictly positive if this entry's unbonding has been stopped by external modules */
648
+ /**
649
+ * Strictly positive if this entry's unbonding has been stopped by external modules
650
+ */
431
651
  unbondingOnHoldRefCount: bigint;
432
652
  }
433
653
  export interface UnbondingDelegationEntryProtoMsg {
434
654
  typeUrl: "/cosmos.staking.v1beta1.UnbondingDelegationEntry";
435
655
  value: Uint8Array;
436
656
  }
437
- /** UnbondingDelegationEntry defines an unbonding object with relevant metadata. */
657
+ /**
658
+ * UnbondingDelegationEntry defines an unbonding object with relevant metadata.
659
+ * @name UnbondingDelegationEntryAmino
660
+ * @package cosmos.staking.v1beta1
661
+ * @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
662
+ */
438
663
  export interface UnbondingDelegationEntryAmino {
439
- /** creation_height is the height which the unbonding took place. */
664
+ /**
665
+ * creation_height is the height which the unbonding took place.
666
+ */
440
667
  creation_height?: string;
441
- /** completion_time is the unix time for unbonding completion. */
668
+ /**
669
+ * completion_time is the unix time for unbonding completion.
670
+ */
442
671
  completion_time: string;
443
- /** initial_balance defines the tokens initially scheduled to receive at completion. */
672
+ /**
673
+ * initial_balance defines the tokens initially scheduled to receive at completion.
674
+ */
444
675
  initial_balance?: string;
445
- /** balance defines the tokens to receive at completion. */
676
+ /**
677
+ * balance defines the tokens to receive at completion.
678
+ */
446
679
  balance?: string;
447
- /** Incrementing id that uniquely identifies this entry */
680
+ /**
681
+ * Incrementing id that uniquely identifies this entry
682
+ */
448
683
  unbonding_id?: string;
449
- /** Strictly positive if this entry's unbonding has been stopped by external modules */
684
+ /**
685
+ * Strictly positive if this entry's unbonding has been stopped by external modules
686
+ */
450
687
  unbonding_on_hold_ref_count?: string;
451
688
  }
452
689
  export interface UnbondingDelegationEntryAminoMsg {
453
690
  type: "cosmos-sdk/UnbondingDelegationEntry";
454
691
  value: UnbondingDelegationEntryAmino;
455
692
  }
456
- /** RedelegationEntry defines a redelegation object with relevant metadata. */
693
+ /**
694
+ * RedelegationEntry defines a redelegation object with relevant metadata.
695
+ * @name RedelegationEntry
696
+ * @package cosmos.staking.v1beta1
697
+ * @see proto type: cosmos.staking.v1beta1.RedelegationEntry
698
+ */
457
699
  export interface RedelegationEntry {
458
- /** creation_height defines the height which the redelegation took place. */
700
+ /**
701
+ * creation_height defines the height which the redelegation took place.
702
+ */
459
703
  creationHeight: bigint;
460
- /** completion_time defines the unix time for redelegation completion. */
704
+ /**
705
+ * completion_time defines the unix time for redelegation completion.
706
+ */
461
707
  completionTime: Date;
462
- /** initial_balance defines the initial balance when redelegation started. */
708
+ /**
709
+ * initial_balance defines the initial balance when redelegation started.
710
+ */
463
711
  initialBalance: string;
464
- /** shares_dst is the amount of destination-validator shares created by redelegation. */
712
+ /**
713
+ * shares_dst is the amount of destination-validator shares created by redelegation.
714
+ */
465
715
  sharesDst: string;
466
- /** Incrementing id that uniquely identifies this entry */
716
+ /**
717
+ * Incrementing id that uniquely identifies this entry
718
+ */
467
719
  unbondingId: bigint;
468
- /** Strictly positive if this entry's unbonding has been stopped by external modules */
720
+ /**
721
+ * Strictly positive if this entry's unbonding has been stopped by external modules
722
+ */
469
723
  unbondingOnHoldRefCount: bigint;
470
724
  }
471
725
  export interface RedelegationEntryProtoMsg {
472
726
  typeUrl: "/cosmos.staking.v1beta1.RedelegationEntry";
473
727
  value: Uint8Array;
474
728
  }
475
- /** RedelegationEntry defines a redelegation object with relevant metadata. */
729
+ /**
730
+ * RedelegationEntry defines a redelegation object with relevant metadata.
731
+ * @name RedelegationEntryAmino
732
+ * @package cosmos.staking.v1beta1
733
+ * @see proto type: cosmos.staking.v1beta1.RedelegationEntry
734
+ */
476
735
  export interface RedelegationEntryAmino {
477
- /** creation_height defines the height which the redelegation took place. */
736
+ /**
737
+ * creation_height defines the height which the redelegation took place.
738
+ */
478
739
  creation_height?: string;
479
- /** completion_time defines the unix time for redelegation completion. */
740
+ /**
741
+ * completion_time defines the unix time for redelegation completion.
742
+ */
480
743
  completion_time: string;
481
- /** initial_balance defines the initial balance when redelegation started. */
744
+ /**
745
+ * initial_balance defines the initial balance when redelegation started.
746
+ */
482
747
  initial_balance?: string;
483
- /** shares_dst is the amount of destination-validator shares created by redelegation. */
748
+ /**
749
+ * shares_dst is the amount of destination-validator shares created by redelegation.
750
+ */
484
751
  shares_dst?: string;
485
- /** Incrementing id that uniquely identifies this entry */
752
+ /**
753
+ * Incrementing id that uniquely identifies this entry
754
+ */
486
755
  unbonding_id?: string;
487
- /** Strictly positive if this entry's unbonding has been stopped by external modules */
756
+ /**
757
+ * Strictly positive if this entry's unbonding has been stopped by external modules
758
+ */
488
759
  unbonding_on_hold_ref_count?: string;
489
760
  }
490
761
  export interface RedelegationEntryAminoMsg {
@@ -494,15 +765,26 @@ export interface RedelegationEntryAminoMsg {
494
765
  /**
495
766
  * Redelegation contains the list of a particular delegator's redelegating bonds
496
767
  * from a particular source validator to a particular destination validator.
768
+ * @name Redelegation
769
+ * @package cosmos.staking.v1beta1
770
+ * @see proto type: cosmos.staking.v1beta1.Redelegation
497
771
  */
498
772
  export interface Redelegation {
499
- /** delegator_address is the bech32-encoded address of the delegator. */
773
+ /**
774
+ * delegator_address is the bech32-encoded address of the delegator.
775
+ */
500
776
  delegatorAddress: string;
501
- /** validator_src_address is the validator redelegation source operator address. */
777
+ /**
778
+ * validator_src_address is the validator redelegation source operator address.
779
+ */
502
780
  validatorSrcAddress: string;
503
- /** validator_dst_address is the validator redelegation destination operator address. */
781
+ /**
782
+ * validator_dst_address is the validator redelegation destination operator address.
783
+ */
504
784
  validatorDstAddress: string;
505
- /** entries are the redelegation entries. */
785
+ /**
786
+ * entries are the redelegation entries.
787
+ */
506
788
  entries: RedelegationEntry[];
507
789
  }
508
790
  export interface RedelegationProtoMsg {
@@ -512,53 +794,98 @@ export interface RedelegationProtoMsg {
512
794
  /**
513
795
  * Redelegation contains the list of a particular delegator's redelegating bonds
514
796
  * from a particular source validator to a particular destination validator.
797
+ * @name RedelegationAmino
798
+ * @package cosmos.staking.v1beta1
799
+ * @see proto type: cosmos.staking.v1beta1.Redelegation
515
800
  */
516
801
  export interface RedelegationAmino {
517
- /** delegator_address is the bech32-encoded address of the delegator. */
802
+ /**
803
+ * delegator_address is the bech32-encoded address of the delegator.
804
+ */
518
805
  delegator_address?: string;
519
- /** validator_src_address is the validator redelegation source operator address. */
806
+ /**
807
+ * validator_src_address is the validator redelegation source operator address.
808
+ */
520
809
  validator_src_address?: string;
521
- /** validator_dst_address is the validator redelegation destination operator address. */
810
+ /**
811
+ * validator_dst_address is the validator redelegation destination operator address.
812
+ */
522
813
  validator_dst_address?: string;
523
- /** entries are the redelegation entries. */
814
+ /**
815
+ * entries are the redelegation entries.
816
+ */
524
817
  entries: RedelegationEntryAmino[];
525
818
  }
526
819
  export interface RedelegationAminoMsg {
527
820
  type: "cosmos-sdk/Redelegation";
528
821
  value: RedelegationAmino;
529
822
  }
530
- /** Params defines the parameters for the x/staking module. */
823
+ /**
824
+ * Params defines the parameters for the x/staking module.
825
+ * @name Params
826
+ * @package cosmos.staking.v1beta1
827
+ * @see proto type: cosmos.staking.v1beta1.Params
828
+ */
531
829
  export interface Params {
532
- /** unbonding_time is the time duration of unbonding. */
830
+ /**
831
+ * unbonding_time is the time duration of unbonding.
832
+ */
533
833
  unbondingTime: Duration;
534
- /** max_validators is the maximum number of validators. */
834
+ /**
835
+ * max_validators is the maximum number of validators.
836
+ */
535
837
  maxValidators: number;
536
- /** max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). */
838
+ /**
839
+ * max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio).
840
+ */
537
841
  maxEntries: number;
538
- /** historical_entries is the number of historical entries to persist. */
842
+ /**
843
+ * historical_entries is the number of historical entries to persist.
844
+ */
539
845
  historicalEntries: number;
540
- /** bond_denom defines the bondable coin denomination. */
846
+ /**
847
+ * bond_denom defines the bondable coin denomination.
848
+ */
541
849
  bondDenom: string;
542
- /** min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators */
850
+ /**
851
+ * min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators
852
+ */
543
853
  minCommissionRate: string;
544
854
  }
545
855
  export interface ParamsProtoMsg {
546
856
  typeUrl: "/cosmos.staking.v1beta1.Params";
547
857
  value: Uint8Array;
548
858
  }
549
- /** Params defines the parameters for the x/staking module. */
859
+ /**
860
+ * Params defines the parameters for the x/staking module.
861
+ * @name ParamsAmino
862
+ * @package cosmos.staking.v1beta1
863
+ * @see proto type: cosmos.staking.v1beta1.Params
864
+ */
550
865
  export interface ParamsAmino {
551
- /** unbonding_time is the time duration of unbonding. */
866
+ /**
867
+ * unbonding_time is the time duration of unbonding.
868
+ */
552
869
  unbonding_time: DurationAmino;
553
- /** max_validators is the maximum number of validators. */
870
+ /**
871
+ * max_validators is the maximum number of validators.
872
+ */
554
873
  max_validators?: number;
555
- /** max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio). */
874
+ /**
875
+ * max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio).
876
+ */
556
877
  max_entries?: number;
557
- /** historical_entries is the number of historical entries to persist. */
878
+ /**
879
+ * historical_entries is the number of historical entries to persist.
880
+ */
558
881
  historical_entries?: number;
559
- /** bond_denom defines the bondable coin denomination. */
882
+ /**
883
+ * bond_denom defines the bondable coin denomination.
884
+ */
560
885
  bond_denom?: string;
561
- /** min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators */
886
+ /**
887
+ * min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators
888
+ */
562
889
  min_commission_rate: string;
563
890
  }
564
891
  export interface ParamsAminoMsg {
@@ -568,6 +895,9 @@ export interface ParamsAminoMsg {
568
895
  /**
569
896
  * DelegationResponse is equivalent to Delegation except that it contains a
570
897
  * balance in addition to shares which is more suitable for client responses.
898
+ * @name DelegationResponse
899
+ * @package cosmos.staking.v1beta1
900
+ * @see proto type: cosmos.staking.v1beta1.DelegationResponse
571
901
  */
572
902
  export interface DelegationResponse {
573
903
  delegation: Delegation;
@@ -580,6 +910,9 @@ export interface DelegationResponseProtoMsg {
580
910
  /**
581
911
  * DelegationResponse is equivalent to Delegation except that it contains a
582
912
  * balance in addition to shares which is more suitable for client responses.
913
+ * @name DelegationResponseAmino
914
+ * @package cosmos.staking.v1beta1
915
+ * @see proto type: cosmos.staking.v1beta1.DelegationResponse
583
916
  */
584
917
  export interface DelegationResponseAmino {
585
918
  delegation: DelegationAmino;
@@ -593,6 +926,9 @@ export interface DelegationResponseAminoMsg {
593
926
  * RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
594
927
  * contains a balance in addition to shares which is more suitable for client
595
928
  * responses.
929
+ * @name RedelegationEntryResponse
930
+ * @package cosmos.staking.v1beta1
931
+ * @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
596
932
  */
597
933
  export interface RedelegationEntryResponse {
598
934
  redelegationEntry: RedelegationEntry;
@@ -606,6 +942,9 @@ export interface RedelegationEntryResponseProtoMsg {
606
942
  * RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
607
943
  * contains a balance in addition to shares which is more suitable for client
608
944
  * responses.
945
+ * @name RedelegationEntryResponseAmino
946
+ * @package cosmos.staking.v1beta1
947
+ * @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
609
948
  */
610
949
  export interface RedelegationEntryResponseAmino {
611
950
  redelegation_entry: RedelegationEntryAmino;
@@ -619,6 +958,9 @@ export interface RedelegationEntryResponseAminoMsg {
619
958
  * RedelegationResponse is equivalent to a Redelegation except that its entries
620
959
  * contain a balance in addition to shares which is more suitable for client
621
960
  * responses.
961
+ * @name RedelegationResponse
962
+ * @package cosmos.staking.v1beta1
963
+ * @see proto type: cosmos.staking.v1beta1.RedelegationResponse
622
964
  */
623
965
  export interface RedelegationResponse {
624
966
  redelegation: Redelegation;
@@ -632,6 +974,9 @@ export interface RedelegationResponseProtoMsg {
632
974
  * RedelegationResponse is equivalent to a Redelegation except that its entries
633
975
  * contain a balance in addition to shares which is more suitable for client
634
976
  * responses.
977
+ * @name RedelegationResponseAmino
978
+ * @package cosmos.staking.v1beta1
979
+ * @see proto type: cosmos.staking.v1beta1.RedelegationResponse
635
980
  */
636
981
  export interface RedelegationResponseAmino {
637
982
  redelegation: RedelegationAmino;
@@ -644,6 +989,9 @@ export interface RedelegationResponseAminoMsg {
644
989
  /**
645
990
  * Pool is used for tracking bonded and not-bonded token supply of the bond
646
991
  * denomination.
992
+ * @name Pool
993
+ * @package cosmos.staking.v1beta1
994
+ * @see proto type: cosmos.staking.v1beta1.Pool
647
995
  */
648
996
  export interface Pool {
649
997
  notBondedTokens: string;
@@ -656,6 +1004,9 @@ export interface PoolProtoMsg {
656
1004
  /**
657
1005
  * Pool is used for tracking bonded and not-bonded token supply of the bond
658
1006
  * denomination.
1007
+ * @name PoolAmino
1008
+ * @package cosmos.staking.v1beta1
1009
+ * @see proto type: cosmos.staking.v1beta1.Pool
659
1010
  */
660
1011
  export interface PoolAmino {
661
1012
  not_bonded_tokens: string;
@@ -668,6 +1019,9 @@ export interface PoolAminoMsg {
668
1019
  /**
669
1020
  * ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
670
1021
  * TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
1022
+ * @name ValidatorUpdates
1023
+ * @package cosmos.staking.v1beta1
1024
+ * @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
671
1025
  */
672
1026
  export interface ValidatorUpdates {
673
1027
  updates: ValidatorUpdate[];
@@ -679,6 +1033,9 @@ export interface ValidatorUpdatesProtoMsg {
679
1033
  /**
680
1034
  * ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
681
1035
  * TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
1036
+ * @name ValidatorUpdatesAmino
1037
+ * @package cosmos.staking.v1beta1
1038
+ * @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
682
1039
  */
683
1040
  export interface ValidatorUpdatesAmino {
684
1041
  updates: ValidatorUpdateAmino[];
@@ -687,6 +1044,15 @@ export interface ValidatorUpdatesAminoMsg {
687
1044
  type: "cosmos-sdk/ValidatorUpdates";
688
1045
  value: ValidatorUpdatesAmino;
689
1046
  }
1047
+ /**
1048
+ * HistoricalInfo contains header and validator information for a given block.
1049
+ * It is stored as part of staking module's state, which persists the `n` most
1050
+ * recent HistoricalInfo
1051
+ * (`n` is set by the staking module's `historical_entries` parameter).
1052
+ * @name HistoricalInfo
1053
+ * @package cosmos.staking.v1beta1
1054
+ * @see proto type: cosmos.staking.v1beta1.HistoricalInfo
1055
+ */
690
1056
  export declare const HistoricalInfo: {
691
1057
  typeUrl: string;
692
1058
  aminoType: string;
@@ -701,6 +1067,13 @@ export declare const HistoricalInfo: {
701
1067
  toProto(message: HistoricalInfo): Uint8Array;
702
1068
  toProtoMsg(message: HistoricalInfo): HistoricalInfoProtoMsg;
703
1069
  };
1070
+ /**
1071
+ * CommissionRates defines the initial commission rates to be used for creating
1072
+ * a validator.
1073
+ * @name CommissionRates
1074
+ * @package cosmos.staking.v1beta1
1075
+ * @see proto type: cosmos.staking.v1beta1.CommissionRates
1076
+ */
704
1077
  export declare const CommissionRates: {
705
1078
  typeUrl: string;
706
1079
  aminoType: string;
@@ -715,6 +1088,12 @@ export declare const CommissionRates: {
715
1088
  toProto(message: CommissionRates): Uint8Array;
716
1089
  toProtoMsg(message: CommissionRates): CommissionRatesProtoMsg;
717
1090
  };
1091
+ /**
1092
+ * Commission defines commission parameters for a given validator.
1093
+ * @name Commission
1094
+ * @package cosmos.staking.v1beta1
1095
+ * @see proto type: cosmos.staking.v1beta1.Commission
1096
+ */
718
1097
  export declare const Commission: {
719
1098
  typeUrl: string;
720
1099
  aminoType: string;
@@ -729,6 +1108,12 @@ export declare const Commission: {
729
1108
  toProto(message: Commission): Uint8Array;
730
1109
  toProtoMsg(message: Commission): CommissionProtoMsg;
731
1110
  };
1111
+ /**
1112
+ * Description defines a validator description.
1113
+ * @name Description
1114
+ * @package cosmos.staking.v1beta1
1115
+ * @see proto type: cosmos.staking.v1beta1.Description
1116
+ */
732
1117
  export declare const Description: {
733
1118
  typeUrl: string;
734
1119
  aminoType: string;
@@ -743,6 +1128,19 @@ export declare const Description: {
743
1128
  toProto(message: Description): Uint8Array;
744
1129
  toProtoMsg(message: Description): DescriptionProtoMsg;
745
1130
  };
1131
+ /**
1132
+ * Validator defines a validator, together with the total amount of the
1133
+ * Validator's bond shares and their exchange rate to coins. Slashing results in
1134
+ * a decrease in the exchange rate, allowing correct calculation of future
1135
+ * undelegations without iterating over delegators. When coins are delegated to
1136
+ * this validator, the validator is credited with a delegation whose number of
1137
+ * bond shares is based on the amount of coins delegated divided by the current
1138
+ * exchange rate. Voting power can be calculated as total bonded shares
1139
+ * multiplied by exchange rate.
1140
+ * @name Validator
1141
+ * @package cosmos.staking.v1beta1
1142
+ * @see proto type: cosmos.staking.v1beta1.Validator
1143
+ */
746
1144
  export declare const Validator: {
747
1145
  typeUrl: string;
748
1146
  aminoType: string;
@@ -757,6 +1155,12 @@ export declare const Validator: {
757
1155
  toProto(message: Validator): Uint8Array;
758
1156
  toProtoMsg(message: Validator): ValidatorProtoMsg;
759
1157
  };
1158
+ /**
1159
+ * ValAddresses defines a repeated set of validator addresses.
1160
+ * @name ValAddresses
1161
+ * @package cosmos.staking.v1beta1
1162
+ * @see proto type: cosmos.staking.v1beta1.ValAddresses
1163
+ */
760
1164
  export declare const ValAddresses: {
761
1165
  typeUrl: string;
762
1166
  aminoType: string;
@@ -771,6 +1175,14 @@ export declare const ValAddresses: {
771
1175
  toProto(message: ValAddresses): Uint8Array;
772
1176
  toProtoMsg(message: ValAddresses): ValAddressesProtoMsg;
773
1177
  };
1178
+ /**
1179
+ * DVPair is struct that just has a delegator-validator pair with no other data.
1180
+ * It is intended to be used as a marshalable pointer. For example, a DVPair can
1181
+ * be used to construct the key to getting an UnbondingDelegation from state.
1182
+ * @name DVPair
1183
+ * @package cosmos.staking.v1beta1
1184
+ * @see proto type: cosmos.staking.v1beta1.DVPair
1185
+ */
774
1186
  export declare const DVPair: {
775
1187
  typeUrl: string;
776
1188
  aminoType: string;
@@ -785,6 +1197,12 @@ export declare const DVPair: {
785
1197
  toProto(message: DVPair): Uint8Array;
786
1198
  toProtoMsg(message: DVPair): DVPairProtoMsg;
787
1199
  };
1200
+ /**
1201
+ * DVPairs defines an array of DVPair objects.
1202
+ * @name DVPairs
1203
+ * @package cosmos.staking.v1beta1
1204
+ * @see proto type: cosmos.staking.v1beta1.DVPairs
1205
+ */
788
1206
  export declare const DVPairs: {
789
1207
  typeUrl: string;
790
1208
  aminoType: string;
@@ -799,6 +1217,15 @@ export declare const DVPairs: {
799
1217
  toProto(message: DVPairs): Uint8Array;
800
1218
  toProtoMsg(message: DVPairs): DVPairsProtoMsg;
801
1219
  };
1220
+ /**
1221
+ * DVVTriplet is struct that just has a delegator-validator-validator triplet
1222
+ * with no other data. It is intended to be used as a marshalable pointer. For
1223
+ * example, a DVVTriplet can be used to construct the key to getting a
1224
+ * Redelegation from state.
1225
+ * @name DVVTriplet
1226
+ * @package cosmos.staking.v1beta1
1227
+ * @see proto type: cosmos.staking.v1beta1.DVVTriplet
1228
+ */
802
1229
  export declare const DVVTriplet: {
803
1230
  typeUrl: string;
804
1231
  aminoType: string;
@@ -813,6 +1240,12 @@ export declare const DVVTriplet: {
813
1240
  toProto(message: DVVTriplet): Uint8Array;
814
1241
  toProtoMsg(message: DVVTriplet): DVVTripletProtoMsg;
815
1242
  };
1243
+ /**
1244
+ * DVVTriplets defines an array of DVVTriplet objects.
1245
+ * @name DVVTriplets
1246
+ * @package cosmos.staking.v1beta1
1247
+ * @see proto type: cosmos.staking.v1beta1.DVVTriplets
1248
+ */
816
1249
  export declare const DVVTriplets: {
817
1250
  typeUrl: string;
818
1251
  aminoType: string;
@@ -827,6 +1260,14 @@ export declare const DVVTriplets: {
827
1260
  toProto(message: DVVTriplets): Uint8Array;
828
1261
  toProtoMsg(message: DVVTriplets): DVVTripletsProtoMsg;
829
1262
  };
1263
+ /**
1264
+ * Delegation represents the bond with tokens held by an account. It is
1265
+ * owned by one delegator, and is associated with the voting power of one
1266
+ * validator.
1267
+ * @name Delegation
1268
+ * @package cosmos.staking.v1beta1
1269
+ * @see proto type: cosmos.staking.v1beta1.Delegation
1270
+ */
830
1271
  export declare const Delegation: {
831
1272
  typeUrl: string;
832
1273
  aminoType: string;
@@ -841,6 +1282,13 @@ export declare const Delegation: {
841
1282
  toProto(message: Delegation): Uint8Array;
842
1283
  toProtoMsg(message: Delegation): DelegationProtoMsg;
843
1284
  };
1285
+ /**
1286
+ * UnbondingDelegation stores all of a single delegator's unbonding bonds
1287
+ * for a single validator in an time-ordered list.
1288
+ * @name UnbondingDelegation
1289
+ * @package cosmos.staking.v1beta1
1290
+ * @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
1291
+ */
844
1292
  export declare const UnbondingDelegation: {
845
1293
  typeUrl: string;
846
1294
  aminoType: string;
@@ -855,6 +1303,12 @@ export declare const UnbondingDelegation: {
855
1303
  toProto(message: UnbondingDelegation): Uint8Array;
856
1304
  toProtoMsg(message: UnbondingDelegation): UnbondingDelegationProtoMsg;
857
1305
  };
1306
+ /**
1307
+ * UnbondingDelegationEntry defines an unbonding object with relevant metadata.
1308
+ * @name UnbondingDelegationEntry
1309
+ * @package cosmos.staking.v1beta1
1310
+ * @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
1311
+ */
858
1312
  export declare const UnbondingDelegationEntry: {
859
1313
  typeUrl: string;
860
1314
  aminoType: string;
@@ -869,6 +1323,12 @@ export declare const UnbondingDelegationEntry: {
869
1323
  toProto(message: UnbondingDelegationEntry): Uint8Array;
870
1324
  toProtoMsg(message: UnbondingDelegationEntry): UnbondingDelegationEntryProtoMsg;
871
1325
  };
1326
+ /**
1327
+ * RedelegationEntry defines a redelegation object with relevant metadata.
1328
+ * @name RedelegationEntry
1329
+ * @package cosmos.staking.v1beta1
1330
+ * @see proto type: cosmos.staking.v1beta1.RedelegationEntry
1331
+ */
872
1332
  export declare const RedelegationEntry: {
873
1333
  typeUrl: string;
874
1334
  aminoType: string;
@@ -883,6 +1343,13 @@ export declare const RedelegationEntry: {
883
1343
  toProto(message: RedelegationEntry): Uint8Array;
884
1344
  toProtoMsg(message: RedelegationEntry): RedelegationEntryProtoMsg;
885
1345
  };
1346
+ /**
1347
+ * Redelegation contains the list of a particular delegator's redelegating bonds
1348
+ * from a particular source validator to a particular destination validator.
1349
+ * @name Redelegation
1350
+ * @package cosmos.staking.v1beta1
1351
+ * @see proto type: cosmos.staking.v1beta1.Redelegation
1352
+ */
886
1353
  export declare const Redelegation: {
887
1354
  typeUrl: string;
888
1355
  aminoType: string;
@@ -897,6 +1364,12 @@ export declare const Redelegation: {
897
1364
  toProto(message: Redelegation): Uint8Array;
898
1365
  toProtoMsg(message: Redelegation): RedelegationProtoMsg;
899
1366
  };
1367
+ /**
1368
+ * Params defines the parameters for the x/staking module.
1369
+ * @name Params
1370
+ * @package cosmos.staking.v1beta1
1371
+ * @see proto type: cosmos.staking.v1beta1.Params
1372
+ */
900
1373
  export declare const Params: {
901
1374
  typeUrl: string;
902
1375
  aminoType: string;
@@ -911,6 +1384,13 @@ export declare const Params: {
911
1384
  toProto(message: Params): Uint8Array;
912
1385
  toProtoMsg(message: Params): ParamsProtoMsg;
913
1386
  };
1387
+ /**
1388
+ * DelegationResponse is equivalent to Delegation except that it contains a
1389
+ * balance in addition to shares which is more suitable for client responses.
1390
+ * @name DelegationResponse
1391
+ * @package cosmos.staking.v1beta1
1392
+ * @see proto type: cosmos.staking.v1beta1.DelegationResponse
1393
+ */
914
1394
  export declare const DelegationResponse: {
915
1395
  typeUrl: string;
916
1396
  aminoType: string;
@@ -925,6 +1405,14 @@ export declare const DelegationResponse: {
925
1405
  toProto(message: DelegationResponse): Uint8Array;
926
1406
  toProtoMsg(message: DelegationResponse): DelegationResponseProtoMsg;
927
1407
  };
1408
+ /**
1409
+ * RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
1410
+ * contains a balance in addition to shares which is more suitable for client
1411
+ * responses.
1412
+ * @name RedelegationEntryResponse
1413
+ * @package cosmos.staking.v1beta1
1414
+ * @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
1415
+ */
928
1416
  export declare const RedelegationEntryResponse: {
929
1417
  typeUrl: string;
930
1418
  aminoType: string;
@@ -939,6 +1427,14 @@ export declare const RedelegationEntryResponse: {
939
1427
  toProto(message: RedelegationEntryResponse): Uint8Array;
940
1428
  toProtoMsg(message: RedelegationEntryResponse): RedelegationEntryResponseProtoMsg;
941
1429
  };
1430
+ /**
1431
+ * RedelegationResponse is equivalent to a Redelegation except that its entries
1432
+ * contain a balance in addition to shares which is more suitable for client
1433
+ * responses.
1434
+ * @name RedelegationResponse
1435
+ * @package cosmos.staking.v1beta1
1436
+ * @see proto type: cosmos.staking.v1beta1.RedelegationResponse
1437
+ */
942
1438
  export declare const RedelegationResponse: {
943
1439
  typeUrl: string;
944
1440
  aminoType: string;
@@ -953,6 +1449,13 @@ export declare const RedelegationResponse: {
953
1449
  toProto(message: RedelegationResponse): Uint8Array;
954
1450
  toProtoMsg(message: RedelegationResponse): RedelegationResponseProtoMsg;
955
1451
  };
1452
+ /**
1453
+ * Pool is used for tracking bonded and not-bonded token supply of the bond
1454
+ * denomination.
1455
+ * @name Pool
1456
+ * @package cosmos.staking.v1beta1
1457
+ * @see proto type: cosmos.staking.v1beta1.Pool
1458
+ */
956
1459
  export declare const Pool: {
957
1460
  typeUrl: string;
958
1461
  aminoType: string;
@@ -967,6 +1470,13 @@ export declare const Pool: {
967
1470
  toProto(message: Pool): Uint8Array;
968
1471
  toProtoMsg(message: Pool): PoolProtoMsg;
969
1472
  };
1473
+ /**
1474
+ * ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
1475
+ * TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
1476
+ * @name ValidatorUpdates
1477
+ * @package cosmos.staking.v1beta1
1478
+ * @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
1479
+ */
970
1480
  export declare const ValidatorUpdates: {
971
1481
  typeUrl: string;
972
1482
  aminoType: string;