@xpla/xplajs 1.7.0 → 1.8.0-rc.0

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 (1295) 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/auth/module/v1/module.d.ts +60 -12
  14. package/cosmos/auth/module/v1/module.js +16 -0
  15. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  16. package/cosmos/auth/v1beta1/auth.js +34 -0
  17. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  18. package/cosmos/auth/v1beta1/genesis.js +6 -0
  19. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  20. package/cosmos/auth/v1beta1/query.js +169 -0
  21. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
  22. package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
  23. package/cosmos/auth/v1beta1/tx.d.ts +35 -2
  24. package/cosmos/auth/v1beta1/tx.js +21 -0
  25. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
  26. package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
  27. package/cosmos/authz/module/v1/module.d.ts +18 -2
  28. package/cosmos/authz/module/v1/module.js +6 -0
  29. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  30. package/cosmos/authz/v1beta1/authz.js +36 -0
  31. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  32. package/cosmos/authz/v1beta1/event.js +12 -0
  33. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  34. package/cosmos/authz/v1beta1/genesis.js +10 -0
  35. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  36. package/cosmos/authz/v1beta1/query.js +55 -0
  37. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
  38. package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
  39. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  40. package/cosmos/authz/v1beta1/tx.js +43 -0
  41. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
  42. package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
  43. package/cosmos/autocli/v1/options.d.ts +208 -38
  44. package/cosmos/autocli/v1/options.js +54 -0
  45. package/cosmos/autocli/v1/query.d.ts +57 -6
  46. package/cosmos/autocli/v1/query.js +21 -0
  47. package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
  48. package/cosmos/autocli/v1/query.rpc.func.js +8 -4
  49. package/cosmos/bank/module/v1/module.d.ts +24 -4
  50. package/cosmos/bank/module/v1/module.js +6 -0
  51. package/cosmos/bank/v1beta1/authz.d.ts +15 -0
  52. package/cosmos/bank/v1beta1/authz.js +12 -0
  53. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  54. package/cosmos/bank/v1beta1/bank.js +63 -0
  55. package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
  56. package/cosmos/bank/v1beta1/genesis.js +20 -0
  57. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  58. package/cosmos/bank/v1beta1/query.js +263 -0
  59. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
  60. package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
  61. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  62. package/cosmos/bank/v1beta1/tx.js +74 -0
  63. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
  64. package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
  65. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  66. package/cosmos/base/abci/v1beta1/abci.js +92 -0
  67. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  68. package/cosmos/base/node/v1beta1/query.js +24 -0
  69. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
  70. package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
  71. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  72. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  73. package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
  74. package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  75. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
  76. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
  77. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  78. package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  79. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
  80. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
  81. package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
  82. package/cosmos/base/tendermint/v1beta1/query.js +154 -0
  83. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
  84. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
  85. package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
  86. package/cosmos/base/tendermint/v1beta1/types.js +20 -0
  87. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  88. package/cosmos/base/v1beta1/coin.js +32 -0
  89. package/cosmos/bundle.d.ts +150 -0
  90. package/cosmos/bundle.js +814 -0
  91. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  92. package/cosmos/consensus/module/v1/module.js +6 -0
  93. package/cosmos/consensus/v1/query.d.ts +36 -4
  94. package/cosmos/consensus/v1/query.js +16 -0
  95. package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
  96. package/cosmos/consensus/v1/query.rpc.func.js +8 -4
  97. package/cosmos/consensus/v1/tx.d.ts +43 -6
  98. package/cosmos/consensus/v1/tx.js +17 -0
  99. package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
  100. package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
  101. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  102. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  103. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  104. package/cosmos/distribution/module/v1/module.js +6 -0
  105. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  106. package/cosmos/distribution/v1beta1/distribution.js +132 -0
  107. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  108. package/cosmos/distribution/v1beta1/genesis.js +74 -0
  109. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  110. package/cosmos/distribution/v1beta1/query.js +164 -0
  111. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
  112. package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
  113. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  114. package/cosmos/distribution/v1beta1/tx.js +128 -0
  115. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
  116. package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
  117. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  118. package/cosmos/evidence/module/v1/module.js +6 -0
  119. package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
  120. package/cosmos/evidence/v1beta1/evidence.js +7 -0
  121. package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
  122. package/cosmos/evidence/v1beta1/genesis.js +6 -0
  123. package/cosmos/evidence/v1beta1/query.d.ts +88 -14
  124. package/cosmos/evidence/v1beta1/query.js +33 -0
  125. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
  126. package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
  127. package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
  128. package/cosmos/evidence/v1beta1/tx.js +13 -0
  129. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
  130. package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
  131. package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
  132. package/cosmos/evm/feemarket/v1/events.js +182 -0
  133. package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
  134. package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
  135. package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
  136. package/cosmos/evm/feemarket/v1/genesis.js +106 -0
  137. package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
  138. package/cosmos/evm/feemarket/v1/query.js +473 -0
  139. package/cosmos/evm/feemarket/v1/query.lcd.d.ts +11 -0
  140. package/cosmos/evm/feemarket/v1/query.lcd.js +25 -0
  141. package/cosmos/evm/feemarket/v1/query.rpc.Query.d.ts +24 -0
  142. package/cosmos/evm/feemarket/v1/query.rpc.Query.js +47 -0
  143. package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
  144. package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
  145. package/cosmos/evm/feemarket/v1/tx.amino.d.ts +8 -0
  146. package/cosmos/evm/feemarket/v1/tx.amino.js +11 -0
  147. package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
  148. package/cosmos/evm/feemarket/v1/tx.js +177 -0
  149. package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
  150. package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
  151. package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
  152. package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
  153. package/cosmos/evm/feemarket/v1/tx.rpc.msg.d.ts +17 -0
  154. package/cosmos/evm/feemarket/v1/tx.rpc.msg.js +24 -0
  155. package/cosmos/evm/vm/v1/events.d.ts +286 -0
  156. package/cosmos/evm/vm/v1/events.js +435 -0
  157. package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
  158. package/cosmos/evm/vm/v1/evm.js +1617 -0
  159. package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
  160. package/cosmos/evm/vm/v1/genesis.js +227 -0
  161. package/cosmos/evm/vm/v1/query.d.ts +1773 -0
  162. package/cosmos/evm/vm/v1/query.js +2680 -0
  163. package/cosmos/evm/vm/v1/query.lcd.d.ts +23 -0
  164. package/cosmos/evm/vm/v1/query.lcd.js +175 -0
  165. package/cosmos/evm/vm/v1/query.rpc.Query.d.ts +87 -0
  166. package/cosmos/evm/vm/v1/query.rpc.Query.js +155 -0
  167. package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
  168. package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
  169. package/cosmos/evm/vm/v1/tx.amino.d.ts +13 -0
  170. package/cosmos/evm/vm/v1/tx.amino.js +16 -0
  171. package/cosmos/evm/vm/v1/tx.d.ts +747 -0
  172. package/cosmos/evm/vm/v1/tx.js +1132 -0
  173. package/cosmos/evm/vm/v1/tx.registry.d.ts +35 -0
  174. package/cosmos/evm/vm/v1/tx.registry.js +49 -0
  175. package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
  176. package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
  177. package/cosmos/evm/vm/v1/tx.rpc.msg.d.ts +20 -0
  178. package/cosmos/evm/vm/v1/tx.rpc.msg.js +30 -0
  179. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  180. package/cosmos/feegrant/module/v1/module.js +6 -0
  181. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  182. package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  183. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  184. package/cosmos/feegrant/v1beta1/genesis.js +10 -0
  185. package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
  186. package/cosmos/feegrant/v1beta1/query.js +56 -0
  187. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
  188. package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
  189. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  190. package/cosmos/feegrant/v1beta1/tx.js +44 -0
  191. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
  192. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
  193. package/cosmos/gov/module/v1/module.d.ts +24 -4
  194. package/cosmos/gov/module/v1/module.js +6 -0
  195. package/cosmos/gov/v1/genesis.d.ts +48 -16
  196. package/cosmos/gov/v1/genesis.js +10 -0
  197. package/cosmos/gov/v1/gov.d.ts +343 -80
  198. package/cosmos/gov/v1/gov.js +77 -0
  199. package/cosmos/gov/v1/query.d.ts +469 -88
  200. package/cosmos/gov/v1/query.js +143 -0
  201. package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
  202. package/cosmos/gov/v1/query.rpc.func.js +64 -28
  203. package/cosmos/gov/v1/tx.d.ts +377 -67
  204. package/cosmos/gov/v1/tx.js +111 -3
  205. package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
  206. package/cosmos/gov/v1/tx.rpc.func.js +63 -51
  207. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  208. package/cosmos/gov/v1beta1/genesis.js +10 -0
  209. package/cosmos/gov/v1beta1/gov.d.ts +294 -63
  210. package/cosmos/gov/v1beta1/gov.js +74 -3
  211. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  212. package/cosmos/gov/v1beta1/query.js +131 -0
  213. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
  214. package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
  215. package/cosmos/gov/v1beta1/tx.d.ts +214 -39
  216. package/cosmos/gov/v1beta1/tx.js +62 -3
  217. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
  218. package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
  219. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  220. package/cosmos/ics23/v1/proofs.js +169 -0
  221. package/cosmos/lcd.d.ts +65 -0
  222. package/cosmos/lcd.js +134 -0
  223. package/cosmos/mint/module/v1/module.d.ts +24 -4
  224. package/cosmos/mint/module/v1/module.js +6 -0
  225. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  226. package/cosmos/mint/v1beta1/genesis.js +10 -0
  227. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  228. package/cosmos/mint/v1beta1/mint.js +12 -0
  229. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  230. package/cosmos/mint/v1beta1/query.js +43 -0
  231. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
  232. package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
  233. package/cosmos/mint/v1beta1/tx.d.ts +35 -2
  234. package/cosmos/mint/v1beta1/tx.js +21 -0
  235. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
  236. package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
  237. package/cosmos/params/module/v1/module.d.ts +18 -2
  238. package/cosmos/params/module/v1/module.js +6 -0
  239. package/cosmos/params/v1beta1/params.d.ts +31 -2
  240. package/cosmos/params/v1beta1/params.js +16 -0
  241. package/cosmos/params/v1beta1/query.d.ts +99 -10
  242. package/cosmos/params/v1beta1/query.js +46 -0
  243. package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
  244. package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
  245. package/cosmos/rpc.query.d.ts +193 -58
  246. package/cosmos/rpc.query.js +58 -8
  247. package/cosmos/rpc.tx.d.ts +35 -15
  248. package/cosmos/rpc.tx.js +35 -15
  249. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  250. package/cosmos/slashing/module/v1/module.js +6 -0
  251. package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
  252. package/cosmos/slashing/v1beta1/genesis.js +35 -0
  253. package/cosmos/slashing/v1beta1/query.d.ts +106 -10
  254. package/cosmos/slashing/v1beta1/query.js +53 -0
  255. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
  256. package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
  257. package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
  258. package/cosmos/slashing/v1beta1/slashing.js +13 -0
  259. package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
  260. package/cosmos/slashing/v1beta1/tx.js +33 -0
  261. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
  262. package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
  263. package/cosmos/staking/module/v1/module.d.ts +36 -8
  264. package/cosmos/staking/module/v1/module.js +6 -0
  265. package/cosmos/staking/v1beta1/authz.d.ts +44 -6
  266. package/cosmos/staking/v1beta1/authz.js +17 -0
  267. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  268. package/cosmos/staking/v1beta1/genesis.js +16 -0
  269. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  270. package/cosmos/staking/v1beta1/query.js +250 -0
  271. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
  272. package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
  273. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  274. package/cosmos/staking/v1beta1/staking.js +186 -0
  275. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  276. package/cosmos/staking/v1beta1/tx.js +120 -0
  277. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
  278. package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
  279. package/cosmos/tx/config/v1/config.d.ts +18 -2
  280. package/cosmos/tx/config/v1/config.js +6 -0
  281. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  282. package/cosmos/tx/signing/v1beta1/signing.js +46 -0
  283. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  284. package/cosmos/tx/v1beta1/service.js +176 -0
  285. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
  286. package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
  287. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  288. package/cosmos/tx/v1beta1/tx.js +127 -0
  289. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  290. package/cosmos/upgrade/module/v1/module.js +6 -0
  291. package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
  292. package/cosmos/upgrade/v1beta1/query.js +85 -0
  293. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
  294. package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
  295. package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
  296. package/cosmos/upgrade/v1beta1/tx.js +36 -0
  297. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
  298. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
  299. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  300. package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  301. package/cosmos_proto/bundle.d.ts +1 -0
  302. package/cosmos_proto/bundle.js +8 -0
  303. package/cosmos_proto/cosmos.d.ts +31 -0
  304. package/cosmos_proto/cosmos.js +19 -0
  305. package/cosmwasm/bundle.d.ts +10 -0
  306. package/cosmwasm/bundle.js +141 -0
  307. package/cosmwasm/lcd.d.ts +70 -0
  308. package/cosmwasm/lcd.js +141 -0
  309. package/cosmwasm/rpc.query.d.ts +236 -0
  310. package/cosmwasm/rpc.query.js +107 -0
  311. package/cosmwasm/rpc.tx.d.ts +57 -0
  312. package/cosmwasm/rpc.tx.js +81 -0
  313. package/cosmwasm/wasm/v1/authz.d.ts +212 -22
  314. package/cosmwasm/wasm/v1/authz.js +113 -0
  315. package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
  316. package/cosmwasm/wasm/v1/genesis.js +34 -0
  317. package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
  318. package/cosmwasm/wasm/v1/ibc.js +24 -0
  319. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  320. package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  321. package/cosmwasm/wasm/v1/query.d.ts +761 -76
  322. package/cosmwasm/wasm/v1/query.js +581 -1
  323. package/cosmwasm/wasm/v1/query.lcd.d.ts +3 -1
  324. package/cosmwasm/wasm/v1/query.lcd.js +12 -1
  325. package/cosmwasm/wasm/v1/query.rpc.Query.d.ts +13 -2
  326. package/cosmwasm/wasm/v1/query.rpc.Query.js +20 -1
  327. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
  328. package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
  329. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  330. package/cosmwasm/wasm/v1/tx.js +267 -0
  331. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
  332. package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
  333. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  334. package/cosmwasm/wasm/v1/types.js +58 -0
  335. package/esm/binary.js +1 -1
  336. package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
  337. package/esm/cosmos/app/v1alpha1/config.js +31 -0
  338. package/esm/cosmos/app/v1alpha1/module.js +23 -0
  339. package/esm/cosmos/app/v1alpha1/query.js +16 -0
  340. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
  341. package/esm/cosmos/auth/module/v1/module.js +16 -0
  342. package/esm/cosmos/auth/v1beta1/auth.js +34 -0
  343. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  344. package/esm/cosmos/auth/v1beta1/query.js +169 -0
  345. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
  346. package/esm/cosmos/auth/v1beta1/tx.js +21 -0
  347. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
  348. package/esm/cosmos/authz/module/v1/module.js +6 -0
  349. package/esm/cosmos/authz/v1beta1/authz.js +36 -0
  350. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  351. package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
  352. package/esm/cosmos/authz/v1beta1/query.js +55 -0
  353. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
  354. package/esm/cosmos/authz/v1beta1/tx.js +43 -0
  355. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
  356. package/esm/cosmos/autocli/v1/options.js +54 -0
  357. package/esm/cosmos/autocli/v1/query.js +21 -0
  358. package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
  359. package/esm/cosmos/bank/module/v1/module.js +6 -0
  360. package/esm/cosmos/bank/v1beta1/authz.js +12 -0
  361. package/esm/cosmos/bank/v1beta1/bank.js +63 -0
  362. package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
  363. package/esm/cosmos/bank/v1beta1/query.js +263 -0
  364. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
  365. package/esm/cosmos/bank/v1beta1/tx.js +74 -0
  366. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
  367. package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
  368. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  369. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
  370. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  371. package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  372. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
  373. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  374. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
  375. package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
  376. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
  377. package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
  378. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  379. package/esm/cosmos/bundle.js +150 -0
  380. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  381. package/esm/cosmos/consensus/v1/query.js +16 -0
  382. package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
  383. package/esm/cosmos/consensus/v1/tx.js +17 -0
  384. package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
  385. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  386. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  387. package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
  388. package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
  389. package/esm/cosmos/distribution/v1beta1/query.js +164 -0
  390. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
  391. package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
  392. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
  393. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  394. package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
  395. package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
  396. package/esm/cosmos/evidence/v1beta1/query.js +33 -0
  397. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
  398. package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
  399. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
  400. package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
  401. package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
  402. package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
  403. package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
  404. package/esm/cosmos/evm/feemarket/v1/query.lcd.js +21 -0
  405. package/esm/cosmos/evm/feemarket/v1/query.rpc.Query.js +42 -0
  406. package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
  407. package/esm/cosmos/evm/feemarket/v1/tx.amino.js +8 -0
  408. package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
  409. package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
  410. package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
  411. package/esm/cosmos/evm/feemarket/v1/tx.rpc.msg.js +19 -0
  412. package/esm/cosmos/evm/vm/v1/events.js +432 -0
  413. package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
  414. package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
  415. package/esm/cosmos/evm/vm/v1/query.js +2677 -0
  416. package/esm/cosmos/evm/vm/v1/query.lcd.js +171 -0
  417. package/esm/cosmos/evm/vm/v1/query.rpc.Query.js +150 -0
  418. package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
  419. package/esm/cosmos/evm/vm/v1/tx.amino.js +13 -0
  420. package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
  421. package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
  422. package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
  423. package/esm/cosmos/evm/vm/v1/tx.rpc.msg.js +25 -0
  424. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  425. package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  426. package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
  427. package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
  428. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
  429. package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
  430. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
  431. package/esm/cosmos/gov/module/v1/module.js +6 -0
  432. package/esm/cosmos/gov/v1/genesis.js +10 -0
  433. package/esm/cosmos/gov/v1/gov.js +77 -0
  434. package/esm/cosmos/gov/v1/query.js +143 -0
  435. package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
  436. package/esm/cosmos/gov/v1/tx.js +111 -3
  437. package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
  438. package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
  439. package/esm/cosmos/gov/v1beta1/gov.js +74 -3
  440. package/esm/cosmos/gov/v1beta1/query.js +131 -0
  441. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
  442. package/esm/cosmos/gov/v1beta1/tx.js +62 -3
  443. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
  444. package/esm/cosmos/ics23/v1/proofs.js +169 -0
  445. package/esm/cosmos/lcd.js +107 -0
  446. package/esm/cosmos/mint/module/v1/module.js +6 -0
  447. package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
  448. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  449. package/esm/cosmos/mint/v1beta1/query.js +43 -0
  450. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
  451. package/esm/cosmos/mint/v1beta1/tx.js +21 -0
  452. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
  453. package/esm/cosmos/params/module/v1/module.js +6 -0
  454. package/esm/cosmos/params/v1beta1/params.js +16 -0
  455. package/esm/cosmos/params/v1beta1/query.js +46 -0
  456. package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
  457. package/esm/cosmos/rpc.query.js +58 -8
  458. package/esm/cosmos/rpc.tx.js +35 -15
  459. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  460. package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
  461. package/esm/cosmos/slashing/v1beta1/query.js +53 -0
  462. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
  463. package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
  464. package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
  465. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
  466. package/esm/cosmos/staking/module/v1/module.js +6 -0
  467. package/esm/cosmos/staking/v1beta1/authz.js +17 -0
  468. package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
  469. package/esm/cosmos/staking/v1beta1/query.js +250 -0
  470. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
  471. package/esm/cosmos/staking/v1beta1/staking.js +186 -0
  472. package/esm/cosmos/staking/v1beta1/tx.js +120 -0
  473. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
  474. package/esm/cosmos/tx/config/v1/config.js +6 -0
  475. package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
  476. package/esm/cosmos/tx/v1beta1/service.js +176 -0
  477. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
  478. package/esm/cosmos/tx/v1beta1/tx.js +127 -0
  479. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  480. package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
  481. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
  482. package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
  483. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
  484. package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  485. package/esm/cosmos_proto/bundle.js +1 -0
  486. package/esm/cosmos_proto/cosmos.js +19 -0
  487. package/esm/cosmwasm/bundle.js +10 -0
  488. package/esm/cosmwasm/lcd.js +114 -0
  489. package/esm/cosmwasm/rpc.query.js +80 -0
  490. package/esm/cosmwasm/rpc.tx.js +54 -0
  491. package/esm/cosmwasm/wasm/v1/authz.js +113 -0
  492. package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
  493. package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
  494. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  495. package/esm/cosmwasm/wasm/v1/query.js +580 -0
  496. package/esm/cosmwasm/wasm/v1/query.lcd.js +12 -1
  497. package/esm/cosmwasm/wasm/v1/query.rpc.Query.js +21 -2
  498. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
  499. package/esm/cosmwasm/wasm/v1/tx.js +267 -0
  500. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
  501. package/esm/cosmwasm/wasm/v1/types.js +58 -0
  502. package/esm/ethermint/bundle.js +21 -0
  503. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  504. package/esm/ethermint/evm/v1/events.js +24 -0
  505. package/esm/ethermint/evm/v1/evm.js +69 -0
  506. package/esm/ethermint/evm/v1/genesis.js +21 -0
  507. package/esm/ethermint/evm/v1/query.js +167 -0
  508. package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
  509. package/esm/ethermint/evm/v1/tx.js +66 -0
  510. package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
  511. package/esm/ethermint/feemarket/v1/events.js +12 -0
  512. package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
  513. package/esm/ethermint/feemarket/v1/genesis.js +10 -0
  514. package/esm/ethermint/feemarket/v1/query.js +42 -0
  515. package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
  516. package/esm/ethermint/feemarket/v1/tx.js +17 -0
  517. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
  518. package/esm/ethermint/lcd.js +119 -0
  519. package/esm/ethermint/rpc.query.js +83 -0
  520. package/esm/ethermint/rpc.tx.js +57 -0
  521. package/esm/ethermint/types/v1/account.js +10 -0
  522. package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
  523. package/esm/ethermint/types/v1/indexer.js +6 -0
  524. package/esm/ethermint/types/v1/web3.js +7 -0
  525. package/esm/extern.js +14 -4
  526. package/esm/google/api/http.js +290 -0
  527. package/esm/google/bundle.js +5 -0
  528. package/esm/google/protobuf/any.js +90 -0
  529. package/esm/google/protobuf/descriptor.js +553 -11
  530. package/esm/google/protobuf/duration.js +63 -0
  531. package/esm/google/protobuf/timestamp.js +94 -0
  532. package/esm/helper-func-types.js +14 -22
  533. package/esm/helpers.js +1 -1
  534. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  535. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  536. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
  537. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  538. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
  539. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  540. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  541. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  542. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
  543. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  544. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
  545. package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
  546. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  547. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  548. package/esm/ibc/applications/transfer/v1/authz.js +19 -0
  549. package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
  550. package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
  551. package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  552. package/esm/ibc/applications/transfer/v1/query.js +270 -175
  553. package/esm/ibc/applications/transfer/v1/query.lcd.js +12 -12
  554. package/esm/ibc/applications/transfer/v1/query.rpc.Query.js +21 -21
  555. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
  556. package/esm/ibc/applications/transfer/v1/token.js +300 -0
  557. package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
  558. package/esm/ibc/applications/transfer/v1/tx.js +49 -3
  559. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
  560. package/esm/ibc/bundle.js +76 -0
  561. package/esm/ibc/core/channel/v1/channel.js +84 -124
  562. package/esm/ibc/core/channel/v1/genesis.js +21 -17
  563. package/esm/ibc/core/channel/v1/query.js +252 -530
  564. package/esm/ibc/core/channel/v1/query.lcd.js +0 -15
  565. package/esm/ibc/core/channel/v1/query.rpc.Query.js +1 -28
  566. package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
  567. package/esm/ibc/core/channel/v1/tx.amino.js +1 -46
  568. package/esm/ibc/core/channel/v1/tx.js +164 -1970
  569. package/esm/ibc/core/channel/v1/tx.registry.js +2 -164
  570. package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
  571. package/esm/ibc/core/channel/v1/tx.rpc.msg.js +1 -55
  572. package/esm/ibc/core/channel/v2/genesis.js +360 -0
  573. package/esm/ibc/core/channel/v2/packet.js +508 -0
  574. package/esm/ibc/core/channel/v2/query.js +1727 -0
  575. package/esm/ibc/core/channel/v2/query.lcd.js +62 -0
  576. package/esm/ibc/core/channel/v2/query.rpc.Query.js +87 -0
  577. package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
  578. package/esm/ibc/core/channel/v2/tx.amino.js +23 -0
  579. package/esm/ibc/core/channel/v2/tx.js +901 -0
  580. package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
  581. package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
  582. package/esm/ibc/core/channel/v2/tx.rpc.msg.js +35 -0
  583. package/esm/ibc/core/client/v1/client.js +50 -235
  584. package/esm/ibc/core/client/v1/genesis.js +27 -0
  585. package/esm/ibc/core/client/v1/query.js +355 -16
  586. package/esm/ibc/core/client/v1/query.lcd.js +5 -0
  587. package/esm/ibc/core/client/v1/query.rpc.Query.js +10 -1
  588. package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
  589. package/esm/ibc/core/client/v1/tx.amino.js +6 -1
  590. package/esm/ibc/core/client/v1/tx.js +279 -7
  591. package/esm/ibc/core/client/v1/tx.registry.js +20 -2
  592. package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
  593. package/esm/ibc/core/client/v1/tx.rpc.msg.js +7 -1
  594. package/esm/ibc/core/client/v2/config.js +90 -0
  595. package/esm/ibc/core/client/v2/counterparty.js +100 -0
  596. package/esm/ibc/core/client/v2/genesis.js +194 -0
  597. package/esm/ibc/core/client/v2/query.js +348 -0
  598. package/esm/ibc/core/client/v2/query.lcd.js +16 -0
  599. package/esm/ibc/core/client/v2/query.rpc.Query.js +33 -0
  600. package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
  601. package/esm/ibc/core/client/v2/tx.amino.js +13 -0
  602. package/esm/ibc/core/client/v2/tx.js +378 -0
  603. package/esm/ibc/core/client/v2/tx.registry.js +46 -0
  604. package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
  605. package/esm/ibc/core/client/v2/tx.rpc.msg.js +23 -0
  606. package/esm/ibc/core/commitment/v1/commitment.js +29 -80
  607. package/esm/ibc/core/commitment/v2/commitment.js +118 -0
  608. package/esm/ibc/core/connection/v1/connection.js +57 -0
  609. package/esm/ibc/core/connection/v1/genesis.js +10 -0
  610. package/esm/ibc/core/connection/v1/query.js +105 -0
  611. package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
  612. package/esm/ibc/core/connection/v1/tx.js +82 -0
  613. package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
  614. package/esm/ibc/core/types/v1/genesis.js +41 -3
  615. package/esm/ibc/lcd.js +158 -0
  616. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  617. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  618. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  619. package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
  620. package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
  621. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
  622. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  623. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
  624. package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
  625. package/esm/ibc/rpc.query.js +108 -0
  626. package/esm/ibc/rpc.tx.js +82 -0
  627. package/esm/index.js +20 -0
  628. package/esm/registry.js +9 -1
  629. package/esm/tendermint/abci/types.js +322 -0
  630. package/esm/tendermint/bundle.js +10 -0
  631. package/esm/tendermint/crypto/keys.js +6 -0
  632. package/esm/tendermint/crypto/proof.js +36 -0
  633. package/esm/tendermint/p2p/types.js +24 -0
  634. package/esm/tendermint/types/block.js +9 -0
  635. package/esm/tendermint/types/evidence.js +35 -0
  636. package/esm/tendermint/types/params.js +50 -0
  637. package/esm/tendermint/types/types.js +121 -0
  638. package/esm/tendermint/types/validator.js +25 -0
  639. package/esm/tendermint/version/types.js +16 -0
  640. package/esm/types.js +1 -1
  641. package/esm/utf8.js +1 -1
  642. package/esm/varint.js +1 -1
  643. package/esm/xpla/bundle.js +22 -0
  644. package/esm/xpla/burn/v1beta1/burn.js +111 -0
  645. package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  646. package/esm/xpla/burn/v1beta1/query.js +327 -0
  647. package/esm/xpla/burn/v1beta1/query.lcd.js +22 -0
  648. package/esm/xpla/burn/v1beta1/query.rpc.Query.js +33 -0
  649. package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
  650. package/esm/xpla/burn/v1beta1/tx.amino.js +8 -0
  651. package/esm/xpla/burn/v1beta1/tx.js +169 -0
  652. package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
  653. package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
  654. package/esm/xpla/burn/v1beta1/tx.rpc.msg.js +17 -0
  655. package/esm/xpla/lcd.js +15 -67
  656. package/esm/xpla/reward/v1beta1/genesis.js +10 -0
  657. package/esm/xpla/reward/v1beta1/query.js +33 -0
  658. package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
  659. package/esm/xpla/reward/v1beta1/reward.js +6 -0
  660. package/esm/xpla/reward/v1beta1/tx.js +35 -0
  661. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
  662. package/esm/xpla/rpc.query.js +11 -50
  663. package/esm/xpla/rpc.tx.js +60 -1
  664. package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
  665. package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
  666. package/esm/xpla/volunteer/v1beta1/query.js +12 -0
  667. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
  668. package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
  669. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
  670. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  671. package/ethermint/bundle.d.ts +21 -0
  672. package/ethermint/bundle.js +120 -0
  673. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
  674. package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  675. package/ethermint/evm/v1/events.d.ts +144 -32
  676. package/ethermint/evm/v1/events.js +24 -0
  677. package/ethermint/evm/v1/evm.d.ts +434 -110
  678. package/ethermint/evm/v1/evm.js +69 -0
  679. package/ethermint/evm/v1/genesis.d.ts +62 -12
  680. package/ethermint/evm/v1/genesis.js +21 -0
  681. package/ethermint/evm/v1/query.d.ts +673 -126
  682. package/ethermint/evm/v1/query.js +167 -0
  683. package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
  684. package/ethermint/evm/v1/query.rpc.func.js +88 -37
  685. package/ethermint/evm/v1/tx.d.ts +363 -88
  686. package/ethermint/evm/v1/tx.js +66 -0
  687. package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
  688. package/ethermint/evm/v1/tx.rpc.func.js +18 -16
  689. package/ethermint/feemarket/v1/events.d.ts +54 -10
  690. package/ethermint/feemarket/v1/events.js +12 -0
  691. package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
  692. package/ethermint/feemarket/v1/feemarket.js +6 -0
  693. package/ethermint/feemarket/v1/genesis.d.ts +24 -4
  694. package/ethermint/feemarket/v1/genesis.js +10 -0
  695. package/ethermint/feemarket/v1/query.d.ts +116 -14
  696. package/ethermint/feemarket/v1/query.js +42 -0
  697. package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
  698. package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
  699. package/ethermint/feemarket/v1/tx.d.ts +37 -4
  700. package/ethermint/feemarket/v1/tx.js +17 -0
  701. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
  702. package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
  703. package/ethermint/lcd.d.ts +73 -0
  704. package/ethermint/lcd.js +146 -0
  705. package/ethermint/rpc.query.d.ts +241 -0
  706. package/ethermint/rpc.query.js +110 -0
  707. package/ethermint/rpc.tx.d.ts +60 -0
  708. package/ethermint/rpc.tx.js +84 -0
  709. package/ethermint/types/v1/account.d.ts +25 -4
  710. package/ethermint/types/v1/account.js +10 -0
  711. package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
  712. package/ethermint/types/v1/dynamic_fee.js +6 -0
  713. package/ethermint/types/v1/indexer.d.ts +42 -10
  714. package/ethermint/types/v1/indexer.js +6 -0
  715. package/ethermint/types/v1/web3.d.ts +13 -0
  716. package/ethermint/types/v1/web3.js +7 -0
  717. package/extern.d.ts +3 -2
  718. package/extern.js +14 -4
  719. package/google/api/http.d.ts +343 -14
  720. package/google/api/http.js +290 -0
  721. package/google/bundle.d.ts +5 -0
  722. package/google/bundle.js +21 -0
  723. package/google/protobuf/any.d.ts +102 -2
  724. package/google/protobuf/any.js +90 -0
  725. package/google/protobuf/descriptor.d.ts +833 -86
  726. package/google/protobuf/descriptor.js +561 -13
  727. package/google/protobuf/duration.d.ts +69 -0
  728. package/google/protobuf/duration.js +63 -0
  729. package/google/protobuf/timestamp.d.ts +100 -0
  730. package/google/protobuf/timestamp.js +94 -0
  731. package/helper-func-types.d.ts +7 -87
  732. package/helper-func-types.js +15 -24
  733. package/helpers.d.ts +1 -1
  734. package/helpers.js +1 -1
  735. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  736. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  737. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  738. package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  739. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
  740. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
  741. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  742. package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  743. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
  744. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
  745. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  746. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  747. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  748. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  749. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  750. package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  751. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
  752. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
  753. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  754. package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  755. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
  756. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
  757. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  758. package/ibc/applications/interchain_accounts/v1/account.js +9 -0
  759. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  760. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  761. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  762. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  763. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  764. package/ibc/applications/transfer/v1/authz.js +19 -0
  765. package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
  766. package/ibc/applications/transfer/v1/denomtrace.js +101 -0
  767. package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
  768. package/ibc/applications/transfer/v1/genesis.js +23 -12
  769. package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
  770. package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  771. package/ibc/applications/transfer/v1/query.d.ts +389 -170
  772. package/ibc/applications/transfer/v1/query.js +270 -175
  773. package/ibc/applications/transfer/v1/query.lcd.d.ts +3 -3
  774. package/ibc/applications/transfer/v1/query.lcd.js +12 -12
  775. package/ibc/applications/transfer/v1/query.rpc.Query.d.ts +9 -9
  776. package/ibc/applications/transfer/v1/query.rpc.Query.js +20 -20
  777. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
  778. package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
  779. package/ibc/applications/transfer/v1/token.d.ts +179 -0
  780. package/ibc/applications/transfer/v1/token.js +303 -0
  781. package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
  782. package/ibc/applications/transfer/v1/transfer.js +10 -90
  783. package/ibc/applications/transfer/v1/tx.d.ts +127 -24
  784. package/ibc/applications/transfer/v1/tx.js +49 -3
  785. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
  786. package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
  787. package/ibc/bundle.d.ts +76 -0
  788. package/ibc/bundle.js +451 -0
  789. package/ibc/core/channel/v1/channel.d.ts +293 -120
  790. package/ibc/core/channel/v1/channel.js +85 -125
  791. package/ibc/core/channel/v1/genesis.d.ts +38 -7
  792. package/ibc/core/channel/v1/genesis.js +20 -16
  793. package/ibc/core/channel/v1/query.d.ts +840 -378
  794. package/ibc/core/channel/v1/query.js +252 -530
  795. package/ibc/core/channel/v1/query.lcd.d.ts +1 -4
  796. package/ibc/core/channel/v1/query.lcd.js +0 -15
  797. package/ibc/core/channel/v1/query.rpc.Query.d.ts +1 -13
  798. package/ibc/core/channel/v1/query.rpc.Query.js +0 -27
  799. package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
  800. package/ibc/core/channel/v1/query.rpc.func.js +107 -70
  801. package/ibc/core/channel/v1/tx.amino.d.ts +1 -46
  802. package/ibc/core/channel/v1/tx.amino.js +0 -45
  803. package/ibc/core/channel/v1/tx.d.ts +335 -747
  804. package/ibc/core/channel/v1/tx.js +164 -1970
  805. package/ibc/core/channel/v1/tx.registry.d.ts +1 -109
  806. package/ibc/core/channel/v1/tx.registry.js +1 -163
  807. package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
  808. package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
  809. package/ibc/core/channel/v1/tx.rpc.msg.d.ts +1 -28
  810. package/ibc/core/channel/v1/tx.rpc.msg.js +0 -54
  811. package/ibc/core/channel/v2/genesis.d.ts +202 -0
  812. package/ibc/core/channel/v2/genesis.js +363 -0
  813. package/ibc/core/channel/v2/packet.d.ts +322 -0
  814. package/ibc/core/channel/v2/packet.js +513 -0
  815. package/ibc/core/channel/v2/query.d.ts +1067 -0
  816. package/ibc/core/channel/v2/query.js +1730 -0
  817. package/ibc/core/channel/v2/query.lcd.d.ts +16 -0
  818. package/ibc/core/channel/v2/query.lcd.js +66 -0
  819. package/ibc/core/channel/v2/query.rpc.Query.d.ts +44 -0
  820. package/ibc/core/channel/v2/query.rpc.Query.js +92 -0
  821. package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
  822. package/ibc/core/channel/v2/query.rpc.func.js +109 -0
  823. package/ibc/core/channel/v2/tx.amino.d.ts +23 -0
  824. package/ibc/core/channel/v2/tx.amino.js +26 -0
  825. package/ibc/core/channel/v2/tx.d.ts +437 -0
  826. package/ibc/core/channel/v2/tx.js +906 -0
  827. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  828. package/ibc/core/channel/v2/tx.registry.js +85 -0
  829. package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
  830. package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
  831. package/ibc/core/channel/v2/tx.rpc.msg.d.ts +22 -0
  832. package/ibc/core/channel/v2/tx.rpc.msg.js +40 -0
  833. package/ibc/core/client/v1/client.d.ts +133 -153
  834. package/ibc/core/client/v1/client.js +51 -236
  835. package/ibc/core/client/v1/genesis.d.ts +86 -20
  836. package/ibc/core/client/v1/genesis.js +27 -0
  837. package/ibc/core/client/v1/query.d.ts +591 -75
  838. package/ibc/core/client/v1/query.js +356 -17
  839. package/ibc/core/client/v1/query.lcd.d.ts +2 -1
  840. package/ibc/core/client/v1/query.lcd.js +5 -0
  841. package/ibc/core/client/v1/query.rpc.Query.d.ts +5 -1
  842. package/ibc/core/client/v1/query.rpc.Query.js +9 -0
  843. package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
  844. package/ibc/core/client/v1/query.rpc.func.js +86 -31
  845. package/ibc/core/client/v1/tx.amino.d.ts +6 -1
  846. package/ibc/core/client/v1/tx.amino.js +5 -0
  847. package/ibc/core/client/v1/tx.d.ts +454 -60
  848. package/ibc/core/client/v1/tx.js +280 -8
  849. package/ibc/core/client/v1/tx.registry.d.ts +13 -1
  850. package/ibc/core/client/v1/tx.registry.js +19 -1
  851. package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
  852. package/ibc/core/client/v1/tx.rpc.func.js +73 -58
  853. package/ibc/core/client/v1/tx.rpc.msg.d.ts +4 -1
  854. package/ibc/core/client/v1/tx.rpc.msg.js +6 -0
  855. package/ibc/core/client/v2/config.d.ts +66 -0
  856. package/ibc/core/client/v2/config.js +93 -0
  857. package/ibc/core/client/v2/counterparty.d.ts +65 -0
  858. package/ibc/core/client/v2/counterparty.js +103 -0
  859. package/ibc/core/client/v2/genesis.d.ts +121 -0
  860. package/ibc/core/client/v2/genesis.js +197 -0
  861. package/ibc/core/client/v2/query.d.ts +218 -0
  862. package/ibc/core/client/v2/query.js +351 -0
  863. package/ibc/core/client/v2/query.lcd.d.ts +10 -0
  864. package/ibc/core/client/v2/query.lcd.js +20 -0
  865. package/ibc/core/client/v2/query.rpc.Query.d.ts +20 -0
  866. package/ibc/core/client/v2/query.rpc.Query.js +38 -0
  867. package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
  868. package/ibc/core/client/v2/query.rpc.func.js +31 -0
  869. package/ibc/core/client/v2/tx.amino.d.ts +13 -0
  870. package/ibc/core/client/v2/tx.amino.js +16 -0
  871. package/ibc/core/client/v2/tx.d.ts +251 -0
  872. package/ibc/core/client/v2/tx.js +381 -0
  873. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  874. package/ibc/core/client/v2/tx.registry.js +49 -0
  875. package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
  876. package/ibc/core/client/v2/tx.rpc.func.js +23 -0
  877. package/ibc/core/client/v2/tx.rpc.msg.d.ts +16 -0
  878. package/ibc/core/client/v2/tx.rpc.msg.js +28 -0
  879. package/ibc/core/commitment/v1/commitment.d.ts +43 -41
  880. package/ibc/core/commitment/v1/commitment.js +30 -81
  881. package/ibc/core/commitment/v2/commitment.d.ts +141 -0
  882. package/ibc/core/commitment/v2/commitment.js +121 -0
  883. package/ibc/core/connection/v1/connection.d.ts +199 -38
  884. package/ibc/core/connection/v1/connection.js +57 -0
  885. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  886. package/ibc/core/connection/v1/genesis.js +10 -0
  887. package/ibc/core/connection/v1/query.d.ts +293 -46
  888. package/ibc/core/connection/v1/query.js +105 -0
  889. package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
  890. package/ibc/core/connection/v1/query.rpc.func.js +46 -19
  891. package/ibc/core/connection/v1/tx.d.ts +254 -32
  892. package/ibc/core/connection/v1/tx.js +82 -0
  893. package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
  894. package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
  895. package/ibc/core/types/v1/genesis.d.ts +56 -8
  896. package/ibc/core/types/v1/genesis.js +41 -3
  897. package/ibc/lcd.d.ts +98 -0
  898. package/ibc/lcd.js +185 -0
  899. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
  900. package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  901. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
  902. package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  903. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
  904. package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  905. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  906. package/ibc/lightclients/wasm/v1/genesis.js +16 -0
  907. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  908. package/ibc/lightclients/wasm/v1/query.js +31 -0
  909. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
  910. package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
  911. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  912. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  913. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
  914. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
  915. package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
  916. package/ibc/lightclients/wasm/v1/wasm.js +32 -0
  917. package/ibc/rpc.query.d.ts +310 -0
  918. package/ibc/rpc.query.js +135 -0
  919. package/ibc/rpc.tx.d.ts +85 -0
  920. package/ibc/rpc.tx.js +109 -0
  921. package/index.d.ts +20 -0
  922. package/index.js +36 -0
  923. package/package.json +9 -12
  924. package/registry.d.ts +3 -1
  925. package/registry.js +9 -1
  926. package/tendermint/abci/types.d.ts +971 -98
  927. package/tendermint/abci/types.js +322 -0
  928. package/tendermint/bundle.d.ts +10 -0
  929. package/tendermint/bundle.js +115 -0
  930. package/tendermint/crypto/keys.d.ts +18 -2
  931. package/tendermint/crypto/keys.js +6 -0
  932. package/tendermint/crypto/proof.d.ts +89 -6
  933. package/tendermint/crypto/proof.js +36 -0
  934. package/tendermint/p2p/types.d.ts +60 -0
  935. package/tendermint/p2p/types.js +24 -0
  936. package/tendermint/types/block.d.ts +15 -0
  937. package/tendermint/types/block.js +9 -0
  938. package/tendermint/types/evidence.d.ts +66 -4
  939. package/tendermint/types/evidence.js +35 -0
  940. package/tendermint/types/params.d.ts +112 -8
  941. package/tendermint/types/params.js +50 -0
  942. package/tendermint/types/types.d.ts +327 -42
  943. package/tendermint/types/types.js +121 -0
  944. package/tendermint/types/validator.d.ts +45 -0
  945. package/tendermint/types/validator.js +25 -0
  946. package/tendermint/version/types.d.ts +28 -0
  947. package/tendermint/version/types.js +16 -0
  948. package/types.d.ts +4 -49
  949. package/types.js +1 -1
  950. package/utf8.d.ts +1 -1
  951. package/utf8.js +1 -1
  952. package/varint.d.ts +1 -1
  953. package/varint.js +1 -1
  954. package/xpla/bundle.d.ts +22 -0
  955. package/xpla/bundle.js +61 -0
  956. package/xpla/burn/v1beta1/burn.d.ts +54 -0
  957. package/xpla/burn/v1beta1/burn.js +114 -0
  958. package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
  959. package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  960. package/xpla/burn/v1beta1/query.d.ts +204 -0
  961. package/xpla/burn/v1beta1/query.js +330 -0
  962. package/xpla/burn/v1beta1/query.lcd.d.ts +10 -0
  963. package/xpla/burn/v1beta1/query.lcd.js +26 -0
  964. package/xpla/burn/v1beta1/query.rpc.Query.d.ts +20 -0
  965. package/xpla/burn/v1beta1/query.rpc.Query.js +38 -0
  966. package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
  967. package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
  968. package/xpla/burn/v1beta1/tx.amino.d.ts +8 -0
  969. package/{cosmos/nft → xpla/burn}/v1beta1/tx.amino.js +4 -4
  970. package/xpla/burn/v1beta1/tx.d.ts +105 -0
  971. package/xpla/burn/v1beta1/tx.js +172 -0
  972. package/xpla/burn/v1beta1/tx.registry.d.ts +23 -0
  973. package/xpla/burn/v1beta1/tx.registry.js +31 -0
  974. package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
  975. package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
  976. package/xpla/burn/v1beta1/tx.rpc.msg.d.ts +13 -0
  977. package/{cosmos/nft → xpla/burn}/v1beta1/tx.rpc.msg.js +5 -5
  978. package/xpla/lcd.d.ts +11 -47
  979. package/xpla/lcd.js +15 -67
  980. package/xpla/reward/v1beta1/genesis.d.ts +24 -4
  981. package/xpla/reward/v1beta1/genesis.js +10 -0
  982. package/xpla/reward/v1beta1/query.d.ts +74 -8
  983. package/xpla/reward/v1beta1/query.js +33 -0
  984. package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
  985. package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
  986. package/xpla/reward/v1beta1/reward.d.ts +18 -2
  987. package/xpla/reward/v1beta1/reward.js +6 -0
  988. package/xpla/reward/v1beta1/tx.d.ts +64 -4
  989. package/xpla/reward/v1beta1/tx.js +35 -0
  990. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
  991. package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
  992. package/xpla/rpc.query.d.ts +141 -253
  993. package/xpla/rpc.query.js +11 -50
  994. package/xpla/rpc.tx.d.ts +60 -1
  995. package/xpla/rpc.tx.js +83 -1
  996. package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
  997. package/xpla/volunteer/v1beta1/genesis.js +10 -0
  998. package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
  999. package/xpla/volunteer/v1beta1/proposal.js +34 -0
  1000. package/xpla/volunteer/v1beta1/query.d.ts +36 -4
  1001. package/xpla/volunteer/v1beta1/query.js +12 -0
  1002. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
  1003. package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
  1004. package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
  1005. package/xpla/volunteer/v1beta1/tx.js +31 -0
  1006. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
  1007. package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
  1008. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
  1009. package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  1010. package/cosmos/app/runtime/v2/module.d.ts +0 -231
  1011. package/cosmos/app/runtime/v2/module.js +0 -421
  1012. package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
  1013. package/cosmos/auth/v1beta1/accounts.js +0 -161
  1014. package/cosmos/base/grpc/v2/service.d.ts +0 -168
  1015. package/cosmos/base/grpc/v2/service.js +0 -394
  1016. package/cosmos/base/grpc/v2/service.rpc.Service.d.ts +0 -20
  1017. package/cosmos/base/grpc/v2/service.rpc.Service.js +0 -38
  1018. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
  1019. package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
  1020. package/cosmos/circuit/module/v1/module.d.ts +0 -36
  1021. package/cosmos/circuit/module/v1/module.js +0 -83
  1022. package/cosmos/circuit/v1/query.d.ts +0 -200
  1023. package/cosmos/circuit/v1/query.js +0 -480
  1024. package/cosmos/circuit/v1/query.lcd.d.ts +0 -11
  1025. package/cosmos/circuit/v1/query.lcd.js +0 -34
  1026. package/cosmos/circuit/v1/query.rpc.Query.d.ts +0 -24
  1027. package/cosmos/circuit/v1/query.rpc.Query.js +0 -49
  1028. package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -5
  1029. package/cosmos/circuit/v1/query.rpc.func.js +0 -29
  1030. package/cosmos/circuit/v1/tx.amino.d.ts +0 -18
  1031. package/cosmos/circuit/v1/tx.amino.js +0 -21
  1032. package/cosmos/circuit/v1/tx.d.ts +0 -251
  1033. package/cosmos/circuit/v1/tx.js +0 -528
  1034. package/cosmos/circuit/v1/tx.registry.d.ts +0 -2
  1035. package/cosmos/circuit/v1/tx.registry.js +0 -5
  1036. package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -5
  1037. package/cosmos/circuit/v1/tx.rpc.func.js +0 -27
  1038. package/cosmos/circuit/v1/tx.rpc.msg.d.ts +0 -25
  1039. package/cosmos/circuit/v1/tx.rpc.msg.js +0 -36
  1040. package/cosmos/circuit/v1/types.d.ts +0 -151
  1041. package/cosmos/circuit/v1/types.js +0 -350
  1042. package/cosmos/crisis/module/v1/module.d.ts +0 -40
  1043. package/cosmos/crisis/module/v1/module.js +0 -95
  1044. package/cosmos/crisis/v1beta1/genesis.js +0 -84
  1045. package/cosmos/crisis/v1beta1/tx.amino.d.ts +0 -13
  1046. package/cosmos/crisis/v1beta1/tx.amino.js +0 -16
  1047. package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
  1048. package/cosmos/crisis/v1beta1/tx.js +0 -328
  1049. package/cosmos/crisis/v1beta1/tx.registry.d.ts +0 -2
  1050. package/cosmos/crisis/v1beta1/tx.registry.js +0 -5
  1051. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -4
  1052. package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -20
  1053. package/cosmos/crisis/v1beta1/tx.rpc.msg.d.ts +0 -21
  1054. package/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -31
  1055. package/cosmos/crypto/ed25519/keys.d.ts +0 -84
  1056. package/cosmos/crypto/ed25519/keys.js +0 -162
  1057. package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
  1058. package/cosmos/crypto/hd/v1/hd.js +0 -131
  1059. package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
  1060. package/cosmos/crypto/keyring/v1/record.js +0 -431
  1061. package/cosmos/crypto/multisig/keys.d.ts +0 -45
  1062. package/cosmos/crypto/multisig/keys.js +0 -99
  1063. package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
  1064. package/cosmos/crypto/secp256k1/keys.js +0 -162
  1065. package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
  1066. package/cosmos/crypto/secp256r1/keys.js +0 -162
  1067. package/cosmos/genutil/module/v1/module.d.ts +0 -32
  1068. package/cosmos/genutil/module/v1/module.js +0 -70
  1069. package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
  1070. package/cosmos/group/module/v1/module.d.ts +0 -53
  1071. package/cosmos/group/module/v1/module.js +0 -96
  1072. package/cosmos/group/v1/events.d.ts +0 -363
  1073. package/cosmos/group/v1/events.js +0 -847
  1074. package/cosmos/group/v1/genesis.d.ts +0 -83
  1075. package/cosmos/group/v1/genesis.js +0 -183
  1076. package/cosmos/group/v1/query.d.ts +0 -1044
  1077. package/cosmos/group/v1/query.js +0 -2434
  1078. package/cosmos/group/v1/query.lcd.d.ts +0 -22
  1079. package/cosmos/group/v1/query.lcd.js +0 -143
  1080. package/cosmos/group/v1/query.rpc.Query.d.ts +0 -78
  1081. package/cosmos/group/v1/query.rpc.Query.js +0 -154
  1082. package/cosmos/group/v1/query.rpc.func.d.ts +0 -16
  1083. package/cosmos/group/v1/query.rpc.func.js +0 -117
  1084. package/cosmos/group/v1/tx.amino.d.ts +0 -73
  1085. package/cosmos/group/v1/tx.amino.js +0 -76
  1086. package/cosmos/group/v1/tx.d.ts +0 -1140
  1087. package/cosmos/group/v1/tx.js +0 -2567
  1088. package/cosmos/group/v1/tx.registry.d.ts +0 -2
  1089. package/cosmos/group/v1/tx.registry.js +0 -5
  1090. package/cosmos/group/v1/tx.rpc.func.d.ts +0 -16
  1091. package/cosmos/group/v1/tx.rpc.func.js +0 -104
  1092. package/cosmos/group/v1/tx.rpc.msg.d.ts +0 -52
  1093. package/cosmos/group/v1/tx.rpc.msg.js +0 -100
  1094. package/cosmos/group/v1/types.d.ts +0 -799
  1095. package/cosmos/group/v1/types.js +0 -1542
  1096. package/cosmos/msg/textual/v1/textual.d.ts +0 -1
  1097. package/cosmos/msg/textual/v1/textual.js +0 -2
  1098. package/cosmos/nft/module/v1/module.d.ts +0 -32
  1099. package/cosmos/nft/module/v1/module.js +0 -70
  1100. package/cosmos/nft/v1beta1/event.d.ts +0 -132
  1101. package/cosmos/nft/v1beta1/event.js +0 -323
  1102. package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
  1103. package/cosmos/nft/v1beta1/genesis.js +0 -195
  1104. package/cosmos/nft/v1beta1/nft.d.ts +0 -111
  1105. package/cosmos/nft/v1beta1/nft.js +0 -282
  1106. package/cosmos/nft/v1beta1/query.d.ts +0 -508
  1107. package/cosmos/nft/v1beta1/query.js +0 -1189
  1108. package/cosmos/nft/v1beta1/query.lcd.d.ts +0 -15
  1109. package/cosmos/nft/v1beta1/query.lcd.js +0 -67
  1110. package/cosmos/nft/v1beta1/query.rpc.Query.d.ts +0 -43
  1111. package/cosmos/nft/v1beta1/query.rpc.Query.js +0 -86
  1112. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -9
  1113. package/cosmos/nft/v1beta1/query.rpc.func.js +0 -61
  1114. package/cosmos/nft/v1beta1/tx.amino.d.ts +0 -8
  1115. package/cosmos/nft/v1beta1/tx.d.ts +0 -78
  1116. package/cosmos/nft/v1beta1/tx.js +0 -184
  1117. package/cosmos/nft/v1beta1/tx.registry.d.ts +0 -2
  1118. package/cosmos/nft/v1beta1/tx.registry.js +0 -5
  1119. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -3
  1120. package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
  1121. package/cosmos/nft/v1beta1/tx.rpc.msg.d.ts +0 -13
  1122. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
  1123. package/cosmos/orm/module/v1alpha1/module.js +0 -70
  1124. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
  1125. package/cosmos/orm/query/v1alpha1/query.js +0 -751
  1126. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  1127. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  1128. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -4
  1129. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -21
  1130. package/cosmos/orm/v1/orm.d.ts +0 -278
  1131. package/cosmos/orm/v1/orm.js +0 -380
  1132. package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
  1133. package/cosmos/orm/v1alpha1/schema.js +0 -258
  1134. package/cosmos/reflection/v1/reflection.d.ts +0 -67
  1135. package/cosmos/reflection/v1/reflection.js +0 -152
  1136. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -3
  1137. package/cosmos/reflection/v1/reflection.rpc.func.js +0 -13
  1138. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
  1139. package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
  1140. package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
  1141. package/cosmos/store/snapshots/v1/snapshot.js +0 -687
  1142. package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
  1143. package/cosmos/store/snapshots/v2/snapshot.js +0 -687
  1144. package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
  1145. package/cosmos/store/streaming/abci/grpc.js +0 -332
  1146. package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
  1147. package/cosmos/store/v1beta1/commit_info.js +0 -292
  1148. package/cosmos/store/v1beta1/listening.d.ts +0 -101
  1149. package/cosmos/store/v1beta1/listening.js +0 -223
  1150. package/cosmos/streaming/v1/grpc.d.ts +0 -302
  1151. package/cosmos/streaming/v1/grpc.js +0 -826
  1152. package/cosmos/validate/module/v1/module.d.ts +0 -32
  1153. package/cosmos/validate/module/v1/module.js +0 -70
  1154. package/cosmos/vesting/module/v1/module.d.ts +0 -32
  1155. package/cosmos/vesting/module/v1/module.js +0 -70
  1156. package/cosmos/vesting/v1beta1/tx.amino.d.ts +0 -18
  1157. package/cosmos/vesting/v1beta1/tx.amino.js +0 -21
  1158. package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
  1159. package/cosmos/vesting/v1beta1/tx.js +0 -553
  1160. package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -2
  1161. package/cosmos/vesting/v1beta1/tx.registry.js +0 -5
  1162. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -5
  1163. package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -27
  1164. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -32
  1165. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -41
  1166. package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
  1167. package/cosmos/vesting/v1beta1/vesting.js +0 -586
  1168. package/esm/cosmos/app/runtime/v2/module.js +0 -418
  1169. package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
  1170. package/esm/cosmos/base/grpc/v2/service.js +0 -391
  1171. package/esm/cosmos/base/grpc/v2/service.rpc.Service.js +0 -33
  1172. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
  1173. package/esm/cosmos/circuit/module/v1/module.js +0 -80
  1174. package/esm/cosmos/circuit/v1/query.js +0 -477
  1175. package/esm/cosmos/circuit/v1/query.lcd.js +0 -30
  1176. package/esm/cosmos/circuit/v1/query.rpc.Query.js +0 -44
  1177. package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -23
  1178. package/esm/cosmos/circuit/v1/tx.amino.js +0 -18
  1179. package/esm/cosmos/circuit/v1/tx.js +0 -525
  1180. package/esm/cosmos/circuit/v1/tx.registry.js +0 -2
  1181. package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -21
  1182. package/esm/cosmos/circuit/v1/tx.rpc.msg.js +0 -31
  1183. package/esm/cosmos/circuit/v1/types.js +0 -345
  1184. package/esm/cosmos/crisis/module/v1/module.js +0 -92
  1185. package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
  1186. package/esm/cosmos/crisis/v1beta1/tx.amino.js +0 -13
  1187. package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
  1188. package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -2
  1189. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -15
  1190. package/esm/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -26
  1191. package/esm/cosmos/crypto/ed25519/keys.js +0 -159
  1192. package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
  1193. package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
  1194. package/esm/cosmos/crypto/multisig/keys.js +0 -96
  1195. package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
  1196. package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
  1197. package/esm/cosmos/genutil/module/v1/module.js +0 -67
  1198. package/esm/cosmos/group/module/v1/module.js +0 -93
  1199. package/esm/cosmos/group/v1/events.js +0 -844
  1200. package/esm/cosmos/group/v1/genesis.js +0 -180
  1201. package/esm/cosmos/group/v1/query.js +0 -2431
  1202. package/esm/cosmos/group/v1/query.lcd.js +0 -139
  1203. package/esm/cosmos/group/v1/query.rpc.Query.js +0 -149
  1204. package/esm/cosmos/group/v1/query.rpc.func.js +0 -100
  1205. package/esm/cosmos/group/v1/tx.amino.js +0 -73
  1206. package/esm/cosmos/group/v1/tx.js +0 -2562
  1207. package/esm/cosmos/group/v1/tx.registry.js +0 -2
  1208. package/esm/cosmos/group/v1/tx.rpc.func.js +0 -87
  1209. package/esm/cosmos/group/v1/tx.rpc.msg.js +0 -95
  1210. package/esm/cosmos/group/v1/types.js +0 -1533
  1211. package/esm/cosmos/msg/textual/v1/textual.js +0 -1
  1212. package/esm/cosmos/nft/module/v1/module.js +0 -67
  1213. package/esm/cosmos/nft/v1beta1/event.js +0 -320
  1214. package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
  1215. package/esm/cosmos/nft/v1beta1/nft.js +0 -279
  1216. package/esm/cosmos/nft/v1beta1/query.js +0 -1186
  1217. package/esm/cosmos/nft/v1beta1/query.lcd.js +0 -63
  1218. package/esm/cosmos/nft/v1beta1/query.rpc.Query.js +0 -81
  1219. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -51
  1220. package/esm/cosmos/nft/v1beta1/tx.amino.js +0 -8
  1221. package/esm/cosmos/nft/v1beta1/tx.js +0 -181
  1222. package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -2
  1223. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -9
  1224. package/esm/cosmos/nft/v1beta1/tx.rpc.msg.js +0 -17
  1225. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
  1226. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
  1227. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
  1228. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -16
  1229. package/esm/cosmos/orm/v1/orm.js +0 -377
  1230. package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
  1231. package/esm/cosmos/reflection/v1/reflection.js +0 -149
  1232. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -9
  1233. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
  1234. package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
  1235. package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
  1236. package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
  1237. package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
  1238. package/esm/cosmos/store/v1beta1/listening.js +0 -220
  1239. package/esm/cosmos/streaming/v1/grpc.js +0 -823
  1240. package/esm/cosmos/validate/module/v1/module.js +0 -67
  1241. package/esm/cosmos/vesting/module/v1/module.js +0 -67
  1242. package/esm/cosmos/vesting/v1beta1/tx.amino.js +0 -18
  1243. package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
  1244. package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -2
  1245. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -21
  1246. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -36
  1247. package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
  1248. package/esm/ibc/applications/fee/v1/ack.js +0 -103
  1249. package/esm/ibc/applications/fee/v1/fee.js +0 -398
  1250. package/esm/ibc/applications/fee/v1/genesis.js +0 -531
  1251. package/esm/ibc/applications/fee/v1/metadata.js +0 -90
  1252. package/esm/ibc/applications/fee/v1/query.js +0 -1739
  1253. package/esm/ibc/applications/fee/v1/query.lcd.js +0 -111
  1254. package/esm/ibc/applications/fee/v1/query.rpc.Query.js +0 -105
  1255. package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
  1256. package/esm/ibc/applications/fee/v1/tx.amino.js +0 -23
  1257. package/esm/ibc/applications/fee/v1/tx.js +0 -707
  1258. package/esm/ibc/applications/fee/v1/tx.registry.js +0 -82
  1259. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
  1260. package/esm/ibc/applications/fee/v1/tx.rpc.msg.js +0 -49
  1261. package/esm/ibc/core/channel/v1/upgrade.js +0 -300
  1262. package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
  1263. package/esm/test.js +0 -51
  1264. package/ibc/applications/fee/v1/ack.d.ts +0 -45
  1265. package/ibc/applications/fee/v1/ack.js +0 -106
  1266. package/ibc/applications/fee/v1/fee.d.ts +0 -164
  1267. package/ibc/applications/fee/v1/fee.js +0 -401
  1268. package/ibc/applications/fee/v1/genesis.d.ts +0 -225
  1269. package/ibc/applications/fee/v1/genesis.js +0 -534
  1270. package/ibc/applications/fee/v1/metadata.d.ts +0 -47
  1271. package/ibc/applications/fee/v1/metadata.js +0 -93
  1272. package/ibc/applications/fee/v1/query.d.ts +0 -757
  1273. package/ibc/applications/fee/v1/query.js +0 -1742
  1274. package/ibc/applications/fee/v1/query.lcd.d.ts +0 -18
  1275. package/ibc/applications/fee/v1/query.lcd.js +0 -115
  1276. package/ibc/applications/fee/v1/query.rpc.Query.d.ts +0 -52
  1277. package/ibc/applications/fee/v1/query.rpc.Query.js +0 -110
  1278. package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
  1279. package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
  1280. package/ibc/applications/fee/v1/tx.amino.d.ts +0 -23
  1281. package/ibc/applications/fee/v1/tx.amino.js +0 -26
  1282. package/ibc/applications/fee/v1/tx.d.ts +0 -326
  1283. package/ibc/applications/fee/v1/tx.js +0 -710
  1284. package/ibc/applications/fee/v1/tx.registry.d.ts +0 -59
  1285. package/ibc/applications/fee/v1/tx.registry.js +0 -85
  1286. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
  1287. package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
  1288. package/ibc/applications/fee/v1/tx.rpc.msg.d.ts +0 -44
  1289. package/ibc/applications/fee/v1/tx.rpc.msg.js +0 -54
  1290. package/ibc/core/channel/v1/upgrade.d.ts +0 -142
  1291. package/ibc/core/channel/v1/upgrade.js +0 -303
  1292. package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
  1293. package/ibc/lightclients/localhost/v2/localhost.js +0 -84
  1294. package/test.d.ts +0 -1
  1295. package/test.js +0 -53
