@xpla/xpla-react 1.7.0-beta.0 → 1.7.0-beta.10

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 (1373) hide show
  1. package/amino/amino.d.ts +1 -0
  2. package/amino/amino.js +2 -0
  3. package/binary.d.ts +130 -0
  4. package/binary.js +370 -0
  5. package/cosmos/app/runtime/v1alpha1/module.d.ts +174 -0
  6. package/cosmos/app/runtime/v1alpha1/module.js +293 -0
  7. package/cosmos/app/runtime/v2/module.d.ts +228 -0
  8. package/cosmos/app/runtime/v2/module.js +422 -0
  9. package/cosmos/app/v1alpha1/config.d.ts +181 -0
  10. package/cosmos/app/v1alpha1/config.js +297 -0
  11. package/cosmos/app/v1alpha1/module.d.ts +234 -0
  12. package/cosmos/app/v1alpha1/module.js +281 -0
  13. package/cosmos/app/v1alpha1/query.d.ts +67 -0
  14. package/cosmos/app/v1alpha1/query.js +149 -0
  15. package/cosmos/app/v1alpha1/query.rpc.func.d.ts +4 -0
  16. package/cosmos/app/v1alpha1/query.rpc.func.js +18 -0
  17. package/cosmos/auth/module/v1/module.d.ts +88 -0
  18. package/cosmos/auth/module/v1/module.js +203 -0
  19. package/cosmos/auth/v1beta1/accounts.d.ts +104 -0
  20. package/cosmos/auth/v1beta1/accounts.js +162 -0
  21. package/cosmos/auth/v1beta1/auth.d.ts +177 -0
  22. package/cosmos/auth/v1beta1/auth.js +445 -0
  23. package/cosmos/auth/v1beta1/genesis.d.ts +42 -0
  24. package/cosmos/auth/v1beta1/genesis.js +100 -0
  25. package/cosmos/auth/v1beta1/query.d.ts +810 -0
  26. package/cosmos/auth/v1beta1/query.js +1561 -0
  27. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +22 -0
  28. package/cosmos/auth/v1beta1/query.rpc.func.js +126 -0
  29. package/cosmos/auth/v1beta1/tx.d.ts +97 -0
  30. package/cosmos/auth/v1beta1/tx.js +161 -0
  31. package/cosmos/auth/v1beta1/tx.registry.d.ts +23 -0
  32. package/cosmos/auth/v1beta1/tx.registry.js +31 -0
  33. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +4 -0
  34. package/cosmos/auth/v1beta1/tx.rpc.func.js +17 -0
  35. package/cosmos/authz/module/v1/module.d.ts +32 -0
  36. package/cosmos/authz/module/v1/module.js +70 -0
  37. package/cosmos/authz/v1beta1/authz.d.ts +181 -0
  38. package/cosmos/authz/v1beta1/authz.js +371 -0
  39. package/cosmos/authz/v1beta1/event.d.ts +86 -0
  40. package/cosmos/authz/v1beta1/event.js +209 -0
  41. package/cosmos/authz/v1beta1/genesis.d.ts +35 -0
  42. package/cosmos/authz/v1beta1/genesis.js +87 -0
  43. package/cosmos/authz/v1beta1/query.d.ts +232 -0
  44. package/cosmos/authz/v1beta1/query.js +580 -0
  45. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +8 -0
  46. package/cosmos/authz/v1beta1/query.rpc.func.js +42 -0
  47. package/cosmos/authz/v1beta1/tx.d.ts +240 -0
  48. package/cosmos/authz/v1beta1/tx.js +516 -0
  49. package/cosmos/authz/v1beta1/tx.registry.d.ts +47 -0
  50. package/cosmos/authz/v1beta1/tx.registry.js +67 -0
  51. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +8 -0
  52. package/cosmos/authz/v1beta1/tx.rpc.func.js +37 -0
  53. package/cosmos/autocli/v1/options.d.ts +412 -0
  54. package/cosmos/autocli/v1/options.js +834 -0
  55. package/cosmos/autocli/v1/query.d.ts +97 -0
  56. package/cosmos/autocli/v1/query.js +237 -0
  57. package/cosmos/autocli/v1/query.rpc.func.d.ts +4 -0
  58. package/cosmos/autocli/v1/query.rpc.func.js +18 -0
  59. package/cosmos/bank/module/v1/module.d.ts +62 -0
  60. package/cosmos/bank/module/v1/module.js +113 -0
  61. package/cosmos/bank/v1beta1/authz.d.ts +59 -0
  62. package/cosmos/bank/v1beta1/authz.js +102 -0
  63. package/cosmos/bank/v1beta1/bank.d.ts +371 -0
  64. package/cosmos/bank/v1beta1/bank.js +726 -0
  65. package/cosmos/bank/v1beta1/genesis.d.ts +112 -0
  66. package/cosmos/bank/v1beta1/genesis.js +238 -0
  67. package/cosmos/bank/v1beta1/query.d.ts +1159 -0
  68. package/cosmos/bank/v1beta1/query.js +2317 -0
  69. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +28 -0
  70. package/cosmos/bank/v1beta1/query.rpc.func.js +162 -0
  71. package/cosmos/bank/v1beta1/tx.d.ts +342 -0
  72. package/cosmos/bank/v1beta1/tx.js +666 -0
  73. package/cosmos/bank/v1beta1/tx.registry.d.ts +59 -0
  74. package/cosmos/bank/v1beta1/tx.registry.js +85 -0
  75. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +10 -0
  76. package/cosmos/bank/v1beta1/tx.rpc.func.js +47 -0
  77. package/cosmos/base/abci/v1beta1/abci.d.ts +599 -0
  78. package/cosmos/base/abci/v1beta1/abci.js +1293 -0
  79. package/cosmos/base/grpc/v2/service.d.ts +163 -0
  80. package/cosmos/base/grpc/v2/service.js +398 -0
  81. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +6 -0
  82. package/cosmos/base/grpc/v2/service.rpc.func.js +30 -0
  83. package/cosmos/base/node/v1beta1/query.d.ts +150 -0
  84. package/cosmos/base/node/v1beta1/query.js +377 -0
  85. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +6 -0
  86. package/cosmos/base/node/v1beta1/query.rpc.func.js +30 -0
  87. package/cosmos/base/query/v1beta1/pagination.d.ts +176 -0
  88. package/cosmos/base/query/v1beta1/pagination.js +222 -0
  89. package/cosmos/base/reflection/v1beta1/reflection.d.ts +144 -0
  90. package/cosmos/base/reflection/v1beta1/reflection.js +310 -0
  91. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +6 -0
  92. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +30 -0
  93. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +1008 -0
  94. package/cosmos/base/reflection/v2alpha1/reflection.js +2159 -0
  95. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +14 -0
  96. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +78 -0
  97. package/cosmos/base/tendermint/v1beta1/query.d.ts +740 -0
  98. package/cosmos/base/tendermint/v1beta1/query.js +1887 -0
  99. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +16 -0
  100. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +90 -0
  101. package/cosmos/base/tendermint/v1beta1/types.d.ts +137 -0
  102. package/cosmos/base/tendermint/v1beta1/types.js +358 -0
  103. package/cosmos/base/v1beta1/coin.d.ts +166 -0
  104. package/cosmos/base/v1beta1/coin.js +341 -0
  105. package/cosmos/circuit/module/v1/module.d.ts +36 -0
  106. package/cosmos/circuit/module/v1/module.js +83 -0
  107. package/cosmos/circuit/v1/query.d.ts +200 -0
  108. package/cosmos/circuit/v1/query.js +480 -0
  109. package/cosmos/circuit/v1/query.rpc.func.d.ts +8 -0
  110. package/cosmos/circuit/v1/query.rpc.func.js +42 -0
  111. package/cosmos/circuit/v1/tx.d.ts +251 -0
  112. package/cosmos/circuit/v1/tx.js +528 -0
  113. package/cosmos/circuit/v1/tx.registry.d.ts +47 -0
  114. package/cosmos/circuit/v1/tx.registry.js +67 -0
  115. package/cosmos/circuit/v1/tx.rpc.func.d.ts +8 -0
  116. package/cosmos/circuit/v1/tx.rpc.func.js +37 -0
  117. package/cosmos/circuit/v1/types.d.ts +151 -0
  118. package/cosmos/circuit/v1/types.js +350 -0
  119. package/cosmos/consensus/module/v1/module.d.ts +36 -0
  120. package/cosmos/consensus/module/v1/module.js +83 -0
  121. package/cosmos/consensus/v1/query.d.ts +75 -0
  122. package/cosmos/consensus/v1/query.js +149 -0
  123. package/cosmos/consensus/v1/query.rpc.func.d.ts +4 -0
  124. package/cosmos/consensus/v1/query.rpc.func.js +18 -0
  125. package/cosmos/consensus/v1/tx.d.ts +97 -0
  126. package/cosmos/consensus/v1/tx.js +197 -0
  127. package/cosmos/consensus/v1/tx.registry.d.ts +23 -0
  128. package/cosmos/consensus/v1/tx.registry.js +31 -0
  129. package/cosmos/consensus/v1/tx.rpc.func.d.ts +4 -0
  130. package/cosmos/consensus/v1/tx.rpc.func.js +17 -0
  131. package/cosmos/crisis/module/v1/module.d.ts +40 -0
  132. package/cosmos/crisis/module/v1/module.js +95 -0
  133. package/cosmos/crisis/v1beta1/genesis.d.ts +43 -0
  134. package/cosmos/crisis/v1beta1/genesis.js +84 -0
  135. package/cosmos/crisis/v1beta1/tx.d.ts +161 -0
  136. package/cosmos/crisis/v1beta1/tx.js +328 -0
  137. package/cosmos/crisis/v1beta1/tx.registry.d.ts +35 -0
  138. package/cosmos/crisis/v1beta1/tx.registry.js +49 -0
  139. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +6 -0
  140. package/cosmos/crisis/v1beta1/tx.rpc.func.js +27 -0
  141. package/cosmos/crypto/ed25519/keys.d.ts +84 -0
  142. package/cosmos/crypto/ed25519/keys.js +162 -0
  143. package/cosmos/crypto/hd/v1/hd.d.ts +58 -0
  144. package/cosmos/crypto/hd/v1/hd.js +131 -0
  145. package/cosmos/crypto/keyring/v1/record.d.ts +188 -0
  146. package/cosmos/crypto/keyring/v1/record.js +431 -0
  147. package/cosmos/crypto/multisig/keys.d.ts +45 -0
  148. package/cosmos/crypto/multisig/keys.js +99 -0
  149. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +86 -0
  150. package/cosmos/crypto/multisig/v1beta1/multisig.js +177 -0
  151. package/cosmos/crypto/secp256k1/keys.d.ts +78 -0
  152. package/cosmos/crypto/secp256k1/keys.js +162 -0
  153. package/cosmos/crypto/secp256r1/keys.d.ts +76 -0
  154. package/cosmos/crypto/secp256r1/keys.js +162 -0
  155. package/cosmos/distribution/module/v1/module.d.ts +38 -0
  156. package/cosmos/distribution/module/v1/module.js +95 -0
  157. package/cosmos/distribution/v1beta1/distribution.d.ts +541 -0
  158. package/cosmos/distribution/v1beta1/distribution.js +1158 -0
  159. package/cosmos/distribution/v1beta1/genesis.d.ts +376 -0
  160. package/cosmos/distribution/v1beta1/genesis.js +895 -0
  161. package/cosmos/distribution/v1beta1/query.d.ts +803 -0
  162. package/cosmos/distribution/v1beta1/query.js +1662 -0
  163. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +22 -0
  164. package/cosmos/distribution/v1beta1/query.rpc.func.js +126 -0
  165. package/cosmos/distribution/v1beta1/tx.d.ts +578 -0
  166. package/cosmos/distribution/v1beta1/tx.js +1145 -0
  167. package/cosmos/distribution/v1beta1/tx.registry.d.ts +95 -0
  168. package/cosmos/distribution/v1beta1/tx.registry.js +139 -0
  169. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +16 -0
  170. package/cosmos/distribution/v1beta1/tx.rpc.func.js +77 -0
  171. package/cosmos/evidence/module/v1/module.d.ts +32 -0
  172. package/cosmos/evidence/module/v1/module.js +70 -0
  173. package/cosmos/evidence/v1beta1/evidence.d.ts +54 -0
  174. package/cosmos/evidence/v1beta1/evidence.js +121 -0
  175. package/cosmos/evidence/v1beta1/genesis.d.ts +37 -0
  176. package/cosmos/evidence/v1beta1/genesis.js +87 -0
  177. package/cosmos/evidence/v1beta1/query.d.ts +176 -0
  178. package/cosmos/evidence/v1beta1/query.js +347 -0
  179. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +6 -0
  180. package/cosmos/evidence/v1beta1/query.rpc.func.js +30 -0
  181. package/cosmos/evidence/v1beta1/tx.d.ts +84 -0
  182. package/cosmos/evidence/v1beta1/tx.js +175 -0
  183. package/cosmos/evidence/v1beta1/tx.registry.d.ts +23 -0
  184. package/cosmos/evidence/v1beta1/tx.registry.js +31 -0
  185. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +4 -0
  186. package/cosmos/evidence/v1beta1/tx.rpc.func.js +17 -0
  187. package/cosmos/feegrant/module/v1/module.d.ts +32 -0
  188. package/cosmos/feegrant/module/v1/module.js +70 -0
  189. package/cosmos/feegrant/v1beta1/feegrant.d.ts +219 -0
  190. package/cosmos/feegrant/v1beta1/feegrant.js +430 -0
  191. package/cosmos/feegrant/v1beta1/genesis.d.ts +35 -0
  192. package/cosmos/feegrant/v1beta1/genesis.js +87 -0
  193. package/cosmos/feegrant/v1beta1/query.d.ts +240 -0
  194. package/cosmos/feegrant/v1beta1/query.js +541 -0
  195. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +8 -0
  196. package/cosmos/feegrant/v1beta1/query.rpc.func.js +42 -0
  197. package/cosmos/feegrant/v1beta1/tx.d.ts +233 -0
  198. package/cosmos/feegrant/v1beta1/tx.js +471 -0
  199. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +47 -0
  200. package/cosmos/feegrant/v1beta1/tx.registry.js +67 -0
  201. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +8 -0
  202. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +37 -0
  203. package/cosmos/genutil/module/v1/module.d.ts +32 -0
  204. package/cosmos/genutil/module/v1/module.js +70 -0
  205. package/cosmos/genutil/v1beta1/genesis.d.ts +36 -0
  206. package/cosmos/genutil/v1beta1/genesis.js +87 -0
  207. package/cosmos/gov/module/v1/module.d.ts +46 -0
  208. package/cosmos/gov/module/v1/module.js +95 -0
  209. package/cosmos/gov/v1/genesis.d.ts +115 -0
  210. package/cosmos/gov/v1/genesis.js +189 -0
  211. package/cosmos/gov/v1/gov.d.ts +696 -0
  212. package/cosmos/gov/v1/gov.js +1363 -0
  213. package/cosmos/gov/v1/query.d.ts +706 -0
  214. package/cosmos/gov/v1/query.js +1564 -0
  215. package/cosmos/gov/v1/query.rpc.func.d.ts +20 -0
  216. package/cosmos/gov/v1/query.rpc.func.js +114 -0
  217. package/cosmos/gov/v1/tx.d.ts +626 -0
  218. package/cosmos/gov/v1/tx.js +1277 -0
  219. package/cosmos/gov/v1/tx.registry.d.ts +95 -0
  220. package/cosmos/gov/v1/tx.registry.js +139 -0
  221. package/cosmos/gov/v1/tx.rpc.func.d.ts +16 -0
  222. package/cosmos/gov/v1/tx.rpc.func.js +77 -0
  223. package/cosmos/gov/v1beta1/genesis.d.ts +61 -0
  224. package/cosmos/gov/v1beta1/genesis.js +165 -0
  225. package/cosmos/gov/v1beta1/gov.d.ts +524 -0
  226. package/cosmos/gov/v1beta1/gov.js +1114 -0
  227. package/cosmos/gov/v1beta1/query.d.ts +606 -0
  228. package/cosmos/gov/v1beta1/query.js +1409 -0
  229. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +18 -0
  230. package/cosmos/gov/v1beta1/query.rpc.func.js +102 -0
  231. package/cosmos/gov/v1beta1/tx.d.ts +327 -0
  232. package/cosmos/gov/v1beta1/tx.js +699 -0
  233. package/cosmos/gov/v1beta1/tx.registry.d.ts +59 -0
  234. package/cosmos/gov/v1beta1/tx.registry.js +85 -0
  235. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +10 -0
  236. package/cosmos/gov/v1beta1/tx.rpc.func.js +47 -0
  237. package/cosmos/group/module/v1/module.d.ts +53 -0
  238. package/cosmos/group/module/v1/module.js +96 -0
  239. package/cosmos/group/v1/events.d.ts +363 -0
  240. package/cosmos/group/v1/events.js +847 -0
  241. package/cosmos/group/v1/genesis.d.ts +83 -0
  242. package/cosmos/group/v1/genesis.js +183 -0
  243. package/cosmos/group/v1/query.d.ts +1044 -0
  244. package/cosmos/group/v1/query.js +2434 -0
  245. package/cosmos/group/v1/query.rpc.func.d.ts +30 -0
  246. package/cosmos/group/v1/query.rpc.func.js +174 -0
  247. package/cosmos/group/v1/tx.d.ts +1140 -0
  248. package/cosmos/group/v1/tx.js +2567 -0
  249. package/cosmos/group/v1/tx.registry.d.ts +179 -0
  250. package/cosmos/group/v1/tx.registry.js +265 -0
  251. package/cosmos/group/v1/tx.rpc.func.d.ts +30 -0
  252. package/cosmos/group/v1/tx.rpc.func.js +147 -0
  253. package/cosmos/group/v1/types.d.ts +799 -0
  254. package/cosmos/group/v1/types.js +1542 -0
  255. package/cosmos/ics23/v1/proofs.d.ts +730 -0
  256. package/cosmos/ics23/v1/proofs.js +1605 -0
  257. package/cosmos/mint/module/v1/module.d.ts +38 -0
  258. package/cosmos/mint/module/v1/module.js +95 -0
  259. package/cosmos/mint/v1beta1/genesis.d.ts +41 -0
  260. package/cosmos/mint/v1beta1/genesis.js +96 -0
  261. package/cosmos/mint/v1beta1/mint.d.ts +94 -0
  262. package/cosmos/mint/v1beta1/mint.js +233 -0
  263. package/cosmos/mint/v1beta1/query.d.ts +213 -0
  264. package/cosmos/mint/v1beta1/query.js +436 -0
  265. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +8 -0
  266. package/cosmos/mint/v1beta1/query.rpc.func.js +42 -0
  267. package/cosmos/mint/v1beta1/tx.d.ts +97 -0
  268. package/cosmos/mint/v1beta1/tx.js +161 -0
  269. package/cosmos/mint/v1beta1/tx.registry.d.ts +23 -0
  270. package/cosmos/mint/v1beta1/tx.registry.js +31 -0
  271. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +4 -0
  272. package/cosmos/mint/v1beta1/tx.rpc.func.js +17 -0
  273. package/cosmos/msg/textual/v1/textual.d.ts +1 -0
  274. package/cosmos/msg/textual/v1/textual.js +2 -0
  275. package/cosmos/msg/v1/msg.d.ts +1 -0
  276. package/cosmos/msg/v1/msg.js +2 -0
  277. package/cosmos/nft/module/v1/module.d.ts +32 -0
  278. package/cosmos/nft/module/v1/module.js +70 -0
  279. package/cosmos/nft/v1beta1/event.d.ts +132 -0
  280. package/cosmos/nft/v1beta1/event.js +323 -0
  281. package/cosmos/nft/v1beta1/genesis.d.ts +79 -0
  282. package/cosmos/nft/v1beta1/genesis.js +195 -0
  283. package/cosmos/nft/v1beta1/nft.d.ts +111 -0
  284. package/cosmos/nft/v1beta1/nft.js +282 -0
  285. package/cosmos/nft/v1beta1/query.d.ts +508 -0
  286. package/cosmos/nft/v1beta1/query.js +1189 -0
  287. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +16 -0
  288. package/cosmos/nft/v1beta1/query.rpc.func.js +90 -0
  289. package/cosmos/nft/v1beta1/tx.d.ts +78 -0
  290. package/cosmos/nft/v1beta1/tx.js +184 -0
  291. package/cosmos/nft/v1beta1/tx.registry.d.ts +23 -0
  292. package/cosmos/nft/v1beta1/tx.registry.js +31 -0
  293. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +4 -0
  294. package/cosmos/nft/v1beta1/tx.rpc.func.js +17 -0
  295. package/cosmos/orm/module/v1alpha1/module.d.ts +40 -0
  296. package/cosmos/orm/module/v1alpha1/module.js +70 -0
  297. package/cosmos/orm/query/v1alpha1/query.d.ts +367 -0
  298. package/cosmos/orm/query/v1alpha1/query.js +751 -0
  299. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +6 -0
  300. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +30 -0
  301. package/cosmos/orm/v1/orm.d.ts +278 -0
  302. package/cosmos/orm/v1/orm.js +380 -0
  303. package/cosmos/orm/v1alpha1/schema.d.ts +134 -0
  304. package/cosmos/orm/v1alpha1/schema.js +258 -0
  305. package/cosmos/params/module/v1/module.d.ts +32 -0
  306. package/cosmos/params/module/v1/module.js +70 -0
  307. package/cosmos/params/v1beta1/params.d.ts +80 -0
  308. package/cosmos/params/v1beta1/params.js +212 -0
  309. package/cosmos/params/v1beta1/query.d.ts +201 -0
  310. package/cosmos/params/v1beta1/query.js +413 -0
  311. package/cosmos/params/v1beta1/query.rpc.func.d.ts +6 -0
  312. package/cosmos/params/v1beta1/query.rpc.func.js +30 -0
  313. package/cosmos/query/v1/query.d.ts +1 -0
  314. package/cosmos/query/v1/query.js +2 -0
  315. package/cosmos/reflection/v1/reflection.d.ts +67 -0
  316. package/cosmos/reflection/v1/reflection.js +152 -0
  317. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +4 -0
  318. package/cosmos/reflection/v1/reflection.rpc.func.js +18 -0
  319. package/cosmos/slashing/module/v1/module.d.ts +36 -0
  320. package/cosmos/slashing/module/v1/module.js +83 -0
  321. package/cosmos/slashing/v1beta1/genesis.d.ts +177 -0
  322. package/cosmos/slashing/v1beta1/genesis.js +387 -0
  323. package/cosmos/slashing/v1beta1/query.d.ts +226 -0
  324. package/cosmos/slashing/v1beta1/query.js +477 -0
  325. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +8 -0
  326. package/cosmos/slashing/v1beta1/query.rpc.func.js +42 -0
  327. package/cosmos/slashing/v1beta1/slashing.d.ts +123 -0
  328. package/cosmos/slashing/v1beta1/slashing.js +272 -0
  329. package/cosmos/slashing/v1beta1/tx.d.ts +159 -0
  330. package/cosmos/slashing/v1beta1/tx.js +304 -0
  331. package/cosmos/slashing/v1beta1/tx.registry.d.ts +35 -0
  332. package/cosmos/slashing/v1beta1/tx.registry.js +49 -0
  333. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +6 -0
  334. package/cosmos/slashing/v1beta1/tx.rpc.func.js +27 -0
  335. package/cosmos/staking/module/v1/module.d.ts +56 -0
  336. package/cosmos/staking/module/v1/module.js +122 -0
  337. package/cosmos/staking/v1beta1/authz.d.ts +122 -0
  338. package/cosmos/staking/v1beta1/authz.js +264 -0
  339. package/cosmos/staking/v1beta1/genesis.d.ts +115 -0
  340. package/cosmos/staking/v1beta1/genesis.js +274 -0
  341. package/cosmos/staking/v1beta1/query.d.ts +1124 -0
  342. package/cosmos/staking/v1beta1/query.js +2414 -0
  343. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +30 -0
  344. package/cosmos/staking/v1beta1/query.rpc.func.js +174 -0
  345. package/cosmos/staking/v1beta1/staking.d.ts +1024 -0
  346. package/cosmos/staking/v1beta1/staking.js +2371 -0
  347. package/cosmos/staking/v1beta1/tx.d.ts +590 -0
  348. package/cosmos/staking/v1beta1/tx.js +1290 -0
  349. package/cosmos/staking/v1beta1/tx.registry.d.ts +95 -0
  350. package/cosmos/staking/v1beta1/tx.registry.js +139 -0
  351. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +16 -0
  352. package/cosmos/staking/v1beta1/tx.rpc.func.js +77 -0
  353. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +68 -0
  354. package/cosmos/store/internal/kv/v1beta1/kv.js +177 -0
  355. package/cosmos/store/snapshots/v1/snapshot.d.ts +294 -0
  356. package/cosmos/store/snapshots/v1/snapshot.js +687 -0
  357. package/cosmos/store/snapshots/v2/snapshot.d.ts +254 -0
  358. package/cosmos/store/snapshots/v2/snapshot.js +687 -0
  359. package/cosmos/store/streaming/abci/grpc.d.ts +136 -0
  360. package/cosmos/store/streaming/abci/grpc.js +332 -0
  361. package/cosmos/store/v1beta1/commit_info.d.ts +124 -0
  362. package/cosmos/store/v1beta1/commit_info.js +292 -0
  363. package/cosmos/store/v1beta1/listening.d.ts +101 -0
  364. package/cosmos/store/v1beta1/listening.js +223 -0
  365. package/cosmos/streaming/v1/grpc.d.ts +302 -0
  366. package/cosmos/streaming/v1/grpc.js +826 -0
  367. package/cosmos/tx/config/v1/config.d.ts +52 -0
  368. package/cosmos/tx/config/v1/config.js +95 -0
  369. package/cosmos/tx/signing/v1beta1/signing.d.ts +270 -0
  370. package/cosmos/tx/signing/v1beta1/signing.js +570 -0
  371. package/cosmos/tx/v1beta1/service.d.ts +916 -0
  372. package/cosmos/tx/v1beta1/service.js +1729 -0
  373. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +20 -0
  374. package/cosmos/tx/v1beta1/service.rpc.func.js +114 -0
  375. package/cosmos/tx/v1beta1/tx.d.ts +856 -0
  376. package/cosmos/tx/v1beta1/tx.js +1398 -0
  377. package/cosmos/upgrade/module/v1/module.d.ts +36 -0
  378. package/cosmos/upgrade/module/v1/module.js +83 -0
  379. package/cosmos/upgrade/v1beta1/query.d.ts +423 -0
  380. package/cosmos/upgrade/v1beta1/query.js +764 -0
  381. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +12 -0
  382. package/cosmos/upgrade/v1beta1/query.rpc.func.js +66 -0
  383. package/cosmos/upgrade/v1beta1/tx.d.ts +167 -0
  384. package/cosmos/upgrade/v1beta1/tx.js +304 -0
  385. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +35 -0
  386. package/cosmos/upgrade/v1beta1/tx.registry.js +49 -0
  387. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +6 -0
  388. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +27 -0
  389. package/cosmos/upgrade/v1beta1/upgrade.d.ts +245 -0
  390. package/cosmos/upgrade/v1beta1/upgrade.js +416 -0
  391. package/cosmos/validate/module/v1/module.d.ts +32 -0
  392. package/cosmos/validate/module/v1/module.js +70 -0
  393. package/cosmos/vesting/module/v1/module.d.ts +32 -0
  394. package/cosmos/vesting/module/v1/module.js +70 -0
  395. package/cosmos/vesting/v1beta1/tx.d.ts +256 -0
  396. package/cosmos/vesting/v1beta1/tx.js +553 -0
  397. package/cosmos/vesting/v1beta1/tx.registry.d.ts +47 -0
  398. package/cosmos/vesting/v1beta1/tx.registry.js +67 -0
  399. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +8 -0
  400. package/cosmos/vesting/v1beta1/tx.rpc.func.js +37 -0
  401. package/cosmos/vesting/v1beta1/vesting.d.ts +256 -0
  402. package/cosmos/vesting/v1beta1/vesting.js +586 -0
  403. package/cosmos_proto/cosmos.d.ts +153 -0
  404. package/cosmos_proto/cosmos.js +234 -0
  405. package/cosmwasm/wasm/v1/authz.d.ts +500 -0
  406. package/cosmwasm/wasm/v1/authz.js +924 -0
  407. package/cosmwasm/wasm/v1/genesis.d.ts +153 -0
  408. package/cosmwasm/wasm/v1/genesis.js +454 -0
  409. package/cosmwasm/wasm/v1/ibc.d.ts +132 -0
  410. package/cosmwasm/wasm/v1/ibc.js +276 -0
  411. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +872 -0
  412. package/cosmwasm/wasm/v1/proposal_legacy.js +1784 -0
  413. package/cosmwasm/wasm/v1/query.d.ts +922 -0
  414. package/cosmwasm/wasm/v1/query.js +2022 -0
  415. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +24 -0
  416. package/cosmwasm/wasm/v1/query.rpc.func.js +138 -0
  417. package/cosmwasm/wasm/v1/tx.d.ts +1534 -0
  418. package/cosmwasm/wasm/v1/tx.js +3236 -0
  419. package/cosmwasm/wasm/v1/tx.registry.d.ts +215 -0
  420. package/cosmwasm/wasm/v1/tx.registry.js +319 -0
  421. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +36 -0
  422. package/cosmwasm/wasm/v1/tx.rpc.func.js +177 -0
  423. package/cosmwasm/wasm/v1/types.d.ts +374 -0
  424. package/cosmwasm/wasm/v1/types.js +917 -0
  425. package/dist/package.json +48 -0
  426. package/esm/amino/amino.js +1 -0
  427. package/esm/binary.js +365 -0
  428. package/esm/cosmos/app/runtime/v1alpha1/module.js +290 -0
  429. package/esm/cosmos/app/runtime/v2/module.js +419 -0
  430. package/esm/cosmos/app/v1alpha1/config.js +294 -0
  431. package/esm/cosmos/app/v1alpha1/module.js +278 -0
  432. package/esm/cosmos/app/v1alpha1/query.js +146 -0
  433. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +14 -0
  434. package/esm/cosmos/auth/module/v1/module.js +200 -0
  435. package/esm/cosmos/auth/v1beta1/accounts.js +159 -0
  436. package/esm/cosmos/auth/v1beta1/auth.js +442 -0
  437. package/esm/cosmos/auth/v1beta1/genesis.js +97 -0
  438. package/esm/cosmos/auth/v1beta1/query.js +1558 -0
  439. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +113 -0
  440. package/esm/cosmos/auth/v1beta1/tx.js +158 -0
  441. package/esm/cosmos/auth/v1beta1/tx.registry.js +28 -0
  442. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +13 -0
  443. package/esm/cosmos/authz/module/v1/module.js +67 -0
  444. package/esm/cosmos/authz/v1beta1/authz.js +368 -0
  445. package/esm/cosmos/authz/v1beta1/event.js +206 -0
  446. package/esm/cosmos/authz/v1beta1/genesis.js +84 -0
  447. package/esm/cosmos/authz/v1beta1/query.js +577 -0
  448. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +36 -0
  449. package/esm/cosmos/authz/v1beta1/tx.js +513 -0
  450. package/esm/cosmos/authz/v1beta1/tx.registry.js +64 -0
  451. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +31 -0
  452. package/esm/cosmos/autocli/v1/options.js +831 -0
  453. package/esm/cosmos/autocli/v1/query.js +234 -0
  454. package/esm/cosmos/autocli/v1/query.rpc.func.js +14 -0
  455. package/esm/cosmos/bank/module/v1/module.js +110 -0
  456. package/esm/cosmos/bank/v1beta1/authz.js +99 -0
  457. package/esm/cosmos/bank/v1beta1/bank.js +723 -0
  458. package/esm/cosmos/bank/v1beta1/genesis.js +235 -0
  459. package/esm/cosmos/bank/v1beta1/query.js +2314 -0
  460. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +146 -0
  461. package/esm/cosmos/bank/v1beta1/tx.js +663 -0
  462. package/esm/cosmos/bank/v1beta1/tx.registry.js +82 -0
  463. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -0
  464. package/esm/cosmos/base/abci/v1beta1/abci.js +1290 -0
  465. package/esm/cosmos/base/grpc/v2/service.js +395 -0
  466. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +25 -0
  467. package/esm/cosmos/base/node/v1beta1/query.js +374 -0
  468. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +25 -0
  469. package/esm/cosmos/base/query/v1beta1/pagination.js +219 -0
  470. package/esm/cosmos/base/reflection/v1beta1/reflection.js +307 -0
  471. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +25 -0
  472. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +2156 -0
  473. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +69 -0
  474. package/esm/cosmos/base/tendermint/v1beta1/query.js +1884 -0
  475. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +80 -0
  476. package/esm/cosmos/base/tendermint/v1beta1/types.js +355 -0
  477. package/esm/cosmos/base/v1beta1/coin.js +338 -0
  478. package/esm/cosmos/circuit/module/v1/module.js +80 -0
  479. package/esm/cosmos/circuit/v1/query.js +477 -0
  480. package/esm/cosmos/circuit/v1/query.rpc.func.js +36 -0
  481. package/esm/cosmos/circuit/v1/tx.js +525 -0
  482. package/esm/cosmos/circuit/v1/tx.registry.js +64 -0
  483. package/esm/cosmos/circuit/v1/tx.rpc.func.js +31 -0
  484. package/esm/cosmos/circuit/v1/types.js +345 -0
  485. package/esm/cosmos/consensus/module/v1/module.js +80 -0
  486. package/esm/cosmos/consensus/v1/query.js +146 -0
  487. package/esm/cosmos/consensus/v1/query.rpc.func.js +14 -0
  488. package/esm/cosmos/consensus/v1/tx.js +194 -0
  489. package/esm/cosmos/consensus/v1/tx.registry.js +28 -0
  490. package/esm/cosmos/consensus/v1/tx.rpc.func.js +13 -0
  491. package/esm/cosmos/crisis/module/v1/module.js +92 -0
  492. package/esm/cosmos/crisis/v1beta1/genesis.js +81 -0
  493. package/esm/cosmos/crisis/v1beta1/tx.js +325 -0
  494. package/esm/cosmos/crisis/v1beta1/tx.registry.js +46 -0
  495. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +22 -0
  496. package/esm/cosmos/crypto/ed25519/keys.js +159 -0
  497. package/esm/cosmos/crypto/hd/v1/hd.js +128 -0
  498. package/esm/cosmos/crypto/keyring/v1/record.js +428 -0
  499. package/esm/cosmos/crypto/multisig/keys.js +96 -0
  500. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +174 -0
  501. package/esm/cosmos/crypto/secp256k1/keys.js +159 -0
  502. package/esm/cosmos/crypto/secp256r1/keys.js +159 -0
  503. package/esm/cosmos/distribution/module/v1/module.js +92 -0
  504. package/esm/cosmos/distribution/v1beta1/distribution.js +1155 -0
  505. package/esm/cosmos/distribution/v1beta1/genesis.js +892 -0
  506. package/esm/cosmos/distribution/v1beta1/query.js +1659 -0
  507. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +113 -0
  508. package/esm/cosmos/distribution/v1beta1/tx.js +1142 -0
  509. package/esm/cosmos/distribution/v1beta1/tx.registry.js +136 -0
  510. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +67 -0
  511. package/esm/cosmos/evidence/module/v1/module.js +67 -0
  512. package/esm/cosmos/evidence/v1beta1/evidence.js +118 -0
  513. package/esm/cosmos/evidence/v1beta1/genesis.js +84 -0
  514. package/esm/cosmos/evidence/v1beta1/query.js +344 -0
  515. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +25 -0
  516. package/esm/cosmos/evidence/v1beta1/tx.js +172 -0
  517. package/esm/cosmos/evidence/v1beta1/tx.registry.js +28 -0
  518. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +13 -0
  519. package/esm/cosmos/feegrant/module/v1/module.js +67 -0
  520. package/esm/cosmos/feegrant/v1beta1/feegrant.js +427 -0
  521. package/esm/cosmos/feegrant/v1beta1/genesis.js +84 -0
  522. package/esm/cosmos/feegrant/v1beta1/query.js +538 -0
  523. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +36 -0
  524. package/esm/cosmos/feegrant/v1beta1/tx.js +468 -0
  525. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +64 -0
  526. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +31 -0
  527. package/esm/cosmos/genutil/module/v1/module.js +67 -0
  528. package/esm/cosmos/genutil/v1beta1/genesis.js +84 -0
  529. package/esm/cosmos/gov/module/v1/module.js +92 -0
  530. package/esm/cosmos/gov/v1/genesis.js +186 -0
  531. package/esm/cosmos/gov/v1/gov.js +1356 -0
  532. package/esm/cosmos/gov/v1/query.js +1561 -0
  533. package/esm/cosmos/gov/v1/query.rpc.func.js +102 -0
  534. package/esm/cosmos/gov/v1/tx.js +1274 -0
  535. package/esm/cosmos/gov/v1/tx.registry.js +136 -0
  536. package/esm/cosmos/gov/v1/tx.rpc.func.js +67 -0
  537. package/esm/cosmos/gov/v1beta1/genesis.js +162 -0
  538. package/esm/cosmos/gov/v1beta1/gov.js +1107 -0
  539. package/esm/cosmos/gov/v1beta1/query.js +1406 -0
  540. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +91 -0
  541. package/esm/cosmos/gov/v1beta1/tx.js +696 -0
  542. package/esm/cosmos/gov/v1beta1/tx.registry.js +82 -0
  543. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +40 -0
  544. package/esm/cosmos/group/module/v1/module.js +93 -0
  545. package/esm/cosmos/group/v1/events.js +844 -0
  546. package/esm/cosmos/group/v1/genesis.js +180 -0
  547. package/esm/cosmos/group/v1/query.js +2431 -0
  548. package/esm/cosmos/group/v1/query.rpc.func.js +157 -0
  549. package/esm/cosmos/group/v1/tx.js +2562 -0
  550. package/esm/cosmos/group/v1/tx.registry.js +262 -0
  551. package/esm/cosmos/group/v1/tx.rpc.func.js +130 -0
  552. package/esm/cosmos/group/v1/types.js +1533 -0
  553. package/esm/cosmos/ics23/v1/proofs.js +1598 -0
  554. package/esm/cosmos/mint/module/v1/module.js +92 -0
  555. package/esm/cosmos/mint/v1beta1/genesis.js +93 -0
  556. package/esm/cosmos/mint/v1beta1/mint.js +230 -0
  557. package/esm/cosmos/mint/v1beta1/query.js +433 -0
  558. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +36 -0
  559. package/esm/cosmos/mint/v1beta1/tx.js +158 -0
  560. package/esm/cosmos/mint/v1beta1/tx.registry.js +28 -0
  561. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +13 -0
  562. package/esm/cosmos/msg/textual/v1/textual.js +1 -0
  563. package/esm/cosmos/msg/v1/msg.js +1 -0
  564. package/esm/cosmos/nft/module/v1/module.js +67 -0
  565. package/esm/cosmos/nft/v1beta1/event.js +320 -0
  566. package/esm/cosmos/nft/v1beta1/genesis.js +192 -0
  567. package/esm/cosmos/nft/v1beta1/nft.js +279 -0
  568. package/esm/cosmos/nft/v1beta1/query.js +1186 -0
  569. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +80 -0
  570. package/esm/cosmos/nft/v1beta1/tx.js +181 -0
  571. package/esm/cosmos/nft/v1beta1/tx.registry.js +28 -0
  572. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +13 -0
  573. package/esm/cosmos/orm/module/v1alpha1/module.js +67 -0
  574. package/esm/cosmos/orm/query/v1alpha1/query.js +748 -0
  575. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +25 -0
  576. package/esm/cosmos/orm/v1/orm.js +377 -0
  577. package/esm/cosmos/orm/v1alpha1/schema.js +253 -0
  578. package/esm/cosmos/params/module/v1/module.js +67 -0
  579. package/esm/cosmos/params/v1beta1/params.js +209 -0
  580. package/esm/cosmos/params/v1beta1/query.js +410 -0
  581. package/esm/cosmos/params/v1beta1/query.rpc.func.js +25 -0
  582. package/esm/cosmos/query/v1/query.js +1 -0
  583. package/esm/cosmos/reflection/v1/reflection.js +149 -0
  584. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +14 -0
  585. package/esm/cosmos/slashing/module/v1/module.js +80 -0
  586. package/esm/cosmos/slashing/v1beta1/genesis.js +384 -0
  587. package/esm/cosmos/slashing/v1beta1/query.js +474 -0
  588. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +36 -0
  589. package/esm/cosmos/slashing/v1beta1/slashing.js +269 -0
  590. package/esm/cosmos/slashing/v1beta1/tx.js +301 -0
  591. package/esm/cosmos/slashing/v1beta1/tx.registry.js +46 -0
  592. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -0
  593. package/esm/cosmos/staking/module/v1/module.js +119 -0
  594. package/esm/cosmos/staking/v1beta1/authz.js +259 -0
  595. package/esm/cosmos/staking/v1beta1/genesis.js +271 -0
  596. package/esm/cosmos/staking/v1beta1/query.js +2411 -0
  597. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +157 -0
  598. package/esm/cosmos/staking/v1beta1/staking.js +2364 -0
  599. package/esm/cosmos/staking/v1beta1/tx.js +1287 -0
  600. package/esm/cosmos/staking/v1beta1/tx.registry.js +136 -0
  601. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +67 -0
  602. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +174 -0
  603. package/esm/cosmos/store/snapshots/v1/snapshot.js +684 -0
  604. package/esm/cosmos/store/snapshots/v2/snapshot.js +684 -0
  605. package/esm/cosmos/store/streaming/abci/grpc.js +329 -0
  606. package/esm/cosmos/store/v1beta1/commit_info.js +289 -0
  607. package/esm/cosmos/store/v1beta1/listening.js +220 -0
  608. package/esm/cosmos/streaming/v1/grpc.js +823 -0
  609. package/esm/cosmos/tx/config/v1/config.js +92 -0
  610. package/esm/cosmos/tx/signing/v1beta1/signing.js +565 -0
  611. package/esm/cosmos/tx/v1beta1/service.js +1722 -0
  612. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +102 -0
  613. package/esm/cosmos/tx/v1beta1/tx.js +1395 -0
  614. package/esm/cosmos/upgrade/module/v1/module.js +80 -0
  615. package/esm/cosmos/upgrade/v1beta1/query.js +761 -0
  616. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +58 -0
  617. package/esm/cosmos/upgrade/v1beta1/tx.js +301 -0
  618. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +46 -0
  619. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -0
  620. package/esm/cosmos/upgrade/v1beta1/upgrade.js +413 -0
  621. package/esm/cosmos/validate/module/v1/module.js +67 -0
  622. package/esm/cosmos/vesting/module/v1/module.js +67 -0
  623. package/esm/cosmos/vesting/v1beta1/tx.js +550 -0
  624. package/esm/cosmos/vesting/v1beta1/tx.registry.js +64 -0
  625. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +31 -0
  626. package/esm/cosmos/vesting/v1beta1/vesting.js +583 -0
  627. package/esm/cosmos_proto/cosmos.js +229 -0
  628. package/esm/cosmwasm/wasm/v1/authz.js +921 -0
  629. package/esm/cosmwasm/wasm/v1/genesis.js +451 -0
  630. package/esm/cosmwasm/wasm/v1/ibc.js +273 -0
  631. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +1781 -0
  632. package/esm/cosmwasm/wasm/v1/query.js +2019 -0
  633. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +124 -0
  634. package/esm/cosmwasm/wasm/v1/tx.js +3233 -0
  635. package/esm/cosmwasm/wasm/v1/tx.registry.js +316 -0
  636. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +157 -0
  637. package/esm/cosmwasm/wasm/v1/types.js +910 -0
  638. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +143 -0
  639. package/esm/ethermint/evm/v1/events.js +381 -0
  640. package/esm/ethermint/evm/v1/evm.js +1181 -0
  641. package/esm/ethermint/evm/v1/genesis.js +185 -0
  642. package/esm/ethermint/evm/v1/query.js +1970 -0
  643. package/esm/ethermint/evm/v1/query.rpc.func.js +136 -0
  644. package/esm/ethermint/evm/v1/tx.js +1008 -0
  645. package/esm/ethermint/evm/v1/tx.registry.js +46 -0
  646. package/esm/ethermint/evm/v1/tx.rpc.func.js +22 -0
  647. package/esm/ethermint/feemarket/v1/events.js +154 -0
  648. package/esm/ethermint/feemarket/v1/feemarket.js +152 -0
  649. package/esm/ethermint/feemarket/v1/genesis.js +85 -0
  650. package/esm/ethermint/feemarket/v1/query.js +384 -0
  651. package/esm/ethermint/feemarket/v1/query.rpc.func.js +36 -0
  652. package/esm/ethermint/feemarket/v1/tx.js +150 -0
  653. package/esm/ethermint/feemarket/v1/tx.registry.js +28 -0
  654. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +13 -0
  655. package/esm/ethermint/types/v1/account.js +85 -0
  656. package/esm/ethermint/types/v1/dynamic_fee.js +72 -0
  657. package/esm/ethermint/types/v1/indexer.js +144 -0
  658. package/esm/ethermint/types/v1/web3.js +97 -0
  659. package/esm/extern.js +30 -0
  660. package/esm/gogoproto/gogo.js +1 -0
  661. package/esm/google/api/annotations.js +1 -0
  662. package/esm/google/api/http.js +350 -0
  663. package/esm/google/protobuf/any.js +78 -0
  664. package/esm/google/protobuf/descriptor.js +5062 -0
  665. package/esm/google/protobuf/duration.js +78 -0
  666. package/esm/google/protobuf/timestamp.js +75 -0
  667. package/esm/helper-func-types.js +50 -0
  668. package/esm/helpers.js +128 -0
  669. package/esm/ibc/applications/fee/v1/ack.js +105 -0
  670. package/esm/ibc/applications/fee/v1/fee.js +394 -0
  671. package/esm/ibc/applications/fee/v1/genesis.js +529 -0
  672. package/esm/ibc/applications/fee/v1/metadata.js +92 -0
  673. package/esm/ibc/applications/fee/v1/query.js +1729 -0
  674. package/esm/ibc/applications/fee/v1/query.rpc.func.js +113 -0
  675. package/esm/ibc/applications/fee/v1/tx.js +711 -0
  676. package/esm/ibc/applications/fee/v1/tx.registry.js +82 -0
  677. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +40 -0
  678. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +80 -0
  679. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +314 -0
  680. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +25 -0
  681. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +556 -0
  682. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +64 -0
  683. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +31 -0
  684. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +553 -0
  685. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +186 -0
  686. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +146 -0
  687. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +14 -0
  688. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +345 -0
  689. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +46 -0
  690. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +22 -0
  691. package/esm/ibc/applications/interchain_accounts/v1/account.js +93 -0
  692. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +140 -0
  693. package/esm/ibc/applications/interchain_accounts/v1/packet.js +225 -0
  694. package/esm/ibc/applications/transfer/v1/authz.js +219 -0
  695. package/esm/ibc/applications/transfer/v1/genesis.js +124 -0
  696. package/esm/ibc/applications/transfer/v1/query.js +955 -0
  697. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +69 -0
  698. package/esm/ibc/applications/transfer/v1/transfer.js +182 -0
  699. package/esm/ibc/applications/transfer/v1/tx.js +399 -0
  700. package/esm/ibc/applications/transfer/v1/tx.registry.js +46 -0
  701. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +22 -0
  702. package/esm/ibc/applications/transfer/v2/packet.js +128 -0
  703. package/esm/ibc/core/channel/v1/channel.js +1160 -0
  704. package/esm/ibc/core/channel/v1/genesis.js +300 -0
  705. package/esm/ibc/core/channel/v1/query.js +3396 -0
  706. package/esm/ibc/core/channel/v1/query.rpc.func.js +190 -0
  707. package/esm/ibc/core/channel/v1/tx.js +4022 -0
  708. package/esm/ibc/core/channel/v1/tx.registry.js +352 -0
  709. package/esm/ibc/core/channel/v1/tx.rpc.func.js +175 -0
  710. package/esm/ibc/core/channel/v1/upgrade.js +301 -0
  711. package/esm/ibc/core/client/v1/client.js +672 -0
  712. package/esm/ibc/core/client/v1/genesis.js +334 -0
  713. package/esm/ibc/core/client/v1/query.js +1753 -0
  714. package/esm/ibc/core/client/v1/query.rpc.func.js +113 -0
  715. package/esm/ibc/core/client/v1/tx.js +1199 -0
  716. package/esm/ibc/core/client/v1/tx.registry.js +136 -0
  717. package/esm/ibc/core/client/v1/tx.rpc.func.js +67 -0
  718. package/esm/ibc/core/commitment/v1/commitment.js +322 -0
  719. package/esm/ibc/core/connection/v1/connection.js +776 -0
  720. package/esm/ibc/core/connection/v1/genesis.js +123 -0
  721. package/esm/ibc/core/connection/v1/query.js +1092 -0
  722. package/esm/ibc/core/connection/v1/query.rpc.func.js +69 -0
  723. package/esm/ibc/core/connection/v1/tx.js +1084 -0
  724. package/esm/ibc/core/connection/v1/tx.registry.js +100 -0
  725. package/esm/ibc/core/connection/v1/tx.rpc.func.js +49 -0
  726. package/esm/ibc/core/types/v1/genesis.js +107 -0
  727. package/esm/ibc/lightclients/localhost/v2/localhost.js +81 -0
  728. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +1684 -0
  729. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +844 -0
  730. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +622 -0
  731. package/esm/ibc/lightclients/wasm/v1/genesis.js +162 -0
  732. package/esm/ibc/lightclients/wasm/v1/query.js +331 -0
  733. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +25 -0
  734. package/esm/ibc/lightclients/wasm/v1/tx.js +505 -0
  735. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +64 -0
  736. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +31 -0
  737. package/esm/ibc/lightclients/wasm/v1/wasm.js +343 -0
  738. package/esm/react-query.js +83 -0
  739. package/esm/registry.js +154 -0
  740. package/esm/tendermint/abci/types.js +5217 -0
  741. package/esm/tendermint/crypto/keys.js +85 -0
  742. package/esm/tendermint/crypto/proof.js +455 -0
  743. package/esm/tendermint/p2p/types.js +427 -0
  744. package/esm/tendermint/types/block.js +110 -0
  745. package/esm/tendermint/types/evidence.js +400 -0
  746. package/esm/tendermint/types/params.js +592 -0
  747. package/esm/tendermint/types/types.js +1749 -0
  748. package/esm/tendermint/types/validator.js +337 -0
  749. package/esm/tendermint/version/types.js +166 -0
  750. package/esm/types.js +6 -0
  751. package/esm/utf8.js +136 -0
  752. package/esm/varint.js +407 -0
  753. package/esm/xpla/reward/v1beta1/genesis.js +73 -0
  754. package/esm/xpla/reward/v1beta1/query.js +261 -0
  755. package/esm/xpla/reward/v1beta1/query.rpc.func.js +25 -0
  756. package/esm/xpla/reward/v1beta1/reward.js +128 -0
  757. package/esm/xpla/reward/v1beta1/tx.js +301 -0
  758. package/esm/xpla/reward/v1beta1/tx.registry.js +46 -0
  759. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +22 -0
  760. package/esm/xpla/volunteer/v1beta1/genesis.js +76 -0
  761. package/esm/xpla/volunteer/v1beta1/proposal.js +534 -0
  762. package/esm/xpla/volunteer/v1beta1/query.js +132 -0
  763. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +14 -0
  764. package/esm/xpla/volunteer/v1beta1/tx.js +348 -0
  765. package/esm/xpla/volunteer/v1beta1/tx.registry.js +46 -0
  766. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +22 -0
  767. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +84 -0
  768. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +80 -0
  769. package/ethermint/crypto/v1/ethsecp256k1/keys.js +146 -0
  770. package/ethermint/evm/v1/events.d.ts +162 -0
  771. package/ethermint/evm/v1/events.js +384 -0
  772. package/ethermint/evm/v1/evm.d.ts +530 -0
  773. package/ethermint/evm/v1/evm.js +1184 -0
  774. package/ethermint/evm/v1/genesis.d.ts +87 -0
  775. package/ethermint/evm/v1/genesis.js +188 -0
  776. package/ethermint/evm/v1/query.d.ts +913 -0
  777. package/ethermint/evm/v1/query.js +1973 -0
  778. package/ethermint/evm/v1/query.rpc.func.d.ts +27 -0
  779. package/ethermint/evm/v1/query.rpc.func.js +151 -0
  780. package/ethermint/evm/v1/tx.d.ts +452 -0
  781. package/ethermint/evm/v1/tx.js +1011 -0
  782. package/ethermint/evm/v1/tx.registry.d.ts +35 -0
  783. package/ethermint/evm/v1/tx.registry.js +49 -0
  784. package/ethermint/evm/v1/tx.rpc.func.d.ts +6 -0
  785. package/ethermint/evm/v1/tx.rpc.func.js +27 -0
  786. package/ethermint/feemarket/v1/events.d.ts +70 -0
  787. package/ethermint/feemarket/v1/events.js +157 -0
  788. package/ethermint/feemarket/v1/feemarket.d.ts +78 -0
  789. package/ethermint/feemarket/v1/feemarket.js +155 -0
  790. package/ethermint/feemarket/v1/genesis.d.ts +45 -0
  791. package/ethermint/feemarket/v1/genesis.js +88 -0
  792. package/ethermint/feemarket/v1/query.d.ts +195 -0
  793. package/ethermint/feemarket/v1/query.js +387 -0
  794. package/ethermint/feemarket/v1/query.rpc.func.d.ts +8 -0
  795. package/ethermint/feemarket/v1/query.rpc.func.js +42 -0
  796. package/ethermint/feemarket/v1/tx.d.ts +81 -0
  797. package/ethermint/feemarket/v1/tx.js +153 -0
  798. package/ethermint/feemarket/v1/tx.registry.d.ts +23 -0
  799. package/ethermint/feemarket/v1/tx.registry.js +31 -0
  800. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +4 -0
  801. package/ethermint/feemarket/v1/tx.rpc.func.js +17 -0
  802. package/ethermint/types/v1/account.d.ts +45 -0
  803. package/ethermint/types/v1/account.js +88 -0
  804. package/ethermint/types/v1/dynamic_fee.d.ts +34 -0
  805. package/ethermint/types/v1/dynamic_fee.js +75 -0
  806. package/ethermint/types/v1/indexer.d.ts +76 -0
  807. package/ethermint/types/v1/indexer.js +147 -0
  808. package/ethermint/types/v1/web3.d.ts +66 -0
  809. package/ethermint/types/v1/web3.js +100 -0
  810. package/extern.d.ts +10 -0
  811. package/extern.js +36 -0
  812. package/gogoproto/gogo.d.ts +1 -0
  813. package/gogoproto/gogo.js +2 -0
  814. package/google/api/annotations.d.ts +1 -0
  815. package/google/api/annotations.js +2 -0
  816. package/google/api/http.d.ts +764 -0
  817. package/google/api/http.js +353 -0
  818. package/google/protobuf/any.d.ts +268 -0
  819. package/google/protobuf/any.js +81 -0
  820. package/google/protobuf/descriptor.d.ts +2919 -0
  821. package/google/protobuf/descriptor.js +5100 -0
  822. package/google/protobuf/duration.d.ts +162 -0
  823. package/google/protobuf/duration.js +81 -0
  824. package/google/protobuf/timestamp.d.ts +222 -0
  825. package/google/protobuf/timestamp.js +78 -0
  826. package/helper-func-types.d.ts +117 -0
  827. package/helper-func-types.js +55 -0
  828. package/helpers.d.ts +82 -0
  829. package/helpers.js +143 -0
  830. package/ibc/applications/fee/v1/ack.d.ts +44 -0
  831. package/ibc/applications/fee/v1/ack.js +108 -0
  832. package/ibc/applications/fee/v1/fee.d.ts +160 -0
  833. package/ibc/applications/fee/v1/fee.js +397 -0
  834. package/ibc/applications/fee/v1/genesis.d.ts +220 -0
  835. package/ibc/applications/fee/v1/genesis.js +532 -0
  836. package/ibc/applications/fee/v1/metadata.d.ts +46 -0
  837. package/ibc/applications/fee/v1/metadata.js +95 -0
  838. package/ibc/applications/fee/v1/query.d.ts +737 -0
  839. package/ibc/applications/fee/v1/query.js +1732 -0
  840. package/ibc/applications/fee/v1/query.rpc.func.d.ts +22 -0
  841. package/ibc/applications/fee/v1/query.rpc.func.js +126 -0
  842. package/ibc/applications/fee/v1/tx.d.ts +318 -0
  843. package/ibc/applications/fee/v1/tx.js +714 -0
  844. package/ibc/applications/fee/v1/tx.registry.d.ts +59 -0
  845. package/ibc/applications/fee/v1/tx.registry.js +85 -0
  846. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +10 -0
  847. package/ibc/applications/fee/v1/tx.rpc.func.js +47 -0
  848. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +42 -0
  849. package/ibc/applications/interchain_accounts/controller/v1/controller.js +83 -0
  850. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +133 -0
  851. package/ibc/applications/interchain_accounts/controller/v1/query.js +317 -0
  852. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +6 -0
  853. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +30 -0
  854. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +231 -0
  855. package/ibc/applications/interchain_accounts/controller/v1/tx.js +559 -0
  856. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +47 -0
  857. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +67 -0
  858. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +8 -0
  859. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +37 -0
  860. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +196 -0
  861. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +556 -0
  862. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +102 -0
  863. package/ibc/applications/interchain_accounts/host/v1/host.js +189 -0
  864. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +67 -0
  865. package/ibc/applications/interchain_accounts/host/v1/query.js +149 -0
  866. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +4 -0
  867. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +18 -0
  868. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +155 -0
  869. package/ibc/applications/interchain_accounts/host/v1/tx.js +348 -0
  870. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +35 -0
  871. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +49 -0
  872. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +6 -0
  873. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +27 -0
  874. package/ibc/applications/interchain_accounts/v1/account.d.ts +37 -0
  875. package/ibc/applications/interchain_accounts/v1/account.js +96 -0
  876. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +68 -0
  877. package/ibc/applications/interchain_accounts/v1/metadata.js +143 -0
  878. package/ibc/applications/interchain_accounts/v1/packet.d.ts +85 -0
  879. package/ibc/applications/interchain_accounts/v1/packet.js +230 -0
  880. package/ibc/applications/transfer/v1/authz.d.ts +99 -0
  881. package/ibc/applications/transfer/v1/authz.js +222 -0
  882. package/ibc/applications/transfer/v1/genesis.d.ts +50 -0
  883. package/ibc/applications/transfer/v1/genesis.js +127 -0
  884. package/ibc/applications/transfer/v1/query.d.ts +449 -0
  885. package/ibc/applications/transfer/v1/query.js +958 -0
  886. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +14 -0
  887. package/ibc/applications/transfer/v1/query.rpc.func.js +78 -0
  888. package/ibc/applications/transfer/v1/transfer.d.ts +112 -0
  889. package/ibc/applications/transfer/v1/transfer.js +185 -0
  890. package/ibc/applications/transfer/v1/tx.d.ts +202 -0
  891. package/ibc/applications/transfer/v1/tx.js +402 -0
  892. package/ibc/applications/transfer/v1/tx.registry.d.ts +35 -0
  893. package/ibc/applications/transfer/v1/tx.registry.js +49 -0
  894. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +6 -0
  895. package/ibc/applications/transfer/v1/tx.rpc.func.js +27 -0
  896. package/ibc/applications/transfer/v2/packet.d.ts +60 -0
  897. package/ibc/applications/transfer/v2/packet.js +131 -0
  898. package/ibc/core/channel/v1/channel.d.ts +547 -0
  899. package/ibc/core/channel/v1/channel.js +1167 -0
  900. package/ibc/core/channel/v1/genesis.d.ts +95 -0
  901. package/ibc/core/channel/v1/genesis.js +303 -0
  902. package/ibc/core/channel/v1/query.d.ts +1525 -0
  903. package/ibc/core/channel/v1/query.js +3399 -0
  904. package/ibc/core/channel/v1/query.rpc.func.d.ts +36 -0
  905. package/ibc/core/channel/v1/query.rpc.func.js +210 -0
  906. package/ibc/core/channel/v1/tx.d.ts +1490 -0
  907. package/ibc/core/channel/v1/tx.js +4027 -0
  908. package/ibc/core/channel/v1/tx.registry.d.ts +239 -0
  909. package/ibc/core/channel/v1/tx.registry.js +355 -0
  910. package/ibc/core/channel/v1/tx.rpc.func.d.ts +40 -0
  911. package/ibc/core/channel/v1/tx.rpc.func.js +197 -0
  912. package/ibc/core/channel/v1/upgrade.d.ts +139 -0
  913. package/ibc/core/channel/v1/upgrade.js +304 -0
  914. package/ibc/core/client/v1/client.d.ts +372 -0
  915. package/ibc/core/client/v1/client.js +675 -0
  916. package/ibc/core/client/v1/genesis.d.ts +147 -0
  917. package/ibc/core/client/v1/genesis.js +337 -0
  918. package/ibc/core/client/v1/query.d.ts +862 -0
  919. package/ibc/core/client/v1/query.js +1756 -0
  920. package/ibc/core/client/v1/query.rpc.func.d.ts +22 -0
  921. package/ibc/core/client/v1/query.rpc.func.js +126 -0
  922. package/ibc/core/client/v1/tx.d.ts +587 -0
  923. package/ibc/core/client/v1/tx.js +1202 -0
  924. package/ibc/core/client/v1/tx.registry.d.ts +95 -0
  925. package/ibc/core/client/v1/tx.registry.js +139 -0
  926. package/ibc/core/client/v1/tx.rpc.func.d.ts +16 -0
  927. package/ibc/core/client/v1/tx.rpc.func.js +77 -0
  928. package/ibc/core/commitment/v1/commitment.d.ts +165 -0
  929. package/ibc/core/commitment/v1/commitment.js +325 -0
  930. package/ibc/core/connection/v1/connection.d.ts +376 -0
  931. package/ibc/core/connection/v1/connection.js +781 -0
  932. package/ibc/core/connection/v1/genesis.d.ts +43 -0
  933. package/ibc/core/connection/v1/genesis.js +126 -0
  934. package/ibc/core/connection/v1/query.d.ts +518 -0
  935. package/ibc/core/connection/v1/query.js +1095 -0
  936. package/ibc/core/connection/v1/query.rpc.func.d.ts +14 -0
  937. package/ibc/core/connection/v1/query.rpc.func.js +78 -0
  938. package/ibc/core/connection/v1/tx.d.ts +457 -0
  939. package/ibc/core/connection/v1/tx.js +1087 -0
  940. package/ibc/core/connection/v1/tx.registry.d.ts +71 -0
  941. package/ibc/core/connection/v1/tx.registry.js +103 -0
  942. package/ibc/core/connection/v1/tx.rpc.func.d.ts +12 -0
  943. package/ibc/core/connection/v1/tx.rpc.func.js +57 -0
  944. package/ibc/core/types/v1/genesis.d.ts +50 -0
  945. package/ibc/core/types/v1/genesis.js +110 -0
  946. package/ibc/lightclients/localhost/v2/localhost.d.ts +37 -0
  947. package/ibc/lightclients/localhost/v2/localhost.js +84 -0
  948. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +711 -0
  949. package/ibc/lightclients/solomachine/v2/solomachine.js +1689 -0
  950. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +357 -0
  951. package/ibc/lightclients/solomachine/v3/solomachine.js +847 -0
  952. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +306 -0
  953. package/ibc/lightclients/tendermint/v1/tendermint.js +625 -0
  954. package/ibc/lightclients/wasm/v1/genesis.d.ts +70 -0
  955. package/ibc/lightclients/wasm/v1/genesis.js +165 -0
  956. package/ibc/lightclients/wasm/v1/query.d.ts +141 -0
  957. package/ibc/lightclients/wasm/v1/query.js +334 -0
  958. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +6 -0
  959. package/ibc/lightclients/wasm/v1/query.rpc.func.js +30 -0
  960. package/ibc/lightclients/wasm/v1/tx.d.ts +218 -0
  961. package/ibc/lightclients/wasm/v1/tx.js +508 -0
  962. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +47 -0
  963. package/ibc/lightclients/wasm/v1/tx.registry.js +67 -0
  964. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +8 -0
  965. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +37 -0
  966. package/ibc/lightclients/wasm/v1/wasm.d.ts +163 -0
  967. package/ibc/lightclients/wasm/v1/wasm.js +346 -0
  968. package/package.json +3 -2
  969. package/react-query.d.ts +48 -0
  970. package/react-query.js +91 -0
  971. package/registry.d.ts +33 -0
  972. package/registry.js +158 -0
  973. package/tendermint/abci/types.d.ts +1843 -0
  974. package/tendermint/abci/types.js +5233 -0
  975. package/tendermint/crypto/keys.d.ts +34 -0
  976. package/tendermint/crypto/keys.js +88 -0
  977. package/tendermint/crypto/proof.d.ts +174 -0
  978. package/tendermint/crypto/proof.js +458 -0
  979. package/tendermint/p2p/types.d.ts +138 -0
  980. package/tendermint/p2p/types.js +430 -0
  981. package/tendermint/types/block.d.ts +38 -0
  982. package/tendermint/types/block.js +113 -0
  983. package/tendermint/types/evidence.d.ts +138 -0
  984. package/tendermint/types/evidence.js +403 -0
  985. package/tendermint/types/params.d.ts +323 -0
  986. package/tendermint/types/params.js +595 -0
  987. package/tendermint/types/types.d.ts +640 -0
  988. package/tendermint/types/types.js +1754 -0
  989. package/tendermint/types/validator.d.ts +113 -0
  990. package/tendermint/types/validator.js +342 -0
  991. package/tendermint/version/types.d.ts +82 -0
  992. package/tendermint/version/types.js +169 -0
  993. package/types.d.ts +124 -0
  994. package/types.js +7 -0
  995. package/utf8.d.ts +27 -0
  996. package/utf8.js +140 -0
  997. package/varint.d.ts +105 -0
  998. package/varint.js +425 -0
  999. package/xpla/reward/v1beta1/genesis.d.ts +35 -0
  1000. package/xpla/reward/v1beta1/genesis.js +76 -0
  1001. package/xpla/reward/v1beta1/query.d.ts +136 -0
  1002. package/xpla/reward/v1beta1/query.js +264 -0
  1003. package/xpla/reward/v1beta1/query.rpc.func.d.ts +6 -0
  1004. package/xpla/reward/v1beta1/query.rpc.func.js +30 -0
  1005. package/xpla/reward/v1beta1/reward.d.ts +42 -0
  1006. package/xpla/reward/v1beta1/reward.js +131 -0
  1007. package/xpla/reward/v1beta1/tx.d.ts +158 -0
  1008. package/xpla/reward/v1beta1/tx.js +304 -0
  1009. package/xpla/reward/v1beta1/tx.registry.d.ts +35 -0
  1010. package/xpla/reward/v1beta1/tx.registry.js +49 -0
  1011. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +6 -0
  1012. package/xpla/reward/v1beta1/tx.rpc.func.js +27 -0
  1013. package/xpla/volunteer/v1beta1/genesis.d.ts +33 -0
  1014. package/xpla/volunteer/v1beta1/genesis.js +79 -0
  1015. package/xpla/volunteer/v1beta1/proposal.d.ts +183 -0
  1016. package/xpla/volunteer/v1beta1/proposal.js +537 -0
  1017. package/xpla/volunteer/v1beta1/query.d.ts +60 -0
  1018. package/xpla/volunteer/v1beta1/query.js +135 -0
  1019. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +4 -0
  1020. package/xpla/volunteer/v1beta1/query.rpc.func.js +18 -0
  1021. package/xpla/volunteer/v1beta1/tx.d.ts +168 -0
  1022. package/xpla/volunteer/v1beta1/tx.js +351 -0
  1023. package/xpla/volunteer/v1beta1/tx.registry.d.ts +35 -0
  1024. package/xpla/volunteer/v1beta1/tx.registry.js +49 -0
  1025. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +6 -0
  1026. package/xpla/volunteer/v1beta1/tx.rpc.func.js +27 -0
  1027. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +38 -0
  1028. package/xpla/volunteer/v1beta1/volunteervalidator.js +87 -0
  1029. package/CHANGELOG.md +0 -8
  1030. package/src/amino/amino.ts +0 -1
  1031. package/src/binary.ts +0 -534
  1032. package/src/cosmos/app/runtime/v1alpha1/module.ts +0 -423
  1033. package/src/cosmos/app/runtime/v2/module.ts +0 -589
  1034. package/src/cosmos/app/v1alpha1/config.ts +0 -422
  1035. package/src/cosmos/app/v1alpha1/module.ts +0 -461
  1036. package/src/cosmos/app/v1alpha1/query.rpc.func.ts +0 -14
  1037. package/src/cosmos/app/v1alpha1/query.ts +0 -177
  1038. package/src/cosmos/auth/module/v1/module.ts +0 -253
  1039. package/src/cosmos/auth/v1beta1/accounts.ts +0 -226
  1040. package/src/cosmos/auth/v1beta1/auth.ts +0 -550
  1041. package/src/cosmos/auth/v1beta1/genesis.ts +0 -119
  1042. package/src/cosmos/auth/v1beta1/query.rpc.func.ts +0 -113
  1043. package/src/cosmos/auth/v1beta1/query.ts +0 -2034
  1044. package/src/cosmos/auth/v1beta1/tx.registry.ts +0 -29
  1045. package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +0 -13
  1046. package/src/cosmos/auth/v1beta1/tx.ts +0 -219
  1047. package/src/cosmos/authz/module/v1/module.ts +0 -80
  1048. package/src/cosmos/authz/v1beta1/authz.ts +0 -481
  1049. package/src/cosmos/authz/v1beta1/event.ts +0 -259
  1050. package/src/cosmos/authz/v1beta1/genesis.ts +0 -100
  1051. package/src/cosmos/authz/v1beta1/query.rpc.func.ts +0 -36
  1052. package/src/cosmos/authz/v1beta1/query.ts +0 -707
  1053. package/src/cosmos/authz/v1beta1/tx.registry.ts +0 -65
  1054. package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +0 -31
  1055. package/src/cosmos/authz/v1beta1/tx.ts +0 -647
  1056. package/src/cosmos/autocli/v1/options.ts +0 -1145
  1057. package/src/cosmos/autocli/v1/query.rpc.func.ts +0 -14
  1058. package/src/cosmos/autocli/v1/query.ts +0 -288
  1059. package/src/cosmos/bank/module/v1/module.ts +0 -153
  1060. package/src/cosmos/bank/v1beta1/authz.ts +0 -138
  1061. package/src/cosmos/bank/v1beta1/bank.ts +0 -974
  1062. package/src/cosmos/bank/v1beta1/genesis.ts +0 -307
  1063. package/src/cosmos/bank/v1beta1/query.rpc.func.ts +0 -146
  1064. package/src/cosmos/bank/v1beta1/query.ts +0 -3027
  1065. package/src/cosmos/bank/v1beta1/tx.registry.ts +0 -83
  1066. package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +0 -40
  1067. package/src/cosmos/bank/v1beta1/tx.ts +0 -861
  1068. package/src/cosmos/base/abci/v1beta1/abci.ts +0 -1698
  1069. package/src/cosmos/base/grpc/v2/service.rpc.func.ts +0 -25
  1070. package/src/cosmos/base/grpc/v2/service.ts +0 -473
  1071. package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +0 -25
  1072. package/src/cosmos/base/node/v1beta1/query.ts +0 -454
  1073. package/src/cosmos/base/query/v1beta1/pagination.ts +0 -361
  1074. package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +0 -25
  1075. package/src/cosmos/base/reflection/v1beta1/reflection.ts +0 -382
  1076. package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +0 -69
  1077. package/src/cosmos/base/reflection/v2alpha1/reflection.ts +0 -2727
  1078. package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +0 -80
  1079. package/src/cosmos/base/tendermint/v1beta1/query.ts +0 -2302
  1080. package/src/cosmos/base/tendermint/v1beta1/types.ts +0 -455
  1081. package/src/cosmos/base/v1beta1/coin.ts +0 -439
  1082. package/src/cosmos/circuit/module/v1/module.ts +0 -99
  1083. package/src/cosmos/circuit/v1/query.rpc.func.ts +0 -36
  1084. package/src/cosmos/circuit/v1/query.ts +0 -574
  1085. package/src/cosmos/circuit/v1/tx.registry.ts +0 -65
  1086. package/src/cosmos/circuit/v1/tx.rpc.func.ts +0 -31
  1087. package/src/cosmos/circuit/v1/tx.ts +0 -676
  1088. package/src/cosmos/circuit/v1/types.ts +0 -413
  1089. package/src/cosmos/consensus/module/v1/module.ts +0 -99
  1090. package/src/cosmos/consensus/v1/query.rpc.func.ts +0 -14
  1091. package/src/cosmos/consensus/v1/query.ts +0 -185
  1092. package/src/cosmos/consensus/v1/tx.registry.ts +0 -29
  1093. package/src/cosmos/consensus/v1/tx.rpc.func.ts +0 -13
  1094. package/src/cosmos/consensus/v1/tx.ts +0 -255
  1095. package/src/cosmos/crisis/module/v1/module.ts +0 -115
  1096. package/src/cosmos/crisis/v1beta1/genesis.ts +0 -106
  1097. package/src/cosmos/crisis/v1beta1/tx.registry.ts +0 -47
  1098. package/src/cosmos/crisis/v1beta1/tx.rpc.func.ts +0 -22
  1099. package/src/cosmos/crisis/v1beta1/tx.ts +0 -416
  1100. package/src/cosmos/crypto/ed25519/keys.ts +0 -209
  1101. package/src/cosmos/crypto/hd/v1/hd.ts +0 -169
  1102. package/src/cosmos/crypto/keyring/v1/record.ts +0 -529
  1103. package/src/cosmos/crypto/multisig/keys.ts +0 -122
  1104. package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +0 -225
  1105. package/src/cosmos/crypto/secp256k1/keys.ts +0 -203
  1106. package/src/cosmos/crypto/secp256r1/keys.ts +0 -201
  1107. package/src/cosmos/distribution/module/v1/module.ts +0 -113
  1108. package/src/cosmos/distribution/v1beta1/distribution.ts +0 -1494
  1109. package/src/cosmos/distribution/v1beta1/genesis.ts +0 -1129
  1110. package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +0 -113
  1111. package/src/cosmos/distribution/v1beta1/query.ts +0 -2126
  1112. package/src/cosmos/distribution/v1beta1/tx.registry.ts +0 -137
  1113. package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +0 -67
  1114. package/src/cosmos/distribution/v1beta1/tx.ts +0 -1478
  1115. package/src/cosmos/evidence/module/v1/module.ts +0 -80
  1116. package/src/cosmos/evidence/v1beta1/evidence.ts +0 -154
  1117. package/src/cosmos/evidence/v1beta1/genesis.ts +0 -102
  1118. package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +0 -25
  1119. package/src/cosmos/evidence/v1beta1/query.ts +0 -451
  1120. package/src/cosmos/evidence/v1beta1/tx.registry.ts +0 -29
  1121. package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +0 -13
  1122. package/src/cosmos/evidence/v1beta1/tx.ts +0 -221
  1123. package/src/cosmos/feegrant/module/v1/module.ts +0 -80
  1124. package/src/cosmos/feegrant/v1beta1/feegrant.ts +0 -573
  1125. package/src/cosmos/feegrant/v1beta1/genesis.ts +0 -100
  1126. package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +0 -36
  1127. package/src/cosmos/feegrant/v1beta1/query.ts +0 -677
  1128. package/src/cosmos/feegrant/v1beta1/tx.registry.ts +0 -65
  1129. package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +0 -31
  1130. package/src/cosmos/feegrant/v1beta1/tx.ts +0 -597
  1131. package/src/cosmos/genutil/module/v1/module.ts +0 -80
  1132. package/src/cosmos/genutil/v1beta1/genesis.ts +0 -101
  1133. package/src/cosmos/gov/module/v1/module.ts +0 -121
  1134. package/src/cosmos/gov/v1/genesis.ts +0 -280
  1135. package/src/cosmos/gov/v1/gov.ts +0 -1843
  1136. package/src/cosmos/gov/v1/query.rpc.func.ts +0 -102
  1137. package/src/cosmos/gov/v1/query.ts +0 -1970
  1138. package/src/cosmos/gov/v1/tx.registry.ts +0 -137
  1139. package/src/cosmos/gov/v1/tx.rpc.func.ts +0 -67
  1140. package/src/cosmos/gov/v1/tx.ts +0 -1657
  1141. package/src/cosmos/gov/v1beta1/genesis.ts +0 -202
  1142. package/src/cosmos/gov/v1beta1/gov.ts +0 -1425
  1143. package/src/cosmos/gov/v1beta1/query.rpc.func.ts +0 -91
  1144. package/src/cosmos/gov/v1beta1/query.ts +0 -1749
  1145. package/src/cosmos/gov/v1beta1/tx.registry.ts +0 -83
  1146. package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +0 -40
  1147. package/src/cosmos/gov/v1beta1/tx.ts +0 -881
  1148. package/src/cosmos/group/module/v1/module.ts +0 -128
  1149. package/src/cosmos/group/v1/events.ts +0 -1044
  1150. package/src/cosmos/group/v1/genesis.ts +0 -240
  1151. package/src/cosmos/group/v1/query.rpc.func.ts +0 -157
  1152. package/src/cosmos/group/v1/query.ts +0 -3015
  1153. package/src/cosmos/group/v1/tx.registry.ts +0 -263
  1154. package/src/cosmos/group/v1/tx.rpc.func.ts +0 -130
  1155. package/src/cosmos/group/v1/tx.ts +0 -3207
  1156. package/src/cosmos/group/v1/types.ts +0 -2081
  1157. package/src/cosmos/ics23/v1/proofs.ts +0 -2060
  1158. package/src/cosmos/mint/module/v1/module.ts +0 -113
  1159. package/src/cosmos/mint/v1beta1/genesis.ts +0 -116
  1160. package/src/cosmos/mint/v1beta1/mint.ts +0 -291
  1161. package/src/cosmos/mint/v1beta1/query.rpc.func.ts +0 -36
  1162. package/src/cosmos/mint/v1beta1/query.ts +0 -541
  1163. package/src/cosmos/mint/v1beta1/tx.registry.ts +0 -29
  1164. package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +0 -13
  1165. package/src/cosmos/mint/v1beta1/tx.ts +0 -219
  1166. package/src/cosmos/msg/textual/v1/textual.ts +0 -1
  1167. package/src/cosmos/msg/v1/msg.ts +0 -1
  1168. package/src/cosmos/nft/module/v1/module.ts +0 -80
  1169. package/src/cosmos/nft/v1beta1/event.ts +0 -403
  1170. package/src/cosmos/nft/v1beta1/genesis.ts +0 -234
  1171. package/src/cosmos/nft/v1beta1/nft.ts +0 -356
  1172. package/src/cosmos/nft/v1beta1/query.rpc.func.ts +0 -80
  1173. package/src/cosmos/nft/v1beta1/query.ts +0 -1465
  1174. package/src/cosmos/nft/v1beta1/tx.registry.ts +0 -29
  1175. package/src/cosmos/nft/v1beta1/tx.rpc.func.ts +0 -13
  1176. package/src/cosmos/nft/v1beta1/tx.ts +0 -224
  1177. package/src/cosmos/orm/module/v1alpha1/module.ts +0 -88
  1178. package/src/cosmos/orm/query/v1alpha1/query.rpc.func.ts +0 -25
  1179. package/src/cosmos/orm/query/v1alpha1/query.ts +0 -993
  1180. package/src/cosmos/orm/v1/orm.ts +0 -589
  1181. package/src/cosmos/orm/v1alpha1/schema.ts +0 -325
  1182. package/src/cosmos/params/module/v1/module.ts +0 -80
  1183. package/src/cosmos/params/v1beta1/params.ts +0 -255
  1184. package/src/cosmos/params/v1beta1/query.rpc.func.ts +0 -25
  1185. package/src/cosmos/params/v1beta1/query.ts +0 -525
  1186. package/src/cosmos/query/v1/query.ts +0 -1
  1187. package/src/cosmos/reflection/v1/reflection.rpc.func.ts +0 -14
  1188. package/src/cosmos/reflection/v1/reflection.ts +0 -179
  1189. package/src/cosmos/slashing/module/v1/module.ts +0 -99
  1190. package/src/cosmos/slashing/v1beta1/genesis.ts +0 -492
  1191. package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +0 -36
  1192. package/src/cosmos/slashing/v1beta1/query.ts +0 -598
  1193. package/src/cosmos/slashing/v1beta1/slashing.ts +0 -357
  1194. package/src/cosmos/slashing/v1beta1/tx.registry.ts +0 -47
  1195. package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +0 -22
  1196. package/src/cosmos/slashing/v1beta1/tx.ts +0 -390
  1197. package/src/cosmos/staking/module/v1/module.ts +0 -157
  1198. package/src/cosmos/staking/v1beta1/authz.ts +0 -323
  1199. package/src/cosmos/staking/v1beta1/genesis.ts +0 -346
  1200. package/src/cosmos/staking/v1beta1/query.rpc.func.ts +0 -157
  1201. package/src/cosmos/staking/v1beta1/query.ts +0 -3073
  1202. package/src/cosmos/staking/v1beta1/staking.ts +0 -3005
  1203. package/src/cosmos/staking/v1beta1/tx.registry.ts +0 -137
  1204. package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +0 -67
  1205. package/src/cosmos/staking/v1beta1/tx.ts +0 -1638
  1206. package/src/cosmos/store/internal/kv/v1beta1/kv.ts +0 -207
  1207. package/src/cosmos/store/snapshots/v1/snapshot.ts +0 -863
  1208. package/src/cosmos/store/snapshots/v2/snapshot.ts +0 -823
  1209. package/src/cosmos/store/streaming/abci/grpc.ts +0 -393
  1210. package/src/cosmos/store/v1beta1/commit_info.ts +0 -362
  1211. package/src/cosmos/store/v1beta1/listening.ts +0 -286
  1212. package/src/cosmos/streaming/v1/grpc.ts +0 -985
  1213. package/src/cosmos/tx/config/v1/config.ts +0 -127
  1214. package/src/cosmos/tx/signing/v1beta1/signing.ts +0 -688
  1215. package/src/cosmos/tx/v1beta1/service.rpc.func.ts +0 -102
  1216. package/src/cosmos/tx/v1beta1/service.ts +0 -2294
  1217. package/src/cosmos/tx/v1beta1/tx.ts +0 -2029
  1218. package/src/cosmos/upgrade/module/v1/module.ts +0 -99
  1219. package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +0 -58
  1220. package/src/cosmos/upgrade/v1beta1/query.ts +0 -1016
  1221. package/src/cosmos/upgrade/v1beta1/tx.registry.ts +0 -47
  1222. package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +0 -22
  1223. package/src/cosmos/upgrade/v1beta1/tx.ts +0 -398
  1224. package/src/cosmos/upgrade/v1beta1/upgrade.ts +0 -591
  1225. package/src/cosmos/validate/module/v1/module.ts +0 -80
  1226. package/src/cosmos/vesting/module/v1/module.ts +0 -80
  1227. package/src/cosmos/vesting/v1beta1/tx.registry.ts +0 -65
  1228. package/src/cosmos/vesting/v1beta1/tx.rpc.func.ts +0 -31
  1229. package/src/cosmos/vesting/v1beta1/tx.ts +0 -698
  1230. package/src/cosmos/vesting/v1beta1/vesting.ts +0 -735
  1231. package/src/cosmos_proto/cosmos.ts +0 -341
  1232. package/src/cosmwasm/wasm/v1/authz.ts +0 -1231
  1233. package/src/cosmwasm/wasm/v1/genesis.ts +0 -532
  1234. package/src/cosmwasm/wasm/v1/ibc.ts +0 -355
  1235. package/src/cosmwasm/wasm/v1/proposal_legacy.ts +0 -2432
  1236. package/src/cosmwasm/wasm/v1/query.rpc.func.ts +0 -124
  1237. package/src/cosmwasm/wasm/v1/query.ts +0 -2560
  1238. package/src/cosmwasm/wasm/v1/tx.registry.ts +0 -317
  1239. package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +0 -157
  1240. package/src/cosmwasm/wasm/v1/tx.ts +0 -4191
  1241. package/src/cosmwasm/wasm/v1/types.ts +0 -1120
  1242. package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +0 -193
  1243. package/src/ethermint/evm/v1/events.ts +0 -485
  1244. package/src/ethermint/evm/v1/evm.ts +0 -1590
  1245. package/src/ethermint/evm/v1/genesis.ts +0 -240
  1246. package/src/ethermint/evm/v1/query.rpc.func.ts +0 -136
  1247. package/src/ethermint/evm/v1/query.ts +0 -2535
  1248. package/src/ethermint/evm/v1/tx.registry.ts +0 -47
  1249. package/src/ethermint/evm/v1/tx.rpc.func.ts +0 -22
  1250. package/src/ethermint/evm/v1/tx.ts +0 -1333
  1251. package/src/ethermint/feemarket/v1/events.ts +0 -195
  1252. package/src/ethermint/feemarket/v1/feemarket.ts +0 -213
  1253. package/src/ethermint/feemarket/v1/genesis.ts +0 -114
  1254. package/src/ethermint/feemarket/v1/query.rpc.func.ts +0 -36
  1255. package/src/ethermint/feemarket/v1/query.ts +0 -487
  1256. package/src/ethermint/feemarket/v1/tx.registry.ts +0 -29
  1257. package/src/ethermint/feemarket/v1/tx.rpc.func.ts +0 -13
  1258. package/src/ethermint/feemarket/v1/tx.ts +0 -197
  1259. package/src/ethermint/types/v1/account.ts +0 -114
  1260. package/src/ethermint/types/v1/dynamic_fee.ts +0 -91
  1261. package/src/ethermint/types/v1/indexer.ts +0 -205
  1262. package/src/ethermint/types/v1/web3.ts +0 -147
  1263. package/src/extern.ts +0 -38
  1264. package/src/gogoproto/gogo.ts +0 -1
  1265. package/src/google/api/annotations.ts +0 -1
  1266. package/src/google/api/http.ts +0 -1069
  1267. package/src/google/protobuf/any.ts +0 -331
  1268. package/src/google/protobuf/descriptor.ts +0 -7177
  1269. package/src/google/protobuf/duration.ts +0 -225
  1270. package/src/google/protobuf/timestamp.ts +0 -281
  1271. package/src/helper-func-types.ts +0 -191
  1272. package/src/helpers.ts +0 -259
  1273. package/src/ibc/applications/fee/v1/ack.ts +0 -131
  1274. package/src/ibc/applications/fee/v1/fee.ts +0 -481
  1275. package/src/ibc/applications/fee/v1/genesis.ts +0 -661
  1276. package/src/ibc/applications/fee/v1/metadata.ts +0 -121
  1277. package/src/ibc/applications/fee/v1/query.rpc.func.ts +0 -113
  1278. package/src/ibc/applications/fee/v1/query.ts +0 -2134
  1279. package/src/ibc/applications/fee/v1/tx.registry.ts +0 -83
  1280. package/src/ibc/applications/fee/v1/tx.rpc.func.ts +0 -40
  1281. package/src/ibc/applications/fee/v1/tx.ts +0 -889
  1282. package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +0 -105
  1283. package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +0 -25
  1284. package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +0 -379
  1285. package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +0 -65
  1286. package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +0 -31
  1287. package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +0 -685
  1288. package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +0 -661
  1289. package/src/ibc/applications/interchain_accounts/host/v1/host.ts +0 -253
  1290. package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +0 -14
  1291. package/src/ibc/applications/interchain_accounts/host/v1/query.ts +0 -177
  1292. package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +0 -47
  1293. package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +0 -22
  1294. package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +0 -429
  1295. package/src/ibc/applications/interchain_accounts/v1/account.ts +0 -112
  1296. package/src/ibc/applications/interchain_accounts/v1/metadata.ts +0 -191
  1297. package/src/ibc/applications/interchain_accounts/v1/packet.ts +0 -259
  1298. package/src/ibc/applications/transfer/v1/authz.ts +0 -280
  1299. package/src/ibc/applications/transfer/v1/genesis.ts +0 -153
  1300. package/src/ibc/applications/transfer/v1/query.rpc.func.ts +0 -69
  1301. package/src/ibc/applications/transfer/v1/query.ts +0 -1205
  1302. package/src/ibc/applications/transfer/v1/transfer.ts +0 -261
  1303. package/src/ibc/applications/transfer/v1/tx.registry.ts +0 -47
  1304. package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +0 -22
  1305. package/src/ibc/applications/transfer/v1/tx.ts +0 -532
  1306. package/src/ibc/applications/transfer/v2/packet.ts +0 -171
  1307. package/src/ibc/core/channel/v1/channel.ts +0 -1510
  1308. package/src/ibc/core/channel/v1/genesis.ts +0 -354
  1309. package/src/ibc/core/channel/v1/query.rpc.func.ts +0 -190
  1310. package/src/ibc/core/channel/v1/query.ts +0 -4354
  1311. package/src/ibc/core/channel/v1/tx.registry.ts +0 -353
  1312. package/src/ibc/core/channel/v1/tx.rpc.func.ts +0 -175
  1313. package/src/ibc/core/channel/v1/tx.ts +0 -4866
  1314. package/src/ibc/core/channel/v1/upgrade.ts +0 -388
  1315. package/src/ibc/core/client/v1/client.ts +0 -927
  1316. package/src/ibc/core/client/v1/genesis.ts +0 -426
  1317. package/src/ibc/core/client/v1/query.rpc.func.ts +0 -113
  1318. package/src/ibc/core/client/v1/query.ts +0 -2280
  1319. package/src/ibc/core/client/v1/tx.registry.ts +0 -137
  1320. package/src/ibc/core/client/v1/tx.rpc.func.ts +0 -67
  1321. package/src/ibc/core/client/v1/tx.ts +0 -1543
  1322. package/src/ibc/core/commitment/v1/commitment.ts +0 -418
  1323. package/src/ibc/core/connection/v1/connection.ts +0 -1010
  1324. package/src/ibc/core/connection/v1/genesis.ts +0 -146
  1325. package/src/ibc/core/connection/v1/query.rpc.func.ts +0 -69
  1326. package/src/ibc/core/connection/v1/query.ts +0 -1408
  1327. package/src/ibc/core/connection/v1/tx.registry.ts +0 -101
  1328. package/src/ibc/core/connection/v1/tx.rpc.func.ts +0 -49
  1329. package/src/ibc/core/connection/v1/tx.ts +0 -1365
  1330. package/src/ibc/core/types/v1/genesis.ts +0 -137
  1331. package/src/ibc/lightclients/localhost/v2/localhost.ts +0 -100
  1332. package/src/ibc/lightclients/solomachine/v2/solomachine.ts +0 -2103
  1333. package/src/ibc/lightclients/solomachine/v3/solomachine.ts +0 -1070
  1334. package/src/ibc/lightclients/tendermint/v1/tendermint.ts +0 -838
  1335. package/src/ibc/lightclients/wasm/v1/genesis.ts +0 -197
  1336. package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +0 -25
  1337. package/src/ibc/lightclients/wasm/v1/query.ts +0 -404
  1338. package/src/ibc/lightclients/wasm/v1/tx.registry.ts +0 -65
  1339. package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +0 -31
  1340. package/src/ibc/lightclients/wasm/v1/tx.ts +0 -621
  1341. package/src/ibc/lightclients/wasm/v1/wasm.ts +0 -438
  1342. package/src/react-query.ts +0 -185
  1343. package/src/registry.ts +0 -218
  1344. package/src/tendermint/abci/types.ts +0 -6283
  1345. package/src/tendermint/crypto/keys.ts +0 -103
  1346. package/src/tendermint/crypto/proof.ts +0 -555
  1347. package/src/tendermint/p2p/types.ts +0 -507
  1348. package/src/tendermint/types/block.ts +0 -131
  1349. package/src/tendermint/types/evidence.ts +0 -476
  1350. package/src/tendermint/types/params.ts +0 -814
  1351. package/src/tendermint/types/types.ts +0 -2157
  1352. package/src/tendermint/types/validator.ts +0 -389
  1353. package/src/tendermint/version/types.ts +0 -219
  1354. package/src/types.ts +0 -155
  1355. package/src/utf8.ts +0 -148
  1356. package/src/varint.ts +0 -488
  1357. package/src/xpla/reward/v1beta1/genesis.ts +0 -92
  1358. package/src/xpla/reward/v1beta1/query.rpc.func.ts +0 -25
  1359. package/src/xpla/reward/v1beta1/query.ts +0 -333
  1360. package/src/xpla/reward/v1beta1/reward.ts +0 -153
  1361. package/src/xpla/reward/v1beta1/tx.registry.ts +0 -47
  1362. package/src/xpla/reward/v1beta1/tx.rpc.func.ts +0 -22
  1363. package/src/xpla/reward/v1beta1/tx.ts +0 -391
  1364. package/src/xpla/volunteer/v1beta1/genesis.ts +0 -92
  1365. package/src/xpla/volunteer/v1beta1/proposal.ts +0 -649
  1366. package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +0 -14
  1367. package/src/xpla/volunteer/v1beta1/query.ts +0 -160
  1368. package/src/xpla/volunteer/v1beta1/tx.registry.ts +0 -47
  1369. package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +0 -22
  1370. package/src/xpla/volunteer/v1beta1/tx.ts +0 -448
  1371. package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +0 -107
  1372. package/tsconfig.esm.json +0 -10
  1373. package/tsconfig.json +0 -10
