@xpla/xpla-react 1.7.0 → 1.8.0-rc.1

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 (1369) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
  4. package/cosmos/app/runtime/v1alpha1/module.js +17 -0
  5. package/cosmos/app/v1alpha1/config.d.ts +72 -10
  6. package/cosmos/app/v1alpha1/config.js +31 -0
  7. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  8. package/cosmos/app/v1alpha1/module.js +23 -0
  9. package/cosmos/app/v1alpha1/query.d.ts +42 -6
  10. package/cosmos/app/v1alpha1/query.js +16 -0
  11. package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
  12. package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
  13. package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
  14. package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
  15. package/cosmos/auth/module/v1/module.d.ts +60 -12
  16. package/cosmos/auth/module/v1/module.js +16 -0
  17. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  18. package/cosmos/auth/v1beta1/auth.js +34 -0
  19. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  20. package/cosmos/auth/v1beta1/genesis.js +6 -0
  21. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  22. package/cosmos/auth/v1beta1/query.js +169 -0
  23. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
  24. package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
  25. package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
  26. package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
  27. package/cosmos/auth/v1beta1/tx.d.ts +35 -2
  28. package/cosmos/auth/v1beta1/tx.js +21 -0
  29. package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
  30. package/cosmos/auth/v1beta1/tx.registry.js +27 -1
  31. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
  32. package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
  33. package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
  34. package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
  35. package/cosmos/authz/module/v1/module.d.ts +18 -2
  36. package/cosmos/authz/module/v1/module.js +6 -0
  37. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  38. package/cosmos/authz/v1beta1/authz.js +36 -0
  39. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  40. package/cosmos/authz/v1beta1/event.js +12 -0
  41. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  42. package/cosmos/authz/v1beta1/genesis.js +10 -0
  43. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  44. package/cosmos/authz/v1beta1/query.js +55 -0
  45. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
  46. package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
  47. package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
  48. package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
  49. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  50. package/cosmos/authz/v1beta1/tx.js +43 -0
  51. package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
  52. package/cosmos/authz/v1beta1/tx.registry.js +63 -1
  53. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
  54. package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
  55. package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
  56. package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
  57. package/cosmos/autocli/v1/options.d.ts +208 -38
  58. package/cosmos/autocli/v1/options.js +54 -0
  59. package/cosmos/autocli/v1/query.d.ts +57 -6
  60. package/cosmos/autocli/v1/query.js +21 -0
  61. package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
  62. package/cosmos/autocli/v1/query.rpc.func.js +8 -4
  63. package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
  64. package/cosmos/autocli/v1/query.rpc.react.js +7 -1
  65. package/cosmos/bank/module/v1/module.d.ts +24 -4
  66. package/cosmos/bank/module/v1/module.js +6 -0
  67. package/cosmos/bank/v1beta1/authz.d.ts +15 -0
  68. package/cosmos/bank/v1beta1/authz.js +12 -0
  69. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  70. package/cosmos/bank/v1beta1/bank.js +63 -0
  71. package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
  72. package/cosmos/bank/v1beta1/genesis.js +20 -0
  73. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  74. package/cosmos/bank/v1beta1/query.js +263 -0
  75. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
  76. package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
  77. package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
  78. package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
  79. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  80. package/cosmos/bank/v1beta1/tx.js +74 -0
  81. package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
  82. package/cosmos/bank/v1beta1/tx.registry.js +81 -1
  83. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
  84. package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
  85. package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
  86. package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
  87. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  88. package/cosmos/base/abci/v1beta1/abci.js +92 -0
  89. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  90. package/cosmos/base/node/v1beta1/query.js +24 -0
  91. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
  92. package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
  93. package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
  94. package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
  95. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  96. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  97. package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
  98. package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  99. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
  100. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
  101. package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
  102. package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
  103. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  104. package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  105. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
  106. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
  107. package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
  108. package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
  109. package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
  110. package/cosmos/base/tendermint/v1beta1/query.js +154 -0
  111. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
  112. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
  113. package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
  114. package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
  115. package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
  116. package/cosmos/base/tendermint/v1beta1/types.js +20 -0
  117. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  118. package/cosmos/base/v1beta1/coin.js +32 -0
  119. package/cosmos/bundle.d.ts +188 -0
  120. package/cosmos/bundle.js +990 -0
  121. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  122. package/cosmos/consensus/module/v1/module.js +6 -0
  123. package/cosmos/consensus/v1/query.d.ts +36 -4
  124. package/cosmos/consensus/v1/query.js +16 -0
  125. package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
  126. package/cosmos/consensus/v1/query.rpc.func.js +8 -4
  127. package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
  128. package/cosmos/consensus/v1/query.rpc.react.js +7 -1
  129. package/cosmos/consensus/v1/tx.d.ts +43 -6
  130. package/cosmos/consensus/v1/tx.js +17 -0
  131. package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
  132. package/cosmos/consensus/v1/tx.registry.js +27 -1
  133. package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
  134. package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
  135. package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
  136. package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
  137. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  138. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  139. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  140. package/cosmos/distribution/module/v1/module.js +6 -0
  141. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  142. package/cosmos/distribution/v1beta1/distribution.js +132 -0
  143. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  144. package/cosmos/distribution/v1beta1/genesis.js +74 -0
  145. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  146. package/cosmos/distribution/v1beta1/query.js +164 -0
  147. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
  148. package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
  149. package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
  150. package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
  151. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  152. package/cosmos/distribution/v1beta1/tx.js +128 -0
  153. package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
  154. package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
  155. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
  156. package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
  157. package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
  158. package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
  159. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  160. package/cosmos/evidence/module/v1/module.js +6 -0
  161. package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
  162. package/cosmos/evidence/v1beta1/evidence.js +7 -0
  163. package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
  164. package/cosmos/evidence/v1beta1/genesis.js +6 -0
  165. package/cosmos/evidence/v1beta1/query.d.ts +88 -14
  166. package/cosmos/evidence/v1beta1/query.js +33 -0
  167. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
  168. package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
  169. package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
  170. package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
  171. package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
  172. package/cosmos/evidence/v1beta1/tx.js +13 -0
  173. package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
  174. package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
  175. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
  176. package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
  177. package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
  178. package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
  179. package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
  180. package/cosmos/evm/feemarket/v1/events.js +182 -0
  181. package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
  182. package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
  183. package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
  184. package/cosmos/evm/feemarket/v1/genesis.js +106 -0
  185. package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
  186. package/cosmos/evm/feemarket/v1/query.js +473 -0
  187. package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
  188. package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
  189. package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
  190. package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
  191. package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
  192. package/cosmos/evm/feemarket/v1/tx.js +177 -0
  193. package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
  194. package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
  195. package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
  196. package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
  197. package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
  198. package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
  199. package/cosmos/evm/vm/v1/events.d.ts +286 -0
  200. package/cosmos/evm/vm/v1/events.js +435 -0
  201. package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
  202. package/cosmos/evm/vm/v1/evm.js +1617 -0
  203. package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
  204. package/cosmos/evm/vm/v1/genesis.js +227 -0
  205. package/cosmos/evm/vm/v1/query.d.ts +1773 -0
  206. package/cosmos/evm/vm/v1/query.js +2680 -0
  207. package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
  208. package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
  209. package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
  210. package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
  211. package/cosmos/evm/vm/v1/tx.d.ts +747 -0
  212. package/cosmos/evm/vm/v1/tx.js +1132 -0
  213. package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
  214. package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
  215. package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
  216. package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
  217. package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
  218. package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
  219. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  220. package/cosmos/feegrant/module/v1/module.js +6 -0
  221. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  222. package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  223. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  224. package/cosmos/feegrant/v1beta1/genesis.js +10 -0
  225. package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
  226. package/cosmos/feegrant/v1beta1/query.js +56 -0
  227. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
  228. package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
  229. package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
  230. package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
  231. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  232. package/cosmos/feegrant/v1beta1/tx.js +44 -0
  233. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
  234. package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
  235. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
  236. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
  237. package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
  238. package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
  239. package/cosmos/gov/module/v1/module.d.ts +24 -4
  240. package/cosmos/gov/module/v1/module.js +6 -0
  241. package/cosmos/gov/v1/genesis.d.ts +48 -16
  242. package/cosmos/gov/v1/genesis.js +10 -0
  243. package/cosmos/gov/v1/gov.d.ts +343 -80
  244. package/cosmos/gov/v1/gov.js +77 -0
  245. package/cosmos/gov/v1/query.d.ts +469 -88
  246. package/cosmos/gov/v1/query.js +143 -0
  247. package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
  248. package/cosmos/gov/v1/query.rpc.func.js +64 -28
  249. package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
  250. package/cosmos/gov/v1/query.rpc.react.js +63 -9
  251. package/cosmos/gov/v1/tx.d.ts +377 -67
  252. package/cosmos/gov/v1/tx.js +111 -3
  253. package/cosmos/gov/v1/tx.registry.d.ts +93 -0
  254. package/cosmos/gov/v1/tx.registry.js +135 -1
  255. package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
  256. package/cosmos/gov/v1/tx.rpc.func.js +63 -51
  257. package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
  258. package/cosmos/gov/v1/tx.rpc.react.js +55 -7
  259. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  260. package/cosmos/gov/v1beta1/genesis.js +10 -0
  261. package/cosmos/gov/v1beta1/gov.d.ts +294 -63
  262. package/cosmos/gov/v1beta1/gov.js +74 -3
  263. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  264. package/cosmos/gov/v1beta1/query.js +131 -0
  265. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
  266. package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
  267. package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
  268. package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
  269. package/cosmos/gov/v1beta1/tx.d.ts +214 -39
  270. package/cosmos/gov/v1beta1/tx.js +62 -3
  271. package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
  272. package/cosmos/gov/v1beta1/tx.registry.js +81 -1
  273. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
  274. package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
  275. package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
  276. package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
  277. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  278. package/cosmos/ics23/v1/proofs.js +169 -0
  279. package/cosmos/mint/module/v1/module.d.ts +24 -4
  280. package/cosmos/mint/module/v1/module.js +6 -0
  281. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  282. package/cosmos/mint/v1beta1/genesis.js +10 -0
  283. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  284. package/cosmos/mint/v1beta1/mint.js +12 -0
  285. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  286. package/cosmos/mint/v1beta1/query.js +43 -0
  287. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
  288. package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
  289. package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
  290. package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
  291. package/cosmos/mint/v1beta1/tx.d.ts +35 -2
  292. package/cosmos/mint/v1beta1/tx.js +21 -0
  293. package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
  294. package/cosmos/mint/v1beta1/tx.registry.js +27 -1
  295. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
  296. package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
  297. package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
  298. package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
  299. package/cosmos/params/module/v1/module.d.ts +18 -2
  300. package/cosmos/params/module/v1/module.js +6 -0
  301. package/cosmos/params/v1beta1/params.d.ts +31 -2
  302. package/cosmos/params/v1beta1/params.js +16 -0
  303. package/cosmos/params/v1beta1/query.d.ts +99 -10
  304. package/cosmos/params/v1beta1/query.js +46 -0
  305. package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
  306. package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
  307. package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
  308. package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
  309. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  310. package/cosmos/slashing/module/v1/module.js +6 -0
  311. package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
  312. package/cosmos/slashing/v1beta1/genesis.js +35 -0
  313. package/cosmos/slashing/v1beta1/query.d.ts +106 -10
  314. package/cosmos/slashing/v1beta1/query.js +53 -0
  315. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
  316. package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
  317. package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
  318. package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
  319. package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
  320. package/cosmos/slashing/v1beta1/slashing.js +13 -0
  321. package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
  322. package/cosmos/slashing/v1beta1/tx.js +33 -0
  323. package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
  324. package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
  325. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
  326. package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
  327. package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
  328. package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
  329. package/cosmos/staking/module/v1/module.d.ts +36 -8
  330. package/cosmos/staking/module/v1/module.js +6 -0
  331. package/cosmos/staking/v1beta1/authz.d.ts +44 -6
  332. package/cosmos/staking/v1beta1/authz.js +17 -0
  333. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  334. package/cosmos/staking/v1beta1/genesis.js +16 -0
  335. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  336. package/cosmos/staking/v1beta1/query.js +250 -0
  337. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
  338. package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
  339. package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
  340. package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
  341. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  342. package/cosmos/staking/v1beta1/staking.js +186 -0
  343. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  344. package/cosmos/staking/v1beta1/tx.js +120 -0
  345. package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
  346. package/cosmos/staking/v1beta1/tx.registry.js +135 -1
  347. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
  348. package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
  349. package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
  350. package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
  351. package/cosmos/tx/config/v1/config.d.ts +18 -2
  352. package/cosmos/tx/config/v1/config.js +6 -0
  353. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  354. package/cosmos/tx/signing/v1beta1/signing.js +46 -0
  355. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  356. package/cosmos/tx/v1beta1/service.js +176 -0
  357. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
  358. package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
  359. package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
  360. package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
  361. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  362. package/cosmos/tx/v1beta1/tx.js +127 -0
  363. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  364. package/cosmos/upgrade/module/v1/module.js +6 -0
  365. package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
  366. package/cosmos/upgrade/v1beta1/query.js +85 -0
  367. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
  368. package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
  369. package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
  370. package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
  371. package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
  372. package/cosmos/upgrade/v1beta1/tx.js +36 -0
  373. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
  374. package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
  375. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
  376. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
  377. package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
  378. package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
  379. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  380. package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  381. package/cosmos_proto/bundle.d.ts +1 -0
  382. package/cosmos_proto/bundle.js +8 -0
  383. package/cosmos_proto/cosmos.d.ts +31 -0
  384. package/cosmos_proto/cosmos.js +19 -0
  385. package/cosmwasm/bundle.d.ts +12 -0
  386. package/cosmwasm/bundle.js +174 -0
  387. package/cosmwasm/wasm/v1/authz.d.ts +212 -22
  388. package/cosmwasm/wasm/v1/authz.js +113 -0
  389. package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
  390. package/cosmwasm/wasm/v1/genesis.js +34 -0
  391. package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
  392. package/cosmwasm/wasm/v1/ibc.js +24 -0
  393. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  394. package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  395. package/cosmwasm/wasm/v1/query.d.ts +761 -76
  396. package/cosmwasm/wasm/v1/query.js +581 -1
  397. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
  398. package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
  399. package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
  400. package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
  401. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  402. package/cosmwasm/wasm/v1/tx.js +267 -0
  403. package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
  404. package/cosmwasm/wasm/v1/tx.registry.js +315 -1
  405. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
  406. package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
  407. package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
  408. package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
  409. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  410. package/cosmwasm/wasm/v1/types.js +58 -0
  411. package/esm/binary.js +1 -1
  412. package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
  413. package/esm/cosmos/app/v1alpha1/config.js +31 -0
  414. package/esm/cosmos/app/v1alpha1/module.js +23 -0
  415. package/esm/cosmos/app/v1alpha1/query.js +16 -0
  416. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
  417. package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
  418. package/esm/cosmos/auth/module/v1/module.js +16 -0
  419. package/esm/cosmos/auth/v1beta1/auth.js +34 -0
  420. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  421. package/esm/cosmos/auth/v1beta1/query.js +169 -0
  422. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
  423. package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
  424. package/esm/cosmos/auth/v1beta1/tx.js +21 -0
  425. package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
  426. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
  427. package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
  428. package/esm/cosmos/authz/module/v1/module.js +6 -0
  429. package/esm/cosmos/authz/v1beta1/authz.js +36 -0
  430. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  431. package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
  432. package/esm/cosmos/authz/v1beta1/query.js +55 -0
  433. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
  434. package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
  435. package/esm/cosmos/authz/v1beta1/tx.js +43 -0
  436. package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
  437. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
  438. package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
  439. package/esm/cosmos/autocli/v1/options.js +54 -0
  440. package/esm/cosmos/autocli/v1/query.js +21 -0
  441. package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
  442. package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
  443. package/esm/cosmos/bank/module/v1/module.js +6 -0
  444. package/esm/cosmos/bank/v1beta1/authz.js +12 -0
  445. package/esm/cosmos/bank/v1beta1/bank.js +63 -0
  446. package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
  447. package/esm/cosmos/bank/v1beta1/query.js +263 -0
  448. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
  449. package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
  450. package/esm/cosmos/bank/v1beta1/tx.js +74 -0
  451. package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
  452. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
  453. package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
  454. package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
  455. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  456. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
  457. package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
  458. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  459. package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  460. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
  461. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
  462. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  463. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
  464. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
  465. package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
  466. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
  467. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
  468. package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
  469. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  470. package/esm/cosmos/bundle.js +188 -0
  471. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  472. package/esm/cosmos/consensus/v1/query.js +16 -0
  473. package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
  474. package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
  475. package/esm/cosmos/consensus/v1/tx.js +17 -0
  476. package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
  477. package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
  478. package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
  479. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  480. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  481. package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
  482. package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
  483. package/esm/cosmos/distribution/v1beta1/query.js +164 -0
  484. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
  485. package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
  486. package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
  487. package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
  488. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
  489. package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
  490. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  491. package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
  492. package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
  493. package/esm/cosmos/evidence/v1beta1/query.js +33 -0
  494. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
  495. package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
  496. package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
  497. package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
  498. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
  499. package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
  500. package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
  501. package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
  502. package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
  503. package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
  504. package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
  505. package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
  506. package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
  507. package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
  508. package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
  509. package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
  510. package/esm/cosmos/evm/vm/v1/events.js +432 -0
  511. package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
  512. package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
  513. package/esm/cosmos/evm/vm/v1/query.js +2677 -0
  514. package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
  515. package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
  516. package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
  517. package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
  518. package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
  519. package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
  520. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  521. package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  522. package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
  523. package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
  524. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
  525. package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
  526. package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
  527. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
  528. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
  529. package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
  530. package/esm/cosmos/gov/module/v1/module.js +6 -0
  531. package/esm/cosmos/gov/v1/genesis.js +10 -0
  532. package/esm/cosmos/gov/v1/gov.js +77 -0
  533. package/esm/cosmos/gov/v1/query.js +143 -0
  534. package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
  535. package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
  536. package/esm/cosmos/gov/v1/tx.js +111 -3
  537. package/esm/cosmos/gov/v1/tx.registry.js +134 -0
  538. package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
  539. package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
  540. package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
  541. package/esm/cosmos/gov/v1beta1/gov.js +74 -3
  542. package/esm/cosmos/gov/v1beta1/query.js +131 -0
  543. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
  544. package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
  545. package/esm/cosmos/gov/v1beta1/tx.js +62 -3
  546. package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
  547. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
  548. package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
  549. package/esm/cosmos/ics23/v1/proofs.js +169 -0
  550. package/esm/cosmos/mint/module/v1/module.js +6 -0
  551. package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
  552. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  553. package/esm/cosmos/mint/v1beta1/query.js +43 -0
  554. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
  555. package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
  556. package/esm/cosmos/mint/v1beta1/tx.js +21 -0
  557. package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
  558. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
  559. package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
  560. package/esm/cosmos/params/module/v1/module.js +6 -0
  561. package/esm/cosmos/params/v1beta1/params.js +16 -0
  562. package/esm/cosmos/params/v1beta1/query.js +46 -0
  563. package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
  564. package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
  565. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  566. package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
  567. package/esm/cosmos/slashing/v1beta1/query.js +53 -0
  568. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
  569. package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
  570. package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
  571. package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
  572. package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
  573. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
  574. package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
  575. package/esm/cosmos/staking/module/v1/module.js +6 -0
  576. package/esm/cosmos/staking/v1beta1/authz.js +17 -0
  577. package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
  578. package/esm/cosmos/staking/v1beta1/query.js +250 -0
  579. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
  580. package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
  581. package/esm/cosmos/staking/v1beta1/staking.js +186 -0
  582. package/esm/cosmos/staking/v1beta1/tx.js +120 -0
  583. package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
  584. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
  585. package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
  586. package/esm/cosmos/tx/config/v1/config.js +6 -0
  587. package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
  588. package/esm/cosmos/tx/v1beta1/service.js +176 -0
  589. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
  590. package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
  591. package/esm/cosmos/tx/v1beta1/tx.js +127 -0
  592. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  593. package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
  594. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
  595. package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
  596. package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
  597. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
  598. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
  599. package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
  600. package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  601. package/esm/cosmos_proto/bundle.js +1 -0
  602. package/esm/cosmos_proto/cosmos.js +19 -0
  603. package/esm/cosmwasm/bundle.js +12 -0
  604. package/esm/cosmwasm/wasm/v1/authz.js +113 -0
  605. package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
  606. package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
  607. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  608. package/esm/cosmwasm/wasm/v1/query.js +580 -0
  609. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
  610. package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
  611. package/esm/cosmwasm/wasm/v1/tx.js +267 -0
  612. package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
  613. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
  614. package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
  615. package/esm/cosmwasm/wasm/v1/types.js +58 -0
  616. package/esm/ethermint/bundle.js +25 -0
  617. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  618. package/esm/ethermint/evm/v1/events.js +24 -0
  619. package/esm/ethermint/evm/v1/evm.js +69 -0
  620. package/esm/ethermint/evm/v1/genesis.js +21 -0
  621. package/esm/ethermint/evm/v1/query.js +167 -0
  622. package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
  623. package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
  624. package/esm/ethermint/evm/v1/tx.js +66 -0
  625. package/esm/ethermint/evm/v1/tx.registry.js +44 -0
  626. package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
  627. package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
  628. package/esm/ethermint/feemarket/v1/events.js +12 -0
  629. package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
  630. package/esm/ethermint/feemarket/v1/genesis.js +10 -0
  631. package/esm/ethermint/feemarket/v1/query.js +42 -0
  632. package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
  633. package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
  634. package/esm/ethermint/feemarket/v1/tx.js +17 -0
  635. package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
  636. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
  637. package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
  638. package/esm/ethermint/types/v1/account.js +10 -0
  639. package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
  640. package/esm/ethermint/types/v1/indexer.js +6 -0
  641. package/esm/ethermint/types/v1/web3.js +7 -0
  642. package/esm/extern.js +14 -4
  643. package/esm/google/api/http.js +290 -0
  644. package/esm/google/bundle.js +5 -0
  645. package/esm/google/protobuf/any.js +90 -0
  646. package/esm/google/protobuf/descriptor.js +553 -11
  647. package/esm/google/protobuf/duration.js +63 -0
  648. package/esm/google/protobuf/timestamp.js +94 -0
  649. package/esm/helper-func-types.js +14 -22
  650. package/esm/helpers.js +1 -1
  651. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  652. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  653. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
  654. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
  655. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  656. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
  657. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
  658. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
  659. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  660. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  661. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  662. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
  663. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
  664. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  665. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
  666. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
  667. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
  668. package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
  669. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  670. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  671. package/esm/ibc/applications/transfer/v1/authz.js +19 -0
  672. package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
  673. package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
  674. package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  675. package/esm/ibc/applications/transfer/v1/query.js +270 -175
  676. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
  677. package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
  678. package/esm/ibc/applications/transfer/v1/token.js +300 -0
  679. package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
  680. package/esm/ibc/applications/transfer/v1/tx.js +49 -3
  681. package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
  682. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
  683. package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
  684. package/esm/ibc/bundle.js +94 -0
  685. package/esm/ibc/core/channel/v1/channel.js +84 -124
  686. package/esm/ibc/core/channel/v1/genesis.js +21 -17
  687. package/esm/ibc/core/channel/v1/query.js +252 -530
  688. package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
  689. package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
  690. package/esm/ibc/core/channel/v1/tx.js +164 -1970
  691. package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
  692. package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
  693. package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
  694. package/esm/ibc/core/channel/v2/genesis.js +360 -0
  695. package/esm/ibc/core/channel/v2/packet.js +508 -0
  696. package/esm/ibc/core/channel/v2/query.js +1727 -0
  697. package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
  698. package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
  699. package/esm/ibc/core/channel/v2/tx.js +901 -0
  700. package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
  701. package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
  702. package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
  703. package/esm/ibc/core/client/v1/client.js +50 -235
  704. package/esm/ibc/core/client/v1/genesis.js +27 -0
  705. package/esm/ibc/core/client/v1/query.js +355 -16
  706. package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
  707. package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
  708. package/esm/ibc/core/client/v1/tx.js +279 -7
  709. package/esm/ibc/core/client/v1/tx.registry.js +154 -2
  710. package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
  711. package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
  712. package/esm/ibc/core/client/v2/config.js +90 -0
  713. package/esm/ibc/core/client/v2/counterparty.js +100 -0
  714. package/esm/ibc/core/client/v2/genesis.js +194 -0
  715. package/esm/ibc/core/client/v2/query.js +348 -0
  716. package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
  717. package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
  718. package/esm/ibc/core/client/v2/tx.js +378 -0
  719. package/esm/ibc/core/client/v2/tx.registry.js +46 -0
  720. package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
  721. package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
  722. package/esm/ibc/core/commitment/v1/commitment.js +29 -80
  723. package/esm/ibc/core/commitment/v2/commitment.js +118 -0
  724. package/esm/ibc/core/connection/v1/connection.js +57 -0
  725. package/esm/ibc/core/connection/v1/genesis.js +10 -0
  726. package/esm/ibc/core/connection/v1/query.js +105 -0
  727. package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
  728. package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
  729. package/esm/ibc/core/connection/v1/tx.js +82 -0
  730. package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
  731. package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
  732. package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
  733. package/esm/ibc/core/types/v1/genesis.js +41 -3
  734. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  735. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  736. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  737. package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
  738. package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
  739. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
  740. package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
  741. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  742. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
  743. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
  744. package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
  745. package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
  746. package/esm/index.js +21 -0
  747. package/esm/react-query.js +4 -6
  748. package/esm/registry.js +9 -1
  749. package/esm/tendermint/abci/types.js +322 -0
  750. package/esm/tendermint/bundle.js +10 -0
  751. package/esm/tendermint/crypto/keys.js +6 -0
  752. package/esm/tendermint/crypto/proof.js +36 -0
  753. package/esm/tendermint/p2p/types.js +24 -0
  754. package/esm/tendermint/types/block.js +9 -0
  755. package/esm/tendermint/types/evidence.js +35 -0
  756. package/esm/tendermint/types/params.js +50 -0
  757. package/esm/tendermint/types/types.js +121 -0
  758. package/esm/tendermint/types/validator.js +25 -0
  759. package/esm/tendermint/version/types.js +16 -0
  760. package/esm/types.js +1 -1
  761. package/esm/utf8.js +1 -1
  762. package/esm/varint.js +1 -1
  763. package/esm/xpla/bundle.js +28 -0
  764. package/esm/xpla/burn/v1beta1/burn.js +111 -0
  765. package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  766. package/esm/xpla/burn/v1beta1/query.js +327 -0
  767. package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
  768. package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
  769. package/esm/xpla/burn/v1beta1/tx.js +169 -0
  770. package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
  771. package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
  772. package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
  773. package/esm/xpla/reward/v1beta1/genesis.js +10 -0
  774. package/esm/xpla/reward/v1beta1/query.js +33 -0
  775. package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
  776. package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
  777. package/esm/xpla/reward/v1beta1/reward.js +6 -0
  778. package/esm/xpla/reward/v1beta1/tx.js +35 -0
  779. package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
  780. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
  781. package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
  782. package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
  783. package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
  784. package/esm/xpla/volunteer/v1beta1/query.js +12 -0
  785. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
  786. package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
  787. package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
  788. package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
  789. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
  790. package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
  791. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  792. package/ethermint/bundle.d.ts +25 -0
  793. package/ethermint/bundle.js +142 -0
  794. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
  795. package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  796. package/ethermint/evm/v1/events.d.ts +144 -32
  797. package/ethermint/evm/v1/events.js +24 -0
  798. package/ethermint/evm/v1/evm.d.ts +434 -110
  799. package/ethermint/evm/v1/evm.js +69 -0
  800. package/ethermint/evm/v1/genesis.d.ts +62 -12
  801. package/ethermint/evm/v1/genesis.js +21 -0
  802. package/ethermint/evm/v1/query.d.ts +673 -126
  803. package/ethermint/evm/v1/query.js +167 -0
  804. package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
  805. package/ethermint/evm/v1/query.rpc.func.js +88 -37
  806. package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
  807. package/ethermint/evm/v1/query.rpc.react.js +87 -12
  808. package/ethermint/evm/v1/tx.d.ts +363 -88
  809. package/ethermint/evm/v1/tx.js +66 -0
  810. package/ethermint/evm/v1/tx.registry.d.ts +33 -0
  811. package/ethermint/evm/v1/tx.registry.js +45 -1
  812. package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
  813. package/ethermint/evm/v1/tx.rpc.func.js +18 -16
  814. package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
  815. package/ethermint/evm/v1/tx.rpc.react.js +15 -2
  816. package/ethermint/feemarket/v1/events.d.ts +54 -10
  817. package/ethermint/feemarket/v1/events.js +12 -0
  818. package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
  819. package/ethermint/feemarket/v1/feemarket.js +6 -0
  820. package/ethermint/feemarket/v1/genesis.d.ts +24 -4
  821. package/ethermint/feemarket/v1/genesis.js +10 -0
  822. package/ethermint/feemarket/v1/query.d.ts +116 -14
  823. package/ethermint/feemarket/v1/query.js +42 -0
  824. package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
  825. package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
  826. package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
  827. package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
  828. package/ethermint/feemarket/v1/tx.d.ts +37 -4
  829. package/ethermint/feemarket/v1/tx.js +17 -0
  830. package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
  831. package/ethermint/feemarket/v1/tx.registry.js +27 -1
  832. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
  833. package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
  834. package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
  835. package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
  836. package/ethermint/types/v1/account.d.ts +25 -4
  837. package/ethermint/types/v1/account.js +10 -0
  838. package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
  839. package/ethermint/types/v1/dynamic_fee.js +6 -0
  840. package/ethermint/types/v1/indexer.d.ts +42 -10
  841. package/ethermint/types/v1/indexer.js +6 -0
  842. package/ethermint/types/v1/web3.d.ts +13 -0
  843. package/ethermint/types/v1/web3.js +7 -0
  844. package/extern.d.ts +3 -2
  845. package/extern.js +14 -4
  846. package/google/api/http.d.ts +343 -14
  847. package/google/api/http.js +290 -0
  848. package/google/bundle.d.ts +5 -0
  849. package/google/bundle.js +21 -0
  850. package/google/protobuf/any.d.ts +102 -2
  851. package/google/protobuf/any.js +90 -0
  852. package/google/protobuf/descriptor.d.ts +833 -86
  853. package/google/protobuf/descriptor.js +561 -13
  854. package/google/protobuf/duration.d.ts +69 -0
  855. package/google/protobuf/duration.js +63 -0
  856. package/google/protobuf/timestamp.d.ts +100 -0
  857. package/google/protobuf/timestamp.js +94 -0
  858. package/helper-func-types.d.ts +7 -87
  859. package/helper-func-types.js +15 -24
  860. package/helpers.d.ts +1 -1
  861. package/helpers.js +1 -1
  862. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  863. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  864. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  865. package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  866. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
  867. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
  868. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
  869. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
  870. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  871. package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  872. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
  873. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
  874. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
  875. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
  876. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
  877. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
  878. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  879. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  880. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  881. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  882. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  883. package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  884. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
  885. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
  886. package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
  887. package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
  888. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  889. package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  890. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
  891. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
  892. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
  893. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
  894. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
  895. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
  896. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  897. package/ibc/applications/interchain_accounts/v1/account.js +9 -0
  898. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  899. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  900. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  901. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  902. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  903. package/ibc/applications/transfer/v1/authz.js +19 -0
  904. package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
  905. package/ibc/applications/transfer/v1/denomtrace.js +101 -0
  906. package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
  907. package/ibc/applications/transfer/v1/genesis.js +23 -12
  908. package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
  909. package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  910. package/ibc/applications/transfer/v1/query.d.ts +389 -170
  911. package/ibc/applications/transfer/v1/query.js +270 -175
  912. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
  913. package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
  914. package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
  915. package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
  916. package/ibc/applications/transfer/v1/token.d.ts +179 -0
  917. package/ibc/applications/transfer/v1/token.js +303 -0
  918. package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
  919. package/ibc/applications/transfer/v1/transfer.js +10 -90
  920. package/ibc/applications/transfer/v1/tx.d.ts +127 -24
  921. package/ibc/applications/transfer/v1/tx.js +49 -3
  922. package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
  923. package/ibc/applications/transfer/v1/tx.registry.js +45 -1
  924. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
  925. package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
  926. package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
  927. package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
  928. package/ibc/bundle.d.ts +94 -0
  929. package/ibc/bundle.js +540 -0
  930. package/ibc/core/channel/v1/channel.d.ts +293 -120
  931. package/ibc/core/channel/v1/channel.js +85 -125
  932. package/ibc/core/channel/v1/genesis.d.ts +38 -7
  933. package/ibc/core/channel/v1/genesis.js +20 -16
  934. package/ibc/core/channel/v1/query.d.ts +840 -378
  935. package/ibc/core/channel/v1/query.js +252 -530
  936. package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
  937. package/ibc/core/channel/v1/query.rpc.func.js +107 -70
  938. package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
  939. package/ibc/core/channel/v1/query.rpc.react.js +107 -27
  940. package/ibc/core/channel/v1/tx.d.ts +335 -747
  941. package/ibc/core/channel/v1/tx.js +164 -1970
  942. package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
  943. package/ibc/core/channel/v1/tx.registry.js +190 -2
  944. package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
  945. package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
  946. package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
  947. package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
  948. package/ibc/core/channel/v2/genesis.d.ts +202 -0
  949. package/ibc/core/channel/v2/genesis.js +363 -0
  950. package/ibc/core/channel/v2/packet.d.ts +322 -0
  951. package/ibc/core/channel/v2/packet.js +513 -0
  952. package/ibc/core/channel/v2/query.d.ts +1067 -0
  953. package/ibc/core/channel/v2/query.js +1730 -0
  954. package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
  955. package/ibc/core/channel/v2/query.rpc.func.js +109 -0
  956. package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
  957. package/ibc/core/channel/v2/query.rpc.react.js +85 -0
  958. package/ibc/core/channel/v2/tx.d.ts +437 -0
  959. package/ibc/core/channel/v2/tx.js +906 -0
  960. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  961. package/ibc/core/channel/v2/tx.registry.js +85 -0
  962. package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
  963. package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
  964. package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
  965. package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
  966. package/ibc/core/client/v1/client.d.ts +133 -153
  967. package/ibc/core/client/v1/client.js +51 -236
  968. package/ibc/core/client/v1/genesis.d.ts +86 -20
  969. package/ibc/core/client/v1/genesis.js +27 -0
  970. package/ibc/core/client/v1/query.d.ts +591 -75
  971. package/ibc/core/client/v1/query.js +356 -17
  972. package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
  973. package/ibc/core/client/v1/query.rpc.func.js +86 -31
  974. package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
  975. package/ibc/core/client/v1/query.rpc.react.js +83 -11
  976. package/ibc/core/client/v1/tx.d.ts +454 -60
  977. package/ibc/core/client/v1/tx.js +280 -8
  978. package/ibc/core/client/v1/tx.registry.d.ts +105 -0
  979. package/ibc/core/client/v1/tx.registry.js +154 -2
  980. package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
  981. package/ibc/core/client/v1/tx.rpc.func.js +73 -58
  982. package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
  983. package/ibc/core/client/v1/tx.rpc.react.js +59 -8
  984. package/ibc/core/client/v2/config.d.ts +66 -0
  985. package/ibc/core/client/v2/config.js +93 -0
  986. package/ibc/core/client/v2/counterparty.d.ts +65 -0
  987. package/ibc/core/client/v2/counterparty.js +103 -0
  988. package/ibc/core/client/v2/genesis.d.ts +121 -0
  989. package/ibc/core/client/v2/genesis.js +197 -0
  990. package/ibc/core/client/v2/query.d.ts +218 -0
  991. package/ibc/core/client/v2/query.js +351 -0
  992. package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
  993. package/ibc/core/client/v2/query.rpc.func.js +31 -0
  994. package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
  995. package/ibc/core/client/v2/query.rpc.react.js +25 -0
  996. package/ibc/core/client/v2/tx.d.ts +251 -0
  997. package/ibc/core/client/v2/tx.js +381 -0
  998. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  999. package/ibc/core/client/v2/tx.registry.js +49 -0
  1000. package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
  1001. package/ibc/core/client/v2/tx.rpc.func.js +23 -0
  1002. package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
  1003. package/ibc/core/client/v2/tx.rpc.react.js +23 -0
  1004. package/ibc/core/commitment/v1/commitment.d.ts +43 -41
  1005. package/ibc/core/commitment/v1/commitment.js +30 -81
  1006. package/ibc/core/commitment/v2/commitment.d.ts +141 -0
  1007. package/ibc/core/commitment/v2/commitment.js +121 -0
  1008. package/ibc/core/connection/v1/connection.d.ts +199 -38
  1009. package/ibc/core/connection/v1/connection.js +57 -0
  1010. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  1011. package/ibc/core/connection/v1/genesis.js +10 -0
  1012. package/ibc/core/connection/v1/query.d.ts +293 -46
  1013. package/ibc/core/connection/v1/query.js +105 -0
  1014. package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
  1015. package/ibc/core/connection/v1/query.rpc.func.js +46 -19
  1016. package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
  1017. package/ibc/core/connection/v1/query.rpc.react.js +45 -6
  1018. package/ibc/core/connection/v1/tx.d.ts +254 -32
  1019. package/ibc/core/connection/v1/tx.js +82 -0
  1020. package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
  1021. package/ibc/core/connection/v1/tx.registry.js +99 -1
  1022. package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
  1023. package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
  1024. package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
  1025. package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
  1026. package/ibc/core/types/v1/genesis.d.ts +56 -8
  1027. package/ibc/core/types/v1/genesis.js +41 -3
  1028. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
  1029. package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  1030. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
  1031. package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  1032. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
  1033. package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  1034. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  1035. package/ibc/lightclients/wasm/v1/genesis.js +16 -0
  1036. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  1037. package/ibc/lightclients/wasm/v1/query.js +31 -0
  1038. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
  1039. package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
  1040. package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
  1041. package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
  1042. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  1043. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  1044. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
  1045. package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
  1046. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
  1047. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
  1048. package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
  1049. package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
  1050. package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
  1051. package/ibc/lightclients/wasm/v1/wasm.js +32 -0
  1052. package/index.d.ts +21 -0
  1053. package/index.js +37 -0
  1054. package/package.json +8 -9
  1055. package/react-query.d.ts +8 -6
  1056. package/react-query.js +5 -7
  1057. package/registry.d.ts +3 -1
  1058. package/registry.js +9 -1
  1059. package/tendermint/abci/types.d.ts +971 -98
  1060. package/tendermint/abci/types.js +322 -0
  1061. package/tendermint/bundle.d.ts +10 -0
  1062. package/tendermint/bundle.js +115 -0
  1063. package/tendermint/crypto/keys.d.ts +18 -2
  1064. package/tendermint/crypto/keys.js +6 -0
  1065. package/tendermint/crypto/proof.d.ts +89 -6
  1066. package/tendermint/crypto/proof.js +36 -0
  1067. package/tendermint/p2p/types.d.ts +60 -0
  1068. package/tendermint/p2p/types.js +24 -0
  1069. package/tendermint/types/block.d.ts +15 -0
  1070. package/tendermint/types/block.js +9 -0
  1071. package/tendermint/types/evidence.d.ts +66 -4
  1072. package/tendermint/types/evidence.js +35 -0
  1073. package/tendermint/types/params.d.ts +112 -8
  1074. package/tendermint/types/params.js +50 -0
  1075. package/tendermint/types/types.d.ts +327 -42
  1076. package/tendermint/types/types.js +121 -0
  1077. package/tendermint/types/validator.d.ts +45 -0
  1078. package/tendermint/types/validator.js +25 -0
  1079. package/tendermint/version/types.d.ts +28 -0
  1080. package/tendermint/version/types.js +16 -0
  1081. package/types.d.ts +4 -49
  1082. package/types.js +1 -1
  1083. package/utf8.d.ts +1 -1
  1084. package/utf8.js +1 -1
  1085. package/varint.d.ts +1 -1
  1086. package/varint.js +1 -1
  1087. package/xpla/bundle.d.ts +28 -0
  1088. package/xpla/bundle.js +71 -0
  1089. package/xpla/burn/v1beta1/burn.d.ts +54 -0
  1090. package/xpla/burn/v1beta1/burn.js +114 -0
  1091. package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
  1092. package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  1093. package/xpla/burn/v1beta1/query.d.ts +204 -0
  1094. package/xpla/burn/v1beta1/query.js +330 -0
  1095. package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
  1096. package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
  1097. package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
  1098. package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
  1099. package/xpla/burn/v1beta1/tx.d.ts +105 -0
  1100. package/xpla/burn/v1beta1/tx.js +172 -0
  1101. package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
  1102. package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
  1103. package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
  1104. package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
  1105. package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
  1106. package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
  1107. package/xpla/reward/v1beta1/genesis.d.ts +24 -4
  1108. package/xpla/reward/v1beta1/genesis.js +10 -0
  1109. package/xpla/reward/v1beta1/query.d.ts +74 -8
  1110. package/xpla/reward/v1beta1/query.js +33 -0
  1111. package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
  1112. package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
  1113. package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
  1114. package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
  1115. package/xpla/reward/v1beta1/reward.d.ts +18 -2
  1116. package/xpla/reward/v1beta1/reward.js +6 -0
  1117. package/xpla/reward/v1beta1/tx.d.ts +64 -4
  1118. package/xpla/reward/v1beta1/tx.js +35 -0
  1119. package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
  1120. package/xpla/reward/v1beta1/tx.registry.js +45 -1
  1121. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
  1122. package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
  1123. package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
  1124. package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
  1125. package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
  1126. package/xpla/volunteer/v1beta1/genesis.js +10 -0
  1127. package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
  1128. package/xpla/volunteer/v1beta1/proposal.js +34 -0
  1129. package/xpla/volunteer/v1beta1/query.d.ts +36 -4
  1130. package/xpla/volunteer/v1beta1/query.js +12 -0
  1131. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
  1132. package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
  1133. package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
  1134. package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
  1135. package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
  1136. package/xpla/volunteer/v1beta1/tx.js +31 -0
  1137. package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
  1138. package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
  1139. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
  1140. package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
  1141. package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
  1142. package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
  1143. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
  1144. package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  1145. package/cosmos/app/runtime/v2/module.d.ts +0 -231
  1146. package/cosmos/app/runtime/v2/module.js +0 -421
  1147. package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
  1148. package/cosmos/auth/v1beta1/accounts.js +0 -161
  1149. package/cosmos/base/grpc/v2/service.d.ts +0 -168
  1150. package/cosmos/base/grpc/v2/service.js +0 -394
  1151. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
  1152. package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
  1153. package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
  1154. package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
  1155. package/cosmos/circuit/module/v1/module.d.ts +0 -36
  1156. package/cosmos/circuit/module/v1/module.js +0 -83
  1157. package/cosmos/circuit/v1/query.d.ts +0 -200
  1158. package/cosmos/circuit/v1/query.js +0 -480
  1159. package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
  1160. package/cosmos/circuit/v1/query.rpc.func.js +0 -42
  1161. package/cosmos/circuit/v1/tx.d.ts +0 -251
  1162. package/cosmos/circuit/v1/tx.js +0 -528
  1163. package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
  1164. package/cosmos/circuit/v1/tx.registry.js +0 -67
  1165. package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
  1166. package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
  1167. package/cosmos/circuit/v1/types.d.ts +0 -151
  1168. package/cosmos/circuit/v1/types.js +0 -350
  1169. package/cosmos/crisis/module/v1/module.d.ts +0 -40
  1170. package/cosmos/crisis/module/v1/module.js +0 -95
  1171. package/cosmos/crisis/v1beta1/genesis.js +0 -84
  1172. package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
  1173. package/cosmos/crisis/v1beta1/tx.js +0 -328
  1174. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
  1175. package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
  1176. package/cosmos/crypto/ed25519/keys.d.ts +0 -84
  1177. package/cosmos/crypto/ed25519/keys.js +0 -162
  1178. package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
  1179. package/cosmos/crypto/hd/v1/hd.js +0 -131
  1180. package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
  1181. package/cosmos/crypto/keyring/v1/record.js +0 -431
  1182. package/cosmos/crypto/multisig/keys.d.ts +0 -45
  1183. package/cosmos/crypto/multisig/keys.js +0 -99
  1184. package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
  1185. package/cosmos/crypto/secp256k1/keys.js +0 -162
  1186. package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
  1187. package/cosmos/crypto/secp256r1/keys.js +0 -162
  1188. package/cosmos/genutil/module/v1/module.d.ts +0 -32
  1189. package/cosmos/genutil/module/v1/module.js +0 -70
  1190. package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
  1191. package/cosmos/group/module/v1/module.d.ts +0 -53
  1192. package/cosmos/group/module/v1/module.js +0 -96
  1193. package/cosmos/group/v1/events.d.ts +0 -363
  1194. package/cosmos/group/v1/events.js +0 -847
  1195. package/cosmos/group/v1/genesis.d.ts +0 -83
  1196. package/cosmos/group/v1/genesis.js +0 -183
  1197. package/cosmos/group/v1/query.d.ts +0 -1044
  1198. package/cosmos/group/v1/query.js +0 -2434
  1199. package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
  1200. package/cosmos/group/v1/query.rpc.func.js +0 -174
  1201. package/cosmos/group/v1/tx.d.ts +0 -1140
  1202. package/cosmos/group/v1/tx.js +0 -2567
  1203. package/cosmos/group/v1/tx.registry.d.ts +0 -179
  1204. package/cosmos/group/v1/tx.registry.js +0 -265
  1205. package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
  1206. package/cosmos/group/v1/tx.rpc.func.js +0 -147
  1207. package/cosmos/group/v1/types.d.ts +0 -799
  1208. package/cosmos/group/v1/types.js +0 -1542
  1209. package/cosmos/msg/textual/v1/textual.d.ts +0 -1
  1210. package/cosmos/msg/textual/v1/textual.js +0 -2
  1211. package/cosmos/nft/module/v1/module.d.ts +0 -32
  1212. package/cosmos/nft/module/v1/module.js +0 -70
  1213. package/cosmos/nft/v1beta1/event.d.ts +0 -132
  1214. package/cosmos/nft/v1beta1/event.js +0 -323
  1215. package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
  1216. package/cosmos/nft/v1beta1/genesis.js +0 -195
  1217. package/cosmos/nft/v1beta1/nft.d.ts +0 -111
  1218. package/cosmos/nft/v1beta1/nft.js +0 -282
  1219. package/cosmos/nft/v1beta1/query.d.ts +0 -508
  1220. package/cosmos/nft/v1beta1/query.js +0 -1189
  1221. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
  1222. package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
  1223. package/cosmos/nft/v1beta1/tx.d.ts +0 -78
  1224. package/cosmos/nft/v1beta1/tx.js +0 -184
  1225. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
  1226. package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
  1227. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
  1228. package/cosmos/orm/module/v1alpha1/module.js +0 -70
  1229. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
  1230. package/cosmos/orm/query/v1alpha1/query.js +0 -751
  1231. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
  1232. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
  1233. package/cosmos/orm/v1/orm.d.ts +0 -278
  1234. package/cosmos/orm/v1/orm.js +0 -380
  1235. package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
  1236. package/cosmos/orm/v1alpha1/schema.js +0 -258
  1237. package/cosmos/reflection/v1/reflection.d.ts +0 -67
  1238. package/cosmos/reflection/v1/reflection.js +0 -152
  1239. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
  1240. package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
  1241. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
  1242. package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
  1243. package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
  1244. package/cosmos/store/snapshots/v1/snapshot.js +0 -687
  1245. package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
  1246. package/cosmos/store/snapshots/v2/snapshot.js +0 -687
  1247. package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
  1248. package/cosmos/store/streaming/abci/grpc.js +0 -332
  1249. package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
  1250. package/cosmos/store/v1beta1/commit_info.js +0 -292
  1251. package/cosmos/store/v1beta1/listening.d.ts +0 -101
  1252. package/cosmos/store/v1beta1/listening.js +0 -223
  1253. package/cosmos/streaming/v1/grpc.d.ts +0 -302
  1254. package/cosmos/streaming/v1/grpc.js +0 -826
  1255. package/cosmos/validate/module/v1/module.d.ts +0 -32
  1256. package/cosmos/validate/module/v1/module.js +0 -70
  1257. package/cosmos/vesting/module/v1/module.d.ts +0 -32
  1258. package/cosmos/vesting/module/v1/module.js +0 -70
  1259. package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
  1260. package/cosmos/vesting/v1beta1/tx.js +0 -553
  1261. package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
  1262. package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
  1263. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
  1264. package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
  1265. package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
  1266. package/cosmos/vesting/v1beta1/vesting.js +0 -586
  1267. package/dist/package.json +0 -50
  1268. package/esm/cosmos/app/runtime/v2/module.js +0 -418
  1269. package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
  1270. package/esm/cosmos/base/grpc/v2/service.js +0 -391
  1271. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
  1272. package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
  1273. package/esm/cosmos/circuit/module/v1/module.js +0 -80
  1274. package/esm/cosmos/circuit/v1/query.js +0 -477
  1275. package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
  1276. package/esm/cosmos/circuit/v1/tx.js +0 -525
  1277. package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
  1278. package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
  1279. package/esm/cosmos/circuit/v1/types.js +0 -345
  1280. package/esm/cosmos/crisis/module/v1/module.js +0 -92
  1281. package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
  1282. package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
  1283. package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
  1284. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
  1285. package/esm/cosmos/crypto/ed25519/keys.js +0 -159
  1286. package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
  1287. package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
  1288. package/esm/cosmos/crypto/multisig/keys.js +0 -96
  1289. package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
  1290. package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
  1291. package/esm/cosmos/genutil/module/v1/module.js +0 -67
  1292. package/esm/cosmos/group/module/v1/module.js +0 -93
  1293. package/esm/cosmos/group/v1/events.js +0 -844
  1294. package/esm/cosmos/group/v1/genesis.js +0 -180
  1295. package/esm/cosmos/group/v1/query.js +0 -2431
  1296. package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
  1297. package/esm/cosmos/group/v1/tx.js +0 -2562
  1298. package/esm/cosmos/group/v1/tx.registry.js +0 -262
  1299. package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
  1300. package/esm/cosmos/group/v1/types.js +0 -1533
  1301. package/esm/cosmos/msg/textual/v1/textual.js +0 -1
  1302. package/esm/cosmos/nft/module/v1/module.js +0 -67
  1303. package/esm/cosmos/nft/v1beta1/event.js +0 -320
  1304. package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
  1305. package/esm/cosmos/nft/v1beta1/nft.js +0 -279
  1306. package/esm/cosmos/nft/v1beta1/query.js +0 -1186
  1307. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
  1308. package/esm/cosmos/nft/v1beta1/tx.js +0 -181
  1309. package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
  1310. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
  1311. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
  1312. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
  1313. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
  1314. package/esm/cosmos/orm/v1/orm.js +0 -377
  1315. package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
  1316. package/esm/cosmos/reflection/v1/reflection.js +0 -149
  1317. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
  1318. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
  1319. package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
  1320. package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
  1321. package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
  1322. package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
  1323. package/esm/cosmos/store/v1beta1/listening.js +0 -220
  1324. package/esm/cosmos/streaming/v1/grpc.js +0 -823
  1325. package/esm/cosmos/validate/module/v1/module.js +0 -67
  1326. package/esm/cosmos/vesting/module/v1/module.js +0 -67
  1327. package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
  1328. package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
  1329. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
  1330. package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
  1331. package/esm/ibc/applications/fee/v1/ack.js +0 -103
  1332. package/esm/ibc/applications/fee/v1/fee.js +0 -398
  1333. package/esm/ibc/applications/fee/v1/genesis.js +0 -531
  1334. package/esm/ibc/applications/fee/v1/metadata.js +0 -90
  1335. package/esm/ibc/applications/fee/v1/query.js +0 -1739
  1336. package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
  1337. package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
  1338. package/esm/ibc/applications/fee/v1/tx.js +0 -707
  1339. package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
  1340. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
  1341. package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
  1342. package/esm/ibc/core/channel/v1/upgrade.js +0 -300
  1343. package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
  1344. package/ibc/applications/fee/v1/ack.d.ts +0 -45
  1345. package/ibc/applications/fee/v1/ack.js +0 -106
  1346. package/ibc/applications/fee/v1/fee.d.ts +0 -164
  1347. package/ibc/applications/fee/v1/fee.js +0 -401
  1348. package/ibc/applications/fee/v1/genesis.d.ts +0 -225
  1349. package/ibc/applications/fee/v1/genesis.js +0 -534
  1350. package/ibc/applications/fee/v1/metadata.d.ts +0 -47
  1351. package/ibc/applications/fee/v1/metadata.js +0 -93
  1352. package/ibc/applications/fee/v1/query.d.ts +0 -757
  1353. package/ibc/applications/fee/v1/query.js +0 -1742
  1354. package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
  1355. package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
  1356. package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
  1357. package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
  1358. package/ibc/applications/fee/v1/tx.d.ts +0 -326
  1359. package/ibc/applications/fee/v1/tx.js +0 -710
  1360. package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
  1361. package/ibc/applications/fee/v1/tx.registry.js +0 -5
  1362. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
  1363. package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
  1364. package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
  1365. package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
  1366. package/ibc/core/channel/v1/upgrade.d.ts +0 -142
  1367. package/ibc/core/channel/v1/upgrade.js +0 -303
  1368. package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
  1369. package/ibc/lightclients/localhost/v2/localhost.js +0 -84
