@xpla/xplajs 1.7.0 → 1.8.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1265) 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/mint/module/v1/module.d.ts +24 -4
  222. package/cosmos/mint/module/v1/module.js +6 -0
  223. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  224. package/cosmos/mint/v1beta1/genesis.js +10 -0
  225. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  226. package/cosmos/mint/v1beta1/mint.js +12 -0
  227. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  228. package/cosmos/mint/v1beta1/query.js +43 -0
  229. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
  230. package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
  231. package/cosmos/mint/v1beta1/tx.d.ts +35 -2
  232. package/cosmos/mint/v1beta1/tx.js +21 -0
  233. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
  234. package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
  235. package/cosmos/params/module/v1/module.d.ts +18 -2
  236. package/cosmos/params/module/v1/module.js +6 -0
  237. package/cosmos/params/v1beta1/params.d.ts +31 -2
  238. package/cosmos/params/v1beta1/params.js +16 -0
  239. package/cosmos/params/v1beta1/query.d.ts +99 -10
  240. package/cosmos/params/v1beta1/query.js +46 -0
  241. package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
  242. package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
  243. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  244. package/cosmos/slashing/module/v1/module.js +6 -0
  245. package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
  246. package/cosmos/slashing/v1beta1/genesis.js +35 -0
  247. package/cosmos/slashing/v1beta1/query.d.ts +106 -10
  248. package/cosmos/slashing/v1beta1/query.js +53 -0
  249. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
  250. package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
  251. package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
  252. package/cosmos/slashing/v1beta1/slashing.js +13 -0
  253. package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
  254. package/cosmos/slashing/v1beta1/tx.js +33 -0
  255. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
  256. package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
  257. package/cosmos/staking/module/v1/module.d.ts +36 -8
  258. package/cosmos/staking/module/v1/module.js +6 -0
  259. package/cosmos/staking/v1beta1/authz.d.ts +44 -6
  260. package/cosmos/staking/v1beta1/authz.js +17 -0
  261. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  262. package/cosmos/staking/v1beta1/genesis.js +16 -0
  263. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  264. package/cosmos/staking/v1beta1/query.js +250 -0
  265. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
  266. package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
  267. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  268. package/cosmos/staking/v1beta1/staking.js +186 -0
  269. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  270. package/cosmos/staking/v1beta1/tx.js +120 -0
  271. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
  272. package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
  273. package/cosmos/tx/config/v1/config.d.ts +18 -2
  274. package/cosmos/tx/config/v1/config.js +6 -0
  275. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  276. package/cosmos/tx/signing/v1beta1/signing.js +46 -0
  277. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  278. package/cosmos/tx/v1beta1/service.js +176 -0
  279. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
  280. package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
  281. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  282. package/cosmos/tx/v1beta1/tx.js +127 -0
  283. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  284. package/cosmos/upgrade/module/v1/module.js +6 -0
  285. package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
  286. package/cosmos/upgrade/v1beta1/query.js +85 -0
  287. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
  288. package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
  289. package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
  290. package/cosmos/upgrade/v1beta1/tx.js +36 -0
  291. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
  292. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
  293. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  294. package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  295. package/cosmos_proto/bundle.d.ts +1 -0
  296. package/cosmos_proto/bundle.js +8 -0
  297. package/cosmos_proto/cosmos.d.ts +31 -0
  298. package/cosmos_proto/cosmos.js +19 -0
  299. package/cosmwasm/bundle.d.ts +10 -0
  300. package/cosmwasm/bundle.js +141 -0
  301. package/cosmwasm/wasm/v1/authz.d.ts +212 -22
  302. package/cosmwasm/wasm/v1/authz.js +113 -0
  303. package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
  304. package/cosmwasm/wasm/v1/genesis.js +34 -0
  305. package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
  306. package/cosmwasm/wasm/v1/ibc.js +24 -0
  307. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  308. package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  309. package/cosmwasm/wasm/v1/query.d.ts +761 -76
  310. package/cosmwasm/wasm/v1/query.js +581 -1
  311. package/cosmwasm/wasm/v1/query.lcd.d.ts +3 -1
  312. package/cosmwasm/wasm/v1/query.lcd.js +12 -1
  313. package/cosmwasm/wasm/v1/query.rpc.Query.d.ts +13 -2
  314. package/cosmwasm/wasm/v1/query.rpc.Query.js +20 -1
  315. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
  316. package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
  317. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  318. package/cosmwasm/wasm/v1/tx.js +267 -0
  319. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
  320. package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
  321. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  322. package/cosmwasm/wasm/v1/types.js +58 -0
  323. package/esm/binary.js +1 -1
  324. package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
  325. package/esm/cosmos/app/v1alpha1/config.js +31 -0
  326. package/esm/cosmos/app/v1alpha1/module.js +23 -0
  327. package/esm/cosmos/app/v1alpha1/query.js +16 -0
  328. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
  329. package/esm/cosmos/auth/module/v1/module.js +16 -0
  330. package/esm/cosmos/auth/v1beta1/auth.js +34 -0
  331. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  332. package/esm/cosmos/auth/v1beta1/query.js +169 -0
  333. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
  334. package/esm/cosmos/auth/v1beta1/tx.js +21 -0
  335. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
  336. package/esm/cosmos/authz/module/v1/module.js +6 -0
  337. package/esm/cosmos/authz/v1beta1/authz.js +36 -0
  338. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  339. package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
  340. package/esm/cosmos/authz/v1beta1/query.js +55 -0
  341. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
  342. package/esm/cosmos/authz/v1beta1/tx.js +43 -0
  343. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
  344. package/esm/cosmos/autocli/v1/options.js +54 -0
  345. package/esm/cosmos/autocli/v1/query.js +21 -0
  346. package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
  347. package/esm/cosmos/bank/module/v1/module.js +6 -0
  348. package/esm/cosmos/bank/v1beta1/authz.js +12 -0
  349. package/esm/cosmos/bank/v1beta1/bank.js +63 -0
  350. package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
  351. package/esm/cosmos/bank/v1beta1/query.js +263 -0
  352. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
  353. package/esm/cosmos/bank/v1beta1/tx.js +74 -0
  354. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
  355. package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
  356. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  357. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
  358. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  359. package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  360. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
  361. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  362. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
  363. package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
  364. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
  365. package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
  366. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  367. package/esm/cosmos/bundle.js +150 -0
  368. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  369. package/esm/cosmos/consensus/v1/query.js +16 -0
  370. package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
  371. package/esm/cosmos/consensus/v1/tx.js +17 -0
  372. package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
  373. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  374. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  375. package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
  376. package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
  377. package/esm/cosmos/distribution/v1beta1/query.js +164 -0
  378. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
  379. package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
  380. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
  381. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  382. package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
  383. package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
  384. package/esm/cosmos/evidence/v1beta1/query.js +33 -0
  385. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
  386. package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
  387. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
  388. package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
  389. package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
  390. package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
  391. package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
  392. package/esm/cosmos/evm/feemarket/v1/query.lcd.js +21 -0
  393. package/esm/cosmos/evm/feemarket/v1/query.rpc.Query.js +42 -0
  394. package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
  395. package/esm/cosmos/evm/feemarket/v1/tx.amino.js +8 -0
  396. package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
  397. package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
  398. package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
  399. package/esm/cosmos/evm/feemarket/v1/tx.rpc.msg.js +19 -0
  400. package/esm/cosmos/evm/vm/v1/events.js +432 -0
  401. package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
  402. package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
  403. package/esm/cosmos/evm/vm/v1/query.js +2677 -0
  404. package/esm/cosmos/evm/vm/v1/query.lcd.js +171 -0
  405. package/esm/cosmos/evm/vm/v1/query.rpc.Query.js +150 -0
  406. package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
  407. package/esm/cosmos/evm/vm/v1/tx.amino.js +13 -0
  408. package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
  409. package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
  410. package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
  411. package/esm/cosmos/evm/vm/v1/tx.rpc.msg.js +25 -0
  412. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  413. package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  414. package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
  415. package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
  416. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
  417. package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
  418. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
  419. package/esm/cosmos/gov/module/v1/module.js +6 -0
  420. package/esm/cosmos/gov/v1/genesis.js +10 -0
  421. package/esm/cosmos/gov/v1/gov.js +77 -0
  422. package/esm/cosmos/gov/v1/query.js +143 -0
  423. package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
  424. package/esm/cosmos/gov/v1/tx.js +111 -3
  425. package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
  426. package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
  427. package/esm/cosmos/gov/v1beta1/gov.js +74 -3
  428. package/esm/cosmos/gov/v1beta1/query.js +131 -0
  429. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
  430. package/esm/cosmos/gov/v1beta1/tx.js +62 -3
  431. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
  432. package/esm/cosmos/ics23/v1/proofs.js +169 -0
  433. package/esm/cosmos/mint/module/v1/module.js +6 -0
  434. package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
  435. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  436. package/esm/cosmos/mint/v1beta1/query.js +43 -0
  437. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
  438. package/esm/cosmos/mint/v1beta1/tx.js +21 -0
  439. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
  440. package/esm/cosmos/params/module/v1/module.js +6 -0
  441. package/esm/cosmos/params/v1beta1/params.js +16 -0
  442. package/esm/cosmos/params/v1beta1/query.js +46 -0
  443. package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
  444. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  445. package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
  446. package/esm/cosmos/slashing/v1beta1/query.js +53 -0
  447. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
  448. package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
  449. package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
  450. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
  451. package/esm/cosmos/staking/module/v1/module.js +6 -0
  452. package/esm/cosmos/staking/v1beta1/authz.js +17 -0
  453. package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
  454. package/esm/cosmos/staking/v1beta1/query.js +250 -0
  455. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
  456. package/esm/cosmos/staking/v1beta1/staking.js +186 -0
  457. package/esm/cosmos/staking/v1beta1/tx.js +120 -0
  458. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
  459. package/esm/cosmos/tx/config/v1/config.js +6 -0
  460. package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
  461. package/esm/cosmos/tx/v1beta1/service.js +176 -0
  462. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
  463. package/esm/cosmos/tx/v1beta1/tx.js +127 -0
  464. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  465. package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
  466. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
  467. package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
  468. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
  469. package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  470. package/esm/cosmos_proto/bundle.js +1 -0
  471. package/esm/cosmos_proto/cosmos.js +19 -0
  472. package/esm/cosmwasm/bundle.js +10 -0
  473. package/esm/cosmwasm/wasm/v1/authz.js +113 -0
  474. package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
  475. package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
  476. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  477. package/esm/cosmwasm/wasm/v1/query.js +580 -0
  478. package/esm/cosmwasm/wasm/v1/query.lcd.js +12 -1
  479. package/esm/cosmwasm/wasm/v1/query.rpc.Query.js +21 -2
  480. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
  481. package/esm/cosmwasm/wasm/v1/tx.js +267 -0
  482. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
  483. package/esm/cosmwasm/wasm/v1/types.js +58 -0
  484. package/esm/ethermint/bundle.js +21 -0
  485. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  486. package/esm/ethermint/evm/v1/events.js +24 -0
  487. package/esm/ethermint/evm/v1/evm.js +69 -0
  488. package/esm/ethermint/evm/v1/genesis.js +21 -0
  489. package/esm/ethermint/evm/v1/query.js +167 -0
  490. package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
  491. package/esm/ethermint/evm/v1/tx.js +66 -0
  492. package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
  493. package/esm/ethermint/feemarket/v1/events.js +12 -0
  494. package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
  495. package/esm/ethermint/feemarket/v1/genesis.js +10 -0
  496. package/esm/ethermint/feemarket/v1/query.js +42 -0
  497. package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
  498. package/esm/ethermint/feemarket/v1/tx.js +17 -0
  499. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
  500. package/esm/ethermint/types/v1/account.js +10 -0
  501. package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
  502. package/esm/ethermint/types/v1/indexer.js +6 -0
  503. package/esm/ethermint/types/v1/web3.js +7 -0
  504. package/esm/extern.js +14 -4
  505. package/esm/google/api/http.js +290 -0
  506. package/esm/google/bundle.js +5 -0
  507. package/esm/google/protobuf/any.js +90 -0
  508. package/esm/google/protobuf/descriptor.js +553 -11
  509. package/esm/google/protobuf/duration.js +63 -0
  510. package/esm/google/protobuf/timestamp.js +94 -0
  511. package/esm/helper-func-types.js +14 -22
  512. package/esm/helpers.js +1 -1
  513. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  514. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  515. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
  516. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  517. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
  518. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  519. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  520. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  521. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
  522. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  523. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
  524. package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
  525. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  526. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  527. package/esm/ibc/applications/transfer/v1/authz.js +19 -0
  528. package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
  529. package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
  530. package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  531. package/esm/ibc/applications/transfer/v1/query.js +270 -175
  532. package/esm/ibc/applications/transfer/v1/query.lcd.js +12 -12
  533. package/esm/ibc/applications/transfer/v1/query.rpc.Query.js +21 -21
  534. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
  535. package/esm/ibc/applications/transfer/v1/token.js +300 -0
  536. package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
  537. package/esm/ibc/applications/transfer/v1/tx.js +49 -3
  538. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
  539. package/esm/ibc/bundle.js +76 -0
  540. package/esm/ibc/core/channel/v1/channel.js +84 -124
  541. package/esm/ibc/core/channel/v1/genesis.js +21 -17
  542. package/esm/ibc/core/channel/v1/query.js +252 -530
  543. package/esm/ibc/core/channel/v1/query.lcd.js +0 -15
  544. package/esm/ibc/core/channel/v1/query.rpc.Query.js +1 -28
  545. package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
  546. package/esm/ibc/core/channel/v1/tx.amino.js +1 -46
  547. package/esm/ibc/core/channel/v1/tx.js +164 -1970
  548. package/esm/ibc/core/channel/v1/tx.registry.js +2 -164
  549. package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
  550. package/esm/ibc/core/channel/v1/tx.rpc.msg.js +1 -55
  551. package/esm/ibc/core/channel/v2/genesis.js +360 -0
  552. package/esm/ibc/core/channel/v2/packet.js +508 -0
  553. package/esm/ibc/core/channel/v2/query.js +1727 -0
  554. package/esm/ibc/core/channel/v2/query.lcd.js +62 -0
  555. package/esm/ibc/core/channel/v2/query.rpc.Query.js +87 -0
  556. package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
  557. package/esm/ibc/core/channel/v2/tx.amino.js +23 -0
  558. package/esm/ibc/core/channel/v2/tx.js +901 -0
  559. package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
  560. package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
  561. package/esm/ibc/core/channel/v2/tx.rpc.msg.js +35 -0
  562. package/esm/ibc/core/client/v1/client.js +50 -235
  563. package/esm/ibc/core/client/v1/genesis.js +27 -0
  564. package/esm/ibc/core/client/v1/query.js +355 -16
  565. package/esm/ibc/core/client/v1/query.lcd.js +5 -0
  566. package/esm/ibc/core/client/v1/query.rpc.Query.js +10 -1
  567. package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
  568. package/esm/ibc/core/client/v1/tx.amino.js +6 -1
  569. package/esm/ibc/core/client/v1/tx.js +279 -7
  570. package/esm/ibc/core/client/v1/tx.registry.js +20 -2
  571. package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
  572. package/esm/ibc/core/client/v1/tx.rpc.msg.js +7 -1
  573. package/esm/ibc/core/client/v2/config.js +90 -0
  574. package/esm/ibc/core/client/v2/counterparty.js +100 -0
  575. package/esm/ibc/core/client/v2/genesis.js +194 -0
  576. package/esm/ibc/core/client/v2/query.js +348 -0
  577. package/esm/ibc/core/client/v2/query.lcd.js +16 -0
  578. package/esm/ibc/core/client/v2/query.rpc.Query.js +33 -0
  579. package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
  580. package/esm/ibc/core/client/v2/tx.amino.js +13 -0
  581. package/esm/ibc/core/client/v2/tx.js +378 -0
  582. package/esm/ibc/core/client/v2/tx.registry.js +46 -0
  583. package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
  584. package/esm/ibc/core/client/v2/tx.rpc.msg.js +23 -0
  585. package/esm/ibc/core/commitment/v1/commitment.js +29 -80
  586. package/esm/ibc/core/commitment/v2/commitment.js +118 -0
  587. package/esm/ibc/core/connection/v1/connection.js +57 -0
  588. package/esm/ibc/core/connection/v1/genesis.js +10 -0
  589. package/esm/ibc/core/connection/v1/query.js +105 -0
  590. package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
  591. package/esm/ibc/core/connection/v1/tx.js +82 -0
  592. package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
  593. package/esm/ibc/core/types/v1/genesis.js +41 -3
  594. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  595. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  596. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  597. package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
  598. package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
  599. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
  600. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  601. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
  602. package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
  603. package/esm/index.js +20 -0
  604. package/esm/registry.js +9 -1
  605. package/esm/tendermint/abci/types.js +322 -0
  606. package/esm/tendermint/bundle.js +10 -0
  607. package/esm/tendermint/crypto/keys.js +6 -0
  608. package/esm/tendermint/crypto/proof.js +36 -0
  609. package/esm/tendermint/p2p/types.js +24 -0
  610. package/esm/tendermint/types/block.js +9 -0
  611. package/esm/tendermint/types/evidence.js +35 -0
  612. package/esm/tendermint/types/params.js +50 -0
  613. package/esm/tendermint/types/types.js +121 -0
  614. package/esm/tendermint/types/validator.js +25 -0
  615. package/esm/tendermint/version/types.js +16 -0
  616. package/esm/types.js +1 -1
  617. package/esm/utf8.js +1 -1
  618. package/esm/varint.js +1 -1
  619. package/esm/xpla/bundle.js +22 -0
  620. package/esm/xpla/burn/v1beta1/burn.js +111 -0
  621. package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  622. package/esm/xpla/burn/v1beta1/query.js +327 -0
  623. package/esm/xpla/burn/v1beta1/query.lcd.js +22 -0
  624. package/esm/xpla/burn/v1beta1/query.rpc.Query.js +33 -0
  625. package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
  626. package/esm/xpla/burn/v1beta1/tx.amino.js +8 -0
  627. package/esm/xpla/burn/v1beta1/tx.js +169 -0
  628. package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
  629. package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
  630. package/esm/xpla/burn/v1beta1/tx.rpc.msg.js +17 -0
  631. package/esm/xpla/lcd.js +23 -34
  632. package/esm/xpla/reward/v1beta1/genesis.js +10 -0
  633. package/esm/xpla/reward/v1beta1/query.js +33 -0
  634. package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
  635. package/esm/xpla/reward/v1beta1/reward.js +6 -0
  636. package/esm/xpla/reward/v1beta1/tx.js +35 -0
  637. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
  638. package/esm/xpla/rpc.query.js +15 -33
  639. package/esm/xpla/rpc.tx.js +90 -1
  640. package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
  641. package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
  642. package/esm/xpla/volunteer/v1beta1/query.js +12 -0
  643. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
  644. package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
  645. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
  646. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  647. package/ethermint/bundle.d.ts +21 -0
  648. package/ethermint/bundle.js +120 -0
  649. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
  650. package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  651. package/ethermint/evm/v1/events.d.ts +144 -32
  652. package/ethermint/evm/v1/events.js +24 -0
  653. package/ethermint/evm/v1/evm.d.ts +434 -110
  654. package/ethermint/evm/v1/evm.js +69 -0
  655. package/ethermint/evm/v1/genesis.d.ts +62 -12
  656. package/ethermint/evm/v1/genesis.js +21 -0
  657. package/ethermint/evm/v1/query.d.ts +673 -126
  658. package/ethermint/evm/v1/query.js +167 -0
  659. package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
  660. package/ethermint/evm/v1/query.rpc.func.js +88 -37
  661. package/ethermint/evm/v1/tx.d.ts +363 -88
  662. package/ethermint/evm/v1/tx.js +66 -0
  663. package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
  664. package/ethermint/evm/v1/tx.rpc.func.js +18 -16
  665. package/ethermint/feemarket/v1/events.d.ts +54 -10
  666. package/ethermint/feemarket/v1/events.js +12 -0
  667. package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
  668. package/ethermint/feemarket/v1/feemarket.js +6 -0
  669. package/ethermint/feemarket/v1/genesis.d.ts +24 -4
  670. package/ethermint/feemarket/v1/genesis.js +10 -0
  671. package/ethermint/feemarket/v1/query.d.ts +116 -14
  672. package/ethermint/feemarket/v1/query.js +42 -0
  673. package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
  674. package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
  675. package/ethermint/feemarket/v1/tx.d.ts +37 -4
  676. package/ethermint/feemarket/v1/tx.js +17 -0
  677. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
  678. package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
  679. package/ethermint/types/v1/account.d.ts +25 -4
  680. package/ethermint/types/v1/account.js +10 -0
  681. package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
  682. package/ethermint/types/v1/dynamic_fee.js +6 -0
  683. package/ethermint/types/v1/indexer.d.ts +42 -10
  684. package/ethermint/types/v1/indexer.js +6 -0
  685. package/ethermint/types/v1/web3.d.ts +13 -0
  686. package/ethermint/types/v1/web3.js +7 -0
  687. package/extern.d.ts +3 -2
  688. package/extern.js +14 -4
  689. package/google/api/http.d.ts +343 -14
  690. package/google/api/http.js +290 -0
  691. package/google/bundle.d.ts +5 -0
  692. package/google/bundle.js +21 -0
  693. package/google/protobuf/any.d.ts +102 -2
  694. package/google/protobuf/any.js +90 -0
  695. package/google/protobuf/descriptor.d.ts +833 -86
  696. package/google/protobuf/descriptor.js +561 -13
  697. package/google/protobuf/duration.d.ts +69 -0
  698. package/google/protobuf/duration.js +63 -0
  699. package/google/protobuf/timestamp.d.ts +100 -0
  700. package/google/protobuf/timestamp.js +94 -0
  701. package/helper-func-types.d.ts +7 -87
  702. package/helper-func-types.js +15 -24
  703. package/helpers.d.ts +1 -1
  704. package/helpers.js +1 -1
  705. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  706. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  707. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  708. package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  709. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
  710. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
  711. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  712. package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  713. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
  714. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
  715. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  716. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  717. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  718. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  719. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  720. package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  721. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
  722. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
  723. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  724. package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  725. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
  726. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
  727. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  728. package/ibc/applications/interchain_accounts/v1/account.js +9 -0
  729. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  730. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  731. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  732. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  733. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  734. package/ibc/applications/transfer/v1/authz.js +19 -0
  735. package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
  736. package/ibc/applications/transfer/v1/denomtrace.js +101 -0
  737. package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
  738. package/ibc/applications/transfer/v1/genesis.js +23 -12
  739. package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
  740. package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  741. package/ibc/applications/transfer/v1/query.d.ts +389 -170
  742. package/ibc/applications/transfer/v1/query.js +270 -175
  743. package/ibc/applications/transfer/v1/query.lcd.d.ts +3 -3
  744. package/ibc/applications/transfer/v1/query.lcd.js +12 -12
  745. package/ibc/applications/transfer/v1/query.rpc.Query.d.ts +9 -9
  746. package/ibc/applications/transfer/v1/query.rpc.Query.js +20 -20
  747. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
  748. package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
  749. package/ibc/applications/transfer/v1/token.d.ts +179 -0
  750. package/ibc/applications/transfer/v1/token.js +303 -0
  751. package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
  752. package/ibc/applications/transfer/v1/transfer.js +10 -90
  753. package/ibc/applications/transfer/v1/tx.d.ts +127 -24
  754. package/ibc/applications/transfer/v1/tx.js +49 -3
  755. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
  756. package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
  757. package/ibc/bundle.d.ts +76 -0
  758. package/ibc/bundle.js +451 -0
  759. package/ibc/core/channel/v1/channel.d.ts +293 -120
  760. package/ibc/core/channel/v1/channel.js +85 -125
  761. package/ibc/core/channel/v1/genesis.d.ts +38 -7
  762. package/ibc/core/channel/v1/genesis.js +20 -16
  763. package/ibc/core/channel/v1/query.d.ts +840 -378
  764. package/ibc/core/channel/v1/query.js +252 -530
  765. package/ibc/core/channel/v1/query.lcd.d.ts +1 -4
  766. package/ibc/core/channel/v1/query.lcd.js +0 -15
  767. package/ibc/core/channel/v1/query.rpc.Query.d.ts +1 -13
  768. package/ibc/core/channel/v1/query.rpc.Query.js +0 -27
  769. package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
  770. package/ibc/core/channel/v1/query.rpc.func.js +107 -70
  771. package/ibc/core/channel/v1/tx.amino.d.ts +1 -46
  772. package/ibc/core/channel/v1/tx.amino.js +0 -45
  773. package/ibc/core/channel/v1/tx.d.ts +335 -747
  774. package/ibc/core/channel/v1/tx.js +164 -1970
  775. package/ibc/core/channel/v1/tx.registry.d.ts +1 -109
  776. package/ibc/core/channel/v1/tx.registry.js +1 -163
  777. package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
  778. package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
  779. package/ibc/core/channel/v1/tx.rpc.msg.d.ts +1 -28
  780. package/ibc/core/channel/v1/tx.rpc.msg.js +0 -54
  781. package/ibc/core/channel/v2/genesis.d.ts +202 -0
  782. package/ibc/core/channel/v2/genesis.js +363 -0
  783. package/ibc/core/channel/v2/packet.d.ts +322 -0
  784. package/ibc/core/channel/v2/packet.js +513 -0
  785. package/ibc/core/channel/v2/query.d.ts +1067 -0
  786. package/ibc/core/channel/v2/query.js +1730 -0
  787. package/ibc/core/channel/v2/query.lcd.d.ts +16 -0
  788. package/ibc/core/channel/v2/query.lcd.js +66 -0
  789. package/ibc/core/channel/v2/query.rpc.Query.d.ts +44 -0
  790. package/ibc/core/channel/v2/query.rpc.Query.js +92 -0
  791. package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
  792. package/ibc/core/channel/v2/query.rpc.func.js +109 -0
  793. package/ibc/core/channel/v2/tx.amino.d.ts +23 -0
  794. package/ibc/core/channel/v2/tx.amino.js +26 -0
  795. package/ibc/core/channel/v2/tx.d.ts +437 -0
  796. package/ibc/core/channel/v2/tx.js +906 -0
  797. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  798. package/ibc/core/channel/v2/tx.registry.js +85 -0
  799. package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
  800. package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
  801. package/ibc/core/channel/v2/tx.rpc.msg.d.ts +22 -0
  802. package/ibc/core/channel/v2/tx.rpc.msg.js +40 -0
  803. package/ibc/core/client/v1/client.d.ts +133 -153
  804. package/ibc/core/client/v1/client.js +51 -236
  805. package/ibc/core/client/v1/genesis.d.ts +86 -20
  806. package/ibc/core/client/v1/genesis.js +27 -0
  807. package/ibc/core/client/v1/query.d.ts +591 -75
  808. package/ibc/core/client/v1/query.js +356 -17
  809. package/ibc/core/client/v1/query.lcd.d.ts +2 -1
  810. package/ibc/core/client/v1/query.lcd.js +5 -0
  811. package/ibc/core/client/v1/query.rpc.Query.d.ts +5 -1
  812. package/ibc/core/client/v1/query.rpc.Query.js +9 -0
  813. package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
  814. package/ibc/core/client/v1/query.rpc.func.js +86 -31
  815. package/ibc/core/client/v1/tx.amino.d.ts +6 -1
  816. package/ibc/core/client/v1/tx.amino.js +5 -0
  817. package/ibc/core/client/v1/tx.d.ts +454 -60
  818. package/ibc/core/client/v1/tx.js +280 -8
  819. package/ibc/core/client/v1/tx.registry.d.ts +13 -1
  820. package/ibc/core/client/v1/tx.registry.js +19 -1
  821. package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
  822. package/ibc/core/client/v1/tx.rpc.func.js +73 -58
  823. package/ibc/core/client/v1/tx.rpc.msg.d.ts +4 -1
  824. package/ibc/core/client/v1/tx.rpc.msg.js +6 -0
  825. package/ibc/core/client/v2/config.d.ts +66 -0
  826. package/ibc/core/client/v2/config.js +93 -0
  827. package/ibc/core/client/v2/counterparty.d.ts +65 -0
  828. package/ibc/core/client/v2/counterparty.js +103 -0
  829. package/ibc/core/client/v2/genesis.d.ts +121 -0
  830. package/ibc/core/client/v2/genesis.js +197 -0
  831. package/ibc/core/client/v2/query.d.ts +218 -0
  832. package/ibc/core/client/v2/query.js +351 -0
  833. package/ibc/core/client/v2/query.lcd.d.ts +10 -0
  834. package/ibc/core/client/v2/query.lcd.js +20 -0
  835. package/ibc/core/client/v2/query.rpc.Query.d.ts +20 -0
  836. package/ibc/core/client/v2/query.rpc.Query.js +38 -0
  837. package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
  838. package/ibc/core/client/v2/query.rpc.func.js +31 -0
  839. package/ibc/core/client/v2/tx.amino.d.ts +13 -0
  840. package/ibc/core/client/v2/tx.amino.js +16 -0
  841. package/ibc/core/client/v2/tx.d.ts +251 -0
  842. package/ibc/core/client/v2/tx.js +381 -0
  843. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  844. package/ibc/core/client/v2/tx.registry.js +49 -0
  845. package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
  846. package/ibc/core/client/v2/tx.rpc.func.js +23 -0
  847. package/ibc/core/client/v2/tx.rpc.msg.d.ts +16 -0
  848. package/ibc/core/client/v2/tx.rpc.msg.js +28 -0
  849. package/ibc/core/commitment/v1/commitment.d.ts +43 -41
  850. package/ibc/core/commitment/v1/commitment.js +30 -81
  851. package/ibc/core/commitment/v2/commitment.d.ts +141 -0
  852. package/ibc/core/commitment/v2/commitment.js +121 -0
  853. package/ibc/core/connection/v1/connection.d.ts +199 -38
  854. package/ibc/core/connection/v1/connection.js +57 -0
  855. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  856. package/ibc/core/connection/v1/genesis.js +10 -0
  857. package/ibc/core/connection/v1/query.d.ts +293 -46
  858. package/ibc/core/connection/v1/query.js +105 -0
  859. package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
  860. package/ibc/core/connection/v1/query.rpc.func.js +46 -19
  861. package/ibc/core/connection/v1/tx.d.ts +254 -32
  862. package/ibc/core/connection/v1/tx.js +82 -0
  863. package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
  864. package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
  865. package/ibc/core/types/v1/genesis.d.ts +56 -8
  866. package/ibc/core/types/v1/genesis.js +41 -3
  867. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
  868. package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  869. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
  870. package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  871. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
  872. package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  873. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  874. package/ibc/lightclients/wasm/v1/genesis.js +16 -0
  875. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  876. package/ibc/lightclients/wasm/v1/query.js +31 -0
  877. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
  878. package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
  879. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  880. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  881. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
  882. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
  883. package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
  884. package/ibc/lightclients/wasm/v1/wasm.js +32 -0
  885. package/index.d.ts +20 -0
  886. package/index.js +36 -0
  887. package/package.json +9 -12
  888. package/registry.d.ts +3 -1
  889. package/registry.js +9 -1
  890. package/tendermint/abci/types.d.ts +971 -98
  891. package/tendermint/abci/types.js +322 -0
  892. package/tendermint/bundle.d.ts +10 -0
  893. package/tendermint/bundle.js +115 -0
  894. package/tendermint/crypto/keys.d.ts +18 -2
  895. package/tendermint/crypto/keys.js +6 -0
  896. package/tendermint/crypto/proof.d.ts +89 -6
  897. package/tendermint/crypto/proof.js +36 -0
  898. package/tendermint/p2p/types.d.ts +60 -0
  899. package/tendermint/p2p/types.js +24 -0
  900. package/tendermint/types/block.d.ts +15 -0
  901. package/tendermint/types/block.js +9 -0
  902. package/tendermint/types/evidence.d.ts +66 -4
  903. package/tendermint/types/evidence.js +35 -0
  904. package/tendermint/types/params.d.ts +112 -8
  905. package/tendermint/types/params.js +50 -0
  906. package/tendermint/types/types.d.ts +327 -42
  907. package/tendermint/types/types.js +121 -0
  908. package/tendermint/types/validator.d.ts +45 -0
  909. package/tendermint/types/validator.js +25 -0
  910. package/tendermint/version/types.d.ts +28 -0
  911. package/tendermint/version/types.js +16 -0
  912. package/types.d.ts +4 -49
  913. package/types.js +1 -1
  914. package/utf8.d.ts +1 -1
  915. package/utf8.js +1 -1
  916. package/varint.d.ts +1 -1
  917. package/varint.js +1 -1
  918. package/xpla/bundle.d.ts +22 -0
  919. package/xpla/bundle.js +61 -0
  920. package/xpla/burn/v1beta1/burn.d.ts +54 -0
  921. package/xpla/burn/v1beta1/burn.js +114 -0
  922. package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
  923. package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  924. package/xpla/burn/v1beta1/query.d.ts +204 -0
  925. package/xpla/burn/v1beta1/query.js +330 -0
  926. package/xpla/burn/v1beta1/query.lcd.d.ts +10 -0
  927. package/xpla/burn/v1beta1/query.lcd.js +26 -0
  928. package/xpla/burn/v1beta1/query.rpc.Query.d.ts +20 -0
  929. package/xpla/burn/v1beta1/query.rpc.Query.js +38 -0
  930. package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
  931. package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
  932. package/xpla/burn/v1beta1/tx.amino.d.ts +8 -0
  933. package/{cosmos/nft → xpla/burn}/v1beta1/tx.amino.js +4 -4
  934. package/xpla/burn/v1beta1/tx.d.ts +105 -0
  935. package/xpla/burn/v1beta1/tx.js +172 -0
  936. package/xpla/burn/v1beta1/tx.registry.d.ts +23 -0
  937. package/xpla/burn/v1beta1/tx.registry.js +31 -0
  938. package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
  939. package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
  940. package/xpla/burn/v1beta1/tx.rpc.msg.d.ts +13 -0
  941. package/{cosmos/nft → xpla/burn}/v1beta1/tx.rpc.msg.js +5 -5
  942. package/xpla/lcd.d.ts +13 -22
  943. package/xpla/lcd.js +23 -34
  944. package/xpla/reward/v1beta1/genesis.d.ts +24 -4
  945. package/xpla/reward/v1beta1/genesis.js +10 -0
  946. package/xpla/reward/v1beta1/query.d.ts +74 -8
  947. package/xpla/reward/v1beta1/query.js +33 -0
  948. package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
  949. package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
  950. package/xpla/reward/v1beta1/reward.d.ts +18 -2
  951. package/xpla/reward/v1beta1/reward.js +6 -0
  952. package/xpla/reward/v1beta1/tx.d.ts +64 -4
  953. package/xpla/reward/v1beta1/tx.js +35 -0
  954. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
  955. package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
  956. package/xpla/rpc.query.d.ts +204 -232
  957. package/xpla/rpc.query.js +15 -33
  958. package/xpla/rpc.tx.d.ts +90 -1
  959. package/xpla/rpc.tx.js +113 -1
  960. package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
  961. package/xpla/volunteer/v1beta1/genesis.js +10 -0
  962. package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
  963. package/xpla/volunteer/v1beta1/proposal.js +34 -0
  964. package/xpla/volunteer/v1beta1/query.d.ts +36 -4
  965. package/xpla/volunteer/v1beta1/query.js +12 -0
  966. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
  967. package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
  968. package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
  969. package/xpla/volunteer/v1beta1/tx.js +31 -0
  970. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
  971. package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
  972. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
  973. package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  974. package/cosmos/app/runtime/v2/module.d.ts +0 -231
  975. package/cosmos/app/runtime/v2/module.js +0 -421
  976. package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
  977. package/cosmos/auth/v1beta1/accounts.js +0 -161
  978. package/cosmos/base/grpc/v2/service.d.ts +0 -168
  979. package/cosmos/base/grpc/v2/service.js +0 -394
  980. package/cosmos/base/grpc/v2/service.rpc.Service.d.ts +0 -20
  981. package/cosmos/base/grpc/v2/service.rpc.Service.js +0 -38
  982. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
  983. package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
  984. package/cosmos/circuit/module/v1/module.d.ts +0 -36
  985. package/cosmos/circuit/module/v1/module.js +0 -83
  986. package/cosmos/circuit/v1/query.d.ts +0 -200
  987. package/cosmos/circuit/v1/query.js +0 -480
  988. package/cosmos/circuit/v1/query.lcd.d.ts +0 -11
  989. package/cosmos/circuit/v1/query.lcd.js +0 -34
  990. package/cosmos/circuit/v1/query.rpc.Query.d.ts +0 -24
  991. package/cosmos/circuit/v1/query.rpc.Query.js +0 -49
  992. package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -5
  993. package/cosmos/circuit/v1/query.rpc.func.js +0 -29
  994. package/cosmos/circuit/v1/tx.amino.d.ts +0 -18
  995. package/cosmos/circuit/v1/tx.amino.js +0 -21
  996. package/cosmos/circuit/v1/tx.d.ts +0 -251
  997. package/cosmos/circuit/v1/tx.js +0 -528
  998. package/cosmos/circuit/v1/tx.registry.d.ts +0 -2
  999. package/cosmos/circuit/v1/tx.registry.js +0 -5
  1000. package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -5
  1001. package/cosmos/circuit/v1/tx.rpc.func.js +0 -27
  1002. package/cosmos/circuit/v1/tx.rpc.msg.d.ts +0 -25
  1003. package/cosmos/circuit/v1/tx.rpc.msg.js +0 -36
  1004. package/cosmos/circuit/v1/types.d.ts +0 -151
  1005. package/cosmos/circuit/v1/types.js +0 -350
  1006. package/cosmos/crisis/module/v1/module.d.ts +0 -40
  1007. package/cosmos/crisis/module/v1/module.js +0 -95
  1008. package/cosmos/crisis/v1beta1/genesis.js +0 -84
  1009. package/cosmos/crisis/v1beta1/tx.amino.d.ts +0 -13
  1010. package/cosmos/crisis/v1beta1/tx.amino.js +0 -16
  1011. package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
  1012. package/cosmos/crisis/v1beta1/tx.js +0 -328
  1013. package/cosmos/crisis/v1beta1/tx.registry.d.ts +0 -2
  1014. package/cosmos/crisis/v1beta1/tx.registry.js +0 -5
  1015. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -4
  1016. package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -20
  1017. package/cosmos/crisis/v1beta1/tx.rpc.msg.d.ts +0 -21
  1018. package/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -31
  1019. package/cosmos/crypto/ed25519/keys.d.ts +0 -84
  1020. package/cosmos/crypto/ed25519/keys.js +0 -162
  1021. package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
  1022. package/cosmos/crypto/hd/v1/hd.js +0 -131
  1023. package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
  1024. package/cosmos/crypto/keyring/v1/record.js +0 -431
  1025. package/cosmos/crypto/multisig/keys.d.ts +0 -45
  1026. package/cosmos/crypto/multisig/keys.js +0 -99
  1027. package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
  1028. package/cosmos/crypto/secp256k1/keys.js +0 -162
  1029. package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
  1030. package/cosmos/crypto/secp256r1/keys.js +0 -162
  1031. package/cosmos/genutil/module/v1/module.d.ts +0 -32
  1032. package/cosmos/genutil/module/v1/module.js +0 -70
  1033. package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
  1034. package/cosmos/group/module/v1/module.d.ts +0 -53
  1035. package/cosmos/group/module/v1/module.js +0 -96
  1036. package/cosmos/group/v1/events.d.ts +0 -363
  1037. package/cosmos/group/v1/events.js +0 -847
  1038. package/cosmos/group/v1/genesis.d.ts +0 -83
  1039. package/cosmos/group/v1/genesis.js +0 -183
  1040. package/cosmos/group/v1/query.d.ts +0 -1044
  1041. package/cosmos/group/v1/query.js +0 -2434
  1042. package/cosmos/group/v1/query.lcd.d.ts +0 -22
  1043. package/cosmos/group/v1/query.lcd.js +0 -143
  1044. package/cosmos/group/v1/query.rpc.Query.d.ts +0 -78
  1045. package/cosmos/group/v1/query.rpc.Query.js +0 -154
  1046. package/cosmos/group/v1/query.rpc.func.d.ts +0 -16
  1047. package/cosmos/group/v1/query.rpc.func.js +0 -117
  1048. package/cosmos/group/v1/tx.amino.d.ts +0 -73
  1049. package/cosmos/group/v1/tx.amino.js +0 -76
  1050. package/cosmos/group/v1/tx.d.ts +0 -1140
  1051. package/cosmos/group/v1/tx.js +0 -2567
  1052. package/cosmos/group/v1/tx.registry.d.ts +0 -2
  1053. package/cosmos/group/v1/tx.registry.js +0 -5
  1054. package/cosmos/group/v1/tx.rpc.func.d.ts +0 -16
  1055. package/cosmos/group/v1/tx.rpc.func.js +0 -104
  1056. package/cosmos/group/v1/tx.rpc.msg.d.ts +0 -52
  1057. package/cosmos/group/v1/tx.rpc.msg.js +0 -100
  1058. package/cosmos/group/v1/types.d.ts +0 -799
  1059. package/cosmos/group/v1/types.js +0 -1542
  1060. package/cosmos/msg/textual/v1/textual.d.ts +0 -1
  1061. package/cosmos/msg/textual/v1/textual.js +0 -2
  1062. package/cosmos/nft/module/v1/module.d.ts +0 -32
  1063. package/cosmos/nft/module/v1/module.js +0 -70
  1064. package/cosmos/nft/v1beta1/event.d.ts +0 -132
  1065. package/cosmos/nft/v1beta1/event.js +0 -323
  1066. package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
  1067. package/cosmos/nft/v1beta1/genesis.js +0 -195
  1068. package/cosmos/nft/v1beta1/nft.d.ts +0 -111
  1069. package/cosmos/nft/v1beta1/nft.js +0 -282
  1070. package/cosmos/nft/v1beta1/query.d.ts +0 -508
  1071. package/cosmos/nft/v1beta1/query.js +0 -1189
  1072. package/cosmos/nft/v1beta1/query.lcd.d.ts +0 -15
  1073. package/cosmos/nft/v1beta1/query.lcd.js +0 -67
  1074. package/cosmos/nft/v1beta1/query.rpc.Query.d.ts +0 -43
  1075. package/cosmos/nft/v1beta1/query.rpc.Query.js +0 -86
  1076. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -9
  1077. package/cosmos/nft/v1beta1/query.rpc.func.js +0 -61
  1078. package/cosmos/nft/v1beta1/tx.amino.d.ts +0 -8
  1079. package/cosmos/nft/v1beta1/tx.d.ts +0 -78
  1080. package/cosmos/nft/v1beta1/tx.js +0 -184
  1081. package/cosmos/nft/v1beta1/tx.registry.d.ts +0 -2
  1082. package/cosmos/nft/v1beta1/tx.registry.js +0 -5
  1083. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -3
  1084. package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
  1085. package/cosmos/nft/v1beta1/tx.rpc.msg.d.ts +0 -13
  1086. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
  1087. package/cosmos/orm/module/v1alpha1/module.js +0 -70
  1088. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
  1089. package/cosmos/orm/query/v1alpha1/query.js +0 -751
  1090. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  1091. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  1092. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -4
  1093. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -21
  1094. package/cosmos/orm/v1/orm.d.ts +0 -278
  1095. package/cosmos/orm/v1/orm.js +0 -380
  1096. package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
  1097. package/cosmos/orm/v1alpha1/schema.js +0 -258
  1098. package/cosmos/reflection/v1/reflection.d.ts +0 -67
  1099. package/cosmos/reflection/v1/reflection.js +0 -152
  1100. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -3
  1101. package/cosmos/reflection/v1/reflection.rpc.func.js +0 -13
  1102. package/cosmos/rpc.query.d.ts +0 -81
  1103. package/cosmos/rpc.query.js +0 -52
  1104. package/cosmos/rpc.tx.d.ts +0 -32
  1105. package/cosmos/rpc.tx.js +0 -56
  1106. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
  1107. package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
  1108. package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
  1109. package/cosmos/store/snapshots/v1/snapshot.js +0 -687
  1110. package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
  1111. package/cosmos/store/snapshots/v2/snapshot.js +0 -687
  1112. package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
  1113. package/cosmos/store/streaming/abci/grpc.js +0 -332
  1114. package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
  1115. package/cosmos/store/v1beta1/commit_info.js +0 -292
  1116. package/cosmos/store/v1beta1/listening.d.ts +0 -101
  1117. package/cosmos/store/v1beta1/listening.js +0 -223
  1118. package/cosmos/streaming/v1/grpc.d.ts +0 -302
  1119. package/cosmos/streaming/v1/grpc.js +0 -826
  1120. package/cosmos/validate/module/v1/module.d.ts +0 -32
  1121. package/cosmos/validate/module/v1/module.js +0 -70
  1122. package/cosmos/vesting/module/v1/module.d.ts +0 -32
  1123. package/cosmos/vesting/module/v1/module.js +0 -70
  1124. package/cosmos/vesting/v1beta1/tx.amino.d.ts +0 -18
  1125. package/cosmos/vesting/v1beta1/tx.amino.js +0 -21
  1126. package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
  1127. package/cosmos/vesting/v1beta1/tx.js +0 -553
  1128. package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -2
  1129. package/cosmos/vesting/v1beta1/tx.registry.js +0 -5
  1130. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -5
  1131. package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -27
  1132. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -32
  1133. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -41
  1134. package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
  1135. package/cosmos/vesting/v1beta1/vesting.js +0 -586
  1136. package/esm/cosmos/app/runtime/v2/module.js +0 -418
  1137. package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
  1138. package/esm/cosmos/base/grpc/v2/service.js +0 -391
  1139. package/esm/cosmos/base/grpc/v2/service.rpc.Service.js +0 -33
  1140. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
  1141. package/esm/cosmos/circuit/module/v1/module.js +0 -80
  1142. package/esm/cosmos/circuit/v1/query.js +0 -477
  1143. package/esm/cosmos/circuit/v1/query.lcd.js +0 -30
  1144. package/esm/cosmos/circuit/v1/query.rpc.Query.js +0 -44
  1145. package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -23
  1146. package/esm/cosmos/circuit/v1/tx.amino.js +0 -18
  1147. package/esm/cosmos/circuit/v1/tx.js +0 -525
  1148. package/esm/cosmos/circuit/v1/tx.registry.js +0 -2
  1149. package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -21
  1150. package/esm/cosmos/circuit/v1/tx.rpc.msg.js +0 -31
  1151. package/esm/cosmos/circuit/v1/types.js +0 -345
  1152. package/esm/cosmos/crisis/module/v1/module.js +0 -92
  1153. package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
  1154. package/esm/cosmos/crisis/v1beta1/tx.amino.js +0 -13
  1155. package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
  1156. package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -2
  1157. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -15
  1158. package/esm/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -26
  1159. package/esm/cosmos/crypto/ed25519/keys.js +0 -159
  1160. package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
  1161. package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
  1162. package/esm/cosmos/crypto/multisig/keys.js +0 -96
  1163. package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
  1164. package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
  1165. package/esm/cosmos/genutil/module/v1/module.js +0 -67
  1166. package/esm/cosmos/group/module/v1/module.js +0 -93
  1167. package/esm/cosmos/group/v1/events.js +0 -844
  1168. package/esm/cosmos/group/v1/genesis.js +0 -180
  1169. package/esm/cosmos/group/v1/query.js +0 -2431
  1170. package/esm/cosmos/group/v1/query.lcd.js +0 -139
  1171. package/esm/cosmos/group/v1/query.rpc.Query.js +0 -149
  1172. package/esm/cosmos/group/v1/query.rpc.func.js +0 -100
  1173. package/esm/cosmos/group/v1/tx.amino.js +0 -73
  1174. package/esm/cosmos/group/v1/tx.js +0 -2562
  1175. package/esm/cosmos/group/v1/tx.registry.js +0 -2
  1176. package/esm/cosmos/group/v1/tx.rpc.func.js +0 -87
  1177. package/esm/cosmos/group/v1/tx.rpc.msg.js +0 -95
  1178. package/esm/cosmos/group/v1/types.js +0 -1533
  1179. package/esm/cosmos/msg/textual/v1/textual.js +0 -1
  1180. package/esm/cosmos/nft/module/v1/module.js +0 -67
  1181. package/esm/cosmos/nft/v1beta1/event.js +0 -320
  1182. package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
  1183. package/esm/cosmos/nft/v1beta1/nft.js +0 -279
  1184. package/esm/cosmos/nft/v1beta1/query.js +0 -1186
  1185. package/esm/cosmos/nft/v1beta1/query.lcd.js +0 -63
  1186. package/esm/cosmos/nft/v1beta1/query.rpc.Query.js +0 -81
  1187. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -51
  1188. package/esm/cosmos/nft/v1beta1/tx.amino.js +0 -8
  1189. package/esm/cosmos/nft/v1beta1/tx.js +0 -181
  1190. package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -2
  1191. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -9
  1192. package/esm/cosmos/nft/v1beta1/tx.rpc.msg.js +0 -17
  1193. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
  1194. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
  1195. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
  1196. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -16
  1197. package/esm/cosmos/orm/v1/orm.js +0 -377
  1198. package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
  1199. package/esm/cosmos/reflection/v1/reflection.js +0 -149
  1200. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -9
  1201. package/esm/cosmos/rpc.query.js +0 -25
  1202. package/esm/cosmos/rpc.tx.js +0 -29
  1203. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
  1204. package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
  1205. package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
  1206. package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
  1207. package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
  1208. package/esm/cosmos/store/v1beta1/listening.js +0 -220
  1209. package/esm/cosmos/streaming/v1/grpc.js +0 -823
  1210. package/esm/cosmos/validate/module/v1/module.js +0 -67
  1211. package/esm/cosmos/vesting/module/v1/module.js +0 -67
  1212. package/esm/cosmos/vesting/v1beta1/tx.amino.js +0 -18
  1213. package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
  1214. package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -2
  1215. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -21
  1216. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -36
  1217. package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
  1218. package/esm/ibc/applications/fee/v1/ack.js +0 -103
  1219. package/esm/ibc/applications/fee/v1/fee.js +0 -398
  1220. package/esm/ibc/applications/fee/v1/genesis.js +0 -531
  1221. package/esm/ibc/applications/fee/v1/metadata.js +0 -90
  1222. package/esm/ibc/applications/fee/v1/query.js +0 -1739
  1223. package/esm/ibc/applications/fee/v1/query.lcd.js +0 -111
  1224. package/esm/ibc/applications/fee/v1/query.rpc.Query.js +0 -105
  1225. package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
  1226. package/esm/ibc/applications/fee/v1/tx.amino.js +0 -23
  1227. package/esm/ibc/applications/fee/v1/tx.js +0 -707
  1228. package/esm/ibc/applications/fee/v1/tx.registry.js +0 -82
  1229. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
  1230. package/esm/ibc/applications/fee/v1/tx.rpc.msg.js +0 -49
  1231. package/esm/ibc/core/channel/v1/upgrade.js +0 -300
  1232. package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
  1233. package/esm/test.js +0 -51
  1234. package/ibc/applications/fee/v1/ack.d.ts +0 -45
  1235. package/ibc/applications/fee/v1/ack.js +0 -106
  1236. package/ibc/applications/fee/v1/fee.d.ts +0 -164
  1237. package/ibc/applications/fee/v1/fee.js +0 -401
  1238. package/ibc/applications/fee/v1/genesis.d.ts +0 -225
  1239. package/ibc/applications/fee/v1/genesis.js +0 -534
  1240. package/ibc/applications/fee/v1/metadata.d.ts +0 -47
  1241. package/ibc/applications/fee/v1/metadata.js +0 -93
  1242. package/ibc/applications/fee/v1/query.d.ts +0 -757
  1243. package/ibc/applications/fee/v1/query.js +0 -1742
  1244. package/ibc/applications/fee/v1/query.lcd.d.ts +0 -18
  1245. package/ibc/applications/fee/v1/query.lcd.js +0 -115
  1246. package/ibc/applications/fee/v1/query.rpc.Query.d.ts +0 -52
  1247. package/ibc/applications/fee/v1/query.rpc.Query.js +0 -110
  1248. package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
  1249. package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
  1250. package/ibc/applications/fee/v1/tx.amino.d.ts +0 -23
  1251. package/ibc/applications/fee/v1/tx.amino.js +0 -26
  1252. package/ibc/applications/fee/v1/tx.d.ts +0 -326
  1253. package/ibc/applications/fee/v1/tx.js +0 -710
  1254. package/ibc/applications/fee/v1/tx.registry.d.ts +0 -59
  1255. package/ibc/applications/fee/v1/tx.registry.js +0 -85
  1256. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
  1257. package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
  1258. package/ibc/applications/fee/v1/tx.rpc.msg.d.ts +0 -44
  1259. package/ibc/applications/fee/v1/tx.rpc.msg.js +0 -54
  1260. package/ibc/core/channel/v1/upgrade.d.ts +0 -142
  1261. package/ibc/core/channel/v1/upgrade.js +0 -303
  1262. package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
  1263. package/ibc/lightclients/localhost/v2/localhost.js +0 -84
  1264. package/test.d.ts +0 -1
  1265. package/test.js +0 -53
