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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1369) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
  4. package/cosmos/app/runtime/v1alpha1/module.js +17 -0
  5. package/cosmos/app/v1alpha1/config.d.ts +72 -10
  6. package/cosmos/app/v1alpha1/config.js +31 -0
  7. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  8. package/cosmos/app/v1alpha1/module.js +23 -0
  9. package/cosmos/app/v1alpha1/query.d.ts +42 -6
  10. package/cosmos/app/v1alpha1/query.js +16 -0
  11. package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
  12. package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
  13. package/cosmos/app/v1alpha1/query.rpc.react.d.ts +6 -0
  14. package/cosmos/app/v1alpha1/query.rpc.react.js +7 -1
  15. package/cosmos/auth/module/v1/module.d.ts +60 -12
  16. package/cosmos/auth/module/v1/module.js +16 -0
  17. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  18. package/cosmos/auth/v1beta1/auth.js +34 -0
  19. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  20. package/cosmos/auth/v1beta1/genesis.js +6 -0
  21. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  22. package/cosmos/auth/v1beta1/query.js +169 -0
  23. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
  24. package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
  25. package/cosmos/auth/v1beta1/query.rpc.react.d.ts +77 -0
  26. package/cosmos/auth/v1beta1/query.rpc.react.js +87 -10
  27. package/cosmos/auth/v1beta1/tx.d.ts +35 -2
  28. package/cosmos/auth/v1beta1/tx.js +21 -0
  29. package/cosmos/auth/v1beta1/tx.registry.d.ts +21 -0
  30. package/cosmos/auth/v1beta1/tx.registry.js +27 -1
  31. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
  32. package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
  33. package/cosmos/auth/v1beta1/tx.rpc.react.d.ts +10 -1
  34. package/cosmos/auth/v1beta1/tx.rpc.react.js +10 -1
  35. package/cosmos/authz/module/v1/module.d.ts +18 -2
  36. package/cosmos/authz/module/v1/module.js +6 -0
  37. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  38. package/cosmos/authz/v1beta1/authz.js +36 -0
  39. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  40. package/cosmos/authz/v1beta1/event.js +12 -0
  41. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  42. package/cosmos/authz/v1beta1/genesis.js +10 -0
  43. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  44. package/cosmos/authz/v1beta1/query.js +55 -0
  45. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
  46. package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
  47. package/cosmos/authz/v1beta1/query.rpc.react.d.ts +22 -0
  48. package/cosmos/authz/v1beta1/query.rpc.react.js +25 -3
  49. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  50. package/cosmos/authz/v1beta1/tx.js +43 -0
  51. package/cosmos/authz/v1beta1/tx.registry.d.ts +45 -0
  52. package/cosmos/authz/v1beta1/tx.registry.js +63 -1
  53. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
  54. package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
  55. package/cosmos/authz/v1beta1/tx.rpc.react.d.ts +27 -3
  56. package/cosmos/authz/v1beta1/tx.rpc.react.js +27 -3
  57. package/cosmos/autocli/v1/options.d.ts +208 -38
  58. package/cosmos/autocli/v1/options.js +54 -0
  59. package/cosmos/autocli/v1/query.d.ts +57 -6
  60. package/cosmos/autocli/v1/query.js +21 -0
  61. package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
  62. package/cosmos/autocli/v1/query.rpc.func.js +8 -4
  63. package/cosmos/autocli/v1/query.rpc.react.d.ts +6 -0
  64. package/cosmos/autocli/v1/query.rpc.react.js +7 -1
  65. package/cosmos/bank/module/v1/module.d.ts +24 -4
  66. package/cosmos/bank/module/v1/module.js +6 -0
  67. package/cosmos/bank/v1beta1/authz.d.ts +15 -0
  68. package/cosmos/bank/v1beta1/authz.js +12 -0
  69. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  70. package/cosmos/bank/v1beta1/bank.js +63 -0
  71. package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
  72. package/cosmos/bank/v1beta1/genesis.js +20 -0
  73. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  74. package/cosmos/bank/v1beta1/query.js +263 -0
  75. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
  76. package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
  77. package/cosmos/bank/v1beta1/query.rpc.react.d.ts +115 -0
  78. package/cosmos/bank/v1beta1/query.rpc.react.js +128 -13
  79. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  80. package/cosmos/bank/v1beta1/tx.js +74 -0
  81. package/cosmos/bank/v1beta1/tx.registry.d.ts +57 -0
  82. package/cosmos/bank/v1beta1/tx.registry.js +81 -1
  83. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
  84. package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
  85. package/cosmos/bank/v1beta1/tx.rpc.react.d.ts +36 -4
  86. package/cosmos/bank/v1beta1/tx.rpc.react.js +36 -4
  87. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  88. package/cosmos/base/abci/v1beta1/abci.js +92 -0
  89. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  90. package/cosmos/base/node/v1beta1/query.js +24 -0
  91. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
  92. package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
  93. package/cosmos/base/node/v1beta1/query.rpc.react.d.ts +12 -0
  94. package/cosmos/base/node/v1beta1/query.rpc.react.js +14 -2
  95. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  96. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  97. package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
  98. package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  99. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
  100. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
  101. package/cosmos/base/reflection/v1beta1/reflection.rpc.react.d.ts +14 -0
  102. package/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +16 -2
  103. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  104. package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  105. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
  106. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
  107. package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.d.ts +38 -0
  108. package/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +44 -6
  109. package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
  110. package/cosmos/base/tendermint/v1beta1/query.js +154 -0
  111. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
  112. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
  113. package/cosmos/base/tendermint/v1beta1/query.rpc.react.d.ts +46 -0
  114. package/cosmos/base/tendermint/v1beta1/query.rpc.react.js +53 -7
  115. package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
  116. package/cosmos/base/tendermint/v1beta1/types.js +20 -0
  117. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  118. package/cosmos/base/v1beta1/coin.js +32 -0
  119. package/cosmos/bundle.d.ts +188 -0
  120. package/cosmos/bundle.js +990 -0
  121. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  122. package/cosmos/consensus/module/v1/module.js +6 -0
  123. package/cosmos/consensus/v1/query.d.ts +36 -4
  124. package/cosmos/consensus/v1/query.js +16 -0
  125. package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
  126. package/cosmos/consensus/v1/query.rpc.func.js +8 -4
  127. package/cosmos/consensus/v1/query.rpc.react.d.ts +6 -0
  128. package/cosmos/consensus/v1/query.rpc.react.js +7 -1
  129. package/cosmos/consensus/v1/tx.d.ts +43 -6
  130. package/cosmos/consensus/v1/tx.js +17 -0
  131. package/cosmos/consensus/v1/tx.registry.d.ts +21 -0
  132. package/cosmos/consensus/v1/tx.registry.js +27 -1
  133. package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
  134. package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
  135. package/cosmos/consensus/v1/tx.rpc.react.d.ts +10 -1
  136. package/cosmos/consensus/v1/tx.rpc.react.js +10 -1
  137. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  138. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  139. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  140. package/cosmos/distribution/module/v1/module.js +6 -0
  141. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  142. package/cosmos/distribution/v1beta1/distribution.js +132 -0
  143. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  144. package/cosmos/distribution/v1beta1/genesis.js +74 -0
  145. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  146. package/cosmos/distribution/v1beta1/query.js +164 -0
  147. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
  148. package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
  149. package/cosmos/distribution/v1beta1/query.rpc.react.d.ts +61 -0
  150. package/cosmos/distribution/v1beta1/query.rpc.react.js +71 -10
  151. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  152. package/cosmos/distribution/v1beta1/tx.js +128 -0
  153. package/cosmos/distribution/v1beta1/tx.registry.d.ts +93 -0
  154. package/cosmos/distribution/v1beta1/tx.registry.js +135 -1
  155. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
  156. package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
  157. package/cosmos/distribution/v1beta1/tx.rpc.react.d.ts +64 -7
  158. package/cosmos/distribution/v1beta1/tx.rpc.react.js +64 -7
  159. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  160. package/cosmos/evidence/module/v1/module.js +6 -0
  161. package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
  162. package/cosmos/evidence/v1beta1/evidence.js +7 -0
  163. package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
  164. package/cosmos/evidence/v1beta1/genesis.js +6 -0
  165. package/cosmos/evidence/v1beta1/query.d.ts +88 -14
  166. package/cosmos/evidence/v1beta1/query.js +33 -0
  167. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
  168. package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
  169. package/cosmos/evidence/v1beta1/query.rpc.react.d.ts +12 -0
  170. package/cosmos/evidence/v1beta1/query.rpc.react.js +14 -2
  171. package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
  172. package/cosmos/evidence/v1beta1/tx.js +13 -0
  173. package/cosmos/evidence/v1beta1/tx.registry.d.ts +21 -0
  174. package/cosmos/evidence/v1beta1/tx.registry.js +27 -1
  175. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
  176. package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
  177. package/cosmos/evidence/v1beta1/tx.rpc.react.d.ts +8 -1
  178. package/cosmos/evidence/v1beta1/tx.rpc.react.js +8 -1
  179. package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
  180. package/cosmos/evm/feemarket/v1/events.js +182 -0
  181. package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
  182. package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
  183. package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
  184. package/cosmos/evm/feemarket/v1/genesis.js +106 -0
  185. package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
  186. package/cosmos/evm/feemarket/v1/query.js +473 -0
  187. package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
  188. package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
  189. package/cosmos/evm/feemarket/v1/query.rpc.react.d.ts +22 -0
  190. package/cosmos/evm/feemarket/v1/query.rpc.react.js +35 -0
  191. package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
  192. package/cosmos/evm/feemarket/v1/tx.js +177 -0
  193. package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
  194. package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
  195. package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
  196. package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
  197. package/cosmos/evm/feemarket/v1/tx.rpc.react.d.ts +10 -0
  198. package/cosmos/evm/feemarket/v1/tx.rpc.react.js +16 -0
  199. package/cosmos/evm/vm/v1/events.d.ts +286 -0
  200. package/cosmos/evm/vm/v1/events.js +435 -0
  201. package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
  202. package/cosmos/evm/vm/v1/evm.js +1617 -0
  203. package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
  204. package/cosmos/evm/vm/v1/genesis.js +227 -0
  205. package/cosmos/evm/vm/v1/query.d.ts +1773 -0
  206. package/cosmos/evm/vm/v1/query.js +2680 -0
  207. package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
  208. package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
  209. package/cosmos/evm/vm/v1/query.rpc.react.d.ts +108 -0
  210. package/cosmos/evm/vm/v1/query.rpc.react.js +153 -0
  211. package/cosmos/evm/vm/v1/tx.d.ts +747 -0
  212. package/cosmos/evm/vm/v1/tx.js +1132 -0
  213. package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.d.ts +7 -7
  214. package/cosmos/{crisis/v1beta1 → evm/vm/v1}/tx.registry.js +12 -12
  215. package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
  216. package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
  217. package/cosmos/evm/vm/v1/tx.rpc.react.d.ts +17 -0
  218. package/cosmos/evm/vm/v1/tx.rpc.react.js +25 -0
  219. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  220. package/cosmos/feegrant/module/v1/module.js +6 -0
  221. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  222. package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  223. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  224. package/cosmos/feegrant/v1beta1/genesis.js +10 -0
  225. package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
  226. package/cosmos/feegrant/v1beta1/query.js +56 -0
  227. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
  228. package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
  229. package/cosmos/feegrant/v1beta1/query.rpc.react.d.ts +20 -0
  230. package/cosmos/feegrant/v1beta1/query.rpc.react.js +23 -3
  231. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  232. package/cosmos/feegrant/v1beta1/tx.js +44 -0
  233. package/cosmos/feegrant/v1beta1/tx.registry.d.ts +45 -0
  234. package/cosmos/feegrant/v1beta1/tx.registry.js +63 -1
  235. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
  236. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
  237. package/cosmos/feegrant/v1beta1/tx.rpc.react.d.ts +25 -3
  238. package/cosmos/feegrant/v1beta1/tx.rpc.react.js +25 -3
  239. package/cosmos/gov/module/v1/module.d.ts +24 -4
  240. package/cosmos/gov/module/v1/module.js +6 -0
  241. package/cosmos/gov/v1/genesis.d.ts +48 -16
  242. package/cosmos/gov/v1/genesis.js +10 -0
  243. package/cosmos/gov/v1/gov.d.ts +343 -80
  244. package/cosmos/gov/v1/gov.js +77 -0
  245. package/cosmos/gov/v1/query.d.ts +469 -88
  246. package/cosmos/gov/v1/query.js +143 -0
  247. package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
  248. package/cosmos/gov/v1/query.rpc.func.js +64 -28
  249. package/cosmos/gov/v1/query.rpc.react.d.ts +54 -0
  250. package/cosmos/gov/v1/query.rpc.react.js +63 -9
  251. package/cosmos/gov/v1/tx.d.ts +377 -67
  252. package/cosmos/gov/v1/tx.js +111 -3
  253. package/cosmos/gov/v1/tx.registry.d.ts +93 -0
  254. package/cosmos/gov/v1/tx.registry.js +135 -1
  255. package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
  256. package/cosmos/gov/v1/tx.rpc.func.js +63 -51
  257. package/cosmos/gov/v1/tx.rpc.react.d.ts +55 -7
  258. package/cosmos/gov/v1/tx.rpc.react.js +55 -7
  259. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  260. package/cosmos/gov/v1beta1/genesis.js +10 -0
  261. package/cosmos/gov/v1beta1/gov.d.ts +294 -63
  262. package/cosmos/gov/v1beta1/gov.js +74 -3
  263. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  264. package/cosmos/gov/v1beta1/query.js +131 -0
  265. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
  266. package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
  267. package/cosmos/gov/v1beta1/query.rpc.react.d.ts +48 -0
  268. package/cosmos/gov/v1beta1/query.rpc.react.js +56 -8
  269. package/cosmos/gov/v1beta1/tx.d.ts +214 -39
  270. package/cosmos/gov/v1beta1/tx.js +62 -3
  271. package/cosmos/gov/v1beta1/tx.registry.d.ts +57 -0
  272. package/cosmos/gov/v1beta1/tx.registry.js +81 -1
  273. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
  274. package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
  275. package/cosmos/gov/v1beta1/tx.rpc.react.d.ts +30 -4
  276. package/cosmos/gov/v1beta1/tx.rpc.react.js +30 -4
  277. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  278. package/cosmos/ics23/v1/proofs.js +169 -0
  279. package/cosmos/mint/module/v1/module.d.ts +24 -4
  280. package/cosmos/mint/module/v1/module.js +6 -0
  281. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  282. package/cosmos/mint/v1beta1/genesis.js +10 -0
  283. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  284. package/cosmos/mint/v1beta1/mint.js +12 -0
  285. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  286. package/cosmos/mint/v1beta1/query.js +43 -0
  287. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
  288. package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
  289. package/cosmos/mint/v1beta1/query.rpc.react.d.ts +18 -0
  290. package/cosmos/mint/v1beta1/query.rpc.react.js +21 -3
  291. package/cosmos/mint/v1beta1/tx.d.ts +35 -2
  292. package/cosmos/mint/v1beta1/tx.js +21 -0
  293. package/cosmos/mint/v1beta1/tx.registry.d.ts +21 -0
  294. package/cosmos/mint/v1beta1/tx.registry.js +27 -1
  295. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
  296. package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
  297. package/cosmos/mint/v1beta1/tx.rpc.react.d.ts +10 -1
  298. package/cosmos/mint/v1beta1/tx.rpc.react.js +10 -1
  299. package/cosmos/params/module/v1/module.d.ts +18 -2
  300. package/cosmos/params/module/v1/module.js +6 -0
  301. package/cosmos/params/v1beta1/params.d.ts +31 -2
  302. package/cosmos/params/v1beta1/params.js +16 -0
  303. package/cosmos/params/v1beta1/query.d.ts +99 -10
  304. package/cosmos/params/v1beta1/query.js +46 -0
  305. package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
  306. package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
  307. package/cosmos/params/v1beta1/query.rpc.react.d.ts +15 -0
  308. package/cosmos/params/v1beta1/query.rpc.react.js +17 -2
  309. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  310. package/cosmos/slashing/module/v1/module.js +6 -0
  311. package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
  312. package/cosmos/slashing/v1beta1/genesis.js +35 -0
  313. package/cosmos/slashing/v1beta1/query.d.ts +106 -10
  314. package/cosmos/slashing/v1beta1/query.js +53 -0
  315. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
  316. package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
  317. package/cosmos/slashing/v1beta1/query.rpc.react.d.ts +18 -0
  318. package/cosmos/slashing/v1beta1/query.rpc.react.js +21 -3
  319. package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
  320. package/cosmos/slashing/v1beta1/slashing.js +13 -0
  321. package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
  322. package/cosmos/slashing/v1beta1/tx.js +33 -0
  323. package/cosmos/slashing/v1beta1/tx.registry.d.ts +33 -0
  324. package/cosmos/slashing/v1beta1/tx.registry.js +45 -1
  325. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
  326. package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
  327. package/cosmos/slashing/v1beta1/tx.rpc.react.d.ts +19 -2
  328. package/cosmos/slashing/v1beta1/tx.rpc.react.js +19 -2
  329. package/cosmos/staking/module/v1/module.d.ts +36 -8
  330. package/cosmos/staking/module/v1/module.js +6 -0
  331. package/cosmos/staking/v1beta1/authz.d.ts +44 -6
  332. package/cosmos/staking/v1beta1/authz.js +17 -0
  333. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  334. package/cosmos/staking/v1beta1/genesis.js +16 -0
  335. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  336. package/cosmos/staking/v1beta1/query.js +250 -0
  337. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
  338. package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
  339. package/cosmos/staking/v1beta1/query.rpc.react.d.ts +109 -0
  340. package/cosmos/staking/v1beta1/query.rpc.react.js +123 -14
  341. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  342. package/cosmos/staking/v1beta1/staking.js +186 -0
  343. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  344. package/cosmos/staking/v1beta1/tx.js +120 -0
  345. package/cosmos/staking/v1beta1/tx.registry.d.ts +93 -0
  346. package/cosmos/staking/v1beta1/tx.registry.js +135 -1
  347. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
  348. package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
  349. package/cosmos/staking/v1beta1/tx.rpc.react.d.ts +57 -7
  350. package/cosmos/staking/v1beta1/tx.rpc.react.js +57 -7
  351. package/cosmos/tx/config/v1/config.d.ts +18 -2
  352. package/cosmos/tx/config/v1/config.js +6 -0
  353. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  354. package/cosmos/tx/signing/v1beta1/signing.js +46 -0
  355. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  356. package/cosmos/tx/v1beta1/service.js +176 -0
  357. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
  358. package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
  359. package/cosmos/tx/v1beta1/service.rpc.react.d.ts +67 -3
  360. package/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
  361. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  362. package/cosmos/tx/v1beta1/tx.js +127 -0
  363. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  364. package/cosmos/upgrade/module/v1/module.js +6 -0
  365. package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
  366. package/cosmos/upgrade/v1beta1/query.js +85 -0
  367. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
  368. package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
  369. package/cosmos/upgrade/v1beta1/query.rpc.react.d.ts +40 -0
  370. package/cosmos/upgrade/v1beta1/query.rpc.react.js +45 -5
  371. package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
  372. package/cosmos/upgrade/v1beta1/tx.js +36 -0
  373. package/cosmos/upgrade/v1beta1/tx.registry.d.ts +33 -0
  374. package/cosmos/upgrade/v1beta1/tx.registry.js +45 -1
  375. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
  376. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
  377. package/cosmos/upgrade/v1beta1/tx.rpc.react.d.ts +19 -2
  378. package/cosmos/upgrade/v1beta1/tx.rpc.react.js +19 -2
  379. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  380. package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  381. package/cosmos_proto/bundle.d.ts +1 -0
  382. package/cosmos_proto/bundle.js +8 -0
  383. package/cosmos_proto/cosmos.d.ts +31 -0
  384. package/cosmos_proto/cosmos.js +19 -0
  385. package/cosmwasm/bundle.d.ts +12 -0
  386. package/cosmwasm/bundle.js +174 -0
  387. package/cosmwasm/wasm/v1/authz.d.ts +212 -22
  388. package/cosmwasm/wasm/v1/authz.js +113 -0
  389. package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
  390. package/cosmwasm/wasm/v1/genesis.js +34 -0
  391. package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
  392. package/cosmwasm/wasm/v1/ibc.js +24 -0
  393. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  394. package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  395. package/cosmwasm/wasm/v1/query.d.ts +761 -76
  396. package/cosmwasm/wasm/v1/query.js +581 -1
  397. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
  398. package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
  399. package/cosmwasm/wasm/v1/query.rpc.react.d.ts +88 -1
  400. package/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
  401. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  402. package/cosmwasm/wasm/v1/tx.js +267 -0
  403. package/cosmwasm/wasm/v1/tx.registry.d.ts +213 -0
  404. package/cosmwasm/wasm/v1/tx.registry.js +315 -1
  405. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
  406. package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
  407. package/cosmwasm/wasm/v1/tx.rpc.react.d.ts +145 -17
  408. package/cosmwasm/wasm/v1/tx.rpc.react.js +161 -33
  409. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  410. package/cosmwasm/wasm/v1/types.js +58 -0
  411. package/esm/binary.js +1 -1
  412. package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
  413. package/esm/cosmos/app/v1alpha1/config.js +31 -0
  414. package/esm/cosmos/app/v1alpha1/module.js +23 -0
  415. package/esm/cosmos/app/v1alpha1/query.js +16 -0
  416. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
  417. package/esm/cosmos/app/v1alpha1/query.rpc.react.js +8 -2
  418. package/esm/cosmos/auth/module/v1/module.js +16 -0
  419. package/esm/cosmos/auth/v1beta1/auth.js +34 -0
  420. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  421. package/esm/cosmos/auth/v1beta1/query.js +169 -0
  422. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
  423. package/esm/cosmos/auth/v1beta1/query.rpc.react.js +88 -11
  424. package/esm/cosmos/auth/v1beta1/tx.js +21 -0
  425. package/esm/cosmos/auth/v1beta1/tx.registry.js +26 -0
  426. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
  427. package/esm/cosmos/auth/v1beta1/tx.rpc.react.js +11 -2
  428. package/esm/cosmos/authz/module/v1/module.js +6 -0
  429. package/esm/cosmos/authz/v1beta1/authz.js +36 -0
  430. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  431. package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
  432. package/esm/cosmos/authz/v1beta1/query.js +55 -0
  433. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
  434. package/esm/cosmos/authz/v1beta1/query.rpc.react.js +26 -4
  435. package/esm/cosmos/authz/v1beta1/tx.js +43 -0
  436. package/esm/cosmos/authz/v1beta1/tx.registry.js +62 -0
  437. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
  438. package/esm/cosmos/authz/v1beta1/tx.rpc.react.js +28 -4
  439. package/esm/cosmos/autocli/v1/options.js +54 -0
  440. package/esm/cosmos/autocli/v1/query.js +21 -0
  441. package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
  442. package/esm/cosmos/autocli/v1/query.rpc.react.js +8 -2
  443. package/esm/cosmos/bank/module/v1/module.js +6 -0
  444. package/esm/cosmos/bank/v1beta1/authz.js +12 -0
  445. package/esm/cosmos/bank/v1beta1/bank.js +63 -0
  446. package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
  447. package/esm/cosmos/bank/v1beta1/query.js +263 -0
  448. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
  449. package/esm/cosmos/bank/v1beta1/query.rpc.react.js +129 -14
  450. package/esm/cosmos/bank/v1beta1/tx.js +74 -0
  451. package/esm/cosmos/bank/v1beta1/tx.registry.js +80 -0
  452. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
  453. package/esm/cosmos/bank/v1beta1/tx.rpc.react.js +37 -5
  454. package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
  455. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  456. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
  457. package/esm/cosmos/base/node/v1beta1/query.rpc.react.js +15 -3
  458. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  459. package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  460. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
  461. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.react.js +17 -3
  462. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  463. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
  464. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.react.js +45 -7
  465. package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
  466. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
  467. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.react.js +54 -8
  468. package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
  469. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  470. package/esm/cosmos/bundle.js +188 -0
  471. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  472. package/esm/cosmos/consensus/v1/query.js +16 -0
  473. package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
  474. package/esm/cosmos/consensus/v1/query.rpc.react.js +8 -2
  475. package/esm/cosmos/consensus/v1/tx.js +17 -0
  476. package/esm/cosmos/consensus/v1/tx.registry.js +26 -0
  477. package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
  478. package/esm/cosmos/consensus/v1/tx.rpc.react.js +11 -2
  479. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  480. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  481. package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
  482. package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
  483. package/esm/cosmos/distribution/v1beta1/query.js +164 -0
  484. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
  485. package/esm/cosmos/distribution/v1beta1/query.rpc.react.js +72 -11
  486. package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
  487. package/esm/cosmos/distribution/v1beta1/tx.registry.js +134 -0
  488. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
  489. package/esm/cosmos/distribution/v1beta1/tx.rpc.react.js +65 -8
  490. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  491. package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
  492. package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
  493. package/esm/cosmos/evidence/v1beta1/query.js +33 -0
  494. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
  495. package/esm/cosmos/evidence/v1beta1/query.rpc.react.js +15 -3
  496. package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
  497. package/esm/cosmos/evidence/v1beta1/tx.registry.js +26 -0
  498. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
  499. package/esm/cosmos/evidence/v1beta1/tx.rpc.react.js +9 -2
  500. package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
  501. package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
  502. package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
  503. package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
  504. package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
  505. package/esm/cosmos/evm/feemarket/v1/query.rpc.react.js +32 -0
  506. package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
  507. package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
  508. package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
  509. package/esm/cosmos/evm/feemarket/v1/tx.rpc.react.js +13 -0
  510. package/esm/cosmos/evm/vm/v1/events.js +432 -0
  511. package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
  512. package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
  513. package/esm/cosmos/evm/vm/v1/query.js +2677 -0
  514. package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
  515. package/esm/cosmos/evm/vm/v1/query.rpc.react.js +150 -0
  516. package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
  517. package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
  518. package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
  519. package/esm/cosmos/evm/vm/v1/tx.rpc.react.js +22 -0
  520. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  521. package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  522. package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
  523. package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
  524. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
  525. package/esm/cosmos/feegrant/v1beta1/query.rpc.react.js +24 -4
  526. package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
  527. package/esm/cosmos/feegrant/v1beta1/tx.registry.js +62 -0
  528. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
  529. package/esm/cosmos/feegrant/v1beta1/tx.rpc.react.js +26 -4
  530. package/esm/cosmos/gov/module/v1/module.js +6 -0
  531. package/esm/cosmos/gov/v1/genesis.js +10 -0
  532. package/esm/cosmos/gov/v1/gov.js +77 -0
  533. package/esm/cosmos/gov/v1/query.js +143 -0
  534. package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
  535. package/esm/cosmos/gov/v1/query.rpc.react.js +64 -10
  536. package/esm/cosmos/gov/v1/tx.js +111 -3
  537. package/esm/cosmos/gov/v1/tx.registry.js +134 -0
  538. package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
  539. package/esm/cosmos/gov/v1/tx.rpc.react.js +56 -8
  540. package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
  541. package/esm/cosmos/gov/v1beta1/gov.js +74 -3
  542. package/esm/cosmos/gov/v1beta1/query.js +131 -0
  543. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
  544. package/esm/cosmos/gov/v1beta1/query.rpc.react.js +57 -9
  545. package/esm/cosmos/gov/v1beta1/tx.js +62 -3
  546. package/esm/cosmos/gov/v1beta1/tx.registry.js +80 -0
  547. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
  548. package/esm/cosmos/gov/v1beta1/tx.rpc.react.js +31 -5
  549. package/esm/cosmos/ics23/v1/proofs.js +169 -0
  550. package/esm/cosmos/mint/module/v1/module.js +6 -0
  551. package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
  552. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  553. package/esm/cosmos/mint/v1beta1/query.js +43 -0
  554. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
  555. package/esm/cosmos/mint/v1beta1/query.rpc.react.js +22 -4
  556. package/esm/cosmos/mint/v1beta1/tx.js +21 -0
  557. package/esm/cosmos/mint/v1beta1/tx.registry.js +26 -0
  558. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
  559. package/esm/cosmos/mint/v1beta1/tx.rpc.react.js +11 -2
  560. package/esm/cosmos/params/module/v1/module.js +6 -0
  561. package/esm/cosmos/params/v1beta1/params.js +16 -0
  562. package/esm/cosmos/params/v1beta1/query.js +46 -0
  563. package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
  564. package/esm/cosmos/params/v1beta1/query.rpc.react.js +18 -3
  565. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  566. package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
  567. package/esm/cosmos/slashing/v1beta1/query.js +53 -0
  568. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
  569. package/esm/cosmos/slashing/v1beta1/query.rpc.react.js +22 -4
  570. package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
  571. package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
  572. package/esm/cosmos/slashing/v1beta1/tx.registry.js +44 -0
  573. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
  574. package/esm/cosmos/slashing/v1beta1/tx.rpc.react.js +20 -3
  575. package/esm/cosmos/staking/module/v1/module.js +6 -0
  576. package/esm/cosmos/staking/v1beta1/authz.js +17 -0
  577. package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
  578. package/esm/cosmos/staking/v1beta1/query.js +250 -0
  579. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
  580. package/esm/cosmos/staking/v1beta1/query.rpc.react.js +124 -15
  581. package/esm/cosmos/staking/v1beta1/staking.js +186 -0
  582. package/esm/cosmos/staking/v1beta1/tx.js +120 -0
  583. package/esm/cosmos/staking/v1beta1/tx.registry.js +134 -0
  584. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
  585. package/esm/cosmos/staking/v1beta1/tx.rpc.react.js +58 -8
  586. package/esm/cosmos/tx/config/v1/config.js +6 -0
  587. package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
  588. package/esm/cosmos/tx/v1beta1/service.js +176 -0
  589. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
  590. package/esm/cosmos/tx/v1beta1/service.rpc.react.js +77 -13
  591. package/esm/cosmos/tx/v1beta1/tx.js +127 -0
  592. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  593. package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
  594. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
  595. package/esm/cosmos/upgrade/v1beta1/query.rpc.react.js +46 -6
  596. package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
  597. package/esm/cosmos/upgrade/v1beta1/tx.registry.js +44 -0
  598. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
  599. package/esm/cosmos/upgrade/v1beta1/tx.rpc.react.js +20 -3
  600. package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  601. package/esm/cosmos_proto/bundle.js +1 -0
  602. package/esm/cosmos_proto/cosmos.js +19 -0
  603. package/esm/cosmwasm/bundle.js +12 -0
  604. package/esm/cosmwasm/wasm/v1/authz.js +113 -0
  605. package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
  606. package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
  607. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  608. package/esm/cosmwasm/wasm/v1/query.js +580 -0
  609. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
  610. package/esm/cosmwasm/wasm/v1/query.rpc.react.js +106 -13
  611. package/esm/cosmwasm/wasm/v1/tx.js +267 -0
  612. package/esm/cosmwasm/wasm/v1/tx.registry.js +314 -0
  613. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
  614. package/esm/cosmwasm/wasm/v1/tx.rpc.react.js +162 -34
  615. package/esm/cosmwasm/wasm/v1/types.js +58 -0
  616. package/esm/ethermint/bundle.js +25 -0
  617. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  618. package/esm/ethermint/evm/v1/events.js +24 -0
  619. package/esm/ethermint/evm/v1/evm.js +69 -0
  620. package/esm/ethermint/evm/v1/genesis.js +21 -0
  621. package/esm/ethermint/evm/v1/query.js +167 -0
  622. package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
  623. package/esm/ethermint/evm/v1/query.rpc.react.js +88 -13
  624. package/esm/ethermint/evm/v1/tx.js +66 -0
  625. package/esm/ethermint/evm/v1/tx.registry.js +44 -0
  626. package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
  627. package/esm/ethermint/evm/v1/tx.rpc.react.js +16 -3
  628. package/esm/ethermint/feemarket/v1/events.js +12 -0
  629. package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
  630. package/esm/ethermint/feemarket/v1/genesis.js +10 -0
  631. package/esm/ethermint/feemarket/v1/query.js +42 -0
  632. package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
  633. package/esm/ethermint/feemarket/v1/query.rpc.react.js +22 -4
  634. package/esm/ethermint/feemarket/v1/tx.js +17 -0
  635. package/esm/ethermint/feemarket/v1/tx.registry.js +26 -0
  636. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
  637. package/esm/ethermint/feemarket/v1/tx.rpc.react.js +9 -2
  638. package/esm/ethermint/types/v1/account.js +10 -0
  639. package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
  640. package/esm/ethermint/types/v1/indexer.js +6 -0
  641. package/esm/ethermint/types/v1/web3.js +7 -0
  642. package/esm/extern.js +14 -4
  643. package/esm/google/api/http.js +290 -0
  644. package/esm/google/bundle.js +5 -0
  645. package/esm/google/protobuf/any.js +90 -0
  646. package/esm/google/protobuf/descriptor.js +553 -11
  647. package/esm/google/protobuf/duration.js +63 -0
  648. package/esm/google/protobuf/timestamp.js +94 -0
  649. package/esm/helper-func-types.js +14 -22
  650. package/esm/helpers.js +1 -1
  651. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  652. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  653. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
  654. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +15 -3
  655. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  656. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +62 -0
  657. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
  658. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +22 -4
  659. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  660. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  661. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  662. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
  663. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +8 -2
  664. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  665. package/esm/ibc/applications/interchain_accounts/host/v1/tx.registry.js +44 -0
  666. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
  667. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +15 -3
  668. package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
  669. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  670. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  671. package/esm/ibc/applications/transfer/v1/authz.js +19 -0
  672. package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
  673. package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
  674. package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  675. package/esm/ibc/applications/transfer/v1/query.js +270 -175
  676. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
  677. package/esm/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
  678. package/esm/ibc/applications/transfer/v1/token.js +300 -0
  679. package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
  680. package/esm/ibc/applications/transfer/v1/tx.js +49 -3
  681. package/esm/ibc/applications/transfer/v1/tx.registry.js +44 -0
  682. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
  683. package/esm/ibc/applications/transfer/v1/tx.rpc.react.js +15 -3
  684. package/esm/ibc/bundle.js +94 -0
  685. package/esm/ibc/core/channel/v1/channel.js +84 -124
  686. package/esm/ibc/core/channel/v1/genesis.js +21 -17
  687. package/esm/ibc/core/channel/v1/query.js +252 -530
  688. package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
  689. package/esm/ibc/core/channel/v1/query.rpc.react.js +107 -27
  690. package/esm/ibc/core/channel/v1/tx.js +164 -1970
  691. package/esm/ibc/core/channel/v1/tx.registry.js +190 -2
  692. package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
  693. package/esm/ibc/core/channel/v1/tx.rpc.react.js +81 -47
  694. package/esm/ibc/core/channel/v2/genesis.js +360 -0
  695. package/esm/ibc/core/channel/v2/packet.js +508 -0
  696. package/esm/ibc/core/channel/v2/query.js +1727 -0
  697. package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
  698. package/esm/ibc/core/channel/v2/query.rpc.react.js +82 -0
  699. package/esm/ibc/core/channel/v2/tx.js +901 -0
  700. package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
  701. package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
  702. package/esm/ibc/core/channel/v2/tx.rpc.react.js +38 -0
  703. package/esm/ibc/core/client/v1/client.js +50 -235
  704. package/esm/ibc/core/client/v1/genesis.js +27 -0
  705. package/esm/ibc/core/client/v1/query.js +355 -16
  706. package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
  707. package/esm/ibc/core/client/v1/query.rpc.react.js +83 -11
  708. package/esm/ibc/core/client/v1/tx.js +279 -7
  709. package/esm/ibc/core/client/v1/tx.registry.js +154 -2
  710. package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
  711. package/esm/ibc/core/client/v1/tx.rpc.react.js +59 -8
  712. package/esm/ibc/core/client/v2/config.js +90 -0
  713. package/esm/ibc/core/client/v2/counterparty.js +100 -0
  714. package/esm/ibc/core/client/v2/genesis.js +194 -0
  715. package/esm/ibc/core/client/v2/query.js +348 -0
  716. package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
  717. package/esm/ibc/core/client/v2/query.rpc.react.js +22 -0
  718. package/esm/ibc/core/client/v2/tx.js +378 -0
  719. package/esm/ibc/core/client/v2/tx.registry.js +46 -0
  720. package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
  721. package/esm/ibc/core/client/v2/tx.rpc.react.js +20 -0
  722. package/esm/ibc/core/commitment/v1/commitment.js +29 -80
  723. package/esm/ibc/core/commitment/v2/commitment.js +118 -0
  724. package/esm/ibc/core/connection/v1/connection.js +57 -0
  725. package/esm/ibc/core/connection/v1/genesis.js +10 -0
  726. package/esm/ibc/core/connection/v1/query.js +105 -0
  727. package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
  728. package/esm/ibc/core/connection/v1/query.rpc.react.js +46 -7
  729. package/esm/ibc/core/connection/v1/tx.js +82 -0
  730. package/esm/ibc/core/connection/v1/tx.registry.js +98 -0
  731. package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
  732. package/esm/ibc/core/connection/v1/tx.rpc.react.js +38 -6
  733. package/esm/ibc/core/types/v1/genesis.js +41 -3
  734. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  735. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  736. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  737. package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
  738. package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
  739. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
  740. package/esm/ibc/lightclients/wasm/v1/query.rpc.react.js +15 -3
  741. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  742. package/esm/ibc/lightclients/wasm/v1/tx.registry.js +62 -0
  743. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
  744. package/esm/ibc/lightclients/wasm/v1/tx.rpc.react.js +22 -4
  745. package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
  746. package/esm/index.js +21 -0
  747. package/esm/react-query.js +4 -6
  748. package/esm/registry.js +9 -1
  749. package/esm/tendermint/abci/types.js +322 -0
  750. package/esm/tendermint/bundle.js +10 -0
  751. package/esm/tendermint/crypto/keys.js +6 -0
  752. package/esm/tendermint/crypto/proof.js +36 -0
  753. package/esm/tendermint/p2p/types.js +24 -0
  754. package/esm/tendermint/types/block.js +9 -0
  755. package/esm/tendermint/types/evidence.js +35 -0
  756. package/esm/tendermint/types/params.js +50 -0
  757. package/esm/tendermint/types/types.js +121 -0
  758. package/esm/tendermint/types/validator.js +25 -0
  759. package/esm/tendermint/version/types.js +16 -0
  760. package/esm/types.js +1 -1
  761. package/esm/utf8.js +1 -1
  762. package/esm/varint.js +1 -1
  763. package/esm/xpla/bundle.js +28 -0
  764. package/esm/xpla/burn/v1beta1/burn.js +111 -0
  765. package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  766. package/esm/xpla/burn/v1beta1/query.js +327 -0
  767. package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
  768. package/esm/xpla/burn/v1beta1/query.rpc.react.js +22 -0
  769. package/esm/xpla/burn/v1beta1/tx.js +169 -0
  770. package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
  771. package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
  772. package/esm/xpla/burn/v1beta1/tx.rpc.react.js +11 -0
  773. package/esm/xpla/reward/v1beta1/genesis.js +10 -0
  774. package/esm/xpla/reward/v1beta1/query.js +33 -0
  775. package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
  776. package/esm/xpla/reward/v1beta1/query.rpc.react.js +15 -3
  777. package/esm/xpla/reward/v1beta1/reward.js +6 -0
  778. package/esm/xpla/reward/v1beta1/tx.js +35 -0
  779. package/esm/xpla/reward/v1beta1/tx.registry.js +44 -0
  780. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
  781. package/esm/xpla/reward/v1beta1/tx.rpc.react.js +18 -3
  782. package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
  783. package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
  784. package/esm/xpla/volunteer/v1beta1/query.js +12 -0
  785. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
  786. package/esm/xpla/volunteer/v1beta1/query.rpc.react.js +8 -2
  787. package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
  788. package/esm/xpla/volunteer/v1beta1/tx.registry.js +44 -0
  789. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
  790. package/esm/xpla/volunteer/v1beta1/tx.rpc.react.js +16 -3
  791. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  792. package/ethermint/bundle.d.ts +25 -0
  793. package/ethermint/bundle.js +142 -0
  794. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
  795. package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  796. package/ethermint/evm/v1/events.d.ts +144 -32
  797. package/ethermint/evm/v1/events.js +24 -0
  798. package/ethermint/evm/v1/evm.d.ts +434 -110
  799. package/ethermint/evm/v1/evm.js +69 -0
  800. package/ethermint/evm/v1/genesis.d.ts +62 -12
  801. package/ethermint/evm/v1/genesis.js +21 -0
  802. package/ethermint/evm/v1/query.d.ts +673 -126
  803. package/ethermint/evm/v1/query.js +167 -0
  804. package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
  805. package/ethermint/evm/v1/query.rpc.func.js +88 -37
  806. package/ethermint/evm/v1/query.rpc.react.d.ts +75 -0
  807. package/ethermint/evm/v1/query.rpc.react.js +87 -12
  808. package/ethermint/evm/v1/tx.d.ts +363 -88
  809. package/ethermint/evm/v1/tx.js +66 -0
  810. package/ethermint/evm/v1/tx.registry.d.ts +33 -0
  811. package/ethermint/evm/v1/tx.registry.js +45 -1
  812. package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
  813. package/ethermint/evm/v1/tx.rpc.func.js +18 -16
  814. package/ethermint/evm/v1/tx.rpc.react.d.ts +15 -2
  815. package/ethermint/evm/v1/tx.rpc.react.js +15 -2
  816. package/ethermint/feemarket/v1/events.d.ts +54 -10
  817. package/ethermint/feemarket/v1/events.js +12 -0
  818. package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
  819. package/ethermint/feemarket/v1/feemarket.js +6 -0
  820. package/ethermint/feemarket/v1/genesis.d.ts +24 -4
  821. package/ethermint/feemarket/v1/genesis.js +10 -0
  822. package/ethermint/feemarket/v1/query.d.ts +116 -14
  823. package/ethermint/feemarket/v1/query.js +42 -0
  824. package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
  825. package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
  826. package/ethermint/feemarket/v1/query.rpc.react.d.ts +18 -0
  827. package/ethermint/feemarket/v1/query.rpc.react.js +21 -3
  828. package/ethermint/feemarket/v1/tx.d.ts +37 -4
  829. package/ethermint/feemarket/v1/tx.js +17 -0
  830. package/ethermint/feemarket/v1/tx.registry.d.ts +21 -0
  831. package/ethermint/feemarket/v1/tx.registry.js +27 -1
  832. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
  833. package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
  834. package/ethermint/feemarket/v1/tx.rpc.react.d.ts +8 -1
  835. package/ethermint/feemarket/v1/tx.rpc.react.js +8 -1
  836. package/ethermint/types/v1/account.d.ts +25 -4
  837. package/ethermint/types/v1/account.js +10 -0
  838. package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
  839. package/ethermint/types/v1/dynamic_fee.js +6 -0
  840. package/ethermint/types/v1/indexer.d.ts +42 -10
  841. package/ethermint/types/v1/indexer.js +6 -0
  842. package/ethermint/types/v1/web3.d.ts +13 -0
  843. package/ethermint/types/v1/web3.js +7 -0
  844. package/extern.d.ts +3 -2
  845. package/extern.js +14 -4
  846. package/google/api/http.d.ts +343 -14
  847. package/google/api/http.js +290 -0
  848. package/google/bundle.d.ts +5 -0
  849. package/google/bundle.js +21 -0
  850. package/google/protobuf/any.d.ts +102 -2
  851. package/google/protobuf/any.js +90 -0
  852. package/google/protobuf/descriptor.d.ts +833 -86
  853. package/google/protobuf/descriptor.js +561 -13
  854. package/google/protobuf/duration.d.ts +69 -0
  855. package/google/protobuf/duration.js +63 -0
  856. package/google/protobuf/timestamp.d.ts +100 -0
  857. package/google/protobuf/timestamp.js +94 -0
  858. package/helper-func-types.d.ts +7 -87
  859. package/helper-func-types.js +15 -24
  860. package/helpers.d.ts +1 -1
  861. package/helpers.js +1 -1
  862. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  863. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  864. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  865. package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  866. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
  867. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
  868. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.d.ts +12 -0
  869. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.react.js +14 -2
  870. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  871. package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  872. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.d.ts +45 -0
  873. package/ibc/applications/interchain_accounts/controller/v1/tx.registry.js +63 -1
  874. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
  875. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
  876. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.d.ts +21 -3
  877. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.react.js +21 -3
  878. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  879. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  880. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  881. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  882. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  883. package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  884. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
  885. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
  886. package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.d.ts +6 -0
  887. package/ibc/applications/interchain_accounts/host/v1/query.rpc.react.js +7 -1
  888. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  889. package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  890. package/ibc/applications/interchain_accounts/host/v1/tx.registry.d.ts +33 -0
  891. package/ibc/applications/interchain_accounts/host/v1/tx.registry.js +45 -1
  892. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
  893. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
  894. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.d.ts +14 -2
  895. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.react.js +14 -2
  896. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  897. package/ibc/applications/interchain_accounts/v1/account.js +9 -0
  898. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  899. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  900. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  901. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  902. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  903. package/ibc/applications/transfer/v1/authz.js +19 -0
  904. package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
  905. package/ibc/applications/transfer/v1/denomtrace.js +101 -0
  906. package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
  907. package/ibc/applications/transfer/v1/genesis.js +23 -12
  908. package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
  909. package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  910. package/ibc/applications/transfer/v1/query.d.ts +389 -170
  911. package/ibc/applications/transfer/v1/query.js +270 -175
  912. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
  913. package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
  914. package/ibc/applications/transfer/v1/query.rpc.react.d.ts +39 -3
  915. package/ibc/applications/transfer/v1/query.rpc.react.js +49 -13
  916. package/ibc/applications/transfer/v1/token.d.ts +179 -0
  917. package/ibc/applications/transfer/v1/token.js +303 -0
  918. package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
  919. package/ibc/applications/transfer/v1/transfer.js +10 -90
  920. package/ibc/applications/transfer/v1/tx.d.ts +127 -24
  921. package/ibc/applications/transfer/v1/tx.js +49 -3
  922. package/ibc/applications/transfer/v1/tx.registry.d.ts +33 -0
  923. package/ibc/applications/transfer/v1/tx.registry.js +45 -1
  924. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
  925. package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
  926. package/ibc/applications/transfer/v1/tx.rpc.react.d.ts +14 -2
  927. package/ibc/applications/transfer/v1/tx.rpc.react.js +14 -2
  928. package/ibc/bundle.d.ts +94 -0
  929. package/ibc/bundle.js +540 -0
  930. package/ibc/core/channel/v1/channel.d.ts +293 -120
  931. package/ibc/core/channel/v1/channel.js +85 -125
  932. package/ibc/core/channel/v1/genesis.d.ts +38 -7
  933. package/ibc/core/channel/v1/genesis.js +20 -16
  934. package/ibc/core/channel/v1/query.d.ts +840 -378
  935. package/ibc/core/channel/v1/query.js +252 -530
  936. package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
  937. package/ibc/core/channel/v1/query.rpc.func.js +107 -70
  938. package/ibc/core/channel/v1/query.rpc.react.d.ts +93 -4
  939. package/ibc/core/channel/v1/query.rpc.react.js +107 -27
  940. package/ibc/core/channel/v1/tx.d.ts +335 -747
  941. package/ibc/core/channel/v1/tx.js +164 -1970
  942. package/ibc/core/channel/v1/tx.registry.d.ts +129 -0
  943. package/ibc/core/channel/v1/tx.registry.js +190 -2
  944. package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
  945. package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
  946. package/ibc/core/channel/v1/tx.rpc.react.d.ts +72 -20
  947. package/ibc/core/channel/v1/tx.rpc.react.js +81 -47
  948. package/ibc/core/channel/v2/genesis.d.ts +202 -0
  949. package/ibc/core/channel/v2/genesis.js +363 -0
  950. package/ibc/core/channel/v2/packet.d.ts +322 -0
  951. package/ibc/core/channel/v2/packet.js +513 -0
  952. package/ibc/core/channel/v2/query.d.ts +1067 -0
  953. package/ibc/core/channel/v2/query.js +1730 -0
  954. package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
  955. package/ibc/core/channel/v2/query.rpc.func.js +109 -0
  956. package/ibc/core/channel/v2/query.rpc.react.d.ts +57 -0
  957. package/ibc/core/channel/v2/query.rpc.react.js +85 -0
  958. package/ibc/core/channel/v2/tx.d.ts +437 -0
  959. package/ibc/core/channel/v2/tx.js +906 -0
  960. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  961. package/ibc/core/channel/v2/tx.registry.js +85 -0
  962. package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
  963. package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
  964. package/ibc/core/channel/v2/tx.rpc.react.d.ts +29 -0
  965. package/ibc/core/channel/v2/tx.rpc.react.js +41 -0
  966. package/ibc/core/client/v1/client.d.ts +133 -153
  967. package/ibc/core/client/v1/client.js +51 -236
  968. package/ibc/core/client/v1/genesis.d.ts +86 -20
  969. package/ibc/core/client/v1/genesis.js +27 -0
  970. package/ibc/core/client/v1/query.d.ts +591 -75
  971. package/ibc/core/client/v1/query.js +356 -17
  972. package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
  973. package/ibc/core/client/v1/query.rpc.func.js +86 -31
  974. package/ibc/core/client/v1/query.rpc.react.d.ts +70 -1
  975. package/ibc/core/client/v1/query.rpc.react.js +83 -11
  976. package/ibc/core/client/v1/tx.d.ts +454 -60
  977. package/ibc/core/client/v1/tx.js +280 -8
  978. package/ibc/core/client/v1/tx.registry.d.ts +105 -0
  979. package/ibc/core/client/v1/tx.registry.js +154 -2
  980. package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
  981. package/ibc/core/client/v1/tx.rpc.func.js +73 -58
  982. package/ibc/core/client/v1/tx.rpc.react.d.ts +57 -8
  983. package/ibc/core/client/v1/tx.rpc.react.js +59 -8
  984. package/ibc/core/client/v2/config.d.ts +66 -0
  985. package/ibc/core/client/v2/config.js +93 -0
  986. package/ibc/core/client/v2/counterparty.d.ts +65 -0
  987. package/ibc/core/client/v2/counterparty.js +103 -0
  988. package/ibc/core/client/v2/genesis.d.ts +121 -0
  989. package/ibc/core/client/v2/genesis.js +197 -0
  990. package/ibc/core/client/v2/query.d.ts +218 -0
  991. package/ibc/core/client/v2/query.js +351 -0
  992. package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
  993. package/ibc/core/client/v2/query.rpc.func.js +31 -0
  994. package/ibc/core/client/v2/query.rpc.react.d.ts +15 -0
  995. package/ibc/core/client/v2/query.rpc.react.js +25 -0
  996. package/ibc/core/client/v2/tx.d.ts +251 -0
  997. package/ibc/core/client/v2/tx.js +381 -0
  998. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  999. package/ibc/core/client/v2/tx.registry.js +49 -0
  1000. package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
  1001. package/ibc/core/client/v2/tx.rpc.func.js +23 -0
  1002. package/ibc/core/client/v2/tx.rpc.react.d.ts +15 -0
  1003. package/ibc/core/client/v2/tx.rpc.react.js +23 -0
  1004. package/ibc/core/commitment/v1/commitment.d.ts +43 -41
  1005. package/ibc/core/commitment/v1/commitment.js +30 -81
  1006. package/ibc/core/commitment/v2/commitment.d.ts +141 -0
  1007. package/ibc/core/commitment/v2/commitment.js +121 -0
  1008. package/ibc/core/connection/v1/connection.d.ts +199 -38
  1009. package/ibc/core/connection/v1/connection.js +57 -0
  1010. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  1011. package/ibc/core/connection/v1/genesis.js +10 -0
  1012. package/ibc/core/connection/v1/query.d.ts +293 -46
  1013. package/ibc/core/connection/v1/query.js +105 -0
  1014. package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
  1015. package/ibc/core/connection/v1/query.rpc.func.js +46 -19
  1016. package/ibc/core/connection/v1/query.rpc.react.d.ts +39 -0
  1017. package/ibc/core/connection/v1/query.rpc.react.js +45 -6
  1018. package/ibc/core/connection/v1/tx.d.ts +254 -32
  1019. package/ibc/core/connection/v1/tx.js +82 -0
  1020. package/ibc/core/connection/v1/tx.registry.d.ts +69 -0
  1021. package/ibc/core/connection/v1/tx.registry.js +99 -1
  1022. package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
  1023. package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
  1024. package/ibc/core/connection/v1/tx.rpc.react.d.ts +37 -5
  1025. package/ibc/core/connection/v1/tx.rpc.react.js +37 -5
  1026. package/ibc/core/types/v1/genesis.d.ts +56 -8
  1027. package/ibc/core/types/v1/genesis.js +41 -3
  1028. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
  1029. package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  1030. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
  1031. package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  1032. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
  1033. package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  1034. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  1035. package/ibc/lightclients/wasm/v1/genesis.js +16 -0
  1036. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  1037. package/ibc/lightclients/wasm/v1/query.js +31 -0
  1038. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
  1039. package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
  1040. package/ibc/lightclients/wasm/v1/query.rpc.react.d.ts +12 -0
  1041. package/ibc/lightclients/wasm/v1/query.rpc.react.js +14 -2
  1042. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  1043. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  1044. package/ibc/lightclients/wasm/v1/tx.registry.d.ts +45 -0
  1045. package/ibc/lightclients/wasm/v1/tx.registry.js +63 -1
  1046. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
  1047. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
  1048. package/ibc/lightclients/wasm/v1/tx.rpc.react.d.ts +21 -3
  1049. package/ibc/lightclients/wasm/v1/tx.rpc.react.js +21 -3
  1050. package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
  1051. package/ibc/lightclients/wasm/v1/wasm.js +32 -0
  1052. package/index.d.ts +21 -0
  1053. package/index.js +37 -0
  1054. package/package.json +8 -9
  1055. package/react-query.d.ts +8 -6
  1056. package/react-query.js +5 -7
  1057. package/registry.d.ts +3 -1
  1058. package/registry.js +9 -1
  1059. package/tendermint/abci/types.d.ts +971 -98
  1060. package/tendermint/abci/types.js +322 -0
  1061. package/tendermint/bundle.d.ts +10 -0
  1062. package/tendermint/bundle.js +115 -0
  1063. package/tendermint/crypto/keys.d.ts +18 -2
  1064. package/tendermint/crypto/keys.js +6 -0
  1065. package/tendermint/crypto/proof.d.ts +89 -6
  1066. package/tendermint/crypto/proof.js +36 -0
  1067. package/tendermint/p2p/types.d.ts +60 -0
  1068. package/tendermint/p2p/types.js +24 -0
  1069. package/tendermint/types/block.d.ts +15 -0
  1070. package/tendermint/types/block.js +9 -0
  1071. package/tendermint/types/evidence.d.ts +66 -4
  1072. package/tendermint/types/evidence.js +35 -0
  1073. package/tendermint/types/params.d.ts +112 -8
  1074. package/tendermint/types/params.js +50 -0
  1075. package/tendermint/types/types.d.ts +327 -42
  1076. package/tendermint/types/types.js +121 -0
  1077. package/tendermint/types/validator.d.ts +45 -0
  1078. package/tendermint/types/validator.js +25 -0
  1079. package/tendermint/version/types.d.ts +28 -0
  1080. package/tendermint/version/types.js +16 -0
  1081. package/types.d.ts +4 -49
  1082. package/types.js +1 -1
  1083. package/utf8.d.ts +1 -1
  1084. package/utf8.js +1 -1
  1085. package/varint.d.ts +1 -1
  1086. package/varint.js +1 -1
  1087. package/xpla/bundle.d.ts +28 -0
  1088. package/xpla/bundle.js +71 -0
  1089. package/xpla/burn/v1beta1/burn.d.ts +54 -0
  1090. package/xpla/burn/v1beta1/burn.js +114 -0
  1091. package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
  1092. package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  1093. package/xpla/burn/v1beta1/query.d.ts +204 -0
  1094. package/xpla/burn/v1beta1/query.js +330 -0
  1095. package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
  1096. package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
  1097. package/xpla/burn/v1beta1/query.rpc.react.d.ts +15 -0
  1098. package/xpla/burn/v1beta1/query.rpc.react.js +25 -0
  1099. package/xpla/burn/v1beta1/tx.d.ts +105 -0
  1100. package/xpla/burn/v1beta1/tx.js +172 -0
  1101. package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.d.ts +6 -6
  1102. package/{cosmos/nft → xpla/burn}/v1beta1/tx.registry.js +9 -9
  1103. package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
  1104. package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
  1105. package/xpla/burn/v1beta1/tx.rpc.react.d.ts +8 -0
  1106. package/xpla/burn/v1beta1/tx.rpc.react.js +14 -0
  1107. package/xpla/reward/v1beta1/genesis.d.ts +24 -4
  1108. package/xpla/reward/v1beta1/genesis.js +10 -0
  1109. package/xpla/reward/v1beta1/query.d.ts +74 -8
  1110. package/xpla/reward/v1beta1/query.js +33 -0
  1111. package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
  1112. package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
  1113. package/xpla/reward/v1beta1/query.rpc.react.d.ts +12 -0
  1114. package/xpla/reward/v1beta1/query.rpc.react.js +14 -2
  1115. package/xpla/reward/v1beta1/reward.d.ts +18 -2
  1116. package/xpla/reward/v1beta1/reward.js +6 -0
  1117. package/xpla/reward/v1beta1/tx.d.ts +64 -4
  1118. package/xpla/reward/v1beta1/tx.js +35 -0
  1119. package/xpla/reward/v1beta1/tx.registry.d.ts +33 -0
  1120. package/xpla/reward/v1beta1/tx.registry.js +45 -1
  1121. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
  1122. package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
  1123. package/xpla/reward/v1beta1/tx.rpc.react.d.ts +17 -2
  1124. package/xpla/reward/v1beta1/tx.rpc.react.js +17 -2
  1125. package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
  1126. package/xpla/volunteer/v1beta1/genesis.js +10 -0
  1127. package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
  1128. package/xpla/volunteer/v1beta1/proposal.js +34 -0
  1129. package/xpla/volunteer/v1beta1/query.d.ts +36 -4
  1130. package/xpla/volunteer/v1beta1/query.js +12 -0
  1131. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
  1132. package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
  1133. package/xpla/volunteer/v1beta1/query.rpc.react.d.ts +6 -0
  1134. package/xpla/volunteer/v1beta1/query.rpc.react.js +7 -1
  1135. package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
  1136. package/xpla/volunteer/v1beta1/tx.js +31 -0
  1137. package/xpla/volunteer/v1beta1/tx.registry.d.ts +33 -0
  1138. package/xpla/volunteer/v1beta1/tx.registry.js +45 -1
  1139. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
  1140. package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
  1141. package/xpla/volunteer/v1beta1/tx.rpc.react.d.ts +15 -2
  1142. package/xpla/volunteer/v1beta1/tx.rpc.react.js +15 -2
  1143. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
  1144. package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  1145. package/cosmos/app/runtime/v2/module.d.ts +0 -231
  1146. package/cosmos/app/runtime/v2/module.js +0 -421
  1147. package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
  1148. package/cosmos/auth/v1beta1/accounts.js +0 -161
  1149. package/cosmos/base/grpc/v2/service.d.ts +0 -168
  1150. package/cosmos/base/grpc/v2/service.js +0 -394
  1151. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
  1152. package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
  1153. package/cosmos/base/grpc/v2/service.rpc.react.d.ts +0 -3
  1154. package/cosmos/base/grpc/v2/service.rpc.react.js +0 -13
  1155. package/cosmos/circuit/module/v1/module.d.ts +0 -36
  1156. package/cosmos/circuit/module/v1/module.js +0 -83
  1157. package/cosmos/circuit/v1/query.d.ts +0 -200
  1158. package/cosmos/circuit/v1/query.js +0 -480
  1159. package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -8
  1160. package/cosmos/circuit/v1/query.rpc.func.js +0 -42
  1161. package/cosmos/circuit/v1/tx.d.ts +0 -251
  1162. package/cosmos/circuit/v1/tx.js +0 -528
  1163. package/cosmos/circuit/v1/tx.registry.d.ts +0 -47
  1164. package/cosmos/circuit/v1/tx.registry.js +0 -67
  1165. package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -8
  1166. package/cosmos/circuit/v1/tx.rpc.func.js +0 -37
  1167. package/cosmos/circuit/v1/types.d.ts +0 -151
  1168. package/cosmos/circuit/v1/types.js +0 -350
  1169. package/cosmos/crisis/module/v1/module.d.ts +0 -40
  1170. package/cosmos/crisis/module/v1/module.js +0 -95
  1171. package/cosmos/crisis/v1beta1/genesis.js +0 -84
  1172. package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
  1173. package/cosmos/crisis/v1beta1/tx.js +0 -328
  1174. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -6
  1175. package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -27
  1176. package/cosmos/crypto/ed25519/keys.d.ts +0 -84
  1177. package/cosmos/crypto/ed25519/keys.js +0 -162
  1178. package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
  1179. package/cosmos/crypto/hd/v1/hd.js +0 -131
  1180. package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
  1181. package/cosmos/crypto/keyring/v1/record.js +0 -431
  1182. package/cosmos/crypto/multisig/keys.d.ts +0 -45
  1183. package/cosmos/crypto/multisig/keys.js +0 -99
  1184. package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
  1185. package/cosmos/crypto/secp256k1/keys.js +0 -162
  1186. package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
  1187. package/cosmos/crypto/secp256r1/keys.js +0 -162
  1188. package/cosmos/genutil/module/v1/module.d.ts +0 -32
  1189. package/cosmos/genutil/module/v1/module.js +0 -70
  1190. package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
  1191. package/cosmos/group/module/v1/module.d.ts +0 -53
  1192. package/cosmos/group/module/v1/module.js +0 -96
  1193. package/cosmos/group/v1/events.d.ts +0 -363
  1194. package/cosmos/group/v1/events.js +0 -847
  1195. package/cosmos/group/v1/genesis.d.ts +0 -83
  1196. package/cosmos/group/v1/genesis.js +0 -183
  1197. package/cosmos/group/v1/query.d.ts +0 -1044
  1198. package/cosmos/group/v1/query.js +0 -2434
  1199. package/cosmos/group/v1/query.rpc.func.d.ts +0 -30
  1200. package/cosmos/group/v1/query.rpc.func.js +0 -174
  1201. package/cosmos/group/v1/tx.d.ts +0 -1140
  1202. package/cosmos/group/v1/tx.js +0 -2567
  1203. package/cosmos/group/v1/tx.registry.d.ts +0 -179
  1204. package/cosmos/group/v1/tx.registry.js +0 -265
  1205. package/cosmos/group/v1/tx.rpc.func.d.ts +0 -30
  1206. package/cosmos/group/v1/tx.rpc.func.js +0 -147
  1207. package/cosmos/group/v1/types.d.ts +0 -799
  1208. package/cosmos/group/v1/types.js +0 -1542
  1209. package/cosmos/msg/textual/v1/textual.d.ts +0 -1
  1210. package/cosmos/msg/textual/v1/textual.js +0 -2
  1211. package/cosmos/nft/module/v1/module.d.ts +0 -32
  1212. package/cosmos/nft/module/v1/module.js +0 -70
  1213. package/cosmos/nft/v1beta1/event.d.ts +0 -132
  1214. package/cosmos/nft/v1beta1/event.js +0 -323
  1215. package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
  1216. package/cosmos/nft/v1beta1/genesis.js +0 -195
  1217. package/cosmos/nft/v1beta1/nft.d.ts +0 -111
  1218. package/cosmos/nft/v1beta1/nft.js +0 -282
  1219. package/cosmos/nft/v1beta1/query.d.ts +0 -508
  1220. package/cosmos/nft/v1beta1/query.js +0 -1189
  1221. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -16
  1222. package/cosmos/nft/v1beta1/query.rpc.func.js +0 -90
  1223. package/cosmos/nft/v1beta1/tx.d.ts +0 -78
  1224. package/cosmos/nft/v1beta1/tx.js +0 -184
  1225. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -4
  1226. package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -17
  1227. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
  1228. package/cosmos/orm/module/v1alpha1/module.js +0 -70
  1229. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
  1230. package/cosmos/orm/query/v1alpha1/query.js +0 -751
  1231. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -6
  1232. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -30
  1233. package/cosmos/orm/v1/orm.d.ts +0 -278
  1234. package/cosmos/orm/v1/orm.js +0 -380
  1235. package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
  1236. package/cosmos/orm/v1alpha1/schema.js +0 -258
  1237. package/cosmos/reflection/v1/reflection.d.ts +0 -67
  1238. package/cosmos/reflection/v1/reflection.js +0 -152
  1239. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -4
  1240. package/cosmos/reflection/v1/reflection.rpc.func.js +0 -18
  1241. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
  1242. package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
  1243. package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
  1244. package/cosmos/store/snapshots/v1/snapshot.js +0 -687
  1245. package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
  1246. package/cosmos/store/snapshots/v2/snapshot.js +0 -687
  1247. package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
  1248. package/cosmos/store/streaming/abci/grpc.js +0 -332
  1249. package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
  1250. package/cosmos/store/v1beta1/commit_info.js +0 -292
  1251. package/cosmos/store/v1beta1/listening.d.ts +0 -101
  1252. package/cosmos/store/v1beta1/listening.js +0 -223
  1253. package/cosmos/streaming/v1/grpc.d.ts +0 -302
  1254. package/cosmos/streaming/v1/grpc.js +0 -826
  1255. package/cosmos/validate/module/v1/module.d.ts +0 -32
  1256. package/cosmos/validate/module/v1/module.js +0 -70
  1257. package/cosmos/vesting/module/v1/module.d.ts +0 -32
  1258. package/cosmos/vesting/module/v1/module.js +0 -70
  1259. package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
  1260. package/cosmos/vesting/v1beta1/tx.js +0 -553
  1261. package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -47
  1262. package/cosmos/vesting/v1beta1/tx.registry.js +0 -67
  1263. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -8
  1264. package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -37
  1265. package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
  1266. package/cosmos/vesting/v1beta1/vesting.js +0 -586
  1267. package/dist/package.json +0 -50
  1268. package/esm/cosmos/app/runtime/v2/module.js +0 -418
  1269. package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
  1270. package/esm/cosmos/base/grpc/v2/service.js +0 -391
  1271. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
  1272. package/esm/cosmos/base/grpc/v2/service.rpc.react.js +0 -10
  1273. package/esm/cosmos/circuit/module/v1/module.js +0 -80
  1274. package/esm/cosmos/circuit/v1/query.js +0 -477
  1275. package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -36
  1276. package/esm/cosmos/circuit/v1/tx.js +0 -525
  1277. package/esm/cosmos/circuit/v1/tx.registry.js +0 -64
  1278. package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -31
  1279. package/esm/cosmos/circuit/v1/types.js +0 -345
  1280. package/esm/cosmos/crisis/module/v1/module.js +0 -92
  1281. package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
  1282. package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
  1283. package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -46
  1284. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -22
  1285. package/esm/cosmos/crypto/ed25519/keys.js +0 -159
  1286. package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
  1287. package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
  1288. package/esm/cosmos/crypto/multisig/keys.js +0 -96
  1289. package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
  1290. package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
  1291. package/esm/cosmos/genutil/module/v1/module.js +0 -67
  1292. package/esm/cosmos/group/module/v1/module.js +0 -93
  1293. package/esm/cosmos/group/v1/events.js +0 -844
  1294. package/esm/cosmos/group/v1/genesis.js +0 -180
  1295. package/esm/cosmos/group/v1/query.js +0 -2431
  1296. package/esm/cosmos/group/v1/query.rpc.func.js +0 -157
  1297. package/esm/cosmos/group/v1/tx.js +0 -2562
  1298. package/esm/cosmos/group/v1/tx.registry.js +0 -262
  1299. package/esm/cosmos/group/v1/tx.rpc.func.js +0 -130
  1300. package/esm/cosmos/group/v1/types.js +0 -1533
  1301. package/esm/cosmos/msg/textual/v1/textual.js +0 -1
  1302. package/esm/cosmos/nft/module/v1/module.js +0 -67
  1303. package/esm/cosmos/nft/v1beta1/event.js +0 -320
  1304. package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
  1305. package/esm/cosmos/nft/v1beta1/nft.js +0 -279
  1306. package/esm/cosmos/nft/v1beta1/query.js +0 -1186
  1307. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -80
  1308. package/esm/cosmos/nft/v1beta1/tx.js +0 -181
  1309. package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -28
  1310. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
  1311. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
  1312. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
  1313. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -25
  1314. package/esm/cosmos/orm/v1/orm.js +0 -377
  1315. package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
  1316. package/esm/cosmos/reflection/v1/reflection.js +0 -149
  1317. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -14
  1318. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
  1319. package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
  1320. package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
  1321. package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
  1322. package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
  1323. package/esm/cosmos/store/v1beta1/listening.js +0 -220
  1324. package/esm/cosmos/streaming/v1/grpc.js +0 -823
  1325. package/esm/cosmos/validate/module/v1/module.js +0 -67
  1326. package/esm/cosmos/vesting/module/v1/module.js +0 -67
  1327. package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
  1328. package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -64
  1329. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -31
  1330. package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
  1331. package/esm/ibc/applications/fee/v1/ack.js +0 -103
  1332. package/esm/ibc/applications/fee/v1/fee.js +0 -398
  1333. package/esm/ibc/applications/fee/v1/genesis.js +0 -531
  1334. package/esm/ibc/applications/fee/v1/metadata.js +0 -90
  1335. package/esm/ibc/applications/fee/v1/query.js +0 -1739
  1336. package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
  1337. package/esm/ibc/applications/fee/v1/query.rpc.react.js +0 -42
  1338. package/esm/ibc/applications/fee/v1/tx.js +0 -707
  1339. package/esm/ibc/applications/fee/v1/tx.registry.js +0 -2
  1340. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
  1341. package/esm/ibc/applications/fee/v1/tx.rpc.react.js +0 -14
  1342. package/esm/ibc/core/channel/v1/upgrade.js +0 -300
  1343. package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
  1344. package/ibc/applications/fee/v1/ack.d.ts +0 -45
  1345. package/ibc/applications/fee/v1/ack.js +0 -106
  1346. package/ibc/applications/fee/v1/fee.d.ts +0 -164
  1347. package/ibc/applications/fee/v1/fee.js +0 -401
  1348. package/ibc/applications/fee/v1/genesis.d.ts +0 -225
  1349. package/ibc/applications/fee/v1/genesis.js +0 -534
  1350. package/ibc/applications/fee/v1/metadata.d.ts +0 -47
  1351. package/ibc/applications/fee/v1/metadata.js +0 -93
  1352. package/ibc/applications/fee/v1/query.d.ts +0 -757
  1353. package/ibc/applications/fee/v1/query.js +0 -1742
  1354. package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
  1355. package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
  1356. package/ibc/applications/fee/v1/query.rpc.react.d.ts +0 -11
  1357. package/ibc/applications/fee/v1/query.rpc.react.js +0 -45
  1358. package/ibc/applications/fee/v1/tx.d.ts +0 -326
  1359. package/ibc/applications/fee/v1/tx.js +0 -710
  1360. package/ibc/applications/fee/v1/tx.registry.d.ts +0 -2
  1361. package/ibc/applications/fee/v1/tx.registry.js +0 -5
  1362. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
  1363. package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
  1364. package/ibc/applications/fee/v1/tx.rpc.react.d.ts +0 -5
  1365. package/ibc/applications/fee/v1/tx.rpc.react.js +0 -17
  1366. package/ibc/core/channel/v1/upgrade.d.ts +0 -142
  1367. package/ibc/core/channel/v1/upgrade.js +0 -303
  1368. package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
  1369. package/ibc/lightclients/localhost/v2/localhost.js +0 -84