@@ -8,89 +8,150 @@ import { BlockAmino as Block2Amino } from "./types";
8
8
  import { DefaultNodeInfo, DefaultNodeInfoAmino } from "../../../../tendermint/p2p/types";
9
9
  import { BinaryReader, BinaryWriter } from "../../../../binary";
10
10
  import { DeepPartial } from "../../../../helpers";
11
- /** GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. */
11
+ /**
12
+ * GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method.
13
+ * @name GetValidatorSetByHeightRequest
14
+ * @package cosmos.base.tendermint.v1beta1
15
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightRequest
16
+ */
12
17
  export interface GetValidatorSetByHeightRequest {
13
18
  height: bigint;
14
- /** pagination defines an pagination for the request. */
19
+ /**
20
+ * pagination defines an pagination for the request.
21
+ */
15
22
  pagination?: PageRequest;
16
23
  }
17
24
  export interface GetValidatorSetByHeightRequestProtoMsg {
18
25
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightRequest";
19
26
  value: Uint8Array;
20
27
  }
21
- /** GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method. */
28
+ /**
29
+ * GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method.
30
+ * @name GetValidatorSetByHeightRequestAmino
31
+ * @package cosmos.base.tendermint.v1beta1
32
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightRequest
33
+ */
22
34
  export interface GetValidatorSetByHeightRequestAmino {
23
35
  height: string;
24
- /** pagination defines an pagination for the request. */
36
+ /**
37
+ * pagination defines an pagination for the request.
38
+ */
25
39
  pagination?: PageRequestAmino;
26
40
  }
