@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
@@ -1,50 +1,85 @@
1
1
  import { BinaryReader, BinaryWriter } from "../../../../binary";
2
2
  import { DeepPartial } from "../../../../helpers";
3
- /** AppDescriptor describes a cosmos-sdk based application */
3
+ /**
4
+ * AppDescriptor describes a cosmos-sdk based application
5
+ * @name AppDescriptor
6
+ * @package cosmos.base.reflection.v2alpha1
7
+ * @see proto type: cosmos.base.reflection.v2alpha1.AppDescriptor
8
+ */
4
9
  export interface AppDescriptor {
5
10
  /**
6
11
  * AuthnDescriptor provides information on how to authenticate transactions on the application
7
12
  * NOTE: experimental and subject to change in future releases.
8
13
  */
9
14
  authn?: AuthnDescriptor;
10
- /** chain provides the chain descriptor */
15
+ /**
16
+ * chain provides the chain descriptor
17
+ */
11
18
  chain?: ChainDescriptor;
12
- /** codec provides metadata information regarding codec related types */
19
+ /**
20
+ * codec provides metadata information regarding codec related types
21
+ */
13
22
  codec?: CodecDescriptor;
14
- /** configuration provides metadata information regarding the sdk.Config type */
23
+ /**
24
+ * configuration provides metadata information regarding the sdk.Config type
25
+ */
15
26
  configuration?: ConfigurationDescriptor;
16
- /** query_services provides metadata information regarding the available queriable endpoints */
27
+ /**
28
+ * query_services provides metadata information regarding the available queriable endpoints
29
+ */
17
30
  queryServices?: QueryServicesDescriptor;
18
- /** tx provides metadata information regarding how to send transactions to the given application */
31
+ /**
32
+ * tx provides metadata information regarding how to send transactions to the given application
33
+ */
19
34
  tx?: TxDescriptor;
20
35
  }
21
36
  export interface AppDescriptorProtoMsg {
22
37
  typeUrl: "/cosmos.base.reflection.v2alpha1.AppDescriptor";
23
38
  value: Uint8Array;
24
39
  }
25
- /** AppDescriptor describes a cosmos-sdk based application */
40
+ /**
41
+ * AppDescriptor describes a cosmos-sdk based application
42
+ * @name AppDescriptorAmino
43
+ * @package cosmos.base.reflection.v2alpha1
44
+ * @see proto type: cosmos.base.reflection.v2alpha1.AppDescriptor
45
+ */
26
46
  export interface AppDescriptorAmino {
27
47
  /**
28
48
  * AuthnDescriptor provides information on how to authenticate transactions on the application
29
49
  * NOTE: experimental and subject to change in future releases.
30
50
  */
31
51
  authn?: AuthnDescriptorAmino;
32
- /** chain provides the chain descriptor */
52
+ /**
53
+ * chain provides the chain descriptor
54
+ */
33
55
  chain?: ChainDescriptorAmino;
34
- /** codec provides metadata information regarding codec related types */
56
+ /**
57
+ * codec provides metadata information regarding codec related types
58
+ */
35
59
  codec?: CodecDescriptorAmino;
36
- /** configuration provides metadata information regarding the sdk.Config type */
60
+ /**
61
+ * configuration provides metadata information regarding the sdk.Config type
62
+ */
37
63
  configuration?: ConfigurationDescriptorAmino;
38
- /** query_services provides metadata information regarding the available queriable endpoints */
64
+ /**
65
+ * query_services provides metadata information regarding the available queriable endpoints
66
+ */
39
67
  query_services?: QueryServicesDescriptorAmino;
40
- /** tx provides metadata information regarding how to send transactions to the given application */
68
+ /**
69
+ * tx provides metadata information regarding how to send transactions to the given application
70
+ */
41
71
  tx?: TxDescriptorAmino;
42
72
  }
43
73
  export interface AppDescriptorAminoMsg {
44
74
  type: "cosmos-sdk/AppDescriptor";
45
75
  value: AppDescriptorAmino;
46
76
  }
47
- /** TxDescriptor describes the accepted transaction type */
77
+ /**
78
+ * TxDescriptor describes the accepted transaction type
79
+ * @name TxDescriptor
80
+ * @package cosmos.base.reflection.v2alpha1
81
+ * @see proto type: cosmos.base.reflection.v2alpha1.TxDescriptor
82
+ */
48
83
  export interface TxDescriptor {
49
84
  /**
50
85
  * fullname is the protobuf fullname of the raw transaction type (for instance the tx.Tx type)
@@ -52,14 +87,21 @@ export interface TxDescriptor {
52
87
  * reflection clients to understand if they can handle a specific transaction type in an application.
53
88
  */
54
89
  fullname: string;
55
- /** msgs lists the accepted application messages (sdk.Msg) */
90
+ /**
91
+ * msgs lists the accepted application messages (sdk.Msg)
92
+ */
56
93
  msgs: MsgDescriptor[];
57
94
  }
58
95
  export interface TxDescriptorProtoMsg {
59
96
  typeUrl: "/cosmos.base.reflection.v2alpha1.TxDescriptor";
60
97
  value: Uint8Array;
61
98
  }
62
- /** TxDescriptor describes the accepted transaction type */
99
+ /**
100
+ * TxDescriptor describes the accepted transaction type
101
+ * @name TxDescriptorAmino
102
+ * @package cosmos.base.reflection.v2alpha1
103
+ * @see proto type: cosmos.base.reflection.v2alpha1.TxDescriptor
104
+ */
63
105
  export interface TxDescriptorAmino {
64
106
  /**
65
107
  * fullname is the protobuf fullname of the raw transaction type (for instance the tx.Tx type)
@@ -67,7 +109,9 @@ export interface TxDescriptorAmino {
67
109
  * reflection clients to understand if they can handle a specific transaction type in an application.
68
110
  */
69
111
  fullname?: string;
70
- /** msgs lists the accepted application messages (sdk.Msg) */
112
+ /**
113
+ * msgs lists the accepted application messages (sdk.Msg)
114
+ */
71
115
  msgs?: MsgDescriptorAmino[];
72
116
  }