@@ -0,0 +1,1773 @@
1
+ import { MsgEthereumTx, MsgEthereumTxAmino } from "./tx";
2
+ import { TraceConfig, TraceConfigAmino, ChainConfig, ChainConfigAmino, Log, LogAmino, Params, ParamsAmino } from "./evm";
3
+ import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "../../../base/query/v1beta1/pagination";
4
+ import { BinaryReader, BinaryWriter } from "../../../../binary";
5
+ import { DeepPartial } from "../../../../helpers";
6
+ /**
7
+ * QueryConfigRequest defines the request type for querying the config
8
+ * @name QueryConfigRequest
9
+ * @package cosmos.evm.vm.v1
10
+ * @see proto type: cosmos.evm.vm.v1.QueryConfigRequest
11
+ */
12
+ export interface QueryConfigRequest {
13
+ }
14
+ export interface QueryConfigRequestProtoMsg {
15
+ typeUrl: "/cosmos.evm.vm.v1.QueryConfigRequest";
16
+ value: Uint8Array;
17
+ }
18
+ /**
19
+ * QueryConfigRequest defines the request type for querying the config
20
+ * @name QueryConfigRequestAmino
21
+ * @package cosmos.evm.vm.v1
22
+ * @see proto type: cosmos.evm.vm.v1.QueryConfigRequest
23
+ */
24
+ export interface QueryConfigRequestAmino {
25
+ }
26
+ export interface QueryConfigRequestAminoMsg {
27
+ type: "cosmos-sdk/QueryConfigRequest";
28
+ value: QueryConfigRequestAmino;
29
+ }
30
+ /**
31
+ * QueryConfigResponse returns the EVM config.
32
+ * @name QueryConfigResponse
33
+ * @package cosmos.evm.vm.v1
34
+ * @see proto type: cosmos.evm.vm.v1.QueryConfigResponse
35
+ */
36
+ export interface QueryConfigResponse {
37
+ /**
38
+ * config is the evm configuration
39
+ */
40
+ config?: ChainConfig;
41
+ }
42
+ export interface QueryConfigResponseProtoMsg {
43
+ typeUrl: "/cosmos.evm.vm.v1.QueryConfigResponse";
44
+ value: Uint8Array;
45
+ }
46
+ /**
47
+ * QueryConfigResponse returns the EVM config.
48
+ * @name QueryConfigResponseAmino
49
+ * @package cosmos.evm.vm.v1
50
+ * @see proto type: cosmos.evm.vm.v1.QueryConfigResponse
51
+ */
52
+ export interface QueryConfigResponseAmino {
53
+ /**
54
+ * config is the evm configuration
55
+ */
56
+ config?: ChainConfigAmino;
57
+ }
58
+ export interface QueryConfigResponseAminoMsg {
59
+ type: "cosmos-sdk/QueryConfigResponse";
60
+ value: QueryConfigResponseAmino;
61
+ }
62
+ /**
63
+ * QueryAccountRequest is the request type for the Query/Account RPC method.
64
+ * @name QueryAccountRequest
65
+ * @package cosmos.evm.vm.v1
66
+ * @see proto type: cosmos.evm.vm.v1.QueryAccountRequest
67
+ */
68
+ export interface QueryAccountRequest {
69
+ /**
70
+ * address is the ethereum hex address to query the account for.
71
+ */
72
+ address: string;
73
+ }
74
+ export interface QueryAccountRequestProtoMsg {
75
+ typeUrl: "/cosmos.evm.vm.v1.QueryAccountRequest";
76
+ value: Uint8Array;
77
+ }
78
+ /**
79
+ * QueryAccountRequest is the request type for the Query/Account RPC method.
80
+ * @name QueryAccountRequestAmino
81
+ * @package cosmos.evm.vm.v1
82
+ * @see proto type: cosmos.evm.vm.v1.QueryAccountRequest
83
+ */
84
+ export interface QueryAccountRequestAmino {
85
+ /**
86
+ * address is the ethereum hex address to query the account for.
87
+ */
88
+ address: string;
89
+ }
90
+ export interface QueryAccountRequestAminoMsg {
91
+ type: "cosmos-sdk/QueryAccountRequest";
92
+ value: QueryAccountRequestAmino;
93
+ }
94
+ /**
95
+ * QueryAccountResponse is the response type for the Query/Account RPC method.
96
+ * @name QueryAccountResponse
97
+ * @package cosmos.evm.vm.v1
98
+ * @see proto type: cosmos.evm.vm.v1.QueryAccountResponse
99
+ */
100
+ export interface QueryAccountResponse {
101
+ /**
102
+ * balance is the balance of the EVM denomination.
103
+ */
104
+ balance: string;
105
+ /**
106
+ * code_hash is the hex-formatted code bytes from the EOA.
107
+ */
108
+ codeHash: string;
109
+ /**
110
+ * nonce is the account's sequence number.
111
+ */
112
+ nonce: bigint;
113
+ }
114
+ export interface QueryAccountResponseProtoMsg {
115
+ typeUrl: "/cosmos.evm.vm.v1.QueryAccountResponse";
116
+ value: Uint8Array;
117
+ }
118
+ /**
119
+ * QueryAccountResponse is the response type for the Query/Account RPC method.
120
+ * @name QueryAccountResponseAmino
121
+ * @package cosmos.evm.vm.v1
122
+ * @see proto type: cosmos.evm.vm.v1.QueryAccountResponse
123
+ */
124
+ export interface QueryAccountResponseAmino {
125
+ /**
126
+ * balance is the balance of the EVM denomination.
127
+ */
128
+ balance: string;
129
+ /**
130
+ * code_hash is the hex-formatted code bytes from the EOA.
131
+ */
132
+ code_hash: string;
133
+ /**
134
+ * nonce is the account's sequence number.
135
+ */
136
+ nonce: string;
137
+ }
138
+ export interface QueryAccountResponseAminoMsg {
139
+ type: "cosmos-sdk/QueryAccountResponse";
140
+ value: QueryAccountResponseAmino;
141
+ }
142
+ /**
143
+ * QueryCosmosAccountRequest is the request type for the Query/CosmosAccount RPC
144
+ * method.
145
+ * @name QueryCosmosAccountRequest
146
+ * @package cosmos.evm.vm.v1
147
+ * @see proto type: cosmos.evm.vm.v1.QueryCosmosAccountRequest
148
+ */
149
+ export interface QueryCosmosAccountRequest {
150
+ /**
151
+ * address is the ethereum hex address to query the account for.
152
+ */
153
+ address: string;
154
+ }
155
+ export interface QueryCosmosAccountRequestProtoMsg {
156
+ typeUrl: "/cosmos.evm.vm.v1.QueryCosmosAccountRequest";
157
+ value: Uint8Array;
158
+ }
159
+ /**
160
+ * QueryCosmosAccountRequest is the request type for the Query/CosmosAccount RPC
161
+ * method.
162
+ * @name QueryCosmosAccountRequestAmino
163
+ * @package cosmos.evm.vm.v1
164
+ * @see proto type: cosmos.evm.vm.v1.QueryCosmosAccountRequest
165
+ */
166
+ export interface QueryCosmosAccountRequestAmino {
167
+ /**
168
+ * address is the ethereum hex address to query the account for.
169
+ */
170
+ address: string;
171
+ }
172
+ export interface QueryCosmosAccountRequestAminoMsg {
173
+ type: "cosmos-sdk/QueryCosmosAccountRequest";
174
+ value: QueryCosmosAccountRequestAmino;
175
+ }
176
+ /**
177
+ * QueryCosmosAccountResponse is the response type for the Query/CosmosAccount
178
+ * RPC method.
179
+ * @name QueryCosmosAccountResponse
180
+ * @package cosmos.evm.vm.v1
181
+ * @see proto type: cosmos.evm.vm.v1.QueryCosmosAccountResponse
182
+ */
183
+ export interface QueryCosmosAccountResponse {
184
+ /**
185
+ * cosmos_address is the cosmos address of the account.
186
+ */
187
+ cosmosAddress: string;
188
+ /**
189
+ * sequence is the account's sequence number.
190
+ */
191
+ sequence: bigint;
192
+ /**
193
+ * account_number is the account number
194
+ */
195
+ accountNumber: bigint;
196
+ }
197
+ export interface QueryCosmosAccountResponseProtoMsg {
198
+ typeUrl: "/cosmos.evm.vm.v1.QueryCosmosAccountResponse";
199
+ value: Uint8Array;
200
+ }
201
+ /**
202
+ * QueryCosmosAccountResponse is the response type for the Query/CosmosAccount
203
+ * RPC method.
204
+ * @name QueryCosmosAccountResponseAmino
205
+ * @package cosmos.evm.vm.v1
206
+ * @see proto type: cosmos.evm.vm.v1.QueryCosmosAccountResponse
207
+ */
208
+ export interface QueryCosmosAccountResponseAmino {
209
+ /**
210
+ * cosmos_address is the cosmos address of the account.
211
+ */
212
+ cosmos_address: string;
213
+ /**
214
+ * sequence is the account's sequence number.
215
+ */
216
+ sequence: string;
217
+ /**
218
+ * account_number is the account number
219
+ */
220
+ account_number: string;
221
+ }
222
+ export interface QueryCosmosAccountResponseAminoMsg {
223
+ type: "cosmos-sdk/QueryCosmosAccountResponse";
224
+ value: QueryCosmosAccountResponseAmino;
225
+ }
226
+ /**
227
+ * QueryValidatorAccountRequest is the request type for the
228
+ * Query/ValidatorAccount RPC method.
229
+ * @name QueryValidatorAccountRequest
230
+ * @package cosmos.evm.vm.v1
231
+ * @see proto type: cosmos.evm.vm.v1.QueryValidatorAccountRequest
232
+ */
233
+ export interface QueryValidatorAccountRequest {
234
+ /**
235
+ * cons_address is the validator cons address to query the account for.
236
+ */
237
+ consAddress: string;
238
+ }
239
+ export interface QueryValidatorAccountRequestProtoMsg {
240
+ typeUrl: "/cosmos.evm.vm.v1.QueryValidatorAccountRequest";
241
+ value: Uint8Array;
242
+ }
243
+ /**
244
+ * QueryValidatorAccountRequest is the request type for the
245
+ * Query/ValidatorAccount RPC method.
246
+ * @name QueryValidatorAccountRequestAmino
247
+ * @package cosmos.evm.vm.v1
248
+ * @see proto type: cosmos.evm.vm.v1.QueryValidatorAccountRequest
249
+ */
250
+ export interface QueryValidatorAccountRequestAmino {
251
+ /**
252
+ * cons_address is the validator cons address to query the account for.
253
+ */
254
+ cons_address: string;
255
+ }
256
+ export interface QueryValidatorAccountRequestAminoMsg {
257
+ type: "cosmos-sdk/QueryValidatorAccountRequest";
258
+ value: QueryValidatorAccountRequestAmino;
259
+ }
260
+ /**
261
+ * QueryValidatorAccountResponse is the response type for the
262
+ * Query/ValidatorAccount RPC method.
263
+ * @name QueryValidatorAccountResponse
264
+ * @package cosmos.evm.vm.v1
265
+ * @see proto type: cosmos.evm.vm.v1.QueryValidatorAccountResponse
266
+ */
267
+ export interface QueryValidatorAccountResponse {
268
+ /**
269
+ * account_address is the cosmos address of the account in bech32 format.
270
+ */
271
+ accountAddress: string;
272
+ /**
273
+ * sequence is the account's sequence number.
274
+ */
275
+ sequence: bigint;
276
+ /**
277
+ * account_number is the account number
278
+ */
279
+ accountNumber: bigint;
280
+ }
281
+ export interface QueryValidatorAccountResponseProtoMsg {
282
+ typeUrl: "/cosmos.evm.vm.v1.QueryValidatorAccountResponse";
283
+ value: Uint8Array;
284
+ }
285
+ /**
286
+ * QueryValidatorAccountResponse is the response type for the
287
+ * Query/ValidatorAccount RPC method.
288
+ * @name QueryValidatorAccountResponseAmino
289
+ * @package cosmos.evm.vm.v1
290
+ * @see proto type: cosmos.evm.vm.v1.QueryValidatorAccountResponse
291
+ */
292
+ export interface QueryValidatorAccountResponseAmino {
293
+ /**
294
+ * account_address is the cosmos address of the account in bech32 format.
295
+ */
296
+ account_address: string;
297
+ /**
298
+ * sequence is the account's sequence number.
299
+ */
300
+ sequence: string;
301
+ /**
302
+ * account_number is the account number
303
+ */
304
+ account_number: string;
305
+ }
306
+ export interface QueryValidatorAccountResponseAminoMsg {
307
+ type: "cosmos-sdk/QueryValidatorAccountResponse";
308
+ value: QueryValidatorAccountResponseAmino;
309
+ }
310
+ /**
311
+ * QueryBalanceRequest is the request type for the Query/Balance RPC method.
312
+ * @name QueryBalanceRequest
313
+ * @package cosmos.evm.vm.v1
314
+ * @see proto type: cosmos.evm.vm.v1.QueryBalanceRequest
315
+ */
316
+ export interface QueryBalanceRequest {
317
+ /**
318
+ * address is the ethereum hex address to query the balance for.
319
+ */
320
+ address: string;
321
+ }
322
+ export interface QueryBalanceRequestProtoMsg {
323
+ typeUrl: "/cosmos.evm.vm.v1.QueryBalanceRequest";
324
+ value: Uint8Array;
325
+ }
326
+ /**
327
+ * QueryBalanceRequest is the request type for the Query/Balance RPC method.
328
+ * @name QueryBalanceRequestAmino
329
+ * @package cosmos.evm.vm.v1
330
+ * @see proto type: cosmos.evm.vm.v1.QueryBalanceRequest
331
+ */
332
+ export interface QueryBalanceRequestAmino {
333
+ /**
334
+ * address is the ethereum hex address to query the balance for.
335
+ */
336
+ address: string;
337
+ }
338
+ export interface QueryBalanceRequestAminoMsg {
339
+ type: "cosmos-sdk/QueryBalanceRequest";
340
+ value: QueryBalanceRequestAmino;
341
+ }
342
+ /**
343
+ * QueryBalanceResponse is the response type for the Query/Balance RPC method.
344
+ * @name QueryBalanceResponse
345
+ * @package cosmos.evm.vm.v1
346
+ * @see proto type: cosmos.evm.vm.v1.QueryBalanceResponse
347
+ */
348
+ export interface QueryBalanceResponse {
349
+ /**
350
+ * balance is the balance of the EVM denomination.
351
+ */
352
+ balance: string;
353
+ }
354
+ export interface QueryBalanceResponseProtoMsg {
355
+ typeUrl: "/cosmos.evm.vm.v1.QueryBalanceResponse";
356
+ value: Uint8Array;
357
+ }
358
+ /**
359
+ * QueryBalanceResponse is the response type for the Query/Balance RPC method.
360
+ * @name QueryBalanceResponseAmino
361
+ * @package cosmos.evm.vm.v1
362
+ * @see proto type: cosmos.evm.vm.v1.QueryBalanceResponse
363
+ */
364
+ export interface QueryBalanceResponseAmino {
365
+ /**
366
+ * balance is the balance of the EVM denomination.
367
+ */
368
+ balance: string;
369
+ }
370
+ export interface QueryBalanceResponseAminoMsg {
371
+ type: "cosmos-sdk/QueryBalanceResponse";
372
+ value: QueryBalanceResponseAmino;
373
+ }
374
+ /**
375
+ * QueryStorageRequest is the request type for the Query/Storage RPC method.
376
+ * @name QueryStorageRequest
377
+ * @package cosmos.evm.vm.v1
378
+ * @see proto type: cosmos.evm.vm.v1.QueryStorageRequest
379
+ */
380
+ export interface QueryStorageRequest {
381
+ /**
382
+ * address is the ethereum hex address to query the storage state for.
383
+ */
384
+ address: string;
385
+ /**
386
+ * key defines the key of the storage state
387
+ */
388
+ key: string;
389
+ }
390
+ export interface QueryStorageRequestProtoMsg {
391
+ typeUrl: "/cosmos.evm.vm.v1.QueryStorageRequest";
392
+ value: Uint8Array;
393
+ }
394
+ /**
395
+ * QueryStorageRequest is the request type for the Query/Storage RPC method.
396
+ * @name QueryStorageRequestAmino
397
+ * @package cosmos.evm.vm.v1
398
+ * @see proto type: cosmos.evm.vm.v1.QueryStorageRequest
399
+ */
400
+ export interface QueryStorageRequestAmino {
401
+ /**
402
+ * address is the ethereum hex address to query the storage state for.
403
+ */
404
+ address: string;
405
+ /**
406
+ * key defines the key of the storage state
407
+ */
408
+ key: string;
409
+ }
410
+ export interface QueryStorageRequestAminoMsg {
411
+ type: "cosmos-sdk/QueryStorageRequest";
412
+ value: QueryStorageRequestAmino;
413
+ }
414
+ /**
415
+ * QueryStorageResponse is the response type for the Query/Storage RPC
416
+ * method.
417
+ * @name QueryStorageResponse
418
+ * @package cosmos.evm.vm.v1
419
+ * @see proto type: cosmos.evm.vm.v1.QueryStorageResponse
420
+ */
421
+ export interface QueryStorageResponse {
422
+ /**
423
+ * value defines the storage state value hash associated with the given key.
424
+ */
425
+ value: string;
426
+ }
427
+ export interface QueryStorageResponseProtoMsg {
428
+ typeUrl: "/cosmos.evm.vm.v1.QueryStorageResponse";
429
+ value: Uint8Array;
430
+ }
431
+ /**
432
+ * QueryStorageResponse is the response type for the Query/Storage RPC
433
+ * method.
434
+ * @name QueryStorageResponseAmino
435
+ * @package cosmos.evm.vm.v1
436
+ * @see proto type: cosmos.evm.vm.v1.QueryStorageResponse
437
+ */
438
+ export interface QueryStorageResponseAmino {
439
+ /**
440
+ * value defines the storage state value hash associated with the given key.
441
+ */
442
+ value: string;
443
+ }
444
+ export interface QueryStorageResponseAminoMsg {
445
+ type: "cosmos-sdk/QueryStorageResponse";
446
+ value: QueryStorageResponseAmino;
447
+ }
448
+ /**
449
+ * QueryCodeRequest is the request type for the Query/Code RPC method.
450
+ * @name QueryCodeRequest
451
+ * @package cosmos.evm.vm.v1
452
+ * @see proto type: cosmos.evm.vm.v1.QueryCodeRequest
453
+ */
454
+ export interface QueryCodeRequest {
455
+ /**
456
+ * address is the ethereum hex address to query the code for.
457
+ */
458
+ address: string;
459
+ }
460
+ export interface QueryCodeRequestProtoMsg {
461
+ typeUrl: "/cosmos.evm.vm.v1.QueryCodeRequest";
462
+ value: Uint8Array;
463
+ }
464
+ /**
465
+ * QueryCodeRequest is the request type for the Query/Code RPC method.
466
+ * @name QueryCodeRequestAmino
467
+ * @package cosmos.evm.vm.v1
468
+ * @see proto type: cosmos.evm.vm.v1.QueryCodeRequest
469
+ */
470
+ export interface QueryCodeRequestAmino {
471
+ /**
472
+ * address is the ethereum hex address to query the code for.
473
+ */
474
+ address: string;
475
+ }
476
+ export interface QueryCodeRequestAminoMsg {
477
+ type: "cosmos-sdk/QueryCodeRequest";
478
+ value: QueryCodeRequestAmino;
479
+ }
480
+ /**
481
+ * QueryCodeResponse is the response type for the Query/Code RPC
482
+ * method.
483
+ * @name QueryCodeResponse
484
+ * @package cosmos.evm.vm.v1
485
+ * @see proto type: cosmos.evm.vm.v1.QueryCodeResponse
486
+ */
487
+ export interface QueryCodeResponse {
488
+ /**
489
+ * code represents the code bytes from an ethereum address.
490
+ */
491
+ code: Uint8Array;
492
+ }
493
+ export interface QueryCodeResponseProtoMsg {
494
+ typeUrl: "/cosmos.evm.vm.v1.QueryCodeResponse";
495
+ value: Uint8Array;
496
+ }
497
+ /**
498
+ * QueryCodeResponse is the response type for the Query/Code RPC
499
+ * method.
500
+ * @name QueryCodeResponseAmino
501
+ * @package cosmos.evm.vm.v1
502
+ * @see proto type: cosmos.evm.vm.v1.QueryCodeResponse
503
+ */
504
+ export interface QueryCodeResponseAmino {
505
+ /**
506
+ * code represents the code bytes from an ethereum address.
507
+ */
508
+ code: string;
509
+ }
510
+ export interface QueryCodeResponseAminoMsg {
511
+ type: "cosmos-sdk/QueryCodeResponse";
512
+ value: QueryCodeResponseAmino;
513
+ }
514
+ /**
515
+ * QueryTxLogsRequest is the request type for the Query/TxLogs RPC method.
516
+ * @name QueryTxLogsRequest
517
+ * @package cosmos.evm.vm.v1
518
+ * @see proto type: cosmos.evm.vm.v1.QueryTxLogsRequest
519
+ */
520
+ export interface QueryTxLogsRequest {
521
+ /**
522
+ * hash is the ethereum transaction hex hash to query the logs for.
523
+ */
524
+ hash: string;
525
+ /**
526
+ * pagination defines an optional pagination for the request.
527
+ */
528
+ pagination?: PageRequest;
529
+ }
530
+ export interface QueryTxLogsRequestProtoMsg {
531
+ typeUrl: "/cosmos.evm.vm.v1.QueryTxLogsRequest";
532
+ value: Uint8Array;
533
+ }
534
+ /**
535
+ * QueryTxLogsRequest is the request type for the Query/TxLogs RPC method.
536
+ * @name QueryTxLogsRequestAmino
537
+ * @package cosmos.evm.vm.v1
538
+ * @see proto type: cosmos.evm.vm.v1.QueryTxLogsRequest
539
+ */
540
+ export interface QueryTxLogsRequestAmino {
541
+ /**
542
+ * hash is the ethereum transaction hex hash to query the logs for.
543
+ */
544
+ hash: string;
545
+ /**
546
+ * pagination defines an optional pagination for the request.
547
+ */
548
+ pagination?: PageRequestAmino;
549
+ }
550
+ export interface QueryTxLogsRequestAminoMsg {
551
+ type: "cosmos-sdk/QueryTxLogsRequest";
552
+ value: QueryTxLogsRequestAmino;
553
+ }
554
+ /**
555
+ * QueryTxLogsResponse is the response type for the Query/TxLogs RPC method.
556
+ * @name QueryTxLogsResponse
557
+ * @package cosmos.evm.vm.v1
558
+ * @see proto type: cosmos.evm.vm.v1.QueryTxLogsResponse
559
+ */
560
+ export interface QueryTxLogsResponse {
561
+ /**
562
+ * logs represents the ethereum logs generated from the given transaction.
563
+ */
564
+ logs: Log[];
565
+ /**
566
+ * pagination defines the pagination in the response.
567
+ */
568
+ pagination?: PageResponse;
569
+ }
570
+ export interface QueryTxLogsResponseProtoMsg {
571
+ typeUrl: "/cosmos.evm.vm.v1.QueryTxLogsResponse";
572
+ value: Uint8Array;
573
+ }
574
+ /**
575
+ * QueryTxLogsResponse is the response type for the Query/TxLogs RPC method.
576
+ * @name QueryTxLogsResponseAmino
577
+ * @package cosmos.evm.vm.v1
578
+ * @see proto type: cosmos.evm.vm.v1.QueryTxLogsResponse
579
+ */
580
+ export interface QueryTxLogsResponseAmino {
581
+ /**
582
+ * logs represents the ethereum logs generated from the given transaction.
583
+ */
584
+ logs: LogAmino[];
585
+ /**
586
+ * pagination defines the pagination in the response.
587
+ */
588
+ pagination?: PageResponseAmino;
589
+ }
590
+ export interface QueryTxLogsResponseAminoMsg {
591
+ type: "cosmos-sdk/QueryTxLogsResponse";
592
+ value: QueryTxLogsResponseAmino;
593
+ }
594
+ /**
595
+ * QueryParamsRequest defines the request type for querying x/vm parameters.
596
+ * @name QueryParamsRequest
597
+ * @package cosmos.evm.vm.v1
598
+ * @see proto type: cosmos.evm.vm.v1.QueryParamsRequest
599
+ */
600
+ export interface QueryParamsRequest {
601
+ }
602
+ export interface QueryParamsRequestProtoMsg {
603
+ typeUrl: "/cosmos.evm.vm.v1.QueryParamsRequest";
604
+ value: Uint8Array;
605
+ }
606
+ /**
607
+ * QueryParamsRequest defines the request type for querying x/vm parameters.
608
+ * @name QueryParamsRequestAmino
609
+ * @package cosmos.evm.vm.v1
610
+ * @see proto type: cosmos.evm.vm.v1.QueryParamsRequest
611
+ */
612
+ export interface QueryParamsRequestAmino {
613
+ }
614
+ export interface QueryParamsRequestAminoMsg {
615
+ type: "cosmos-sdk/QueryParamsRequest";
616
+ value: QueryParamsRequestAmino;
617
+ }
618
+ /**
619
+ * QueryParamsResponse defines the response type for querying x/vm parameters.
620
+ * @name QueryParamsResponse
621
+ * @package cosmos.evm.vm.v1
622
+ * @see proto type: cosmos.evm.vm.v1.QueryParamsResponse
623
+ */
624
+ export interface QueryParamsResponse {
625
+ /**
626
+ * params define the evm module parameters.
627
+ */
628
+ params: Params;
629
+ }
630
+ export interface QueryParamsResponseProtoMsg {
631
+ typeUrl: "/cosmos.evm.vm.v1.QueryParamsResponse";
632
+ value: Uint8Array;
633
+ }
634
+ /**
635
+ * QueryParamsResponse defines the response type for querying x/vm parameters.
636
+ * @name QueryParamsResponseAmino
637
+ * @package cosmos.evm.vm.v1
638
+ * @see proto type: cosmos.evm.vm.v1.QueryParamsResponse
639
+ */
640
+ export interface QueryParamsResponseAmino {
641
+ /**
642
+ * params define the evm module parameters.
643
+ */
644
+ params: ParamsAmino;
645
+ }
646
+ export interface QueryParamsResponseAminoMsg {
647
+ type: "cosmos-sdk/QueryParamsResponse";
648
+ value: QueryParamsResponseAmino;
649
+ }
650
+ /**
651
+ * EthCallRequest defines EthCall request
652
+ * @name EthCallRequest
653
+ * @package cosmos.evm.vm.v1
654
+ * @see proto type: cosmos.evm.vm.v1.EthCallRequest
655
+ */
656
+ export interface EthCallRequest {
657
+ /**
658
+ * args uses the same json format as the json rpc api.
659
+ */
660
+ args: Uint8Array;
661
+ /**
662
+ * gas_cap defines the default gas cap to be used
663
+ */
664
+ gasCap: bigint;
665
+ /**
666
+ * proposer_address of the requested block in hex format
667
+ */
668
+ proposerAddress: Uint8Array;
669
+ /**
670
+ * chain_id is the eip155 chain id parsed from the requested block header
671
+ */
672
+ chainId: bigint;
673
+ }
674
+ export interface EthCallRequestProtoMsg {
675
+ typeUrl: "/cosmos.evm.vm.v1.EthCallRequest";
676
+ value: Uint8Array;
677
+ }
678
+ /**
679
+ * EthCallRequest defines EthCall request
680
+ * @name EthCallRequestAmino
681
+ * @package cosmos.evm.vm.v1
682
+ * @see proto type: cosmos.evm.vm.v1.EthCallRequest
683
+ */
684
+ export interface EthCallRequestAmino {
685
+ /**
686
+ * args uses the same json format as the json rpc api.
687
+ */
688
+ args: string;
689
+ /**
690
+ * gas_cap defines the default gas cap to be used
691
+ */
692
+ gas_cap: string;
693
+ /**
694
+ * proposer_address of the requested block in hex format
695
+ */
696
+ proposer_address: string;
697
+ /**
698
+ * chain_id is the eip155 chain id parsed from the requested block header
699
+ */
700
+ chain_id: string;
701
+ }
702
+ export interface EthCallRequestAminoMsg {
703
+ type: "cosmos-sdk/EthCallRequest";
704
+ value: EthCallRequestAmino;
705
+ }
706
+ /**
707
+ * EstimateGasResponse defines EstimateGas response
708
+ * @name EstimateGasResponse
709
+ * @package cosmos.evm.vm.v1
710
+ * @see proto type: cosmos.evm.vm.v1.EstimateGasResponse
711
+ */
712
+ export interface EstimateGasResponse {
713
+ /**
714
+ * gas returns the estimated gas
715
+ */
716
+ gas: bigint;
717
+ /**
718
+ * ret is the returned data from evm function (result or data supplied with
719
+ * revert opcode)
720
+ */
721
+ ret: Uint8Array;
722
+ /**
723
+ * vm_error is the error returned by vm execution
724
+ */
725
+ vmError: string;
726
+ }
727
+ export interface EstimateGasResponseProtoMsg {
728
+ typeUrl: "/cosmos.evm.vm.v1.EstimateGasResponse";
729
+ value: Uint8Array;
730
+ }
731
+ /**
732
+ * EstimateGasResponse defines EstimateGas response
733
+ * @name EstimateGasResponseAmino
734
+ * @package cosmos.evm.vm.v1
735
+ * @see proto type: cosmos.evm.vm.v1.EstimateGasResponse
736
+ */
737
+ export interface EstimateGasResponseAmino {
738
+ /**
739
+ * gas returns the estimated gas
740
+ */
741
+ gas: string;
742
+ /**
743
+ * ret is the returned data from evm function (result or data supplied with
744
+ * revert opcode)
745
+ */
746
+ ret: string;
747
+ /**
748
+ * vm_error is the error returned by vm execution
749
+ */
750
+ vm_error: string;
751
+ }
752
+ export interface EstimateGasResponseAminoMsg {
753
+ type: "cosmos-sdk/EstimateGasResponse";
754
+ value: EstimateGasResponseAmino;
755
+ }
756
+ /**
757
+ * QueryTraceTxRequest defines TraceTx request
758
+ * @name QueryTraceTxRequest
759
+ * @package cosmos.evm.vm.v1
760
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceTxRequest
761
+ */
762
+ export interface QueryTraceTxRequest {
763
+ /**
764
+ * msg is the MsgEthereumTx for the requested transaction
765
+ */
766
+ msg?: MsgEthereumTx;
767
+ /**
768
+ * trace_config holds extra parameters to trace functions.
769
+ */
770
+ traceConfig?: TraceConfig;
771
+ /**
772
+ * predecessors is an array of transactions included in the same block
773
+ * need to be replayed first to get correct context for tracing.
774
+ */
775
+ predecessors: MsgEthereumTx[];
776
+ /**
777
+ * block_number of requested transaction
778
+ */
779
+ blockNumber: bigint;
780
+ /**
781
+ * block_hash of requested transaction
782
+ */
783
+ blockHash: string;
784
+ /**
785
+ * block_time of requested transaction
786
+ */
787
+ blockTime: Date;
788
+ /**
789
+ * proposer_address is the proposer of the requested block
790
+ */
791
+ proposerAddress: Uint8Array;
792
+ /**
793
+ * chain_id is the eip155 chain id parsed from the requested block header
794
+ */
795
+ chainId: bigint;
796
+ /**
797
+ * block_max_gas of the block of the requested transaction
798
+ */
799
+ blockMaxGas: bigint;
800
+ }
801
+ export interface QueryTraceTxRequestProtoMsg {
802
+ typeUrl: "/cosmos.evm.vm.v1.QueryTraceTxRequest";
803
+ value: Uint8Array;
804
+ }
805
+ /**
806
+ * QueryTraceTxRequest defines TraceTx request
807
+ * @name QueryTraceTxRequestAmino
808
+ * @package cosmos.evm.vm.v1
809
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceTxRequest
810
+ */
811
+ export interface QueryTraceTxRequestAmino {
812
+ /**
813
+ * msg is the MsgEthereumTx for the requested transaction
814
+ */
815
+ msg?: MsgEthereumTxAmino;
816
+ /**
817
+ * trace_config holds extra parameters to trace functions.
818
+ */
819
+ trace_config?: TraceConfigAmino;
820
+ /**
821
+ * predecessors is an array of transactions included in the same block
822
+ * need to be replayed first to get correct context for tracing.
823
+ */
824
+ predecessors: MsgEthereumTxAmino[];
825
+ /**
826
+ * block_number of requested transaction
827
+ */
828
+ block_number: string;
829
+ /**
830
+ * block_hash of requested transaction
831
+ */
832
+ block_hash: string;
833
+ /**
834
+ * block_time of requested transaction
835
+ */
836
+ block_time: string;
837
+ /**
838
+ * proposer_address is the proposer of the requested block
839
+ */
840
+ proposer_address: string;
841
+ /**
842
+ * chain_id is the eip155 chain id parsed from the requested block header
843
+ */
844
+ chain_id: string;
845
+ /**
846
+ * block_max_gas of the block of the requested transaction
847
+ */
848
+ block_max_gas: string;
849
+ }
850
+ export interface QueryTraceTxRequestAminoMsg {
851
+ type: "cosmos-sdk/QueryTraceTxRequest";
852
+ value: QueryTraceTxRequestAmino;
853
+ }
854
+ /**
855
+ * QueryTraceTxResponse defines TraceTx response
856
+ * @name QueryTraceTxResponse
857
+ * @package cosmos.evm.vm.v1
858
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceTxResponse
859
+ */
860
+ export interface QueryTraceTxResponse {
861
+ /**
862
+ * data is the response serialized in bytes
863
+ */
864
+ data: Uint8Array;
865
+ }
866
+ export interface QueryTraceTxResponseProtoMsg {
867
+ typeUrl: "/cosmos.evm.vm.v1.QueryTraceTxResponse";
868
+ value: Uint8Array;
869
+ }
870
+ /**
871
+ * QueryTraceTxResponse defines TraceTx response
872
+ * @name QueryTraceTxResponseAmino
873
+ * @package cosmos.evm.vm.v1
874
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceTxResponse
875
+ */
876
+ export interface QueryTraceTxResponseAmino {
877
+ /**
878
+ * data is the response serialized in bytes
879
+ */
880
+ data: string;
881
+ }
882
+ export interface QueryTraceTxResponseAminoMsg {
883
+ type: "cosmos-sdk/QueryTraceTxResponse";
884
+ value: QueryTraceTxResponseAmino;
885
+ }
886
+ /**
887
+ * QueryTraceBlockRequest defines TraceTx request
888
+ * @name QueryTraceBlockRequest
889
+ * @package cosmos.evm.vm.v1
890
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceBlockRequest
891
+ */
892
+ export interface QueryTraceBlockRequest {
893
+ /**
894
+ * txs is an array of messages in the block
895
+ */
896
+ txs: MsgEthereumTx[];
897
+ /**
898
+ * trace_config holds extra parameters to trace functions.
899
+ */
900
+ traceConfig?: TraceConfig;
901
+ /**
902
+ * block_number of the traced block
903
+ */
904
+ blockNumber: bigint;
905
+ /**
906
+ * block_hash (hex) of the traced block
907
+ */
908
+ blockHash: string;
909
+ /**
910
+ * block_time of the traced block
911
+ */
912
+ blockTime: Date;
913
+ /**
914
+ * proposer_address is the address of the requested block
915
+ */
916
+ proposerAddress: Uint8Array;
917
+ /**
918
+ * chain_id is the eip155 chain id parsed from the requested block header
919
+ */
920
+ chainId: bigint;
921
+ /**
922
+ * block_max_gas of the traced block
923
+ */
924
+ blockMaxGas: bigint;
925
+ }
926
+ export interface QueryTraceBlockRequestProtoMsg {
927
+ typeUrl: "/cosmos.evm.vm.v1.QueryTraceBlockRequest";
928
+ value: Uint8Array;
929
+ }
930
+ /**
931
+ * QueryTraceBlockRequest defines TraceTx request
932
+ * @name QueryTraceBlockRequestAmino
933
+ * @package cosmos.evm.vm.v1
934
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceBlockRequest
935
+ */
936
+ export interface QueryTraceBlockRequestAmino {
937
+ /**
938
+ * txs is an array of messages in the block
939
+ */
940
+ txs: MsgEthereumTxAmino[];
941
+ /**
942
+ * trace_config holds extra parameters to trace functions.
943
+ */
944
+ trace_config?: TraceConfigAmino;
945
+ /**
946
+ * block_number of the traced block
947
+ */
948
+ block_number: string;
949
+ /**
950
+ * block_hash (hex) of the traced block
951
+ */
952
+ block_hash: string;
953
+ /**
954
+ * block_time of the traced block
955
+ */
956
+ block_time: string;
957
+ /**
958
+ * proposer_address is the address of the requested block
959
+ */
960
+ proposer_address: string;
961
+ /**
962
+ * chain_id is the eip155 chain id parsed from the requested block header
963
+ */
964
+ chain_id: string;
965
+ /**
966
+ * block_max_gas of the traced block
967
+ */
968
+ block_max_gas: string;
969
+ }
970
+ export interface QueryTraceBlockRequestAminoMsg {
971
+ type: "cosmos-sdk/QueryTraceBlockRequest";
972
+ value: QueryTraceBlockRequestAmino;
973
+ }
974
+ /**
975
+ * QueryTraceBlockResponse defines TraceBlock response
976
+ * @name QueryTraceBlockResponse
977
+ * @package cosmos.evm.vm.v1
978
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceBlockResponse
979
+ */
980
+ export interface QueryTraceBlockResponse {
981
+ /**
982
+ * data is the response serialized in bytes
983
+ */
984
+ data: Uint8Array;
985
+ }
986
+ export interface QueryTraceBlockResponseProtoMsg {
987
+ typeUrl: "/cosmos.evm.vm.v1.QueryTraceBlockResponse";
988
+ value: Uint8Array;
989
+ }
990
+ /**
991
+ * QueryTraceBlockResponse defines TraceBlock response
992
+ * @name QueryTraceBlockResponseAmino
993
+ * @package cosmos.evm.vm.v1
994
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceBlockResponse
995
+ */
996
+ export interface QueryTraceBlockResponseAmino {
997
+ /**
998
+ * data is the response serialized in bytes
999
+ */
1000
+ data: string;
1001
+ }
1002
+ export interface QueryTraceBlockResponseAminoMsg {
1003
+ type: "cosmos-sdk/QueryTraceBlockResponse";
1004
+ value: QueryTraceBlockResponseAmino;
1005
+ }
1006
+ /**
1007
+ * QueryBaseFeeRequest defines the request type for querying the EIP1559 base
1008
+ * fee.
1009
+ * @name QueryBaseFeeRequest
1010
+ * @package cosmos.evm.vm.v1
1011
+ * @see proto type: cosmos.evm.vm.v1.QueryBaseFeeRequest
1012
+ */
1013
+ export interface QueryBaseFeeRequest {
1014
+ }
1015
+ export interface QueryBaseFeeRequestProtoMsg {
1016
+ typeUrl: "/cosmos.evm.vm.v1.QueryBaseFeeRequest";
1017
+ value: Uint8Array;
1018
+ }
1019
+ /**
1020
+ * QueryBaseFeeRequest defines the request type for querying the EIP1559 base
1021
+ * fee.
1022
+ * @name QueryBaseFeeRequestAmino
1023
+ * @package cosmos.evm.vm.v1
1024
+ * @see proto type: cosmos.evm.vm.v1.QueryBaseFeeRequest
1025
+ */
1026
+ export interface QueryBaseFeeRequestAmino {
1027
+ }
1028
+ export interface QueryBaseFeeRequestAminoMsg {
1029
+ type: "cosmos-sdk/QueryBaseFeeRequest";
1030
+ value: QueryBaseFeeRequestAmino;
1031
+ }
1032
+ /**
1033
+ * QueryBaseFeeResponse returns the EIP1559 base fee.
1034
+ * @name QueryBaseFeeResponse
1035
+ * @package cosmos.evm.vm.v1
1036
+ * @see proto type: cosmos.evm.vm.v1.QueryBaseFeeResponse
1037
+ */
1038
+ export interface QueryBaseFeeResponse {
1039
+ /**
1040
+ * base_fee is the EIP1559 base fee
1041
+ */
1042
+ baseFee: string;
1043
+ }
1044
+ export interface QueryBaseFeeResponseProtoMsg {
1045
+ typeUrl: "/cosmos.evm.vm.v1.QueryBaseFeeResponse";
1046
+ value: Uint8Array;
1047
+ }
1048
+ /**
1049
+ * QueryBaseFeeResponse returns the EIP1559 base fee.
1050
+ * @name QueryBaseFeeResponseAmino
1051
+ * @package cosmos.evm.vm.v1
1052
+ * @see proto type: cosmos.evm.vm.v1.QueryBaseFeeResponse
1053
+ */
1054
+ export interface QueryBaseFeeResponseAmino {
1055
+ /**
1056
+ * base_fee is the EIP1559 base fee
1057
+ */
1058
+ base_fee: string;
1059
+ }
1060
+ export interface QueryBaseFeeResponseAminoMsg {
1061
+ type: "cosmos-sdk/QueryBaseFeeResponse";
1062
+ value: QueryBaseFeeResponseAmino;
1063
+ }
1064
+ /**
1065
+ * QueryGlobalMinGasPriceRequest defines the request type for querying the
1066
+ * GlobalMinGasPrice
1067
+ * @name QueryGlobalMinGasPriceRequest
1068
+ * @package cosmos.evm.vm.v1
1069
+ * @see proto type: cosmos.evm.vm.v1.QueryGlobalMinGasPriceRequest
1070
+ */
1071
+ export interface QueryGlobalMinGasPriceRequest {
1072
+ }
1073
+ export interface QueryGlobalMinGasPriceRequestProtoMsg {
1074
+ typeUrl: "/cosmos.evm.vm.v1.QueryGlobalMinGasPriceRequest";
1075
+ value: Uint8Array;
1076
+ }
1077
+ /**
1078
+ * QueryGlobalMinGasPriceRequest defines the request type for querying the
1079
+ * GlobalMinGasPrice
1080
+ * @name QueryGlobalMinGasPriceRequestAmino
1081
+ * @package cosmos.evm.vm.v1
1082
+ * @see proto type: cosmos.evm.vm.v1.QueryGlobalMinGasPriceRequest
1083
+ */
1084
+ export interface QueryGlobalMinGasPriceRequestAmino {
1085
+ }
1086
+ export interface QueryGlobalMinGasPriceRequestAminoMsg {
1087
+ type: "cosmos-sdk/QueryGlobalMinGasPriceRequest";
1088
+ value: QueryGlobalMinGasPriceRequestAmino;
1089
+ }
1090
+ /**
1091
+ * QueryGlobalMinGasPriceResponse returns the GlobalMinGasPrice
1092
+ * @name QueryGlobalMinGasPriceResponse
1093
+ * @package cosmos.evm.vm.v1
1094
+ * @see proto type: cosmos.evm.vm.v1.QueryGlobalMinGasPriceResponse
1095
+ */
1096
+ export interface QueryGlobalMinGasPriceResponse {
1097
+ /**
1098
+ * min_gas_price is the feemarket's min_gas_price
1099
+ */
1100
+ minGasPrice: string;
1101
+ }
1102
+ export interface QueryGlobalMinGasPriceResponseProtoMsg {
1103
+ typeUrl: "/cosmos.evm.vm.v1.QueryGlobalMinGasPriceResponse";
1104
+ value: Uint8Array;
1105
+ }
1106
+ /**
1107
+ * QueryGlobalMinGasPriceResponse returns the GlobalMinGasPrice
1108
+ * @name QueryGlobalMinGasPriceResponseAmino
1109
+ * @package cosmos.evm.vm.v1
1110
+ * @see proto type: cosmos.evm.vm.v1.QueryGlobalMinGasPriceResponse
1111
+ */
1112
+ export interface QueryGlobalMinGasPriceResponseAmino {
1113
+ /**
1114
+ * min_gas_price is the feemarket's min_gas_price
1115
+ */
1116
+ min_gas_price: string;
1117
+ }
1118
+ export interface QueryGlobalMinGasPriceResponseAminoMsg {
1119
+ type: "cosmos-sdk/QueryGlobalMinGasPriceResponse";
1120
+ value: QueryGlobalMinGasPriceResponseAmino;
1121
+ }
1122
+ /**
1123
+ * QueryConfigRequest defines the request type for querying the config
1124
+ * @name QueryConfigRequest
1125
+ * @package cosmos.evm.vm.v1
1126
+ * @see proto type: cosmos.evm.vm.v1.QueryConfigRequest
1127
+ */
1128
+ export declare const QueryConfigRequest: {
1129
+ typeUrl: string;
1130
+ aminoType: string;
1131
+ is(o: any): o is QueryConfigRequest;
1132
+ isAmino(o: any): o is QueryConfigRequestAmino;
1133
+ encode(_: QueryConfigRequest, writer?: BinaryWriter): BinaryWriter;
1134
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryConfigRequest;
1135
+ fromPartial(_: DeepPartial<QueryConfigRequest>): QueryConfigRequest;
1136
+ fromAmino(_: QueryConfigRequestAmino): QueryConfigRequest;
1137
+ toAmino(_: QueryConfigRequest): QueryConfigRequestAmino;
1138
+ fromAminoMsg(object: QueryConfigRequestAminoMsg): QueryConfigRequest;
1139
+ toAminoMsg(message: QueryConfigRequest): QueryConfigRequestAminoMsg;
1140
+ fromProtoMsg(message: QueryConfigRequestProtoMsg): QueryConfigRequest;
1141
+ toProto(message: QueryConfigRequest): Uint8Array;
1142
+ toProtoMsg(message: QueryConfigRequest): QueryConfigRequestProtoMsg;
1143
+ registerTypeUrl(): void;
1144
+ };
1145
+ /**
1146
+ * QueryConfigResponse returns the EVM config.
1147
+ * @name QueryConfigResponse
1148
+ * @package cosmos.evm.vm.v1
1149
+ * @see proto type: cosmos.evm.vm.v1.QueryConfigResponse
1150
+ */
1151
+ export declare const QueryConfigResponse: {
1152
+ typeUrl: string;
1153
+ aminoType: string;
1154
+ is(o: any): o is QueryConfigResponse;
1155
+ isAmino(o: any): o is QueryConfigResponseAmino;
1156
+ encode(message: QueryConfigResponse, writer?: BinaryWriter): BinaryWriter;
1157
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryConfigResponse;
1158
+ fromPartial(object: DeepPartial<QueryConfigResponse>): QueryConfigResponse;
1159
+ fromAmino(object: QueryConfigResponseAmino): QueryConfigResponse;
1160
+ toAmino(message: QueryConfigResponse): QueryConfigResponseAmino;
1161
+ fromAminoMsg(object: QueryConfigResponseAminoMsg): QueryConfigResponse;
1162
+ toAminoMsg(message: QueryConfigResponse): QueryConfigResponseAminoMsg;
1163
+ fromProtoMsg(message: QueryConfigResponseProtoMsg): QueryConfigResponse;
1164
+ toProto(message: QueryConfigResponse): Uint8Array;
1165
+ toProtoMsg(message: QueryConfigResponse): QueryConfigResponseProtoMsg;
1166
+ registerTypeUrl(): void;
1167
+ };
1168
+ /**
1169
+ * QueryAccountRequest is the request type for the Query/Account RPC method.
1170
+ * @name QueryAccountRequest
1171
+ * @package cosmos.evm.vm.v1
1172
+ * @see proto type: cosmos.evm.vm.v1.QueryAccountRequest
1173
+ */
1174
+ export declare const QueryAccountRequest: {
1175
+ typeUrl: string;
1176
+ aminoType: string;
1177
+ is(o: any): o is QueryAccountRequest;
1178
+ isAmino(o: any): o is QueryAccountRequestAmino;
1179
+ encode(message: QueryAccountRequest, writer?: BinaryWriter): BinaryWriter;
1180
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountRequest;
1181
+ fromPartial(object: DeepPartial<QueryAccountRequest>): QueryAccountRequest;
1182
+ fromAmino(object: QueryAccountRequestAmino): QueryAccountRequest;
1183
+ toAmino(message: QueryAccountRequest): QueryAccountRequestAmino;
1184
+ fromAminoMsg(object: QueryAccountRequestAminoMsg): QueryAccountRequest;
1185
+ toAminoMsg(message: QueryAccountRequest): QueryAccountRequestAminoMsg;
1186
+ fromProtoMsg(message: QueryAccountRequestProtoMsg): QueryAccountRequest;
1187
+ toProto(message: QueryAccountRequest): Uint8Array;
1188
+ toProtoMsg(message: QueryAccountRequest): QueryAccountRequestProtoMsg;
1189
+ registerTypeUrl(): void;
1190
+ };
1191
+ /**
1192
+ * QueryAccountResponse is the response type for the Query/Account RPC method.
1193
+ * @name QueryAccountResponse
1194
+ * @package cosmos.evm.vm.v1
1195
+ * @see proto type: cosmos.evm.vm.v1.QueryAccountResponse
1196
+ */
1197
+ export declare const QueryAccountResponse: {
1198
+ typeUrl: string;
1199
+ aminoType: string;
1200
+ is(o: any): o is QueryAccountResponse;
1201
+ isAmino(o: any): o is QueryAccountResponseAmino;
1202
+ encode(message: QueryAccountResponse, writer?: BinaryWriter): BinaryWriter;
1203
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryAccountResponse;
1204
+ fromPartial(object: DeepPartial<QueryAccountResponse>): QueryAccountResponse;
1205
+ fromAmino(object: QueryAccountResponseAmino): QueryAccountResponse;
1206
+ toAmino(message: QueryAccountResponse): QueryAccountResponseAmino;
1207
+ fromAminoMsg(object: QueryAccountResponseAminoMsg): QueryAccountResponse;
1208
+ toAminoMsg(message: QueryAccountResponse): QueryAccountResponseAminoMsg;
1209
+ fromProtoMsg(message: QueryAccountResponseProtoMsg): QueryAccountResponse;
1210
+ toProto(message: QueryAccountResponse): Uint8Array;
1211
+ toProtoMsg(message: QueryAccountResponse): QueryAccountResponseProtoMsg;
1212
+ registerTypeUrl(): void;
1213
+ };
1214
+ /**
1215
+ * QueryCosmosAccountRequest is the request type for the Query/CosmosAccount RPC
1216
+ * method.
1217
+ * @name QueryCosmosAccountRequest
1218
+ * @package cosmos.evm.vm.v1
1219
+ * @see proto type: cosmos.evm.vm.v1.QueryCosmosAccountRequest
1220
+ */
1221
+ export declare const QueryCosmosAccountRequest: {
1222
+ typeUrl: string;
1223
+ aminoType: string;
1224
+ is(o: any): o is QueryCosmosAccountRequest;
1225
+ isAmino(o: any): o is QueryCosmosAccountRequestAmino;
1226
+ encode(message: QueryCosmosAccountRequest, writer?: BinaryWriter): BinaryWriter;
1227
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryCosmosAccountRequest;
1228
+ fromPartial(object: DeepPartial<QueryCosmosAccountRequest>): QueryCosmosAccountRequest;
1229
+ fromAmino(object: QueryCosmosAccountRequestAmino): QueryCosmosAccountRequest;
1230
+ toAmino(message: QueryCosmosAccountRequest): QueryCosmosAccountRequestAmino;
1231
+ fromAminoMsg(object: QueryCosmosAccountRequestAminoMsg): QueryCosmosAccountRequest;
1232
+ toAminoMsg(message: QueryCosmosAccountRequest): QueryCosmosAccountRequestAminoMsg;
1233
+ fromProtoMsg(message: QueryCosmosAccountRequestProtoMsg): QueryCosmosAccountRequest;
1234
+ toProto(message: QueryCosmosAccountRequest): Uint8Array;
1235
+ toProtoMsg(message: QueryCosmosAccountRequest): QueryCosmosAccountRequestProtoMsg;
1236
+ registerTypeUrl(): void;
1237
+ };
1238
+ /**
1239
+ * QueryCosmosAccountResponse is the response type for the Query/CosmosAccount
1240
+ * RPC method.
1241
+ * @name QueryCosmosAccountResponse
1242
+ * @package cosmos.evm.vm.v1
1243
+ * @see proto type: cosmos.evm.vm.v1.QueryCosmosAccountResponse
1244
+ */
1245
+ export declare const QueryCosmosAccountResponse: {
1246
+ typeUrl: string;
1247
+ aminoType: string;
1248
+ is(o: any): o is QueryCosmosAccountResponse;
1249
+ isAmino(o: any): o is QueryCosmosAccountResponseAmino;
1250
+ encode(message: QueryCosmosAccountResponse, writer?: BinaryWriter): BinaryWriter;
1251
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryCosmosAccountResponse;
1252
+ fromPartial(object: DeepPartial<QueryCosmosAccountResponse>): QueryCosmosAccountResponse;
1253
+ fromAmino(object: QueryCosmosAccountResponseAmino): QueryCosmosAccountResponse;
1254
+ toAmino(message: QueryCosmosAccountResponse): QueryCosmosAccountResponseAmino;
1255
+ fromAminoMsg(object: QueryCosmosAccountResponseAminoMsg): QueryCosmosAccountResponse;
1256
+ toAminoMsg(message: QueryCosmosAccountResponse): QueryCosmosAccountResponseAminoMsg;
1257
+ fromProtoMsg(message: QueryCosmosAccountResponseProtoMsg): QueryCosmosAccountResponse;
1258
+ toProto(message: QueryCosmosAccountResponse): Uint8Array;
1259
+ toProtoMsg(message: QueryCosmosAccountResponse): QueryCosmosAccountResponseProtoMsg;
1260
+ registerTypeUrl(): void;
1261
+ };
1262
+ /**
1263
+ * QueryValidatorAccountRequest is the request type for the
1264
+ * Query/ValidatorAccount RPC method.
1265
+ * @name QueryValidatorAccountRequest
1266
+ * @package cosmos.evm.vm.v1
1267
+ * @see proto type: cosmos.evm.vm.v1.QueryValidatorAccountRequest
1268
+ */
1269
+ export declare const QueryValidatorAccountRequest: {
1270
+ typeUrl: string;
1271
+ aminoType: string;
1272
+ is(o: any): o is QueryValidatorAccountRequest;
1273
+ isAmino(o: any): o is QueryValidatorAccountRequestAmino;
1274
+ encode(message: QueryValidatorAccountRequest, writer?: BinaryWriter): BinaryWriter;
1275
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorAccountRequest;
1276
+ fromPartial(object: DeepPartial<QueryValidatorAccountRequest>): QueryValidatorAccountRequest;
1277
+ fromAmino(object: QueryValidatorAccountRequestAmino): QueryValidatorAccountRequest;
1278
+ toAmino(message: QueryValidatorAccountRequest): QueryValidatorAccountRequestAmino;
1279
+ fromAminoMsg(object: QueryValidatorAccountRequestAminoMsg): QueryValidatorAccountRequest;
1280
+ toAminoMsg(message: QueryValidatorAccountRequest): QueryValidatorAccountRequestAminoMsg;
1281
+ fromProtoMsg(message: QueryValidatorAccountRequestProtoMsg): QueryValidatorAccountRequest;
1282
+ toProto(message: QueryValidatorAccountRequest): Uint8Array;
1283
+ toProtoMsg(message: QueryValidatorAccountRequest): QueryValidatorAccountRequestProtoMsg;
1284
+ registerTypeUrl(): void;
1285
+ };
1286
+ /**
1287
+ * QueryValidatorAccountResponse is the response type for the
1288
+ * Query/ValidatorAccount RPC method.
1289
+ * @name QueryValidatorAccountResponse
1290
+ * @package cosmos.evm.vm.v1
1291
+ * @see proto type: cosmos.evm.vm.v1.QueryValidatorAccountResponse
1292
+ */
1293
+ export declare const QueryValidatorAccountResponse: {
1294
+ typeUrl: string;
1295
+ aminoType: string;
1296
+ is(o: any): o is QueryValidatorAccountResponse;
1297
+ isAmino(o: any): o is QueryValidatorAccountResponseAmino;
1298
+ encode(message: QueryValidatorAccountResponse, writer?: BinaryWriter): BinaryWriter;
1299
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryValidatorAccountResponse;
1300
+ fromPartial(object: DeepPartial<QueryValidatorAccountResponse>): QueryValidatorAccountResponse;
1301
+ fromAmino(object: QueryValidatorAccountResponseAmino): QueryValidatorAccountResponse;
1302
+ toAmino(message: QueryValidatorAccountResponse): QueryValidatorAccountResponseAmino;
1303
+ fromAminoMsg(object: QueryValidatorAccountResponseAminoMsg): QueryValidatorAccountResponse;
1304
+ toAminoMsg(message: QueryValidatorAccountResponse): QueryValidatorAccountResponseAminoMsg;
1305
+ fromProtoMsg(message: QueryValidatorAccountResponseProtoMsg): QueryValidatorAccountResponse;
1306
+ toProto(message: QueryValidatorAccountResponse): Uint8Array;
1307
+ toProtoMsg(message: QueryValidatorAccountResponse): QueryValidatorAccountResponseProtoMsg;
1308
+ registerTypeUrl(): void;
1309
+ };
1310
+ /**
1311
+ * QueryBalanceRequest is the request type for the Query/Balance RPC method.
1312
+ * @name QueryBalanceRequest
1313
+ * @package cosmos.evm.vm.v1
1314
+ * @see proto type: cosmos.evm.vm.v1.QueryBalanceRequest
1315
+ */
1316
+ export declare const QueryBalanceRequest: {
1317
+ typeUrl: string;
1318
+ aminoType: string;
1319
+ is(o: any): o is QueryBalanceRequest;
1320
+ isAmino(o: any): o is QueryBalanceRequestAmino;
1321
+ encode(message: QueryBalanceRequest, writer?: BinaryWriter): BinaryWriter;
1322
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceRequest;
1323
+ fromPartial(object: DeepPartial<QueryBalanceRequest>): QueryBalanceRequest;
1324
+ fromAmino(object: QueryBalanceRequestAmino): QueryBalanceRequest;
1325
+ toAmino(message: QueryBalanceRequest): QueryBalanceRequestAmino;
1326
+ fromAminoMsg(object: QueryBalanceRequestAminoMsg): QueryBalanceRequest;
1327
+ toAminoMsg(message: QueryBalanceRequest): QueryBalanceRequestAminoMsg;
1328
+ fromProtoMsg(message: QueryBalanceRequestProtoMsg): QueryBalanceRequest;
1329
+ toProto(message: QueryBalanceRequest): Uint8Array;
1330
+ toProtoMsg(message: QueryBalanceRequest): QueryBalanceRequestProtoMsg;
1331
+ registerTypeUrl(): void;
1332
+ };
1333
+ /**
1334
+ * QueryBalanceResponse is the response type for the Query/Balance RPC method.
1335
+ * @name QueryBalanceResponse
1336
+ * @package cosmos.evm.vm.v1
1337
+ * @see proto type: cosmos.evm.vm.v1.QueryBalanceResponse
1338
+ */
1339
+ export declare const QueryBalanceResponse: {
1340
+ typeUrl: string;
1341
+ aminoType: string;
1342
+ is(o: any): o is QueryBalanceResponse;
1343
+ isAmino(o: any): o is QueryBalanceResponseAmino;
1344
+ encode(message: QueryBalanceResponse, writer?: BinaryWriter): BinaryWriter;
1345
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryBalanceResponse;
1346
+ fromPartial(object: DeepPartial<QueryBalanceResponse>): QueryBalanceResponse;
1347
+ fromAmino(object: QueryBalanceResponseAmino): QueryBalanceResponse;
1348
+ toAmino(message: QueryBalanceResponse): QueryBalanceResponseAmino;
1349
+ fromAminoMsg(object: QueryBalanceResponseAminoMsg): QueryBalanceResponse;
1350
+ toAminoMsg(message: QueryBalanceResponse): QueryBalanceResponseAminoMsg;
1351
+ fromProtoMsg(message: QueryBalanceResponseProtoMsg): QueryBalanceResponse;
1352
+ toProto(message: QueryBalanceResponse): Uint8Array;
1353
+ toProtoMsg(message: QueryBalanceResponse): QueryBalanceResponseProtoMsg;
1354
+ registerTypeUrl(): void;
1355
+ };
1356
+ /**
1357
+ * QueryStorageRequest is the request type for the Query/Storage RPC method.
1358
+ * @name QueryStorageRequest
1359
+ * @package cosmos.evm.vm.v1
1360
+ * @see proto type: cosmos.evm.vm.v1.QueryStorageRequest
1361
+ */
1362
+ export declare const QueryStorageRequest: {
1363
+ typeUrl: string;
1364
+ aminoType: string;
1365
+ is(o: any): o is QueryStorageRequest;
1366
+ isAmino(o: any): o is QueryStorageRequestAmino;
1367
+ encode(message: QueryStorageRequest, writer?: BinaryWriter): BinaryWriter;
1368
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryStorageRequest;
1369
+ fromPartial(object: DeepPartial<QueryStorageRequest>): QueryStorageRequest;
1370
+ fromAmino(object: QueryStorageRequestAmino): QueryStorageRequest;
1371
+ toAmino(message: QueryStorageRequest): QueryStorageRequestAmino;
1372
+ fromAminoMsg(object: QueryStorageRequestAminoMsg): QueryStorageRequest;
1373
+ toAminoMsg(message: QueryStorageRequest): QueryStorageRequestAminoMsg;
1374
+ fromProtoMsg(message: QueryStorageRequestProtoMsg): QueryStorageRequest;
1375
+ toProto(message: QueryStorageRequest): Uint8Array;
1376
+ toProtoMsg(message: QueryStorageRequest): QueryStorageRequestProtoMsg;
1377
+ registerTypeUrl(): void;
1378
+ };
1379
+ /**
1380
+ * QueryStorageResponse is the response type for the Query/Storage RPC
1381
+ * method.
1382
+ * @name QueryStorageResponse
1383
+ * @package cosmos.evm.vm.v1
1384
+ * @see proto type: cosmos.evm.vm.v1.QueryStorageResponse
1385
+ */
1386
+ export declare const QueryStorageResponse: {
1387
+ typeUrl: string;
1388
+ aminoType: string;
1389
+ is(o: any): o is QueryStorageResponse;
1390
+ isAmino(o: any): o is QueryStorageResponseAmino;
1391
+ encode(message: QueryStorageResponse, writer?: BinaryWriter): BinaryWriter;
1392
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryStorageResponse;
1393
+ fromPartial(object: DeepPartial<QueryStorageResponse>): QueryStorageResponse;
1394
+ fromAmino(object: QueryStorageResponseAmino): QueryStorageResponse;
1395
+ toAmino(message: QueryStorageResponse): QueryStorageResponseAmino;
1396
+ fromAminoMsg(object: QueryStorageResponseAminoMsg): QueryStorageResponse;
1397
+ toAminoMsg(message: QueryStorageResponse): QueryStorageResponseAminoMsg;
1398
+ fromProtoMsg(message: QueryStorageResponseProtoMsg): QueryStorageResponse;
1399
+ toProto(message: QueryStorageResponse): Uint8Array;
1400
+ toProtoMsg(message: QueryStorageResponse): QueryStorageResponseProtoMsg;
1401
+ registerTypeUrl(): void;
1402
+ };
1403
+ /**
1404
+ * QueryCodeRequest is the request type for the Query/Code RPC method.
1405
+ * @name QueryCodeRequest
1406
+ * @package cosmos.evm.vm.v1
1407
+ * @see proto type: cosmos.evm.vm.v1.QueryCodeRequest
1408
+ */
1409
+ export declare const QueryCodeRequest: {
1410
+ typeUrl: string;
1411
+ aminoType: string;
1412
+ is(o: any): o is QueryCodeRequest;
1413
+ isAmino(o: any): o is QueryCodeRequestAmino;
1414
+ encode(message: QueryCodeRequest, writer?: BinaryWriter): BinaryWriter;
1415
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryCodeRequest;
1416
+ fromPartial(object: DeepPartial<QueryCodeRequest>): QueryCodeRequest;
1417
+ fromAmino(object: QueryCodeRequestAmino): QueryCodeRequest;
1418
+ toAmino(message: QueryCodeRequest): QueryCodeRequestAmino;
1419
+ fromAminoMsg(object: QueryCodeRequestAminoMsg): QueryCodeRequest;
1420
+ toAminoMsg(message: QueryCodeRequest): QueryCodeRequestAminoMsg;
1421
+ fromProtoMsg(message: QueryCodeRequestProtoMsg): QueryCodeRequest;
1422
+ toProto(message: QueryCodeRequest): Uint8Array;
1423
+ toProtoMsg(message: QueryCodeRequest): QueryCodeRequestProtoMsg;
1424
+ registerTypeUrl(): void;
1425
+ };
1426
+ /**
1427
+ * QueryCodeResponse is the response type for the Query/Code RPC
1428
+ * method.
1429
+ * @name QueryCodeResponse
1430
+ * @package cosmos.evm.vm.v1
1431
+ * @see proto type: cosmos.evm.vm.v1.QueryCodeResponse
1432
+ */
1433
+ export declare const QueryCodeResponse: {
1434
+ typeUrl: string;
1435
+ aminoType: string;
1436
+ is(o: any): o is QueryCodeResponse;
1437
+ isAmino(o: any): o is QueryCodeResponseAmino;
1438
+ encode(message: QueryCodeResponse, writer?: BinaryWriter): BinaryWriter;
1439
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryCodeResponse;
1440
+ fromPartial(object: DeepPartial<QueryCodeResponse>): QueryCodeResponse;
1441
+ fromAmino(object: QueryCodeResponseAmino): QueryCodeResponse;
1442
+ toAmino(message: QueryCodeResponse): QueryCodeResponseAmino;
1443
+ fromAminoMsg(object: QueryCodeResponseAminoMsg): QueryCodeResponse;
1444
+ toAminoMsg(message: QueryCodeResponse): QueryCodeResponseAminoMsg;
1445
+ fromProtoMsg(message: QueryCodeResponseProtoMsg): QueryCodeResponse;
1446
+ toProto(message: QueryCodeResponse): Uint8Array;
1447
+ toProtoMsg(message: QueryCodeResponse): QueryCodeResponseProtoMsg;
1448
+ registerTypeUrl(): void;
1449
+ };
1450
+ /**
1451
+ * QueryTxLogsRequest is the request type for the Query/TxLogs RPC method.
1452
+ * @name QueryTxLogsRequest
1453
+ * @package cosmos.evm.vm.v1
1454
+ * @see proto type: cosmos.evm.vm.v1.QueryTxLogsRequest
1455
+ */
1456
+ export declare const QueryTxLogsRequest: {
1457
+ typeUrl: string;
1458
+ aminoType: string;
1459
+ is(o: any): o is QueryTxLogsRequest;
1460
+ isAmino(o: any): o is QueryTxLogsRequestAmino;
1461
+ encode(message: QueryTxLogsRequest, writer?: BinaryWriter): BinaryWriter;
1462
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryTxLogsRequest;
1463
+ fromPartial(object: DeepPartial<QueryTxLogsRequest>): QueryTxLogsRequest;
1464
+ fromAmino(object: QueryTxLogsRequestAmino): QueryTxLogsRequest;
1465
+ toAmino(message: QueryTxLogsRequest): QueryTxLogsRequestAmino;
1466
+ fromAminoMsg(object: QueryTxLogsRequestAminoMsg): QueryTxLogsRequest;
1467
+ toAminoMsg(message: QueryTxLogsRequest): QueryTxLogsRequestAminoMsg;
1468
+ fromProtoMsg(message: QueryTxLogsRequestProtoMsg): QueryTxLogsRequest;
1469
+ toProto(message: QueryTxLogsRequest): Uint8Array;
1470
+ toProtoMsg(message: QueryTxLogsRequest): QueryTxLogsRequestProtoMsg;
1471
+ registerTypeUrl(): void;
1472
+ };
1473
+ /**
1474
+ * QueryTxLogsResponse is the response type for the Query/TxLogs RPC method.
1475
+ * @name QueryTxLogsResponse
1476
+ * @package cosmos.evm.vm.v1
1477
+ * @see proto type: cosmos.evm.vm.v1.QueryTxLogsResponse
1478
+ */
1479
+ export declare const QueryTxLogsResponse: {
1480
+ typeUrl: string;
1481
+ aminoType: string;
1482
+ is(o: any): o is QueryTxLogsResponse;
1483
+ isAmino(o: any): o is QueryTxLogsResponseAmino;
1484
+ encode(message: QueryTxLogsResponse, writer?: BinaryWriter): BinaryWriter;
1485
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryTxLogsResponse;
1486
+ fromPartial(object: DeepPartial<QueryTxLogsResponse>): QueryTxLogsResponse;
1487
+ fromAmino(object: QueryTxLogsResponseAmino): QueryTxLogsResponse;
1488
+ toAmino(message: QueryTxLogsResponse): QueryTxLogsResponseAmino;
1489
+ fromAminoMsg(object: QueryTxLogsResponseAminoMsg): QueryTxLogsResponse;
1490
+ toAminoMsg(message: QueryTxLogsResponse): QueryTxLogsResponseAminoMsg;
1491
+ fromProtoMsg(message: QueryTxLogsResponseProtoMsg): QueryTxLogsResponse;
1492
+ toProto(message: QueryTxLogsResponse): Uint8Array;
1493
+ toProtoMsg(message: QueryTxLogsResponse): QueryTxLogsResponseProtoMsg;
1494
+ registerTypeUrl(): void;
1495
+ };
1496
+ /**
1497
+ * QueryParamsRequest defines the request type for querying x/vm parameters.
1498
+ * @name QueryParamsRequest
1499
+ * @package cosmos.evm.vm.v1
1500
+ * @see proto type: cosmos.evm.vm.v1.QueryParamsRequest
1501
+ */
1502
+ export declare const QueryParamsRequest: {
1503
+ typeUrl: string;
1504
+ aminoType: string;
1505
+ is(o: any): o is QueryParamsRequest;
1506
+ isAmino(o: any): o is QueryParamsRequestAmino;
1507
+ encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter;
1508
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest;
1509
+ fromPartial(_: DeepPartial<QueryParamsRequest>): QueryParamsRequest;
1510
+ fromAmino(_: QueryParamsRequestAmino): QueryParamsRequest;
1511
+ toAmino(_: QueryParamsRequest): QueryParamsRequestAmino;
1512
+ fromAminoMsg(object: QueryParamsRequestAminoMsg): QueryParamsRequest;
1513
+ toAminoMsg(message: QueryParamsRequest): QueryParamsRequestAminoMsg;
1514
+ fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest;
1515
+ toProto(message: QueryParamsRequest): Uint8Array;
1516
+ toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
1517
+ registerTypeUrl(): void;
1518
+ };
1519
+ /**
1520
+ * QueryParamsResponse defines the response type for querying x/vm parameters.
1521
+ * @name QueryParamsResponse
1522
+ * @package cosmos.evm.vm.v1
1523
+ * @see proto type: cosmos.evm.vm.v1.QueryParamsResponse
1524
+ */
1525
+ export declare const QueryParamsResponse: {
1526
+ typeUrl: string;
1527
+ aminoType: string;
1528
+ is(o: any): o is QueryParamsResponse;
1529
+ isAmino(o: any): o is QueryParamsResponseAmino;
1530
+ encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter;
1531
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse;
1532
+ fromPartial(object: DeepPartial<QueryParamsResponse>): QueryParamsResponse;
1533
+ fromAmino(object: QueryParamsResponseAmino): QueryParamsResponse;
1534
+ toAmino(message: QueryParamsResponse): QueryParamsResponseAmino;
1535
+ fromAminoMsg(object: QueryParamsResponseAminoMsg): QueryParamsResponse;
1536
+ toAminoMsg(message: QueryParamsResponse): QueryParamsResponseAminoMsg;
1537
+ fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse;
1538
+ toProto(message: QueryParamsResponse): Uint8Array;
1539
+ toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
1540
+ registerTypeUrl(): void;
1541
+ };
1542
+ /**
1543
+ * EthCallRequest defines EthCall request
1544
+ * @name EthCallRequest
1545
+ * @package cosmos.evm.vm.v1
1546
+ * @see proto type: cosmos.evm.vm.v1.EthCallRequest
1547
+ */
1548
+ export declare const EthCallRequest: {
1549
+ typeUrl: string;
1550
+ aminoType: string;
1551
+ is(o: any): o is EthCallRequest;
1552
+ isAmino(o: any): o is EthCallRequestAmino;
1553
+ encode(message: EthCallRequest, writer?: BinaryWriter): BinaryWriter;
1554
+ decode(input: BinaryReader | Uint8Array, length?: number): EthCallRequest;
1555
+ fromPartial(object: DeepPartial<EthCallRequest>): EthCallRequest;
1556
+ fromAmino(object: EthCallRequestAmino): EthCallRequest;
1557
+ toAmino(message: EthCallRequest): EthCallRequestAmino;
1558
+ fromAminoMsg(object: EthCallRequestAminoMsg): EthCallRequest;
1559
+ toAminoMsg(message: EthCallRequest): EthCallRequestAminoMsg;
1560
+ fromProtoMsg(message: EthCallRequestProtoMsg): EthCallRequest;
1561
+ toProto(message: EthCallRequest): Uint8Array;
1562
+ toProtoMsg(message: EthCallRequest): EthCallRequestProtoMsg;
1563
+ registerTypeUrl(): void;
1564
+ };
1565
+ /**
1566
+ * EstimateGasResponse defines EstimateGas response
1567
+ * @name EstimateGasResponse
1568
+ * @package cosmos.evm.vm.v1
1569
+ * @see proto type: cosmos.evm.vm.v1.EstimateGasResponse
1570
+ */
1571
+ export declare const EstimateGasResponse: {
1572
+ typeUrl: string;
1573
+ aminoType: string;
1574
+ is(o: any): o is EstimateGasResponse;
1575
+ isAmino(o: any): o is EstimateGasResponseAmino;
1576
+ encode(message: EstimateGasResponse, writer?: BinaryWriter): BinaryWriter;
1577
+ decode(input: BinaryReader | Uint8Array, length?: number): EstimateGasResponse;
1578
+ fromPartial(object: DeepPartial<EstimateGasResponse>): EstimateGasResponse;
1579
+ fromAmino(object: EstimateGasResponseAmino): EstimateGasResponse;
1580
+ toAmino(message: EstimateGasResponse): EstimateGasResponseAmino;
1581
+ fromAminoMsg(object: EstimateGasResponseAminoMsg): EstimateGasResponse;
1582
+ toAminoMsg(message: EstimateGasResponse): EstimateGasResponseAminoMsg;
1583
+ fromProtoMsg(message: EstimateGasResponseProtoMsg): EstimateGasResponse;
1584
+ toProto(message: EstimateGasResponse): Uint8Array;
1585
+ toProtoMsg(message: EstimateGasResponse): EstimateGasResponseProtoMsg;
1586
+ registerTypeUrl(): void;
1587
+ };
1588
+ /**
1589
+ * QueryTraceTxRequest defines TraceTx request
1590
+ * @name QueryTraceTxRequest
1591
+ * @package cosmos.evm.vm.v1
1592
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceTxRequest
1593
+ */
1594
+ export declare const QueryTraceTxRequest: {
1595
+ typeUrl: string;
1596
+ aminoType: string;
1597
+ is(o: any): o is QueryTraceTxRequest;
1598
+ isAmino(o: any): o is QueryTraceTxRequestAmino;
1599
+ encode(message: QueryTraceTxRequest, writer?: BinaryWriter): BinaryWriter;
1600
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryTraceTxRequest;
1601
+ fromPartial(object: DeepPartial<QueryTraceTxRequest>): QueryTraceTxRequest;
1602
+ fromAmino(object: QueryTraceTxRequestAmino): QueryTraceTxRequest;
1603
+ toAmino(message: QueryTraceTxRequest): QueryTraceTxRequestAmino;
1604
+ fromAminoMsg(object: QueryTraceTxRequestAminoMsg): QueryTraceTxRequest;
1605
+ toAminoMsg(message: QueryTraceTxRequest): QueryTraceTxRequestAminoMsg;
1606
+ fromProtoMsg(message: QueryTraceTxRequestProtoMsg): QueryTraceTxRequest;
1607
+ toProto(message: QueryTraceTxRequest): Uint8Array;
1608
+ toProtoMsg(message: QueryTraceTxRequest): QueryTraceTxRequestProtoMsg;
1609
+ registerTypeUrl(): void;
1610
+ };
1611
+ /**
1612
+ * QueryTraceTxResponse defines TraceTx response
1613
+ * @name QueryTraceTxResponse
1614
+ * @package cosmos.evm.vm.v1
1615
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceTxResponse
1616
+ */
1617
+ export declare const QueryTraceTxResponse: {
1618
+ typeUrl: string;
1619
+ aminoType: string;
1620
+ is(o: any): o is QueryTraceTxResponse;
1621
+ isAmino(o: any): o is QueryTraceTxResponseAmino;
1622
+ encode(message: QueryTraceTxResponse, writer?: BinaryWriter): BinaryWriter;
1623
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryTraceTxResponse;
1624
+ fromPartial(object: DeepPartial<QueryTraceTxResponse>): QueryTraceTxResponse;
1625
+ fromAmino(object: QueryTraceTxResponseAmino): QueryTraceTxResponse;
1626
+ toAmino(message: QueryTraceTxResponse): QueryTraceTxResponseAmino;
1627
+ fromAminoMsg(object: QueryTraceTxResponseAminoMsg): QueryTraceTxResponse;
1628
+ toAminoMsg(message: QueryTraceTxResponse): QueryTraceTxResponseAminoMsg;
1629
+ fromProtoMsg(message: QueryTraceTxResponseProtoMsg): QueryTraceTxResponse;
1630
+ toProto(message: QueryTraceTxResponse): Uint8Array;
1631
+ toProtoMsg(message: QueryTraceTxResponse): QueryTraceTxResponseProtoMsg;
1632
+ registerTypeUrl(): void;
1633
+ };
1634
+ /**
1635
+ * QueryTraceBlockRequest defines TraceTx request
1636
+ * @name QueryTraceBlockRequest
1637
+ * @package cosmos.evm.vm.v1
1638
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceBlockRequest
1639
+ */
1640
+ export declare const QueryTraceBlockRequest: {
1641
+ typeUrl: string;
1642
+ aminoType: string;
1643
+ is(o: any): o is QueryTraceBlockRequest;
1644
+ isAmino(o: any): o is QueryTraceBlockRequestAmino;
1645
+ encode(message: QueryTraceBlockRequest, writer?: BinaryWriter): BinaryWriter;
1646
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryTraceBlockRequest;
1647
+ fromPartial(object: DeepPartial<QueryTraceBlockRequest>): QueryTraceBlockRequest;
1648
+ fromAmino(object: QueryTraceBlockRequestAmino): QueryTraceBlockRequest;
1649
+ toAmino(message: QueryTraceBlockRequest): QueryTraceBlockRequestAmino;
1650
+ fromAminoMsg(object: QueryTraceBlockRequestAminoMsg): QueryTraceBlockRequest;
1651
+ toAminoMsg(message: QueryTraceBlockRequest): QueryTraceBlockRequestAminoMsg;
1652
+ fromProtoMsg(message: QueryTraceBlockRequestProtoMsg): QueryTraceBlockRequest;
1653
+ toProto(message: QueryTraceBlockRequest): Uint8Array;
1654
+ toProtoMsg(message: QueryTraceBlockRequest): QueryTraceBlockRequestProtoMsg;
1655
+ registerTypeUrl(): void;
1656
+ };
1657
+ /**
1658
+ * QueryTraceBlockResponse defines TraceBlock response
1659
+ * @name QueryTraceBlockResponse
1660
+ * @package cosmos.evm.vm.v1
1661
+ * @see proto type: cosmos.evm.vm.v1.QueryTraceBlockResponse
1662
+ */
1663
+ export declare const QueryTraceBlockResponse: {
1664
+ typeUrl: string;
1665
+ aminoType: string;
1666
+ is(o: any): o is QueryTraceBlockResponse;
1667
+ isAmino(o: any): o is QueryTraceBlockResponseAmino;
1668
+ encode(message: QueryTraceBlockResponse, writer?: BinaryWriter): BinaryWriter;
1669
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryTraceBlockResponse;
1670
+ fromPartial(object: DeepPartial<QueryTraceBlockResponse>): QueryTraceBlockResponse;
1671
+ fromAmino(object: QueryTraceBlockResponseAmino): QueryTraceBlockResponse;
1672
+ toAmino(message: QueryTraceBlockResponse): QueryTraceBlockResponseAmino;
1673
+ fromAminoMsg(object: QueryTraceBlockResponseAminoMsg): QueryTraceBlockResponse;
1674
+ toAminoMsg(message: QueryTraceBlockResponse): QueryTraceBlockResponseAminoMsg;
1675
+ fromProtoMsg(message: QueryTraceBlockResponseProtoMsg): QueryTraceBlockResponse;
1676
+ toProto(message: QueryTraceBlockResponse): Uint8Array;
1677
+ toProtoMsg(message: QueryTraceBlockResponse): QueryTraceBlockResponseProtoMsg;
1678
+ registerTypeUrl(): void;
1679
+ };
1680
+ /**
1681
+ * QueryBaseFeeRequest defines the request type for querying the EIP1559 base
1682
+ * fee.
1683
+ * @name QueryBaseFeeRequest
1684
+ * @package cosmos.evm.vm.v1
1685
+ * @see proto type: cosmos.evm.vm.v1.QueryBaseFeeRequest
1686
+ */
1687
+ export declare const QueryBaseFeeRequest: {
1688
+ typeUrl: string;
1689
+ aminoType: string;
1690
+ is(o: any): o is QueryBaseFeeRequest;
1691
+ isAmino(o: any): o is QueryBaseFeeRequestAmino;
1692
+ encode(_: QueryBaseFeeRequest, writer?: BinaryWriter): BinaryWriter;
1693
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryBaseFeeRequest;
1694
+ fromPartial(_: DeepPartial<QueryBaseFeeRequest>): QueryBaseFeeRequest;
1695
+ fromAmino(_: QueryBaseFeeRequestAmino): QueryBaseFeeRequest;
1696
+ toAmino(_: QueryBaseFeeRequest): QueryBaseFeeRequestAmino;
1697
+ fromAminoMsg(object: QueryBaseFeeRequestAminoMsg): QueryBaseFeeRequest;
1698
+ toAminoMsg(message: QueryBaseFeeRequest): QueryBaseFeeRequestAminoMsg;
1699
+ fromProtoMsg(message: QueryBaseFeeRequestProtoMsg): QueryBaseFeeRequest;
1700
+ toProto(message: QueryBaseFeeRequest): Uint8Array;
1701
+ toProtoMsg(message: QueryBaseFeeRequest): QueryBaseFeeRequestProtoMsg;
1702
+ registerTypeUrl(): void;
1703
+ };
1704
+ /**
1705
+ * QueryBaseFeeResponse returns the EIP1559 base fee.
1706
+ * @name QueryBaseFeeResponse
1707
+ * @package cosmos.evm.vm.v1
1708
+ * @see proto type: cosmos.evm.vm.v1.QueryBaseFeeResponse
1709
+ */
1710
+ export declare const QueryBaseFeeResponse: {
1711
+ typeUrl: string;
1712
+ aminoType: string;
1713
+ is(o: any): o is QueryBaseFeeResponse;
1714
+ isAmino(o: any): o is QueryBaseFeeResponseAmino;
1715
+ encode(message: QueryBaseFeeResponse, writer?: BinaryWriter): BinaryWriter;
1716
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryBaseFeeResponse;
1717
+ fromPartial(object: DeepPartial<QueryBaseFeeResponse>): QueryBaseFeeResponse;
1718
+ fromAmino(object: QueryBaseFeeResponseAmino): QueryBaseFeeResponse;
1719
+ toAmino(message: QueryBaseFeeResponse): QueryBaseFeeResponseAmino;
1720
+ fromAminoMsg(object: QueryBaseFeeResponseAminoMsg): QueryBaseFeeResponse;
1721
+ toAminoMsg(message: QueryBaseFeeResponse): QueryBaseFeeResponseAminoMsg;
1722
+ fromProtoMsg(message: QueryBaseFeeResponseProtoMsg): QueryBaseFeeResponse;
1723
+ toProto(message: QueryBaseFeeResponse): Uint8Array;
1724
+ toProtoMsg(message: QueryBaseFeeResponse): QueryBaseFeeResponseProtoMsg;
1725
+ registerTypeUrl(): void;
1726
+ };
1727
+ /**
1728
+ * QueryGlobalMinGasPriceRequest defines the request type for querying the
1729
+ * GlobalMinGasPrice
1730
+ * @name QueryGlobalMinGasPriceRequest
1731
+ * @package cosmos.evm.vm.v1
1732
+ * @see proto type: cosmos.evm.vm.v1.QueryGlobalMinGasPriceRequest
1733
+ */
1734
+ export declare const QueryGlobalMinGasPriceRequest: {
1735
+ typeUrl: string;
1736
+ aminoType: string;
1737
+ is(o: any): o is QueryGlobalMinGasPriceRequest;
1738
+ isAmino(o: any): o is QueryGlobalMinGasPriceRequestAmino;
1739
+ encode(_: QueryGlobalMinGasPriceRequest, writer?: BinaryWriter): BinaryWriter;
1740
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryGlobalMinGasPriceRequest;
1741
+ fromPartial(_: DeepPartial<QueryGlobalMinGasPriceRequest>): QueryGlobalMinGasPriceRequest;
1742
+ fromAmino(_: QueryGlobalMinGasPriceRequestAmino): QueryGlobalMinGasPriceRequest;
1743
+ toAmino(_: QueryGlobalMinGasPriceRequest): QueryGlobalMinGasPriceRequestAmino;
1744
+ fromAminoMsg(object: QueryGlobalMinGasPriceRequestAminoMsg): QueryGlobalMinGasPriceRequest;
1745
+ toAminoMsg(message: QueryGlobalMinGasPriceRequest): QueryGlobalMinGasPriceRequestAminoMsg;
1746
+ fromProtoMsg(message: QueryGlobalMinGasPriceRequestProtoMsg): QueryGlobalMinGasPriceRequest;
1747
+ toProto(message: QueryGlobalMinGasPriceRequest): Uint8Array;
1748
+ toProtoMsg(message: QueryGlobalMinGasPriceRequest): QueryGlobalMinGasPriceRequestProtoMsg;
1749
+ registerTypeUrl(): void;
1750
+ };
1751
+ /**
1752
+ * QueryGlobalMinGasPriceResponse returns the GlobalMinGasPrice
1753
+ * @name QueryGlobalMinGasPriceResponse
1754
+ * @package cosmos.evm.vm.v1
1755
+ * @see proto type: cosmos.evm.vm.v1.QueryGlobalMinGasPriceResponse
1756
+ */
1757
+ export declare const QueryGlobalMinGasPriceResponse: {
1758
+ typeUrl: string;
1759
+ aminoType: string;
1760
+ is(o: any): o is QueryGlobalMinGasPriceResponse;
1761
+ isAmino(o: any): o is QueryGlobalMinGasPriceResponseAmino;
1762
+ encode(message: QueryGlobalMinGasPriceResponse, writer?: BinaryWriter): BinaryWriter;
1763
+ decode(input: BinaryReader | Uint8Array, length?: number): QueryGlobalMinGasPriceResponse;
1764
+ fromPartial(object: DeepPartial<QueryGlobalMinGasPriceResponse>): QueryGlobalMinGasPriceResponse;
1765
+ fromAmino(object: QueryGlobalMinGasPriceResponseAmino): QueryGlobalMinGasPriceResponse;
1766
+ toAmino(message: QueryGlobalMinGasPriceResponse): QueryGlobalMinGasPriceResponseAmino;
1767
+ fromAminoMsg(object: QueryGlobalMinGasPriceResponseAminoMsg): QueryGlobalMinGasPriceResponse;
1768
+ toAminoMsg(message: QueryGlobalMinGasPriceResponse): QueryGlobalMinGasPriceResponseAminoMsg;
1769
+ fromProtoMsg(message: QueryGlobalMinGasPriceResponseProtoMsg): QueryGlobalMinGasPriceResponse;
1770
+ toProto(message: QueryGlobalMinGasPriceResponse): Uint8Array;
1771
+ toProtoMsg(message: QueryGlobalMinGasPriceResponse): QueryGlobalMinGasPriceResponseProtoMsg;
1772
+ registerTypeUrl(): void;
1773
+ };