27
41
  export interface GetValidatorSetByHeightRequestAminoMsg {
28
42
  type: "cosmos-sdk/GetValidatorSetByHeightRequest";
29
43
  value: GetValidatorSetByHeightRequestAmino;
30
44
  }
31
- /** GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. */
45
+ /**
46
+ * GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method.
47
+ * @name GetValidatorSetByHeightResponse
48
+ * @package cosmos.base.tendermint.v1beta1
49
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse
50
+ */
32
51
  export interface GetValidatorSetByHeightResponse {
33
52
  blockHeight: bigint;
34
53
  validators: Validator[];
35
- /** pagination defines an pagination for the response. */
54
+ /**
55
+ * pagination defines an pagination for the response.
56
+ */
36
57
  pagination?: PageResponse;
37
58
  }
38
59
  export interface GetValidatorSetByHeightResponseProtoMsg {
39
60
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse";
40
61
  value: Uint8Array;
41
62
  }
42
- /** GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method. */
63
+ /**
64
+ * GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method.
65
+ * @name GetValidatorSetByHeightResponseAmino
66
+ * @package cosmos.base.tendermint.v1beta1
67
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse
68
+ */
43
69
  export interface GetValidatorSetByHeightResponseAmino {
44
70
  block_height: string;
45
71
  validators: ValidatorAmino[];
46
- /** pagination defines an pagination for the response. */
72
+ /**
73
+ * pagination defines an pagination for the response.
74
+ */
47
75
  pagination?: PageResponseAmino;
48
76
  }