73
117
  export interface TxDescriptorAminoMsg {
@@ -77,9 +121,14 @@ export interface TxDescriptorAminoMsg {
77
121
  /**
78
122
  * AuthnDescriptor provides information on how to sign transactions without relying
79
123
  * on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
124
+ * @name AuthnDescriptor
125
+ * @package cosmos.base.reflection.v2alpha1
126
+ * @see proto type: cosmos.base.reflection.v2alpha1.AuthnDescriptor
80
127
  */
81
128
  export interface AuthnDescriptor {
82
- /** sign_modes defines the supported signature algorithm */
129
+ /**
130
+ * sign_modes defines the supported signature algorithm
131
+ */
83
132
  signModes: SigningModeDescriptor[];
84
133
  }
85
134
  export interface AuthnDescriptorProtoMsg {
@@ -89,9 +138,14 @@ export interface AuthnDescriptorProtoMsg {
89
138
  /**
90
139
  * AuthnDescriptor provides information on how to sign transactions without relying
91
140
  * on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
141
+ * @name AuthnDescriptorAmino
142
+ * @package cosmos.base.reflection.v2alpha1
143
+ * @see proto type: cosmos.base.reflection.v2alpha1.AuthnDescriptor
92
144
  */
93
145
  export interface AuthnDescriptorAmino {
94
- /** sign_modes defines the supported signature algorithm */
146
+ /**
147
+ * sign_modes defines the supported signature algorithm
148
+ */
95
149
  sign_modes?: SigningModeDescriptorAmino[];
96
150
  }
97
151
  export interface AuthnDescriptorAminoMsg {
@@ -103,11 +157,18 @@ export interface AuthnDescriptorAminoMsg {
103
157
  * NOTE(fdymylja): here we could go as far as providing an entire flow on how
104
158
  * to sign a message given a SigningModeDescriptor, but it's better to think about
105
159
  * this another time
160
+ * @name SigningModeDescriptor
161
+ * @package cosmos.base.reflection.v2alpha1
162
+ * @see proto type: cosmos.base.reflection.v2alpha1.SigningModeDescriptor
106
163
  */
107
164
  export interface SigningModeDescriptor {
108
- /** name defines the unique name of the signing mode */
165
+ /**
166
+ * name defines the unique name of the signing mode
167
+ */
109
168
  name: string;
110
- /** number is the unique int32 identifier for the sign_mode enum */
169
+ /**
170
+ * number is the unique int32 identifier for the sign_mode enum
171
+ */
111
172
  number: number;
112
173
  /**
113
174
  * authn_info_provider_method_fullname defines the fullname of the method to call to get
@@ -124,11 +185,18 @@ export interface SigningModeDescriptorProtoMsg {
124
185
  * NOTE(fdymylja): here we could go as far as providing an entire flow on how
125
186
  * to sign a message given a SigningModeDescriptor, but it's better to think about
126
187
  * this another time
188
+ * @name SigningModeDescriptorAmino
189
+ * @package cosmos.base.reflection.v2alpha1
190
+ * @see proto type: cosmos.base.reflection.v2alpha1.SigningModeDescriptor
127
191
  */
128
192
  export interface SigningModeDescriptorAmino {
129
- /** name defines the unique name of the signing mode */
193
+ /**
194
+ * name defines the unique name of the signing mode
195
+ */
130
196
  name?: string;
131
- /** number is the unique int32 identifier for the sign_mode enum */
197
+ /**
198
+ * number is the unique int32 identifier for the sign_mode enum
199
+ */
132
200
  number?: number;
133
201
  /**
134
202
  * authn_info_provider_method_fullname defines the fullname of the method to call to get
@@ -140,77 +208,130 @@ export interface SigningModeDescriptorAminoMsg {
140
208
  type: "cosmos-sdk/SigningModeDescriptor";
141
209
  value: SigningModeDescriptorAmino;
142
210
  }
143
- /** ChainDescriptor describes chain information of the application */
211
+ /**
212
+ * ChainDescriptor describes chain information of the application
213
+ * @name ChainDescriptor
214
+ * @package cosmos.base.reflection.v2alpha1
215
+ * @see proto type: cosmos.base.reflection.v2alpha1.ChainDescriptor
216
+ */
144
217
  export interface ChainDescriptor {
145
- /** id is the chain id */
218
+ /**
219
+ * id is the chain id
220
+ */
146
221
  id: string;
147
222
  }
148
223
  export interface ChainDescriptorProtoMsg {
149
224
  typeUrl: "/cosmos.base.reflection.v2alpha1.ChainDescriptor";
150
225
  value: Uint8Array;
151
226
  }
152
- /** ChainDescriptor describes chain information of the application */
227
+ /**
228
+ * ChainDescriptor describes chain information of the application
229
+ * @name ChainDescriptorAmino
230
+ * @package cosmos.base.reflection.v2alpha1
231
+ * @see proto type: cosmos.base.reflection.v2alpha1.ChainDescriptor
232
+ */
153
233
  export interface ChainDescriptorAmino {
154
- /** id is the chain id */
234
+ /**
235
+ * id is the chain id
236
+ */
155
237
  id?: string;
156
238
  }
157
239
  export interface ChainDescriptorAminoMsg {
158
240
  type: "cosmos-sdk/ChainDescriptor";
159
241
  value: ChainDescriptorAmino;
160
242
  }
161
- /** CodecDescriptor describes the registered interfaces and provides metadata information on the types */
243
+ /**
244
+ * CodecDescriptor describes the registered interfaces and provides metadata information on the types
245
+ * @name CodecDescriptor
246
+ * @package cosmos.base.reflection.v2alpha1
247
+ * @see proto type: cosmos.base.reflection.v2alpha1.CodecDescriptor
248
+ */
162
249
  export interface CodecDescriptor {
163
- /** interfaces is a list of the registerted interfaces descriptors */
250
+ /**
251
+ * interfaces is a list of the registerted interfaces descriptors
252
+ */
164
253
  interfaces: InterfaceDescriptor[];
165
254
  }
166
255
  export interface CodecDescriptorProtoMsg {
167
256
  typeUrl: "/cosmos.base.reflection.v2alpha1.CodecDescriptor";
168
257
  value: Uint8Array;
169
258
  }
170
- /** CodecDescriptor describes the registered interfaces and provides metadata information on the types */
259
+ /**
260
+ * CodecDescriptor describes the registered interfaces and provides metadata information on the types
261
+ * @name CodecDescriptorAmino
262
+ * @package cosmos.base.reflection.v2alpha1
263
+ * @see proto type: cosmos.base.reflection.v2alpha1.CodecDescriptor
264
+ */
171
265
  export interface CodecDescriptorAmino {
172
- /** interfaces is a list of the registerted interfaces descriptors */
266
+ /**
267
+ * interfaces is a list of the registerted interfaces descriptors
268
+ */
173
269
  interfaces?: InterfaceDescriptorAmino[];
174
270
  }
175
271
  export interface CodecDescriptorAminoMsg {
176
272
  type: "cosmos-sdk/CodecDescriptor";
177
273
  value: CodecDescriptorAmino;
178
274
  }
179
- /** InterfaceDescriptor describes the implementation of an interface */
275
+ /**
276
+ * InterfaceDescriptor describes the implementation of an interface
277
+ * @name InterfaceDescriptor
278
+ * @package cosmos.base.reflection.v2alpha1
279
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceDescriptor
280
+ */
180
281
  export interface InterfaceDescriptor {
181
- /** fullname is the name of the interface */
282
+ /**
283
+ * fullname is the name of the interface
284
+ */
182
285
  fullname: string;
183
286
  /**
184
287
  * interface_accepting_messages contains information regarding the proto messages which contain the interface as
185
288
  * google.protobuf.Any field
186
289
  */
187
290
  interfaceAcceptingMessages: InterfaceAcceptingMessageDescriptor[];
188
- /** interface_implementers is a list of the descriptors of the interface implementers */
291
+ /**
292
+ * interface_implementers is a list of the descriptors of the interface implementers
293
+ */
189
294
  interfaceImplementers: InterfaceImplementerDescriptor[];
190
295
  }
191
296
  export interface InterfaceDescriptorProtoMsg {
192
297
  typeUrl: "/cosmos.base.reflection.v2alpha1.InterfaceDescriptor";
193
298
  value: Uint8Array;
194
299
  }
195
- /** InterfaceDescriptor describes the implementation of an interface */
300
+ /**
301
+ * InterfaceDescriptor describes the implementation of an interface
302
+ * @name InterfaceDescriptorAmino
303
+ * @package cosmos.base.reflection.v2alpha1
304
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceDescriptor
305
+ */
196
306
  export interface InterfaceDescriptorAmino {
197
- /** fullname is the name of the interface */
307
+ /**
308
+ * fullname is the name of the interface
309
+ */
198
310
  fullname?: string;
199
311
  /**
200
312
  * interface_accepting_messages contains information regarding the proto messages which contain the interface as
201
313
  * google.protobuf.Any field
202
314
  */
203
315
  interface_accepting_messages?: InterfaceAcceptingMessageDescriptorAmino[];
204
- /** interface_implementers is a list of the descriptors of the interface implementers */
316
+ /**
317
+ * interface_implementers is a list of the descriptors of the interface implementers
318
+ */
205
319
  interface_implementers?: InterfaceImplementerDescriptorAmino[];
206
320
  }
207
321
  export interface InterfaceDescriptorAminoMsg {
208
322
  type: "cosmos-sdk/InterfaceDescriptor";
209
323
  value: InterfaceDescriptorAmino;
210
324
  }
211
- /** InterfaceImplementerDescriptor describes an interface implementer */
325
+ /**
326
+ * InterfaceImplementerDescriptor describes an interface implementer
327
+ * @name InterfaceImplementerDescriptor
328
+ * @package cosmos.base.reflection.v2alpha1
329
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor
330
+ */
212
331
  export interface InterfaceImplementerDescriptor {
213
- /** fullname is the protobuf queryable name of the interface implementer */
332
+ /**
333
+ * fullname is the protobuf queryable name of the interface implementer
334
+ */
214
335
  fullname: string;
215
336
  /**
216
337
  * type_url defines the type URL used when marshalling the type as any
@@ -224,9 +345,16 @@ export interface InterfaceImplementerDescriptorProtoMsg {
224
345
  typeUrl: "/cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor";
225
346
  value: Uint8Array;
226
347
  }
227
- /** InterfaceImplementerDescriptor describes an interface implementer */
348
+ /**
349
+ * InterfaceImplementerDescriptor describes an interface implementer
350
+ * @name InterfaceImplementerDescriptorAmino
351
+ * @package cosmos.base.reflection.v2alpha1
352
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor
353
+ */
228
354
  export interface InterfaceImplementerDescriptorAmino {
229
- /** fullname is the protobuf queryable name of the interface implementer */
355
+ /**
356
+ * fullname is the protobuf queryable name of the interface implementer
357
+ */
230
358
  fullname?: string;
231
359
  /**
232
360
  * type_url defines the type URL used when marshalling the type as any
@@ -243,9 +371,14 @@ export interface InterfaceImplementerDescriptorAminoMsg {
243
371
  /**
244
372
  * InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
245
373
  * an interface represented as a google.protobuf.Any
374
+ * @name InterfaceAcceptingMessageDescriptor
375
+ * @package cosmos.base.reflection.v2alpha1
376
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor
246
377
  */
247
378
  export interface InterfaceAcceptingMessageDescriptor {
248
- /** fullname is the protobuf fullname of the type containing the interface */
379
+ /**
380
+ * fullname is the protobuf fullname of the type containing the interface
381
+ */
249
382
  fullname: string;
250
383
  /**
251
384
  * field_descriptor_names is a list of the protobuf name (not fullname) of the field
@@ -261,9 +394,14 @@ export interface InterfaceAcceptingMessageDescriptorProtoMsg {
261
394
  /**
262
395
  * InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
263
396
  * an interface represented as a google.protobuf.Any
397
+ * @name InterfaceAcceptingMessageDescriptorAmino
398
+ * @package cosmos.base.reflection.v2alpha1
399
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor
264
400
  */
265
401
  export interface InterfaceAcceptingMessageDescriptorAmino {
266
- /** fullname is the protobuf fullname of the type containing the interface */
402
+ /**
403
+ * fullname is the protobuf fullname of the type containing the interface
404
+ */
267
405
  fullname?: string;
268
406
  /**
269
407
  * field_descriptor_names is a list of the protobuf name (not fullname) of the field
@@ -276,217 +414,380 @@ export interface InterfaceAcceptingMessageDescriptorAminoMsg {
276
414
  type: "cosmos-sdk/InterfaceAcceptingMessageDescriptor";
277
415
  value: InterfaceAcceptingMessageDescriptorAmino;
278
416
  }
279
- /** ConfigurationDescriptor contains metadata information on the sdk.Config */
417
+ /**
418
+ * ConfigurationDescriptor contains metadata information on the sdk.Config
419
+ * @name ConfigurationDescriptor
420
+ * @package cosmos.base.reflection.v2alpha1
421
+ * @see proto type: cosmos.base.reflection.v2alpha1.ConfigurationDescriptor
422
+ */
280
423
  export interface ConfigurationDescriptor {
281
- /** bech32_account_address_prefix is the account address prefix */
424
+ /**
425
+ * bech32_account_address_prefix is the account address prefix
426
+ */
282
427
  bech32AccountAddressPrefix: string;
283
428
  }
284
429
  export interface ConfigurationDescriptorProtoMsg {
285
430
  typeUrl: "/cosmos.base.reflection.v2alpha1.ConfigurationDescriptor";
286
431
  value: Uint8Array;
287
432
  }
288
- /** ConfigurationDescriptor contains metadata information on the sdk.Config */
433
+ /**
434
+ * ConfigurationDescriptor contains metadata information on the sdk.Config
435
+ * @name ConfigurationDescriptorAmino
436
+ * @package cosmos.base.reflection.v2alpha1
437
+ * @see proto type: cosmos.base.reflection.v2alpha1.ConfigurationDescriptor
438
+ */
289
439
  export interface ConfigurationDescriptorAmino {
290
- /** bech32_account_address_prefix is the account address prefix */
440
+ /**
441
+ * bech32_account_address_prefix is the account address prefix
442
+ */
291
443
  bech32_account_address_prefix?: string;
292
444
  }
293
445
  export interface ConfigurationDescriptorAminoMsg {
294
446
  type: "cosmos-sdk/ConfigurationDescriptor";
295
447
  value: ConfigurationDescriptorAmino;
296
448
  }
297
- /** MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction */
449
+ /**
450
+ * MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
451
+ * @name MsgDescriptor
452
+ * @package cosmos.base.reflection.v2alpha1
453
+ * @see proto type: cosmos.base.reflection.v2alpha1.MsgDescriptor
454
+ */
298
455
  export interface MsgDescriptor {
299
- /** msg_type_url contains the TypeURL of a sdk.Msg. */
456
+ /**
457
+ * msg_type_url contains the TypeURL of a sdk.Msg.
458
+ */
300
459
  msgTypeUrl: string;
301
460
  }
302
461
  export interface MsgDescriptorProtoMsg {
303
462
  typeUrl: "/cosmos.base.reflection.v2alpha1.MsgDescriptor";
304
463
  value: Uint8Array;
305
464
  }
306
- /** MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction */
465
+ /**
466
+ * MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
467
+ * @name MsgDescriptorAmino
468
+ * @package cosmos.base.reflection.v2alpha1
469
+ * @see proto type: cosmos.base.reflection.v2alpha1.MsgDescriptor
470
+ */
307
471
  export interface MsgDescriptorAmino {
308
- /** msg_type_url contains the TypeURL of a sdk.Msg. */
472
+ /**
473
+ * msg_type_url contains the TypeURL of a sdk.Msg.
474
+ */
309
475
  msg_type_url?: string;
310
476
  }
311
477
  export interface MsgDescriptorAminoMsg {
312
478
  type: "cosmos-sdk/MsgDescriptor";
313
479
  value: MsgDescriptorAmino;
314
480
  }
315
- /** GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC */
481
+ /**
482
+ * GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
483
+ * @name GetAuthnDescriptorRequest
484
+ * @package cosmos.base.reflection.v2alpha1
485
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest
486
+ */
316
487
  export interface GetAuthnDescriptorRequest {
317
488
  }
318
489
  export interface GetAuthnDescriptorRequestProtoMsg {
319
490
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest";
320
491
  value: Uint8Array;
321
492
  }
322
- /** GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC */
493
+ /**
494
+ * GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
495
+ * @name GetAuthnDescriptorRequestAmino
496
+ * @package cosmos.base.reflection.v2alpha1
497
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest
498
+ */
323
499
  export interface GetAuthnDescriptorRequestAmino {
324
500
  }
325
501
  export interface GetAuthnDescriptorRequestAminoMsg {
326
502
  type: "cosmos-sdk/GetAuthnDescriptorRequest";
327
503
  value: GetAuthnDescriptorRequestAmino;
328
504
  }
329
- /** GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC */
505
+ /**
506
+ * GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
507
+ * @name GetAuthnDescriptorResponse
508
+ * @package cosmos.base.reflection.v2alpha1
509
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse
510
+ */
330
511
  export interface GetAuthnDescriptorResponse {
331
- /** authn describes how to authenticate to the application when sending transactions */
512
+ /**
513
+ * authn describes how to authenticate to the application when sending transactions
514
+ */
332
515
  authn?: AuthnDescriptor;
333
516
  }
334
517
  export interface GetAuthnDescriptorResponseProtoMsg {
335
518
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse";
336
519
  value: Uint8Array;
337
520
  }
338
- /** GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC */
521
+ /**
522
+ * GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
523
+ * @name GetAuthnDescriptorResponseAmino
524
+ * @package cosmos.base.reflection.v2alpha1
525
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse
526
+ */
339
527
  export interface GetAuthnDescriptorResponseAmino {
340
- /** authn describes how to authenticate to the application when sending transactions */
528
+ /**
529
+ * authn describes how to authenticate to the application when sending transactions
530
+ */
341
531
  authn?: AuthnDescriptorAmino;
342
532
  }
343
533
  export interface GetAuthnDescriptorResponseAminoMsg {
344
534
  type: "cosmos-sdk/GetAuthnDescriptorResponse";
345
535
  value: GetAuthnDescriptorResponseAmino;
346
536
  }
347
- /** GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC */
537
+ /**
538
+ * GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
539
+ * @name GetChainDescriptorRequest
540
+ * @package cosmos.base.reflection.v2alpha1
541
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest
542
+ */
348
543
  export interface GetChainDescriptorRequest {
349
544
  }
350
545
  export interface GetChainDescriptorRequestProtoMsg {
351
546
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest";
352
547
  value: Uint8Array;
353
548
  }
354
- /** GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC */
549
+ /**
550
+ * GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
551
+ * @name GetChainDescriptorRequestAmino
552
+ * @package cosmos.base.reflection.v2alpha1
553
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest
554
+ */
355
555
  export interface GetChainDescriptorRequestAmino {
356
556
  }
357
557
  export interface GetChainDescriptorRequestAminoMsg {
358
558
  type: "cosmos-sdk/GetChainDescriptorRequest";
359
559
  value: GetChainDescriptorRequestAmino;
360
560
  }
361
- /** GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC */
561
+ /**
562
+ * GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
563
+ * @name GetChainDescriptorResponse
564
+ * @package cosmos.base.reflection.v2alpha1
565
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse
566
+ */
362
567
  export interface GetChainDescriptorResponse {
363
- /** chain describes application chain information */
568
+ /**
569
+ * chain describes application chain information
570
+ */
364
571
  chain?: ChainDescriptor;
365
572
  }
366
573
  export interface GetChainDescriptorResponseProtoMsg {
367
574
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse";
368
575
  value: Uint8Array;
369
576
  }
370
- /** GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC */
577
+ /**
578
+ * GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
579
+ * @name GetChainDescriptorResponseAmino
580
+ * @package cosmos.base.reflection.v2alpha1
581
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse
582
+ */
371
583
  export interface GetChainDescriptorResponseAmino {
372
- /** chain describes application chain information */
584
+ /**
585
+ * chain describes application chain information
586
+ */
373
587
  chain?: ChainDescriptorAmino;
374
588
  }
375
589
  export interface GetChainDescriptorResponseAminoMsg {
376
590
  type: "cosmos-sdk/GetChainDescriptorResponse";
377
591
  value: GetChainDescriptorResponseAmino;
378
592
  }
379
- /** GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC */
593
+ /**
594
+ * GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
595
+ * @name GetCodecDescriptorRequest
596
+ * @package cosmos.base.reflection.v2alpha1
597
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest
598
+ */
380
599
  export interface GetCodecDescriptorRequest {
381
600
  }
382
601
  export interface GetCodecDescriptorRequestProtoMsg {
383
602
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest";
384
603
  value: Uint8Array;
385
604
  }
386
- /** GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC */
605
+ /**
606
+ * GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
607
+ * @name GetCodecDescriptorRequestAmino
608
+ * @package cosmos.base.reflection.v2alpha1
609
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest
610
+ */
387
611
  export interface GetCodecDescriptorRequestAmino {
388
612
  }
389
613
  export interface GetCodecDescriptorRequestAminoMsg {
390
614
  type: "cosmos-sdk/GetCodecDescriptorRequest";
391
615
  value: GetCodecDescriptorRequestAmino;
392
616
  }
393
- /** GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC */
617
+ /**
618
+ * GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
619
+ * @name GetCodecDescriptorResponse
620
+ * @package cosmos.base.reflection.v2alpha1
621
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse
622
+ */
394
623
  export interface GetCodecDescriptorResponse {
395
- /** codec describes the application codec such as registered interfaces and implementations */
624
+ /**
625
+ * codec describes the application codec such as registered interfaces and implementations
626
+ */
396
627
  codec?: CodecDescriptor;
397
628
  }
398
629
  export interface GetCodecDescriptorResponseProtoMsg {
399
630
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse";
400
631
  value: Uint8Array;
401
632
  }
402
- /** GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC */
633
+ /**
634
+ * GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
635
+ * @name GetCodecDescriptorResponseAmino
636
+ * @package cosmos.base.reflection.v2alpha1
637
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse
638
+ */
403
639
  export interface GetCodecDescriptorResponseAmino {
404
- /** codec describes the application codec such as registered interfaces and implementations */
640
+ /**
641
+ * codec describes the application codec such as registered interfaces and implementations
642
+ */
405
643
  codec?: CodecDescriptorAmino;
406
644
  }
407
645
  export interface GetCodecDescriptorResponseAminoMsg {
408
646
  type: "cosmos-sdk/GetCodecDescriptorResponse";
409
647
  value: GetCodecDescriptorResponseAmino;
410
648
  }
411
- /** GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC */
649
+ /**
650
+ * GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
651
+ * @name GetConfigurationDescriptorRequest
652
+ * @package cosmos.base.reflection.v2alpha1
653
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest
654
+ */
412
655
  export interface GetConfigurationDescriptorRequest {
413
656
  }
414
657
  export interface GetConfigurationDescriptorRequestProtoMsg {
415
658
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest";
416
659
  value: Uint8Array;
417
660
  }
418
- /** GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC */
661
+ /**
662
+ * GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
663
+ * @name GetConfigurationDescriptorRequestAmino
664
+ * @package cosmos.base.reflection.v2alpha1
665
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest
666
+ */
419
667
  export interface GetConfigurationDescriptorRequestAmino {
420
668
  }
421
669
  export interface GetConfigurationDescriptorRequestAminoMsg {
422
670
  type: "cosmos-sdk/GetConfigurationDescriptorRequest";
423
671
  value: GetConfigurationDescriptorRequestAmino;
424
672
  }
425
- /** GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC */
673
+ /**
674
+ * GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
675
+ * @name GetConfigurationDescriptorResponse
676
+ * @package cosmos.base.reflection.v2alpha1
677
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse
678
+ */
426
679
  export interface GetConfigurationDescriptorResponse {
427
- /** config describes the application's sdk.Config */
680
+ /**
681
+ * config describes the application's sdk.Config
682
+ */
428
683
  config?: ConfigurationDescriptor;
429
684
  }
430
685
  export interface GetConfigurationDescriptorResponseProtoMsg {
431
686
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse";
432
687
  value: Uint8Array;
433
688
  }
434
- /** GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC */
689
+ /**
690
+ * GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
691
+ * @name GetConfigurationDescriptorResponseAmino
692
+ * @package cosmos.base.reflection.v2alpha1
693
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse
694
+ */
435
695
  export interface GetConfigurationDescriptorResponseAmino {
436
- /** config describes the application's sdk.Config */
696
+ /**
697
+ * config describes the application's sdk.Config
698
+ */
437
699
  config?: ConfigurationDescriptorAmino;
438
700
  }
439
701
  export interface GetConfigurationDescriptorResponseAminoMsg {
440
702
  type: "cosmos-sdk/GetConfigurationDescriptorResponse";
441
703
  value: GetConfigurationDescriptorResponseAmino;
442
704
  }
443
- /** GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC */
705
+ /**
706
+ * GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
707
+ * @name GetQueryServicesDescriptorRequest
708
+ * @package cosmos.base.reflection.v2alpha1
709
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest
710
+ */
444
711
  export interface GetQueryServicesDescriptorRequest {
445
712
  }
446
713
  export interface GetQueryServicesDescriptorRequestProtoMsg {
447
714
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest";
448
715
  value: Uint8Array;
449
716
  }
450
- /** GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC */
717
+ /**
718
+ * GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
719
+ * @name GetQueryServicesDescriptorRequestAmino
720
+ * @package cosmos.base.reflection.v2alpha1
721
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest
722
+ */
451
723
  export interface GetQueryServicesDescriptorRequestAmino {
452
724
  }
453
725
  export interface GetQueryServicesDescriptorRequestAminoMsg {
454
726
  type: "cosmos-sdk/GetQueryServicesDescriptorRequest";
455
727
  value: GetQueryServicesDescriptorRequestAmino;
456
728
  }
457
- /** GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC */
729
+ /**
730
+ * GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC
731
+ * @name GetQueryServicesDescriptorResponse
732
+ * @package cosmos.base.reflection.v2alpha1
733
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse
734
+ */
458
735
  export interface GetQueryServicesDescriptorResponse {
459
- /** queries provides information on the available queryable services */
736
+ /**
737
+ * queries provides information on the available queryable services
738
+ */
460
739
  queries?: QueryServicesDescriptor;
461
740
  }
462
741
  export interface GetQueryServicesDescriptorResponseProtoMsg {
463
742
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse";
464
743
  value: Uint8Array;
465
744
  }
466
- /** GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC */
745
+ /**
746
+ * GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC
747
+ * @name GetQueryServicesDescriptorResponseAmino
748
+ * @package cosmos.base.reflection.v2alpha1
749
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse
750
+ */
467
751
  export interface GetQueryServicesDescriptorResponseAmino {
468
- /** queries provides information on the available queryable services */
752
+ /**
753
+ * queries provides information on the available queryable services
754
+ */
469
755
  queries?: QueryServicesDescriptorAmino;
470
756
  }
471
757
  export interface GetQueryServicesDescriptorResponseAminoMsg {
472
758
  type: "cosmos-sdk/GetQueryServicesDescriptorResponse";
473
759
  value: GetQueryServicesDescriptorResponseAmino;
474
760
  }
475
- /** GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC */
761
+ /**
762
+ * GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC
763
+ * @name GetTxDescriptorRequest
764
+ * @package cosmos.base.reflection.v2alpha1
765
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest
766
+ */
476
767
  export interface GetTxDescriptorRequest {
477
768
  }
478
769
  export interface GetTxDescriptorRequestProtoMsg {
479
770
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest";
480
771
  value: Uint8Array;
481
772
  }
482
- /** GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC */
773
+ /**
774
+ * GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC
775
+ * @name GetTxDescriptorRequestAmino
776
+ * @package cosmos.base.reflection.v2alpha1
777
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest
778
+ */
483
779
  export interface GetTxDescriptorRequestAmino {
484
780
  }
485
781
  export interface GetTxDescriptorRequestAminoMsg {
486
782
  type: "cosmos-sdk/GetTxDescriptorRequest";
487
783
  value: GetTxDescriptorRequestAmino;
488
784
  }
489
- /** GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC */
785
+ /**
786
+ * GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC
787
+ * @name GetTxDescriptorResponse
788
+ * @package cosmos.base.reflection.v2alpha1
789
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse
790
+ */
490
791
  export interface GetTxDescriptorResponse {
491
792
  /**
492
793
  * tx provides information on msgs that can be forwarded to the application
@@ -498,7 +799,12 @@ export interface GetTxDescriptorResponseProtoMsg {
498
799
  typeUrl: "/cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse";
499
800
  value: Uint8Array;
500
801
  }
501
- /** GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC */
802
+ /**
803
+ * GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC
804
+ * @name GetTxDescriptorResponseAmino
805
+ * @package cosmos.base.reflection.v2alpha1
806
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse
807
+ */
502
808
  export interface GetTxDescriptorResponseAmino {
503
809
  /**
504
810
  * tx provides information on msgs that can be forwarded to the application
@@ -510,44 +816,80 @@ export interface GetTxDescriptorResponseAminoMsg {
510
816
  type: "cosmos-sdk/GetTxDescriptorResponse";
511
817
  value: GetTxDescriptorResponseAmino;
512
818
  }
513
- /** QueryServicesDescriptor contains the list of cosmos-sdk queriable services */
819
+ /**
820
+ * QueryServicesDescriptor contains the list of cosmos-sdk queriable services
821
+ * @name QueryServicesDescriptor
822
+ * @package cosmos.base.reflection.v2alpha1
823
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryServicesDescriptor
824
+ */
514
825
  export interface QueryServicesDescriptor {
515
- /** query_services is a list of cosmos-sdk QueryServiceDescriptor */
826
+ /**
827
+ * query_services is a list of cosmos-sdk QueryServiceDescriptor
828
+ */
516
829
  queryServices: QueryServiceDescriptor[];
517
830
  }
518
831
  export interface QueryServicesDescriptorProtoMsg {
519
832
  typeUrl: "/cosmos.base.reflection.v2alpha1.QueryServicesDescriptor";
520
833
  value: Uint8Array;
521
834
  }
522
- /** QueryServicesDescriptor contains the list of cosmos-sdk queriable services */
835
+ /**
836
+ * QueryServicesDescriptor contains the list of cosmos-sdk queriable services
837
+ * @name QueryServicesDescriptorAmino
838
+ * @package cosmos.base.reflection.v2alpha1
839
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryServicesDescriptor
840
+ */
523
841
  export interface QueryServicesDescriptorAmino {
524
- /** query_services is a list of cosmos-sdk QueryServiceDescriptor */
842
+ /**
843
+ * query_services is a list of cosmos-sdk QueryServiceDescriptor
844
+ */
525
845
  query_services?: QueryServiceDescriptorAmino[];
526
846
  }
527
847
  export interface QueryServicesDescriptorAminoMsg {
528
848
  type: "cosmos-sdk/QueryServicesDescriptor";
529
849
  value: QueryServicesDescriptorAmino;
530
850
  }
531
- /** QueryServiceDescriptor describes a cosmos-sdk queryable service */
851
+ /**
852
+ * QueryServiceDescriptor describes a cosmos-sdk queryable service
853
+ * @name QueryServiceDescriptor
854
+ * @package cosmos.base.reflection.v2alpha1
855
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryServiceDescriptor
856
+ */
532
857
  export interface QueryServiceDescriptor {
533
- /** fullname is the protobuf fullname of the service descriptor */
858
+ /**
859
+ * fullname is the protobuf fullname of the service descriptor
860
+ */
534
861
  fullname: string;
535
- /** is_module describes if this service is actually exposed by an application's module */
862
+ /**
863
+ * is_module describes if this service is actually exposed by an application's module
864
+ */
536
865
  isModule: boolean;
537
- /** methods provides a list of query service methods */
866
+ /**
867
+ * methods provides a list of query service methods
868
+ */
538
869
  methods: QueryMethodDescriptor[];
539
870
  }
540
871
  export interface QueryServiceDescriptorProtoMsg {
541
872
  typeUrl: "/cosmos.base.reflection.v2alpha1.QueryServiceDescriptor";
542
873
  value: Uint8Array;
543
874
  }
544
- /** QueryServiceDescriptor describes a cosmos-sdk queryable service */
875
+ /**
876
+ * QueryServiceDescriptor describes a cosmos-sdk queryable service
877
+ * @name QueryServiceDescriptorAmino
878
+ * @package cosmos.base.reflection.v2alpha1
879
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryServiceDescriptor
880
+ */
545
881
  export interface QueryServiceDescriptorAmino {
546
- /** fullname is the protobuf fullname of the service descriptor */
882
+ /**
883
+ * fullname is the protobuf fullname of the service descriptor
884
+ */
547
885
  fullname?: string;
548
- /** is_module describes if this service is actually exposed by an application's module */
886
+ /**
887
+ * is_module describes if this service is actually exposed by an application's module
888
+ */
549
889
  is_module?: boolean;
550
- /** methods provides a list of query service methods */
890
+ /**
891
+ * methods provides a list of query service methods
892
+ */
551
893
  methods?: QueryMethodDescriptorAmino[];
552
894
  }
553
895
  export interface QueryServiceDescriptorAminoMsg {
@@ -558,9 +900,14 @@ export interface QueryServiceDescriptorAminoMsg {
558
900
  * QueryMethodDescriptor describes a queryable method of a query service
559
901
  * no other info is provided beside method name and tendermint queryable path
560
902
  * because it would be redundant with the grpc reflection service
903
+ * @name QueryMethodDescriptor
904
+ * @package cosmos.base.reflection.v2alpha1
905
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryMethodDescriptor
561
906
  */
562
907
  export interface QueryMethodDescriptor {
563
- /** name is the protobuf name (not fullname) of the method */
908
+ /**
909
+ * name is the protobuf name (not fullname) of the method
910
+ */
564
911
  name: string;
565
912
  /**
566
913
  * full_query_path is the path that can be used to query
@@ -576,9 +923,14 @@ export interface QueryMethodDescriptorProtoMsg {
576
923
  * QueryMethodDescriptor describes a queryable method of a query service
577
924
  * no other info is provided beside method name and tendermint queryable path
578
925
  * because it would be redundant with the grpc reflection service
926
+ * @name QueryMethodDescriptorAmino
927
+ * @package cosmos.base.reflection.v2alpha1
928
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryMethodDescriptor
579
929
  */
580
930
  export interface QueryMethodDescriptorAmino {
581
- /** name is the protobuf name (not fullname) of the method */
931
+ /**
932
+ * name is the protobuf name (not fullname) of the method
933
+ */
582
934
  name?: string;
583
935
  /**
584
936
  * full_query_path is the path that can be used to query
@@ -590,6 +942,12 @@ export interface QueryMethodDescriptorAminoMsg {
590
942
  type: "cosmos-sdk/QueryMethodDescriptor";
591
943
  value: QueryMethodDescriptorAmino;
592
944
  }
945
+ /**
946
+ * AppDescriptor describes a cosmos-sdk based application
947
+ * @name AppDescriptor
948
+ * @package cosmos.base.reflection.v2alpha1
949
+ * @see proto type: cosmos.base.reflection.v2alpha1.AppDescriptor
950
+ */
593
951
  export declare const AppDescriptor: {
594
952
  typeUrl: string;
595
953
  aminoType: string;
@@ -604,6 +962,12 @@ export declare const AppDescriptor: {
604
962
  toProto(message: AppDescriptor): Uint8Array;
605
963
  toProtoMsg(message: AppDescriptor): AppDescriptorProtoMsg;
606
964
  };
965
+ /**
966
+ * TxDescriptor describes the accepted transaction type
967
+ * @name TxDescriptor
968
+ * @package cosmos.base.reflection.v2alpha1
969
+ * @see proto type: cosmos.base.reflection.v2alpha1.TxDescriptor
970
+ */
607
971
  export declare const TxDescriptor: {
608
972
  typeUrl: string;
609
973
  aminoType: string;
@@ -618,6 +982,13 @@ export declare const TxDescriptor: {
618
982
  toProto(message: TxDescriptor): Uint8Array;
619
983
  toProtoMsg(message: TxDescriptor): TxDescriptorProtoMsg;
620
984
  };
985
+ /**
986
+ * AuthnDescriptor provides information on how to sign transactions without relying
987
+ * on the online RPCs GetTxMetadata and CombineUnsignedTxAndSignatures
988
+ * @name AuthnDescriptor
989
+ * @package cosmos.base.reflection.v2alpha1
990
+ * @see proto type: cosmos.base.reflection.v2alpha1.AuthnDescriptor
991
+ */
621
992
  export declare const AuthnDescriptor: {
622
993
  typeUrl: string;
623
994
  aminoType: string;
@@ -632,6 +1003,15 @@ export declare const AuthnDescriptor: {
632
1003
  toProto(message: AuthnDescriptor): Uint8Array;
633
1004
  toProtoMsg(message: AuthnDescriptor): AuthnDescriptorProtoMsg;
634
1005
  };
1006
+ /**
1007
+ * SigningModeDescriptor provides information on a signing flow of the application
1008
+ * NOTE(fdymylja): here we could go as far as providing an entire flow on how
1009
+ * to sign a message given a SigningModeDescriptor, but it's better to think about
1010
+ * this another time
1011
+ * @name SigningModeDescriptor
1012
+ * @package cosmos.base.reflection.v2alpha1
1013
+ * @see proto type: cosmos.base.reflection.v2alpha1.SigningModeDescriptor
1014
+ */
635
1015
  export declare const SigningModeDescriptor: {
636
1016
  typeUrl: string;
637
1017
  aminoType: string;
@@ -646,6 +1026,12 @@ export declare const SigningModeDescriptor: {
646
1026
  toProto(message: SigningModeDescriptor): Uint8Array;
647
1027
  toProtoMsg(message: SigningModeDescriptor): SigningModeDescriptorProtoMsg;
648
1028
  };
1029
+ /**
1030
+ * ChainDescriptor describes chain information of the application
1031
+ * @name ChainDescriptor
1032
+ * @package cosmos.base.reflection.v2alpha1
1033
+ * @see proto type: cosmos.base.reflection.v2alpha1.ChainDescriptor
1034
+ */
649
1035
  export declare const ChainDescriptor: {
650
1036
  typeUrl: string;
651
1037
  aminoType: string;
@@ -660,6 +1046,12 @@ export declare const ChainDescriptor: {
660
1046
  toProto(message: ChainDescriptor): Uint8Array;
661
1047
  toProtoMsg(message: ChainDescriptor): ChainDescriptorProtoMsg;
662
1048
  };
1049
+ /**
1050
+ * CodecDescriptor describes the registered interfaces and provides metadata information on the types
1051
+ * @name CodecDescriptor
1052
+ * @package cosmos.base.reflection.v2alpha1
1053
+ * @see proto type: cosmos.base.reflection.v2alpha1.CodecDescriptor
1054
+ */
663
1055
  export declare const CodecDescriptor: {
664
1056
  typeUrl: string;
665
1057
  aminoType: string;
@@ -674,6 +1066,12 @@ export declare const CodecDescriptor: {
674
1066
  toProto(message: CodecDescriptor): Uint8Array;
675
1067
  toProtoMsg(message: CodecDescriptor): CodecDescriptorProtoMsg;
676
1068
  };
1069
+ /**
1070
+ * InterfaceDescriptor describes the implementation of an interface
1071
+ * @name InterfaceDescriptor
1072
+ * @package cosmos.base.reflection.v2alpha1
1073
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceDescriptor
1074
+ */
677
1075
  export declare const InterfaceDescriptor: {
678
1076
  typeUrl: string;
679
1077
  aminoType: string;
@@ -688,6 +1086,12 @@ export declare const InterfaceDescriptor: {
688
1086
  toProto(message: InterfaceDescriptor): Uint8Array;
689
1087
  toProtoMsg(message: InterfaceDescriptor): InterfaceDescriptorProtoMsg;
690
1088
  };
1089
+ /**
1090
+ * InterfaceImplementerDescriptor describes an interface implementer
1091
+ * @name InterfaceImplementerDescriptor
1092
+ * @package cosmos.base.reflection.v2alpha1
1093
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceImplementerDescriptor
1094
+ */
691
1095
  export declare const InterfaceImplementerDescriptor: {
692
1096
  typeUrl: string;
693
1097
  aminoType: string;
@@ -702,6 +1106,13 @@ export declare const InterfaceImplementerDescriptor: {
702
1106
  toProto(message: InterfaceImplementerDescriptor): Uint8Array;
703
1107
  toProtoMsg(message: InterfaceImplementerDescriptor): InterfaceImplementerDescriptorProtoMsg;
704
1108
  };
1109
+ /**
1110
+ * InterfaceAcceptingMessageDescriptor describes a protobuf message which contains
1111
+ * an interface represented as a google.protobuf.Any
1112
+ * @name InterfaceAcceptingMessageDescriptor
1113
+ * @package cosmos.base.reflection.v2alpha1
1114
+ * @see proto type: cosmos.base.reflection.v2alpha1.InterfaceAcceptingMessageDescriptor
1115
+ */
705
1116
  export declare const InterfaceAcceptingMessageDescriptor: {
706
1117
  typeUrl: string;
707
1118
  aminoType: string;
@@ -716,6 +1127,12 @@ export declare const InterfaceAcceptingMessageDescriptor: {
716
1127
  toProto(message: InterfaceAcceptingMessageDescriptor): Uint8Array;
717
1128
  toProtoMsg(message: InterfaceAcceptingMessageDescriptor): InterfaceAcceptingMessageDescriptorProtoMsg;
718
1129
  };
1130
+ /**
1131
+ * ConfigurationDescriptor contains metadata information on the sdk.Config
1132
+ * @name ConfigurationDescriptor
1133
+ * @package cosmos.base.reflection.v2alpha1
1134
+ * @see proto type: cosmos.base.reflection.v2alpha1.ConfigurationDescriptor
1135
+ */
719
1136
  export declare const ConfigurationDescriptor: {
720
1137
  typeUrl: string;
721
1138
  aminoType: string;
@@ -730,6 +1147,12 @@ export declare const ConfigurationDescriptor: {
730
1147
  toProto(message: ConfigurationDescriptor): Uint8Array;
731
1148
  toProtoMsg(message: ConfigurationDescriptor): ConfigurationDescriptorProtoMsg;
732
1149
  };
1150
+ /**
1151
+ * MsgDescriptor describes a cosmos-sdk message that can be delivered with a transaction
1152
+ * @name MsgDescriptor
1153
+ * @package cosmos.base.reflection.v2alpha1
1154
+ * @see proto type: cosmos.base.reflection.v2alpha1.MsgDescriptor
1155
+ */
733
1156
  export declare const MsgDescriptor: {
734
1157
  typeUrl: string;
735
1158
  aminoType: string;
@@ -744,6 +1167,12 @@ export declare const MsgDescriptor: {
744
1167
  toProto(message: MsgDescriptor): Uint8Array;
745
1168
  toProtoMsg(message: MsgDescriptor): MsgDescriptorProtoMsg;
746
1169
  };
1170
+ /**
1171
+ * GetAuthnDescriptorRequest is the request used for the GetAuthnDescriptor RPC
1172
+ * @name GetAuthnDescriptorRequest
1173
+ * @package cosmos.base.reflection.v2alpha1
1174
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorRequest
1175
+ */
747
1176
  export declare const GetAuthnDescriptorRequest: {
748
1177
  typeUrl: string;
749
1178
  aminoType: string;
@@ -758,6 +1187,12 @@ export declare const GetAuthnDescriptorRequest: {
758
1187
  toProto(message: GetAuthnDescriptorRequest): Uint8Array;
759
1188
  toProtoMsg(message: GetAuthnDescriptorRequest): GetAuthnDescriptorRequestProtoMsg;
760
1189
  };
1190
+ /**
1191
+ * GetAuthnDescriptorResponse is the response returned by the GetAuthnDescriptor RPC
1192
+ * @name GetAuthnDescriptorResponse
1193
+ * @package cosmos.base.reflection.v2alpha1
1194
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetAuthnDescriptorResponse
1195
+ */
761
1196
  export declare const GetAuthnDescriptorResponse: {
762
1197
  typeUrl: string;
763
1198
  aminoType: string;
@@ -772,6 +1207,12 @@ export declare const GetAuthnDescriptorResponse: {
772
1207
  toProto(message: GetAuthnDescriptorResponse): Uint8Array;
773
1208
  toProtoMsg(message: GetAuthnDescriptorResponse): GetAuthnDescriptorResponseProtoMsg;
774
1209
  };
1210
+ /**
1211
+ * GetChainDescriptorRequest is the request used for the GetChainDescriptor RPC
1212
+ * @name GetChainDescriptorRequest
1213
+ * @package cosmos.base.reflection.v2alpha1
1214
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorRequest
1215
+ */
775
1216
  export declare const GetChainDescriptorRequest: {
776
1217
  typeUrl: string;
777
1218
  aminoType: string;
@@ -786,6 +1227,12 @@ export declare const GetChainDescriptorRequest: {
786
1227
  toProto(message: GetChainDescriptorRequest): Uint8Array;
787
1228
  toProtoMsg(message: GetChainDescriptorRequest): GetChainDescriptorRequestProtoMsg;
788
1229
  };
1230
+ /**
1231
+ * GetChainDescriptorResponse is the response returned by the GetChainDescriptor RPC
1232
+ * @name GetChainDescriptorResponse
1233
+ * @package cosmos.base.reflection.v2alpha1
1234
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetChainDescriptorResponse
1235
+ */
789
1236
  export declare const GetChainDescriptorResponse: {
790
1237
  typeUrl: string;
791
1238
  aminoType: string;
@@ -800,6 +1247,12 @@ export declare const GetChainDescriptorResponse: {
800
1247
  toProto(message: GetChainDescriptorResponse): Uint8Array;
801
1248
  toProtoMsg(message: GetChainDescriptorResponse): GetChainDescriptorResponseProtoMsg;
802
1249
  };
1250
+ /**
1251
+ * GetCodecDescriptorRequest is the request used for the GetCodecDescriptor RPC
1252
+ * @name GetCodecDescriptorRequest
1253
+ * @package cosmos.base.reflection.v2alpha1
1254
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorRequest
1255
+ */
803
1256
  export declare const GetCodecDescriptorRequest: {
804
1257
  typeUrl: string;
805
1258
  aminoType: string;
@@ -814,6 +1267,12 @@ export declare const GetCodecDescriptorRequest: {
814
1267
  toProto(message: GetCodecDescriptorRequest): Uint8Array;
815
1268
  toProtoMsg(message: GetCodecDescriptorRequest): GetCodecDescriptorRequestProtoMsg;
816
1269
  };
1270
+ /**
1271
+ * GetCodecDescriptorResponse is the response returned by the GetCodecDescriptor RPC
1272
+ * @name GetCodecDescriptorResponse
1273
+ * @package cosmos.base.reflection.v2alpha1
1274
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetCodecDescriptorResponse
1275
+ */
817
1276
  export declare const GetCodecDescriptorResponse: {
818
1277
  typeUrl: string;
819
1278
  aminoType: string;
@@ -828,6 +1287,12 @@ export declare const GetCodecDescriptorResponse: {
828
1287
  toProto(message: GetCodecDescriptorResponse): Uint8Array;
829
1288
  toProtoMsg(message: GetCodecDescriptorResponse): GetCodecDescriptorResponseProtoMsg;
830
1289
  };
1290
+ /**
1291
+ * GetConfigurationDescriptorRequest is the request used for the GetConfigurationDescriptor RPC
1292
+ * @name GetConfigurationDescriptorRequest
1293
+ * @package cosmos.base.reflection.v2alpha1
1294
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorRequest
1295
+ */
831
1296
  export declare const GetConfigurationDescriptorRequest: {
832
1297
  typeUrl: string;
833
1298
  aminoType: string;
@@ -842,6 +1307,12 @@ export declare const GetConfigurationDescriptorRequest: {
842
1307
  toProto(message: GetConfigurationDescriptorRequest): Uint8Array;
843
1308
  toProtoMsg(message: GetConfigurationDescriptorRequest): GetConfigurationDescriptorRequestProtoMsg;
844
1309
  };
1310
+ /**
1311
+ * GetConfigurationDescriptorResponse is the response returned by the GetConfigurationDescriptor RPC
1312
+ * @name GetConfigurationDescriptorResponse
1313
+ * @package cosmos.base.reflection.v2alpha1
1314
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetConfigurationDescriptorResponse
1315
+ */
845
1316
  export declare const GetConfigurationDescriptorResponse: {
846
1317
  typeUrl: string;
847
1318
  aminoType: string;
@@ -856,6 +1327,12 @@ export declare const GetConfigurationDescriptorResponse: {
856
1327
  toProto(message: GetConfigurationDescriptorResponse): Uint8Array;
857
1328
  toProtoMsg(message: GetConfigurationDescriptorResponse): GetConfigurationDescriptorResponseProtoMsg;
858
1329
  };
1330
+ /**
1331
+ * GetQueryServicesDescriptorRequest is the request used for the GetQueryServicesDescriptor RPC
1332
+ * @name GetQueryServicesDescriptorRequest
1333
+ * @package cosmos.base.reflection.v2alpha1
1334
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorRequest
1335
+ */
859
1336
  export declare const GetQueryServicesDescriptorRequest: {
860
1337
  typeUrl: string;
861
1338
  aminoType: string;
@@ -870,6 +1347,12 @@ export declare const GetQueryServicesDescriptorRequest: {
870
1347
  toProto(message: GetQueryServicesDescriptorRequest): Uint8Array;
871
1348
  toProtoMsg(message: GetQueryServicesDescriptorRequest): GetQueryServicesDescriptorRequestProtoMsg;
872
1349
  };
1350
+ /**
1351
+ * GetQueryServicesDescriptorResponse is the response returned by the GetQueryServicesDescriptor RPC
1352
+ * @name GetQueryServicesDescriptorResponse
1353
+ * @package cosmos.base.reflection.v2alpha1
1354
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetQueryServicesDescriptorResponse
1355
+ */
873
1356
  export declare const GetQueryServicesDescriptorResponse: {
874
1357
  typeUrl: string;
875
1358
  aminoType: string;
@@ -884,6 +1367,12 @@ export declare const GetQueryServicesDescriptorResponse: {
884
1367
  toProto(message: GetQueryServicesDescriptorResponse): Uint8Array;
885
1368
  toProtoMsg(message: GetQueryServicesDescriptorResponse): GetQueryServicesDescriptorResponseProtoMsg;
886
1369
  };
1370
+ /**
1371
+ * GetTxDescriptorRequest is the request used for the GetTxDescriptor RPC
1372
+ * @name GetTxDescriptorRequest
1373
+ * @package cosmos.base.reflection.v2alpha1
1374
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorRequest
1375
+ */
887
1376
  export declare const GetTxDescriptorRequest: {
888
1377
  typeUrl: string;
889
1378
  aminoType: string;
@@ -898,6 +1387,12 @@ export declare const GetTxDescriptorRequest: {
898
1387
  toProto(message: GetTxDescriptorRequest): Uint8Array;
899
1388
  toProtoMsg(message: GetTxDescriptorRequest): GetTxDescriptorRequestProtoMsg;
900
1389
  };
1390
+ /**
1391
+ * GetTxDescriptorResponse is the response returned by the GetTxDescriptor RPC
1392
+ * @name GetTxDescriptorResponse
1393
+ * @package cosmos.base.reflection.v2alpha1
1394
+ * @see proto type: cosmos.base.reflection.v2alpha1.GetTxDescriptorResponse
1395
+ */
901
1396
  export declare const GetTxDescriptorResponse: {
902
1397
  typeUrl: string;
903
1398
  aminoType: string;
@@ -912,6 +1407,12 @@ export declare const GetTxDescriptorResponse: {
912
1407
  toProto(message: GetTxDescriptorResponse): Uint8Array;
913
1408
  toProtoMsg(message: GetTxDescriptorResponse): GetTxDescriptorResponseProtoMsg;
914
1409
  };
1410
+ /**
1411
+ * QueryServicesDescriptor contains the list of cosmos-sdk queriable services
1412
+ * @name QueryServicesDescriptor
1413
+ * @package cosmos.base.reflection.v2alpha1
1414
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryServicesDescriptor
1415
+ */
915
1416
  export declare const QueryServicesDescriptor: {
916
1417
  typeUrl: string;
917
1418
  aminoType: string;
@@ -926,6 +1427,12 @@ export declare const QueryServicesDescriptor: {
926
1427
  toProto(message: QueryServicesDescriptor): Uint8Array;
927
1428
  toProtoMsg(message: QueryServicesDescriptor): QueryServicesDescriptorProtoMsg;
928
1429
  };
1430
+ /**
1431
+ * QueryServiceDescriptor describes a cosmos-sdk queryable service
1432
+ * @name QueryServiceDescriptor
1433
+ * @package cosmos.base.reflection.v2alpha1
1434
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryServiceDescriptor
1435
+ */
929
1436
  export declare const QueryServiceDescriptor: {
930
1437
  typeUrl: string;
931
1438
  aminoType: string;
@@ -940,6 +1447,14 @@ export declare const QueryServiceDescriptor: {
940
1447
  toProto(message: QueryServiceDescriptor): Uint8Array;
941
1448
  toProtoMsg(message: QueryServiceDescriptor): QueryServiceDescriptorProtoMsg;
942
1449
  };
1450
+ /**
1451
+ * QueryMethodDescriptor describes a queryable method of a query service
1452
+ * no other info is provided beside method name and tendermint queryable path
1453
+ * because it would be redundant with the grpc reflection service
1454
+ * @name QueryMethodDescriptor
1455
+ * @package cosmos.base.reflection.v2alpha1
1456
+ * @see proto type: cosmos.base.reflection.v2alpha1.QueryMethodDescriptor
1457
+ */
943
1458
  export declare const QueryMethodDescriptor: {
944
1459
  typeUrl: string;
945
1460
  aminoType: string;