@@ -81,6 +81,11 @@ export declare enum MisbehaviorType {
81
81
  export declare const MisbehaviorTypeAmino: typeof MisbehaviorType;
82
82
  export declare function misbehaviorTypeFromJSON(object: any): MisbehaviorType;
83
83
  export declare function misbehaviorTypeToJSON(object: MisbehaviorType): string;
84
+ /**
85
+ * @name Request
86
+ * @package tendermint.abci
87
+ * @see proto type: tendermint.abci.Request
88
+ */
84
89
  export interface Request {
85
90
  echo?: RequestEcho;
86
91
  flush?: RequestFlush;
@@ -103,6 +108,11 @@ export interface RequestProtoMsg {
103
108
  typeUrl: "/tendermint.abci.Request";
104
109
  value: Uint8Array;
105
110
  }
111
+ /**
112
+ * @name RequestAmino
113
+ * @package tendermint.abci
114
+ * @see proto type: tendermint.abci.Request
115
+ */
106
116
  export interface RequestAmino {
107
117
  echo?: RequestEchoAmino;
108
118
  flush?: RequestFlushAmino;
@@ -125,6 +135,11 @@ export interface RequestAminoMsg {
125
135
  type: "/tendermint.abci.Request";
126
136
  value: RequestAmino;
127
137
  }
138
+ /**
139
+ * @name RequestEcho
140
+ * @package tendermint.abci
141
+ * @see proto type: tendermint.abci.RequestEcho
142
+ */
128
143
  export interface RequestEcho {
129
144
  message: string;
130
145
  }
@@ -132,6 +147,11 @@ export interface RequestEchoProtoMsg {
132
147
  typeUrl: "/tendermint.abci.RequestEcho";
133
148
  value: Uint8Array;
134
149
  }
150
+ /**
151
+ * @name RequestEchoAmino
152
+ * @package tendermint.abci
153
+ * @see proto type: tendermint.abci.RequestEcho
154
+ */
135
155
  export interface RequestEchoAmino {
136
156
  message: string;
137
157
  }
@@ -139,18 +159,33 @@ export interface RequestEchoAminoMsg {
139
159
  type: "/tendermint.abci.RequestEcho";
140
160
  value: RequestEchoAmino;
141
161
  }
162
+ /**
163
+ * @name RequestFlush
164
+ * @package tendermint.abci
165
+ * @see proto type: tendermint.abci.RequestFlush
166
+ */
142
167
  export interface RequestFlush {
143
168
  }
144
169
  export interface RequestFlushProtoMsg {
145
170
  typeUrl: "/tendermint.abci.RequestFlush";
146
171
  value: Uint8Array;
147
172
  }
173
+ /**
174
+ * @name RequestFlushAmino
175
+ * @package tendermint.abci
176
+ * @see proto type: tendermint.abci.RequestFlush
177
+ */
148
178
  export interface RequestFlushAmino {
149
179
  }
150
180
  export interface RequestFlushAminoMsg {
151
181
  type: "/tendermint.abci.RequestFlush";
152
182
  value: RequestFlushAmino;
153
183
  }
184
+ /**
185
+ * @name RequestInfo
186
+ * @package tendermint.abci
187
+ * @see proto type: tendermint.abci.RequestInfo
188
+ */
154
189
  export interface RequestInfo {
155
190
  version: string;
156
191
  blockVersion: bigint;
@@ -161,6 +196,11 @@ export interface RequestInfoProtoMsg {
161
196
  typeUrl: "/tendermint.abci.RequestInfo";
162
197
  value: Uint8Array;
163
198
  }
199
+ /**
200
+ * @name RequestInfoAmino
201
+ * @package tendermint.abci
202
+ * @see proto type: tendermint.abci.RequestInfo
203
+ */
164
204
  export interface RequestInfoAmino {
165
205
  version: string;
166
206
  block_version: string;
@@ -171,6 +211,11 @@ export interface RequestInfoAminoMsg {
171
211
  type: "/tendermint.abci.RequestInfo";
172
212
  value: RequestInfoAmino;
173
213
  }
214
+ /**
215
+ * @name RequestInitChain
216
+ * @package tendermint.abci
217
+ * @see proto type: tendermint.abci.RequestInitChain
218
+ */
174
219
  export interface RequestInitChain {
175
220
  time: Date;
176
221
  chainId: string;
@@ -183,6 +228,11 @@ export interface RequestInitChainProtoMsg {
183
228
  typeUrl: "/tendermint.abci.RequestInitChain";
184
229
  value: Uint8Array;
185
230
  }
231
+ /**
232
+ * @name RequestInitChainAmino
233
+ * @package tendermint.abci
234
+ * @see proto type: tendermint.abci.RequestInitChain
235
+ */
186
236
  export interface RequestInitChainAmino {
187
237
  time: string;
188
238
  chain_id: string;
@@ -195,6 +245,11 @@ export interface RequestInitChainAminoMsg {
195
245
  type: "/tendermint.abci.RequestInitChain";
196
246
  value: RequestInitChainAmino;
197
247
  }
248
+ /**
249
+ * @name RequestQuery
250
+ * @package tendermint.abci
251
+ * @see proto type: tendermint.abci.RequestQuery
252
+ */
198
253
  export interface RequestQuery {
199
254
  data: Uint8Array;
200
255
  path: string;
@@ -205,6 +260,11 @@ export interface RequestQueryProtoMsg {
205
260
  typeUrl: "/tendermint.abci.RequestQuery";
206
261
  value: Uint8Array;
207
262
  }
263
+ /**
264
+ * @name RequestQueryAmino
265
+ * @package tendermint.abci
266
+ * @see proto type: tendermint.abci.RequestQuery
267
+ */
208
268
  export interface RequestQueryAmino {
209
269
  data: string;
210
270
  path: string;
@@ -215,6 +275,11 @@ export interface RequestQueryAminoMsg {
215
275
  type: "/tendermint.abci.RequestQuery";
216
276
  value: RequestQueryAmino;
217
277
  }
278
+ /**
279
+ * @name RequestCheckTx
280
+ * @package tendermint.abci
281
+ * @see proto type: tendermint.abci.RequestCheckTx
282
+ */
218
283
  export interface RequestCheckTx {
219
284
  tx: Uint8Array;
220
285
  type: CheckTxType;
@@ -223,6 +288,11 @@ export interface RequestCheckTxProtoMsg {
223
288
  typeUrl: "/tendermint.abci.RequestCheckTx";
224
289
  value: Uint8Array;
225
290
  }
291
+ /**
292
+ * @name RequestCheckTxAmino
293
+ * @package tendermint.abci
294
+ * @see proto type: tendermint.abci.RequestCheckTx
295
+ */
226
296
  export interface RequestCheckTxAmino {
227
297
  tx: string;
228
298
  type: CheckTxType;
@@ -231,55 +301,98 @@ export interface RequestCheckTxAminoMsg {
231
301
  type: "/tendermint.abci.RequestCheckTx";
232
302
  value: RequestCheckTxAmino;
233
303
  }
304
+ /**
305
+ * @name RequestCommit
306
+ * @package tendermint.abci
307
+ * @see proto type: tendermint.abci.RequestCommit
308
+ */
234
309
  export interface RequestCommit {
235
310
  }
236
311
  export interface RequestCommitProtoMsg {
237
312
  typeUrl: "/tendermint.abci.RequestCommit";
238
313
  value: Uint8Array;
239
314
  }
315
+ /**
316
+ * @name RequestCommitAmino
317
+ * @package tendermint.abci
318
+ * @see proto type: tendermint.abci.RequestCommit
319
+ */
240
320
  export interface RequestCommitAmino {
241
321
  }
242
322
  export interface RequestCommitAminoMsg {
243
323
  type: "/tendermint.abci.RequestCommit";
244
324
  value: RequestCommitAmino;
245
325
  }
246
- /** lists available snapshots */
326
+ /**
327
+ * lists available snapshots
328
+ * @name RequestListSnapshots
329
+ * @package tendermint.abci
330
+ * @see proto type: tendermint.abci.RequestListSnapshots
331
+ */
247
332
  export interface RequestListSnapshots {
248
333
  }
249
334
  export interface RequestListSnapshotsProtoMsg {
250
335
  typeUrl: "/tendermint.abci.RequestListSnapshots";
251
336
  value: Uint8Array;
252
337
  }
253
- /** lists available snapshots */
338
+ /**
339
+ * lists available snapshots
340
+ * @name RequestListSnapshotsAmino
341
+ * @package tendermint.abci
342
+ * @see proto type: tendermint.abci.RequestListSnapshots
343
+ */
254
344
  export interface RequestListSnapshotsAmino {
255
345
  }
256
346
  export interface RequestListSnapshotsAminoMsg {
257
347
  type: "/tendermint.abci.RequestListSnapshots";
258
348
  value: RequestListSnapshotsAmino;
259
349
  }
260
- /** offers a snapshot to the application */
350
+ /**
351
+ * offers a snapshot to the application
352
+ * @name RequestOfferSnapshot
353
+ * @package tendermint.abci
354
+ * @see proto type: tendermint.abci.RequestOfferSnapshot
355
+ */
261
356
  export interface RequestOfferSnapshot {
262
- /** snapshot offered by peers */
357
+ /**
358
+ * snapshot offered by peers
359
+ */
263
360
  snapshot?: Snapshot;
264
- /** light client-verified app hash for snapshot height */
361
+ /**
362
+ * light client-verified app hash for snapshot height
363
+ */
265
364
  appHash: Uint8Array;
266
365
  }
267
366
  export interface RequestOfferSnapshotProtoMsg {
268
367
  typeUrl: "/tendermint.abci.RequestOfferSnapshot";
269
368
  value: Uint8Array;
270
369
  }
271
- /** offers a snapshot to the application */
370
+ /**
371
+ * offers a snapshot to the application
372
+ * @name RequestOfferSnapshotAmino
373
+ * @package tendermint.abci
374
+ * @see proto type: tendermint.abci.RequestOfferSnapshot
375
+ */
272
376
  export interface RequestOfferSnapshotAmino {
273
- /** snapshot offered by peers */
377
+ /**
378
+ * snapshot offered by peers
379
+ */
274
380
  snapshot?: SnapshotAmino;
275
- /** light client-verified app hash for snapshot height */
381
+ /**
382
+ * light client-verified app hash for snapshot height
383
+ */
276
384
  app_hash: string;
277
385
  }
278
386
  export interface RequestOfferSnapshotAminoMsg {
279
387
  type: "/tendermint.abci.RequestOfferSnapshot";
280
388
  value: RequestOfferSnapshotAmino;
281
389
  }
282
- /** loads a snapshot chunk */
390
+ /**
391
+ * loads a snapshot chunk
392
+ * @name RequestLoadSnapshotChunk
393
+ * @package tendermint.abci
394
+ * @see proto type: tendermint.abci.RequestLoadSnapshotChunk
395
+ */
283
396
  export interface RequestLoadSnapshotChunk {
284
397
  height: bigint;
285
398
  format: number;
@@ -289,7 +402,12 @@ export interface RequestLoadSnapshotChunkProtoMsg {
289
402
  typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk";
290
403
  value: Uint8Array;
291
404
  }
292
- /** loads a snapshot chunk */
405
+ /**
406
+ * loads a snapshot chunk
407
+ * @name RequestLoadSnapshotChunkAmino
408
+ * @package tendermint.abci
409
+ * @see proto type: tendermint.abci.RequestLoadSnapshotChunk
410
+ */
293
411
  export interface RequestLoadSnapshotChunkAmino {
294
412
  height: string;
295
413
  format: number;
@@ -299,7 +417,12 @@ export interface RequestLoadSnapshotChunkAminoMsg {
299
417
  type: "/tendermint.abci.RequestLoadSnapshotChunk";
300
418
  value: RequestLoadSnapshotChunkAmino;
301
419
  }
302
- /** Applies a snapshot chunk */
420
+ /**
421
+ * Applies a snapshot chunk
422
+ * @name RequestApplySnapshotChunk
423
+ * @package tendermint.abci
424
+ * @see proto type: tendermint.abci.RequestApplySnapshotChunk
425
+ */
303
426
  export interface RequestApplySnapshotChunk {
304
427
  index: number;
305
428
  chunk: Uint8Array;
@@ -309,7 +432,12 @@ export interface RequestApplySnapshotChunkProtoMsg {
309
432
  typeUrl: "/tendermint.abci.RequestApplySnapshotChunk";
310
433
  value: Uint8Array;
311
434
  }
312
- /** Applies a snapshot chunk */
435
+ /**
436
+ * Applies a snapshot chunk
437
+ * @name RequestApplySnapshotChunkAmino
438
+ * @package tendermint.abci
439
+ * @see proto type: tendermint.abci.RequestApplySnapshotChunk
440
+ */
313
441
  export interface RequestApplySnapshotChunkAmino {
314
442
  index: number;
315
443
  chunk: string;
@@ -319,8 +447,15 @@ export interface RequestApplySnapshotChunkAminoMsg {
319
447
  type: "/tendermint.abci.RequestApplySnapshotChunk";
320
448
  value: RequestApplySnapshotChunkAmino;
321
449
  }
450
+ /**
451
+ * @name RequestPrepareProposal
452
+ * @package tendermint.abci
453
+ * @see proto type: tendermint.abci.RequestPrepareProposal
454
+ */
322
455
  export interface RequestPrepareProposal {
323
- /** the modified transactions cannot exceed this size. */
456
+ /**
457
+ * the modified transactions cannot exceed this size.
458
+ */
324
459
  maxTxBytes: bigint;
325
460
  /**
326
461
  * txs is an array of transactions that will be included in a block,
@@ -332,15 +467,24 @@ export interface RequestPrepareProposal {
332
467
  height: bigint;
333
468
  time: Date;
334
469
  nextValidatorsHash: Uint8Array;
335
- /** address of the public key of the validator proposing the block. */
470
+ /**
471
+ * address of the public key of the validator proposing the block.
472
+ */
336
473
  proposerAddress: Uint8Array;
337
474
  }
338
475
  export interface RequestPrepareProposalProtoMsg {
339
476
  typeUrl: "/tendermint.abci.RequestPrepareProposal";
340
477
  value: Uint8Array;
341
478
  }
479
+ /**
480
+ * @name RequestPrepareProposalAmino
481
+ * @package tendermint.abci
482
+ * @see proto type: tendermint.abci.RequestPrepareProposal
483
+ */
342
484
  export interface RequestPrepareProposalAmino {
343
- /** the modified transactions cannot exceed this size. */
485
+ /**
486
+ * the modified transactions cannot exceed this size.
487
+ */
344
488
  max_tx_bytes: string;
345
489
  /**
346
490
  * txs is an array of transactions that will be included in a block,
@@ -352,88 +496,143 @@ export interface RequestPrepareProposalAmino {
352
496
  height: string;
353
497
  time: string;
354
498
  next_validators_hash: string;
355
- /** address of the public key of the validator proposing the block. */
499
+ /**
500
+ * address of the public key of the validator proposing the block.
501
+ */
356
502
  proposer_address: string;
357
503
  }
358
504
  export interface RequestPrepareProposalAminoMsg {
359
505
  type: "/tendermint.abci.RequestPrepareProposal";
360
506
  value: RequestPrepareProposalAmino;
361
507
  }
508
+ /**
509
+ * @name RequestProcessProposal
510
+ * @package tendermint.abci
511
+ * @see proto type: tendermint.abci.RequestProcessProposal
512
+ */
362
513
  export interface RequestProcessProposal {
363
514
  txs: Uint8Array[];
364
515
  proposedLastCommit: CommitInfo;
365
516
  misbehavior: Misbehavior[];
366
- /** hash is the merkle root hash of the fields of the proposed block. */
517
+ /**
518
+ * hash is the merkle root hash of the fields of the proposed block.
519
+ */
367
520
  hash: Uint8Array;
368
521
  height: bigint;
369
522
  time: Date;
370
523
  nextValidatorsHash: Uint8Array;
371
- /** address of the public key of the original proposer of the block. */
524
+ /**
525
+ * address of the public key of the original proposer of the block.
526
+ */
372
527
  proposerAddress: Uint8Array;
373
528
  }
374
529
  export interface RequestProcessProposalProtoMsg {
375
530
  typeUrl: "/tendermint.abci.RequestProcessProposal";
376
531
  value: Uint8Array;
377
532
  }
533
+ /**
534
+ * @name RequestProcessProposalAmino
535
+ * @package tendermint.abci
536
+ * @see proto type: tendermint.abci.RequestProcessProposal
537
+ */
378
538
  export interface RequestProcessProposalAmino {
379
539
  txs: string[];
380
540
  proposed_last_commit: CommitInfoAmino;
381
541
  misbehavior: MisbehaviorAmino[];
382
- /** hash is the merkle root hash of the fields of the proposed block. */
542
+ /**
543
+ * hash is the merkle root hash of the fields of the proposed block.
544
+ */
383
545
  hash: string;
384
546
  height: string;
385
547
  time: string;
386
548
  next_validators_hash: string;
387
- /** address of the public key of the original proposer of the block. */
549
+ /**
550
+ * address of the public key of the original proposer of the block.
551
+ */
388
552
  proposer_address: string;
389
553
  }
390
554
  export interface RequestProcessProposalAminoMsg {
391
555
  type: "/tendermint.abci.RequestProcessProposal";
392
556
  value: RequestProcessProposalAmino;
393
557
  }
394
- /** Extends a vote with application-injected data */
558
+ /**
559
+ * Extends a vote with application-injected data
560
+ * @name RequestExtendVote
561
+ * @package tendermint.abci
562
+ * @see proto type: tendermint.abci.RequestExtendVote
563
+ */
395
564
  export interface RequestExtendVote {
396
- /** the hash of the block that this vote may be referring to */
565
+ /**
566
+ * the hash of the block that this vote may be referring to
567
+ */
397
568
  hash: Uint8Array;
398
- /** the height of the extended vote */
569
+ /**
570
+ * the height of the extended vote
571
+ */
399
572
  height: bigint;
400
- /** info of the block that this vote may be referring to */
573
+ /**
574
+ * info of the block that this vote may be referring to
575
+ */
401
576
  time: Date;
402
577
  txs: Uint8Array[];
403
578
  proposedLastCommit: CommitInfo;
404
579
  misbehavior: Misbehavior[];
405
580
  nextValidatorsHash: Uint8Array;
406
- /** address of the public key of the original proposer of the block. */
581
+ /**
582
+ * address of the public key of the original proposer of the block.
583
+ */
407
584
  proposerAddress: Uint8Array;
408
585
  }
409
586
  export interface RequestExtendVoteProtoMsg {
410
587
  typeUrl: "/tendermint.abci.RequestExtendVote";
411
588
  value: Uint8Array;
412
589
  }
413
- /** Extends a vote with application-injected data */
590
+ /**
591
+ * Extends a vote with application-injected data
592
+ * @name RequestExtendVoteAmino
593
+ * @package tendermint.abci
594
+ * @see proto type: tendermint.abci.RequestExtendVote
595
+ */
414
596
  export interface RequestExtendVoteAmino {
415
- /** the hash of the block that this vote may be referring to */
597
+ /**
598
+ * the hash of the block that this vote may be referring to
599
+ */
416
600
  hash: string;
417
- /** the height of the extended vote */
601
+ /**
602
+ * the height of the extended vote
603
+ */
418
604
  height: string;
419
- /** info of the block that this vote may be referring to */
605
+ /**
606
+ * info of the block that this vote may be referring to
607
+ */
420
608
  time: string;
421
609
  txs: string[];
422
610
  proposed_last_commit: CommitInfoAmino;
423
611
  misbehavior: MisbehaviorAmino[];
424
612
  next_validators_hash: string;
425
- /** address of the public key of the original proposer of the block. */
613
+ /**
614
+ * address of the public key of the original proposer of the block.
615
+ */
426
616
  proposer_address: string;
427
617
  }
428
618
  export interface RequestExtendVoteAminoMsg {
429
619
  type: "/tendermint.abci.RequestExtendVote";
430
620
  value: RequestExtendVoteAmino;
431
621
  }
432
- /** Verify the vote extension */
622
+ /**
623
+ * Verify the vote extension
624
+ * @name RequestVerifyVoteExtension
625
+ * @package tendermint.abci
626
+ * @see proto type: tendermint.abci.RequestVerifyVoteExtension
627
+ */
433
628
  export interface RequestVerifyVoteExtension {
434
- /** the hash of the block that this received vote corresponds to */
629
+ /**
630
+ * the hash of the block that this received vote corresponds to
631
+ */
435
632
  hash: Uint8Array;
436
- /** the validator that signed the vote extension */
633
+ /**
634
+ * the validator that signed the vote extension
635
+ */
437
636
  validatorAddress: Uint8Array;
438
637
  height: bigint;
439
638
  voteExtension: Uint8Array;
@@ -442,11 +641,20 @@ export interface RequestVerifyVoteExtensionProtoMsg {
442
641
  typeUrl: "/tendermint.abci.RequestVerifyVoteExtension";
443
642
  value: Uint8Array;
444
643
  }
445
- /** Verify the vote extension */
644
+ /**
645
+ * Verify the vote extension
646
+ * @name RequestVerifyVoteExtensionAmino
647
+ * @package tendermint.abci
648
+ * @see proto type: tendermint.abci.RequestVerifyVoteExtension
649
+ */
446
650
  export interface RequestVerifyVoteExtensionAmino {
447
- /** the hash of the block that this received vote corresponds to */
651
+ /**
652
+ * the hash of the block that this received vote corresponds to
653
+ */
448
654
  hash: string;
449
- /** the validator that signed the vote extension */
655
+ /**
656
+ * the validator that signed the vote extension
657
+ */
450
658
  validator_address: string;
451
659
  height: string;
452
660
  vote_extension: string;
@@ -455,38 +663,61 @@ export interface RequestVerifyVoteExtensionAminoMsg {
455
663
  type: "/tendermint.abci.RequestVerifyVoteExtension";
456
664
  value: RequestVerifyVoteExtensionAmino;
457
665
  }
666
+ /**
667
+ * @name RequestFinalizeBlock
668
+ * @package tendermint.abci
669
+ * @see proto type: tendermint.abci.RequestFinalizeBlock
670
+ */
458
671
  export interface RequestFinalizeBlock {
459
672
  txs: Uint8Array[];
460
673
  decidedLastCommit: CommitInfo;
461
674
  misbehavior: Misbehavior[];
462
- /** hash is the merkle root hash of the fields of the decided block. */
675
+ /**
676
+ * hash is the merkle root hash of the fields of the decided block.
677
+ */
463
678
  hash: Uint8Array;
464
679
  height: bigint;
465
680
  time: Date;
466
681
  nextValidatorsHash: Uint8Array;
467
- /** proposer_address is the address of the public key of the original proposer of the block. */
682
+ /**
683
+ * proposer_address is the address of the public key of the original proposer of the block.
684
+ */
468
685
  proposerAddress: Uint8Array;
469
686
  }
470
687
  export interface RequestFinalizeBlockProtoMsg {
471
688
  typeUrl: "/tendermint.abci.RequestFinalizeBlock";
472
689
  value: Uint8Array;
473
690
  }
691
+ /**
692
+ * @name RequestFinalizeBlockAmino
693
+ * @package tendermint.abci
694
+ * @see proto type: tendermint.abci.RequestFinalizeBlock
695
+ */
474
696
  export interface RequestFinalizeBlockAmino {
475
697
  txs: string[];
476
698
  decided_last_commit: CommitInfoAmino;
477
699
  misbehavior: MisbehaviorAmino[];
478
- /** hash is the merkle root hash of the fields of the decided block. */
700
+ /**
701
+ * hash is the merkle root hash of the fields of the decided block.
702
+ */
479
703
  hash: string;
480
704
  height: string;
481
705
  time: string;
482
706
  next_validators_hash: string;
483
- /** proposer_address is the address of the public key of the original proposer of the block. */
707
+ /**
708
+ * proposer_address is the address of the public key of the original proposer of the block.
709
+ */
484
710
  proposer_address: string;
485
711
  }
486
712
  export interface RequestFinalizeBlockAminoMsg {
487
713
  type: "/tendermint.abci.RequestFinalizeBlock";
488
714
  value: RequestFinalizeBlockAmino;
489
715
  }
716
+ /**
717
+ * @name Response
718
+ * @package tendermint.abci
719
+ * @see proto type: tendermint.abci.Response
720
+ */
490
721
  export interface Response {
491
722
  exception?: ResponseException;
492
723
  echo?: ResponseEcho;
@@ -510,6 +741,11 @@ export interface ResponseProtoMsg {
510
741
  typeUrl: "/tendermint.abci.Response";
511
742
  value: Uint8Array;
512
743
  }
744
+ /**
745
+ * @name ResponseAmino
746
+ * @package tendermint.abci
747
+ * @see proto type: tendermint.abci.Response
748
+ */
513
749
  export interface ResponseAmino {
514
750
  exception?: ResponseExceptionAmino;
515
751
  echo?: ResponseEchoAmino;
@@ -533,7 +769,12 @@ export interface ResponseAminoMsg {
533
769
  type: "/tendermint.abci.Response";
534
770
  value: ResponseAmino;
535
771
  }
536
- /** nondeterministic */
772
+ /**
773
+ * nondeterministic
774
+ * @name ResponseException
775
+ * @package tendermint.abci
776
+ * @see proto type: tendermint.abci.ResponseException
777
+ */
537
778
  export interface ResponseException {
538
779
  error: string;
539
780
  }
@@ -541,7 +782,12 @@ export interface ResponseExceptionProtoMsg {
541
782
  typeUrl: "/tendermint.abci.ResponseException";
542
783
  value: Uint8Array;
543
784
  }
544
- /** nondeterministic */
785
+ /**
786
+ * nondeterministic
787
+ * @name ResponseExceptionAmino
788
+ * @package tendermint.abci
789
+ * @see proto type: tendermint.abci.ResponseException
790
+ */
545
791
  export interface ResponseExceptionAmino {
546
792
  error: string;
547
793
  }
@@ -549,6 +795,11 @@ export interface ResponseExceptionAminoMsg {
549
795
  type: "/tendermint.abci.ResponseException";
550
796
  value: ResponseExceptionAmino;
551
797
  }
798
+ /**
799
+ * @name ResponseEcho
800
+ * @package tendermint.abci
801
+ * @see proto type: tendermint.abci.ResponseEcho
802
+ */
552
803
  export interface ResponseEcho {
553
804
  message: string;
554
805
  }
@@ -556,6 +807,11 @@ export interface ResponseEchoProtoMsg {
556
807
  typeUrl: "/tendermint.abci.ResponseEcho";
557
808
  value: Uint8Array;
558
809
  }
810
+ /**
811
+ * @name ResponseEchoAmino
812
+ * @package tendermint.abci
813
+ * @see proto type: tendermint.abci.ResponseEcho
814
+ */
559
815
  export interface ResponseEchoAmino {
560
816
  message: string;
561
817
  }
@@ -563,18 +819,33 @@ export interface ResponseEchoAminoMsg {
563
819
  type: "/tendermint.abci.ResponseEcho";
564
820
  value: ResponseEchoAmino;
565
821
  }
822
+ /**
823
+ * @name ResponseFlush
824
+ * @package tendermint.abci
825
+ * @see proto type: tendermint.abci.ResponseFlush
826
+ */
566
827
  export interface ResponseFlush {
567
828
  }
568
829
  export interface ResponseFlushProtoMsg {
569
830
  typeUrl: "/tendermint.abci.ResponseFlush";
570
831
  value: Uint8Array;
571
832
  }
833
+ /**
834
+ * @name ResponseFlushAmino
835
+ * @package tendermint.abci
836
+ * @see proto type: tendermint.abci.ResponseFlush
837
+ */
572
838
  export interface ResponseFlushAmino {
573
839
  }
574
840
  export interface ResponseFlushAminoMsg {
575
841
  type: "/tendermint.abci.ResponseFlush";
576
842
  value: ResponseFlushAmino;
577
843
  }
844
+ /**
845
+ * @name ResponseInfo
846
+ * @package tendermint.abci
847
+ * @see proto type: tendermint.abci.ResponseInfo
848
+ */
578
849
  export interface ResponseInfo {
579
850
  data: string;
580
851
  version: string;
@@ -586,6 +857,11 @@ export interface ResponseInfoProtoMsg {
586
857
  typeUrl: "/tendermint.abci.ResponseInfo";
587
858
  value: Uint8Array;
588
859
  }
860
+ /**
861
+ * @name ResponseInfoAmino
862
+ * @package tendermint.abci
863
+ * @see proto type: tendermint.abci.ResponseInfo
864
+ */
589
865
  export interface ResponseInfoAmino {
590
866
  data: string;
591
867
  version: string;
@@ -597,6 +873,11 @@ export interface ResponseInfoAminoMsg {
597
873
  type: "/tendermint.abci.ResponseInfo";
598
874
  value: ResponseInfoAmino;
599
875
  }
876
+ /**
877
+ * @name ResponseInitChain
878
+ * @package tendermint.abci
879
+ * @see proto type: tendermint.abci.ResponseInitChain
880
+ */
600
881
  export interface ResponseInitChain {
601
882
  consensusParams?: ConsensusParams;
602
883
  validators: ValidatorUpdate[];
@@ -606,6 +887,11 @@ export interface ResponseInitChainProtoMsg {
606
887
  typeUrl: "/tendermint.abci.ResponseInitChain";
607
888
  value: Uint8Array;
608
889
  }
890
+ /**
891
+ * @name ResponseInitChainAmino
892
+ * @package tendermint.abci
893
+ * @see proto type: tendermint.abci.ResponseInitChain
894
+ */
609
895
  export interface ResponseInitChainAmino {
610
896
  consensus_params?: ConsensusParamsAmino;
611
897
  validators: ValidatorUpdateAmino[];
@@ -615,11 +901,20 @@ export interface ResponseInitChainAminoMsg {
615
901
  type: "/tendermint.abci.ResponseInitChain";
616
902
  value: ResponseInitChainAmino;
617
903
  }
904
+ /**
905
+ * @name ResponseQuery
906
+ * @package tendermint.abci
907
+ * @see proto type: tendermint.abci.ResponseQuery
908
+ */
618
909
  export interface ResponseQuery {
619
910
  code: number;
620
- /** bytes data = 2; // use "value" instead. */
911
+ /**
912
+ * bytes data = 2; // use "value" instead.
913
+ */
621
914
  log: string;
622
- /** nondeterministic */
915
+ /**
916
+ * nondeterministic
917
+ */
623
918
  info: string;
624
919
  index: bigint;
625
920
  key: Uint8Array;
@@ -632,11 +927,20 @@ export interface ResponseQueryProtoMsg {
632
927
  typeUrl: "/tendermint.abci.ResponseQuery";
633
928
  value: Uint8Array;
634
929
  }
930
+ /**
931
+ * @name ResponseQueryAmino
932
+ * @package tendermint.abci
933
+ * @see proto type: tendermint.abci.ResponseQuery
934
+ */
635
935
  export interface ResponseQueryAmino {
636
936
  code: number;
637
- /** bytes data = 2; // use "value" instead. */
937
+ /**
938
+ * bytes data = 2; // use "value" instead.
939
+ */
638
940
  log: string;
639
- /** nondeterministic */
941
+ /**
942
+ * nondeterministic
943
+ */
640
944
  info: string;
641
945
  index: string;
642
946
  key: string;
@@ -649,12 +953,21 @@ export interface ResponseQueryAminoMsg {
649
953
  type: "/tendermint.abci.ResponseQuery";
650
954
  value: ResponseQueryAmino;
651
955
  }
956
+ /**
957
+ * @name ResponseCheckTx
958
+ * @package tendermint.abci
959
+ * @see proto type: tendermint.abci.ResponseCheckTx
960
+ */
652
961
  export interface ResponseCheckTx {
653
962
  code: number;
654
963
  data: Uint8Array;
655
- /** nondeterministic */
964
+ /**
965
+ * nondeterministic
966
+ */
656
967
  log: string;
657
- /** nondeterministic */
968
+ /**
969
+ * nondeterministic
970
+ */
658
971
  info: string;
659
972
  gasWanted: bigint;
660
973
  gasUsed: bigint;
@@ -665,12 +978,21 @@ export interface ResponseCheckTxProtoMsg {
665
978
  typeUrl: "/tendermint.abci.ResponseCheckTx";
666
979
  value: Uint8Array;
667
980
  }
981
+ /**
982
+ * @name ResponseCheckTxAmino
983
+ * @package tendermint.abci
984
+ * @see proto type: tendermint.abci.ResponseCheckTx
985
+ */
668
986
  export interface ResponseCheckTxAmino {
669
987
  code: number;
670
988
  data: string;
671
- /** nondeterministic */
989
+ /**
990
+ * nondeterministic
991
+ */
672
992
  log: string;
673
- /** nondeterministic */
993
+ /**
994
+ * nondeterministic
995
+ */
674
996
  info: string;
675
997
  gas_wanted: string;
676
998
  gas_used: string;
@@ -681,6 +1003,11 @@ export interface ResponseCheckTxAminoMsg {
681
1003
  type: "/tendermint.abci.ResponseCheckTx";
682
1004
  value: ResponseCheckTxAmino;
683
1005
  }
1006
+ /**
1007
+ * @name ResponseCommit
1008
+ * @package tendermint.abci
1009
+ * @see proto type: tendermint.abci.ResponseCommit
1010
+ */
684
1011
  export interface ResponseCommit {
685
1012
  retainHeight: bigint;
686
1013
  }
@@ -688,6 +1015,11 @@ export interface ResponseCommitProtoMsg {
688
1015
  typeUrl: "/tendermint.abci.ResponseCommit";
689
1016
  value: Uint8Array;
690
1017
  }
1018
+ /**
1019
+ * @name ResponseCommitAmino
1020
+ * @package tendermint.abci
1021
+ * @see proto type: tendermint.abci.ResponseCommit
1022
+ */
691
1023
  export interface ResponseCommitAmino {
692
1024
  retain_height: string;
693
1025
  }
@@ -695,6 +1027,11 @@ export interface ResponseCommitAminoMsg {
695
1027
  type: "/tendermint.abci.ResponseCommit";
696
1028
  value: ResponseCommitAmino;
697
1029
  }
1030
+ /**
1031
+ * @name ResponseListSnapshots
1032
+ * @package tendermint.abci
1033
+ * @see proto type: tendermint.abci.ResponseListSnapshots
1034
+ */
698
1035
  export interface ResponseListSnapshots {
699
1036
  snapshots: Snapshot[];
700
1037
  }
@@ -702,6 +1039,11 @@ export interface ResponseListSnapshotsProtoMsg {
702
1039
  typeUrl: "/tendermint.abci.ResponseListSnapshots";
703
1040
  value: Uint8Array;
704
1041
  }
1042
+ /**
1043
+ * @name ResponseListSnapshotsAmino
1044
+ * @package tendermint.abci
1045
+ * @see proto type: tendermint.abci.ResponseListSnapshots
1046
+ */
705
1047
  export interface ResponseListSnapshotsAmino {
706
1048
  snapshots: SnapshotAmino[];
707
1049
  }
@@ -709,6 +1051,11 @@ export interface ResponseListSnapshotsAminoMsg {
709
1051
  type: "/tendermint.abci.ResponseListSnapshots";
710
1052
  value: ResponseListSnapshotsAmino;
711
1053
  }
1054
+ /**
1055
+ * @name ResponseOfferSnapshot
1056
+ * @package tendermint.abci
1057
+ * @see proto type: tendermint.abci.ResponseOfferSnapshot
1058
+ */
712
1059
  export interface ResponseOfferSnapshot {
713
1060
  result: ResponseOfferSnapshot_Result;
714
1061
  }
@@ -716,6 +1063,11 @@ export interface ResponseOfferSnapshotProtoMsg {
716
1063
  typeUrl: "/tendermint.abci.ResponseOfferSnapshot";
717
1064
  value: Uint8Array;
718
1065
  }
1066
+ /**
1067
+ * @name ResponseOfferSnapshotAmino
1068
+ * @package tendermint.abci
1069
+ * @see proto type: tendermint.abci.ResponseOfferSnapshot
1070
+ */
719
1071
  export interface ResponseOfferSnapshotAmino {
720
1072
  result: ResponseOfferSnapshot_Result;
721
1073
  }
@@ -723,6 +1075,11 @@ export interface ResponseOfferSnapshotAminoMsg {
723
1075
  type: "/tendermint.abci.ResponseOfferSnapshot";
724
1076
  value: ResponseOfferSnapshotAmino;
725
1077
  }
1078
+ /**
1079
+ * @name ResponseLoadSnapshotChunk
1080
+ * @package tendermint.abci
1081
+ * @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
1082
+ */
726
1083
  export interface ResponseLoadSnapshotChunk {
727
1084
  chunk: Uint8Array;
728
1085
  }
@@ -730,6 +1087,11 @@ export interface ResponseLoadSnapshotChunkProtoMsg {
730
1087
  typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk";
731
1088
  value: Uint8Array;
732
1089
  }
1090
+ /**
1091
+ * @name ResponseLoadSnapshotChunkAmino
1092
+ * @package tendermint.abci
1093
+ * @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
1094
+ */
733
1095
  export interface ResponseLoadSnapshotChunkAmino {
734
1096
  chunk: string;
735
1097
  }
@@ -737,28 +1099,51 @@ export interface ResponseLoadSnapshotChunkAminoMsg {
737
1099
  type: "/tendermint.abci.ResponseLoadSnapshotChunk";
738
1100
  value: ResponseLoadSnapshotChunkAmino;
739
1101
  }
1102
+ /**
1103
+ * @name ResponseApplySnapshotChunk
1104
+ * @package tendermint.abci
1105
+ * @see proto type: tendermint.abci.ResponseApplySnapshotChunk
1106
+ */
740
1107
  export interface ResponseApplySnapshotChunk {
741
1108
  result: ResponseApplySnapshotChunk_Result;
742
- /** Chunks to refetch and reapply */
1109
+ /**
1110
+ * Chunks to refetch and reapply
1111
+ */
743
1112
  refetchChunks: number[];
744
- /** Chunk senders to reject and ban */
1113
+ /**
1114
+ * Chunk senders to reject and ban
1115
+ */
745
1116
  rejectSenders: string[];
746
1117
  }
747
1118
  export interface ResponseApplySnapshotChunkProtoMsg {
748
1119
  typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk";
749
1120
  value: Uint8Array;
750
1121
  }
1122
+ /**
1123
+ * @name ResponseApplySnapshotChunkAmino
1124
+ * @package tendermint.abci
1125
+ * @see proto type: tendermint.abci.ResponseApplySnapshotChunk
1126
+ */
751
1127
  export interface ResponseApplySnapshotChunkAmino {
752
1128
  result: ResponseApplySnapshotChunk_Result;
753
- /** Chunks to refetch and reapply */
1129
+ /**
1130
+ * Chunks to refetch and reapply
1131
+ */
754
1132
  refetch_chunks: number[];
755
- /** Chunk senders to reject and ban */
1133
+ /**
1134
+ * Chunk senders to reject and ban
1135
+ */
756
1136
  reject_senders: string[];
757
1137
  }
758
1138
  export interface ResponseApplySnapshotChunkAminoMsg {
759
1139
  type: "/tendermint.abci.ResponseApplySnapshotChunk";
760
1140
  value: ResponseApplySnapshotChunkAmino;
761
1141
  }
1142
+ /**
1143
+ * @name ResponsePrepareProposal
1144
+ * @package tendermint.abci
1145
+ * @see proto type: tendermint.abci.ResponsePrepareProposal
1146
+ */
762
1147
  export interface ResponsePrepareProposal {
763
1148
  txs: Uint8Array[];
764
1149
  }
@@ -766,6 +1151,11 @@ export interface ResponsePrepareProposalProtoMsg {
766
1151
  typeUrl: "/tendermint.abci.ResponsePrepareProposal";
767
1152
  value: Uint8Array;
768
1153
  }
1154
+ /**
1155
+ * @name ResponsePrepareProposalAmino
1156
+ * @package tendermint.abci
1157
+ * @see proto type: tendermint.abci.ResponsePrepareProposal
1158
+ */
769
1159
  export interface ResponsePrepareProposalAmino {
770
1160
  txs: string[];
771
1161
  }
@@ -773,6 +1163,11 @@ export interface ResponsePrepareProposalAminoMsg {
773
1163
  type: "/tendermint.abci.ResponsePrepareProposal";
774
1164
  value: ResponsePrepareProposalAmino;
775
1165
  }
1166
+ /**
1167
+ * @name ResponseProcessProposal
1168
+ * @package tendermint.abci
1169
+ * @see proto type: tendermint.abci.ResponseProcessProposal
1170
+ */
776
1171
  export interface ResponseProcessProposal {
777
1172
  status: ResponseProcessProposal_ProposalStatus;
778
1173
  }
@@ -780,6 +1175,11 @@ export interface ResponseProcessProposalProtoMsg {
780
1175
  typeUrl: "/tendermint.abci.ResponseProcessProposal";
781
1176
  value: Uint8Array;
782
1177
  }
1178
+ /**
1179
+ * @name ResponseProcessProposalAmino
1180
+ * @package tendermint.abci
1181
+ * @see proto type: tendermint.abci.ResponseProcessProposal
1182
+ */
783
1183
  export interface ResponseProcessProposalAmino {
784
1184
  status: ResponseProcessProposal_ProposalStatus;
785
1185
  }
@@ -787,6 +1187,11 @@ export interface ResponseProcessProposalAminoMsg {
787
1187
  type: "/tendermint.abci.ResponseProcessProposal";
788
1188
  value: ResponseProcessProposalAmino;
789
1189
  }
1190
+ /**
1191
+ * @name ResponseExtendVote
1192
+ * @package tendermint.abci
1193
+ * @see proto type: tendermint.abci.ResponseExtendVote
1194
+ */
790
1195
  export interface ResponseExtendVote {
791
1196
  voteExtension: Uint8Array;
792
1197
  }
@@ -794,6 +1199,11 @@ export interface ResponseExtendVoteProtoMsg {
794
1199
  typeUrl: "/tendermint.abci.ResponseExtendVote";
795
1200
  value: Uint8Array;
796
1201
  }
1202
+ /**
1203
+ * @name ResponseExtendVoteAmino
1204
+ * @package tendermint.abci
1205
+ * @see proto type: tendermint.abci.ResponseExtendVote
1206
+ */
797
1207
  export interface ResponseExtendVoteAmino {
798
1208
  vote_extension: string;
799
1209
  }
@@ -801,6 +1211,11 @@ export interface ResponseExtendVoteAminoMsg {
801
1211
  type: "/tendermint.abci.ResponseExtendVote";
802
1212
  value: ResponseExtendVoteAmino;
803
1213
  }
1214
+ /**
1215
+ * @name ResponseVerifyVoteExtension
1216
+ * @package tendermint.abci
1217
+ * @see proto type: tendermint.abci.ResponseVerifyVoteExtension
1218
+ */
804
1219
  export interface ResponseVerifyVoteExtension {
805
1220
  status: ResponseVerifyVoteExtension_VerifyStatus;
806
1221
  }
@@ -808,6 +1223,11 @@ export interface ResponseVerifyVoteExtensionProtoMsg {
808
1223
  typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension";
809
1224
  value: Uint8Array;
810
1225
  }
1226
+ /**
1227
+ * @name ResponseVerifyVoteExtensionAmino
1228
+ * @package tendermint.abci
1229
+ * @see proto type: tendermint.abci.ResponseVerifyVoteExtension
1230
+ */
811
1231
  export interface ResponseVerifyVoteExtensionAmino {
812
1232
  status: ResponseVerifyVoteExtension_VerifyStatus;
813
1233
  }
@@ -815,8 +1235,15 @@ export interface ResponseVerifyVoteExtensionAminoMsg {
815
1235
  type: "/tendermint.abci.ResponseVerifyVoteExtension";
816
1236
  value: ResponseVerifyVoteExtensionAmino;
817
1237
  }
1238
+ /**
1239
+ * @name ResponseFinalizeBlock
1240
+ * @package tendermint.abci
1241
+ * @see proto type: tendermint.abci.ResponseFinalizeBlock
1242
+ */
818
1243
  export interface ResponseFinalizeBlock {
819
- /** set of block events emmitted as part of executing the block */
1244
+ /**
1245
+ * set of block events emmitted as part of executing the block
1246
+ */
820
1247
  events: Event[];
821
1248
  /**
822
1249
  * the result of executing each transaction including the events
@@ -824,9 +1251,13 @@ export interface ResponseFinalizeBlock {
824
1251
  * of the transactions delivered in the block itself
825
1252
  */
826
1253
  txResults: ExecTxResult[];
827
- /** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
1254
+ /**
1255
+ * a list of updates to the validator set. These will reflect the validator set at current height + 2.
1256
+ */
828
1257
  validatorUpdates: ValidatorUpdate[];
829
- /** updates to the consensus params, if any. */
1258
+ /**
1259
+ * updates to the consensus params, if any.
1260
+ */
830
1261
  consensusParamUpdates?: ConsensusParams;
831
1262
  /**
832
1263
  * app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
@@ -838,8 +1269,15 @@ export interface ResponseFinalizeBlockProtoMsg {
838
1269
  typeUrl: "/tendermint.abci.ResponseFinalizeBlock";
839
1270
  value: Uint8Array;
840
1271
  }
1272
+ /**
1273
+ * @name ResponseFinalizeBlockAmino
1274
+ * @package tendermint.abci
1275
+ * @see proto type: tendermint.abci.ResponseFinalizeBlock
1276
+ */
841
1277
  export interface ResponseFinalizeBlockAmino {
842
- /** set of block events emmitted as part of executing the block */
1278
+ /**
1279
+ * set of block events emmitted as part of executing the block
1280
+ */
843
1281
  events: EventAmino[];
844
1282
  /**
845
1283
  * the result of executing each transaction including the events
@@ -847,9 +1285,13 @@ export interface ResponseFinalizeBlockAmino {
847
1285
  * of the transactions delivered in the block itself
848
1286
  */
849
1287
  tx_results: ExecTxResultAmino[];
850
- /** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
1288
+ /**
1289
+ * a list of updates to the validator set. These will reflect the validator set at current height + 2.
1290
+ */
851
1291
  validator_updates: ValidatorUpdateAmino[];
852
- /** updates to the consensus params, if any. */
1292
+ /**
1293
+ * updates to the consensus params, if any.
1294
+ */
853
1295
  consensus_param_updates?: ConsensusParamsAmino;
854
1296
  /**
855
1297
  * app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
@@ -861,6 +1303,11 @@ export interface ResponseFinalizeBlockAminoMsg {
861
1303
  type: "/tendermint.abci.ResponseFinalizeBlock";
862
1304
  value: ResponseFinalizeBlockAmino;
863
1305
  }
1306
+ /**
1307
+ * @name CommitInfo
1308
+ * @package tendermint.abci
1309
+ * @see proto type: tendermint.abci.CommitInfo
1310
+ */
864
1311
  export interface CommitInfo {
865
1312
  round: number;
866
1313
  votes: VoteInfo[];
@@ -869,6 +1316,11 @@ export interface CommitInfoProtoMsg {
869
1316
  typeUrl: "/tendermint.abci.CommitInfo";
870
1317
  value: Uint8Array;
871
1318
  }
1319
+ /**
1320
+ * @name CommitInfoAmino
1321
+ * @package tendermint.abci
1322
+ * @see proto type: tendermint.abci.CommitInfo
1323
+ */
872
1324
  export interface CommitInfoAmino {
873
1325
  round: number;
874
1326
  votes: VoteInfoAmino[];
@@ -881,9 +1333,14 @@ export interface CommitInfoAminoMsg {
881
1333
  * ExtendedCommitInfo is similar to CommitInfo except that it is only used in
882
1334
  * the PrepareProposal request such that CometBFT can provide vote extensions
883
1335
  * to the application.
1336
+ * @name ExtendedCommitInfo
1337
+ * @package tendermint.abci
1338
+ * @see proto type: tendermint.abci.ExtendedCommitInfo
884
1339
  */
885
1340
  export interface ExtendedCommitInfo {
886
- /** The round at which the block proposer decided in the previous height. */
1341
+ /**
1342
+ * The round at which the block proposer decided in the previous height.
1343
+ */
887
1344
  round: number;
888
1345
  /**
889
1346
  * List of validators' addresses in the last validator set with their voting
@@ -899,9 +1356,14 @@ export interface ExtendedCommitInfoProtoMsg {
899
1356
  * ExtendedCommitInfo is similar to CommitInfo except that it is only used in
900
1357
  * the PrepareProposal request such that CometBFT can provide vote extensions
901
1358
  * to the application.
1359
+ * @name ExtendedCommitInfoAmino
1360
+ * @package tendermint.abci
1361
+ * @see proto type: tendermint.abci.ExtendedCommitInfo
902
1362
  */
903
1363
  export interface ExtendedCommitInfoAmino {
904
- /** The round at which the block proposer decided in the previous height. */
1364
+ /**
1365
+ * The round at which the block proposer decided in the previous height.
1366
+ */
905
1367
  round: number;
906
1368
  /**
907
1369
  * List of validators' addresses in the last validator set with their voting
@@ -917,6 +1379,9 @@ export interface ExtendedCommitInfoAminoMsg {
917
1379
  * Event allows application developers to attach additional information to
918
1380
  * ResponseFinalizeBlock and ResponseCheckTx.
919
1381
  * Later, transactions may be queried using these events.
1382
+ * @name Event
1383
+ * @package tendermint.abci
1384
+ * @see proto type: tendermint.abci.Event
920
1385
  */
921
1386
  export interface Event {
922
1387
  type: string;
@@ -930,6 +1395,9 @@ export interface EventProtoMsg {
930
1395
  * Event allows application developers to attach additional information to
931
1396
  * ResponseFinalizeBlock and ResponseCheckTx.
932
1397
  * Later, transactions may be queried using these events.
1398
+ * @name EventAmino
1399
+ * @package tendermint.abci
1400
+ * @see proto type: tendermint.abci.Event
933
1401
  */
934
1402
  export interface EventAmino {
935
1403
  type: string;
@@ -939,22 +1407,36 @@ export interface EventAminoMsg {
939
1407
  type: "/tendermint.abci.Event";
940
1408
  value: EventAmino;
941
1409
  }
942
- /** EventAttribute is a single key-value pair, associated with an event. */
1410
+ /**
1411
+ * EventAttribute is a single key-value pair, associated with an event.
1412
+ * @name EventAttribute
1413
+ * @package tendermint.abci
1414
+ * @see proto type: tendermint.abci.EventAttribute
1415
+ */
943
1416
  export interface EventAttribute {
944
1417
  key: string;
945
1418
  value: string;
946
- /** nondeterministic */
1419
+ /**
1420
+ * nondeterministic
1421
+ */
947
1422
  index: boolean;
948
1423
  }
949
1424
  export interface EventAttributeProtoMsg {
950
1425
  typeUrl: "/tendermint.abci.EventAttribute";
951
1426
  value: Uint8Array;
952
1427
  }
953
- /** EventAttribute is a single key-value pair, associated with an event. */
1428
+ /**
1429
+ * EventAttribute is a single key-value pair, associated with an event.
1430
+ * @name EventAttributeAmino
1431
+ * @package tendermint.abci
1432
+ * @see proto type: tendermint.abci.EventAttribute
1433
+ */
954
1434
  export interface EventAttributeAmino {
955
1435
  key: string;
956
1436
  value: string;
957
- /** nondeterministic */
1437
+ /**
1438
+ * nondeterministic
1439
+ */
958
1440
  index: boolean;
959
1441
  }
960
1442
  export interface EventAttributeAminoMsg {
@@ -965,13 +1447,20 @@ export interface EventAttributeAminoMsg {
965
1447
  * ExecTxResult contains results of executing one individual transaction.
966
1448
  *
967
1449
  * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
1450
+ * @name ExecTxResult
1451
+ * @package tendermint.abci
1452
+ * @see proto type: tendermint.abci.ExecTxResult
968
1453
  */
969
1454
  export interface ExecTxResult {
970
1455
  code: number;
971
1456
  data: Uint8Array;
972
- /** nondeterministic */
1457
+ /**
1458
+ * nondeterministic
1459
+ */
973
1460
  log: string;
974
- /** nondeterministic */
1461
+ /**
1462
+ * nondeterministic
1463
+ */
975
1464
  info: string;
976
1465
  gasWanted: bigint;
977
1466
  gasUsed: bigint;
@@ -986,13 +1475,20 @@ export interface ExecTxResultProtoMsg {
986
1475
  * ExecTxResult contains results of executing one individual transaction.
987
1476
  *
988
1477
  * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
1478
+ * @name ExecTxResultAmino
1479
+ * @package tendermint.abci
1480
+ * @see proto type: tendermint.abci.ExecTxResult
989
1481
  */
990
1482
  export interface ExecTxResultAmino {
991
1483
  code: number;
992
1484
  data: string;
993
- /** nondeterministic */
1485
+ /**
1486
+ * nondeterministic
1487
+ */
994
1488
  log: string;
995
- /** nondeterministic */
1489
+ /**
1490
+ * nondeterministic
1491
+ */
996
1492
  info: string;
997
1493
  gas_wanted: string;
998
1494
  gas_used: string;
@@ -1007,6 +1503,9 @@ export interface ExecTxResultAminoMsg {
1007
1503
  * TxResult contains results of executing the transaction.
1008
1504
  *
1009
1505
  * One usage is indexing transaction results.
1506
+ * @name TxResult
1507
+ * @package tendermint.abci
1508
+ * @see proto type: tendermint.abci.TxResult
1010
1509
  */
1011
1510
  export interface TxResult {
1012
1511
  height: bigint;
@@ -1022,6 +1521,9 @@ export interface TxResultProtoMsg {
1022
1521
  * TxResult contains results of executing the transaction.
1023
1522
  *
1024
1523
  * One usage is indexing transaction results.
1524
+ * @name TxResultAmino
1525
+ * @package tendermint.abci
1526
+ * @see proto type: tendermint.abci.TxResult
1025
1527
  */
1026
1528
  export interface TxResultAmino {
1027
1529
  height: string;
@@ -1033,26 +1535,49 @@ export interface TxResultAminoMsg {
1033
1535
  type: "/tendermint.abci.TxResult";
1034
1536
  value: TxResultAmino;
1035
1537
  }
1538
+ /**
1539
+ * @name Validator
1540
+ * @package tendermint.abci
1541
+ * @see proto type: tendermint.abci.Validator
1542
+ */
1036
1543
  export interface Validator {
1037
- /** The first 20 bytes of SHA256(public key) */
1544
+ /**
1545
+ * The first 20 bytes of SHA256(public key)
1546
+ */
1038
1547
  address: Uint8Array;
1039
- /** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
1548
+ /**
1549
+ * PubKey pub_key = 2 [(gogoproto.nullable)=false];
1550
+ */
1040
1551
  power: bigint;
1041
1552
  }
1042
1553
  export interface ValidatorProtoMsg {
1043
1554
  typeUrl: "/tendermint.abci.Validator";
1044
1555
  value: Uint8Array;
1045
1556
  }
1557
+ /**
1558
+ * @name ValidatorAmino
1559
+ * @package tendermint.abci
1560
+ * @see proto type: tendermint.abci.Validator
1561
+ */
1046
1562
  export interface ValidatorAmino {
1047
- /** The first 20 bytes of SHA256(public key) */
1563
+ /**
1564
+ * The first 20 bytes of SHA256(public key)
1565
+ */
1048
1566
  address: string;
1049
- /** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
1567
+ /**
1568
+ * PubKey pub_key = 2 [(gogoproto.nullable)=false];
1569
+ */
1050
1570
  power: string;
1051
1571
  }
1052
1572
  export interface ValidatorAminoMsg {
1053
1573
  type: "/tendermint.abci.Validator";
1054
1574
  value: ValidatorAmino;
1055
1575
  }
1576
+ /**
1577
+ * @name ValidatorUpdate
1578
+ * @package tendermint.abci
1579
+ * @see proto type: tendermint.abci.ValidatorUpdate
1580
+ */
1056
1581
  export interface ValidatorUpdate {
1057
1582
  pubKey: PublicKey;
1058
1583
  power: bigint;
@@ -1061,6 +1586,11 @@ export interface ValidatorUpdateProtoMsg {
1061
1586
  typeUrl: "/tendermint.abci.ValidatorUpdate";
1062
1587
  value: Uint8Array;
1063
1588
  }
1589
+ /**
1590
+ * @name ValidatorUpdateAmino
1591
+ * @package tendermint.abci
1592
+ * @see proto type: tendermint.abci.ValidatorUpdate
1593
+ */
1064
1594
  export interface ValidatorUpdateAmino {
1065
1595
  pub_key: PublicKeyAmino;
1066
1596
  power: string;
@@ -1069,6 +1599,11 @@ export interface ValidatorUpdateAminoMsg {
1069
1599
  type: "/tendermint.abci.ValidatorUpdate";
1070
1600
  value: ValidatorUpdateAmino;
1071
1601
  }
1602
+ /**
1603
+ * @name VoteInfo
1604
+ * @package tendermint.abci
1605
+ * @see proto type: tendermint.abci.VoteInfo
1606
+ */
1072
1607
  export interface VoteInfo {
1073
1608
  validator: Validator;
1074
1609
  blockIdFlag: BlockIDFlag;
@@ -1077,6 +1612,11 @@ export interface VoteInfoProtoMsg {
1077
1612
  typeUrl: "/tendermint.abci.VoteInfo";
1078
1613
  value: Uint8Array;
1079
1614
  }
1615
+ /**
1616
+ * @name VoteInfoAmino
1617
+ * @package tendermint.abci
1618
+ * @see proto type: tendermint.abci.VoteInfo
1619
+ */
1080
1620
  export interface VoteInfoAmino {
1081
1621
  validator: ValidatorAmino;
1082
1622
  block_id_flag: BlockIDFlag;
@@ -1085,41 +1625,78 @@ export interface VoteInfoAminoMsg {
1085
1625
  type: "/tendermint.abci.VoteInfo";
1086
1626
  value: VoteInfoAmino;
1087
1627
  }
1628
+ /**
1629
+ * @name ExtendedVoteInfo
1630
+ * @package tendermint.abci
1631
+ * @see proto type: tendermint.abci.ExtendedVoteInfo
1632
+ */
1088
1633
  export interface ExtendedVoteInfo {
1089
- /** The validator that sent the vote. */
1634
+ /**
1635
+ * The validator that sent the vote.
1636
+ */
1090
1637
  validator: Validator;
1091
- /** Non-deterministic extension provided by the sending validator's application. */
1638
+ /**
1639
+ * Non-deterministic extension provided by the sending validator's application.
1640
+ */
1092
1641
  voteExtension: Uint8Array;
1093
- /** Vote extension signature created by CometBFT */
1642
+ /**
1643
+ * Vote extension signature created by CometBFT
1644
+ */
1094
1645
  extensionSignature: Uint8Array;
1095
- /** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
1646
+ /**
1647
+ * block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all
1648
+ */
1096
1649
  blockIdFlag: BlockIDFlag;
1097
1650
  }
1098
1651
  export interface ExtendedVoteInfoProtoMsg {
1099
1652
  typeUrl: "/tendermint.abci.ExtendedVoteInfo";
1100
1653
  value: Uint8Array;
1101
1654
  }
1655
+ /**
1656
+ * @name ExtendedVoteInfoAmino
1657
+ * @package tendermint.abci
1658
+ * @see proto type: tendermint.abci.ExtendedVoteInfo
1659
+ */
1102
1660
  export interface ExtendedVoteInfoAmino {
1103
- /** The validator that sent the vote. */
1661
+ /**
1662
+ * The validator that sent the vote.
1663
+ */
1104
1664
  validator: ValidatorAmino;
1105
- /** Non-deterministic extension provided by the sending validator's application. */
1665
+ /**
1666
+ * Non-deterministic extension provided by the sending validator's application.
1667
+ */
1106
1668
  vote_extension: string;
1107
- /** Vote extension signature created by CometBFT */
1669
+ /**
1670
+ * Vote extension signature created by CometBFT
1671
+ */
1108
1672
  extension_signature: string;
1109
- /** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
1673
+ /**
1674
+ * block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all
1675
+ */
1110
1676
  block_id_flag: BlockIDFlag;
1111
1677
  }
1112
1678
  export interface ExtendedVoteInfoAminoMsg {
1113
1679
  type: "/tendermint.abci.ExtendedVoteInfo";
1114
1680
  value: ExtendedVoteInfoAmino;
1115
1681
  }
1682
+ /**
1683
+ * @name Misbehavior
1684
+ * @package tendermint.abci
1685
+ * @see proto type: tendermint.abci.Misbehavior
1686
+ */
1116
1687
  export interface Misbehavior {
1117
1688
  type: MisbehaviorType;
1118
- /** The offending validator */
1689
+ /**
1690
+ * The offending validator
1691
+ */
1119
1692
  validator: Validator;
1120
- /** The height when the offense occurred */
1693
+ /**
1694
+ * The height when the offense occurred
1695
+ */
1121
1696
  height: bigint;
1122
- /** The corresponding time where the offense occurred */
1697
+ /**
1698
+ * The corresponding time where the offense occurred
1699
+ */
1123
1700
  time: Date;
1124
1701
  /**
1125
1702
  * Total voting power of the validator set in case the ABCI application does
@@ -1132,13 +1709,24 @@ export interface MisbehaviorProtoMsg {
1132
1709
  typeUrl: "/tendermint.abci.Misbehavior";
1133
1710
  value: Uint8Array;
1134
1711
  }
1712
+ /**
1713
+ * @name MisbehaviorAmino
1714
+ * @package tendermint.abci
1715
+ * @see proto type: tendermint.abci.Misbehavior
1716
+ */
1135
1717
  export interface MisbehaviorAmino {
1136
1718
  type: MisbehaviorType;
1137
- /** The offending validator */
1719
+ /**
1720
+ * The offending validator
1721
+ */
1138
1722
  validator: ValidatorAmino;
1139
- /** The height when the offense occurred */
1723
+ /**
1724
+ * The height when the offense occurred
1725
+ */
1140
1726
  height: string;
1141
- /** The corresponding time where the offense occurred */
1727
+ /**
1728
+ * The corresponding time where the offense occurred
1729
+ */
1142
1730
  time: string;
1143
1731
  /**
1144
1732
  * Total voting power of the validator set in case the ABCI application does
@@ -1151,38 +1739,73 @@ export interface MisbehaviorAminoMsg {
1151
1739
  type: "/tendermint.abci.Misbehavior";
1152
1740
  value: MisbehaviorAmino;
1153
1741
  }
1742
+ /**
1743
+ * @name Snapshot
1744
+ * @package tendermint.abci
1745
+ * @see proto type: tendermint.abci.Snapshot
1746
+ */
1154
1747
  export interface Snapshot {
1155
- /** The height at which the snapshot was taken */
1748
+ /**
1749
+ * The height at which the snapshot was taken
1750
+ */
1156
1751
  height: bigint;
1157
- /** The application-specific snapshot format */
1752
+ /**
1753
+ * The application-specific snapshot format
1754
+ */
1158
1755
  format: number;
1159
- /** Number of chunks in the snapshot */
1756
+ /**
1757
+ * Number of chunks in the snapshot
1758
+ */
1160
1759
  chunks: number;
1161
- /** Arbitrary snapshot hash, equal only if identical */
1760
+ /**
1761
+ * Arbitrary snapshot hash, equal only if identical
1762
+ */
1162
1763
  hash: Uint8Array;
1163
- /** Arbitrary application metadata */
1764
+ /**
1765
+ * Arbitrary application metadata
1766
+ */
1164
1767
  metadata: Uint8Array;
1165
1768
  }
1166
1769
  export interface SnapshotProtoMsg {
1167
1770
  typeUrl: "/tendermint.abci.Snapshot";
1168
1771
  value: Uint8Array;
1169
1772
  }
1773
+ /**
1774
+ * @name SnapshotAmino
1775
+ * @package tendermint.abci
1776
+ * @see proto type: tendermint.abci.Snapshot
1777
+ */
1170
1778
  export interface SnapshotAmino {
1171
- /** The height at which the snapshot was taken */
1779
+ /**
1780
+ * The height at which the snapshot was taken
1781
+ */
1172
1782
  height: string;
1173
- /** The application-specific snapshot format */
1783
+ /**
1784
+ * The application-specific snapshot format
1785
+ */
1174
1786
  format: number;
1175
- /** Number of chunks in the snapshot */
1787
+ /**
1788
+ * Number of chunks in the snapshot
1789
+ */
1176
1790
  chunks: number;
1177
- /** Arbitrary snapshot hash, equal only if identical */
1791
+ /**
1792
+ * Arbitrary snapshot hash, equal only if identical
1793
+ */
1178
1794
  hash: string;
1179
- /** Arbitrary application metadata */
1795
+ /**
1796
+ * Arbitrary application metadata
1797
+ */
1180
1798
  metadata: string;
1181
1799
  }
1182
1800
  export interface SnapshotAminoMsg {
1183
1801
  type: "/tendermint.abci.Snapshot";
1184
1802
  value: SnapshotAmino;
1185
1803
  }
1804
+ /**
1805
+ * @name Request
1806
+ * @package tendermint.abci
1807
+ * @see proto type: tendermint.abci.Request
1808
+ */
1186
1809
  export declare const Request: {
1187
1810
  typeUrl: string;
1188
1811
  is(o: any): o is Request;
@@ -1198,6 +1821,11 @@ export declare const Request: {
1198
1821
  toProtoMsg(message: Request): RequestProtoMsg;
1199
1822
  registerTypeUrl(): void;
1200
1823
  };
1824
+ /**
1825
+ * @name RequestEcho
1826
+ * @package tendermint.abci
1827
+ * @see proto type: tendermint.abci.RequestEcho
1828
+ */
1201
1829
  export declare const RequestEcho: {
1202
1830
  typeUrl: string;
1203
1831
  is(o: any): o is RequestEcho;
@@ -1213,6 +1841,11 @@ export declare const RequestEcho: {
1213
1841
  toProtoMsg(message: RequestEcho): RequestEchoProtoMsg;
1214
1842
  registerTypeUrl(): void;
1215
1843
  };
1844
+ /**
1845
+ * @name RequestFlush
1846
+ * @package tendermint.abci
1847
+ * @see proto type: tendermint.abci.RequestFlush
1848
+ */
1216
1849
  export declare const RequestFlush: {
1217
1850
  typeUrl: string;
1218
1851
  is(o: any): o is RequestFlush;
@@ -1228,6 +1861,11 @@ export declare const RequestFlush: {
1228
1861
  toProtoMsg(message: RequestFlush): RequestFlushProtoMsg;
1229
1862
  registerTypeUrl(): void;
1230
1863
  };
1864
+ /**
1865
+ * @name RequestInfo
1866
+ * @package tendermint.abci
1867
+ * @see proto type: tendermint.abci.RequestInfo
1868
+ */
1231
1869
  export declare const RequestInfo: {
1232
1870
  typeUrl: string;
1233
1871
  is(o: any): o is RequestInfo;
@@ -1243,6 +1881,11 @@ export declare const RequestInfo: {
1243
1881
  toProtoMsg(message: RequestInfo): RequestInfoProtoMsg;
1244
1882
  registerTypeUrl(): void;
1245
1883
  };
1884
+ /**
1885
+ * @name RequestInitChain
1886
+ * @package tendermint.abci
1887
+ * @see proto type: tendermint.abci.RequestInitChain
1888
+ */
1246
1889
  export declare const RequestInitChain: {
1247
1890
  typeUrl: string;
1248
1891
  is(o: any): o is RequestInitChain;
@@ -1258,6 +1901,11 @@ export declare const RequestInitChain: {
1258
1901
  toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg;
1259
1902
  registerTypeUrl(): void;
1260
1903
  };
1904
+ /**
1905
+ * @name RequestQuery
1906
+ * @package tendermint.abci
1907
+ * @see proto type: tendermint.abci.RequestQuery
1908
+ */
1261
1909
  export declare const RequestQuery: {
1262
1910
  typeUrl: string;
1263
1911
  is(o: any): o is RequestQuery;
@@ -1273,6 +1921,11 @@ export declare const RequestQuery: {
1273
1921
  toProtoMsg(message: RequestQuery): RequestQueryProtoMsg;
1274
1922
  registerTypeUrl(): void;
1275
1923
  };
1924
+ /**
1925
+ * @name RequestCheckTx
1926
+ * @package tendermint.abci
1927
+ * @see proto type: tendermint.abci.RequestCheckTx
1928
+ */
1276
1929
  export declare const RequestCheckTx: {
1277
1930
  typeUrl: string;
1278
1931
  is(o: any): o is RequestCheckTx;
@@ -1288,6 +1941,11 @@ export declare const RequestCheckTx: {
1288
1941
  toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg;
1289
1942
  registerTypeUrl(): void;
1290
1943
  };
1944
+ /**
1945
+ * @name RequestCommit
1946
+ * @package tendermint.abci
1947
+ * @see proto type: tendermint.abci.RequestCommit
1948
+ */
1291
1949
  export declare const RequestCommit: {
1292
1950
  typeUrl: string;
1293
1951
  is(o: any): o is RequestCommit;
@@ -1303,6 +1961,12 @@ export declare const RequestCommit: {
1303
1961
  toProtoMsg(message: RequestCommit): RequestCommitProtoMsg;
1304
1962
  registerTypeUrl(): void;
1305
1963
  };
1964
+ /**
1965
+ * lists available snapshots
1966
+ * @name RequestListSnapshots
1967
+ * @package tendermint.abci
1968
+ * @see proto type: tendermint.abci.RequestListSnapshots
1969
+ */
1306
1970
  export declare const RequestListSnapshots: {
1307
1971
  typeUrl: string;
1308
1972
  is(o: any): o is RequestListSnapshots;
@@ -1318,6 +1982,12 @@ export declare const RequestListSnapshots: {
1318
1982
  toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg;
1319
1983
  registerTypeUrl(): void;
1320
1984
  };
1985
+ /**
1986
+ * offers a snapshot to the application
1987
+ * @name RequestOfferSnapshot
1988
+ * @package tendermint.abci
1989
+ * @see proto type: tendermint.abci.RequestOfferSnapshot
1990
+ */
1321
1991
  export declare const RequestOfferSnapshot: {
1322
1992
  typeUrl: string;
1323
1993
  is(o: any): o is RequestOfferSnapshot;
@@ -1333,6 +2003,12 @@ export declare const RequestOfferSnapshot: {
1333
2003
  toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg;
1334
2004
  registerTypeUrl(): void;
1335
2005
  };
2006
+ /**
2007
+ * loads a snapshot chunk
2008
+ * @name RequestLoadSnapshotChunk
2009
+ * @package tendermint.abci
2010
+ * @see proto type: tendermint.abci.RequestLoadSnapshotChunk
2011
+ */
1336
2012
  export declare const RequestLoadSnapshotChunk: {
1337
2013
  typeUrl: string;
1338
2014
  is(o: any): o is RequestLoadSnapshotChunk;
@@ -1348,6 +2024,12 @@ export declare const RequestLoadSnapshotChunk: {
1348
2024
  toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg;
1349
2025
  registerTypeUrl(): void;
1350
2026
  };
2027
+ /**
2028
+ * Applies a snapshot chunk
2029
+ * @name RequestApplySnapshotChunk
2030
+ * @package tendermint.abci
2031
+ * @see proto type: tendermint.abci.RequestApplySnapshotChunk
2032
+ */
1351
2033
  export declare const RequestApplySnapshotChunk: {
1352
2034
  typeUrl: string;
1353
2035
  is(o: any): o is RequestApplySnapshotChunk;
@@ -1363,6 +2045,11 @@ export declare const RequestApplySnapshotChunk: {
1363
2045
  toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg;
1364
2046
  registerTypeUrl(): void;
1365
2047
  };
2048
+ /**
2049
+ * @name RequestPrepareProposal
2050
+ * @package tendermint.abci
2051
+ * @see proto type: tendermint.abci.RequestPrepareProposal
2052
+ */
1366
2053
  export declare const RequestPrepareProposal: {
1367
2054
  typeUrl: string;
1368
2055
  is(o: any): o is RequestPrepareProposal;
@@ -1378,6 +2065,11 @@ export declare const RequestPrepareProposal: {
1378
2065
  toProtoMsg(message: RequestPrepareProposal): RequestPrepareProposalProtoMsg;
1379
2066
  registerTypeUrl(): void;
1380
2067
  };
2068
+ /**
2069
+ * @name RequestProcessProposal
2070
+ * @package tendermint.abci
2071
+ * @see proto type: tendermint.abci.RequestProcessProposal
2072
+ */
1381
2073
  export declare const RequestProcessProposal: {
1382
2074
  typeUrl: string;
1383
2075
  is(o: any): o is RequestProcessProposal;
@@ -1393,6 +2085,12 @@ export declare const RequestProcessProposal: {
1393
2085
  toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg;
1394
2086
  registerTypeUrl(): void;
1395
2087
  };
2088
+ /**
2089
+ * Extends a vote with application-injected data
2090
+ * @name RequestExtendVote
2091
+ * @package tendermint.abci
2092
+ * @see proto type: tendermint.abci.RequestExtendVote
2093
+ */
1396
2094
  export declare const RequestExtendVote: {
1397
2095
  typeUrl: string;
1398
2096
  is(o: any): o is RequestExtendVote;
@@ -1408,6 +2106,12 @@ export declare const RequestExtendVote: {
1408
2106
  toProtoMsg(message: RequestExtendVote): RequestExtendVoteProtoMsg;
1409
2107
  registerTypeUrl(): void;
1410
2108
  };
2109
+ /**
2110
+ * Verify the vote extension
2111
+ * @name RequestVerifyVoteExtension
2112
+ * @package tendermint.abci
2113
+ * @see proto type: tendermint.abci.RequestVerifyVoteExtension
2114
+ */
1411
2115
  export declare const RequestVerifyVoteExtension: {
1412
2116
  typeUrl: string;
1413
2117
  is(o: any): o is RequestVerifyVoteExtension;
@@ -1423,6 +2127,11 @@ export declare const RequestVerifyVoteExtension: {
1423
2127
  toProtoMsg(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionProtoMsg;
1424
2128
  registerTypeUrl(): void;
1425
2129
  };
2130
+ /**
2131
+ * @name RequestFinalizeBlock
2132
+ * @package tendermint.abci
2133
+ * @see proto type: tendermint.abci.RequestFinalizeBlock
2134
+ */
1426
2135
  export declare const RequestFinalizeBlock: {
1427
2136
  typeUrl: string;
1428
2137
  is(o: any): o is RequestFinalizeBlock;
@@ -1438,6 +2147,11 @@ export declare const RequestFinalizeBlock: {
1438
2147
  toProtoMsg(message: RequestFinalizeBlock): RequestFinalizeBlockProtoMsg;
1439
2148
  registerTypeUrl(): void;
1440
2149
  };
2150
+ /**
2151
+ * @name Response
2152
+ * @package tendermint.abci
2153
+ * @see proto type: tendermint.abci.Response
2154
+ */
1441
2155
  export declare const Response: {
1442
2156
  typeUrl: string;
1443
2157
  is(o: any): o is Response;
@@ -1453,6 +2167,12 @@ export declare const Response: {
1453
2167
  toProtoMsg(message: Response): ResponseProtoMsg;
1454
2168
  registerTypeUrl(): void;
1455
2169
  };
2170
+ /**
2171
+ * nondeterministic
2172
+ * @name ResponseException
2173
+ * @package tendermint.abci
2174
+ * @see proto type: tendermint.abci.ResponseException
2175
+ */
1456
2176
  export declare const ResponseException: {
1457
2177
  typeUrl: string;
1458
2178
  is(o: any): o is ResponseException;
@@ -1468,6 +2188,11 @@ export declare const ResponseException: {
1468
2188
  toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg;
1469
2189
  registerTypeUrl(): void;
1470
2190
  };
2191
+ /**
2192
+ * @name ResponseEcho
2193
+ * @package tendermint.abci
2194
+ * @see proto type: tendermint.abci.ResponseEcho
2195
+ */
1471
2196
  export declare const ResponseEcho: {
1472
2197
  typeUrl: string;
1473
2198
  is(o: any): o is ResponseEcho;
@@ -1483,6 +2208,11 @@ export declare const ResponseEcho: {
1483
2208
  toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg;
1484
2209
  registerTypeUrl(): void;
1485
2210
  };
2211
+ /**
2212
+ * @name ResponseFlush
2213
+ * @package tendermint.abci
2214
+ * @see proto type: tendermint.abci.ResponseFlush
2215
+ */
1486
2216
  export declare const ResponseFlush: {
1487
2217
  typeUrl: string;
1488
2218
  is(o: any): o is ResponseFlush;
@@ -1498,6 +2228,11 @@ export declare const ResponseFlush: {
1498
2228
  toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg;
1499
2229
  registerTypeUrl(): void;
1500
2230
  };
2231
+ /**
2232
+ * @name ResponseInfo
2233
+ * @package tendermint.abci
2234
+ * @see proto type: tendermint.abci.ResponseInfo
2235
+ */
1501
2236
  export declare const ResponseInfo: {
1502
2237
  typeUrl: string;
1503
2238
  is(o: any): o is ResponseInfo;
@@ -1513,6 +2248,11 @@ export declare const ResponseInfo: {
1513
2248
  toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg;
1514
2249
  registerTypeUrl(): void;
1515
2250
  };
2251
+ /**
2252
+ * @name ResponseInitChain
2253
+ * @package tendermint.abci
2254
+ * @see proto type: tendermint.abci.ResponseInitChain
2255
+ */
1516
2256
  export declare const ResponseInitChain: {
1517
2257
  typeUrl: string;
1518
2258
  is(o: any): o is ResponseInitChain;
@@ -1528,6 +2268,11 @@ export declare const ResponseInitChain: {
1528
2268
  toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg;
1529
2269
  registerTypeUrl(): void;
1530
2270
  };
2271
+ /**
2272
+ * @name ResponseQuery
2273
+ * @package tendermint.abci
2274
+ * @see proto type: tendermint.abci.ResponseQuery
2275
+ */
1531
2276
  export declare const ResponseQuery: {
1532
2277
  typeUrl: string;
1533
2278
  is(o: any): o is ResponseQuery;
@@ -1543,6 +2288,11 @@ export declare const ResponseQuery: {
1543
2288
  toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg;
1544
2289
  registerTypeUrl(): void;
1545
2290
  };
2291
+ /**
2292
+ * @name ResponseCheckTx
2293
+ * @package tendermint.abci
2294
+ * @see proto type: tendermint.abci.ResponseCheckTx
2295
+ */
1546
2296
  export declare const ResponseCheckTx: {
1547
2297
  typeUrl: string;
1548
2298
  is(o: any): o is ResponseCheckTx;
@@ -1558,6 +2308,11 @@ export declare const ResponseCheckTx: {
1558
2308
  toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg;
1559
2309
  registerTypeUrl(): void;
1560
2310
  };
2311
+ /**
2312
+ * @name ResponseCommit
2313
+ * @package tendermint.abci
2314
+ * @see proto type: tendermint.abci.ResponseCommit
2315
+ */
1561
2316
  export declare const ResponseCommit: {
1562
2317
  typeUrl: string;
1563
2318
  is(o: any): o is ResponseCommit;
@@ -1573,6 +2328,11 @@ export declare const ResponseCommit: {
1573
2328
  toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg;
1574
2329
  registerTypeUrl(): void;
1575
2330
  };
2331
+ /**
2332
+ * @name ResponseListSnapshots
2333
+ * @package tendermint.abci
2334
+ * @see proto type: tendermint.abci.ResponseListSnapshots
2335
+ */
1576
2336
  export declare const ResponseListSnapshots: {
1577
2337
  typeUrl: string;
1578
2338
  is(o: any): o is ResponseListSnapshots;
@@ -1588,6 +2348,11 @@ export declare const ResponseListSnapshots: {
1588
2348
  toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg;
1589
2349
  registerTypeUrl(): void;
1590
2350
  };
2351
+ /**
2352
+ * @name ResponseOfferSnapshot
2353
+ * @package tendermint.abci
2354
+ * @see proto type: tendermint.abci.ResponseOfferSnapshot
2355
+ */
1591
2356
  export declare const ResponseOfferSnapshot: {
1592
2357
  typeUrl: string;
1593
2358
  is(o: any): o is ResponseOfferSnapshot;
@@ -1603,6 +2368,11 @@ export declare const ResponseOfferSnapshot: {
1603
2368
  toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg;
1604
2369
  registerTypeUrl(): void;
1605
2370
  };
2371
+ /**
2372
+ * @name ResponseLoadSnapshotChunk
2373
+ * @package tendermint.abci
2374
+ * @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
2375
+ */
1606
2376
  export declare const ResponseLoadSnapshotChunk: {
1607
2377
  typeUrl: string;
1608
2378
  is(o: any): o is ResponseLoadSnapshotChunk;
@@ -1618,6 +2388,11 @@ export declare const ResponseLoadSnapshotChunk: {
1618
2388
  toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg;
1619
2389
  registerTypeUrl(): void;
1620
2390
  };
2391
+ /**
2392
+ * @name ResponseApplySnapshotChunk
2393
+ * @package tendermint.abci
2394
+ * @see proto type: tendermint.abci.ResponseApplySnapshotChunk
2395
+ */
1621
2396
  export declare const ResponseApplySnapshotChunk: {
1622
2397
  typeUrl: string;
1623
2398
  is(o: any): o is ResponseApplySnapshotChunk;
@@ -1633,6 +2408,11 @@ export declare const ResponseApplySnapshotChunk: {
1633
2408
  toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg;
1634
2409
  registerTypeUrl(): void;
1635
2410
  };
2411
+ /**
2412
+ * @name ResponsePrepareProposal
2413
+ * @package tendermint.abci
2414
+ * @see proto type: tendermint.abci.ResponsePrepareProposal
2415
+ */
1636
2416
  export declare const ResponsePrepareProposal: {
1637
2417
  typeUrl: string;
1638
2418
  is(o: any): o is ResponsePrepareProposal;
@@ -1648,6 +2428,11 @@ export declare const ResponsePrepareProposal: {
1648
2428
  toProtoMsg(message: ResponsePrepareProposal): ResponsePrepareProposalProtoMsg;
1649
2429
  registerTypeUrl(): void;
1650
2430
  };
2431
+ /**
2432
+ * @name ResponseProcessProposal
2433
+ * @package tendermint.abci
2434
+ * @see proto type: tendermint.abci.ResponseProcessProposal
2435
+ */
1651
2436
  export declare const ResponseProcessProposal: {
1652
2437
  typeUrl: string;
1653
2438
  is(o: any): o is ResponseProcessProposal;
@@ -1663,6 +2448,11 @@ export declare const ResponseProcessProposal: {
1663
2448
  toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg;
1664
2449
  registerTypeUrl(): void;
1665
2450
  };
2451
+ /**
2452
+ * @name ResponseExtendVote
2453
+ * @package tendermint.abci
2454
+ * @see proto type: tendermint.abci.ResponseExtendVote
2455
+ */
1666
2456
  export declare const ResponseExtendVote: {
1667
2457
  typeUrl: string;
1668
2458
  is(o: any): o is ResponseExtendVote;
@@ -1678,6 +2468,11 @@ export declare const ResponseExtendVote: {
1678
2468
  toProtoMsg(message: ResponseExtendVote): ResponseExtendVoteProtoMsg;
1679
2469
  registerTypeUrl(): void;
1680
2470
  };
2471
+ /**
2472
+ * @name ResponseVerifyVoteExtension
2473
+ * @package tendermint.abci
2474
+ * @see proto type: tendermint.abci.ResponseVerifyVoteExtension
2475
+ */
1681
2476
  export declare const ResponseVerifyVoteExtension: {
1682
2477
  typeUrl: string;
1683
2478
  is(o: any): o is ResponseVerifyVoteExtension;
@@ -1693,6 +2488,11 @@ export declare const ResponseVerifyVoteExtension: {
1693
2488
  toProtoMsg(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionProtoMsg;
1694
2489
  registerTypeUrl(): void;
1695
2490
  };
2491
+ /**
2492
+ * @name ResponseFinalizeBlock
2493
+ * @package tendermint.abci
2494
+ * @see proto type: tendermint.abci.ResponseFinalizeBlock
2495
+ */
1696
2496
  export declare const ResponseFinalizeBlock: {
1697
2497
  typeUrl: string;
1698
2498
  is(o: any): o is ResponseFinalizeBlock;
@@ -1708,6 +2508,11 @@ export declare const ResponseFinalizeBlock: {
1708
2508
  toProtoMsg(message: ResponseFinalizeBlock): ResponseFinalizeBlockProtoMsg;
1709
2509
  registerTypeUrl(): void;
1710
2510
  };
2511
+ /**
2512
+ * @name CommitInfo
2513
+ * @package tendermint.abci
2514
+ * @see proto type: tendermint.abci.CommitInfo
2515
+ */
1711
2516
  export declare const CommitInfo: {
1712
2517
  typeUrl: string;
1713
2518
  is(o: any): o is CommitInfo;
@@ -1723,6 +2528,14 @@ export declare const CommitInfo: {
1723
2528
  toProtoMsg(message: CommitInfo): CommitInfoProtoMsg;
1724
2529
  registerTypeUrl(): void;
1725
2530
  };
2531
+ /**
2532
+ * ExtendedCommitInfo is similar to CommitInfo except that it is only used in
2533
+ * the PrepareProposal request such that CometBFT can provide vote extensions
2534
+ * to the application.
2535
+ * @name ExtendedCommitInfo
2536
+ * @package tendermint.abci
2537
+ * @see proto type: tendermint.abci.ExtendedCommitInfo
2538
+ */
1726
2539
  export declare const ExtendedCommitInfo: {
1727
2540
  typeUrl: string;
1728
2541
  is(o: any): o is ExtendedCommitInfo;
@@ -1738,6 +2551,14 @@ export declare const ExtendedCommitInfo: {
1738
2551
  toProtoMsg(message: ExtendedCommitInfo): ExtendedCommitInfoProtoMsg;
1739
2552
  registerTypeUrl(): void;
1740
2553
  };
2554
+ /**
2555
+ * Event allows application developers to attach additional information to
2556
+ * ResponseFinalizeBlock and ResponseCheckTx.
2557
+ * Later, transactions may be queried using these events.
2558
+ * @name Event
2559
+ * @package tendermint.abci
2560
+ * @see proto type: tendermint.abci.Event
2561
+ */
1741
2562
  export declare const Event: {
1742
2563
  typeUrl: string;
1743
2564
  is(o: any): o is Event;
@@ -1753,6 +2574,12 @@ export declare const Event: {
1753
2574
  toProtoMsg(message: Event): EventProtoMsg;
1754
2575
  registerTypeUrl(): void;
1755
2576
  };
2577
+ /**
2578
+ * EventAttribute is a single key-value pair, associated with an event.
2579
+ * @name EventAttribute
2580
+ * @package tendermint.abci
2581
+ * @see proto type: tendermint.abci.EventAttribute
2582
+ */
1756
2583
  export declare const EventAttribute: {
1757
2584
  typeUrl: string;
1758
2585
  is(o: any): o is EventAttribute;
@@ -1768,6 +2595,14 @@ export declare const EventAttribute: {
1768
2595
  toProtoMsg(message: EventAttribute): EventAttributeProtoMsg;
1769
2596
  registerTypeUrl(): void;
1770
2597
  };
2598
+ /**
2599
+ * ExecTxResult contains results of executing one individual transaction.
2600
+ *
2601
+ * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
2602
+ * @name ExecTxResult
2603
+ * @package tendermint.abci
2604
+ * @see proto type: tendermint.abci.ExecTxResult
2605
+ */
1771
2606
  export declare const ExecTxResult: {
1772
2607
  typeUrl: string;
1773
2608
  is(o: any): o is ExecTxResult;
@@ -1783,6 +2618,14 @@ export declare const ExecTxResult: {
1783
2618
  toProtoMsg(message: ExecTxResult): ExecTxResultProtoMsg;
1784
2619
  registerTypeUrl(): void;
1785
2620
  };
2621
+ /**
2622
+ * TxResult contains results of executing the transaction.
2623
+ *
2624
+ * One usage is indexing transaction results.
2625
+ * @name TxResult
2626
+ * @package tendermint.abci
2627
+ * @see proto type: tendermint.abci.TxResult
2628
+ */
1786
2629
  export declare const TxResult: {
1787
2630
  typeUrl: string;
1788
2631
  is(o: any): o is TxResult;
@@ -1798,6 +2641,11 @@ export declare const TxResult: {
1798
2641
  toProtoMsg(message: TxResult): TxResultProtoMsg;
1799
2642
  registerTypeUrl(): void;
1800
2643
  };
2644
+ /**
2645
+ * @name Validator
2646
+ * @package tendermint.abci
2647
+ * @see proto type: tendermint.abci.Validator
2648
+ */
1801
2649
  export declare const Validator: {
1802
2650
  typeUrl: string;
1803
2651
  is(o: any): o is Validator;
@@ -1813,6 +2661,11 @@ export declare const Validator: {
1813
2661
  toProtoMsg(message: Validator): ValidatorProtoMsg;
1814
2662
  registerTypeUrl(): void;
1815
2663
  };
2664
+ /**
2665
+ * @name ValidatorUpdate
2666
+ * @package tendermint.abci
2667
+ * @see proto type: tendermint.abci.ValidatorUpdate
2668
+ */
1816
2669
  export declare const ValidatorUpdate: {
1817
2670
  typeUrl: string;
1818
2671
  is(o: any): o is ValidatorUpdate;
@@ -1828,6 +2681,11 @@ export declare const ValidatorUpdate: {
1828
2681
  toProtoMsg(message: ValidatorUpdate): ValidatorUpdateProtoMsg;
1829
2682
  registerTypeUrl(): void;
1830
2683
  };
2684
+ /**
2685
+ * @name VoteInfo
2686
+ * @package tendermint.abci
2687
+ * @see proto type: tendermint.abci.VoteInfo
2688
+ */
1831
2689
  export declare const VoteInfo: {
1832
2690
  typeUrl: string;
1833
2691
  is(o: any): o is VoteInfo;
@@ -1843,6 +2701,11 @@ export declare const VoteInfo: {
1843
2701
  toProtoMsg(message: VoteInfo): VoteInfoProtoMsg;
1844
2702
  registerTypeUrl(): void;
1845
2703
  };
2704
+ /**
2705
+ * @name ExtendedVoteInfo
2706
+ * @package tendermint.abci
2707
+ * @see proto type: tendermint.abci.ExtendedVoteInfo
2708
+ */
1846
2709
  export declare const ExtendedVoteInfo: {
1847
2710
  typeUrl: string;
1848
2711
  is(o: any): o is ExtendedVoteInfo;
@@ -1858,6 +2721,11 @@ export declare const ExtendedVoteInfo: {
1858
2721
  toProtoMsg(message: ExtendedVoteInfo): ExtendedVoteInfoProtoMsg;
1859
2722
  registerTypeUrl(): void;
1860
2723
  };
2724
+ /**
2725
+ * @name Misbehavior
2726
+ * @package tendermint.abci
2727
+ * @see proto type: tendermint.abci.Misbehavior
2728
+ */
1861
2729
  export declare const Misbehavior: {
1862
2730
  typeUrl: string;
1863
2731
  is(o: any): o is Misbehavior;
@@ -1873,6 +2741,11 @@ export declare const Misbehavior: {
1873
2741
  toProtoMsg(message: Misbehavior): MisbehaviorProtoMsg;
1874
2742
  registerTypeUrl(): void;
1875
2743
  };
2744
+ /**
2745
+ * @name Snapshot
2746
+ * @package tendermint.abci
2747
+ * @see proto type: tendermint.abci.Snapshot
2748
+ */
1876
2749
  export declare const Snapshot: {
1877
2750
  typeUrl: string;
1878
2751
  is(o: any): o is Snapshot;