49
77
  export interface GetValidatorSetByHeightResponseAminoMsg {
50
78
  type: "cosmos-sdk/GetValidatorSetByHeightResponse";
51
79
  value: GetValidatorSetByHeightResponseAmino;
52
80
  }
53
- /** GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method. */
81
+ /**
82
+ * GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method.
83
+ * @name GetLatestValidatorSetRequest
84
+ * @package cosmos.base.tendermint.v1beta1
85
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestValidatorSetRequest
86
+ */
54
87
  export interface GetLatestValidatorSetRequest {
55
- /** pagination defines an pagination for the request. */
88
+ /**
89
+ * pagination defines an pagination for the request.
90
+ */
56
91
  pagination?: PageRequest;
57
92
  }
58
93
  export interface GetLatestValidatorSetRequestProtoMsg {
59
94
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestValidatorSetRequest";
60
95
  value: Uint8Array;
61
96
  }
62
- /** GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method. */
97
+ /**
98
+ * GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method.
99
+ * @name GetLatestValidatorSetRequestAmino
100
+ * @package cosmos.base.tendermint.v1beta1
101
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestValidatorSetRequest
102
+ */
63
103
  export interface GetLatestValidatorSetRequestAmino {
64
- /** pagination defines an pagination for the request. */
104
+ /**
105
+ * pagination defines an pagination for the request.
106
+ */
65
107
  pagination?: PageRequestAmino;
66
108
  }