@@ -0,0 +1,1843 @@
1
+ import { ConsensusParams, ConsensusParamsAmino } from "../types/params";
2
+ import { ProofOps, ProofOpsAmino } from "../crypto/proof";
3
+ import { PublicKey, PublicKeyAmino } from "../crypto/keys";
4
+ import { BlockIDFlag } from "../types/validator";
5
+ import { BinaryReader, BinaryWriter } from "../../binary";
6
+ import { DeepPartial } from "../../helpers";
7
+ export declare enum CheckTxType {
8
+ NEW = 0,
9
+ RECHECK = 1,
10
+ UNRECOGNIZED = -1
11
+ }
12
+ export declare const CheckTxTypeAmino: typeof CheckTxType;
13
+ export declare function checkTxTypeFromJSON(object: any): CheckTxType;
14
+ export declare function checkTxTypeToJSON(object: CheckTxType): string;
15
+ export declare enum ResponseOfferSnapshot_Result {
16
+ /** UNKNOWN - Unknown result, abort all snapshot restoration */
17
+ UNKNOWN = 0,
18
+ /** ACCEPT - Snapshot accepted, apply chunks */
19
+ ACCEPT = 1,
20
+ /** ABORT - Abort all snapshot restoration */
21
+ ABORT = 2,
22
+ /** REJECT - Reject this specific snapshot, try others */
23
+ REJECT = 3,
24
+ /** REJECT_FORMAT - Reject all snapshots of this format, try others */
25
+ REJECT_FORMAT = 4,
26
+ /** REJECT_SENDER - Reject all snapshots from the sender(s), try others */
27
+ REJECT_SENDER = 5,
28
+ UNRECOGNIZED = -1
29
+ }
30
+ export declare const ResponseOfferSnapshot_ResultAmino: typeof ResponseOfferSnapshot_Result;
31
+ export declare function responseOfferSnapshot_ResultFromJSON(object: any): ResponseOfferSnapshot_Result;
32
+ export declare function responseOfferSnapshot_ResultToJSON(object: ResponseOfferSnapshot_Result): string;
33
+ export declare enum ResponseApplySnapshotChunk_Result {
34
+ /** UNKNOWN - Unknown result, abort all snapshot restoration */
35
+ UNKNOWN = 0,
36
+ /** ACCEPT - Chunk successfully accepted */
37
+ ACCEPT = 1,
38
+ /** ABORT - Abort all snapshot restoration */
39
+ ABORT = 2,
40
+ /** RETRY - Retry chunk (combine with refetch and reject) */
41
+ RETRY = 3,
42
+ /** RETRY_SNAPSHOT - Retry snapshot (combine with refetch and reject) */
43
+ RETRY_SNAPSHOT = 4,
44
+ /** REJECT_SNAPSHOT - Reject this snapshot, try others */
45
+ REJECT_SNAPSHOT = 5,
46
+ UNRECOGNIZED = -1
47
+ }
48
+ export declare const ResponseApplySnapshotChunk_ResultAmino: typeof ResponseApplySnapshotChunk_Result;
49
+ export declare function responseApplySnapshotChunk_ResultFromJSON(object: any): ResponseApplySnapshotChunk_Result;
50
+ export declare function responseApplySnapshotChunk_ResultToJSON(object: ResponseApplySnapshotChunk_Result): string;
51
+ export declare enum ResponseProcessProposal_ProposalStatus {
52
+ UNKNOWN = 0,
53
+ ACCEPT = 1,
54
+ REJECT = 2,
55
+ UNRECOGNIZED = -1
56
+ }
57
+ export declare const ResponseProcessProposal_ProposalStatusAmino: typeof ResponseProcessProposal_ProposalStatus;
58
+ export declare function responseProcessProposal_ProposalStatusFromJSON(object: any): ResponseProcessProposal_ProposalStatus;
59
+ export declare function responseProcessProposal_ProposalStatusToJSON(object: ResponseProcessProposal_ProposalStatus): string;
60
+ export declare enum ResponseVerifyVoteExtension_VerifyStatus {
61
+ UNKNOWN = 0,
62
+ ACCEPT = 1,
63
+ /**
64
+ * REJECT - Rejecting the vote extension will reject the entire precommit by the sender.
65
+ * Incorrectly implementing this thus has liveness implications as it may affect
66
+ * CometBFT's ability to receive 2/3+ valid votes to finalize the block.
67
+ * Honest nodes should never be rejected.
68
+ */
69
+ REJECT = 2,
70
+ UNRECOGNIZED = -1
71
+ }
72
+ export declare const ResponseVerifyVoteExtension_VerifyStatusAmino: typeof ResponseVerifyVoteExtension_VerifyStatus;
73
+ export declare function responseVerifyVoteExtension_VerifyStatusFromJSON(object: any): ResponseVerifyVoteExtension_VerifyStatus;
74
+ export declare function responseVerifyVoteExtension_VerifyStatusToJSON(object: ResponseVerifyVoteExtension_VerifyStatus): string;
75
+ export declare enum MisbehaviorType {
76
+ UNKNOWN = 0,
77
+ DUPLICATE_VOTE = 1,
78
+ LIGHT_CLIENT_ATTACK = 2,
79
+ UNRECOGNIZED = -1
80
+ }
81
+ export declare const MisbehaviorTypeAmino: typeof MisbehaviorType;
82
+ export declare function misbehaviorTypeFromJSON(object: any): MisbehaviorType;
83
+ export declare function misbehaviorTypeToJSON(object: MisbehaviorType): string;
84
+ export interface Request {
85
+ echo?: RequestEcho;
86
+ flush?: RequestFlush;
87
+ info?: RequestInfo;
88
+ initChain?: RequestInitChain;
89
+ query?: RequestQuery;
90
+ checkTx?: RequestCheckTx;
91
+ commit?: RequestCommit;
92
+ listSnapshots?: RequestListSnapshots;
93
+ offerSnapshot?: RequestOfferSnapshot;
94
+ loadSnapshotChunk?: RequestLoadSnapshotChunk;
95
+ applySnapshotChunk?: RequestApplySnapshotChunk;
96
+ prepareProposal?: RequestPrepareProposal;
97
+ processProposal?: RequestProcessProposal;
98
+ extendVote?: RequestExtendVote;
99
+ verifyVoteExtension?: RequestVerifyVoteExtension;
100
+ finalizeBlock?: RequestFinalizeBlock;
101
+ }
102
+ export interface RequestProtoMsg {
103
+ typeUrl: "/tendermint.abci.Request";
104
+ value: Uint8Array;
105
+ }
106
+ export interface RequestAmino {
107
+ echo?: RequestEchoAmino;
108
+ flush?: RequestFlushAmino;
109
+ info?: RequestInfoAmino;
110
+ init_chain?: RequestInitChainAmino;
111
+ query?: RequestQueryAmino;
112
+ check_tx?: RequestCheckTxAmino;
113
+ commit?: RequestCommitAmino;
114
+ list_snapshots?: RequestListSnapshotsAmino;
115
+ offer_snapshot?: RequestOfferSnapshotAmino;
116
+ load_snapshot_chunk?: RequestLoadSnapshotChunkAmino;
117
+ apply_snapshot_chunk?: RequestApplySnapshotChunkAmino;
118
+ prepare_proposal?: RequestPrepareProposalAmino;
119
+ process_proposal?: RequestProcessProposalAmino;
120
+ extend_vote?: RequestExtendVoteAmino;
121
+ verify_vote_extension?: RequestVerifyVoteExtensionAmino;
122
+ finalize_block?: RequestFinalizeBlockAmino;
123
+ }
124
+ export interface RequestAminoMsg {
125
+ type: "/tendermint.abci.Request";
126
+ value: RequestAmino;
127
+ }
128
+ export interface RequestEcho {
129
+ message: string;
130
+ }
131
+ export interface RequestEchoProtoMsg {
132
+ typeUrl: "/tendermint.abci.RequestEcho";
133
+ value: Uint8Array;
134
+ }
135
+ export interface RequestEchoAmino {
136
+ message: string;
137
+ }
138
+ export interface RequestEchoAminoMsg {
139
+ type: "/tendermint.abci.RequestEcho";
140
+ value: RequestEchoAmino;
141
+ }
142
+ export interface RequestFlush {
143
+ }
144
+ export interface RequestFlushProtoMsg {
145
+ typeUrl: "/tendermint.abci.RequestFlush";
146
+ value: Uint8Array;
147
+ }
148
+ export interface RequestFlushAmino {
149
+ }
150
+ export interface RequestFlushAminoMsg {
151
+ type: "/tendermint.abci.RequestFlush";
152
+ value: RequestFlushAmino;
153
+ }
154
+ export interface RequestInfo {
155
+ version: string;
156
+ blockVersion: bigint;
157
+ p2pVersion: bigint;
158
+ abciVersion: string;
159
+ }
160
+ export interface RequestInfoProtoMsg {
161
+ typeUrl: "/tendermint.abci.RequestInfo";
162
+ value: Uint8Array;
163
+ }
164
+ export interface RequestInfoAmino {
165
+ version: string;
166
+ block_version: string;
167
+ p2p_version: string;
168
+ abci_version: string;
169
+ }
170
+ export interface RequestInfoAminoMsg {
171
+ type: "/tendermint.abci.RequestInfo";
172
+ value: RequestInfoAmino;
173
+ }
174
+ export interface RequestInitChain {
175
+ time: Date;
176
+ chainId: string;
177
+ consensusParams?: ConsensusParams;
178
+ validators: ValidatorUpdate[];
179
+ appStateBytes: Uint8Array;
180
+ initialHeight: bigint;
181
+ }
182
+ export interface RequestInitChainProtoMsg {
183
+ typeUrl: "/tendermint.abci.RequestInitChain";
184
+ value: Uint8Array;
185
+ }
186
+ export interface RequestInitChainAmino {
187
+ time: string;
188
+ chain_id: string;
189
+ consensus_params?: ConsensusParamsAmino;
190
+ validators: ValidatorUpdateAmino[];
191
+ app_state_bytes: string;
192
+ initial_height: string;
193
+ }
194
+ export interface RequestInitChainAminoMsg {
195
+ type: "/tendermint.abci.RequestInitChain";
196
+ value: RequestInitChainAmino;
197
+ }
198
+ export interface RequestQuery {
199
+ data: Uint8Array;
200
+ path: string;
201
+ height: bigint;
202
+ prove: boolean;
203
+ }
204
+ export interface RequestQueryProtoMsg {
205
+ typeUrl: "/tendermint.abci.RequestQuery";
206
+ value: Uint8Array;
207
+ }
208
+ export interface RequestQueryAmino {
209
+ data: string;
210
+ path: string;
211
+ height: string;
212
+ prove: boolean;
213
+ }
214
+ export interface RequestQueryAminoMsg {
215
+ type: "/tendermint.abci.RequestQuery";
216
+ value: RequestQueryAmino;
217
+ }
218
+ export interface RequestCheckTx {
219
+ tx: Uint8Array;
220
+ type: CheckTxType;
221
+ }
222
+ export interface RequestCheckTxProtoMsg {
223
+ typeUrl: "/tendermint.abci.RequestCheckTx";
224
+ value: Uint8Array;
225
+ }
226
+ export interface RequestCheckTxAmino {
227
+ tx: string;
228
+ type: CheckTxType;
229
+ }
230
+ export interface RequestCheckTxAminoMsg {
231
+ type: "/tendermint.abci.RequestCheckTx";
232
+ value: RequestCheckTxAmino;
233
+ }
234
+ export interface RequestCommit {
235
+ }
236
+ export interface RequestCommitProtoMsg {
237
+ typeUrl: "/tendermint.abci.RequestCommit";
238
+ value: Uint8Array;
239
+ }
240
+ export interface RequestCommitAmino {
241
+ }
242
+ export interface RequestCommitAminoMsg {
243
+ type: "/tendermint.abci.RequestCommit";
244
+ value: RequestCommitAmino;
245
+ }
246
+ /** lists available snapshots */
247
+ export interface RequestListSnapshots {
248
+ }
249
+ export interface RequestListSnapshotsProtoMsg {
250
+ typeUrl: "/tendermint.abci.RequestListSnapshots";
251
+ value: Uint8Array;
252
+ }
253
+ /** lists available snapshots */
254
+ export interface RequestListSnapshotsAmino {
255
+ }
256
+ export interface RequestListSnapshotsAminoMsg {
257
+ type: "/tendermint.abci.RequestListSnapshots";
258
+ value: RequestListSnapshotsAmino;
259
+ }
260
+ /** offers a snapshot to the application */
261
+ export interface RequestOfferSnapshot {
262
+ /** snapshot offered by peers */
263
+ snapshot?: Snapshot;
264
+ /** light client-verified app hash for snapshot height */
265
+ appHash: Uint8Array;
266
+ }
267
+ export interface RequestOfferSnapshotProtoMsg {
268
+ typeUrl: "/tendermint.abci.RequestOfferSnapshot";
269
+ value: Uint8Array;
270
+ }
271
+ /** offers a snapshot to the application */
272
+ export interface RequestOfferSnapshotAmino {
273
+ /** snapshot offered by peers */
274
+ snapshot?: SnapshotAmino;
275
+ /** light client-verified app hash for snapshot height */
276
+ app_hash: string;
277
+ }
278
+ export interface RequestOfferSnapshotAminoMsg {
279
+ type: "/tendermint.abci.RequestOfferSnapshot";
280
+ value: RequestOfferSnapshotAmino;
281
+ }
282
+ /** loads a snapshot chunk */
283
+ export interface RequestLoadSnapshotChunk {
284
+ height: bigint;
285
+ format: number;
286
+ chunk: number;
287
+ }
288
+ export interface RequestLoadSnapshotChunkProtoMsg {
289
+ typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk";
290
+ value: Uint8Array;
291
+ }
292
+ /** loads a snapshot chunk */
293
+ export interface RequestLoadSnapshotChunkAmino {
294
+ height: string;
295
+ format: number;
296
+ chunk: number;
297
+ }
298
+ export interface RequestLoadSnapshotChunkAminoMsg {
299
+ type: "/tendermint.abci.RequestLoadSnapshotChunk";
300
+ value: RequestLoadSnapshotChunkAmino;
301
+ }
302
+ /** Applies a snapshot chunk */
303
+ export interface RequestApplySnapshotChunk {
304
+ index: number;
305
+ chunk: Uint8Array;
306
+ sender: string;
307
+ }
308
+ export interface RequestApplySnapshotChunkProtoMsg {
309
+ typeUrl: "/tendermint.abci.RequestApplySnapshotChunk";
310
+ value: Uint8Array;
311
+ }
312
+ /** Applies a snapshot chunk */
313
+ export interface RequestApplySnapshotChunkAmino {
314
+ index: number;
315
+ chunk: string;
316
+ sender: string;
317
+ }
318
+ export interface RequestApplySnapshotChunkAminoMsg {
319
+ type: "/tendermint.abci.RequestApplySnapshotChunk";
320
+ value: RequestApplySnapshotChunkAmino;
321
+ }
322
+ export interface RequestPrepareProposal {
323
+ /** the modified transactions cannot exceed this size. */
324
+ maxTxBytes: bigint;
325
+ /**
326
+ * txs is an array of transactions that will be included in a block,
327
+ * sent to the app for possible modifications.
328
+ */
329
+ txs: Uint8Array[];
330
+ localLastCommit: ExtendedCommitInfo;
331
+ misbehavior: Misbehavior[];
332
+ height: bigint;
333
+ time: Date;
334
+ nextValidatorsHash: Uint8Array;
335
+ /** address of the public key of the validator proposing the block. */
336
+ proposerAddress: Uint8Array;
337
+ }
338
+ export interface RequestPrepareProposalProtoMsg {
339
+ typeUrl: "/tendermint.abci.RequestPrepareProposal";
340
+ value: Uint8Array;
341
+ }
342
+ export interface RequestPrepareProposalAmino {
343
+ /** the modified transactions cannot exceed this size. */
344
+ max_tx_bytes: string;
345
+ /**
346
+ * txs is an array of transactions that will be included in a block,
347
+ * sent to the app for possible modifications.
348
+ */
349
+ txs: string[];
350
+ local_last_commit: ExtendedCommitInfoAmino;
351
+ misbehavior: MisbehaviorAmino[];
352
+ height: string;
353
+ time: string;
354
+ next_validators_hash: string;
355
+ /** address of the public key of the validator proposing the block. */
356
+ proposer_address: string;
357
+ }
358
+ export interface RequestPrepareProposalAminoMsg {
359
+ type: "/tendermint.abci.RequestPrepareProposal";
360
+ value: RequestPrepareProposalAmino;
361
+ }
362
+ export interface RequestProcessProposal {
363
+ txs: Uint8Array[];
364
+ proposedLastCommit: CommitInfo;
365
+ misbehavior: Misbehavior[];
366
+ /** hash is the merkle root hash of the fields of the proposed block. */
367
+ hash: Uint8Array;
368
+ height: bigint;
369
+ time: Date;
370
+ nextValidatorsHash: Uint8Array;
371
+ /** address of the public key of the original proposer of the block. */
372
+ proposerAddress: Uint8Array;
373
+ }
374
+ export interface RequestProcessProposalProtoMsg {
375
+ typeUrl: "/tendermint.abci.RequestProcessProposal";
376
+ value: Uint8Array;
377
+ }
378
+ export interface RequestProcessProposalAmino {
379
+ txs: string[];
380
+ proposed_last_commit: CommitInfoAmino;
381
+ misbehavior: MisbehaviorAmino[];
382
+ /** hash is the merkle root hash of the fields of the proposed block. */
383
+ hash: string;
384
+ height: string;
385
+ time: string;
386
+ next_validators_hash: string;
387
+ /** address of the public key of the original proposer of the block. */
388
+ proposer_address: string;
389
+ }
390
+ export interface RequestProcessProposalAminoMsg {
391
+ type: "/tendermint.abci.RequestProcessProposal";
392
+ value: RequestProcessProposalAmino;
393
+ }
394
+ /** Extends a vote with application-injected data */
395
+ export interface RequestExtendVote {
396
+ /** the hash of the block that this vote may be referring to */
397
+ hash: Uint8Array;
398
+ /** the height of the extended vote */
399
+ height: bigint;
400
+ /** info of the block that this vote may be referring to */
401
+ time: Date;
402
+ txs: Uint8Array[];
403
+ proposedLastCommit: CommitInfo;
404
+ misbehavior: Misbehavior[];
405
+ nextValidatorsHash: Uint8Array;
406
+ /** address of the public key of the original proposer of the block. */
407
+ proposerAddress: Uint8Array;
408
+ }
409
+ export interface RequestExtendVoteProtoMsg {
410
+ typeUrl: "/tendermint.abci.RequestExtendVote";
411
+ value: Uint8Array;
412
+ }
413
+ /** Extends a vote with application-injected data */
414
+ export interface RequestExtendVoteAmino {
415
+ /** the hash of the block that this vote may be referring to */
416
+ hash: string;
417
+ /** the height of the extended vote */
418
+ height: string;
419
+ /** info of the block that this vote may be referring to */
420
+ time: string;
421
+ txs: string[];
422
+ proposed_last_commit: CommitInfoAmino;
423
+ misbehavior: MisbehaviorAmino[];
424
+ next_validators_hash: string;
425
+ /** address of the public key of the original proposer of the block. */
426
+ proposer_address: string;
427
+ }
428
+ export interface RequestExtendVoteAminoMsg {
429
+ type: "/tendermint.abci.RequestExtendVote";
430
+ value: RequestExtendVoteAmino;
431
+ }
432
+ /** Verify the vote extension */
433
+ export interface RequestVerifyVoteExtension {
434
+ /** the hash of the block that this received vote corresponds to */
435
+ hash: Uint8Array;
436
+ /** the validator that signed the vote extension */
437
+ validatorAddress: Uint8Array;
438
+ height: bigint;
439
+ voteExtension: Uint8Array;
440
+ }
441
+ export interface RequestVerifyVoteExtensionProtoMsg {
442
+ typeUrl: "/tendermint.abci.RequestVerifyVoteExtension";
443
+ value: Uint8Array;
444
+ }
445
+ /** Verify the vote extension */
446
+ export interface RequestVerifyVoteExtensionAmino {
447
+ /** the hash of the block that this received vote corresponds to */
448
+ hash: string;
449
+ /** the validator that signed the vote extension */
450
+ validator_address: string;
451
+ height: string;
452
+ vote_extension: string;
453
+ }
454
+ export interface RequestVerifyVoteExtensionAminoMsg {
455
+ type: "/tendermint.abci.RequestVerifyVoteExtension";
456
+ value: RequestVerifyVoteExtensionAmino;
457
+ }
458
+ export interface RequestFinalizeBlock {
459
+ txs: Uint8Array[];
460
+ decidedLastCommit: CommitInfo;
461
+ misbehavior: Misbehavior[];
462
+ /** hash is the merkle root hash of the fields of the decided block. */
463
+ hash: Uint8Array;
464
+ height: bigint;
465
+ time: Date;
466
+ nextValidatorsHash: Uint8Array;
467
+ /** proposer_address is the address of the public key of the original proposer of the block. */
468
+ proposerAddress: Uint8Array;
469
+ }
470
+ export interface RequestFinalizeBlockProtoMsg {
471
+ typeUrl: "/tendermint.abci.RequestFinalizeBlock";
472
+ value: Uint8Array;
473
+ }
474
+ export interface RequestFinalizeBlockAmino {
475
+ txs: string[];
476
+ decided_last_commit: CommitInfoAmino;
477
+ misbehavior: MisbehaviorAmino[];
478
+ /** hash is the merkle root hash of the fields of the decided block. */
479
+ hash: string;
480
+ height: string;
481
+ time: string;
482
+ next_validators_hash: string;
483
+ /** proposer_address is the address of the public key of the original proposer of the block. */
484
+ proposer_address: string;
485
+ }
486
+ export interface RequestFinalizeBlockAminoMsg {
487
+ type: "/tendermint.abci.RequestFinalizeBlock";
488
+ value: RequestFinalizeBlockAmino;
489
+ }
490
+ export interface Response {
491
+ exception?: ResponseException;
492
+ echo?: ResponseEcho;
493
+ flush?: ResponseFlush;
494
+ info?: ResponseInfo;
495
+ initChain?: ResponseInitChain;
496
+ query?: ResponseQuery;
497
+ checkTx?: ResponseCheckTx;
498
+ commit?: ResponseCommit;
499
+ listSnapshots?: ResponseListSnapshots;
500
+ offerSnapshot?: ResponseOfferSnapshot;
501
+ loadSnapshotChunk?: ResponseLoadSnapshotChunk;
502
+ applySnapshotChunk?: ResponseApplySnapshotChunk;
503
+ prepareProposal?: ResponsePrepareProposal;
504
+ processProposal?: ResponseProcessProposal;
505
+ extendVote?: ResponseExtendVote;
506
+ verifyVoteExtension?: ResponseVerifyVoteExtension;
507
+ finalizeBlock?: ResponseFinalizeBlock;
508
+ }
509
+ export interface ResponseProtoMsg {
510
+ typeUrl: "/tendermint.abci.Response";
511
+ value: Uint8Array;
512
+ }
513
+ export interface ResponseAmino {
514
+ exception?: ResponseExceptionAmino;
515
+ echo?: ResponseEchoAmino;
516
+ flush?: ResponseFlushAmino;
517
+ info?: ResponseInfoAmino;
518
+ init_chain?: ResponseInitChainAmino;
519
+ query?: ResponseQueryAmino;
520
+ check_tx?: ResponseCheckTxAmino;
521
+ commit?: ResponseCommitAmino;
522
+ list_snapshots?: ResponseListSnapshotsAmino;
523
+ offer_snapshot?: ResponseOfferSnapshotAmino;
524
+ load_snapshot_chunk?: ResponseLoadSnapshotChunkAmino;
525
+ apply_snapshot_chunk?: ResponseApplySnapshotChunkAmino;
526
+ prepare_proposal?: ResponsePrepareProposalAmino;
527
+ process_proposal?: ResponseProcessProposalAmino;
528
+ extend_vote?: ResponseExtendVoteAmino;
529
+ verify_vote_extension?: ResponseVerifyVoteExtensionAmino;
530
+ finalize_block?: ResponseFinalizeBlockAmino;
531
+ }
532
+ export interface ResponseAminoMsg {
533
+ type: "/tendermint.abci.Response";
534
+ value: ResponseAmino;
535
+ }
536
+ /** nondeterministic */
537
+ export interface ResponseException {
538
+ error: string;
539
+ }
540
+ export interface ResponseExceptionProtoMsg {
541
+ typeUrl: "/tendermint.abci.ResponseException";
542
+ value: Uint8Array;
543
+ }
544
+ /** nondeterministic */
545
+ export interface ResponseExceptionAmino {
546
+ error: string;
547
+ }
548
+ export interface ResponseExceptionAminoMsg {
549
+ type: "/tendermint.abci.ResponseException";
550
+ value: ResponseExceptionAmino;
551
+ }
552
+ export interface ResponseEcho {
553
+ message: string;
554
+ }
555
+ export interface ResponseEchoProtoMsg {
556
+ typeUrl: "/tendermint.abci.ResponseEcho";
557
+ value: Uint8Array;
558
+ }
559
+ export interface ResponseEchoAmino {
560
+ message: string;
561
+ }
562
+ export interface ResponseEchoAminoMsg {
563
+ type: "/tendermint.abci.ResponseEcho";
564
+ value: ResponseEchoAmino;
565
+ }
566
+ export interface ResponseFlush {
567
+ }
568
+ export interface ResponseFlushProtoMsg {
569
+ typeUrl: "/tendermint.abci.ResponseFlush";
570
+ value: Uint8Array;
571
+ }
572
+ export interface ResponseFlushAmino {
573
+ }
574
+ export interface ResponseFlushAminoMsg {
575
+ type: "/tendermint.abci.ResponseFlush";
576
+ value: ResponseFlushAmino;
577
+ }
578
+ export interface ResponseInfo {
579
+ data: string;
580
+ version: string;
581
+ appVersion: bigint;
582
+ lastBlockHeight: bigint;
583
+ lastBlockAppHash: Uint8Array;
584
+ }
585
+ export interface ResponseInfoProtoMsg {
586
+ typeUrl: "/tendermint.abci.ResponseInfo";
587
+ value: Uint8Array;
588
+ }
589
+ export interface ResponseInfoAmino {
590
+ data: string;
591
+ version: string;
592
+ app_version: string;
593
+ last_block_height: string;
594
+ last_block_app_hash: string;
595
+ }
596
+ export interface ResponseInfoAminoMsg {
597
+ type: "/tendermint.abci.ResponseInfo";
598
+ value: ResponseInfoAmino;
599
+ }
600
+ export interface ResponseInitChain {
601
+ consensusParams?: ConsensusParams;
602
+ validators: ValidatorUpdate[];
603
+ appHash: Uint8Array;
604
+ }
605
+ export interface ResponseInitChainProtoMsg {
606
+ typeUrl: "/tendermint.abci.ResponseInitChain";
607
+ value: Uint8Array;
608
+ }
609
+ export interface ResponseInitChainAmino {
610
+ consensus_params?: ConsensusParamsAmino;
611
+ validators: ValidatorUpdateAmino[];
612
+ app_hash: string;
613
+ }
614
+ export interface ResponseInitChainAminoMsg {
615
+ type: "/tendermint.abci.ResponseInitChain";
616
+ value: ResponseInitChainAmino;
617
+ }
618
+ export interface ResponseQuery {
619
+ code: number;
620
+ /** bytes data = 2; // use "value" instead. */
621
+ log: string;
622
+ /** nondeterministic */
623
+ info: string;
624
+ index: bigint;
625
+ key: Uint8Array;
626
+ value: Uint8Array;
627
+ proofOps?: ProofOps;
628
+ height: bigint;
629
+ codespace: string;
630
+ }
631
+ export interface ResponseQueryProtoMsg {
632
+ typeUrl: "/tendermint.abci.ResponseQuery";
633
+ value: Uint8Array;
634
+ }
635
+ export interface ResponseQueryAmino {
636
+ code: number;
637
+ /** bytes data = 2; // use "value" instead. */
638
+ log: string;
639
+ /** nondeterministic */
640
+ info: string;
641
+ index: string;
642
+ key: string;
643
+ value: string;
644
+ proof_ops?: ProofOpsAmino;
645
+ height: string;
646
+ codespace: string;
647
+ }
648
+ export interface ResponseQueryAminoMsg {
649
+ type: "/tendermint.abci.ResponseQuery";
650
+ value: ResponseQueryAmino;
651
+ }
652
+ export interface ResponseCheckTx {
653
+ code: number;
654
+ data: Uint8Array;
655
+ /** nondeterministic */
656
+ log: string;
657
+ /** nondeterministic */
658
+ info: string;
659
+ gasWanted: bigint;
660
+ gasUsed: bigint;
661
+ events: Event[];
662
+ codespace: string;
663
+ }
664
+ export interface ResponseCheckTxProtoMsg {
665
+ typeUrl: "/tendermint.abci.ResponseCheckTx";
666
+ value: Uint8Array;
667
+ }
668
+ export interface ResponseCheckTxAmino {
669
+ code: number;
670
+ data: string;
671
+ /** nondeterministic */
672
+ log: string;
673
+ /** nondeterministic */
674
+ info: string;
675
+ gas_wanted: string;
676
+ gas_used: string;
677
+ events: EventAmino[];
678
+ codespace: string;
679
+ }
680
+ export interface ResponseCheckTxAminoMsg {
681
+ type: "/tendermint.abci.ResponseCheckTx";
682
+ value: ResponseCheckTxAmino;
683
+ }
684
+ export interface ResponseCommit {
685
+ retainHeight: bigint;
686
+ }
687
+ export interface ResponseCommitProtoMsg {
688
+ typeUrl: "/tendermint.abci.ResponseCommit";
689
+ value: Uint8Array;
690
+ }
691
+ export interface ResponseCommitAmino {
692
+ retain_height: string;
693
+ }
694
+ export interface ResponseCommitAminoMsg {
695
+ type: "/tendermint.abci.ResponseCommit";
696
+ value: ResponseCommitAmino;
697
+ }
698
+ export interface ResponseListSnapshots {
699
+ snapshots: Snapshot[];
700
+ }
701
+ export interface ResponseListSnapshotsProtoMsg {
702
+ typeUrl: "/tendermint.abci.ResponseListSnapshots";
703
+ value: Uint8Array;
704
+ }
705
+ export interface ResponseListSnapshotsAmino {
706
+ snapshots: SnapshotAmino[];
707
+ }
708
+ export interface ResponseListSnapshotsAminoMsg {
709
+ type: "/tendermint.abci.ResponseListSnapshots";
710
+ value: ResponseListSnapshotsAmino;
711
+ }
712
+ export interface ResponseOfferSnapshot {
713
+ result: ResponseOfferSnapshot_Result;
714
+ }
715
+ export interface ResponseOfferSnapshotProtoMsg {
716
+ typeUrl: "/tendermint.abci.ResponseOfferSnapshot";
717
+ value: Uint8Array;
718
+ }
719
+ export interface ResponseOfferSnapshotAmino {
720
+ result: ResponseOfferSnapshot_Result;
721
+ }
722
+ export interface ResponseOfferSnapshotAminoMsg {
723
+ type: "/tendermint.abci.ResponseOfferSnapshot";
724
+ value: ResponseOfferSnapshotAmino;
725
+ }
726
+ export interface ResponseLoadSnapshotChunk {
727
+ chunk: Uint8Array;
728
+ }
729
+ export interface ResponseLoadSnapshotChunkProtoMsg {
730
+ typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk";
731
+ value: Uint8Array;
732
+ }
733
+ export interface ResponseLoadSnapshotChunkAmino {
734
+ chunk: string;
735
+ }
736
+ export interface ResponseLoadSnapshotChunkAminoMsg {
737
+ type: "/tendermint.abci.ResponseLoadSnapshotChunk";
738
+ value: ResponseLoadSnapshotChunkAmino;
739
+ }
740
+ export interface ResponseApplySnapshotChunk {
741
+ result: ResponseApplySnapshotChunk_Result;
742
+ /** Chunks to refetch and reapply */
743
+ refetchChunks: number[];
744
+ /** Chunk senders to reject and ban */
745
+ rejectSenders: string[];
746
+ }
747
+ export interface ResponseApplySnapshotChunkProtoMsg {
748
+ typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk";
749
+ value: Uint8Array;
750
+ }
751
+ export interface ResponseApplySnapshotChunkAmino {
752
+ result: ResponseApplySnapshotChunk_Result;
753
+ /** Chunks to refetch and reapply */
754
+ refetch_chunks: number[];
755
+ /** Chunk senders to reject and ban */
756
+ reject_senders: string[];
757
+ }
758
+ export interface ResponseApplySnapshotChunkAminoMsg {
759
+ type: "/tendermint.abci.ResponseApplySnapshotChunk";
760
+ value: ResponseApplySnapshotChunkAmino;
761
+ }
762
+ export interface ResponsePrepareProposal {
763
+ txs: Uint8Array[];
764
+ }
765
+ export interface ResponsePrepareProposalProtoMsg {
766
+ typeUrl: "/tendermint.abci.ResponsePrepareProposal";
767
+ value: Uint8Array;
768
+ }
769
+ export interface ResponsePrepareProposalAmino {
770
+ txs: string[];
771
+ }
772
+ export interface ResponsePrepareProposalAminoMsg {
773
+ type: "/tendermint.abci.ResponsePrepareProposal";
774
+ value: ResponsePrepareProposalAmino;
775
+ }
776
+ export interface ResponseProcessProposal {
777
+ status: ResponseProcessProposal_ProposalStatus;
778
+ }
779
+ export interface ResponseProcessProposalProtoMsg {
780
+ typeUrl: "/tendermint.abci.ResponseProcessProposal";
781
+ value: Uint8Array;
782
+ }
783
+ export interface ResponseProcessProposalAmino {
784
+ status: ResponseProcessProposal_ProposalStatus;
785
+ }
786
+ export interface ResponseProcessProposalAminoMsg {
787
+ type: "/tendermint.abci.ResponseProcessProposal";
788
+ value: ResponseProcessProposalAmino;
789
+ }
790
+ export interface ResponseExtendVote {
791
+ voteExtension: Uint8Array;
792
+ }
793
+ export interface ResponseExtendVoteProtoMsg {
794
+ typeUrl: "/tendermint.abci.ResponseExtendVote";
795
+ value: Uint8Array;
796
+ }
797
+ export interface ResponseExtendVoteAmino {
798
+ vote_extension: string;
799
+ }
800
+ export interface ResponseExtendVoteAminoMsg {
801
+ type: "/tendermint.abci.ResponseExtendVote";
802
+ value: ResponseExtendVoteAmino;
803
+ }
804
+ export interface ResponseVerifyVoteExtension {
805
+ status: ResponseVerifyVoteExtension_VerifyStatus;
806
+ }
807
+ export interface ResponseVerifyVoteExtensionProtoMsg {
808
+ typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension";
809
+ value: Uint8Array;
810
+ }
811
+ export interface ResponseVerifyVoteExtensionAmino {
812
+ status: ResponseVerifyVoteExtension_VerifyStatus;
813
+ }
814
+ export interface ResponseVerifyVoteExtensionAminoMsg {
815
+ type: "/tendermint.abci.ResponseVerifyVoteExtension";
816
+ value: ResponseVerifyVoteExtensionAmino;
817
+ }
818
+ export interface ResponseFinalizeBlock {
819
+ /** set of block events emmitted as part of executing the block */
820
+ events: Event[];
821
+ /**
822
+ * the result of executing each transaction including the events
823
+ * the particular transction emitted. This should match the order
824
+ * of the transactions delivered in the block itself
825
+ */
826
+ txResults: ExecTxResult[];
827
+ /** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
828
+ validatorUpdates: ValidatorUpdate[];
829
+ /** updates to the consensus params, if any. */
830
+ consensusParamUpdates?: ConsensusParams;
831
+ /**
832
+ * app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
833
+ * deterministic. It is up to the application to decide which algorithm to use.
834
+ */
835
+ appHash: Uint8Array;
836
+ }
837
+ export interface ResponseFinalizeBlockProtoMsg {
838
+ typeUrl: "/tendermint.abci.ResponseFinalizeBlock";
839
+ value: Uint8Array;
840
+ }
841
+ export interface ResponseFinalizeBlockAmino {
842
+ /** set of block events emmitted as part of executing the block */
843
+ events: EventAmino[];
844
+ /**
845
+ * the result of executing each transaction including the events
846
+ * the particular transction emitted. This should match the order
847
+ * of the transactions delivered in the block itself
848
+ */
849
+ tx_results: ExecTxResultAmino[];
850
+ /** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
851
+ validator_updates: ValidatorUpdateAmino[];
852
+ /** updates to the consensus params, if any. */
853
+ consensus_param_updates?: ConsensusParamsAmino;
854
+ /**
855
+ * app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
856
+ * deterministic. It is up to the application to decide which algorithm to use.
857
+ */
858
+ app_hash: string;
859
+ }
860
+ export interface ResponseFinalizeBlockAminoMsg {
861
+ type: "/tendermint.abci.ResponseFinalizeBlock";
862
+ value: ResponseFinalizeBlockAmino;
863
+ }
864
+ export interface CommitInfo {
865
+ round: number;
866
+ votes: VoteInfo[];
867
+ }
868
+ export interface CommitInfoProtoMsg {
869
+ typeUrl: "/tendermint.abci.CommitInfo";
870
+ value: Uint8Array;
871
+ }
872
+ export interface CommitInfoAmino {
873
+ round: number;
874
+ votes: VoteInfoAmino[];
875
+ }
876
+ export interface CommitInfoAminoMsg {
877
+ type: "/tendermint.abci.CommitInfo";
878
+ value: CommitInfoAmino;
879
+ }
880
+ /**
881
+ * ExtendedCommitInfo is similar to CommitInfo except that it is only used in
882
+ * the PrepareProposal request such that CometBFT can provide vote extensions
883
+ * to the application.
884
+ */
885
+ export interface ExtendedCommitInfo {
886
+ /** The round at which the block proposer decided in the previous height. */
887
+ round: number;
888
+ /**
889
+ * List of validators' addresses in the last validator set with their voting
890
+ * information, including vote extensions.
891
+ */
892
+ votes: ExtendedVoteInfo[];
893
+ }
894
+ export interface ExtendedCommitInfoProtoMsg {
895
+ typeUrl: "/tendermint.abci.ExtendedCommitInfo";
896
+ value: Uint8Array;
897
+ }
898
+ /**
899
+ * ExtendedCommitInfo is similar to CommitInfo except that it is only used in
900
+ * the PrepareProposal request such that CometBFT can provide vote extensions
901
+ * to the application.
902
+ */
903
+ export interface ExtendedCommitInfoAmino {
904
+ /** The round at which the block proposer decided in the previous height. */
905
+ round: number;
906
+ /**
907
+ * List of validators' addresses in the last validator set with their voting
908
+ * information, including vote extensions.
909
+ */
910
+ votes: ExtendedVoteInfoAmino[];
911
+ }
912
+ export interface ExtendedCommitInfoAminoMsg {
913
+ type: "/tendermint.abci.ExtendedCommitInfo";
914
+ value: ExtendedCommitInfoAmino;
915
+ }
916
+ /**
917
+ * Event allows application developers to attach additional information to
918
+ * ResponseFinalizeBlock and ResponseCheckTx.
919
+ * Later, transactions may be queried using these events.
920
+ */
921
+ export interface Event {
922
+ type: string;
923
+ attributes: EventAttribute[];
924
+ }
925
+ export interface EventProtoMsg {
926
+ typeUrl: "/tendermint.abci.Event";
927
+ value: Uint8Array;
928
+ }
929
+ /**
930
+ * Event allows application developers to attach additional information to
931
+ * ResponseFinalizeBlock and ResponseCheckTx.
932
+ * Later, transactions may be queried using these events.
933
+ */
934
+ export interface EventAmino {
935
+ type: string;
936
+ attributes: EventAttributeAmino[];
937
+ }
938
+ export interface EventAminoMsg {
939
+ type: "/tendermint.abci.Event";
940
+ value: EventAmino;
941
+ }
942
+ /** EventAttribute is a single key-value pair, associated with an event. */
943
+ export interface EventAttribute {
944
+ key: string;
945
+ value: string;
946
+ /** nondeterministic */
947
+ index: boolean;
948
+ }
949
+ export interface EventAttributeProtoMsg {
950
+ typeUrl: "/tendermint.abci.EventAttribute";
951
+ value: Uint8Array;
952
+ }
953
+ /** EventAttribute is a single key-value pair, associated with an event. */
954
+ export interface EventAttributeAmino {
955
+ key: string;
956
+ value: string;
957
+ /** nondeterministic */
958
+ index: boolean;
959
+ }
960
+ export interface EventAttributeAminoMsg {
961
+ type: "/tendermint.abci.EventAttribute";
962
+ value: EventAttributeAmino;
963
+ }
964
+ /**
965
+ * ExecTxResult contains results of executing one individual transaction.
966
+ *
967
+ * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
968
+ */
969
+ export interface ExecTxResult {
970
+ code: number;
971
+ data: Uint8Array;
972
+ /** nondeterministic */
973
+ log: string;
974
+ /** nondeterministic */
975
+ info: string;
976
+ gasWanted: bigint;
977
+ gasUsed: bigint;
978
+ events: Event[];
979
+ codespace: string;
980
+ }
981
+ export interface ExecTxResultProtoMsg {
982
+ typeUrl: "/tendermint.abci.ExecTxResult";
983
+ value: Uint8Array;
984
+ }
985
+ /**
986
+ * ExecTxResult contains results of executing one individual transaction.
987
+ *
988
+ * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
989
+ */
990
+ export interface ExecTxResultAmino {
991
+ code: number;
992
+ data: string;
993
+ /** nondeterministic */
994
+ log: string;
995
+ /** nondeterministic */
996
+ info: string;
997
+ gas_wanted: string;
998
+ gas_used: string;
999
+ events: EventAmino[];
1000
+ codespace: string;
1001
+ }
1002
+ export interface ExecTxResultAminoMsg {
1003
+ type: "/tendermint.abci.ExecTxResult";
1004
+ value: ExecTxResultAmino;
1005
+ }
1006
+ /**
1007
+ * TxResult contains results of executing the transaction.
1008
+ *
1009
+ * One usage is indexing transaction results.
1010
+ */
1011
+ export interface TxResult {
1012
+ height: bigint;
1013
+ index: number;
1014
+ tx: Uint8Array;
1015
+ result: ExecTxResult;
1016
+ }
1017
+ export interface TxResultProtoMsg {
1018
+ typeUrl: "/tendermint.abci.TxResult";
1019
+ value: Uint8Array;
1020
+ }
1021
+ /**
1022
+ * TxResult contains results of executing the transaction.
1023
+ *
1024
+ * One usage is indexing transaction results.
1025
+ */
1026
+ export interface TxResultAmino {
1027
+ height: string;
1028
+ index: number;
1029
+ tx: string;
1030
+ result: ExecTxResultAmino;
1031
+ }
1032
+ export interface TxResultAminoMsg {
1033
+ type: "/tendermint.abci.TxResult";
1034
+ value: TxResultAmino;
1035
+ }
1036
+ export interface Validator {
1037
+ /** The first 20 bytes of SHA256(public key) */
1038
+ address: Uint8Array;
1039
+ /** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
1040
+ power: bigint;
1041
+ }
1042
+ export interface ValidatorProtoMsg {
1043
+ typeUrl: "/tendermint.abci.Validator";
1044
+ value: Uint8Array;
1045
+ }
1046
+ export interface ValidatorAmino {
1047
+ /** The first 20 bytes of SHA256(public key) */
1048
+ address: string;
1049
+ /** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
1050
+ power: string;
1051
+ }
1052
+ export interface ValidatorAminoMsg {
1053
+ type: "/tendermint.abci.Validator";
1054
+ value: ValidatorAmino;
1055
+ }
1056
+ export interface ValidatorUpdate {
1057
+ pubKey: PublicKey;
1058
+ power: bigint;
1059
+ }
1060
+ export interface ValidatorUpdateProtoMsg {
1061
+ typeUrl: "/tendermint.abci.ValidatorUpdate";
1062
+ value: Uint8Array;
1063
+ }
1064
+ export interface ValidatorUpdateAmino {
1065
+ pub_key: PublicKeyAmino;
1066
+ power: string;
1067
+ }
1068
+ export interface ValidatorUpdateAminoMsg {
1069
+ type: "/tendermint.abci.ValidatorUpdate";
1070
+ value: ValidatorUpdateAmino;
1071
+ }
1072
+ export interface VoteInfo {
1073
+ validator: Validator;
1074
+ blockIdFlag: BlockIDFlag;
1075
+ }
1076
+ export interface VoteInfoProtoMsg {
1077
+ typeUrl: "/tendermint.abci.VoteInfo";
1078
+ value: Uint8Array;
1079
+ }
1080
+ export interface VoteInfoAmino {
1081
+ validator: ValidatorAmino;
1082
+ block_id_flag: BlockIDFlag;
1083
+ }
1084
+ export interface VoteInfoAminoMsg {
1085
+ type: "/tendermint.abci.VoteInfo";
1086
+ value: VoteInfoAmino;
1087
+ }
1088
+ export interface ExtendedVoteInfo {
1089
+ /** The validator that sent the vote. */
1090
+ validator: Validator;
1091
+ /** Non-deterministic extension provided by the sending validator's application. */
1092
+ voteExtension: Uint8Array;
1093
+ /** Vote extension signature created by CometBFT */
1094
+ extensionSignature: Uint8Array;
1095
+ /** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
1096
+ blockIdFlag: BlockIDFlag;
1097
+ }
1098
+ export interface ExtendedVoteInfoProtoMsg {
1099
+ typeUrl: "/tendermint.abci.ExtendedVoteInfo";
1100
+ value: Uint8Array;
1101
+ }
1102
+ export interface ExtendedVoteInfoAmino {
1103
+ /** The validator that sent the vote. */
1104
+ validator: ValidatorAmino;
1105
+ /** Non-deterministic extension provided by the sending validator's application. */
1106
+ vote_extension: string;
1107
+ /** Vote extension signature created by CometBFT */
1108
+ extension_signature: string;
1109
+ /** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
1110
+ block_id_flag: BlockIDFlag;
1111
+ }
1112
+ export interface ExtendedVoteInfoAminoMsg {
1113
+ type: "/tendermint.abci.ExtendedVoteInfo";
1114
+ value: ExtendedVoteInfoAmino;
1115
+ }
1116
+ export interface Misbehavior {
1117
+ type: MisbehaviorType;
1118
+ /** The offending validator */
1119
+ validator: Validator;
1120
+ /** The height when the offense occurred */
1121
+ height: bigint;
1122
+ /** The corresponding time where the offense occurred */
1123
+ time: Date;
1124
+ /**
1125
+ * Total voting power of the validator set in case the ABCI application does
1126
+ * not store historical validators.
1127
+ * https://github.com/tendermint/tendermint/issues/4581
1128
+ */
1129
+ totalVotingPower: bigint;
1130
+ }
1131
+ export interface MisbehaviorProtoMsg {
1132
+ typeUrl: "/tendermint.abci.Misbehavior";
1133
+ value: Uint8Array;
1134
+ }
1135
+ export interface MisbehaviorAmino {
1136
+ type: MisbehaviorType;
1137
+ /** The offending validator */
1138
+ validator: ValidatorAmino;
1139
+ /** The height when the offense occurred */
1140
+ height: string;
1141
+ /** The corresponding time where the offense occurred */
1142
+ time: string;
1143
+ /**
1144
+ * Total voting power of the validator set in case the ABCI application does
1145
+ * not store historical validators.
1146
+ * https://github.com/tendermint/tendermint/issues/4581
1147
+ */
1148
+ total_voting_power: string;
1149
+ }
1150
+ export interface MisbehaviorAminoMsg {
1151
+ type: "/tendermint.abci.Misbehavior";
1152
+ value: MisbehaviorAmino;
1153
+ }
1154
+ export interface Snapshot {
1155
+ /** The height at which the snapshot was taken */
1156
+ height: bigint;
1157
+ /** The application-specific snapshot format */
1158
+ format: number;
1159
+ /** Number of chunks in the snapshot */
1160
+ chunks: number;
1161
+ /** Arbitrary snapshot hash, equal only if identical */
1162
+ hash: Uint8Array;
1163
+ /** Arbitrary application metadata */
1164
+ metadata: Uint8Array;
1165
+ }
1166
+ export interface SnapshotProtoMsg {
1167
+ typeUrl: "/tendermint.abci.Snapshot";
1168
+ value: Uint8Array;
1169
+ }
1170
+ export interface SnapshotAmino {
1171
+ /** The height at which the snapshot was taken */
1172
+ height: string;
1173
+ /** The application-specific snapshot format */
1174
+ format: number;
1175
+ /** Number of chunks in the snapshot */
1176
+ chunks: number;
1177
+ /** Arbitrary snapshot hash, equal only if identical */
1178
+ hash: string;
1179
+ /** Arbitrary application metadata */
1180
+ metadata: string;
1181
+ }
1182
+ export interface SnapshotAminoMsg {
1183
+ type: "/tendermint.abci.Snapshot";
1184
+ value: SnapshotAmino;
1185
+ }
1186
+ export declare const Request: {
1187
+ typeUrl: string;
1188
+ is(o: any): o is Request;
1189
+ isAmino(o: any): o is RequestAmino;
1190
+ encode(message: Request, writer?: BinaryWriter): BinaryWriter;
1191
+ decode(input: BinaryReader | Uint8Array, length?: number): Request;
1192
+ fromPartial(object: DeepPartial<Request>): Request;
1193
+ fromAmino(object: RequestAmino): Request;
1194
+ toAmino(message: Request): RequestAmino;
1195
+ fromAminoMsg(object: RequestAminoMsg): Request;
1196
+ fromProtoMsg(message: RequestProtoMsg): Request;
1197
+ toProto(message: Request): Uint8Array;
1198
+ toProtoMsg(message: Request): RequestProtoMsg;
1199
+ };
1200
+ export declare const RequestEcho: {
1201
+ typeUrl: string;
1202
+ is(o: any): o is RequestEcho;
1203
+ isAmino(o: any): o is RequestEchoAmino;
1204
+ encode(message: RequestEcho, writer?: BinaryWriter): BinaryWriter;
1205
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestEcho;
1206
+ fromPartial(object: DeepPartial<RequestEcho>): RequestEcho;
1207
+ fromAmino(object: RequestEchoAmino): RequestEcho;
1208
+ toAmino(message: RequestEcho): RequestEchoAmino;
1209
+ fromAminoMsg(object: RequestEchoAminoMsg): RequestEcho;
1210
+ fromProtoMsg(message: RequestEchoProtoMsg): RequestEcho;
1211
+ toProto(message: RequestEcho): Uint8Array;
1212
+ toProtoMsg(message: RequestEcho): RequestEchoProtoMsg;
1213
+ };
1214
+ export declare const RequestFlush: {
1215
+ typeUrl: string;
1216
+ is(o: any): o is RequestFlush;
1217
+ isAmino(o: any): o is RequestFlushAmino;
1218
+ encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter;
1219
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestFlush;
1220
+ fromPartial(_: DeepPartial<RequestFlush>): RequestFlush;
1221
+ fromAmino(_: RequestFlushAmino): RequestFlush;
1222
+ toAmino(_: RequestFlush): RequestFlushAmino;
1223
+ fromAminoMsg(object: RequestFlushAminoMsg): RequestFlush;
1224
+ fromProtoMsg(message: RequestFlushProtoMsg): RequestFlush;
1225
+ toProto(message: RequestFlush): Uint8Array;
1226
+ toProtoMsg(message: RequestFlush): RequestFlushProtoMsg;
1227
+ };
1228
+ export declare const RequestInfo: {
1229
+ typeUrl: string;
1230
+ is(o: any): o is RequestInfo;
1231
+ isAmino(o: any): o is RequestInfoAmino;
1232
+ encode(message: RequestInfo, writer?: BinaryWriter): BinaryWriter;
1233
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestInfo;
1234
+ fromPartial(object: DeepPartial<RequestInfo>): RequestInfo;
1235
+ fromAmino(object: RequestInfoAmino): RequestInfo;
1236
+ toAmino(message: RequestInfo): RequestInfoAmino;
1237
+ fromAminoMsg(object: RequestInfoAminoMsg): RequestInfo;
1238
+ fromProtoMsg(message: RequestInfoProtoMsg): RequestInfo;
1239
+ toProto(message: RequestInfo): Uint8Array;
1240
+ toProtoMsg(message: RequestInfo): RequestInfoProtoMsg;
1241
+ };
1242
+ export declare const RequestInitChain: {
1243
+ typeUrl: string;
1244
+ is(o: any): o is RequestInitChain;
1245
+ isAmino(o: any): o is RequestInitChainAmino;
1246
+ encode(message: RequestInitChain, writer?: BinaryWriter): BinaryWriter;
1247
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestInitChain;
1248
+ fromPartial(object: DeepPartial<RequestInitChain>): RequestInitChain;
1249
+ fromAmino(object: RequestInitChainAmino): RequestInitChain;
1250
+ toAmino(message: RequestInitChain): RequestInitChainAmino;
1251
+ fromAminoMsg(object: RequestInitChainAminoMsg): RequestInitChain;
1252
+ fromProtoMsg(message: RequestInitChainProtoMsg): RequestInitChain;
1253
+ toProto(message: RequestInitChain): Uint8Array;
1254
+ toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg;
1255
+ };
1256
+ export declare const RequestQuery: {
1257
+ typeUrl: string;
1258
+ is(o: any): o is RequestQuery;
1259
+ isAmino(o: any): o is RequestQueryAmino;
1260
+ encode(message: RequestQuery, writer?: BinaryWriter): BinaryWriter;
1261
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestQuery;
1262
+ fromPartial(object: DeepPartial<RequestQuery>): RequestQuery;
1263
+ fromAmino(object: RequestQueryAmino): RequestQuery;
1264
+ toAmino(message: RequestQuery): RequestQueryAmino;
1265
+ fromAminoMsg(object: RequestQueryAminoMsg): RequestQuery;
1266
+ fromProtoMsg(message: RequestQueryProtoMsg): RequestQuery;
1267
+ toProto(message: RequestQuery): Uint8Array;
1268
+ toProtoMsg(message: RequestQuery): RequestQueryProtoMsg;
1269
+ };
1270
+ export declare const RequestCheckTx: {
1271
+ typeUrl: string;
1272
+ is(o: any): o is RequestCheckTx;
1273
+ isAmino(o: any): o is RequestCheckTxAmino;
1274
+ encode(message: RequestCheckTx, writer?: BinaryWriter): BinaryWriter;
1275
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestCheckTx;
1276
+ fromPartial(object: DeepPartial<RequestCheckTx>): RequestCheckTx;
1277
+ fromAmino(object: RequestCheckTxAmino): RequestCheckTx;
1278
+ toAmino(message: RequestCheckTx): RequestCheckTxAmino;
1279
+ fromAminoMsg(object: RequestCheckTxAminoMsg): RequestCheckTx;
1280
+ fromProtoMsg(message: RequestCheckTxProtoMsg): RequestCheckTx;
1281
+ toProto(message: RequestCheckTx): Uint8Array;
1282
+ toProtoMsg(message: RequestCheckTx): RequestCheckTxProtoMsg;
1283
+ };
1284
+ export declare const RequestCommit: {
1285
+ typeUrl: string;
1286
+ is(o: any): o is RequestCommit;
1287
+ isAmino(o: any): o is RequestCommitAmino;
1288
+ encode(_: RequestCommit, writer?: BinaryWriter): BinaryWriter;
1289
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestCommit;
1290
+ fromPartial(_: DeepPartial<RequestCommit>): RequestCommit;
1291
+ fromAmino(_: RequestCommitAmino): RequestCommit;
1292
+ toAmino(_: RequestCommit): RequestCommitAmino;
1293
+ fromAminoMsg(object: RequestCommitAminoMsg): RequestCommit;
1294
+ fromProtoMsg(message: RequestCommitProtoMsg): RequestCommit;
1295
+ toProto(message: RequestCommit): Uint8Array;
1296
+ toProtoMsg(message: RequestCommit): RequestCommitProtoMsg;
1297
+ };
1298
+ export declare const RequestListSnapshots: {
1299
+ typeUrl: string;
1300
+ is(o: any): o is RequestListSnapshots;
1301
+ isAmino(o: any): o is RequestListSnapshotsAmino;
1302
+ encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter;
1303
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestListSnapshots;
1304
+ fromPartial(_: DeepPartial<RequestListSnapshots>): RequestListSnapshots;
1305
+ fromAmino(_: RequestListSnapshotsAmino): RequestListSnapshots;
1306
+ toAmino(_: RequestListSnapshots): RequestListSnapshotsAmino;
1307
+ fromAminoMsg(object: RequestListSnapshotsAminoMsg): RequestListSnapshots;
1308
+ fromProtoMsg(message: RequestListSnapshotsProtoMsg): RequestListSnapshots;
1309
+ toProto(message: RequestListSnapshots): Uint8Array;
1310
+ toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg;
1311
+ };
1312
+ export declare const RequestOfferSnapshot: {
1313
+ typeUrl: string;
1314
+ is(o: any): o is RequestOfferSnapshot;
1315
+ isAmino(o: any): o is RequestOfferSnapshotAmino;
1316
+ encode(message: RequestOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
1317
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestOfferSnapshot;
1318
+ fromPartial(object: DeepPartial<RequestOfferSnapshot>): RequestOfferSnapshot;
1319
+ fromAmino(object: RequestOfferSnapshotAmino): RequestOfferSnapshot;
1320
+ toAmino(message: RequestOfferSnapshot): RequestOfferSnapshotAmino;
1321
+ fromAminoMsg(object: RequestOfferSnapshotAminoMsg): RequestOfferSnapshot;
1322
+ fromProtoMsg(message: RequestOfferSnapshotProtoMsg): RequestOfferSnapshot;
1323
+ toProto(message: RequestOfferSnapshot): Uint8Array;
1324
+ toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg;
1325
+ };
1326
+ export declare const RequestLoadSnapshotChunk: {
1327
+ typeUrl: string;
1328
+ is(o: any): o is RequestLoadSnapshotChunk;
1329
+ isAmino(o: any): o is RequestLoadSnapshotChunkAmino;
1330
+ encode(message: RequestLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
1331
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestLoadSnapshotChunk;
1332
+ fromPartial(object: DeepPartial<RequestLoadSnapshotChunk>): RequestLoadSnapshotChunk;
1333
+ fromAmino(object: RequestLoadSnapshotChunkAmino): RequestLoadSnapshotChunk;
1334
+ toAmino(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkAmino;
1335
+ fromAminoMsg(object: RequestLoadSnapshotChunkAminoMsg): RequestLoadSnapshotChunk;
1336
+ fromProtoMsg(message: RequestLoadSnapshotChunkProtoMsg): RequestLoadSnapshotChunk;
1337
+ toProto(message: RequestLoadSnapshotChunk): Uint8Array;
1338
+ toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg;
1339
+ };
1340
+ export declare const RequestApplySnapshotChunk: {
1341
+ typeUrl: string;
1342
+ is(o: any): o is RequestApplySnapshotChunk;
1343
+ isAmino(o: any): o is RequestApplySnapshotChunkAmino;
1344
+ encode(message: RequestApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
1345
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestApplySnapshotChunk;
1346
+ fromPartial(object: DeepPartial<RequestApplySnapshotChunk>): RequestApplySnapshotChunk;
1347
+ fromAmino(object: RequestApplySnapshotChunkAmino): RequestApplySnapshotChunk;
1348
+ toAmino(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkAmino;
1349
+ fromAminoMsg(object: RequestApplySnapshotChunkAminoMsg): RequestApplySnapshotChunk;
1350
+ fromProtoMsg(message: RequestApplySnapshotChunkProtoMsg): RequestApplySnapshotChunk;
1351
+ toProto(message: RequestApplySnapshotChunk): Uint8Array;
1352
+ toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg;
1353
+ };
1354
+ export declare const RequestPrepareProposal: {
1355
+ typeUrl: string;
1356
+ is(o: any): o is RequestPrepareProposal;
1357
+ isAmino(o: any): o is RequestPrepareProposalAmino;
1358
+ encode(message: RequestPrepareProposal, writer?: BinaryWriter): BinaryWriter;
1359
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestPrepareProposal;
1360
+ fromPartial(object: DeepPartial<RequestPrepareProposal>): RequestPrepareProposal;
1361
+ fromAmino(object: RequestPrepareProposalAmino): RequestPrepareProposal;
1362
+ toAmino(message: RequestPrepareProposal): RequestPrepareProposalAmino;
1363
+ fromAminoMsg(object: RequestPrepareProposalAminoMsg): RequestPrepareProposal;
1364
+ fromProtoMsg(message: RequestPrepareProposalProtoMsg): RequestPrepareProposal;
1365
+ toProto(message: RequestPrepareProposal): Uint8Array;
1366
+ toProtoMsg(message: RequestPrepareProposal): RequestPrepareProposalProtoMsg;
1367
+ };
1368
+ export declare const RequestProcessProposal: {
1369
+ typeUrl: string;
1370
+ is(o: any): o is RequestProcessProposal;
1371
+ isAmino(o: any): o is RequestProcessProposalAmino;
1372
+ encode(message: RequestProcessProposal, writer?: BinaryWriter): BinaryWriter;
1373
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestProcessProposal;
1374
+ fromPartial(object: DeepPartial<RequestProcessProposal>): RequestProcessProposal;
1375
+ fromAmino(object: RequestProcessProposalAmino): RequestProcessProposal;
1376
+ toAmino(message: RequestProcessProposal): RequestProcessProposalAmino;
1377
+ fromAminoMsg(object: RequestProcessProposalAminoMsg): RequestProcessProposal;
1378
+ fromProtoMsg(message: RequestProcessProposalProtoMsg): RequestProcessProposal;
1379
+ toProto(message: RequestProcessProposal): Uint8Array;
1380
+ toProtoMsg(message: RequestProcessProposal): RequestProcessProposalProtoMsg;
1381
+ };
1382
+ export declare const RequestExtendVote: {
1383
+ typeUrl: string;
1384
+ is(o: any): o is RequestExtendVote;
1385
+ isAmino(o: any): o is RequestExtendVoteAmino;
1386
+ encode(message: RequestExtendVote, writer?: BinaryWriter): BinaryWriter;
1387
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestExtendVote;
1388
+ fromPartial(object: DeepPartial<RequestExtendVote>): RequestExtendVote;
1389
+ fromAmino(object: RequestExtendVoteAmino): RequestExtendVote;
1390
+ toAmino(message: RequestExtendVote): RequestExtendVoteAmino;
1391
+ fromAminoMsg(object: RequestExtendVoteAminoMsg): RequestExtendVote;
1392
+ fromProtoMsg(message: RequestExtendVoteProtoMsg): RequestExtendVote;
1393
+ toProto(message: RequestExtendVote): Uint8Array;
1394
+ toProtoMsg(message: RequestExtendVote): RequestExtendVoteProtoMsg;
1395
+ };
1396
+ export declare const RequestVerifyVoteExtension: {
1397
+ typeUrl: string;
1398
+ is(o: any): o is RequestVerifyVoteExtension;
1399
+ isAmino(o: any): o is RequestVerifyVoteExtensionAmino;
1400
+ encode(message: RequestVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter;
1401
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestVerifyVoteExtension;
1402
+ fromPartial(object: DeepPartial<RequestVerifyVoteExtension>): RequestVerifyVoteExtension;
1403
+ fromAmino(object: RequestVerifyVoteExtensionAmino): RequestVerifyVoteExtension;
1404
+ toAmino(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionAmino;
1405
+ fromAminoMsg(object: RequestVerifyVoteExtensionAminoMsg): RequestVerifyVoteExtension;
1406
+ fromProtoMsg(message: RequestVerifyVoteExtensionProtoMsg): RequestVerifyVoteExtension;
1407
+ toProto(message: RequestVerifyVoteExtension): Uint8Array;
1408
+ toProtoMsg(message: RequestVerifyVoteExtension): RequestVerifyVoteExtensionProtoMsg;
1409
+ };
1410
+ export declare const RequestFinalizeBlock: {
1411
+ typeUrl: string;
1412
+ is(o: any): o is RequestFinalizeBlock;
1413
+ isAmino(o: any): o is RequestFinalizeBlockAmino;
1414
+ encode(message: RequestFinalizeBlock, writer?: BinaryWriter): BinaryWriter;
1415
+ decode(input: BinaryReader | Uint8Array, length?: number): RequestFinalizeBlock;
1416
+ fromPartial(object: DeepPartial<RequestFinalizeBlock>): RequestFinalizeBlock;
1417
+ fromAmino(object: RequestFinalizeBlockAmino): RequestFinalizeBlock;
1418
+ toAmino(message: RequestFinalizeBlock): RequestFinalizeBlockAmino;
1419
+ fromAminoMsg(object: RequestFinalizeBlockAminoMsg): RequestFinalizeBlock;
1420
+ fromProtoMsg(message: RequestFinalizeBlockProtoMsg): RequestFinalizeBlock;
1421
+ toProto(message: RequestFinalizeBlock): Uint8Array;
1422
+ toProtoMsg(message: RequestFinalizeBlock): RequestFinalizeBlockProtoMsg;
1423
+ };
1424
+ export declare const Response: {
1425
+ typeUrl: string;
1426
+ is(o: any): o is Response;
1427
+ isAmino(o: any): o is ResponseAmino;
1428
+ encode(message: Response, writer?: BinaryWriter): BinaryWriter;
1429
+ decode(input: BinaryReader | Uint8Array, length?: number): Response;
1430
+ fromPartial(object: DeepPartial<Response>): Response;
1431
+ fromAmino(object: ResponseAmino): Response;
1432
+ toAmino(message: Response): ResponseAmino;
1433
+ fromAminoMsg(object: ResponseAminoMsg): Response;
1434
+ fromProtoMsg(message: ResponseProtoMsg): Response;
1435
+ toProto(message: Response): Uint8Array;
1436
+ toProtoMsg(message: Response): ResponseProtoMsg;
1437
+ };
1438
+ export declare const ResponseException: {
1439
+ typeUrl: string;
1440
+ is(o: any): o is ResponseException;
1441
+ isAmino(o: any): o is ResponseExceptionAmino;
1442
+ encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter;
1443
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseException;
1444
+ fromPartial(object: DeepPartial<ResponseException>): ResponseException;
1445
+ fromAmino(object: ResponseExceptionAmino): ResponseException;
1446
+ toAmino(message: ResponseException): ResponseExceptionAmino;
1447
+ fromAminoMsg(object: ResponseExceptionAminoMsg): ResponseException;
1448
+ fromProtoMsg(message: ResponseExceptionProtoMsg): ResponseException;
1449
+ toProto(message: ResponseException): Uint8Array;
1450
+ toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg;
1451
+ };
1452
+ export declare const ResponseEcho: {
1453
+ typeUrl: string;
1454
+ is(o: any): o is ResponseEcho;
1455
+ isAmino(o: any): o is ResponseEchoAmino;
1456
+ encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter;
1457
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseEcho;
1458
+ fromPartial(object: DeepPartial<ResponseEcho>): ResponseEcho;
1459
+ fromAmino(object: ResponseEchoAmino): ResponseEcho;
1460
+ toAmino(message: ResponseEcho): ResponseEchoAmino;
1461
+ fromAminoMsg(object: ResponseEchoAminoMsg): ResponseEcho;
1462
+ fromProtoMsg(message: ResponseEchoProtoMsg): ResponseEcho;
1463
+ toProto(message: ResponseEcho): Uint8Array;
1464
+ toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg;
1465
+ };
1466
+ export declare const ResponseFlush: {
1467
+ typeUrl: string;
1468
+ is(o: any): o is ResponseFlush;
1469
+ isAmino(o: any): o is ResponseFlushAmino;
1470
+ encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter;
1471
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseFlush;
1472
+ fromPartial(_: DeepPartial<ResponseFlush>): ResponseFlush;
1473
+ fromAmino(_: ResponseFlushAmino): ResponseFlush;
1474
+ toAmino(_: ResponseFlush): ResponseFlushAmino;
1475
+ fromAminoMsg(object: ResponseFlushAminoMsg): ResponseFlush;
1476
+ fromProtoMsg(message: ResponseFlushProtoMsg): ResponseFlush;
1477
+ toProto(message: ResponseFlush): Uint8Array;
1478
+ toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg;
1479
+ };
1480
+ export declare const ResponseInfo: {
1481
+ typeUrl: string;
1482
+ is(o: any): o is ResponseInfo;
1483
+ isAmino(o: any): o is ResponseInfoAmino;
1484
+ encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter;
1485
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseInfo;
1486
+ fromPartial(object: DeepPartial<ResponseInfo>): ResponseInfo;
1487
+ fromAmino(object: ResponseInfoAmino): ResponseInfo;
1488
+ toAmino(message: ResponseInfo): ResponseInfoAmino;
1489
+ fromAminoMsg(object: ResponseInfoAminoMsg): ResponseInfo;
1490
+ fromProtoMsg(message: ResponseInfoProtoMsg): ResponseInfo;
1491
+ toProto(message: ResponseInfo): Uint8Array;
1492
+ toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg;
1493
+ };
1494
+ export declare const ResponseInitChain: {
1495
+ typeUrl: string;
1496
+ is(o: any): o is ResponseInitChain;
1497
+ isAmino(o: any): o is ResponseInitChainAmino;
1498
+ encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter;
1499
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseInitChain;
1500
+ fromPartial(object: DeepPartial<ResponseInitChain>): ResponseInitChain;
1501
+ fromAmino(object: ResponseInitChainAmino): ResponseInitChain;
1502
+ toAmino(message: ResponseInitChain): ResponseInitChainAmino;
1503
+ fromAminoMsg(object: ResponseInitChainAminoMsg): ResponseInitChain;
1504
+ fromProtoMsg(message: ResponseInitChainProtoMsg): ResponseInitChain;
1505
+ toProto(message: ResponseInitChain): Uint8Array;
1506
+ toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg;
1507
+ };
1508
+ export declare const ResponseQuery: {
1509
+ typeUrl: string;
1510
+ is(o: any): o is ResponseQuery;
1511
+ isAmino(o: any): o is ResponseQueryAmino;
1512
+ encode(message: ResponseQuery, writer?: BinaryWriter): BinaryWriter;
1513
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseQuery;
1514
+ fromPartial(object: DeepPartial<ResponseQuery>): ResponseQuery;
1515
+ fromAmino(object: ResponseQueryAmino): ResponseQuery;
1516
+ toAmino(message: ResponseQuery): ResponseQueryAmino;
1517
+ fromAminoMsg(object: ResponseQueryAminoMsg): ResponseQuery;
1518
+ fromProtoMsg(message: ResponseQueryProtoMsg): ResponseQuery;
1519
+ toProto(message: ResponseQuery): Uint8Array;
1520
+ toProtoMsg(message: ResponseQuery): ResponseQueryProtoMsg;
1521
+ };
1522
+ export declare const ResponseCheckTx: {
1523
+ typeUrl: string;
1524
+ is(o: any): o is ResponseCheckTx;
1525
+ isAmino(o: any): o is ResponseCheckTxAmino;
1526
+ encode(message: ResponseCheckTx, writer?: BinaryWriter): BinaryWriter;
1527
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseCheckTx;
1528
+ fromPartial(object: DeepPartial<ResponseCheckTx>): ResponseCheckTx;
1529
+ fromAmino(object: ResponseCheckTxAmino): ResponseCheckTx;
1530
+ toAmino(message: ResponseCheckTx): ResponseCheckTxAmino;
1531
+ fromAminoMsg(object: ResponseCheckTxAminoMsg): ResponseCheckTx;
1532
+ fromProtoMsg(message: ResponseCheckTxProtoMsg): ResponseCheckTx;
1533
+ toProto(message: ResponseCheckTx): Uint8Array;
1534
+ toProtoMsg(message: ResponseCheckTx): ResponseCheckTxProtoMsg;
1535
+ };
1536
+ export declare const ResponseCommit: {
1537
+ typeUrl: string;
1538
+ is(o: any): o is ResponseCommit;
1539
+ isAmino(o: any): o is ResponseCommitAmino;
1540
+ encode(message: ResponseCommit, writer?: BinaryWriter): BinaryWriter;
1541
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseCommit;
1542
+ fromPartial(object: DeepPartial<ResponseCommit>): ResponseCommit;
1543
+ fromAmino(object: ResponseCommitAmino): ResponseCommit;
1544
+ toAmino(message: ResponseCommit): ResponseCommitAmino;
1545
+ fromAminoMsg(object: ResponseCommitAminoMsg): ResponseCommit;
1546
+ fromProtoMsg(message: ResponseCommitProtoMsg): ResponseCommit;
1547
+ toProto(message: ResponseCommit): Uint8Array;
1548
+ toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg;
1549
+ };
1550
+ export declare const ResponseListSnapshots: {
1551
+ typeUrl: string;
1552
+ is(o: any): o is ResponseListSnapshots;
1553
+ isAmino(o: any): o is ResponseListSnapshotsAmino;
1554
+ encode(message: ResponseListSnapshots, writer?: BinaryWriter): BinaryWriter;
1555
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseListSnapshots;
1556
+ fromPartial(object: DeepPartial<ResponseListSnapshots>): ResponseListSnapshots;
1557
+ fromAmino(object: ResponseListSnapshotsAmino): ResponseListSnapshots;
1558
+ toAmino(message: ResponseListSnapshots): ResponseListSnapshotsAmino;
1559
+ fromAminoMsg(object: ResponseListSnapshotsAminoMsg): ResponseListSnapshots;
1560
+ fromProtoMsg(message: ResponseListSnapshotsProtoMsg): ResponseListSnapshots;
1561
+ toProto(message: ResponseListSnapshots): Uint8Array;
1562
+ toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg;
1563
+ };
1564
+ export declare const ResponseOfferSnapshot: {
1565
+ typeUrl: string;
1566
+ is(o: any): o is ResponseOfferSnapshot;
1567
+ isAmino(o: any): o is ResponseOfferSnapshotAmino;
1568
+ encode(message: ResponseOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
1569
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseOfferSnapshot;
1570
+ fromPartial(object: DeepPartial<ResponseOfferSnapshot>): ResponseOfferSnapshot;
1571
+ fromAmino(object: ResponseOfferSnapshotAmino): ResponseOfferSnapshot;
1572
+ toAmino(message: ResponseOfferSnapshot): ResponseOfferSnapshotAmino;
1573
+ fromAminoMsg(object: ResponseOfferSnapshotAminoMsg): ResponseOfferSnapshot;
1574
+ fromProtoMsg(message: ResponseOfferSnapshotProtoMsg): ResponseOfferSnapshot;
1575
+ toProto(message: ResponseOfferSnapshot): Uint8Array;
1576
+ toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg;
1577
+ };
1578
+ export declare const ResponseLoadSnapshotChunk: {
1579
+ typeUrl: string;
1580
+ is(o: any): o is ResponseLoadSnapshotChunk;
1581
+ isAmino(o: any): o is ResponseLoadSnapshotChunkAmino;
1582
+ encode(message: ResponseLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
1583
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseLoadSnapshotChunk;
1584
+ fromPartial(object: DeepPartial<ResponseLoadSnapshotChunk>): ResponseLoadSnapshotChunk;
1585
+ fromAmino(object: ResponseLoadSnapshotChunkAmino): ResponseLoadSnapshotChunk;
1586
+ toAmino(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkAmino;
1587
+ fromAminoMsg(object: ResponseLoadSnapshotChunkAminoMsg): ResponseLoadSnapshotChunk;
1588
+ fromProtoMsg(message: ResponseLoadSnapshotChunkProtoMsg): ResponseLoadSnapshotChunk;
1589
+ toProto(message: ResponseLoadSnapshotChunk): Uint8Array;
1590
+ toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg;
1591
+ };
1592
+ export declare const ResponseApplySnapshotChunk: {
1593
+ typeUrl: string;
1594
+ is(o: any): o is ResponseApplySnapshotChunk;
1595
+ isAmino(o: any): o is ResponseApplySnapshotChunkAmino;
1596
+ encode(message: ResponseApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
1597
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseApplySnapshotChunk;
1598
+ fromPartial(object: DeepPartial<ResponseApplySnapshotChunk>): ResponseApplySnapshotChunk;
1599
+ fromAmino(object: ResponseApplySnapshotChunkAmino): ResponseApplySnapshotChunk;
1600
+ toAmino(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkAmino;
1601
+ fromAminoMsg(object: ResponseApplySnapshotChunkAminoMsg): ResponseApplySnapshotChunk;
1602
+ fromProtoMsg(message: ResponseApplySnapshotChunkProtoMsg): ResponseApplySnapshotChunk;
1603
+ toProto(message: ResponseApplySnapshotChunk): Uint8Array;
1604
+ toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg;
1605
+ };
1606
+ export declare const ResponsePrepareProposal: {
1607
+ typeUrl: string;
1608
+ is(o: any): o is ResponsePrepareProposal;
1609
+ isAmino(o: any): o is ResponsePrepareProposalAmino;
1610
+ encode(message: ResponsePrepareProposal, writer?: BinaryWriter): BinaryWriter;
1611
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponsePrepareProposal;
1612
+ fromPartial(object: DeepPartial<ResponsePrepareProposal>): ResponsePrepareProposal;
1613
+ fromAmino(object: ResponsePrepareProposalAmino): ResponsePrepareProposal;
1614
+ toAmino(message: ResponsePrepareProposal): ResponsePrepareProposalAmino;
1615
+ fromAminoMsg(object: ResponsePrepareProposalAminoMsg): ResponsePrepareProposal;
1616
+ fromProtoMsg(message: ResponsePrepareProposalProtoMsg): ResponsePrepareProposal;
1617
+ toProto(message: ResponsePrepareProposal): Uint8Array;
1618
+ toProtoMsg(message: ResponsePrepareProposal): ResponsePrepareProposalProtoMsg;
1619
+ };
1620
+ export declare const ResponseProcessProposal: {
1621
+ typeUrl: string;
1622
+ is(o: any): o is ResponseProcessProposal;
1623
+ isAmino(o: any): o is ResponseProcessProposalAmino;
1624
+ encode(message: ResponseProcessProposal, writer?: BinaryWriter): BinaryWriter;
1625
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseProcessProposal;
1626
+ fromPartial(object: DeepPartial<ResponseProcessProposal>): ResponseProcessProposal;
1627
+ fromAmino(object: ResponseProcessProposalAmino): ResponseProcessProposal;
1628
+ toAmino(message: ResponseProcessProposal): ResponseProcessProposalAmino;
1629
+ fromAminoMsg(object: ResponseProcessProposalAminoMsg): ResponseProcessProposal;
1630
+ fromProtoMsg(message: ResponseProcessProposalProtoMsg): ResponseProcessProposal;
1631
+ toProto(message: ResponseProcessProposal): Uint8Array;
1632
+ toProtoMsg(message: ResponseProcessProposal): ResponseProcessProposalProtoMsg;
1633
+ };
1634
+ export declare const ResponseExtendVote: {
1635
+ typeUrl: string;
1636
+ is(o: any): o is ResponseExtendVote;
1637
+ isAmino(o: any): o is ResponseExtendVoteAmino;
1638
+ encode(message: ResponseExtendVote, writer?: BinaryWriter): BinaryWriter;
1639
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseExtendVote;
1640
+ fromPartial(object: DeepPartial<ResponseExtendVote>): ResponseExtendVote;
1641
+ fromAmino(object: ResponseExtendVoteAmino): ResponseExtendVote;
1642
+ toAmino(message: ResponseExtendVote): ResponseExtendVoteAmino;
1643
+ fromAminoMsg(object: ResponseExtendVoteAminoMsg): ResponseExtendVote;
1644
+ fromProtoMsg(message: ResponseExtendVoteProtoMsg): ResponseExtendVote;
1645
+ toProto(message: ResponseExtendVote): Uint8Array;
1646
+ toProtoMsg(message: ResponseExtendVote): ResponseExtendVoteProtoMsg;
1647
+ };
1648
+ export declare const ResponseVerifyVoteExtension: {
1649
+ typeUrl: string;
1650
+ is(o: any): o is ResponseVerifyVoteExtension;
1651
+ isAmino(o: any): o is ResponseVerifyVoteExtensionAmino;
1652
+ encode(message: ResponseVerifyVoteExtension, writer?: BinaryWriter): BinaryWriter;
1653
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseVerifyVoteExtension;
1654
+ fromPartial(object: DeepPartial<ResponseVerifyVoteExtension>): ResponseVerifyVoteExtension;
1655
+ fromAmino(object: ResponseVerifyVoteExtensionAmino): ResponseVerifyVoteExtension;
1656
+ toAmino(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionAmino;
1657
+ fromAminoMsg(object: ResponseVerifyVoteExtensionAminoMsg): ResponseVerifyVoteExtension;
1658
+ fromProtoMsg(message: ResponseVerifyVoteExtensionProtoMsg): ResponseVerifyVoteExtension;
1659
+ toProto(message: ResponseVerifyVoteExtension): Uint8Array;
1660
+ toProtoMsg(message: ResponseVerifyVoteExtension): ResponseVerifyVoteExtensionProtoMsg;
1661
+ };
1662
+ export declare const ResponseFinalizeBlock: {
1663
+ typeUrl: string;
1664
+ is(o: any): o is ResponseFinalizeBlock;
1665
+ isAmino(o: any): o is ResponseFinalizeBlockAmino;
1666
+ encode(message: ResponseFinalizeBlock, writer?: BinaryWriter): BinaryWriter;
1667
+ decode(input: BinaryReader | Uint8Array, length?: number): ResponseFinalizeBlock;
1668
+ fromPartial(object: DeepPartial<ResponseFinalizeBlock>): ResponseFinalizeBlock;
1669
+ fromAmino(object: ResponseFinalizeBlockAmino): ResponseFinalizeBlock;
1670
+ toAmino(message: ResponseFinalizeBlock): ResponseFinalizeBlockAmino;
1671
+ fromAminoMsg(object: ResponseFinalizeBlockAminoMsg): ResponseFinalizeBlock;
1672
+ fromProtoMsg(message: ResponseFinalizeBlockProtoMsg): ResponseFinalizeBlock;
1673
+ toProto(message: ResponseFinalizeBlock): Uint8Array;
1674
+ toProtoMsg(message: ResponseFinalizeBlock): ResponseFinalizeBlockProtoMsg;
1675
+ };
1676
+ export declare const CommitInfo: {
1677
+ typeUrl: string;
1678
+ is(o: any): o is CommitInfo;
1679
+ isAmino(o: any): o is CommitInfoAmino;
1680
+ encode(message: CommitInfo, writer?: BinaryWriter): BinaryWriter;
1681
+ decode(input: BinaryReader | Uint8Array, length?: number): CommitInfo;
1682
+ fromPartial(object: DeepPartial<CommitInfo>): CommitInfo;
1683
+ fromAmino(object: CommitInfoAmino): CommitInfo;
1684
+ toAmino(message: CommitInfo): CommitInfoAmino;
1685
+ fromAminoMsg(object: CommitInfoAminoMsg): CommitInfo;
1686
+ fromProtoMsg(message: CommitInfoProtoMsg): CommitInfo;
1687
+ toProto(message: CommitInfo): Uint8Array;
1688
+ toProtoMsg(message: CommitInfo): CommitInfoProtoMsg;
1689
+ };
1690
+ export declare const ExtendedCommitInfo: {
1691
+ typeUrl: string;
1692
+ is(o: any): o is ExtendedCommitInfo;
1693
+ isAmino(o: any): o is ExtendedCommitInfoAmino;
1694
+ encode(message: ExtendedCommitInfo, writer?: BinaryWriter): BinaryWriter;
1695
+ decode(input: BinaryReader | Uint8Array, length?: number): ExtendedCommitInfo;
1696
+ fromPartial(object: DeepPartial<ExtendedCommitInfo>): ExtendedCommitInfo;
1697
+ fromAmino(object: ExtendedCommitInfoAmino): ExtendedCommitInfo;
1698
+ toAmino(message: ExtendedCommitInfo): ExtendedCommitInfoAmino;
1699
+ fromAminoMsg(object: ExtendedCommitInfoAminoMsg): ExtendedCommitInfo;
1700
+ fromProtoMsg(message: ExtendedCommitInfoProtoMsg): ExtendedCommitInfo;
1701
+ toProto(message: ExtendedCommitInfo): Uint8Array;
1702
+ toProtoMsg(message: ExtendedCommitInfo): ExtendedCommitInfoProtoMsg;
1703
+ };
1704
+ export declare const Event: {
1705
+ typeUrl: string;
1706
+ is(o: any): o is Event;
1707
+ isAmino(o: any): o is EventAmino;
1708
+ encode(message: Event, writer?: BinaryWriter): BinaryWriter;
1709
+ decode(input: BinaryReader | Uint8Array, length?: number): Event;
1710
+ fromPartial(object: DeepPartial<Event>): Event;
1711
+ fromAmino(object: EventAmino): Event;
1712
+ toAmino(message: Event): EventAmino;
1713
+ fromAminoMsg(object: EventAminoMsg): Event;
1714
+ fromProtoMsg(message: EventProtoMsg): Event;
1715
+ toProto(message: Event): Uint8Array;
1716
+ toProtoMsg(message: Event): EventProtoMsg;
1717
+ };
1718
+ export declare const EventAttribute: {
1719
+ typeUrl: string;
1720
+ is(o: any): o is EventAttribute;
1721
+ isAmino(o: any): o is EventAttributeAmino;
1722
+ encode(message: EventAttribute, writer?: BinaryWriter): BinaryWriter;
1723
+ decode(input: BinaryReader | Uint8Array, length?: number): EventAttribute;
1724
+ fromPartial(object: DeepPartial<EventAttribute>): EventAttribute;
1725
+ fromAmino(object: EventAttributeAmino): EventAttribute;
1726
+ toAmino(message: EventAttribute): EventAttributeAmino;
1727
+ fromAminoMsg(object: EventAttributeAminoMsg): EventAttribute;
1728
+ fromProtoMsg(message: EventAttributeProtoMsg): EventAttribute;
1729
+ toProto(message: EventAttribute): Uint8Array;
1730
+ toProtoMsg(message: EventAttribute): EventAttributeProtoMsg;
1731
+ };
1732
+ export declare const ExecTxResult: {
1733
+ typeUrl: string;
1734
+ is(o: any): o is ExecTxResult;
1735
+ isAmino(o: any): o is ExecTxResultAmino;
1736
+ encode(message: ExecTxResult, writer?: BinaryWriter): BinaryWriter;
1737
+ decode(input: BinaryReader | Uint8Array, length?: number): ExecTxResult;
1738
+ fromPartial(object: DeepPartial<ExecTxResult>): ExecTxResult;
1739
+ fromAmino(object: ExecTxResultAmino): ExecTxResult;
1740
+ toAmino(message: ExecTxResult): ExecTxResultAmino;
1741
+ fromAminoMsg(object: ExecTxResultAminoMsg): ExecTxResult;
1742
+ fromProtoMsg(message: ExecTxResultProtoMsg): ExecTxResult;
1743
+ toProto(message: ExecTxResult): Uint8Array;
1744
+ toProtoMsg(message: ExecTxResult): ExecTxResultProtoMsg;
1745
+ };
1746
+ export declare const TxResult: {
1747
+ typeUrl: string;
1748
+ is(o: any): o is TxResult;
1749
+ isAmino(o: any): o is TxResultAmino;
1750
+ encode(message: TxResult, writer?: BinaryWriter): BinaryWriter;
1751
+ decode(input: BinaryReader | Uint8Array, length?: number): TxResult;
1752
+ fromPartial(object: DeepPartial<TxResult>): TxResult;
1753
+ fromAmino(object: TxResultAmino): TxResult;
1754
+ toAmino(message: TxResult): TxResultAmino;
1755
+ fromAminoMsg(object: TxResultAminoMsg): TxResult;
1756
+ fromProtoMsg(message: TxResultProtoMsg): TxResult;
1757
+ toProto(message: TxResult): Uint8Array;
1758
+ toProtoMsg(message: TxResult): TxResultProtoMsg;
1759
+ };
1760
+ export declare const Validator: {
1761
+ typeUrl: string;
1762
+ is(o: any): o is Validator;
1763
+ isAmino(o: any): o is ValidatorAmino;
1764
+ encode(message: Validator, writer?: BinaryWriter): BinaryWriter;
1765
+ decode(input: BinaryReader | Uint8Array, length?: number): Validator;
1766
+ fromPartial(object: DeepPartial<Validator>): Validator;
1767
+ fromAmino(object: ValidatorAmino): Validator;
1768
+ toAmino(message: Validator): ValidatorAmino;
1769
+ fromAminoMsg(object: ValidatorAminoMsg): Validator;
1770
+ fromProtoMsg(message: ValidatorProtoMsg): Validator;
1771
+ toProto(message: Validator): Uint8Array;
1772
+ toProtoMsg(message: Validator): ValidatorProtoMsg;
1773
+ };
1774
+ export declare const ValidatorUpdate: {
1775
+ typeUrl: string;
1776
+ is(o: any): o is ValidatorUpdate;
1777
+ isAmino(o: any): o is ValidatorUpdateAmino;
1778
+ encode(message: ValidatorUpdate, writer?: BinaryWriter): BinaryWriter;
1779
+ decode(input: BinaryReader | Uint8Array, length?: number): ValidatorUpdate;
1780
+ fromPartial(object: DeepPartial<ValidatorUpdate>): ValidatorUpdate;
1781
+ fromAmino(object: ValidatorUpdateAmino): ValidatorUpdate;
1782
+ toAmino(message: ValidatorUpdate): ValidatorUpdateAmino;
1783
+ fromAminoMsg(object: ValidatorUpdateAminoMsg): ValidatorUpdate;
1784
+ fromProtoMsg(message: ValidatorUpdateProtoMsg): ValidatorUpdate;
1785
+ toProto(message: ValidatorUpdate): Uint8Array;
1786
+ toProtoMsg(message: ValidatorUpdate): ValidatorUpdateProtoMsg;
1787
+ };
1788
+ export declare const VoteInfo: {
1789
+ typeUrl: string;
1790
+ is(o: any): o is VoteInfo;
1791
+ isAmino(o: any): o is VoteInfoAmino;
1792
+ encode(message: VoteInfo, writer?: BinaryWriter): BinaryWriter;
1793
+ decode(input: BinaryReader | Uint8Array, length?: number): VoteInfo;
1794
+ fromPartial(object: DeepPartial<VoteInfo>): VoteInfo;
1795
+ fromAmino(object: VoteInfoAmino): VoteInfo;
1796
+ toAmino(message: VoteInfo): VoteInfoAmino;
1797
+ fromAminoMsg(object: VoteInfoAminoMsg): VoteInfo;
1798
+ fromProtoMsg(message: VoteInfoProtoMsg): VoteInfo;
1799
+ toProto(message: VoteInfo): Uint8Array;
1800
+ toProtoMsg(message: VoteInfo): VoteInfoProtoMsg;
1801
+ };
1802
+ export declare const ExtendedVoteInfo: {
1803
+ typeUrl: string;
1804
+ is(o: any): o is ExtendedVoteInfo;
1805
+ isAmino(o: any): o is ExtendedVoteInfoAmino;
1806
+ encode(message: ExtendedVoteInfo, writer?: BinaryWriter): BinaryWriter;
1807
+ decode(input: BinaryReader | Uint8Array, length?: number): ExtendedVoteInfo;
1808
+ fromPartial(object: DeepPartial<ExtendedVoteInfo>): ExtendedVoteInfo;
1809
+ fromAmino(object: ExtendedVoteInfoAmino): ExtendedVoteInfo;
1810
+ toAmino(message: ExtendedVoteInfo): ExtendedVoteInfoAmino;
1811
+ fromAminoMsg(object: ExtendedVoteInfoAminoMsg): ExtendedVoteInfo;
1812
+ fromProtoMsg(message: ExtendedVoteInfoProtoMsg): ExtendedVoteInfo;
1813
+ toProto(message: ExtendedVoteInfo): Uint8Array;
1814
+ toProtoMsg(message: ExtendedVoteInfo): ExtendedVoteInfoProtoMsg;
1815
+ };
1816
+ export declare const Misbehavior: {
1817
+ typeUrl: string;
1818
+ is(o: any): o is Misbehavior;
1819
+ isAmino(o: any): o is MisbehaviorAmino;
1820
+ encode(message: Misbehavior, writer?: BinaryWriter): BinaryWriter;
1821
+ decode(input: BinaryReader | Uint8Array, length?: number): Misbehavior;
1822
+ fromPartial(object: DeepPartial<Misbehavior>): Misbehavior;
1823
+ fromAmino(object: MisbehaviorAmino): Misbehavior;
1824
+ toAmino(message: Misbehavior): MisbehaviorAmino;
1825
+ fromAminoMsg(object: MisbehaviorAminoMsg): Misbehavior;
1826
+ fromProtoMsg(message: MisbehaviorProtoMsg): Misbehavior;
1827
+ toProto(message: Misbehavior): Uint8Array;
1828
+ toProtoMsg(message: Misbehavior): MisbehaviorProtoMsg;
1829
+ };
1830
+ export declare const Snapshot: {
1831
+ typeUrl: string;
1832
+ is(o: any): o is Snapshot;
1833
+ isAmino(o: any): o is SnapshotAmino;
1834
+ encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter;
1835
+ decode(input: BinaryReader | Uint8Array, length?: number): Snapshot;
1836
+ fromPartial(object: DeepPartial<Snapshot>): Snapshot;
1837
+ fromAmino(object: SnapshotAmino): Snapshot;
1838
+ toAmino(message: Snapshot): SnapshotAmino;
1839
+ fromAminoMsg(object: SnapshotAminoMsg): Snapshot;
1840
+ fromProtoMsg(message: SnapshotProtoMsg): Snapshot;
1841
+ toProto(message: Snapshot): Uint8Array;
1842
+ toProtoMsg(message: Snapshot): SnapshotProtoMsg;
1843
+ };