@@ -1,7 +1,12 @@
1
1
  import { Params, ParamsAmino } from "./controller";
2
2
  import { BinaryReader, BinaryWriter } from "../../../../../binary";
3
3
  import { DeepPartial } from "../../../../../helpers";
4
- /** QueryInterchainAccountRequest is the request type for the Query/InterchainAccount RPC method. */
4
+ /**
5
+ * QueryInterchainAccountRequest is the request type for the Query/InterchainAccount RPC method.
6
+ * @name QueryInterchainAccountRequest
7
+ * @package ibc.applications.interchain_accounts.controller.v1
8
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountRequest
9
+ */
5
10
  export interface QueryInterchainAccountRequest {
6
11
  owner: string;
7
12
  connectionId: string;
@@ -10,7 +15,12 @@ export interface QueryInterchainAccountRequestProtoMsg {
10
15
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountRequest";
11
16
  value: Uint8Array;
12
17
  }
13
- /** QueryInterchainAccountRequest is the request type for the Query/InterchainAccount RPC method. */
18
+ /**
19
+ * QueryInterchainAccountRequest is the request type for the Query/InterchainAccount RPC method.
20
+ * @name QueryInterchainAccountRequestAmino
21
+ * @package ibc.applications.interchain_accounts.controller.v1
22
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountRequest
23
+ */
14
24
  export interface QueryInterchainAccountRequestAmino {
15
25
  owner: string;
16
26
  connection_id: string;
@@ -19,7 +29,12 @@ export interface QueryInterchainAccountRequestAminoMsg {
19
29
  type: "cosmos-sdk/QueryInterchainAccountRequest";
20
30
  value: QueryInterchainAccountRequestAmino;
21
31
  }
22
- /** QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method. */
32
+ /**
33
+ * QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method.
34
+ * @name QueryInterchainAccountResponse
35
+ * @package ibc.applications.interchain_accounts.controller.v1
36
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse
37
+ */
23
38
  export interface QueryInterchainAccountResponse {
24
39
  address: string;
25
40
  }
@@ -27,7 +42,12 @@ export interface QueryInterchainAccountResponseProtoMsg {
27
42
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse";
28
43
  value: Uint8Array;
29
44
  }
30
- /** QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method. */
45
+ /**
46
+ * QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method.
47
+ * @name QueryInterchainAccountResponseAmino
48
+ * @package ibc.applications.interchain_accounts.controller.v1
49
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse
50
+ */
31
51
  export interface QueryInterchainAccountResponseAmino {
32
52
  address: string;
33
53
  }
@@ -35,38 +55,68 @@ export interface QueryInterchainAccountResponseAminoMsg {
35
55
  type: "cosmos-sdk/QueryInterchainAccountResponse";
36
56
  value: QueryInterchainAccountResponseAmino;
37
57
  }
38
- /** QueryParamsRequest is the request type for the Query/Params RPC method. */
58
+ /**
59
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
60
+ * @name QueryParamsRequest
61
+ * @package ibc.applications.interchain_accounts.controller.v1
62
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsRequest
63
+ */
39
64
  export interface QueryParamsRequest {
40
65
  }
41
66
  export interface QueryParamsRequestProtoMsg {
42
67
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryParamsRequest";
43
68
  value: Uint8Array;
44
69
  }
45
- /** QueryParamsRequest is the request type for the Query/Params RPC method. */
70
+ /**
71
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
72
+ * @name QueryParamsRequestAmino
73
+ * @package ibc.applications.interchain_accounts.controller.v1
74
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsRequest
75
+ */
46
76
  export interface QueryParamsRequestAmino {
47
77
  }
48
78
  export interface QueryParamsRequestAminoMsg {
49
79
  type: "cosmos-sdk/QueryParamsRequest";
50
80
  value: QueryParamsRequestAmino;
51
81
  }
52
- /** QueryParamsResponse is the response type for the Query/Params RPC method. */
82
+ /**
83
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
84
+ * @name QueryParamsResponse
85
+ * @package ibc.applications.interchain_accounts.controller.v1
86
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse
87
+ */
53
88
  export interface QueryParamsResponse {
54
- /** params defines the parameters of the module. */
89
+ /**
90
+ * params defines the parameters of the module.
91
+ */
55
92
  params?: Params;
56
93
  }
57
94
  export interface QueryParamsResponseProtoMsg {
58
95
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse";
59
96
  value: Uint8Array;
60
97
  }
61
- /** QueryParamsResponse is the response type for the Query/Params RPC method. */
98
+ /**
99
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
100
+ * @name QueryParamsResponseAmino
101
+ * @package ibc.applications.interchain_accounts.controller.v1
102
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse
103
+ */
62
104
  export interface QueryParamsResponseAmino {
63
- /** params defines the parameters of the module. */
105
+ /**
106
+ * params defines the parameters of the module.
107
+ */
64
108
  params?: ParamsAmino;
65
109
  }
66
110
  export interface QueryParamsResponseAminoMsg {
67
111
  type: "cosmos-sdk/QueryParamsResponse";
68
112
  value: QueryParamsResponseAmino;
69
113
  }
114
+ /**
115
+ * QueryInterchainAccountRequest is the request type for the Query/InterchainAccount RPC method.
116
+ * @name QueryInterchainAccountRequest
117
+ * @package ibc.applications.interchain_accounts.controller.v1
118
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountRequest
119
+ */
70
120
  export declare const QueryInterchainAccountRequest: {
71
121
  typeUrl: string;
72
122
  aminoType: string;
@@ -84,6 +134,12 @@ export declare const QueryInterchainAccountRequest: {
84
134
  toProtoMsg(message: QueryInterchainAccountRequest): QueryInterchainAccountRequestProtoMsg;
85
135
  registerTypeUrl(): void;
86
136
  };
137
+ /**
138
+ * QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method.
139
+ * @name QueryInterchainAccountResponse
140
+ * @package ibc.applications.interchain_accounts.controller.v1
141
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse
142
+ */
87
143
  export declare const QueryInterchainAccountResponse: {
88
144
  typeUrl: string;
89
145
  aminoType: string;
@@ -101,6 +157,12 @@ export declare const QueryInterchainAccountResponse: {
101
157
  toProtoMsg(message: QueryInterchainAccountResponse): QueryInterchainAccountResponseProtoMsg;
102
158
  registerTypeUrl(): void;
103
159
  };
160
+ /**
161
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
162
+ * @name QueryParamsRequest
163
+ * @package ibc.applications.interchain_accounts.controller.v1
164
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsRequest
165
+ */
104
166
  export declare const QueryParamsRequest: {
105
167
  typeUrl: string;
106
168
  aminoType: string;
@@ -118,6 +180,12 @@ export declare const QueryParamsRequest: {
118
180
  toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
119
181
  registerTypeUrl(): void;
120
182
  };
183
+ /**
184
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
185
+ * @name QueryParamsResponse
186
+ * @package ibc.applications.interchain_accounts.controller.v1
187
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse
188
+ */
121
189
  export declare const QueryParamsResponse: {
122
190
  typeUrl: string;
123
191
  aminoType: string;
@@ -3,12 +3,19 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.QueryParamsResponse = exports.QueryParamsRequest = exports.QueryInterchainAccountResponse = exports.QueryInterchainAccountRequest = void 0;
4
4
  const controller_1 = require("./controller");
5
5
  const binary_1 = require("../../../../../binary");
6
+ const registry_1 = require("../../../../../registry");
6
7
  function createBaseQueryInterchainAccountRequest() {
7
8
  return {
8
9
  owner: "",
9
10
  connectionId: ""
10
11
  };
11
12
  }
13
+ /**
14
+ * QueryInterchainAccountRequest is the request type for the Query/InterchainAccount RPC method.
15
+ * @name QueryInterchainAccountRequest
16
+ * @package ibc.applications.interchain_accounts.controller.v1
17
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountRequest
18
+ */
12
19
  exports.QueryInterchainAccountRequest = {
13
20
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountRequest",
14
21
  aminoType: "cosmos-sdk/QueryInterchainAccountRequest",
@@ -97,6 +104,12 @@ function createBaseQueryInterchainAccountResponse() {
97
104
  address: ""
98
105
  };
99
106
  }
107
+ /**
108
+ * QueryInterchainAccountResponse the response type for the Query/InterchainAccount RPC method.
109
+ * @name QueryInterchainAccountResponse
110
+ * @package ibc.applications.interchain_accounts.controller.v1
111
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse
112
+ */
100
113
  exports.QueryInterchainAccountResponse = {
101
114
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryInterchainAccountResponse",
102
115
  aminoType: "cosmos-sdk/QueryInterchainAccountResponse",
@@ -172,6 +185,12 @@ exports.QueryInterchainAccountResponse = {
172
185
  function createBaseQueryParamsRequest() {
173
186
  return {};
174
187
  }
188
+ /**
189
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
190
+ * @name QueryParamsRequest
191
+ * @package ibc.applications.interchain_accounts.controller.v1
192
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsRequest
193
+ */
175
194
  exports.QueryParamsRequest = {
176
195
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryParamsRequest",
177
196
  aminoType: "cosmos-sdk/QueryParamsRequest",
@@ -238,6 +257,12 @@ function createBaseQueryParamsResponse() {
238
257
  params: undefined
239
258
  };
240
259
  }
260
+ /**
261
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
262
+ * @name QueryParamsResponse
263
+ * @package ibc.applications.interchain_accounts.controller.v1
264
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse
265
+ */
241
266
  exports.QueryParamsResponse = {
242
267
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.QueryParamsResponse",
243
268
  aminoType: "cosmos-sdk/QueryParamsResponse",
@@ -309,6 +334,9 @@ exports.QueryParamsResponse = {
309
334
  };
310
335
  },
311
336
  registerTypeUrl() {
337
+ if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.QueryParamsResponse.typeUrl)) {
338
+ return;
339
+ }
312
340
  controller_1.Params.registerTypeUrl();
313
341
  }
314
342
  };
@@ -1,4 +1,15 @@
1
- import { RpcResolver } from "../../../../../helper-func-types";
2
1
  import { QueryInterchainAccountRequest, QueryInterchainAccountResponse, QueryParamsRequest, QueryParamsResponse } from "./query";
3
- export declare const createGetInterchainAccount: (clientResolver?: RpcResolver) => (request: QueryInterchainAccountRequest) => Promise<QueryInterchainAccountResponse>;
4
- export declare const createGetParams: (clientResolver?: RpcResolver) => (request: QueryParamsRequest) => Promise<QueryParamsResponse>;
2
+ /**
3
+ * InterchainAccount returns the interchain account address for a given owner address on a given connection
4
+ * @name getInterchainAccount
5
+ * @package ibc.applications.interchain_accounts.controller.v1
6
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.InterchainAccount
7
+ */
8
+ export declare const getInterchainAccount: (client: import("../../../../../helper-func-types").EndpointOrRpc, request: QueryInterchainAccountRequest) => Promise<QueryInterchainAccountResponse>;
9
+ /**
10
+ * Params queries all parameters of the ICA controller submodule.
11
+ * @name getParams
12
+ * @package ibc.applications.interchain_accounts.controller.v1
13
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.Params
14
+ */
15
+ export declare const getParams: (client: import("../../../../../helper-func-types").EndpointOrRpc, request: QueryParamsRequest) => Promise<QueryParamsResponse>;
@@ -1,23 +1,31 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createGetParams = exports.createGetInterchainAccount = void 0;
3
+ exports.getParams = exports.getInterchainAccount = void 0;
4
4
  const helper_func_types_1 = require("../../../../../helper-func-types");
5
5
  const query_1 = require("./query");
6
- const createGetInterchainAccount = (clientResolver) => (0, helper_func_types_1.buildQuery)({
6
+ /**
7
+ * InterchainAccount returns the interchain account address for a given owner address on a given connection
8
+ * @name getInterchainAccount
9
+ * @package ibc.applications.interchain_accounts.controller.v1
10
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.InterchainAccount
11
+ */
12
+ exports.getInterchainAccount = (0, helper_func_types_1.buildQuery)({
7
13
  encode: query_1.QueryInterchainAccountRequest.encode,
8
14
  decode: query_1.QueryInterchainAccountResponse.decode,
9
15
  service: "ibc.applications.interchain_accounts.controller.v1.Query",
10
16
  method: "InterchainAccount",
11
- clientResolver,
12
17
  deps: [query_1.QueryInterchainAccountRequest, query_1.QueryInterchainAccountResponse]
13
18
  });
14
- exports.createGetInterchainAccount = createGetInterchainAccount;
15
- const createGetParams = (clientResolver) => (0, helper_func_types_1.buildQuery)({
19
+ /**
20
+ * Params queries all parameters of the ICA controller submodule.
21
+ * @name getParams
22
+ * @package ibc.applications.interchain_accounts.controller.v1
23
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.Params
24
+ */
25
+ exports.getParams = (0, helper_func_types_1.buildQuery)({
16
26
  encode: query_1.QueryParamsRequest.encode,
17
27
  decode: query_1.QueryParamsResponse.decode,
18
28
  service: "ibc.applications.interchain_accounts.controller.v1.Query",
19
29
  method: "Params",
20
- clientResolver,
21
30
  deps: [query_1.QueryParamsRequest, query_1.QueryParamsResponse]
22
31
  });
23
- exports.createGetParams = createGetParams;
@@ -3,7 +3,12 @@ import { InterchainAccountPacketData, InterchainAccountPacketDataAmino } from ".
3
3
  import { Params, ParamsAmino } from "./controller";
4
4
  import { DeepPartial } from "../../../../../helpers";
5
5
  import { BinaryReader, BinaryWriter } from "../../../../../binary";
6
- /** MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount */
6
+ /**
7
+ * MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
8
+ * @name MsgRegisterInterchainAccount
9
+ * @package ibc.applications.interchain_accounts.controller.v1
10
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
11
+ */
7
12
  export interface MsgRegisterInterchainAccount {
8
13
  owner: string;
9
14
  connectionId: string;
@@ -14,7 +19,12 @@ export interface MsgRegisterInterchainAccountProtoMsg {
14
19
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount";
15
20
  value: Uint8Array;
16
21
  }
17
- /** MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount */
22
+ /**
23
+ * MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
24
+ * @name MsgRegisterInterchainAccountAmino
25
+ * @package ibc.applications.interchain_accounts.controller.v1
26
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
27
+ */
18
28
  export interface MsgRegisterInterchainAccountAmino {
19
29
  owner: string;
20
30
  connection_id: string;
@@ -25,7 +35,12 @@ export interface MsgRegisterInterchainAccountAminoMsg {
25
35
  type: "cosmos-sdk/MsgRegisterInterchainAccount";
26
36
  value: MsgRegisterInterchainAccountAmino;
27
37
  }
28
- /** MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount */
38
+ /**
39
+ * MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
40
+ * @name MsgRegisterInterchainAccountResponse
41
+ * @package ibc.applications.interchain_accounts.controller.v1
42
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
43
+ */
29
44
  export interface MsgRegisterInterchainAccountResponse {
30
45
  channelId: string;
31
46
  portId: string;
@@ -34,7 +49,12 @@ export interface MsgRegisterInterchainAccountResponseProtoMsg {
34
49
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse";
35
50
  value: Uint8Array;
36
51
  }
37
- /** MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount */
52
+ /**
53
+ * MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
54
+ * @name MsgRegisterInterchainAccountResponseAmino
55
+ * @package ibc.applications.interchain_accounts.controller.v1
56
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
57
+ */
38
58
  export interface MsgRegisterInterchainAccountResponseAmino {
39
59
  channel_id: string;
40
60
  port_id: string;
@@ -43,7 +63,12 @@ export interface MsgRegisterInterchainAccountResponseAminoMsg {
43
63
  type: "cosmos-sdk/MsgRegisterInterchainAccountResponse";
44
64
  value: MsgRegisterInterchainAccountResponseAmino;
45
65
  }
46
- /** MsgSendTx defines the payload for Msg/SendTx */
66
+ /**
67
+ * MsgSendTx defines the payload for Msg/SendTx
68
+ * @name MsgSendTx
69
+ * @package ibc.applications.interchain_accounts.controller.v1
70
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
71
+ */
47
72
  export interface MsgSendTx {
48
73
  owner: string;
49
74
  connectionId: string;
@@ -58,7 +83,12 @@ export interface MsgSendTxProtoMsg {
58
83
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTx";
59
84
  value: Uint8Array;
60
85
  }
61
- /** MsgSendTx defines the payload for Msg/SendTx */
86
+ /**
87
+ * MsgSendTx defines the payload for Msg/SendTx
88
+ * @name MsgSendTxAmino
89
+ * @package ibc.applications.interchain_accounts.controller.v1
90
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
91
+ */
62
92
  export interface MsgSendTxAmino {
63
93
  owner: string;
64
94
  connection_id: string;
@@ -73,7 +103,12 @@ export interface MsgSendTxAminoMsg {
73
103
  type: "cosmos-sdk/MsgSendTx";
74
104
  value: MsgSendTxAmino;
75
105
  }
76
- /** MsgSendTxResponse defines the response for MsgSendTx */
106
+ /**
107
+ * MsgSendTxResponse defines the response for MsgSendTx
108
+ * @name MsgSendTxResponse
109
+ * @package ibc.applications.interchain_accounts.controller.v1
110
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
111
+ */
77
112
  export interface MsgSendTxResponse {
78
113
  sequence: bigint;
79
114
  }
@@ -81,7 +116,12 @@ export interface MsgSendTxResponseProtoMsg {
81
116
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse";
82
117
  value: Uint8Array;
83
118
  }
84
- /** MsgSendTxResponse defines the response for MsgSendTx */
119
+ /**
120
+ * MsgSendTxResponse defines the response for MsgSendTx
121
+ * @name MsgSendTxResponseAmino
122
+ * @package ibc.applications.interchain_accounts.controller.v1
123
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
124
+ */
85
125
  export interface MsgSendTxResponseAmino {
86
126
  sequence: string;
87
127
  }
@@ -89,9 +129,16 @@ export interface MsgSendTxResponseAminoMsg {
89
129
  type: "cosmos-sdk/MsgSendTxResponse";
90
130
  value: MsgSendTxResponseAmino;
91
131
  }
92
- /** MsgUpdateParams defines the payload for Msg/UpdateParams */
132
+ /**
133
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
134
+ * @name MsgUpdateParams
135
+ * @package ibc.applications.interchain_accounts.controller.v1
136
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
137
+ */
93
138
  export interface MsgUpdateParams {
94
- /** signer address */
139
+ /**
140
+ * signer address
141
+ */
95
142
  signer: string;
96
143
  /**
97
144
  * params defines the 27-interchain-accounts/controller parameters to update.
@@ -104,9 +151,16 @@ export interface MsgUpdateParamsProtoMsg {
104
151
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams";
105
152
  value: Uint8Array;
106
153
  }
107
- /** MsgUpdateParams defines the payload for Msg/UpdateParams */
154
+ /**
155
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
156
+ * @name MsgUpdateParamsAmino
157
+ * @package ibc.applications.interchain_accounts.controller.v1
158
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
159
+ */
108
160
  export interface MsgUpdateParamsAmino {
109
- /** signer address */
161
+ /**
162
+ * signer address
163
+ */
110
164
  signer: string;
111
165
  /**
112
166
  * params defines the 27-interchain-accounts/controller parameters to update.
@@ -119,20 +173,36 @@ export interface MsgUpdateParamsAminoMsg {
119
173
  type: "cosmos-sdk/MsgUpdateParams";
120
174
  value: MsgUpdateParamsAmino;
121
175
  }
122
- /** MsgUpdateParamsResponse defines the response for Msg/UpdateParams */
176
+ /**
177
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
178
+ * @name MsgUpdateParamsResponse
179
+ * @package ibc.applications.interchain_accounts.controller.v1
180
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
181
+ */
123
182
  export interface MsgUpdateParamsResponse {
124
183
  }
125
184
  export interface MsgUpdateParamsResponseProtoMsg {
126
185
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse";
127
186
  value: Uint8Array;
128
187
  }
129
- /** MsgUpdateParamsResponse defines the response for Msg/UpdateParams */
188
+ /**
189
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
190
+ * @name MsgUpdateParamsResponseAmino
191
+ * @package ibc.applications.interchain_accounts.controller.v1
192
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
193
+ */
130
194
  export interface MsgUpdateParamsResponseAmino {
131
195
  }
132
196
  export interface MsgUpdateParamsResponseAminoMsg {
133
197
  type: "cosmos-sdk/MsgUpdateParamsResponse";
134
198
  value: MsgUpdateParamsResponseAmino;
135
199
  }
200
+ /**
201
+ * MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
202
+ * @name MsgRegisterInterchainAccount
203
+ * @package ibc.applications.interchain_accounts.controller.v1
204
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
205
+ */
136
206
  export declare const MsgRegisterInterchainAccount: {
137
207
  typeUrl: string;
138
208
  aminoType: string;
@@ -150,6 +220,12 @@ export declare const MsgRegisterInterchainAccount: {
150
220
  toProtoMsg(message: MsgRegisterInterchainAccount): MsgRegisterInterchainAccountProtoMsg;
151
221
  registerTypeUrl(): void;
152
222
  };
223
+ /**
224
+ * MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
225
+ * @name MsgRegisterInterchainAccountResponse
226
+ * @package ibc.applications.interchain_accounts.controller.v1
227
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
228
+ */
153
229
  export declare const MsgRegisterInterchainAccountResponse: {
154
230
  typeUrl: string;
155
231
  aminoType: string;
@@ -167,6 +243,12 @@ export declare const MsgRegisterInterchainAccountResponse: {
167
243
  toProtoMsg(message: MsgRegisterInterchainAccountResponse): MsgRegisterInterchainAccountResponseProtoMsg;
168
244
  registerTypeUrl(): void;
169
245
  };
246
+ /**
247
+ * MsgSendTx defines the payload for Msg/SendTx
248
+ * @name MsgSendTx
249
+ * @package ibc.applications.interchain_accounts.controller.v1
250
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
251
+ */
170
252
  export declare const MsgSendTx: {
171
253
  typeUrl: string;
172
254
  aminoType: string;
@@ -184,6 +266,12 @@ export declare const MsgSendTx: {
184
266
  toProtoMsg(message: MsgSendTx): MsgSendTxProtoMsg;
185
267
  registerTypeUrl(): void;
186
268
  };
269
+ /**
270
+ * MsgSendTxResponse defines the response for MsgSendTx
271
+ * @name MsgSendTxResponse
272
+ * @package ibc.applications.interchain_accounts.controller.v1
273
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
274
+ */
187
275
  export declare const MsgSendTxResponse: {
188
276
  typeUrl: string;
189
277
  aminoType: string;
@@ -201,6 +289,12 @@ export declare const MsgSendTxResponse: {
201
289
  toProtoMsg(message: MsgSendTxResponse): MsgSendTxResponseProtoMsg;
202
290
  registerTypeUrl(): void;
203
291
  };
292
+ /**
293
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
294
+ * @name MsgUpdateParams
295
+ * @package ibc.applications.interchain_accounts.controller.v1
296
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
297
+ */
204
298
  export declare const MsgUpdateParams: {
205
299
  typeUrl: string;
206
300
  aminoType: string;
@@ -218,6 +312,12 @@ export declare const MsgUpdateParams: {
218
312
  toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
219
313
  registerTypeUrl(): void;
220
314
  };
315
+ /**
316
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
317
+ * @name MsgUpdateParamsResponse
318
+ * @package ibc.applications.interchain_accounts.controller.v1
319
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
320
+ */
221
321
  export declare const MsgUpdateParamsResponse: {
222
322
  typeUrl: string;
223
323
  aminoType: string;
@@ -5,6 +5,7 @@ const packet_1 = require("../../v1/packet");
5
5
  const controller_1 = require("./controller");
6
6
  const helpers_1 = require("../../../../../helpers");
7
7
  const binary_1 = require("../../../../../binary");
8
+ const registry_1 = require("../../../../../registry");
8
9
  function createBaseMsgRegisterInterchainAccount() {
9
10
  return {
10
11
  owner: "",
@@ -13,6 +14,12 @@ function createBaseMsgRegisterInterchainAccount() {
13
14
  ordering: 0
14
15
  };
15
16
  }
17
+ /**
18
+ * MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
19
+ * @name MsgRegisterInterchainAccount
20
+ * @package ibc.applications.interchain_accounts.controller.v1
21
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
22
+ */
16
23
  exports.MsgRegisterInterchainAccount = {
17
24
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount",
18
25
  aminoType: "cosmos-sdk/MsgRegisterInterchainAccount",
@@ -124,6 +131,12 @@ function createBaseMsgRegisterInterchainAccountResponse() {
124
131
  portId: ""
125
132
  };
126
133
  }
134
+ /**
135
+ * MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
136
+ * @name MsgRegisterInterchainAccountResponse
137
+ * @package ibc.applications.interchain_accounts.controller.v1
138
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
139
+ */
127
140
  exports.MsgRegisterInterchainAccountResponse = {
128
141
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse",
129
142
  aminoType: "cosmos-sdk/MsgRegisterInterchainAccountResponse",
@@ -215,6 +228,12 @@ function createBaseMsgSendTx() {
215
228
  relativeTimeout: BigInt(0)
216
229
  };
217
230
  }
231
+ /**
232
+ * MsgSendTx defines the payload for Msg/SendTx
233
+ * @name MsgSendTx
234
+ * @package ibc.applications.interchain_accounts.controller.v1
235
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
236
+ */
218
237
  exports.MsgSendTx = {
219
238
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTx",
220
239
  aminoType: "cosmos-sdk/MsgSendTx",
@@ -319,6 +338,9 @@ exports.MsgSendTx = {
319
338
  };
320
339
  },
321
340
  registerTypeUrl() {
341
+ if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.MsgSendTx.typeUrl)) {
342
+ return;
343
+ }
322
344
  packet_1.InterchainAccountPacketData.registerTypeUrl();
323
345
  }
324
346
  };
@@ -327,6 +349,12 @@ function createBaseMsgSendTxResponse() {
327
349
  sequence: BigInt(0)
328
350
  };
329
351
  }
352
+ /**
353
+ * MsgSendTxResponse defines the response for MsgSendTx
354
+ * @name MsgSendTxResponse
355
+ * @package ibc.applications.interchain_accounts.controller.v1
356
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
357
+ */
330
358
  exports.MsgSendTxResponse = {
331
359
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse",
332
360
  aminoType: "cosmos-sdk/MsgSendTxResponse",
@@ -405,6 +433,12 @@ function createBaseMsgUpdateParams() {
405
433
  params: controller_1.Params.fromPartial({})
406
434
  };
407
435
  }
436
+ /**
437
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
438
+ * @name MsgUpdateParams
439
+ * @package ibc.applications.interchain_accounts.controller.v1
440
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
441
+ */
408
442
  exports.MsgUpdateParams = {
409
443
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams",
410
444
  aminoType: "cosmos-sdk/MsgUpdateParams",
@@ -487,12 +521,21 @@ exports.MsgUpdateParams = {
487
521
  };
488
522
  },
489
523
  registerTypeUrl() {
524
+ if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.MsgUpdateParams.typeUrl)) {
525
+ return;
526
+ }
490
527
  controller_1.Params.registerTypeUrl();
491
528
  }
492
529
  };
493
530
  function createBaseMsgUpdateParamsResponse() {
494
531
  return {};
495
532
  }
533
+ /**
534
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
535
+ * @name MsgUpdateParamsResponse
536
+ * @package ibc.applications.interchain_accounts.controller.v1
537
+ * @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
538
+ */
496
539
  exports.MsgUpdateParamsResponse = {
497
540
  typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse",
498
541
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -1,5 +1,22 @@
1
- import { SigningClientResolver } from "../../../../../helper-func-types";
2
1
  import { MsgRegisterInterchainAccount, MsgSendTx, MsgUpdateParams } from "./tx";
3
- export declare const createRegisterInterchainAccount: (clientResolver?: SigningClientResolver) => (signerAddress: string, message: MsgRegisterInterchainAccount | MsgRegisterInterchainAccount[], fee: "auto" | import("../../../../../helper-func-types").StdFee, memo: string) => Promise<import("../../../../../helper-func-types").DeliverTxResponse>;
4
- export declare const createSendTx: (clientResolver?: SigningClientResolver) => (signerAddress: string, message: MsgSendTx | MsgSendTx[], fee: "auto" | import("../../../../../helper-func-types").StdFee, memo: string) => Promise<import("../../../../../helper-func-types").DeliverTxResponse>;
5
- export declare const createUpdateParams: (clientResolver?: SigningClientResolver) => (signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: "auto" | import("../../../../../helper-func-types").StdFee, memo: string) => Promise<import("../../../../../helper-func-types").DeliverTxResponse>;
2
+ /**
3
+ * RegisterInterchainAccount defines a rpc handler for MsgRegisterInterchainAccount.
4
+ * @name registerInterchainAccount
5
+ * @package ibc.applications.interchain_accounts.controller.v1
6
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.RegisterInterchainAccount
7
+ */
8
+ export declare const registerInterchainAccount: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgRegisterInterchainAccount | MsgRegisterInterchainAccount[], fee: import("../../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
+ /**
10
+ * SendTx defines a rpc handler for MsgSendTx.
11
+ * @name sendTx
12
+ * @package ibc.applications.interchain_accounts.controller.v1
13
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.SendTx
14
+ */
15
+ export declare const sendTx: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgSendTx | MsgSendTx[], fee: import("../../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
16
+ /**
17
+ * UpdateParams defines a rpc handler for MsgUpdateParams.
18
+ * @name updateParams
19
+ * @package ibc.applications.interchain_accounts.controller.v1
20
+ * @see proto service: ibc.applications.interchain_accounts.controller.v1.UpdateParams
21
+ */
22
+ export declare const updateParams: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;