67
109
  export interface GetLatestValidatorSetRequestAminoMsg {
68
110
  type: "cosmos-sdk/GetLatestValidatorSetRequest";
69
111
  value: GetLatestValidatorSetRequestAmino;
70
112
  }
71
- /** GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. */
113
+ /**
114
+ * GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method.
115
+ * @name GetLatestValidatorSetResponse
116
+ * @package cosmos.base.tendermint.v1beta1
117
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse
118
+ */
72
119
  export interface GetLatestValidatorSetResponse {
73
120
  blockHeight: bigint;
74
121
  validators: Validator[];
75
- /** pagination defines an pagination for the response. */
122
+ /**
123
+ * pagination defines an pagination for the response.
124
+ */
76
125
  pagination?: PageResponse;
77
126
  }
78
127
  export interface GetLatestValidatorSetResponseProtoMsg {
79
128
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse";
80
129
  value: Uint8Array;
81
130
  }
82
- /** GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method. */
131
+ /**
132
+ * GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method.
133
+ * @name GetLatestValidatorSetResponseAmino
134
+ * @package cosmos.base.tendermint.v1beta1
135
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse
136
+ */
83
137
  export interface GetLatestValidatorSetResponseAmino {
84
138
  block_height: string;
85
139
  validators: ValidatorAmino[];
86
- /** pagination defines an pagination for the response. */
140
+ /**
141
+ * pagination defines an pagination for the response.
142
+ */
87
143
  pagination?: PageResponseAmino;
88
144
  }
89
145
  export interface GetLatestValidatorSetResponseAminoMsg {
90
146
  type: "cosmos-sdk/GetLatestValidatorSetResponse";
91
147
  value: GetLatestValidatorSetResponseAmino;
92
148
  }
93
- /** Validator is the type for the validator-set. */
149
+ /**
150
+ * Validator is the type for the validator-set.
151
+ * @name Validator
152
+ * @package cosmos.base.tendermint.v1beta1
153
+ * @see proto type: cosmos.base.tendermint.v1beta1.Validator
154
+ */
94
155
  export interface Validator {
95
156
  address: string;
96
157
  pubKey?: Any;
@@ -101,7 +162,12 @@ export interface ValidatorProtoMsg {
101
162
  typeUrl: "/cosmos.base.tendermint.v1beta1.Validator";
102
163
  value: Uint8Array;
103
164
  }
104
- /** Validator is the type for the validator-set. */
165
+ /**
166
+ * Validator is the type for the validator-set.
167
+ * @name ValidatorAmino
168
+ * @package cosmos.base.tendermint.v1beta1
169
+ * @see proto type: cosmos.base.tendermint.v1beta1.Validator
170
+ */
105
171
  export interface ValidatorAmino {
106
172
  address: string;
107
173
  pub_key?: AnyAmino;
@@ -112,7 +178,12 @@ export interface ValidatorAminoMsg {
112
178
  type: "cosmos-sdk/Validator";
113
179
  value: ValidatorAmino;
114
180
  }
115
- /** GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method. */
181
+ /**
182
+ * GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method.
183
+ * @name GetBlockByHeightRequest
184
+ * @package cosmos.base.tendermint.v1beta1
185
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetBlockByHeightRequest
186
+ */
116
187
  export interface GetBlockByHeightRequest {
117
188
  height: bigint;
118
189
  }
@@ -120,7 +191,12 @@ export interface GetBlockByHeightRequestProtoMsg {
120
191
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetBlockByHeightRequest";
121
192
  value: Uint8Array;
122
193
  }
123
- /** GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method. */
194
+ /**
195
+ * GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method.
196
+ * @name GetBlockByHeightRequestAmino
197
+ * @package cosmos.base.tendermint.v1beta1
198
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetBlockByHeightRequest
199
+ */
124
200
  export interface GetBlockByHeightRequestAmino {
125
201
  height: string;
126
202
  }
@@ -128,83 +204,144 @@ export interface GetBlockByHeightRequestAminoMsg {
128
204
  type: "cosmos-sdk/GetBlockByHeightRequest";
129
205
  value: GetBlockByHeightRequestAmino;
130
206
  }
131
- /** GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. */
207
+ /**
208
+ * GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method.
209
+ * @name GetBlockByHeightResponse
210
+ * @package cosmos.base.tendermint.v1beta1
211
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse
212
+ */
132
213
  export interface GetBlockByHeightResponse {
133
214
  blockId?: BlockID;
134
- /** Deprecated: please use `sdk_block` instead */
215
+ /**
216
+ * Deprecated: please use `sdk_block` instead
217
+ */
135
218
  block?: Block1;
136
- /** Since: cosmos-sdk 0.47 */
219
+ /**
220
+ * Since: cosmos-sdk 0.47
221
+ */
137
222
  sdkBlock?: Block2;
138
223
  }
139
224
  export interface GetBlockByHeightResponseProtoMsg {
140
225
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse";
141
226
  value: Uint8Array;
142
227
  }
143
- /** GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method. */
228
+ /**
229
+ * GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method.
230
+ * @name GetBlockByHeightResponseAmino
231
+ * @package cosmos.base.tendermint.v1beta1
232
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse
233
+ */
144
234
  export interface GetBlockByHeightResponseAmino {
145
235
  block_id?: BlockIDAmino;
146
- /** Deprecated: please use `sdk_block` instead */
236
+ /**
237
+ * Deprecated: please use `sdk_block` instead
238
+ */
147
239
  block?: Block1Amino;
148
- /** Since: cosmos-sdk 0.47 */
240
+ /**
241
+ * Since: cosmos-sdk 0.47
242
+ */
149
243
  sdk_block?: Block2Amino;
150
244
  }
151
245
  export interface GetBlockByHeightResponseAminoMsg {
152
246
  type: "cosmos-sdk/GetBlockByHeightResponse";
153
247
  value: GetBlockByHeightResponseAmino;
154
248
  }
155
- /** GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method. */
249
+ /**
250
+ * GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method.
251
+ * @name GetLatestBlockRequest
252
+ * @package cosmos.base.tendermint.v1beta1
253
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestBlockRequest
254
+ */
156
255
  export interface GetLatestBlockRequest {
157
256
  }
158
257
  export interface GetLatestBlockRequestProtoMsg {
159
258
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestBlockRequest";
160
259
  value: Uint8Array;
161
260
  }
162
- /** GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method. */
261
+ /**
262
+ * GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method.
263
+ * @name GetLatestBlockRequestAmino
264
+ * @package cosmos.base.tendermint.v1beta1
265
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestBlockRequest
266
+ */
163
267
  export interface GetLatestBlockRequestAmino {
164
268
  }
165
269
  export interface GetLatestBlockRequestAminoMsg {
166
270
  type: "cosmos-sdk/GetLatestBlockRequest";
167
271
  value: GetLatestBlockRequestAmino;
168
272
  }
169
- /** GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method. */
273
+ /**
274
+ * GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method.
275
+ * @name GetLatestBlockResponse
276
+ * @package cosmos.base.tendermint.v1beta1
277
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestBlockResponse
278
+ */
170
279
  export interface GetLatestBlockResponse {
171
280
  blockId?: BlockID;
172
- /** Deprecated: please use `sdk_block` instead */
281
+ /**
282
+ * Deprecated: please use `sdk_block` instead
283
+ */
173
284
  block?: Block1;
174
- /** Since: cosmos-sdk 0.47 */
285
+ /**
286
+ * Since: cosmos-sdk 0.47
287
+ */
175
288
  sdkBlock?: Block2;
176
289
  }
177
290
  export interface GetLatestBlockResponseProtoMsg {
178
291
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetLatestBlockResponse";
179
292
  value: Uint8Array;
180
293
  }
181
- /** GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method. */
294
+ /**
295
+ * GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method.
296
+ * @name GetLatestBlockResponseAmino
297
+ * @package cosmos.base.tendermint.v1beta1
298
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestBlockResponse
299
+ */
182
300
  export interface GetLatestBlockResponseAmino {
183
301
  block_id?: BlockIDAmino;
184
- /** Deprecated: please use `sdk_block` instead */
302
+ /**
303
+ * Deprecated: please use `sdk_block` instead
304
+ */
185
305
  block?: Block1Amino;
186
- /** Since: cosmos-sdk 0.47 */
306
+ /**
307
+ * Since: cosmos-sdk 0.47
308
+ */
187
309
  sdk_block?: Block2Amino;
188
310
  }
189
311
  export interface GetLatestBlockResponseAminoMsg {
190
312
  type: "cosmos-sdk/GetLatestBlockResponse";
191
313
  value: GetLatestBlockResponseAmino;
192
314
  }
193
- /** GetSyncingRequest is the request type for the Query/GetSyncing RPC method. */
315
+ /**
316
+ * GetSyncingRequest is the request type for the Query/GetSyncing RPC method.
317
+ * @name GetSyncingRequest
318
+ * @package cosmos.base.tendermint.v1beta1
319
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetSyncingRequest
320
+ */
194
321
  export interface GetSyncingRequest {
195
322
  }
196
323
  export interface GetSyncingRequestProtoMsg {
197
324
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetSyncingRequest";
198
325
  value: Uint8Array;
199
326
  }
200
- /** GetSyncingRequest is the request type for the Query/GetSyncing RPC method. */
327
+ /**
328
+ * GetSyncingRequest is the request type for the Query/GetSyncing RPC method.
329
+ * @name GetSyncingRequestAmino
330
+ * @package cosmos.base.tendermint.v1beta1
331
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetSyncingRequest
332
+ */
201
333
  export interface GetSyncingRequestAmino {
202
334
  }
203
335
  export interface GetSyncingRequestAminoMsg {
204
336
  type: "cosmos-sdk/GetSyncingRequest";
205
337
  value: GetSyncingRequestAmino;
206
338
  }
207
- /** GetSyncingResponse is the response type for the Query/GetSyncing RPC method. */
339
+ /**
340
+ * GetSyncingResponse is the response type for the Query/GetSyncing RPC method.
341
+ * @name GetSyncingResponse
342
+ * @package cosmos.base.tendermint.v1beta1
343
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetSyncingResponse
344
+ */
208
345
  export interface GetSyncingResponse {
209
346
  syncing: boolean;
210
347
  }
@@ -212,7 +349,12 @@ export interface GetSyncingResponseProtoMsg {
212
349
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetSyncingResponse";
213
350
  value: Uint8Array;
214
351
  }
215
- /** GetSyncingResponse is the response type for the Query/GetSyncing RPC method. */
352
+ /**
353
+ * GetSyncingResponse is the response type for the Query/GetSyncing RPC method.
354
+ * @name GetSyncingResponseAmino
355
+ * @package cosmos.base.tendermint.v1beta1
356
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetSyncingResponse
357
+ */
216
358
  export interface GetSyncingResponseAmino {
217
359
  syncing: boolean;
218
360
  }
@@ -220,21 +362,36 @@ export interface GetSyncingResponseAminoMsg {
220
362
  type: "cosmos-sdk/GetSyncingResponse";
221
363
  value: GetSyncingResponseAmino;
222
364
  }
223
- /** GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method. */
365
+ /**
366
+ * GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method.
367
+ * @name GetNodeInfoRequest
368
+ * @package cosmos.base.tendermint.v1beta1
369
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetNodeInfoRequest
370
+ */
224
371
  export interface GetNodeInfoRequest {
225
372
  }
226
373
  export interface GetNodeInfoRequestProtoMsg {
227
374
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetNodeInfoRequest";
228
375
  value: Uint8Array;
229
376
  }
230
- /** GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method. */
377
+ /**
378
+ * GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method.
379
+ * @name GetNodeInfoRequestAmino
380
+ * @package cosmos.base.tendermint.v1beta1
381
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetNodeInfoRequest
382
+ */
231
383
  export interface GetNodeInfoRequestAmino {
232
384
  }
233
385
  export interface GetNodeInfoRequestAminoMsg {
234
386
  type: "cosmos-sdk/GetNodeInfoRequest";
235
387
  value: GetNodeInfoRequestAmino;
236
388
  }
237
- /** GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method. */
389
+ /**
390
+ * GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method.
391
+ * @name GetNodeInfoResponse
392
+ * @package cosmos.base.tendermint.v1beta1
393
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetNodeInfoResponse
394
+ */
238
395
  export interface GetNodeInfoResponse {
239
396
  defaultNodeInfo?: DefaultNodeInfo;
240
397
  applicationVersion?: VersionInfo;
@@ -243,7 +400,12 @@ export interface GetNodeInfoResponseProtoMsg {
243
400
  typeUrl: "/cosmos.base.tendermint.v1beta1.GetNodeInfoResponse";
244
401
  value: Uint8Array;
245
402
  }
246
- /** GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method. */
403
+ /**
404
+ * GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method.
405
+ * @name GetNodeInfoResponseAmino
406
+ * @package cosmos.base.tendermint.v1beta1
407
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetNodeInfoResponse
408
+ */
247
409
  export interface GetNodeInfoResponseAmino {
248
410
  default_node_info?: DefaultNodeInfoAmino;
249
411
  application_version?: VersionInfoAmino;
@@ -252,7 +414,12 @@ export interface GetNodeInfoResponseAminoMsg {
252
414
  type: "cosmos-sdk/GetNodeInfoResponse";
253
415
  value: GetNodeInfoResponseAmino;
254
416
  }
255
- /** VersionInfo is the type for the GetNodeInfoResponse message. */
417
+ /**
418
+ * VersionInfo is the type for the GetNodeInfoResponse message.
419
+ * @name VersionInfo
420
+ * @package cosmos.base.tendermint.v1beta1
421
+ * @see proto type: cosmos.base.tendermint.v1beta1.VersionInfo
422
+ */
256
423
  export interface VersionInfo {
257
424
  name: string;
258
425
  appName: string;
@@ -261,14 +428,21 @@ export interface VersionInfo {
261
428
  buildTags: string;
262
429
  goVersion: string;
263
430
  buildDeps: Module[];
264
- /** Since: cosmos-sdk 0.43 */
431
+ /**
432
+ * Since: cosmos-sdk 0.43
433
+ */
265
434
  cosmosSdkVersion: string;
266
435
  }
267
436
  export interface VersionInfoProtoMsg {
268
437
  typeUrl: "/cosmos.base.tendermint.v1beta1.VersionInfo";
269
438
  value: Uint8Array;
270
439
  }
271
- /** VersionInfo is the type for the GetNodeInfoResponse message. */
440
+ /**
441
+ * VersionInfo is the type for the GetNodeInfoResponse message.
442
+ * @name VersionInfoAmino
443
+ * @package cosmos.base.tendermint.v1beta1
444
+ * @see proto type: cosmos.base.tendermint.v1beta1.VersionInfo
445
+ */
272
446
  export interface VersionInfoAmino {
273
447
  name: string;
274
448
  app_name: string;
@@ -277,40 +451,69 @@ export interface VersionInfoAmino {
277
451
  build_tags: string;
278
452
  go_version: string;
279
453
  build_deps: ModuleAmino[];
280
- /** Since: cosmos-sdk 0.43 */
454
+ /**
455
+ * Since: cosmos-sdk 0.43
456
+ */
281
457
  cosmos_sdk_version: string;
282
458
  }
283
459
  export interface VersionInfoAminoMsg {
284
460
  type: "cosmos-sdk/VersionInfo";
285
461
  value: VersionInfoAmino;
286
462
  }
287
- /** Module is the type for VersionInfo */
463
+ /**
464
+ * Module is the type for VersionInfo
465
+ * @name Module
466
+ * @package cosmos.base.tendermint.v1beta1
467
+ * @see proto type: cosmos.base.tendermint.v1beta1.Module
468
+ */
288
469
  export interface Module {
289
- /** module path */
470
+ /**
471
+ * module path
472
+ */
290
473
  path: string;
291
- /** module version */
474
+ /**
475
+ * module version
476
+ */
292
477
  version: string;
293
- /** checksum */
478
+ /**
479
+ * checksum
480
+ */
294
481
  sum: string;
295
482
  }
296
483
  export interface ModuleProtoMsg {
297
484
  typeUrl: "/cosmos.base.tendermint.v1beta1.Module";
298
485
  value: Uint8Array;
299
486
  }
300
- /** Module is the type for VersionInfo */
487
+ /**
488
+ * Module is the type for VersionInfo
489
+ * @name ModuleAmino
490
+ * @package cosmos.base.tendermint.v1beta1
491
+ * @see proto type: cosmos.base.tendermint.v1beta1.Module
492
+ */
301
493
  export interface ModuleAmino {
302
- /** module path */
494
+ /**
495
+ * module path
496
+ */
303
497
  path: string;
304
- /** module version */
498
+ /**
499
+ * module version
500
+ */
305
501
  version: string;
306
- /** checksum */
502
+ /**
503
+ * checksum
504
+ */
307
505
  sum: string;
308
506
  }
309
507
  export interface ModuleAminoMsg {
310
508
  type: "cosmos-sdk/Module";
311
509
  value: ModuleAmino;
312
510
  }
313
- /** ABCIQueryRequest defines the request structure for the ABCIQuery gRPC query. */
511
+ /**
512
+ * ABCIQueryRequest defines the request structure for the ABCIQuery gRPC query.
513
+ * @name ABCIQueryRequest
514
+ * @package cosmos.base.tendermint.v1beta1
515
+ * @see proto type: cosmos.base.tendermint.v1beta1.ABCIQueryRequest
516
+ */
314
517
  export interface ABCIQueryRequest {
315
518
  data: Uint8Array;
316
519
  path: string;
@@ -321,7 +524,12 @@ export interface ABCIQueryRequestProtoMsg {
321
524
  typeUrl: "/cosmos.base.tendermint.v1beta1.ABCIQueryRequest";
322
525
  value: Uint8Array;
323
526
  }
324
- /** ABCIQueryRequest defines the request structure for the ABCIQuery gRPC query. */
527
+ /**
528
+ * ABCIQueryRequest defines the request structure for the ABCIQuery gRPC query.
529
+ * @name ABCIQueryRequestAmino
530
+ * @package cosmos.base.tendermint.v1beta1
531
+ * @see proto type: cosmos.base.tendermint.v1beta1.ABCIQueryRequest
532
+ */
325
533
  export interface ABCIQueryRequestAmino {
326
534
  data: string;
327
535
  path: string;
@@ -337,12 +545,19 @@ export interface ABCIQueryRequestAminoMsg {
337
545
  *
338
546
  * Note: This type is a duplicate of the ResponseQuery proto type defined in
339
547
  * Tendermint.
548
+ * @name ABCIQueryResponse
549
+ * @package cosmos.base.tendermint.v1beta1
550
+ * @see proto type: cosmos.base.tendermint.v1beta1.ABCIQueryResponse
340
551
  */
341
552
  export interface ABCIQueryResponse {
342
553
  code: number;
343
- /** nondeterministic */
554
+ /**
555
+ * nondeterministic
556
+ */
344
557
  log: string;
345
- /** nondeterministic */
558
+ /**
559
+ * nondeterministic
560
+ */
346
561
  info: string;
347
562
  index: bigint;
348
563
  key: Uint8Array;
@@ -360,12 +575,19 @@ export interface ABCIQueryResponseProtoMsg {
360
575
  *
361
576
  * Note: This type is a duplicate of the ResponseQuery proto type defined in
362
577
  * Tendermint.
578
+ * @name ABCIQueryResponseAmino
579
+ * @package cosmos.base.tendermint.v1beta1
580
+ * @see proto type: cosmos.base.tendermint.v1beta1.ABCIQueryResponse
363
581
  */
364
582
  export interface ABCIQueryResponseAmino {
365
583
  code: number;
366
- /** nondeterministic */
584
+ /**
585
+ * nondeterministic
586
+ */
367
587
  log: string;
368
- /** nondeterministic */
588
+ /**
589
+ * nondeterministic
590
+ */
369
591
  info: string;
370
592
  index: string;
371
593
  key: string;
@@ -384,6 +606,9 @@ export interface ABCIQueryResponseAminoMsg {
384
606
  * hash.
385
607
  *
386
608
  * Note: This type is a duplicate of the ProofOp proto type defined in Tendermint.
609
+ * @name ProofOp
610
+ * @package cosmos.base.tendermint.v1beta1
611
+ * @see proto type: cosmos.base.tendermint.v1beta1.ProofOp
387
612
  */
388
613
  export interface ProofOp {
389
614
  type: string;
@@ -400,6 +625,9 @@ export interface ProofOpProtoMsg {
400
625
  * hash.
401
626
  *
402
627
  * Note: This type is a duplicate of the ProofOp proto type defined in Tendermint.
628
+ * @name ProofOpAmino
629
+ * @package cosmos.base.tendermint.v1beta1
630
+ * @see proto type: cosmos.base.tendermint.v1beta1.ProofOp
403
631
  */
404
632
  export interface ProofOpAmino {
405
633
  type: string;
@@ -414,6 +642,9 @@ export interface ProofOpAminoMsg {
414
642
  * ProofOps is Merkle proof defined by the list of ProofOps.
415
643
  *
416
644
  * Note: This type is a duplicate of the ProofOps proto type defined in Tendermint.
645
+ * @name ProofOps
646
+ * @package cosmos.base.tendermint.v1beta1
647
+ * @see proto type: cosmos.base.tendermint.v1beta1.ProofOps
417
648
  */
418
649
  export interface ProofOps {
419
650
  ops: ProofOp[];
@@ -426,6 +657,9 @@ export interface ProofOpsProtoMsg {
426
657
  * ProofOps is Merkle proof defined by the list of ProofOps.
427
658
  *
428
659
  * Note: This type is a duplicate of the ProofOps proto type defined in Tendermint.
660
+ * @name ProofOpsAmino
661
+ * @package cosmos.base.tendermint.v1beta1
662
+ * @see proto type: cosmos.base.tendermint.v1beta1.ProofOps
429
663
  */
430
664
  export interface ProofOpsAmino {
431
665
  ops: ProofOpAmino[];
@@ -434,6 +668,12 @@ export interface ProofOpsAminoMsg {
434
668
  type: "cosmos-sdk/ProofOps";
435
669
  value: ProofOpsAmino;
436
670
  }
671
+ /**
672
+ * GetValidatorSetByHeightRequest is the request type for the Query/GetValidatorSetByHeight RPC method.
673
+ * @name GetValidatorSetByHeightRequest
674
+ * @package cosmos.base.tendermint.v1beta1
675
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightRequest
676
+ */
437
677
  export declare const GetValidatorSetByHeightRequest: {
438
678
  typeUrl: string;
439
679
  aminoType: string;
@@ -451,6 +691,12 @@ export declare const GetValidatorSetByHeightRequest: {
451
691
  toProtoMsg(message: GetValidatorSetByHeightRequest): GetValidatorSetByHeightRequestProtoMsg;
452
692
  registerTypeUrl(): void;
453
693
  };
694
+ /**
695
+ * GetValidatorSetByHeightResponse is the response type for the Query/GetValidatorSetByHeight RPC method.
696
+ * @name GetValidatorSetByHeightResponse
697
+ * @package cosmos.base.tendermint.v1beta1
698
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeightResponse
699
+ */
454
700
  export declare const GetValidatorSetByHeightResponse: {
455
701
  typeUrl: string;
456
702
  aminoType: string;
@@ -468,6 +714,12 @@ export declare const GetValidatorSetByHeightResponse: {
468
714
  toProtoMsg(message: GetValidatorSetByHeightResponse): GetValidatorSetByHeightResponseProtoMsg;
469
715
  registerTypeUrl(): void;
470
716
  };
717
+ /**
718
+ * GetLatestValidatorSetRequest is the request type for the Query/GetValidatorSetByHeight RPC method.
719
+ * @name GetLatestValidatorSetRequest
720
+ * @package cosmos.base.tendermint.v1beta1
721
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestValidatorSetRequest
722
+ */
471
723
  export declare const GetLatestValidatorSetRequest: {
472
724
  typeUrl: string;
473
725
  aminoType: string;
@@ -485,6 +737,12 @@ export declare const GetLatestValidatorSetRequest: {
485
737
  toProtoMsg(message: GetLatestValidatorSetRequest): GetLatestValidatorSetRequestProtoMsg;
486
738
  registerTypeUrl(): void;
487
739
  };
740
+ /**
741
+ * GetLatestValidatorSetResponse is the response type for the Query/GetValidatorSetByHeight RPC method.
742
+ * @name GetLatestValidatorSetResponse
743
+ * @package cosmos.base.tendermint.v1beta1
744
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestValidatorSetResponse
745
+ */
488
746
  export declare const GetLatestValidatorSetResponse: {
489
747
  typeUrl: string;
490
748
  aminoType: string;
@@ -502,6 +760,12 @@ export declare const GetLatestValidatorSetResponse: {
502
760
  toProtoMsg(message: GetLatestValidatorSetResponse): GetLatestValidatorSetResponseProtoMsg;
503
761
  registerTypeUrl(): void;
504
762
  };
763
+ /**
764
+ * Validator is the type for the validator-set.
765
+ * @name Validator
766
+ * @package cosmos.base.tendermint.v1beta1
767
+ * @see proto type: cosmos.base.tendermint.v1beta1.Validator
768
+ */
505
769
  export declare const Validator: {
506
770
  typeUrl: string;
507
771
  aminoType: string;
@@ -519,6 +783,12 @@ export declare const Validator: {
519
783
  toProtoMsg(message: Validator): ValidatorProtoMsg;
520
784
  registerTypeUrl(): void;
521
785
  };
786
+ /**
787
+ * GetBlockByHeightRequest is the request type for the Query/GetBlockByHeight RPC method.
788
+ * @name GetBlockByHeightRequest
789
+ * @package cosmos.base.tendermint.v1beta1
790
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetBlockByHeightRequest
791
+ */
522
792
  export declare const GetBlockByHeightRequest: {
523
793
  typeUrl: string;
524
794
  aminoType: string;
@@ -536,6 +806,12 @@ export declare const GetBlockByHeightRequest: {
536
806
  toProtoMsg(message: GetBlockByHeightRequest): GetBlockByHeightRequestProtoMsg;
537
807
  registerTypeUrl(): void;
538
808
  };
809
+ /**
810
+ * GetBlockByHeightResponse is the response type for the Query/GetBlockByHeight RPC method.
811
+ * @name GetBlockByHeightResponse
812
+ * @package cosmos.base.tendermint.v1beta1
813
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetBlockByHeightResponse
814
+ */
539
815
  export declare const GetBlockByHeightResponse: {
540
816
  typeUrl: string;
541
817
  aminoType: string;
@@ -553,6 +829,12 @@ export declare const GetBlockByHeightResponse: {
553
829
  toProtoMsg(message: GetBlockByHeightResponse): GetBlockByHeightResponseProtoMsg;
554
830
  registerTypeUrl(): void;
555
831
  };
832
+ /**
833
+ * GetLatestBlockRequest is the request type for the Query/GetLatestBlock RPC method.
834
+ * @name GetLatestBlockRequest
835
+ * @package cosmos.base.tendermint.v1beta1
836
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestBlockRequest
837
+ */
556
838
  export declare const GetLatestBlockRequest: {
557
839
  typeUrl: string;
558
840
  aminoType: string;
@@ -570,6 +852,12 @@ export declare const GetLatestBlockRequest: {
570
852
  toProtoMsg(message: GetLatestBlockRequest): GetLatestBlockRequestProtoMsg;
571
853
  registerTypeUrl(): void;
572
854
  };
855
+ /**
856
+ * GetLatestBlockResponse is the response type for the Query/GetLatestBlock RPC method.
857
+ * @name GetLatestBlockResponse
858
+ * @package cosmos.base.tendermint.v1beta1
859
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetLatestBlockResponse
860
+ */
573
861
  export declare const GetLatestBlockResponse: {
574
862
  typeUrl: string;
575
863
  aminoType: string;
@@ -587,6 +875,12 @@ export declare const GetLatestBlockResponse: {
587
875
  toProtoMsg(message: GetLatestBlockResponse): GetLatestBlockResponseProtoMsg;
588
876
  registerTypeUrl(): void;
589
877
  };
878
+ /**
879
+ * GetSyncingRequest is the request type for the Query/GetSyncing RPC method.
880
+ * @name GetSyncingRequest
881
+ * @package cosmos.base.tendermint.v1beta1
882
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetSyncingRequest
883
+ */
590
884
  export declare const GetSyncingRequest: {
591
885
  typeUrl: string;
592
886
  aminoType: string;
@@ -604,6 +898,12 @@ export declare const GetSyncingRequest: {
604
898
  toProtoMsg(message: GetSyncingRequest): GetSyncingRequestProtoMsg;
605
899
  registerTypeUrl(): void;
606
900
  };
901
+ /**
902
+ * GetSyncingResponse is the response type for the Query/GetSyncing RPC method.
903
+ * @name GetSyncingResponse
904
+ * @package cosmos.base.tendermint.v1beta1
905
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetSyncingResponse
906
+ */
607
907
  export declare const GetSyncingResponse: {
608
908
  typeUrl: string;
609
909
  aminoType: string;
@@ -621,6 +921,12 @@ export declare const GetSyncingResponse: {
621
921
  toProtoMsg(message: GetSyncingResponse): GetSyncingResponseProtoMsg;
622
922
  registerTypeUrl(): void;
623
923
  };
924
+ /**
925
+ * GetNodeInfoRequest is the request type for the Query/GetNodeInfo RPC method.
926
+ * @name GetNodeInfoRequest
927
+ * @package cosmos.base.tendermint.v1beta1
928
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetNodeInfoRequest
929
+ */
624
930
  export declare const GetNodeInfoRequest: {
625
931
  typeUrl: string;
626
932
  aminoType: string;
@@ -638,6 +944,12 @@ export declare const GetNodeInfoRequest: {
638
944
  toProtoMsg(message: GetNodeInfoRequest): GetNodeInfoRequestProtoMsg;
639
945
  registerTypeUrl(): void;
640
946
  };
947
+ /**
948
+ * GetNodeInfoResponse is the response type for the Query/GetNodeInfo RPC method.
949
+ * @name GetNodeInfoResponse
950
+ * @package cosmos.base.tendermint.v1beta1
951
+ * @see proto type: cosmos.base.tendermint.v1beta1.GetNodeInfoResponse
952
+ */
641
953
  export declare const GetNodeInfoResponse: {
642
954
  typeUrl: string;
643
955
  aminoType: string;
@@ -655,6 +967,12 @@ export declare const GetNodeInfoResponse: {
655
967
  toProtoMsg(message: GetNodeInfoResponse): GetNodeInfoResponseProtoMsg;
656
968
  registerTypeUrl(): void;
657
969
  };
970
+ /**
971
+ * VersionInfo is the type for the GetNodeInfoResponse message.
972
+ * @name VersionInfo
973
+ * @package cosmos.base.tendermint.v1beta1
974
+ * @see proto type: cosmos.base.tendermint.v1beta1.VersionInfo
975
+ */
658
976
  export declare const VersionInfo: {
659
977
  typeUrl: string;
660
978
  aminoType: string;
@@ -672,6 +990,12 @@ export declare const VersionInfo: {
672
990
  toProtoMsg(message: VersionInfo): VersionInfoProtoMsg;
673
991
  registerTypeUrl(): void;
674
992
  };
993
+ /**
994
+ * Module is the type for VersionInfo
995
+ * @name Module
996
+ * @package cosmos.base.tendermint.v1beta1
997
+ * @see proto type: cosmos.base.tendermint.v1beta1.Module
998
+ */
675
999
  export declare const Module: {
676
1000
  typeUrl: string;
677
1001
  aminoType: string;
@@ -689,6 +1013,12 @@ export declare const Module: {
689
1013
  toProtoMsg(message: Module): ModuleProtoMsg;
690
1014
  registerTypeUrl(): void;
691
1015
  };
1016
+ /**
1017
+ * ABCIQueryRequest defines the request structure for the ABCIQuery gRPC query.
1018
+ * @name ABCIQueryRequest
1019
+ * @package cosmos.base.tendermint.v1beta1
1020
+ * @see proto type: cosmos.base.tendermint.v1beta1.ABCIQueryRequest
1021
+ */
692
1022
  export declare const ABCIQueryRequest: {
693
1023
  typeUrl: string;
694
1024
  aminoType: string;
@@ -706,6 +1036,15 @@ export declare const ABCIQueryRequest: {
706
1036
  toProtoMsg(message: ABCIQueryRequest): ABCIQueryRequestProtoMsg;
707
1037
  registerTypeUrl(): void;
708
1038
  };
1039
+ /**
1040
+ * ABCIQueryResponse defines the response structure for the ABCIQuery gRPC query.
1041
+ *
1042
+ * Note: This type is a duplicate of the ResponseQuery proto type defined in
1043
+ * Tendermint.
1044
+ * @name ABCIQueryResponse
1045
+ * @package cosmos.base.tendermint.v1beta1
1046
+ * @see proto type: cosmos.base.tendermint.v1beta1.ABCIQueryResponse
1047
+ */
709
1048
  export declare const ABCIQueryResponse: {
710
1049
  typeUrl: string;
711
1050
  aminoType: string;
@@ -723,6 +1062,16 @@ export declare const ABCIQueryResponse: {
723
1062
  toProtoMsg(message: ABCIQueryResponse): ABCIQueryResponseProtoMsg;
724
1063
  registerTypeUrl(): void;
725
1064
  };
1065
+ /**
1066
+ * ProofOp defines an operation used for calculating Merkle root. The data could
1067
+ * be arbitrary format, providing necessary data for example neighbouring node
1068
+ * hash.
1069
+ *
1070
+ * Note: This type is a duplicate of the ProofOp proto type defined in Tendermint.
1071
+ * @name ProofOp
1072
+ * @package cosmos.base.tendermint.v1beta1
1073
+ * @see proto type: cosmos.base.tendermint.v1beta1.ProofOp
1074
+ */
726
1075
  export declare const ProofOp: {
727
1076
  typeUrl: string;
728
1077
  aminoType: string;
@@ -740,6 +1089,14 @@ export declare const ProofOp: {
740
1089
  toProtoMsg(message: ProofOp): ProofOpProtoMsg;
741
1090
  registerTypeUrl(): void;
742
1091
  };
1092
+ /**
1093
+ * ProofOps is Merkle proof defined by the list of ProofOps.
1094
+ *
1095
+ * Note: This type is a duplicate of the ProofOps proto type defined in Tendermint.
1096
+ * @name ProofOps
1097
+ * @package cosmos.base.tendermint.v1beta1
1098
+ * @see proto type: cosmos.base.tendermint.v1beta1.ProofOps
1099
+ */
743
1100
  export declare const ProofOps: {
744
1101
  typeUrl: string;
745
1102
  aminoType: string;