@xpla/xplajs 1.7.0 → 1.8.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1295) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +49 -8
  4. package/cosmos/app/runtime/v1alpha1/module.js +17 -0
  5. package/cosmos/app/v1alpha1/config.d.ts +72 -10
  6. package/cosmos/app/v1alpha1/config.js +31 -0
  7. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  8. package/cosmos/app/v1alpha1/module.js +23 -0
  9. package/cosmos/app/v1alpha1/query.d.ts +42 -6
  10. package/cosmos/app/v1alpha1/query.js +16 -0
  11. package/cosmos/app/v1alpha1/query.rpc.func.d.ts +7 -2
  12. package/cosmos/app/v1alpha1/query.rpc.func.js +8 -4
  13. package/cosmos/auth/module/v1/module.d.ts +60 -12
  14. package/cosmos/auth/module/v1/module.js +16 -0
  15. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  16. package/cosmos/auth/v1beta1/auth.js +34 -0
  17. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  18. package/cosmos/auth/v1beta1/genesis.js +6 -0
  19. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  20. package/cosmos/auth/v1beta1/query.js +169 -0
  21. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +87 -11
  22. package/cosmos/auth/v1beta1/query.rpc.func.js +88 -31
  23. package/cosmos/auth/v1beta1/tx.d.ts +35 -2
  24. package/cosmos/auth/v1beta1/tx.js +21 -0
  25. package/cosmos/auth/v1beta1/tx.rpc.func.d.ts +10 -2
  26. package/cosmos/auth/v1beta1/tx.rpc.func.js +12 -9
  27. package/cosmos/authz/module/v1/module.d.ts +18 -2
  28. package/cosmos/authz/module/v1/module.js +6 -0
  29. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  30. package/cosmos/authz/v1beta1/authz.js +36 -0
  31. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  32. package/cosmos/authz/v1beta1/event.js +12 -0
  33. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  34. package/cosmos/authz/v1beta1/genesis.js +10 -0
  35. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  36. package/cosmos/authz/v1beta1/query.js +55 -0
  37. package/cosmos/authz/v1beta1/query.rpc.func.d.ts +25 -4
  38. package/cosmos/authz/v1beta1/query.rpc.func.js +26 -10
  39. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  40. package/cosmos/authz/v1beta1/tx.js +43 -0
  41. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +27 -4
  42. package/cosmos/authz/v1beta1/tx.rpc.func.js +31 -23
  43. package/cosmos/autocli/v1/options.d.ts +208 -38
  44. package/cosmos/autocli/v1/options.js +54 -0
  45. package/cosmos/autocli/v1/query.d.ts +57 -6
  46. package/cosmos/autocli/v1/query.js +21 -0
  47. package/cosmos/autocli/v1/query.rpc.func.d.ts +7 -2
  48. package/cosmos/autocli/v1/query.rpc.func.js +8 -4
  49. package/cosmos/bank/module/v1/module.d.ts +24 -4
  50. package/cosmos/bank/module/v1/module.js +6 -0
  51. package/cosmos/bank/v1beta1/authz.d.ts +15 -0
  52. package/cosmos/bank/v1beta1/authz.js +12 -0
  53. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  54. package/cosmos/bank/v1beta1/bank.js +63 -0
  55. package/cosmos/bank/v1beta1/genesis.d.ts +61 -12
  56. package/cosmos/bank/v1beta1/genesis.js +20 -0
  57. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  58. package/cosmos/bank/v1beta1/query.js +263 -0
  59. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +128 -14
  60. package/cosmos/bank/v1beta1/query.rpc.func.js +129 -40
  61. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  62. package/cosmos/bank/v1beta1/tx.js +74 -0
  63. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +36 -5
  64. package/cosmos/bank/v1beta1/tx.rpc.func.js +41 -30
  65. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  66. package/cosmos/base/abci/v1beta1/abci.js +92 -0
  67. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  68. package/cosmos/base/node/v1beta1/query.js +24 -0
  69. package/cosmos/base/node/v1beta1/query.rpc.func.d.ts +14 -3
  70. package/cosmos/base/node/v1beta1/query.rpc.func.js +15 -7
  71. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  72. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  73. package/cosmos/base/reflection/v1beta1/reflection.d.ts +74 -8
  74. package/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  75. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.d.ts +16 -3
  76. package/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +17 -7
  77. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  78. package/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  79. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.d.ts +44 -7
  80. package/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +45 -19
  81. package/cosmos/base/tendermint/v1beta1/query.d.ts +417 -60
  82. package/cosmos/base/tendermint/v1beta1/query.js +154 -0
  83. package/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts +53 -8
  84. package/cosmos/base/tendermint/v1beta1/query.rpc.func.js +54 -22
  85. package/cosmos/base/tendermint/v1beta1/types.d.ts +91 -22
  86. package/cosmos/base/tendermint/v1beta1/types.js +20 -0
  87. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  88. package/cosmos/base/v1beta1/coin.js +32 -0
  89. package/cosmos/bundle.d.ts +150 -0
  90. package/cosmos/bundle.js +814 -0
  91. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  92. package/cosmos/consensus/module/v1/module.js +6 -0
  93. package/cosmos/consensus/v1/query.d.ts +36 -4
  94. package/cosmos/consensus/v1/query.js +16 -0
  95. package/cosmos/consensus/v1/query.rpc.func.d.ts +7 -2
  96. package/cosmos/consensus/v1/query.rpc.func.js +8 -4
  97. package/cosmos/consensus/v1/tx.d.ts +43 -6
  98. package/cosmos/consensus/v1/tx.js +17 -0
  99. package/cosmos/consensus/v1/tx.rpc.func.d.ts +10 -2
  100. package/cosmos/consensus/v1/tx.rpc.func.js +12 -9
  101. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  102. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  103. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  104. package/cosmos/distribution/module/v1/module.js +6 -0
  105. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  106. package/cosmos/distribution/v1beta1/distribution.js +132 -0
  107. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  108. package/cosmos/distribution/v1beta1/genesis.js +74 -0
  109. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  110. package/cosmos/distribution/v1beta1/query.js +164 -0
  111. package/cosmos/distribution/v1beta1/query.rpc.func.d.ts +71 -11
  112. package/cosmos/distribution/v1beta1/query.rpc.func.js +72 -31
  113. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  114. package/cosmos/distribution/v1beta1/tx.js +128 -0
  115. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +64 -8
  116. package/cosmos/distribution/v1beta1/tx.rpc.func.js +72 -51
  117. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  118. package/cosmos/evidence/module/v1/module.js +6 -0
  119. package/cosmos/evidence/v1beta1/evidence.d.ts +37 -8
  120. package/cosmos/evidence/v1beta1/evidence.js +7 -0
  121. package/cosmos/evidence/v1beta1/genesis.d.ts +24 -4
  122. package/cosmos/evidence/v1beta1/genesis.js +6 -0
  123. package/cosmos/evidence/v1beta1/query.d.ts +88 -14
  124. package/cosmos/evidence/v1beta1/query.js +33 -0
  125. package/cosmos/evidence/v1beta1/query.rpc.func.d.ts +14 -3
  126. package/cosmos/evidence/v1beta1/query.rpc.func.js +15 -7
  127. package/cosmos/evidence/v1beta1/tx.d.ts +53 -9
  128. package/cosmos/evidence/v1beta1/tx.js +13 -0
  129. package/cosmos/evidence/v1beta1/tx.rpc.func.d.ts +8 -2
  130. package/cosmos/evidence/v1beta1/tx.rpc.func.js +10 -9
  131. package/cosmos/evm/feemarket/v1/events.d.ts +120 -0
  132. package/cosmos/evm/feemarket/v1/events.js +182 -0
  133. package/cosmos/evm/feemarket/v1/feemarket.d.ts +115 -0
  134. package/cosmos/evm/feemarket/v1/feemarket.js +160 -0
  135. package/cosmos/evm/feemarket/v1/genesis.d.ts +68 -0
  136. package/cosmos/evm/feemarket/v1/genesis.js +106 -0
  137. package/cosmos/evm/feemarket/v1/query.d.ts +315 -0
  138. package/cosmos/evm/feemarket/v1/query.js +473 -0
  139. package/cosmos/evm/feemarket/v1/query.lcd.d.ts +11 -0
  140. package/cosmos/evm/feemarket/v1/query.lcd.js +25 -0
  141. package/cosmos/evm/feemarket/v1/query.rpc.Query.d.ts +24 -0
  142. package/cosmos/evm/feemarket/v1/query.rpc.Query.js +47 -0
  143. package/cosmos/evm/feemarket/v1/query.rpc.func.d.ts +22 -0
  144. package/cosmos/evm/feemarket/v1/query.rpc.func.js +44 -0
  145. package/cosmos/evm/feemarket/v1/tx.amino.d.ts +8 -0
  146. package/cosmos/evm/feemarket/v1/tx.amino.js +11 -0
  147. package/cosmos/evm/feemarket/v1/tx.d.ts +118 -0
  148. package/cosmos/evm/feemarket/v1/tx.js +177 -0
  149. package/cosmos/evm/feemarket/v1/tx.registry.d.ts +23 -0
  150. package/cosmos/evm/feemarket/v1/tx.registry.js +31 -0
  151. package/cosmos/evm/feemarket/v1/tx.rpc.func.d.ts +10 -0
  152. package/cosmos/evm/feemarket/v1/tx.rpc.func.js +16 -0
  153. package/cosmos/evm/feemarket/v1/tx.rpc.msg.d.ts +17 -0
  154. package/cosmos/evm/feemarket/v1/tx.rpc.msg.js +24 -0
  155. package/cosmos/evm/vm/v1/events.d.ts +286 -0
  156. package/cosmos/evm/vm/v1/events.js +435 -0
  157. package/cosmos/evm/vm/v1/evm.d.ts +1090 -0
  158. package/cosmos/evm/vm/v1/evm.js +1617 -0
  159. package/cosmos/evm/vm/v1/genesis.d.ts +143 -0
  160. package/cosmos/evm/vm/v1/genesis.js +227 -0
  161. package/cosmos/evm/vm/v1/query.d.ts +1773 -0
  162. package/cosmos/evm/vm/v1/query.js +2680 -0
  163. package/cosmos/evm/vm/v1/query.lcd.d.ts +23 -0
  164. package/cosmos/evm/vm/v1/query.lcd.js +175 -0
  165. package/cosmos/evm/vm/v1/query.rpc.Query.d.ts +87 -0
  166. package/cosmos/evm/vm/v1/query.rpc.Query.js +155 -0
  167. package/cosmos/evm/vm/v1/query.rpc.func.d.ts +108 -0
  168. package/cosmos/evm/vm/v1/query.rpc.func.js +196 -0
  169. package/cosmos/evm/vm/v1/tx.amino.d.ts +13 -0
  170. package/cosmos/evm/vm/v1/tx.amino.js +16 -0
  171. package/cosmos/evm/vm/v1/tx.d.ts +747 -0
  172. package/cosmos/evm/vm/v1/tx.js +1132 -0
  173. package/cosmos/evm/vm/v1/tx.registry.d.ts +35 -0
  174. package/cosmos/evm/vm/v1/tx.registry.js +49 -0
  175. package/cosmos/evm/vm/v1/tx.rpc.func.d.ts +17 -0
  176. package/cosmos/evm/vm/v1/tx.rpc.func.js +25 -0
  177. package/cosmos/evm/vm/v1/tx.rpc.msg.d.ts +20 -0
  178. package/cosmos/evm/vm/v1/tx.rpc.msg.js +30 -0
  179. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  180. package/cosmos/feegrant/module/v1/module.js +6 -0
  181. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  182. package/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  183. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  184. package/cosmos/feegrant/v1beta1/genesis.js +10 -0
  185. package/cosmos/feegrant/v1beta1/query.d.ts +154 -26
  186. package/cosmos/feegrant/v1beta1/query.js +56 -0
  187. package/cosmos/feegrant/v1beta1/query.rpc.func.d.ts +23 -4
  188. package/cosmos/feegrant/v1beta1/query.rpc.func.js +24 -10
  189. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  190. package/cosmos/feegrant/v1beta1/tx.js +44 -0
  191. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +25 -4
  192. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +29 -23
  193. package/cosmos/gov/module/v1/module.d.ts +24 -4
  194. package/cosmos/gov/module/v1/module.js +6 -0
  195. package/cosmos/gov/v1/genesis.d.ts +48 -16
  196. package/cosmos/gov/v1/genesis.js +10 -0
  197. package/cosmos/gov/v1/gov.d.ts +343 -80
  198. package/cosmos/gov/v1/gov.js +77 -0
  199. package/cosmos/gov/v1/query.d.ts +469 -88
  200. package/cosmos/gov/v1/query.js +143 -0
  201. package/cosmos/gov/v1/query.rpc.func.d.ts +63 -10
  202. package/cosmos/gov/v1/query.rpc.func.js +64 -28
  203. package/cosmos/gov/v1/tx.d.ts +377 -67
  204. package/cosmos/gov/v1/tx.js +111 -3
  205. package/cosmos/gov/v1/tx.rpc.func.d.ts +55 -8
  206. package/cosmos/gov/v1/tx.rpc.func.js +63 -51
  207. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  208. package/cosmos/gov/v1beta1/genesis.js +10 -0
  209. package/cosmos/gov/v1beta1/gov.d.ts +294 -63
  210. package/cosmos/gov/v1beta1/gov.js +74 -3
  211. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  212. package/cosmos/gov/v1beta1/query.js +131 -0
  213. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +56 -9
  214. package/cosmos/gov/v1beta1/query.rpc.func.js +57 -25
  215. package/cosmos/gov/v1beta1/tx.d.ts +214 -39
  216. package/cosmos/gov/v1beta1/tx.js +62 -3
  217. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +30 -5
  218. package/cosmos/gov/v1beta1/tx.rpc.func.js +35 -30
  219. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  220. package/cosmos/ics23/v1/proofs.js +169 -0
  221. package/cosmos/lcd.d.ts +65 -0
  222. package/cosmos/lcd.js +134 -0
  223. package/cosmos/mint/module/v1/module.d.ts +24 -4
  224. package/cosmos/mint/module/v1/module.js +6 -0
  225. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  226. package/cosmos/mint/v1beta1/genesis.js +10 -0
  227. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  228. package/cosmos/mint/v1beta1/mint.js +12 -0
  229. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  230. package/cosmos/mint/v1beta1/query.js +43 -0
  231. package/cosmos/mint/v1beta1/query.rpc.func.d.ts +21 -4
  232. package/cosmos/mint/v1beta1/query.rpc.func.js +22 -10
  233. package/cosmos/mint/v1beta1/tx.d.ts +35 -2
  234. package/cosmos/mint/v1beta1/tx.js +21 -0
  235. package/cosmos/mint/v1beta1/tx.rpc.func.d.ts +10 -2
  236. package/cosmos/mint/v1beta1/tx.rpc.func.js +12 -9
  237. package/cosmos/params/module/v1/module.d.ts +18 -2
  238. package/cosmos/params/module/v1/module.js +6 -0
  239. package/cosmos/params/v1beta1/params.d.ts +31 -2
  240. package/cosmos/params/v1beta1/params.js +16 -0
  241. package/cosmos/params/v1beta1/query.d.ts +99 -10
  242. package/cosmos/params/v1beta1/query.js +46 -0
  243. package/cosmos/params/v1beta1/query.rpc.func.d.ts +17 -3
  244. package/cosmos/params/v1beta1/query.rpc.func.js +18 -7
  245. package/cosmos/rpc.query.d.ts +193 -58
  246. package/cosmos/rpc.query.js +58 -8
  247. package/cosmos/rpc.tx.d.ts +35 -15
  248. package/cosmos/rpc.tx.js +35 -15
  249. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  250. package/cosmos/slashing/module/v1/module.js +6 -0
  251. package/cosmos/slashing/v1beta1/genesis.d.ts +109 -20
  252. package/cosmos/slashing/v1beta1/genesis.js +35 -0
  253. package/cosmos/slashing/v1beta1/query.d.ts +106 -10
  254. package/cosmos/slashing/v1beta1/query.js +53 -0
  255. package/cosmos/slashing/v1beta1/query.rpc.func.d.ts +21 -4
  256. package/cosmos/slashing/v1beta1/query.rpc.func.js +22 -10
  257. package/cosmos/slashing/v1beta1/slashing.d.ts +43 -6
  258. package/cosmos/slashing/v1beta1/slashing.js +13 -0
  259. package/cosmos/slashing/v1beta1/tx.d.ts +71 -6
  260. package/cosmos/slashing/v1beta1/tx.js +33 -0
  261. package/cosmos/slashing/v1beta1/tx.rpc.func.d.ts +19 -3
  262. package/cosmos/slashing/v1beta1/tx.rpc.func.js +22 -16
  263. package/cosmos/staking/module/v1/module.d.ts +36 -8
  264. package/cosmos/staking/module/v1/module.js +6 -0
  265. package/cosmos/staking/v1beta1/authz.d.ts +44 -6
  266. package/cosmos/staking/v1beta1/authz.js +17 -0
  267. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  268. package/cosmos/staking/v1beta1/genesis.js +16 -0
  269. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  270. package/cosmos/staking/v1beta1/query.js +250 -0
  271. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +123 -15
  272. package/cosmos/staking/v1beta1/query.rpc.func.js +124 -43
  273. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  274. package/cosmos/staking/v1beta1/staking.js +186 -0
  275. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  276. package/cosmos/staking/v1beta1/tx.js +120 -0
  277. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +57 -8
  278. package/cosmos/staking/v1beta1/tx.rpc.func.js +65 -51
  279. package/cosmos/tx/config/v1/config.d.ts +18 -2
  280. package/cosmos/tx/config/v1/config.js +6 -0
  281. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  282. package/cosmos/tx/signing/v1beta1/signing.js +46 -0
  283. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  284. package/cosmos/tx/v1beta1/service.js +176 -0
  285. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +73 -10
  286. package/cosmos/tx/v1beta1/service.rpc.func.js +74 -28
  287. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  288. package/cosmos/tx/v1beta1/tx.js +127 -0
  289. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  290. package/cosmos/upgrade/module/v1/module.js +6 -0
  291. package/cosmos/upgrade/v1beta1/query.d.ts +172 -14
  292. package/cosmos/upgrade/v1beta1/query.js +85 -0
  293. package/cosmos/upgrade/v1beta1/query.rpc.func.d.ts +45 -6
  294. package/cosmos/upgrade/v1beta1/query.rpc.func.js +46 -16
  295. package/cosmos/upgrade/v1beta1/tx.d.ts +74 -6
  296. package/cosmos/upgrade/v1beta1/tx.js +36 -0
  297. package/cosmos/upgrade/v1beta1/tx.rpc.func.d.ts +19 -3
  298. package/cosmos/upgrade/v1beta1/tx.rpc.func.js +22 -16
  299. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  300. package/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  301. package/cosmos_proto/bundle.d.ts +1 -0
  302. package/cosmos_proto/bundle.js +8 -0
  303. package/cosmos_proto/cosmos.d.ts +31 -0
  304. package/cosmos_proto/cosmos.js +19 -0
  305. package/cosmwasm/bundle.d.ts +10 -0
  306. package/cosmwasm/bundle.js +141 -0
  307. package/cosmwasm/lcd.d.ts +70 -0
  308. package/cosmwasm/lcd.js +141 -0
  309. package/cosmwasm/rpc.query.d.ts +236 -0
  310. package/cosmwasm/rpc.query.js +107 -0
  311. package/cosmwasm/rpc.tx.d.ts +57 -0
  312. package/cosmwasm/rpc.tx.js +81 -0
  313. package/cosmwasm/wasm/v1/authz.d.ts +212 -22
  314. package/cosmwasm/wasm/v1/authz.js +113 -0
  315. package/cosmwasm/wasm/v1/genesis.d.ts +78 -10
  316. package/cosmwasm/wasm/v1/genesis.js +34 -0
  317. package/cosmwasm/wasm/v1/ibc.d.ts +84 -12
  318. package/cosmwasm/wasm/v1/ibc.js +24 -0
  319. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  320. package/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  321. package/cosmwasm/wasm/v1/query.d.ts +761 -76
  322. package/cosmwasm/wasm/v1/query.js +581 -1
  323. package/cosmwasm/wasm/v1/query.lcd.d.ts +3 -1
  324. package/cosmwasm/wasm/v1/query.lcd.js +12 -1
  325. package/cosmwasm/wasm/v1/query.rpc.Query.d.ts +13 -2
  326. package/cosmwasm/wasm/v1/query.rpc.Query.js +20 -1
  327. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +100 -14
  328. package/cosmwasm/wasm/v1/query.rpc.func.js +112 -37
  329. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  330. package/cosmwasm/wasm/v1/tx.js +267 -0
  331. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +145 -18
  332. package/cosmwasm/wasm/v1/tx.rpc.func.js +180 -138
  333. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  334. package/cosmwasm/wasm/v1/types.js +58 -0
  335. package/esm/binary.js +1 -1
  336. package/esm/cosmos/app/runtime/v1alpha1/module.js +17 -0
  337. package/esm/cosmos/app/v1alpha1/config.js +31 -0
  338. package/esm/cosmos/app/v1alpha1/module.js +23 -0
  339. package/esm/cosmos/app/v1alpha1/query.js +16 -0
  340. package/esm/cosmos/app/v1alpha1/query.rpc.func.js +7 -2
  341. package/esm/cosmos/auth/module/v1/module.js +16 -0
  342. package/esm/cosmos/auth/v1beta1/auth.js +34 -0
  343. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  344. package/esm/cosmos/auth/v1beta1/query.js +169 -0
  345. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +87 -20
  346. package/esm/cosmos/auth/v1beta1/tx.js +21 -0
  347. package/esm/cosmos/auth/v1beta1/tx.rpc.func.js +11 -7
  348. package/esm/cosmos/authz/module/v1/module.js +6 -0
  349. package/esm/cosmos/authz/v1beta1/authz.js +36 -0
  350. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  351. package/esm/cosmos/authz/v1beta1/genesis.js +10 -0
  352. package/esm/cosmos/authz/v1beta1/query.js +55 -0
  353. package/esm/cosmos/authz/v1beta1/query.rpc.func.js +25 -6
  354. package/esm/cosmos/authz/v1beta1/tx.js +43 -0
  355. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +30 -19
  356. package/esm/cosmos/autocli/v1/options.js +54 -0
  357. package/esm/cosmos/autocli/v1/query.js +21 -0
  358. package/esm/cosmos/autocli/v1/query.rpc.func.js +7 -2
  359. package/esm/cosmos/bank/module/v1/module.js +6 -0
  360. package/esm/cosmos/bank/v1beta1/authz.js +12 -0
  361. package/esm/cosmos/bank/v1beta1/bank.js +63 -0
  362. package/esm/cosmos/bank/v1beta1/genesis.js +20 -0
  363. package/esm/cosmos/bank/v1beta1/query.js +263 -0
  364. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +128 -26
  365. package/esm/cosmos/bank/v1beta1/tx.js +74 -0
  366. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +40 -25
  367. package/esm/cosmos/base/abci/v1beta1/abci.js +92 -0
  368. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  369. package/esm/cosmos/base/node/v1beta1/query.rpc.func.js +14 -4
  370. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  371. package/esm/cosmos/base/reflection/v1beta1/reflection.js +26 -0
  372. package/esm/cosmos/base/reflection/v1beta1/reflection.rpc.func.js +16 -4
  373. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +203 -0
  374. package/esm/cosmos/base/reflection/v2alpha1/reflection.rpc.func.js +44 -12
  375. package/esm/cosmos/base/tendermint/v1beta1/query.js +154 -0
  376. package/esm/cosmos/base/tendermint/v1beta1/query.rpc.func.js +53 -14
  377. package/esm/cosmos/base/tendermint/v1beta1/types.js +20 -0
  378. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  379. package/esm/cosmos/bundle.js +150 -0
  380. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  381. package/esm/cosmos/consensus/v1/query.js +16 -0
  382. package/esm/cosmos/consensus/v1/query.rpc.func.js +7 -2
  383. package/esm/cosmos/consensus/v1/tx.js +17 -0
  384. package/esm/cosmos/consensus/v1/tx.rpc.func.js +11 -7
  385. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  386. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  387. package/esm/cosmos/distribution/v1beta1/distribution.js +132 -0
  388. package/esm/cosmos/distribution/v1beta1/genesis.js +74 -0
  389. package/esm/cosmos/distribution/v1beta1/query.js +164 -0
  390. package/esm/cosmos/distribution/v1beta1/query.rpc.func.js +71 -20
  391. package/esm/cosmos/distribution/v1beta1/tx.js +128 -0
  392. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +71 -43
  393. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  394. package/esm/cosmos/evidence/v1beta1/evidence.js +7 -0
  395. package/esm/cosmos/evidence/v1beta1/genesis.js +6 -0
  396. package/esm/cosmos/evidence/v1beta1/query.js +33 -0
  397. package/esm/cosmos/evidence/v1beta1/query.rpc.func.js +14 -4
  398. package/esm/cosmos/evidence/v1beta1/tx.js +13 -0
  399. package/esm/cosmos/evidence/v1beta1/tx.rpc.func.js +9 -7
  400. package/esm/cosmos/evm/feemarket/v1/events.js +179 -0
  401. package/esm/cosmos/evm/feemarket/v1/feemarket.js +157 -0
  402. package/esm/cosmos/evm/feemarket/v1/genesis.js +103 -0
  403. package/esm/cosmos/evm/feemarket/v1/query.js +470 -0
  404. package/esm/cosmos/evm/feemarket/v1/query.lcd.js +21 -0
  405. package/esm/cosmos/evm/feemarket/v1/query.rpc.Query.js +42 -0
  406. package/esm/cosmos/evm/feemarket/v1/query.rpc.func.js +41 -0
  407. package/esm/cosmos/evm/feemarket/v1/tx.amino.js +8 -0
  408. package/esm/cosmos/evm/feemarket/v1/tx.js +174 -0
  409. package/esm/cosmos/evm/feemarket/v1/tx.registry.js +28 -0
  410. package/esm/cosmos/evm/feemarket/v1/tx.rpc.func.js +13 -0
  411. package/esm/cosmos/evm/feemarket/v1/tx.rpc.msg.js +19 -0
  412. package/esm/cosmos/evm/vm/v1/events.js +432 -0
  413. package/esm/cosmos/evm/vm/v1/evm.js +1612 -0
  414. package/esm/cosmos/evm/vm/v1/genesis.js +224 -0
  415. package/esm/cosmos/evm/vm/v1/query.js +2677 -0
  416. package/esm/cosmos/evm/vm/v1/query.lcd.js +171 -0
  417. package/esm/cosmos/evm/vm/v1/query.rpc.Query.js +150 -0
  418. package/esm/cosmos/evm/vm/v1/query.rpc.func.js +193 -0
  419. package/esm/cosmos/evm/vm/v1/tx.amino.js +13 -0
  420. package/esm/cosmos/evm/vm/v1/tx.js +1129 -0
  421. package/esm/cosmos/evm/vm/v1/tx.registry.js +46 -0
  422. package/esm/cosmos/evm/vm/v1/tx.rpc.func.js +22 -0
  423. package/esm/cosmos/evm/vm/v1/tx.rpc.msg.js +25 -0
  424. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  425. package/esm/cosmos/feegrant/v1beta1/feegrant.js +38 -0
  426. package/esm/cosmos/feegrant/v1beta1/genesis.js +10 -0
  427. package/esm/cosmos/feegrant/v1beta1/query.js +56 -0
  428. package/esm/cosmos/feegrant/v1beta1/query.rpc.func.js +23 -6
  429. package/esm/cosmos/feegrant/v1beta1/tx.js +44 -0
  430. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +28 -19
  431. package/esm/cosmos/gov/module/v1/module.js +6 -0
  432. package/esm/cosmos/gov/v1/genesis.js +10 -0
  433. package/esm/cosmos/gov/v1/gov.js +77 -0
  434. package/esm/cosmos/gov/v1/query.js +143 -0
  435. package/esm/cosmos/gov/v1/query.rpc.func.js +63 -18
  436. package/esm/cosmos/gov/v1/tx.js +111 -3
  437. package/esm/cosmos/gov/v1/tx.rpc.func.js +62 -43
  438. package/esm/cosmos/gov/v1beta1/genesis.js +10 -0
  439. package/esm/cosmos/gov/v1beta1/gov.js +74 -3
  440. package/esm/cosmos/gov/v1beta1/query.js +131 -0
  441. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +56 -16
  442. package/esm/cosmos/gov/v1beta1/tx.js +62 -3
  443. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +34 -25
  444. package/esm/cosmos/ics23/v1/proofs.js +169 -0
  445. package/esm/cosmos/lcd.js +107 -0
  446. package/esm/cosmos/mint/module/v1/module.js +6 -0
  447. package/esm/cosmos/mint/v1beta1/genesis.js +10 -0
  448. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  449. package/esm/cosmos/mint/v1beta1/query.js +43 -0
  450. package/esm/cosmos/mint/v1beta1/query.rpc.func.js +21 -6
  451. package/esm/cosmos/mint/v1beta1/tx.js +21 -0
  452. package/esm/cosmos/mint/v1beta1/tx.rpc.func.js +11 -7
  453. package/esm/cosmos/params/module/v1/module.js +6 -0
  454. package/esm/cosmos/params/v1beta1/params.js +16 -0
  455. package/esm/cosmos/params/v1beta1/query.js +46 -0
  456. package/esm/cosmos/params/v1beta1/query.rpc.func.js +17 -4
  457. package/esm/cosmos/rpc.query.js +58 -8
  458. package/esm/cosmos/rpc.tx.js +35 -15
  459. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  460. package/esm/cosmos/slashing/v1beta1/genesis.js +35 -0
  461. package/esm/cosmos/slashing/v1beta1/query.js +53 -0
  462. package/esm/cosmos/slashing/v1beta1/query.rpc.func.js +21 -6
  463. package/esm/cosmos/slashing/v1beta1/slashing.js +13 -0
  464. package/esm/cosmos/slashing/v1beta1/tx.js +33 -0
  465. package/esm/cosmos/slashing/v1beta1/tx.rpc.func.js +21 -13
  466. package/esm/cosmos/staking/module/v1/module.js +6 -0
  467. package/esm/cosmos/staking/v1beta1/authz.js +17 -0
  468. package/esm/cosmos/staking/v1beta1/genesis.js +16 -0
  469. package/esm/cosmos/staking/v1beta1/query.js +250 -0
  470. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +123 -28
  471. package/esm/cosmos/staking/v1beta1/staking.js +186 -0
  472. package/esm/cosmos/staking/v1beta1/tx.js +120 -0
  473. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +64 -43
  474. package/esm/cosmos/tx/config/v1/config.js +6 -0
  475. package/esm/cosmos/tx/signing/v1beta1/signing.js +46 -0
  476. package/esm/cosmos/tx/v1beta1/service.js +176 -0
  477. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +73 -18
  478. package/esm/cosmos/tx/v1beta1/tx.js +127 -0
  479. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  480. package/esm/cosmos/upgrade/v1beta1/query.js +85 -0
  481. package/esm/cosmos/upgrade/v1beta1/query.rpc.func.js +45 -10
  482. package/esm/cosmos/upgrade/v1beta1/tx.js +36 -0
  483. package/esm/cosmos/upgrade/v1beta1/tx.rpc.func.js +21 -13
  484. package/esm/cosmos/upgrade/v1beta1/upgrade.js +40 -0
  485. package/esm/cosmos_proto/bundle.js +1 -0
  486. package/esm/cosmos_proto/cosmos.js +19 -0
  487. package/esm/cosmwasm/bundle.js +10 -0
  488. package/esm/cosmwasm/lcd.js +114 -0
  489. package/esm/cosmwasm/rpc.query.js +80 -0
  490. package/esm/cosmwasm/rpc.tx.js +54 -0
  491. package/esm/cosmwasm/wasm/v1/authz.js +113 -0
  492. package/esm/cosmwasm/wasm/v1/genesis.js +34 -0
  493. package/esm/cosmwasm/wasm/v1/ibc.js +24 -0
  494. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +166 -0
  495. package/esm/cosmwasm/wasm/v1/query.js +580 -0
  496. package/esm/cosmwasm/wasm/v1/query.lcd.js +12 -1
  497. package/esm/cosmwasm/wasm/v1/query.rpc.Query.js +21 -2
  498. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +112 -25
  499. package/esm/cosmwasm/wasm/v1/tx.js +267 -0
  500. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +178 -119
  501. package/esm/cosmwasm/wasm/v1/types.js +58 -0
  502. package/esm/ethermint/bundle.js +21 -0
  503. package/esm/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  504. package/esm/ethermint/evm/v1/events.js +24 -0
  505. package/esm/ethermint/evm/v1/evm.js +69 -0
  506. package/esm/ethermint/evm/v1/genesis.js +21 -0
  507. package/esm/ethermint/evm/v1/query.js +167 -0
  508. package/esm/ethermint/evm/v1/query.rpc.func.js +87 -24
  509. package/esm/ethermint/evm/v1/tx.js +66 -0
  510. package/esm/ethermint/evm/v1/tx.rpc.func.js +17 -13
  511. package/esm/ethermint/feemarket/v1/events.js +12 -0
  512. package/esm/ethermint/feemarket/v1/feemarket.js +6 -0
  513. package/esm/ethermint/feemarket/v1/genesis.js +10 -0
  514. package/esm/ethermint/feemarket/v1/query.js +42 -0
  515. package/esm/ethermint/feemarket/v1/query.rpc.func.js +21 -6
  516. package/esm/ethermint/feemarket/v1/tx.js +17 -0
  517. package/esm/ethermint/feemarket/v1/tx.rpc.func.js +9 -7
  518. package/esm/ethermint/lcd.js +119 -0
  519. package/esm/ethermint/rpc.query.js +83 -0
  520. package/esm/ethermint/rpc.tx.js +57 -0
  521. package/esm/ethermint/types/v1/account.js +10 -0
  522. package/esm/ethermint/types/v1/dynamic_fee.js +6 -0
  523. package/esm/ethermint/types/v1/indexer.js +6 -0
  524. package/esm/ethermint/types/v1/web3.js +7 -0
  525. package/esm/extern.js +14 -4
  526. package/esm/google/api/http.js +290 -0
  527. package/esm/google/bundle.js +5 -0
  528. package/esm/google/protobuf/any.js +90 -0
  529. package/esm/google/protobuf/descriptor.js +553 -11
  530. package/esm/google/protobuf/duration.js +63 -0
  531. package/esm/google/protobuf/timestamp.js +94 -0
  532. package/esm/helper-func-types.js +14 -22
  533. package/esm/helpers.js +1 -1
  534. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  535. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  536. package/esm/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +14 -4
  537. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  538. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +24 -19
  539. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  540. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  541. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  542. package/esm/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +7 -2
  543. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  544. package/esm/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +16 -13
  545. package/esm/ibc/applications/interchain_accounts/v1/account.js +9 -0
  546. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  547. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  548. package/esm/ibc/applications/transfer/v1/authz.js +19 -0
  549. package/esm/ibc/applications/transfer/v1/denomtrace.js +98 -0
  550. package/esm/ibc/applications/transfer/v1/genesis.js +24 -13
  551. package/esm/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  552. package/esm/ibc/applications/transfer/v1/query.js +270 -175
  553. package/esm/ibc/applications/transfer/v1/query.lcd.js +12 -12
  554. package/esm/ibc/applications/transfer/v1/query.rpc.Query.js +21 -21
  555. package/esm/ibc/applications/transfer/v1/query.rpc.func.js +55 -25
  556. package/esm/ibc/applications/transfer/v1/token.js +300 -0
  557. package/esm/ibc/applications/transfer/v1/transfer.js +9 -89
  558. package/esm/ibc/applications/transfer/v1/tx.js +49 -3
  559. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +16 -13
  560. package/esm/ibc/bundle.js +76 -0
  561. package/esm/ibc/core/channel/v1/channel.js +84 -124
  562. package/esm/ibc/core/channel/v1/genesis.js +21 -17
  563. package/esm/ibc/core/channel/v1/query.js +252 -530
  564. package/esm/ibc/core/channel/v1/query.lcd.js +0 -15
  565. package/esm/ibc/core/channel/v1/query.rpc.Query.js +1 -28
  566. package/esm/ibc/core/channel/v1/query.rpc.func.js +107 -53
  567. package/esm/ibc/core/channel/v1/tx.amino.js +1 -46
  568. package/esm/ibc/core/channel/v1/tx.js +164 -1970
  569. package/esm/ibc/core/channel/v1/tx.registry.js +2 -164
  570. package/esm/ibc/core/channel/v1/tx.rpc.func.js +91 -134
  571. package/esm/ibc/core/channel/v1/tx.rpc.msg.js +1 -55
  572. package/esm/ibc/core/channel/v2/genesis.js +360 -0
  573. package/esm/ibc/core/channel/v2/packet.js +508 -0
  574. package/esm/ibc/core/channel/v2/query.js +1727 -0
  575. package/esm/ibc/core/channel/v2/query.lcd.js +62 -0
  576. package/esm/ibc/core/channel/v2/query.rpc.Query.js +87 -0
  577. package/esm/ibc/core/channel/v2/query.rpc.func.js +106 -0
  578. package/esm/ibc/core/channel/v2/tx.amino.js +23 -0
  579. package/esm/ibc/core/channel/v2/tx.js +901 -0
  580. package/esm/ibc/core/channel/v2/tx.registry.js +82 -0
  581. package/esm/ibc/core/channel/v2/tx.rpc.func.js +38 -0
  582. package/esm/ibc/core/channel/v2/tx.rpc.msg.js +35 -0
  583. package/esm/ibc/core/client/v1/client.js +50 -235
  584. package/esm/ibc/core/client/v1/genesis.js +27 -0
  585. package/esm/ibc/core/client/v1/query.js +355 -16
  586. package/esm/ibc/core/client/v1/query.lcd.js +5 -0
  587. package/esm/ibc/core/client/v1/query.rpc.Query.js +10 -1
  588. package/esm/ibc/core/client/v1/query.rpc.func.js +86 -21
  589. package/esm/ibc/core/client/v1/tx.amino.js +6 -1
  590. package/esm/ibc/core/client/v1/tx.js +279 -7
  591. package/esm/ibc/core/client/v1/tx.registry.js +20 -2
  592. package/esm/ibc/core/client/v1/tx.rpc.func.js +72 -50
  593. package/esm/ibc/core/client/v1/tx.rpc.msg.js +7 -1
  594. package/esm/ibc/core/client/v2/config.js +90 -0
  595. package/esm/ibc/core/client/v2/counterparty.js +100 -0
  596. package/esm/ibc/core/client/v2/genesis.js +194 -0
  597. package/esm/ibc/core/client/v2/query.js +348 -0
  598. package/esm/ibc/core/client/v2/query.lcd.js +16 -0
  599. package/esm/ibc/core/client/v2/query.rpc.Query.js +33 -0
  600. package/esm/ibc/core/client/v2/query.rpc.func.js +28 -0
  601. package/esm/ibc/core/client/v2/tx.amino.js +13 -0
  602. package/esm/ibc/core/client/v2/tx.js +378 -0
  603. package/esm/ibc/core/client/v2/tx.registry.js +46 -0
  604. package/esm/ibc/core/client/v2/tx.rpc.func.js +20 -0
  605. package/esm/ibc/core/client/v2/tx.rpc.msg.js +23 -0
  606. package/esm/ibc/core/commitment/v1/commitment.js +29 -80
  607. package/esm/ibc/core/commitment/v2/commitment.js +118 -0
  608. package/esm/ibc/core/connection/v1/connection.js +57 -0
  609. package/esm/ibc/core/connection/v1/genesis.js +10 -0
  610. package/esm/ibc/core/connection/v1/query.js +105 -0
  611. package/esm/ibc/core/connection/v1/query.rpc.func.js +45 -12
  612. package/esm/ibc/core/connection/v1/tx.js +82 -0
  613. package/esm/ibc/core/connection/v1/tx.rpc.func.js +42 -31
  614. package/esm/ibc/core/types/v1/genesis.js +41 -3
  615. package/esm/ibc/lcd.js +158 -0
  616. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  617. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  618. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  619. package/esm/ibc/lightclients/wasm/v1/genesis.js +16 -0
  620. package/esm/ibc/lightclients/wasm/v1/query.js +31 -0
  621. package/esm/ibc/lightclients/wasm/v1/query.rpc.func.js +14 -4
  622. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  623. package/esm/ibc/lightclients/wasm/v1/tx.rpc.func.js +24 -19
  624. package/esm/ibc/lightclients/wasm/v1/wasm.js +32 -0
  625. package/esm/ibc/rpc.query.js +108 -0
  626. package/esm/ibc/rpc.tx.js +82 -0
  627. package/esm/index.js +20 -0
  628. package/esm/registry.js +9 -1
  629. package/esm/tendermint/abci/types.js +322 -0
  630. package/esm/tendermint/bundle.js +10 -0
  631. package/esm/tendermint/crypto/keys.js +6 -0
  632. package/esm/tendermint/crypto/proof.js +36 -0
  633. package/esm/tendermint/p2p/types.js +24 -0
  634. package/esm/tendermint/types/block.js +9 -0
  635. package/esm/tendermint/types/evidence.js +35 -0
  636. package/esm/tendermint/types/params.js +50 -0
  637. package/esm/tendermint/types/types.js +121 -0
  638. package/esm/tendermint/types/validator.js +25 -0
  639. package/esm/tendermint/version/types.js +16 -0
  640. package/esm/types.js +1 -1
  641. package/esm/utf8.js +1 -1
  642. package/esm/varint.js +1 -1
  643. package/esm/xpla/bundle.js +22 -0
  644. package/esm/xpla/burn/v1beta1/burn.js +111 -0
  645. package/esm/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  646. package/esm/xpla/burn/v1beta1/query.js +327 -0
  647. package/esm/xpla/burn/v1beta1/query.lcd.js +22 -0
  648. package/esm/xpla/burn/v1beta1/query.rpc.Query.js +33 -0
  649. package/esm/xpla/burn/v1beta1/query.rpc.func.js +28 -0
  650. package/esm/xpla/burn/v1beta1/tx.amino.js +8 -0
  651. package/esm/xpla/burn/v1beta1/tx.js +169 -0
  652. package/esm/xpla/burn/v1beta1/tx.registry.js +28 -0
  653. package/esm/xpla/burn/v1beta1/tx.rpc.func.js +11 -0
  654. package/esm/xpla/burn/v1beta1/tx.rpc.msg.js +17 -0
  655. package/esm/xpla/lcd.js +15 -67
  656. package/esm/xpla/reward/v1beta1/genesis.js +10 -0
  657. package/esm/xpla/reward/v1beta1/query.js +33 -0
  658. package/esm/xpla/reward/v1beta1/query.rpc.func.js +14 -4
  659. package/esm/xpla/reward/v1beta1/reward.js +6 -0
  660. package/esm/xpla/reward/v1beta1/tx.js +35 -0
  661. package/esm/xpla/reward/v1beta1/tx.rpc.func.js +19 -13
  662. package/esm/xpla/rpc.query.js +11 -50
  663. package/esm/xpla/rpc.tx.js +60 -1
  664. package/esm/xpla/volunteer/v1beta1/genesis.js +10 -0
  665. package/esm/xpla/volunteer/v1beta1/proposal.js +34 -0
  666. package/esm/xpla/volunteer/v1beta1/query.js +12 -0
  667. package/esm/xpla/volunteer/v1beta1/query.rpc.func.js +7 -2
  668. package/esm/xpla/volunteer/v1beta1/tx.js +31 -0
  669. package/esm/xpla/volunteer/v1beta1/tx.rpc.func.js +17 -13
  670. package/esm/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  671. package/ethermint/bundle.d.ts +21 -0
  672. package/ethermint/bundle.js +120 -0
  673. package/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +39 -4
  674. package/ethermint/crypto/v1/ethsecp256k1/keys.js +15 -0
  675. package/ethermint/evm/v1/events.d.ts +144 -32
  676. package/ethermint/evm/v1/events.js +24 -0
  677. package/ethermint/evm/v1/evm.d.ts +434 -110
  678. package/ethermint/evm/v1/evm.js +69 -0
  679. package/ethermint/evm/v1/genesis.d.ts +62 -12
  680. package/ethermint/evm/v1/genesis.js +21 -0
  681. package/ethermint/evm/v1/query.d.ts +673 -126
  682. package/ethermint/evm/v1/query.js +167 -0
  683. package/ethermint/evm/v1/query.rpc.func.d.ts +87 -13
  684. package/ethermint/evm/v1/query.rpc.func.js +88 -37
  685. package/ethermint/evm/v1/tx.d.ts +363 -88
  686. package/ethermint/evm/v1/tx.js +66 -0
  687. package/ethermint/evm/v1/tx.rpc.func.d.ts +15 -3
  688. package/ethermint/evm/v1/tx.rpc.func.js +18 -16
  689. package/ethermint/feemarket/v1/events.d.ts +54 -10
  690. package/ethermint/feemarket/v1/events.js +12 -0
  691. package/ethermint/feemarket/v1/feemarket.d.ts +42 -10
  692. package/ethermint/feemarket/v1/feemarket.js +6 -0
  693. package/ethermint/feemarket/v1/genesis.d.ts +24 -4
  694. package/ethermint/feemarket/v1/genesis.js +10 -0
  695. package/ethermint/feemarket/v1/query.d.ts +116 -14
  696. package/ethermint/feemarket/v1/query.js +42 -0
  697. package/ethermint/feemarket/v1/query.rpc.func.d.ts +21 -4
  698. package/ethermint/feemarket/v1/query.rpc.func.js +22 -10
  699. package/ethermint/feemarket/v1/tx.d.ts +37 -4
  700. package/ethermint/feemarket/v1/tx.js +17 -0
  701. package/ethermint/feemarket/v1/tx.rpc.func.d.ts +8 -2
  702. package/ethermint/feemarket/v1/tx.rpc.func.js +10 -9
  703. package/ethermint/lcd.d.ts +73 -0
  704. package/ethermint/lcd.js +146 -0
  705. package/ethermint/rpc.query.d.ts +241 -0
  706. package/ethermint/rpc.query.js +110 -0
  707. package/ethermint/rpc.tx.d.ts +60 -0
  708. package/ethermint/rpc.tx.js +84 -0
  709. package/ethermint/types/v1/account.d.ts +25 -4
  710. package/ethermint/types/v1/account.js +10 -0
  711. package/ethermint/types/v1/dynamic_fee.d.ts +24 -4
  712. package/ethermint/types/v1/dynamic_fee.js +6 -0
  713. package/ethermint/types/v1/indexer.d.ts +42 -10
  714. package/ethermint/types/v1/indexer.js +6 -0
  715. package/ethermint/types/v1/web3.d.ts +13 -0
  716. package/ethermint/types/v1/web3.js +7 -0
  717. package/extern.d.ts +3 -2
  718. package/extern.js +14 -4
  719. package/google/api/http.d.ts +343 -14
  720. package/google/api/http.js +290 -0
  721. package/google/bundle.d.ts +5 -0
  722. package/google/bundle.js +21 -0
  723. package/google/protobuf/any.d.ts +102 -2
  724. package/google/protobuf/any.js +90 -0
  725. package/google/protobuf/descriptor.d.ts +833 -86
  726. package/google/protobuf/descriptor.js +561 -13
  727. package/google/protobuf/duration.d.ts +69 -0
  728. package/google/protobuf/duration.js +63 -0
  729. package/google/protobuf/timestamp.d.ts +100 -0
  730. package/google/protobuf/timestamp.js +94 -0
  731. package/helper-func-types.d.ts +7 -87
  732. package/helper-func-types.js +15 -24
  733. package/helpers.d.ts +1 -1
  734. package/helpers.js +1 -1
  735. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  736. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  737. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  738. package/ibc/applications/interchain_accounts/controller/v1/query.js +28 -0
  739. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.d.ts +14 -3
  740. package/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.js +15 -7
  741. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  742. package/ibc/applications/interchain_accounts/controller/v1/tx.js +43 -0
  743. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.d.ts +21 -4
  744. package/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.js +25 -23
  745. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  746. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +41 -0
  747. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  748. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  749. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  750. package/ibc/applications/interchain_accounts/host/v1/query.js +16 -0
  751. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.d.ts +7 -2
  752. package/ibc/applications/interchain_accounts/host/v1/query.rpc.func.js +8 -4
  753. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  754. package/ibc/applications/interchain_accounts/host/v1/tx.js +31 -0
  755. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.d.ts +14 -3
  756. package/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.js +17 -16
  757. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  758. package/ibc/applications/interchain_accounts/v1/account.js +9 -0
  759. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  760. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  761. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  762. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  763. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  764. package/ibc/applications/transfer/v1/authz.js +19 -0
  765. package/ibc/applications/transfer/v1/denomtrace.d.ts +73 -0
  766. package/ibc/applications/transfer/v1/denomtrace.js +101 -0
  767. package/ibc/applications/transfer/v1/genesis.d.ts +22 -5
  768. package/ibc/applications/transfer/v1/genesis.js +23 -12
  769. package/ibc/applications/transfer/{v2 → v1}/packet.d.ts +45 -11
  770. package/ibc/applications/transfer/{v2 → v1}/packet.js +10 -2
  771. package/ibc/applications/transfer/v1/query.d.ts +389 -170
  772. package/ibc/applications/transfer/v1/query.js +270 -175
  773. package/ibc/applications/transfer/v1/query.lcd.d.ts +3 -3
  774. package/ibc/applications/transfer/v1/query.lcd.js +12 -12
  775. package/ibc/applications/transfer/v1/query.rpc.Query.d.ts +9 -9
  776. package/ibc/applications/transfer/v1/query.rpc.Query.js +20 -20
  777. package/ibc/applications/transfer/v1/query.rpc.func.d.ts +43 -8
  778. package/ibc/applications/transfer/v1/query.rpc.func.js +55 -31
  779. package/ibc/applications/transfer/v1/token.d.ts +179 -0
  780. package/ibc/applications/transfer/v1/token.js +303 -0
  781. package/ibc/applications/transfer/v1/transfer.d.ts +15 -51
  782. package/ibc/applications/transfer/v1/transfer.js +10 -90
  783. package/ibc/applications/transfer/v1/tx.d.ts +127 -24
  784. package/ibc/applications/transfer/v1/tx.js +49 -3
  785. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +14 -3
  786. package/ibc/applications/transfer/v1/tx.rpc.func.js +17 -16
  787. package/ibc/bundle.d.ts +76 -0
  788. package/ibc/bundle.js +451 -0
  789. package/ibc/core/channel/v1/channel.d.ts +293 -120
  790. package/ibc/core/channel/v1/channel.js +85 -125
  791. package/ibc/core/channel/v1/genesis.d.ts +38 -7
  792. package/ibc/core/channel/v1/genesis.js +20 -16
  793. package/ibc/core/channel/v1/query.d.ts +840 -378
  794. package/ibc/core/channel/v1/query.js +252 -530
  795. package/ibc/core/channel/v1/query.lcd.d.ts +1 -4
  796. package/ibc/core/channel/v1/query.lcd.js +0 -15
  797. package/ibc/core/channel/v1/query.rpc.Query.d.ts +1 -13
  798. package/ibc/core/channel/v1/query.rpc.Query.js +0 -27
  799. package/ibc/core/channel/v1/query.rpc.func.d.ts +107 -19
  800. package/ibc/core/channel/v1/query.rpc.func.js +107 -70
  801. package/ibc/core/channel/v1/tx.amino.d.ts +1 -46
  802. package/ibc/core/channel/v1/tx.amino.js +0 -45
  803. package/ibc/core/channel/v1/tx.d.ts +335 -747
  804. package/ibc/core/channel/v1/tx.js +164 -1970
  805. package/ibc/core/channel/v1/tx.registry.d.ts +1 -109
  806. package/ibc/core/channel/v1/tx.registry.js +1 -163
  807. package/ibc/core/channel/v1/tx.rpc.func.d.ts +72 -21
  808. package/ibc/core/channel/v1/tx.rpc.func.js +91 -153
  809. package/ibc/core/channel/v1/tx.rpc.msg.d.ts +1 -28
  810. package/ibc/core/channel/v1/tx.rpc.msg.js +0 -54
  811. package/ibc/core/channel/v2/genesis.d.ts +202 -0
  812. package/ibc/core/channel/v2/genesis.js +363 -0
  813. package/ibc/core/channel/v2/packet.d.ts +322 -0
  814. package/ibc/core/channel/v2/packet.js +513 -0
  815. package/ibc/core/channel/v2/query.d.ts +1067 -0
  816. package/ibc/core/channel/v2/query.js +1730 -0
  817. package/ibc/core/channel/v2/query.lcd.d.ts +16 -0
  818. package/ibc/core/channel/v2/query.lcd.js +66 -0
  819. package/ibc/core/channel/v2/query.rpc.Query.d.ts +44 -0
  820. package/ibc/core/channel/v2/query.rpc.Query.js +92 -0
  821. package/ibc/core/channel/v2/query.rpc.func.d.ts +57 -0
  822. package/ibc/core/channel/v2/query.rpc.func.js +109 -0
  823. package/ibc/core/channel/v2/tx.amino.d.ts +23 -0
  824. package/ibc/core/channel/v2/tx.amino.js +26 -0
  825. package/ibc/core/channel/v2/tx.d.ts +437 -0
  826. package/ibc/core/channel/v2/tx.js +906 -0
  827. package/ibc/core/channel/v2/tx.registry.d.ts +59 -0
  828. package/ibc/core/channel/v2/tx.registry.js +85 -0
  829. package/ibc/core/channel/v2/tx.rpc.func.d.ts +29 -0
  830. package/ibc/core/channel/v2/tx.rpc.func.js +41 -0
  831. package/ibc/core/channel/v2/tx.rpc.msg.d.ts +22 -0
  832. package/ibc/core/channel/v2/tx.rpc.msg.js +40 -0
  833. package/ibc/core/client/v1/client.d.ts +133 -153
  834. package/ibc/core/client/v1/client.js +51 -236
  835. package/ibc/core/client/v1/genesis.d.ts +86 -20
  836. package/ibc/core/client/v1/genesis.js +27 -0
  837. package/ibc/core/client/v1/query.d.ts +591 -75
  838. package/ibc/core/client/v1/query.js +356 -17
  839. package/ibc/core/client/v1/query.lcd.d.ts +2 -1
  840. package/ibc/core/client/v1/query.lcd.js +5 -0
  841. package/ibc/core/client/v1/query.rpc.Query.d.ts +5 -1
  842. package/ibc/core/client/v1/query.rpc.Query.js +9 -0
  843. package/ibc/core/client/v1/query.rpc.func.d.ts +80 -12
  844. package/ibc/core/client/v1/query.rpc.func.js +86 -31
  845. package/ibc/core/client/v1/tx.amino.d.ts +6 -1
  846. package/ibc/core/client/v1/tx.amino.js +5 -0
  847. package/ibc/core/client/v1/tx.d.ts +454 -60
  848. package/ibc/core/client/v1/tx.js +280 -8
  849. package/ibc/core/client/v1/tx.registry.d.ts +13 -1
  850. package/ibc/core/client/v1/tx.registry.js +19 -1
  851. package/ibc/core/client/v1/tx.rpc.func.d.ts +57 -9
  852. package/ibc/core/client/v1/tx.rpc.func.js +73 -58
  853. package/ibc/core/client/v1/tx.rpc.msg.d.ts +4 -1
  854. package/ibc/core/client/v1/tx.rpc.msg.js +6 -0
  855. package/ibc/core/client/v2/config.d.ts +66 -0
  856. package/ibc/core/client/v2/config.js +93 -0
  857. package/ibc/core/client/v2/counterparty.d.ts +65 -0
  858. package/ibc/core/client/v2/counterparty.js +103 -0
  859. package/ibc/core/client/v2/genesis.d.ts +121 -0
  860. package/ibc/core/client/v2/genesis.js +197 -0
  861. package/ibc/core/client/v2/query.d.ts +218 -0
  862. package/ibc/core/client/v2/query.js +351 -0
  863. package/ibc/core/client/v2/query.lcd.d.ts +10 -0
  864. package/ibc/core/client/v2/query.lcd.js +20 -0
  865. package/ibc/core/client/v2/query.rpc.Query.d.ts +20 -0
  866. package/ibc/core/client/v2/query.rpc.Query.js +38 -0
  867. package/ibc/core/client/v2/query.rpc.func.d.ts +15 -0
  868. package/ibc/core/client/v2/query.rpc.func.js +31 -0
  869. package/ibc/core/client/v2/tx.amino.d.ts +13 -0
  870. package/ibc/core/client/v2/tx.amino.js +16 -0
  871. package/ibc/core/client/v2/tx.d.ts +251 -0
  872. package/ibc/core/client/v2/tx.js +381 -0
  873. package/ibc/core/client/v2/tx.registry.d.ts +35 -0
  874. package/ibc/core/client/v2/tx.registry.js +49 -0
  875. package/ibc/core/client/v2/tx.rpc.func.d.ts +15 -0
  876. package/ibc/core/client/v2/tx.rpc.func.js +23 -0
  877. package/ibc/core/client/v2/tx.rpc.msg.d.ts +16 -0
  878. package/ibc/core/client/v2/tx.rpc.msg.js +28 -0
  879. package/ibc/core/commitment/v1/commitment.d.ts +43 -41
  880. package/ibc/core/commitment/v1/commitment.js +30 -81
  881. package/ibc/core/commitment/v2/commitment.d.ts +141 -0
  882. package/ibc/core/commitment/v2/commitment.js +121 -0
  883. package/ibc/core/connection/v1/connection.d.ts +199 -38
  884. package/ibc/core/connection/v1/connection.js +57 -0
  885. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  886. package/ibc/core/connection/v1/genesis.js +10 -0
  887. package/ibc/core/connection/v1/query.d.ts +293 -46
  888. package/ibc/core/connection/v1/query.js +105 -0
  889. package/ibc/core/connection/v1/query.rpc.func.d.ts +45 -7
  890. package/ibc/core/connection/v1/query.rpc.func.js +46 -19
  891. package/ibc/core/connection/v1/tx.d.ts +254 -32
  892. package/ibc/core/connection/v1/tx.js +82 -0
  893. package/ibc/core/connection/v1/tx.rpc.func.d.ts +37 -6
  894. package/ibc/core/connection/v1/tx.rpc.func.js +43 -37
  895. package/ibc/core/types/v1/genesis.d.ts +56 -8
  896. package/ibc/core/types/v1/genesis.js +41 -3
  897. package/ibc/lcd.d.ts +98 -0
  898. package/ibc/lcd.js +185 -0
  899. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +279 -26
  900. package/ibc/lightclients/solomachine/v2/solomachine.js +122 -0
  901. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +182 -28
  902. package/ibc/lightclients/solomachine/v3/solomachine.js +61 -0
  903. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +142 -28
  904. package/ibc/lightclients/tendermint/v1/tendermint.js +57 -0
  905. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  906. package/ibc/lightclients/wasm/v1/genesis.js +16 -0
  907. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  908. package/ibc/lightclients/wasm/v1/query.js +31 -0
  909. package/ibc/lightclients/wasm/v1/query.rpc.func.d.ts +14 -3
  910. package/ibc/lightclients/wasm/v1/query.rpc.func.js +15 -7
  911. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  912. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  913. package/ibc/lightclients/wasm/v1/tx.rpc.func.d.ts +21 -4
  914. package/ibc/lightclients/wasm/v1/tx.rpc.func.js +25 -23
  915. package/ibc/lightclients/wasm/v1/wasm.d.ts +72 -8
  916. package/ibc/lightclients/wasm/v1/wasm.js +32 -0
  917. package/ibc/rpc.query.d.ts +310 -0
  918. package/ibc/rpc.query.js +135 -0
  919. package/ibc/rpc.tx.d.ts +85 -0
  920. package/ibc/rpc.tx.js +109 -0
  921. package/index.d.ts +20 -0
  922. package/index.js +36 -0
  923. package/package.json +9 -12
  924. package/registry.d.ts +3 -1
  925. package/registry.js +9 -1
  926. package/tendermint/abci/types.d.ts +971 -98
  927. package/tendermint/abci/types.js +322 -0
  928. package/tendermint/bundle.d.ts +10 -0
  929. package/tendermint/bundle.js +115 -0
  930. package/tendermint/crypto/keys.d.ts +18 -2
  931. package/tendermint/crypto/keys.js +6 -0
  932. package/tendermint/crypto/proof.d.ts +89 -6
  933. package/tendermint/crypto/proof.js +36 -0
  934. package/tendermint/p2p/types.d.ts +60 -0
  935. package/tendermint/p2p/types.js +24 -0
  936. package/tendermint/types/block.d.ts +15 -0
  937. package/tendermint/types/block.js +9 -0
  938. package/tendermint/types/evidence.d.ts +66 -4
  939. package/tendermint/types/evidence.js +35 -0
  940. package/tendermint/types/params.d.ts +112 -8
  941. package/tendermint/types/params.js +50 -0
  942. package/tendermint/types/types.d.ts +327 -42
  943. package/tendermint/types/types.js +121 -0
  944. package/tendermint/types/validator.d.ts +45 -0
  945. package/tendermint/types/validator.js +25 -0
  946. package/tendermint/version/types.d.ts +28 -0
  947. package/tendermint/version/types.js +16 -0
  948. package/types.d.ts +4 -49
  949. package/types.js +1 -1
  950. package/utf8.d.ts +1 -1
  951. package/utf8.js +1 -1
  952. package/varint.d.ts +1 -1
  953. package/varint.js +1 -1
  954. package/xpla/bundle.d.ts +22 -0
  955. package/xpla/bundle.js +61 -0
  956. package/xpla/burn/v1beta1/burn.d.ts +54 -0
  957. package/xpla/burn/v1beta1/burn.js +114 -0
  958. package/{cosmos/crisis → xpla/burn}/v1beta1/genesis.d.ts +26 -13
  959. package/{cosmos/genutil → xpla/burn}/v1beta1/genesis.js +26 -23
  960. package/xpla/burn/v1beta1/query.d.ts +204 -0
  961. package/xpla/burn/v1beta1/query.js +330 -0
  962. package/xpla/burn/v1beta1/query.lcd.d.ts +10 -0
  963. package/xpla/burn/v1beta1/query.lcd.js +26 -0
  964. package/xpla/burn/v1beta1/query.rpc.Query.d.ts +20 -0
  965. package/xpla/burn/v1beta1/query.rpc.Query.js +38 -0
  966. package/xpla/burn/v1beta1/query.rpc.func.d.ts +15 -0
  967. package/xpla/burn/v1beta1/query.rpc.func.js +31 -0
  968. package/xpla/burn/v1beta1/tx.amino.d.ts +8 -0
  969. package/{cosmos/nft → xpla/burn}/v1beta1/tx.amino.js +4 -4
  970. package/xpla/burn/v1beta1/tx.d.ts +105 -0
  971. package/xpla/burn/v1beta1/tx.js +172 -0
  972. package/xpla/burn/v1beta1/tx.registry.d.ts +23 -0
  973. package/xpla/burn/v1beta1/tx.registry.js +31 -0
  974. package/xpla/burn/v1beta1/tx.rpc.func.d.ts +8 -0
  975. package/xpla/burn/v1beta1/tx.rpc.func.js +14 -0
  976. package/xpla/burn/v1beta1/tx.rpc.msg.d.ts +13 -0
  977. package/{cosmos/nft → xpla/burn}/v1beta1/tx.rpc.msg.js +5 -5
  978. package/xpla/lcd.d.ts +11 -47
  979. package/xpla/lcd.js +15 -67
  980. package/xpla/reward/v1beta1/genesis.d.ts +24 -4
  981. package/xpla/reward/v1beta1/genesis.js +10 -0
  982. package/xpla/reward/v1beta1/query.d.ts +74 -8
  983. package/xpla/reward/v1beta1/query.js +33 -0
  984. package/xpla/reward/v1beta1/query.rpc.func.d.ts +14 -3
  985. package/xpla/reward/v1beta1/query.rpc.func.js +15 -7
  986. package/xpla/reward/v1beta1/reward.d.ts +18 -2
  987. package/xpla/reward/v1beta1/reward.js +6 -0
  988. package/xpla/reward/v1beta1/tx.d.ts +64 -4
  989. package/xpla/reward/v1beta1/tx.js +35 -0
  990. package/xpla/reward/v1beta1/tx.rpc.func.d.ts +17 -3
  991. package/xpla/reward/v1beta1/tx.rpc.func.js +20 -16
  992. package/xpla/rpc.query.d.ts +141 -253
  993. package/xpla/rpc.query.js +11 -50
  994. package/xpla/rpc.tx.d.ts +60 -1
  995. package/xpla/rpc.tx.js +83 -1
  996. package/xpla/volunteer/v1beta1/genesis.d.ts +18 -2
  997. package/xpla/volunteer/v1beta1/genesis.js +10 -0
  998. package/xpla/volunteer/v1beta1/proposal.d.ts +84 -16
  999. package/xpla/volunteer/v1beta1/proposal.js +34 -0
  1000. package/xpla/volunteer/v1beta1/query.d.ts +36 -4
  1001. package/xpla/volunteer/v1beta1/query.js +12 -0
  1002. package/xpla/volunteer/v1beta1/query.rpc.func.d.ts +7 -2
  1003. package/xpla/volunteer/v1beta1/query.rpc.func.js +8 -4
  1004. package/xpla/volunteer/v1beta1/tx.d.ts +64 -4
  1005. package/xpla/volunteer/v1beta1/tx.js +31 -0
  1006. package/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +15 -3
  1007. package/xpla/volunteer/v1beta1/tx.rpc.func.js +18 -16
  1008. package/xpla/volunteer/v1beta1/volunteervalidator.d.ts +30 -6
  1009. package/xpla/volunteer/v1beta1/volunteervalidator.js +6 -0
  1010. package/cosmos/app/runtime/v2/module.d.ts +0 -231
  1011. package/cosmos/app/runtime/v2/module.js +0 -421
  1012. package/cosmos/auth/v1beta1/accounts.d.ts +0 -106
  1013. package/cosmos/auth/v1beta1/accounts.js +0 -161
  1014. package/cosmos/base/grpc/v2/service.d.ts +0 -168
  1015. package/cosmos/base/grpc/v2/service.js +0 -394
  1016. package/cosmos/base/grpc/v2/service.rpc.Service.d.ts +0 -20
  1017. package/cosmos/base/grpc/v2/service.rpc.Service.js +0 -38
  1018. package/cosmos/base/grpc/v2/service.rpc.func.d.ts +0 -4
  1019. package/cosmos/base/grpc/v2/service.rpc.func.js +0 -23
  1020. package/cosmos/circuit/module/v1/module.d.ts +0 -36
  1021. package/cosmos/circuit/module/v1/module.js +0 -83
  1022. package/cosmos/circuit/v1/query.d.ts +0 -200
  1023. package/cosmos/circuit/v1/query.js +0 -480
  1024. package/cosmos/circuit/v1/query.lcd.d.ts +0 -11
  1025. package/cosmos/circuit/v1/query.lcd.js +0 -34
  1026. package/cosmos/circuit/v1/query.rpc.Query.d.ts +0 -24
  1027. package/cosmos/circuit/v1/query.rpc.Query.js +0 -49
  1028. package/cosmos/circuit/v1/query.rpc.func.d.ts +0 -5
  1029. package/cosmos/circuit/v1/query.rpc.func.js +0 -29
  1030. package/cosmos/circuit/v1/tx.amino.d.ts +0 -18
  1031. package/cosmos/circuit/v1/tx.amino.js +0 -21
  1032. package/cosmos/circuit/v1/tx.d.ts +0 -251
  1033. package/cosmos/circuit/v1/tx.js +0 -528
  1034. package/cosmos/circuit/v1/tx.registry.d.ts +0 -2
  1035. package/cosmos/circuit/v1/tx.registry.js +0 -5
  1036. package/cosmos/circuit/v1/tx.rpc.func.d.ts +0 -5
  1037. package/cosmos/circuit/v1/tx.rpc.func.js +0 -27
  1038. package/cosmos/circuit/v1/tx.rpc.msg.d.ts +0 -25
  1039. package/cosmos/circuit/v1/tx.rpc.msg.js +0 -36
  1040. package/cosmos/circuit/v1/types.d.ts +0 -151
  1041. package/cosmos/circuit/v1/types.js +0 -350
  1042. package/cosmos/crisis/module/v1/module.d.ts +0 -40
  1043. package/cosmos/crisis/module/v1/module.js +0 -95
  1044. package/cosmos/crisis/v1beta1/genesis.js +0 -84
  1045. package/cosmos/crisis/v1beta1/tx.amino.d.ts +0 -13
  1046. package/cosmos/crisis/v1beta1/tx.amino.js +0 -16
  1047. package/cosmos/crisis/v1beta1/tx.d.ts +0 -161
  1048. package/cosmos/crisis/v1beta1/tx.js +0 -328
  1049. package/cosmos/crisis/v1beta1/tx.registry.d.ts +0 -2
  1050. package/cosmos/crisis/v1beta1/tx.registry.js +0 -5
  1051. package/cosmos/crisis/v1beta1/tx.rpc.func.d.ts +0 -4
  1052. package/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -20
  1053. package/cosmos/crisis/v1beta1/tx.rpc.msg.d.ts +0 -21
  1054. package/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -31
  1055. package/cosmos/crypto/ed25519/keys.d.ts +0 -84
  1056. package/cosmos/crypto/ed25519/keys.js +0 -162
  1057. package/cosmos/crypto/hd/v1/hd.d.ts +0 -58
  1058. package/cosmos/crypto/hd/v1/hd.js +0 -131
  1059. package/cosmos/crypto/keyring/v1/record.d.ts +0 -188
  1060. package/cosmos/crypto/keyring/v1/record.js +0 -431
  1061. package/cosmos/crypto/multisig/keys.d.ts +0 -45
  1062. package/cosmos/crypto/multisig/keys.js +0 -99
  1063. package/cosmos/crypto/secp256k1/keys.d.ts +0 -78
  1064. package/cosmos/crypto/secp256k1/keys.js +0 -162
  1065. package/cosmos/crypto/secp256r1/keys.d.ts +0 -76
  1066. package/cosmos/crypto/secp256r1/keys.js +0 -162
  1067. package/cosmos/genutil/module/v1/module.d.ts +0 -32
  1068. package/cosmos/genutil/module/v1/module.js +0 -70
  1069. package/cosmos/genutil/v1beta1/genesis.d.ts +0 -36
  1070. package/cosmos/group/module/v1/module.d.ts +0 -53
  1071. package/cosmos/group/module/v1/module.js +0 -96
  1072. package/cosmos/group/v1/events.d.ts +0 -363
  1073. package/cosmos/group/v1/events.js +0 -847
  1074. package/cosmos/group/v1/genesis.d.ts +0 -83
  1075. package/cosmos/group/v1/genesis.js +0 -183
  1076. package/cosmos/group/v1/query.d.ts +0 -1044
  1077. package/cosmos/group/v1/query.js +0 -2434
  1078. package/cosmos/group/v1/query.lcd.d.ts +0 -22
  1079. package/cosmos/group/v1/query.lcd.js +0 -143
  1080. package/cosmos/group/v1/query.rpc.Query.d.ts +0 -78
  1081. package/cosmos/group/v1/query.rpc.Query.js +0 -154
  1082. package/cosmos/group/v1/query.rpc.func.d.ts +0 -16
  1083. package/cosmos/group/v1/query.rpc.func.js +0 -117
  1084. package/cosmos/group/v1/tx.amino.d.ts +0 -73
  1085. package/cosmos/group/v1/tx.amino.js +0 -76
  1086. package/cosmos/group/v1/tx.d.ts +0 -1140
  1087. package/cosmos/group/v1/tx.js +0 -2567
  1088. package/cosmos/group/v1/tx.registry.d.ts +0 -2
  1089. package/cosmos/group/v1/tx.registry.js +0 -5
  1090. package/cosmos/group/v1/tx.rpc.func.d.ts +0 -16
  1091. package/cosmos/group/v1/tx.rpc.func.js +0 -104
  1092. package/cosmos/group/v1/tx.rpc.msg.d.ts +0 -52
  1093. package/cosmos/group/v1/tx.rpc.msg.js +0 -100
  1094. package/cosmos/group/v1/types.d.ts +0 -799
  1095. package/cosmos/group/v1/types.js +0 -1542
  1096. package/cosmos/msg/textual/v1/textual.d.ts +0 -1
  1097. package/cosmos/msg/textual/v1/textual.js +0 -2
  1098. package/cosmos/nft/module/v1/module.d.ts +0 -32
  1099. package/cosmos/nft/module/v1/module.js +0 -70
  1100. package/cosmos/nft/v1beta1/event.d.ts +0 -132
  1101. package/cosmos/nft/v1beta1/event.js +0 -323
  1102. package/cosmos/nft/v1beta1/genesis.d.ts +0 -79
  1103. package/cosmos/nft/v1beta1/genesis.js +0 -195
  1104. package/cosmos/nft/v1beta1/nft.d.ts +0 -111
  1105. package/cosmos/nft/v1beta1/nft.js +0 -282
  1106. package/cosmos/nft/v1beta1/query.d.ts +0 -508
  1107. package/cosmos/nft/v1beta1/query.js +0 -1189
  1108. package/cosmos/nft/v1beta1/query.lcd.d.ts +0 -15
  1109. package/cosmos/nft/v1beta1/query.lcd.js +0 -67
  1110. package/cosmos/nft/v1beta1/query.rpc.Query.d.ts +0 -43
  1111. package/cosmos/nft/v1beta1/query.rpc.Query.js +0 -86
  1112. package/cosmos/nft/v1beta1/query.rpc.func.d.ts +0 -9
  1113. package/cosmos/nft/v1beta1/query.rpc.func.js +0 -61
  1114. package/cosmos/nft/v1beta1/tx.amino.d.ts +0 -8
  1115. package/cosmos/nft/v1beta1/tx.d.ts +0 -78
  1116. package/cosmos/nft/v1beta1/tx.js +0 -184
  1117. package/cosmos/nft/v1beta1/tx.registry.d.ts +0 -2
  1118. package/cosmos/nft/v1beta1/tx.registry.js +0 -5
  1119. package/cosmos/nft/v1beta1/tx.rpc.func.d.ts +0 -3
  1120. package/cosmos/nft/v1beta1/tx.rpc.func.js +0 -13
  1121. package/cosmos/nft/v1beta1/tx.rpc.msg.d.ts +0 -13
  1122. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -40
  1123. package/cosmos/orm/module/v1alpha1/module.js +0 -70
  1124. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -367
  1125. package/cosmos/orm/query/v1alpha1/query.js +0 -751
  1126. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  1127. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  1128. package/cosmos/orm/query/v1alpha1/query.rpc.func.d.ts +0 -4
  1129. package/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -21
  1130. package/cosmos/orm/v1/orm.d.ts +0 -278
  1131. package/cosmos/orm/v1/orm.js +0 -380
  1132. package/cosmos/orm/v1alpha1/schema.d.ts +0 -134
  1133. package/cosmos/orm/v1alpha1/schema.js +0 -258
  1134. package/cosmos/reflection/v1/reflection.d.ts +0 -67
  1135. package/cosmos/reflection/v1/reflection.js +0 -152
  1136. package/cosmos/reflection/v1/reflection.rpc.func.d.ts +0 -3
  1137. package/cosmos/reflection/v1/reflection.rpc.func.js +0 -13
  1138. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +0 -68
  1139. package/cosmos/store/internal/kv/v1beta1/kv.js +0 -177
  1140. package/cosmos/store/snapshots/v1/snapshot.d.ts +0 -294
  1141. package/cosmos/store/snapshots/v1/snapshot.js +0 -687
  1142. package/cosmos/store/snapshots/v2/snapshot.d.ts +0 -254
  1143. package/cosmos/store/snapshots/v2/snapshot.js +0 -687
  1144. package/cosmos/store/streaming/abci/grpc.d.ts +0 -136
  1145. package/cosmos/store/streaming/abci/grpc.js +0 -332
  1146. package/cosmos/store/v1beta1/commit_info.d.ts +0 -124
  1147. package/cosmos/store/v1beta1/commit_info.js +0 -292
  1148. package/cosmos/store/v1beta1/listening.d.ts +0 -101
  1149. package/cosmos/store/v1beta1/listening.js +0 -223
  1150. package/cosmos/streaming/v1/grpc.d.ts +0 -302
  1151. package/cosmos/streaming/v1/grpc.js +0 -826
  1152. package/cosmos/validate/module/v1/module.d.ts +0 -32
  1153. package/cosmos/validate/module/v1/module.js +0 -70
  1154. package/cosmos/vesting/module/v1/module.d.ts +0 -32
  1155. package/cosmos/vesting/module/v1/module.js +0 -70
  1156. package/cosmos/vesting/v1beta1/tx.amino.d.ts +0 -18
  1157. package/cosmos/vesting/v1beta1/tx.amino.js +0 -21
  1158. package/cosmos/vesting/v1beta1/tx.d.ts +0 -256
  1159. package/cosmos/vesting/v1beta1/tx.js +0 -553
  1160. package/cosmos/vesting/v1beta1/tx.registry.d.ts +0 -2
  1161. package/cosmos/vesting/v1beta1/tx.registry.js +0 -5
  1162. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +0 -5
  1163. package/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -27
  1164. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -32
  1165. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -41
  1166. package/cosmos/vesting/v1beta1/vesting.d.ts +0 -256
  1167. package/cosmos/vesting/v1beta1/vesting.js +0 -586
  1168. package/esm/cosmos/app/runtime/v2/module.js +0 -418
  1169. package/esm/cosmos/auth/v1beta1/accounts.js +0 -158
  1170. package/esm/cosmos/base/grpc/v2/service.js +0 -391
  1171. package/esm/cosmos/base/grpc/v2/service.rpc.Service.js +0 -33
  1172. package/esm/cosmos/base/grpc/v2/service.rpc.func.js +0 -18
  1173. package/esm/cosmos/circuit/module/v1/module.js +0 -80
  1174. package/esm/cosmos/circuit/v1/query.js +0 -477
  1175. package/esm/cosmos/circuit/v1/query.lcd.js +0 -30
  1176. package/esm/cosmos/circuit/v1/query.rpc.Query.js +0 -44
  1177. package/esm/cosmos/circuit/v1/query.rpc.func.js +0 -23
  1178. package/esm/cosmos/circuit/v1/tx.amino.js +0 -18
  1179. package/esm/cosmos/circuit/v1/tx.js +0 -525
  1180. package/esm/cosmos/circuit/v1/tx.registry.js +0 -2
  1181. package/esm/cosmos/circuit/v1/tx.rpc.func.js +0 -21
  1182. package/esm/cosmos/circuit/v1/tx.rpc.msg.js +0 -31
  1183. package/esm/cosmos/circuit/v1/types.js +0 -345
  1184. package/esm/cosmos/crisis/module/v1/module.js +0 -92
  1185. package/esm/cosmos/crisis/v1beta1/genesis.js +0 -81
  1186. package/esm/cosmos/crisis/v1beta1/tx.amino.js +0 -13
  1187. package/esm/cosmos/crisis/v1beta1/tx.js +0 -325
  1188. package/esm/cosmos/crisis/v1beta1/tx.registry.js +0 -2
  1189. package/esm/cosmos/crisis/v1beta1/tx.rpc.func.js +0 -15
  1190. package/esm/cosmos/crisis/v1beta1/tx.rpc.msg.js +0 -26
  1191. package/esm/cosmos/crypto/ed25519/keys.js +0 -159
  1192. package/esm/cosmos/crypto/hd/v1/hd.js +0 -128
  1193. package/esm/cosmos/crypto/keyring/v1/record.js +0 -428
  1194. package/esm/cosmos/crypto/multisig/keys.js +0 -96
  1195. package/esm/cosmos/crypto/secp256k1/keys.js +0 -159
  1196. package/esm/cosmos/crypto/secp256r1/keys.js +0 -159
  1197. package/esm/cosmos/genutil/module/v1/module.js +0 -67
  1198. package/esm/cosmos/group/module/v1/module.js +0 -93
  1199. package/esm/cosmos/group/v1/events.js +0 -844
  1200. package/esm/cosmos/group/v1/genesis.js +0 -180
  1201. package/esm/cosmos/group/v1/query.js +0 -2431
  1202. package/esm/cosmos/group/v1/query.lcd.js +0 -139
  1203. package/esm/cosmos/group/v1/query.rpc.Query.js +0 -149
  1204. package/esm/cosmos/group/v1/query.rpc.func.js +0 -100
  1205. package/esm/cosmos/group/v1/tx.amino.js +0 -73
  1206. package/esm/cosmos/group/v1/tx.js +0 -2562
  1207. package/esm/cosmos/group/v1/tx.registry.js +0 -2
  1208. package/esm/cosmos/group/v1/tx.rpc.func.js +0 -87
  1209. package/esm/cosmos/group/v1/tx.rpc.msg.js +0 -95
  1210. package/esm/cosmos/group/v1/types.js +0 -1533
  1211. package/esm/cosmos/msg/textual/v1/textual.js +0 -1
  1212. package/esm/cosmos/nft/module/v1/module.js +0 -67
  1213. package/esm/cosmos/nft/v1beta1/event.js +0 -320
  1214. package/esm/cosmos/nft/v1beta1/genesis.js +0 -192
  1215. package/esm/cosmos/nft/v1beta1/nft.js +0 -279
  1216. package/esm/cosmos/nft/v1beta1/query.js +0 -1186
  1217. package/esm/cosmos/nft/v1beta1/query.lcd.js +0 -63
  1218. package/esm/cosmos/nft/v1beta1/query.rpc.Query.js +0 -81
  1219. package/esm/cosmos/nft/v1beta1/query.rpc.func.js +0 -51
  1220. package/esm/cosmos/nft/v1beta1/tx.amino.js +0 -8
  1221. package/esm/cosmos/nft/v1beta1/tx.js +0 -181
  1222. package/esm/cosmos/nft/v1beta1/tx.registry.js +0 -2
  1223. package/esm/cosmos/nft/v1beta1/tx.rpc.func.js +0 -9
  1224. package/esm/cosmos/nft/v1beta1/tx.rpc.msg.js +0 -17
  1225. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -67
  1226. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -748
  1227. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
  1228. package/esm/cosmos/orm/query/v1alpha1/query.rpc.func.js +0 -16
  1229. package/esm/cosmos/orm/v1/orm.js +0 -377
  1230. package/esm/cosmos/orm/v1alpha1/schema.js +0 -253
  1231. package/esm/cosmos/reflection/v1/reflection.js +0 -149
  1232. package/esm/cosmos/reflection/v1/reflection.rpc.func.js +0 -9
  1233. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +0 -174
  1234. package/esm/cosmos/store/snapshots/v1/snapshot.js +0 -684
  1235. package/esm/cosmos/store/snapshots/v2/snapshot.js +0 -684
  1236. package/esm/cosmos/store/streaming/abci/grpc.js +0 -329
  1237. package/esm/cosmos/store/v1beta1/commit_info.js +0 -289
  1238. package/esm/cosmos/store/v1beta1/listening.js +0 -220
  1239. package/esm/cosmos/streaming/v1/grpc.js +0 -823
  1240. package/esm/cosmos/validate/module/v1/module.js +0 -67
  1241. package/esm/cosmos/vesting/module/v1/module.js +0 -67
  1242. package/esm/cosmos/vesting/v1beta1/tx.amino.js +0 -18
  1243. package/esm/cosmos/vesting/v1beta1/tx.js +0 -550
  1244. package/esm/cosmos/vesting/v1beta1/tx.registry.js +0 -2
  1245. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +0 -21
  1246. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +0 -36
  1247. package/esm/cosmos/vesting/v1beta1/vesting.js +0 -583
  1248. package/esm/ibc/applications/fee/v1/ack.js +0 -103
  1249. package/esm/ibc/applications/fee/v1/fee.js +0 -398
  1250. package/esm/ibc/applications/fee/v1/genesis.js +0 -531
  1251. package/esm/ibc/applications/fee/v1/metadata.js +0 -90
  1252. package/esm/ibc/applications/fee/v1/query.js +0 -1739
  1253. package/esm/ibc/applications/fee/v1/query.lcd.js +0 -111
  1254. package/esm/ibc/applications/fee/v1/query.rpc.Query.js +0 -105
  1255. package/esm/ibc/applications/fee/v1/query.rpc.func.js +0 -82
  1256. package/esm/ibc/applications/fee/v1/tx.amino.js +0 -23
  1257. package/esm/ibc/applications/fee/v1/tx.js +0 -707
  1258. package/esm/ibc/applications/fee/v1/tx.registry.js +0 -82
  1259. package/esm/ibc/applications/fee/v1/tx.rpc.func.js +0 -31
  1260. package/esm/ibc/applications/fee/v1/tx.rpc.msg.js +0 -49
  1261. package/esm/ibc/core/channel/v1/upgrade.js +0 -300
  1262. package/esm/ibc/lightclients/localhost/v2/localhost.js +0 -81
  1263. package/esm/test.js +0 -51
  1264. package/ibc/applications/fee/v1/ack.d.ts +0 -45
  1265. package/ibc/applications/fee/v1/ack.js +0 -106
  1266. package/ibc/applications/fee/v1/fee.d.ts +0 -164
  1267. package/ibc/applications/fee/v1/fee.js +0 -401
  1268. package/ibc/applications/fee/v1/genesis.d.ts +0 -225
  1269. package/ibc/applications/fee/v1/genesis.js +0 -534
  1270. package/ibc/applications/fee/v1/metadata.d.ts +0 -47
  1271. package/ibc/applications/fee/v1/metadata.js +0 -93
  1272. package/ibc/applications/fee/v1/query.d.ts +0 -757
  1273. package/ibc/applications/fee/v1/query.js +0 -1742
  1274. package/ibc/applications/fee/v1/query.lcd.d.ts +0 -18
  1275. package/ibc/applications/fee/v1/query.lcd.js +0 -115
  1276. package/ibc/applications/fee/v1/query.rpc.Query.d.ts +0 -52
  1277. package/ibc/applications/fee/v1/query.rpc.Query.js +0 -110
  1278. package/ibc/applications/fee/v1/query.rpc.func.d.ts +0 -12
  1279. package/ibc/applications/fee/v1/query.rpc.func.js +0 -95
  1280. package/ibc/applications/fee/v1/tx.amino.d.ts +0 -23
  1281. package/ibc/applications/fee/v1/tx.amino.js +0 -26
  1282. package/ibc/applications/fee/v1/tx.d.ts +0 -326
  1283. package/ibc/applications/fee/v1/tx.js +0 -710
  1284. package/ibc/applications/fee/v1/tx.registry.d.ts +0 -59
  1285. package/ibc/applications/fee/v1/tx.registry.js +0 -85
  1286. package/ibc/applications/fee/v1/tx.rpc.func.d.ts +0 -6
  1287. package/ibc/applications/fee/v1/tx.rpc.func.js +0 -38
  1288. package/ibc/applications/fee/v1/tx.rpc.msg.d.ts +0 -44
  1289. package/ibc/applications/fee/v1/tx.rpc.msg.js +0 -54
  1290. package/ibc/core/channel/v1/upgrade.d.ts +0 -142
  1291. package/ibc/core/channel/v1/upgrade.js +0 -303
  1292. package/ibc/lightclients/localhost/v2/localhost.d.ts +0 -38
  1293. package/ibc/lightclients/localhost/v2/localhost.js +0 -84
  1294. package/test.d.ts +0 -1
  1295. package/test.js +0 -53
@@ -6,30 +6,51 @@ import { DeepPartial } from "../../../../helpers";
6
6
  * MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
7
7
  * ICS20 enabled chains. See ICS Spec here:
8
8
  * https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
9
+ * @name MsgTransfer
10
+ * @package ibc.applications.transfer.v1
11
+ * @see proto type: ibc.applications.transfer.v1.MsgTransfer
9
12
  */
10
13
  export interface MsgTransfer {
11
- /** the port on which the packet will be sent */
14
+ /**
15
+ * the port on which the packet will be sent
16
+ */
12
17
  sourcePort: string;
13
- /** the channel by which the packet will be sent */
18
+ /**
19
+ * the channel by which the packet will be sent
20
+ */
14
21
  sourceChannel: string;
15
- /** the tokens to be transferred */
22
+ /**
23
+ * token to be transferred
24
+ */
16
25
  token: Coin;
17
- /** the sender address */
26
+ /**
27
+ * the sender address
28
+ */
18
29
  sender: string;
19
- /** the recipient address on the destination chain */
30
+ /**
31
+ * the recipient address on the destination chain
32
+ */
20
33
  receiver: string;
21
34
  /**
22
35
  * Timeout height relative to the current block height.
23
- * The timeout is disabled when set to 0.
36
+ * If you are sending with IBC v1 protocol, either timeout_height or timeout_timestamp must be set.
37
+ * If you are sending with IBC v2 protocol, timeout_timestamp must be set, and timeout_height must be omitted.
24
38
  */
25
39
  timeoutHeight: Height;
26
40
  /**
27
41
  * Timeout timestamp in absolute nanoseconds since unix epoch.
28
- * The timeout is disabled when set to 0.
42
+ * If you are sending with IBC v1 protocol, either timeout_height or timeout_timestamp must be set.
43
+ * If you are sending with IBC v2 protocol, timeout_timestamp must be set.
29
44
  */
30
45
  timeoutTimestamp: bigint;
31
- /** optional memo */
46
+ /**
47
+ * optional memo
48
+ */
32
49
  memo: string;
50
+ /**
51
+ * optional encoding
52
+ */
53
+ encoding: string;
33
54
  }
34
55
  export interface MsgTransferProtoMsg {
35
56
  typeUrl: "/ibc.applications.transfer.v1.MsgTransfer";
@@ -39,56 +60,98 @@ export interface MsgTransferProtoMsg {
39
60
  * MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
40
61
  * ICS20 enabled chains. See ICS Spec here:
41
62
  * https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
63
+ * @name MsgTransferAmino
64
+ * @package ibc.applications.transfer.v1
65
+ * @see proto type: ibc.applications.transfer.v1.MsgTransfer
42
66
  */
43
67
  export interface MsgTransferAmino {
44
- /** the port on which the packet will be sent */
68
+ /**
69
+ * the port on which the packet will be sent
70
+ */
45
71
  source_port: string;
46
- /** the channel by which the packet will be sent */
72
+ /**
73
+ * the channel by which the packet will be sent
74
+ */
47
75
  source_channel: string;
48
- /** the tokens to be transferred */
76
+ /**
77
+ * token to be transferred
78
+ */
49
79
  token: CoinAmino;
50
- /** the sender address */
80
+ /**
81
+ * the sender address
82
+ */
51
83
  sender: string;
52
- /** the recipient address on the destination chain */
84
+ /**
85
+ * the recipient address on the destination chain
86
+ */
53
87
  receiver: string;
54
88
  /**
55
89
  * Timeout height relative to the current block height.
56
- * The timeout is disabled when set to 0.
90
+ * If you are sending with IBC v1 protocol, either timeout_height or timeout_timestamp must be set.
91
+ * If you are sending with IBC v2 protocol, timeout_timestamp must be set, and timeout_height must be omitted.
57
92
  */
58
93
  timeout_height: HeightAmino;
59
94
  /**
60
95
  * Timeout timestamp in absolute nanoseconds since unix epoch.
61
- * The timeout is disabled when set to 0.
96
+ * If you are sending with IBC v1 protocol, either timeout_height or timeout_timestamp must be set.
97
+ * If you are sending with IBC v2 protocol, timeout_timestamp must be set.
62
98
  */
63
99
  timeout_timestamp: string;
64
- /** optional memo */
100
+ /**
101
+ * optional memo
102
+ */
65
103
  memo: string;
104
+ /**
105
+ * optional encoding
106
+ */
107
+ encoding: string;
66
108
  }
67
109
  export interface MsgTransferAminoMsg {
68
110
  type: "cosmos-sdk/MsgTransfer";
69
111
  value: MsgTransferAmino;
70
112
  }
71
- /** MsgTransferResponse defines the Msg/Transfer response type. */
113
+ /**
114
+ * MsgTransferResponse defines the Msg/Transfer response type.
115
+ * @name MsgTransferResponse
116
+ * @package ibc.applications.transfer.v1
117
+ * @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
118
+ */
72
119
  export interface MsgTransferResponse {
73
- /** sequence number of the transfer packet sent */
120
+ /**
121
+ * sequence number of the transfer packet sent
122
+ */
74
123
  sequence: bigint;
75
124
  }
76
125
  export interface MsgTransferResponseProtoMsg {
77
126
  typeUrl: "/ibc.applications.transfer.v1.MsgTransferResponse";
78
127
  value: Uint8Array;
79
128
  }
80
- /** MsgTransferResponse defines the Msg/Transfer response type. */
129
+ /**
130
+ * MsgTransferResponse defines the Msg/Transfer response type.
131
+ * @name MsgTransferResponseAmino
132
+ * @package ibc.applications.transfer.v1
133
+ * @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
134
+ */
81
135
  export interface MsgTransferResponseAmino {
82
- /** sequence number of the transfer packet sent */
136
+ /**
137
+ * sequence number of the transfer packet sent
138
+ */
83
139
  sequence: string;
84
140
  }
85
141
  export interface MsgTransferResponseAminoMsg {
86
142
  type: "cosmos-sdk/MsgTransferResponse";
87
143
  value: MsgTransferResponseAmino;
88
144
  }
89
- /** MsgUpdateParams is the Msg/UpdateParams request type. */
145
+ /**
146
+ * MsgUpdateParams is the Msg/UpdateParams request type.
147
+ * @name MsgUpdateParams
148
+ * @package ibc.applications.transfer.v1
149
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
150
+ */
90
151
  export interface MsgUpdateParams {
91
- /** signer address */
152
+ /**
153
+ * signer address
154
+ */
92
155
  signer: string;
93
156
  /**
94
157
  * params defines the transfer parameters to update.
@@ -101,9 +164,16 @@ export interface MsgUpdateParamsProtoMsg {
101
164
  typeUrl: "/ibc.applications.transfer.v1.MsgUpdateParams";
102
165
  value: Uint8Array;
103
166
  }
104
- /** MsgUpdateParams is the Msg/UpdateParams request type. */
167
+ /**
168
+ * MsgUpdateParams is the Msg/UpdateParams request type.
169
+ * @name MsgUpdateParamsAmino
170
+ * @package ibc.applications.transfer.v1
171
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
172
+ */
105
173
  export interface MsgUpdateParamsAmino {
106
- /** signer address */
174
+ /**
175
+ * signer address
176
+ */
107
177
  signer: string;
108
178
  /**
109
179
  * params defines the transfer parameters to update.
@@ -119,6 +189,9 @@ export interface MsgUpdateParamsAminoMsg {
119
189
  /**
120
190
  * MsgUpdateParamsResponse defines the response structure for executing a
121
191
  * MsgUpdateParams message.
192
+ * @name MsgUpdateParamsResponse
193
+ * @package ibc.applications.transfer.v1
194
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
122
195
  */
123
196
  export interface MsgUpdateParamsResponse {
124
197
  }
@@ -129,6 +202,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
129
202
  /**
130
203
  * MsgUpdateParamsResponse defines the response structure for executing a
131
204
  * MsgUpdateParams message.
205
+ * @name MsgUpdateParamsResponseAmino
206
+ * @package ibc.applications.transfer.v1
207
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
132
208
  */
133
209
  export interface MsgUpdateParamsResponseAmino {
134
210
  }
@@ -136,6 +212,14 @@ export interface MsgUpdateParamsResponseAminoMsg {
136
212
  type: "cosmos-sdk/MsgUpdateParamsResponse";
137
213
  value: MsgUpdateParamsResponseAmino;
138
214
  }
215
+ /**
216
+ * MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
217
+ * ICS20 enabled chains. See ICS Spec here:
218
+ * https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
219
+ * @name MsgTransfer
220
+ * @package ibc.applications.transfer.v1
221
+ * @see proto type: ibc.applications.transfer.v1.MsgTransfer
222
+ */
139
223
  export declare const MsgTransfer: {
140
224
  typeUrl: string;
141
225
  aminoType: string;
@@ -153,6 +237,12 @@ export declare const MsgTransfer: {
153
237
  toProtoMsg(message: MsgTransfer): MsgTransferProtoMsg;
154
238
  registerTypeUrl(): void;
155
239
  };
240
+ /**
241
+ * MsgTransferResponse defines the Msg/Transfer response type.
242
+ * @name MsgTransferResponse
243
+ * @package ibc.applications.transfer.v1
244
+ * @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
245
+ */
156
246
  export declare const MsgTransferResponse: {
157
247
  typeUrl: string;
158
248
  aminoType: string;
@@ -170,6 +260,12 @@ export declare const MsgTransferResponse: {
170
260
  toProtoMsg(message: MsgTransferResponse): MsgTransferResponseProtoMsg;
171
261
  registerTypeUrl(): void;
172
262
  };
263
+ /**
264
+ * MsgUpdateParams is the Msg/UpdateParams request type.
265
+ * @name MsgUpdateParams
266
+ * @package ibc.applications.transfer.v1
267
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
268
+ */
173
269
  export declare const MsgUpdateParams: {
174
270
  typeUrl: string;
175
271
  aminoType: string;
@@ -187,6 +283,13 @@ export declare const MsgUpdateParams: {
187
283
  toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
188
284
  registerTypeUrl(): void;
189
285
  };
286
+ /**
287
+ * MsgUpdateParamsResponse defines the response structure for executing a
288
+ * MsgUpdateParams message.
289
+ * @name MsgUpdateParamsResponse
290
+ * @package ibc.applications.transfer.v1
291
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
292
+ */
190
293
  export declare const MsgUpdateParamsResponse: {
191
294
  typeUrl: string;
192
295
  aminoType: string;
@@ -4,6 +4,7 @@ exports.MsgUpdateParamsResponse = exports.MsgUpdateParams = exports.MsgTransferR
4
4
  const coin_1 = require("../../../../cosmos/base/v1beta1/coin");
5
5
  const client_1 = require("../../../core/client/v1/client");
6
6
  const binary_1 = require("../../../../binary");
7
+ const registry_1 = require("../../../../registry");
7
8
  function createBaseMsgTransfer() {
8
9
  return {
9
10
  sourcePort: "",
@@ -13,17 +14,26 @@ function createBaseMsgTransfer() {
13
14
  receiver: "",
14
15
  timeoutHeight: client_1.Height.fromPartial({}),
15
16
  timeoutTimestamp: BigInt(0),
16
- memo: ""
17
+ memo: "",
18
+ encoding: ""
17
19
  };
18
20
  }
21
+ /**
22
+ * MsgTransfer defines a msg to transfer fungible tokens (i.e Coins) between
23
+ * ICS20 enabled chains. See ICS Spec here:
24
+ * https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
25
+ * @name MsgTransfer
26
+ * @package ibc.applications.transfer.v1
27
+ * @see proto type: ibc.applications.transfer.v1.MsgTransfer
28
+ */
19
29
  exports.MsgTransfer = {
20
30
  typeUrl: "/ibc.applications.transfer.v1.MsgTransfer",
21
31
  aminoType: "cosmos-sdk/MsgTransfer",
22
32
  is(o) {
23
- return o && (o.$typeUrl === exports.MsgTransfer.typeUrl || typeof o.sourcePort === "string" && typeof o.sourceChannel === "string" && coin_1.Coin.is(o.token) && typeof o.sender === "string" && typeof o.receiver === "string" && client_1.Height.is(o.timeoutHeight) && typeof o.timeoutTimestamp === "bigint" && typeof o.memo === "string");
33
+ return o && (o.$typeUrl === exports.MsgTransfer.typeUrl || typeof o.sourcePort === "string" && typeof o.sourceChannel === "string" && coin_1.Coin.is(o.token) && typeof o.sender === "string" && typeof o.receiver === "string" && client_1.Height.is(o.timeoutHeight) && typeof o.timeoutTimestamp === "bigint" && typeof o.memo === "string" && typeof o.encoding === "string");
24
34
  },
25
35
  isAmino(o) {
26
- return o && (o.$typeUrl === exports.MsgTransfer.typeUrl || typeof o.source_port === "string" && typeof o.source_channel === "string" && coin_1.Coin.isAmino(o.token) && typeof o.sender === "string" && typeof o.receiver === "string" && client_1.Height.isAmino(o.timeout_height) && typeof o.timeout_timestamp === "bigint" && typeof o.memo === "string");
36
+ return o && (o.$typeUrl === exports.MsgTransfer.typeUrl || typeof o.source_port === "string" && typeof o.source_channel === "string" && coin_1.Coin.isAmino(o.token) && typeof o.sender === "string" && typeof o.receiver === "string" && client_1.Height.isAmino(o.timeout_height) && typeof o.timeout_timestamp === "bigint" && typeof o.memo === "string" && typeof o.encoding === "string");
27
37
  },
28
38
  encode(message, writer = binary_1.BinaryWriter.create()) {
29
39
  if (message.sourcePort !== "") {
@@ -50,6 +60,9 @@ exports.MsgTransfer = {
50
60
  if (message.memo !== "") {
51
61
  writer.uint32(66).string(message.memo);
52
62
  }
63
+ if (message.encoding !== "") {
64
+ writer.uint32(74).string(message.encoding);
65
+ }
53
66
  return writer;
54
67
  },
55
68
  decode(input, length) {
@@ -83,6 +96,9 @@ exports.MsgTransfer = {
83
96
  case 8:
84
97
  message.memo = reader.string();
85
98
  break;
99
+ case 9:
100
+ message.encoding = reader.string();
101
+ break;
86
102
  default:
87
103
  reader.skipType(tag & 7);
88
104
  break;
@@ -100,6 +116,7 @@ exports.MsgTransfer = {
100
116
  message.timeoutHeight = object.timeoutHeight !== undefined && object.timeoutHeight !== null ? client_1.Height.fromPartial(object.timeoutHeight) : undefined;
101
117
  message.timeoutTimestamp = object.timeoutTimestamp !== undefined && object.timeoutTimestamp !== null ? BigInt(object.timeoutTimestamp.toString()) : BigInt(0);
102
118
  message.memo = object.memo ?? "";
119
+ message.encoding = object.encoding ?? "";
103
120
  return message;
104
121
  },
105
122
  fromAmino(object) {
@@ -128,6 +145,9 @@ exports.MsgTransfer = {
128
145
  if (object.memo !== undefined && object.memo !== null) {
129
146
  message.memo = object.memo;
130
147
  }
148
+ if (object.encoding !== undefined && object.encoding !== null) {
149
+ message.encoding = object.encoding;
150
+ }
131
151
  return message;
132
152
  },
133
153
  toAmino(message) {
@@ -140,6 +160,7 @@ exports.MsgTransfer = {
140
160
  obj.timeout_height = message.timeoutHeight ? client_1.Height.toAmino(message.timeoutHeight) : {};
141
161
  obj.timeout_timestamp = message.timeoutTimestamp !== BigInt(0) ? message.timeoutTimestamp?.toString() : undefined;
142
162
  obj.memo = message.memo === "" ? undefined : message.memo;
163
+ obj.encoding = message.encoding === "" ? undefined : message.encoding;
143
164
  return obj;
144
165
  },
145
166
  fromAminoMsg(object) {
@@ -164,6 +185,9 @@ exports.MsgTransfer = {
164
185
  };
165
186
  },
166
187
  registerTypeUrl() {
188
+ if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.MsgTransfer.typeUrl)) {
189
+ return;
190
+ }
167
191
  coin_1.Coin.registerTypeUrl();
168
192
  client_1.Height.registerTypeUrl();
169
193
  }
@@ -173,6 +197,12 @@ function createBaseMsgTransferResponse() {
173
197
  sequence: BigInt(0)
174
198
  };
175
199
  }
200
+ /**
201
+ * MsgTransferResponse defines the Msg/Transfer response type.
202
+ * @name MsgTransferResponse
203
+ * @package ibc.applications.transfer.v1
204
+ * @see proto type: ibc.applications.transfer.v1.MsgTransferResponse
205
+ */
176
206
  exports.MsgTransferResponse = {
177
207
  typeUrl: "/ibc.applications.transfer.v1.MsgTransferResponse",
178
208
  aminoType: "cosmos-sdk/MsgTransferResponse",
@@ -251,6 +281,12 @@ function createBaseMsgUpdateParams() {
251
281
  params: client_1.Params.fromPartial({})
252
282
  };
253
283
  }
284
+ /**
285
+ * MsgUpdateParams is the Msg/UpdateParams request type.
286
+ * @name MsgUpdateParams
287
+ * @package ibc.applications.transfer.v1
288
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParams
289
+ */
254
290
  exports.MsgUpdateParams = {
255
291
  typeUrl: "/ibc.applications.transfer.v1.MsgUpdateParams",
256
292
  aminoType: "cosmos-sdk/MsgUpdateParams",
@@ -333,12 +369,22 @@ exports.MsgUpdateParams = {
333
369
  };
334
370
  },
335
371
  registerTypeUrl() {
372
+ if (!registry_1.GlobalDecoderRegistry.registerExistingTypeUrl(exports.MsgUpdateParams.typeUrl)) {
373
+ return;
374
+ }
336
375
  client_1.Params.registerTypeUrl();
337
376
  }
338
377
  };
339
378
  function createBaseMsgUpdateParamsResponse() {
340
379
  return {};
341
380
  }
381
+ /**
382
+ * MsgUpdateParamsResponse defines the response structure for executing a
383
+ * MsgUpdateParams message.
384
+ * @name MsgUpdateParamsResponse
385
+ * @package ibc.applications.transfer.v1
386
+ * @see proto type: ibc.applications.transfer.v1.MsgUpdateParamsResponse
387
+ */
342
388
  exports.MsgUpdateParamsResponse = {
343
389
  typeUrl: "/ibc.applications.transfer.v1.MsgUpdateParamsResponse",
344
390
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -1,4 +1,15 @@
1
- import { SigningClientResolver } from "../../../../helper-func-types";
2
1
  import { MsgTransfer, MsgUpdateParams } from "./tx";
3
- export declare const createTransfer: (clientResolver?: SigningClientResolver) => (signerAddress: string, message: MsgTransfer | MsgTransfer[], fee: "auto" | import("../../../../helper-func-types").StdFee, memo: string) => Promise<import("../../../../helper-func-types").DeliverTxResponse>;
4
- 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
+ * Transfer defines a rpc handler method for MsgTransfer.
4
+ * @name transfer
5
+ * @package ibc.applications.transfer.v1
6
+ * @see proto service: ibc.applications.transfer.v1.Transfer
7
+ */
8
+ export declare const transfer: (client: import("@interchainjs/cosmos/types/signing-client").ISigningClient, signerAddress: string, message: MsgTransfer | MsgTransfer[], fee: import("../../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
9
+ /**
10
+ * UpdateParams defines a rpc handler for MsgUpdateParams.
11
+ * @name updateParams
12
+ * @package ibc.applications.transfer.v1
13
+ * @see proto service: ibc.applications.transfer.v1.UpdateParams
14
+ */
15
+ 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>;
@@ -1,22 +1,23 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createUpdateParams = exports.createTransfer = void 0;
3
+ exports.updateParams = exports.transfer = void 0;
4
4
  const helper_func_types_1 = require("../../../../helper-func-types");
5
- const utils_1 = require("@interchainjs/cosmos/utils");
6
5
  const tx_1 = require("./tx");
7
- const createTransfer = (clientResolver) => (0, helper_func_types_1.buildTx)({
8
- clientResolver,
9
- typeUrl: tx_1.MsgTransfer.typeUrl,
10
- encoders: (0, utils_1.toEncoders)(tx_1.MsgTransfer),
11
- converters: (0, utils_1.toConverters)(tx_1.MsgTransfer),
12
- deps: [tx_1.MsgTransfer]
6
+ /**
7
+ * Transfer defines a rpc handler method for MsgTransfer.
8
+ * @name transfer
9
+ * @package ibc.applications.transfer.v1
10
+ * @see proto service: ibc.applications.transfer.v1.Transfer
11
+ */
12
+ exports.transfer = (0, helper_func_types_1.buildTx)({
13
+ msg: tx_1.MsgTransfer
13
14
  });
14
- exports.createTransfer = createTransfer;
15
- const createUpdateParams = (clientResolver) => (0, helper_func_types_1.buildTx)({
16
- clientResolver,
17
- typeUrl: tx_1.MsgUpdateParams.typeUrl,
18
- encoders: (0, utils_1.toEncoders)(tx_1.MsgUpdateParams),
19
- converters: (0, utils_1.toConverters)(tx_1.MsgUpdateParams),
20
- deps: [tx_1.MsgUpdateParams]
15
+ /**
16
+ * UpdateParams defines a rpc handler for MsgUpdateParams.
17
+ * @name updateParams
18
+ * @package ibc.applications.transfer.v1
19
+ * @see proto service: ibc.applications.transfer.v1.UpdateParams
20
+ */
21
+ exports.updateParams = (0, helper_func_types_1.buildTx)({
22
+ msg: tx_1.MsgUpdateParams
21
23
  });
22
- exports.createUpdateParams = createUpdateParams;
@@ -0,0 +1,76 @@
1
+ export { Params as IbcApplicationsInterchainAccountsControllerV1Params, ParamsProtoMsg as IbcApplicationsInterchainAccountsControllerV1ParamsProtoMsg, ParamsAmino as IbcApplicationsInterchainAccountsControllerV1ParamsAmino, ParamsAminoMsg as IbcApplicationsInterchainAccountsControllerV1ParamsAminoMsg } from "./applications/interchain_accounts/controller/v1/controller";
2
+ export { QueryInterchainAccountRequest, QueryInterchainAccountRequestProtoMsg, QueryInterchainAccountRequestAmino, QueryInterchainAccountRequestAminoMsg, QueryInterchainAccountResponse, QueryInterchainAccountResponseProtoMsg, QueryInterchainAccountResponseAmino, QueryInterchainAccountResponseAminoMsg, QueryParamsRequest as IbcApplicationsInterchainAccountsControllerV1QueryParamsRequest, QueryParamsRequestProtoMsg as IbcApplicationsInterchainAccountsControllerV1QueryParamsRequestProtoMsg, QueryParamsRequestAmino as IbcApplicationsInterchainAccountsControllerV1QueryParamsRequestAmino, QueryParamsRequestAminoMsg as IbcApplicationsInterchainAccountsControllerV1QueryParamsRequestAminoMsg, QueryParamsResponse as IbcApplicationsInterchainAccountsControllerV1QueryParamsResponse, QueryParamsResponseProtoMsg as IbcApplicationsInterchainAccountsControllerV1QueryParamsResponseProtoMsg, QueryParamsResponseAmino as IbcApplicationsInterchainAccountsControllerV1QueryParamsResponseAmino, QueryParamsResponseAminoMsg as IbcApplicationsInterchainAccountsControllerV1QueryParamsResponseAminoMsg } from "./applications/interchain_accounts/controller/v1/query";
3
+ export { MsgRegisterInterchainAccount, MsgRegisterInterchainAccountProtoMsg, MsgRegisterInterchainAccountAmino, MsgRegisterInterchainAccountAminoMsg, MsgRegisterInterchainAccountResponse, MsgRegisterInterchainAccountResponseProtoMsg, MsgRegisterInterchainAccountResponseAmino, MsgRegisterInterchainAccountResponseAminoMsg, MsgSendTx, MsgSendTxProtoMsg, MsgSendTxAmino, MsgSendTxAminoMsg, MsgSendTxResponse, MsgSendTxResponseProtoMsg, MsgSendTxResponseAmino, MsgSendTxResponseAminoMsg, MsgUpdateParams as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParams, MsgUpdateParamsProtoMsg as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsProtoMsg, MsgUpdateParamsAmino as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsAmino, MsgUpdateParamsAminoMsg as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsAminoMsg, MsgUpdateParamsResponse as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsResponse, MsgUpdateParamsResponseProtoMsg as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsResponseProtoMsg, MsgUpdateParamsResponseAmino as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsResponseAmino, MsgUpdateParamsResponseAminoMsg as IbcApplicationsInterchainAccountsControllerV1MsgUpdateParamsResponseAminoMsg } from "./applications/interchain_accounts/controller/v1/tx";
4
+ export { GenesisState as IbcApplicationsInterchainAccountsGenesisV1GenesisState, GenesisStateProtoMsg as IbcApplicationsInterchainAccountsGenesisV1GenesisStateProtoMsg, GenesisStateAmino as IbcApplicationsInterchainAccountsGenesisV1GenesisStateAmino, GenesisStateAminoMsg as IbcApplicationsInterchainAccountsGenesisV1GenesisStateAminoMsg, ControllerGenesisState, ControllerGenesisStateProtoMsg, ControllerGenesisStateAmino, ControllerGenesisStateAminoMsg, HostGenesisState, HostGenesisStateProtoMsg, HostGenesisStateAmino, HostGenesisStateAminoMsg, ActiveChannel, ActiveChannelProtoMsg, ActiveChannelAmino, ActiveChannelAminoMsg, RegisteredInterchainAccount, RegisteredInterchainAccountProtoMsg, RegisteredInterchainAccountAmino, RegisteredInterchainAccountAminoMsg } from "./applications/interchain_accounts/genesis/v1/genesis";
5
+ export { Params as IbcApplicationsInterchainAccountsHostV1Params, ParamsProtoMsg as IbcApplicationsInterchainAccountsHostV1ParamsProtoMsg, ParamsAmino as IbcApplicationsInterchainAccountsHostV1ParamsAmino, ParamsAminoMsg as IbcApplicationsInterchainAccountsHostV1ParamsAminoMsg, QueryRequest, QueryRequestProtoMsg, QueryRequestAmino, QueryRequestAminoMsg } from "./applications/interchain_accounts/host/v1/host";
6
+ export { QueryParamsRequest as IbcApplicationsInterchainAccountsHostV1QueryParamsRequest, QueryParamsRequestProtoMsg as IbcApplicationsInterchainAccountsHostV1QueryParamsRequestProtoMsg, QueryParamsRequestAmino as IbcApplicationsInterchainAccountsHostV1QueryParamsRequestAmino, QueryParamsRequestAminoMsg as IbcApplicationsInterchainAccountsHostV1QueryParamsRequestAminoMsg, QueryParamsResponse as IbcApplicationsInterchainAccountsHostV1QueryParamsResponse, QueryParamsResponseProtoMsg as IbcApplicationsInterchainAccountsHostV1QueryParamsResponseProtoMsg, QueryParamsResponseAmino as IbcApplicationsInterchainAccountsHostV1QueryParamsResponseAmino, QueryParamsResponseAminoMsg as IbcApplicationsInterchainAccountsHostV1QueryParamsResponseAminoMsg } from "./applications/interchain_accounts/host/v1/query";
7
+ export { MsgUpdateParams as IbcApplicationsInterchainAccountsHostV1MsgUpdateParams, MsgUpdateParamsProtoMsg as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsProtoMsg, MsgUpdateParamsAmino as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsAmino, MsgUpdateParamsAminoMsg as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsAminoMsg, MsgUpdateParamsResponse as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsResponse, MsgUpdateParamsResponseProtoMsg as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsResponseProtoMsg, MsgUpdateParamsResponseAmino as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsResponseAmino, MsgUpdateParamsResponseAminoMsg as IbcApplicationsInterchainAccountsHostV1MsgUpdateParamsResponseAminoMsg, MsgModuleQuerySafe, MsgModuleQuerySafeProtoMsg, MsgModuleQuerySafeAmino, MsgModuleQuerySafeAminoMsg, MsgModuleQuerySafeResponse, MsgModuleQuerySafeResponseProtoMsg, MsgModuleQuerySafeResponseAmino, MsgModuleQuerySafeResponseAminoMsg } from "./applications/interchain_accounts/host/v1/tx";
8
+ export * from "./applications/interchain_accounts/v1/account";
9
+ export { Metadata as IbcApplicationsInterchainAccountsV1Metadata, MetadataProtoMsg as IbcApplicationsInterchainAccountsV1MetadataProtoMsg, MetadataAmino as IbcApplicationsInterchainAccountsV1MetadataAmino, MetadataAminoMsg as IbcApplicationsInterchainAccountsV1MetadataAminoMsg } from "./applications/interchain_accounts/v1/metadata";
10
+ export * from "./applications/interchain_accounts/v1/packet";
11
+ export * from "./applications/transfer/v1/authz";
12
+ export * from "./applications/transfer/v1/denomtrace";
13
+ export { GenesisState as IbcApplicationsTransferV1GenesisState, GenesisStateProtoMsg as IbcApplicationsTransferV1GenesisStateProtoMsg, GenesisStateAmino as IbcApplicationsTransferV1GenesisStateAmino, GenesisStateAminoMsg as IbcApplicationsTransferV1GenesisStateAminoMsg } from "./applications/transfer/v1/genesis";
14
+ export * from "./applications/transfer/v1/packet";
15
+ export { QueryParamsRequest as IbcApplicationsTransferV1QueryParamsRequest, QueryParamsRequestProtoMsg as IbcApplicationsTransferV1QueryParamsRequestProtoMsg, QueryParamsRequestAmino as IbcApplicationsTransferV1QueryParamsRequestAmino, QueryParamsRequestAminoMsg as IbcApplicationsTransferV1QueryParamsRequestAminoMsg, QueryParamsResponse as IbcApplicationsTransferV1QueryParamsResponse, QueryParamsResponseProtoMsg as IbcApplicationsTransferV1QueryParamsResponseProtoMsg, QueryParamsResponseAmino as IbcApplicationsTransferV1QueryParamsResponseAmino, QueryParamsResponseAminoMsg as IbcApplicationsTransferV1QueryParamsResponseAminoMsg, QueryDenomRequest, QueryDenomRequestProtoMsg, QueryDenomRequestAmino, QueryDenomRequestAminoMsg, QueryDenomResponse, QueryDenomResponseProtoMsg, QueryDenomResponseAmino, QueryDenomResponseAminoMsg, QueryDenomsRequest, QueryDenomsRequestProtoMsg, QueryDenomsRequestAmino, QueryDenomsRequestAminoMsg, QueryDenomsResponse, QueryDenomsResponseProtoMsg, QueryDenomsResponseAmino, QueryDenomsResponseAminoMsg, QueryDenomHashRequest, QueryDenomHashRequestProtoMsg, QueryDenomHashRequestAmino, QueryDenomHashRequestAminoMsg, QueryDenomHashResponse, QueryDenomHashResponseProtoMsg, QueryDenomHashResponseAmino, QueryDenomHashResponseAminoMsg, QueryEscrowAddressRequest, QueryEscrowAddressRequestProtoMsg, QueryEscrowAddressRequestAmino, QueryEscrowAddressRequestAminoMsg, QueryEscrowAddressResponse, QueryEscrowAddressResponseProtoMsg, QueryEscrowAddressResponseAmino, QueryEscrowAddressResponseAminoMsg, QueryTotalEscrowForDenomRequest, QueryTotalEscrowForDenomRequestProtoMsg, QueryTotalEscrowForDenomRequestAmino, QueryTotalEscrowForDenomRequestAminoMsg, QueryTotalEscrowForDenomResponse, QueryTotalEscrowForDenomResponseProtoMsg, QueryTotalEscrowForDenomResponseAmino, QueryTotalEscrowForDenomResponseAminoMsg } from "./applications/transfer/v1/query";
16
+ export * from "./applications/transfer/v1/token";
17
+ export { Params as IbcApplicationsTransferV1Params, ParamsProtoMsg as IbcApplicationsTransferV1ParamsProtoMsg, ParamsAmino as IbcApplicationsTransferV1ParamsAmino, ParamsAminoMsg as IbcApplicationsTransferV1ParamsAminoMsg } from "./applications/transfer/v1/transfer";
18
+ export { MsgTransfer, MsgTransferProtoMsg, MsgTransferAmino, MsgTransferAminoMsg, MsgTransferResponse, MsgTransferResponseProtoMsg, MsgTransferResponseAmino, MsgTransferResponseAminoMsg, MsgUpdateParams as IbcApplicationsTransferV1MsgUpdateParams, MsgUpdateParamsProtoMsg as IbcApplicationsTransferV1MsgUpdateParamsProtoMsg, MsgUpdateParamsAmino as IbcApplicationsTransferV1MsgUpdateParamsAmino, MsgUpdateParamsAminoMsg as IbcApplicationsTransferV1MsgUpdateParamsAminoMsg, MsgUpdateParamsResponse as IbcApplicationsTransferV1MsgUpdateParamsResponse, MsgUpdateParamsResponseProtoMsg as IbcApplicationsTransferV1MsgUpdateParamsResponseProtoMsg, MsgUpdateParamsResponseAmino as IbcApplicationsTransferV1MsgUpdateParamsResponseAmino, MsgUpdateParamsResponseAminoMsg as IbcApplicationsTransferV1MsgUpdateParamsResponseAminoMsg } from "./applications/transfer/v1/tx";
19
+ export { State as IbcCoreChannelV1State, StateAmino as IbcCoreChannelV1StateAmino, Order, OrderAmino, Channel, ChannelProtoMsg, ChannelAmino, ChannelAminoMsg, IdentifiedChannel, IdentifiedChannelProtoMsg, IdentifiedChannelAmino, IdentifiedChannelAminoMsg, Counterparty, CounterpartyProtoMsg, CounterpartyAmino, CounterpartyAminoMsg, Packet, PacketProtoMsg, PacketAmino, PacketAminoMsg, PacketState, PacketStateProtoMsg, PacketStateAmino, PacketStateAminoMsg, PacketId, PacketIdProtoMsg, PacketIdAmino, PacketIdAminoMsg, Acknowledgement, AcknowledgementProtoMsg, AcknowledgementAmino, AcknowledgementAminoMsg, Timeout, TimeoutProtoMsg, TimeoutAmino, TimeoutAminoMsg } from "./core/channel/v1/channel";
20
+ export { GenesisState as IbcCoreChannelV1GenesisState, GenesisStateProtoMsg as IbcCoreChannelV1GenesisStateProtoMsg, GenesisStateAmino as IbcCoreChannelV1GenesisStateAmino, GenesisStateAminoMsg as IbcCoreChannelV1GenesisStateAminoMsg, PacketSequence, PacketSequenceProtoMsg, PacketSequenceAmino, PacketSequenceAminoMsg } from "./core/channel/v1/genesis";
21
+ export { QueryChannelRequest, QueryChannelRequestProtoMsg, QueryChannelRequestAmino, QueryChannelRequestAminoMsg, QueryChannelResponse, QueryChannelResponseProtoMsg, QueryChannelResponseAmino, QueryChannelResponseAminoMsg, QueryChannelsRequest, QueryChannelsRequestProtoMsg, QueryChannelsRequestAmino, QueryChannelsRequestAminoMsg, QueryChannelsResponse, QueryChannelsResponseProtoMsg, QueryChannelsResponseAmino, QueryChannelsResponseAminoMsg, QueryConnectionChannelsRequest, QueryConnectionChannelsRequestProtoMsg, QueryConnectionChannelsRequestAmino, QueryConnectionChannelsRequestAminoMsg, QueryConnectionChannelsResponse, QueryConnectionChannelsResponseProtoMsg, QueryConnectionChannelsResponseAmino, QueryConnectionChannelsResponseAminoMsg, QueryChannelClientStateRequest, QueryChannelClientStateRequestProtoMsg, QueryChannelClientStateRequestAmino, QueryChannelClientStateRequestAminoMsg, QueryChannelClientStateResponse, QueryChannelClientStateResponseProtoMsg, QueryChannelClientStateResponseAmino, QueryChannelClientStateResponseAminoMsg, QueryChannelConsensusStateRequest, QueryChannelConsensusStateRequestProtoMsg, QueryChannelConsensusStateRequestAmino, QueryChannelConsensusStateRequestAminoMsg, QueryChannelConsensusStateResponse, QueryChannelConsensusStateResponseProtoMsg, QueryChannelConsensusStateResponseAmino, QueryChannelConsensusStateResponseAminoMsg, QueryPacketCommitmentRequest, QueryPacketCommitmentRequestProtoMsg, QueryPacketCommitmentRequestAmino, QueryPacketCommitmentRequestAminoMsg, QueryPacketCommitmentResponse, QueryPacketCommitmentResponseProtoMsg, QueryPacketCommitmentResponseAmino, QueryPacketCommitmentResponseAminoMsg, QueryPacketCommitmentsRequest, QueryPacketCommitmentsRequestProtoMsg, QueryPacketCommitmentsRequestAmino, QueryPacketCommitmentsRequestAminoMsg, QueryPacketCommitmentsResponse, QueryPacketCommitmentsResponseProtoMsg, QueryPacketCommitmentsResponseAmino, QueryPacketCommitmentsResponseAminoMsg, QueryPacketReceiptRequest, QueryPacketReceiptRequestProtoMsg, QueryPacketReceiptRequestAmino, QueryPacketReceiptRequestAminoMsg, QueryPacketReceiptResponse, QueryPacketReceiptResponseProtoMsg, QueryPacketReceiptResponseAmino, QueryPacketReceiptResponseAminoMsg, QueryPacketAcknowledgementRequest, QueryPacketAcknowledgementRequestProtoMsg, QueryPacketAcknowledgementRequestAmino, QueryPacketAcknowledgementRequestAminoMsg, QueryPacketAcknowledgementResponse, QueryPacketAcknowledgementResponseProtoMsg, QueryPacketAcknowledgementResponseAmino, QueryPacketAcknowledgementResponseAminoMsg, QueryPacketAcknowledgementsRequest, QueryPacketAcknowledgementsRequestProtoMsg, QueryPacketAcknowledgementsRequestAmino, QueryPacketAcknowledgementsRequestAminoMsg, QueryPacketAcknowledgementsResponse, QueryPacketAcknowledgementsResponseProtoMsg, QueryPacketAcknowledgementsResponseAmino, QueryPacketAcknowledgementsResponseAminoMsg, QueryUnreceivedPacketsRequest, QueryUnreceivedPacketsRequestProtoMsg, QueryUnreceivedPacketsRequestAmino, QueryUnreceivedPacketsRequestAminoMsg, QueryUnreceivedPacketsResponse, QueryUnreceivedPacketsResponseProtoMsg, QueryUnreceivedPacketsResponseAmino, QueryUnreceivedPacketsResponseAminoMsg, QueryUnreceivedAcksRequest, QueryUnreceivedAcksRequestProtoMsg, QueryUnreceivedAcksRequestAmino, QueryUnreceivedAcksRequestAminoMsg, QueryUnreceivedAcksResponse, QueryUnreceivedAcksResponseProtoMsg, QueryUnreceivedAcksResponseAmino, QueryUnreceivedAcksResponseAminoMsg, QueryNextSequenceReceiveRequest, QueryNextSequenceReceiveRequestProtoMsg, QueryNextSequenceReceiveRequestAmino, QueryNextSequenceReceiveRequestAminoMsg, QueryNextSequenceReceiveResponse, QueryNextSequenceReceiveResponseProtoMsg, QueryNextSequenceReceiveResponseAmino, QueryNextSequenceReceiveResponseAminoMsg, QueryNextSequenceSendRequest, QueryNextSequenceSendRequestProtoMsg, QueryNextSequenceSendRequestAmino, QueryNextSequenceSendRequestAminoMsg, QueryNextSequenceSendResponse, QueryNextSequenceSendResponseProtoMsg, QueryNextSequenceSendResponseAmino, QueryNextSequenceSendResponseAminoMsg } from "./core/channel/v1/query";
22
+ export { ResponseResultType, ResponseResultTypeAmino, MsgChannelOpenInit, MsgChannelOpenInitProtoMsg, MsgChannelOpenInitAmino, MsgChannelOpenInitAminoMsg, MsgChannelOpenInitResponse, MsgChannelOpenInitResponseProtoMsg, MsgChannelOpenInitResponseAmino, MsgChannelOpenInitResponseAminoMsg, MsgChannelOpenTry, MsgChannelOpenTryProtoMsg, MsgChannelOpenTryAmino, MsgChannelOpenTryAminoMsg, MsgChannelOpenTryResponse, MsgChannelOpenTryResponseProtoMsg, MsgChannelOpenTryResponseAmino, MsgChannelOpenTryResponseAminoMsg, MsgChannelOpenAck, MsgChannelOpenAckProtoMsg, MsgChannelOpenAckAmino, MsgChannelOpenAckAminoMsg, MsgChannelOpenAckResponse, MsgChannelOpenAckResponseProtoMsg, MsgChannelOpenAckResponseAmino, MsgChannelOpenAckResponseAminoMsg, MsgChannelOpenConfirm, MsgChannelOpenConfirmProtoMsg, MsgChannelOpenConfirmAmino, MsgChannelOpenConfirmAminoMsg, MsgChannelOpenConfirmResponse, MsgChannelOpenConfirmResponseProtoMsg, MsgChannelOpenConfirmResponseAmino, MsgChannelOpenConfirmResponseAminoMsg, MsgChannelCloseInit, MsgChannelCloseInitProtoMsg, MsgChannelCloseInitAmino, MsgChannelCloseInitAminoMsg, MsgChannelCloseInitResponse, MsgChannelCloseInitResponseProtoMsg, MsgChannelCloseInitResponseAmino, MsgChannelCloseInitResponseAminoMsg, MsgChannelCloseConfirm, MsgChannelCloseConfirmProtoMsg, MsgChannelCloseConfirmAmino, MsgChannelCloseConfirmAminoMsg, MsgChannelCloseConfirmResponse, MsgChannelCloseConfirmResponseProtoMsg, MsgChannelCloseConfirmResponseAmino, MsgChannelCloseConfirmResponseAminoMsg, MsgRecvPacket, MsgRecvPacketProtoMsg, MsgRecvPacketAmino, MsgRecvPacketAminoMsg, MsgRecvPacketResponse, MsgRecvPacketResponseProtoMsg, MsgRecvPacketResponseAmino, MsgRecvPacketResponseAminoMsg, MsgTimeout, MsgTimeoutProtoMsg, MsgTimeoutAmino, MsgTimeoutAminoMsg, MsgTimeoutResponse, MsgTimeoutResponseProtoMsg, MsgTimeoutResponseAmino, MsgTimeoutResponseAminoMsg, MsgTimeoutOnClose, MsgTimeoutOnCloseProtoMsg, MsgTimeoutOnCloseAmino, MsgTimeoutOnCloseAminoMsg, MsgTimeoutOnCloseResponse, MsgTimeoutOnCloseResponseProtoMsg, MsgTimeoutOnCloseResponseAmino, MsgTimeoutOnCloseResponseAminoMsg, MsgAcknowledgement, MsgAcknowledgementProtoMsg, MsgAcknowledgementAmino, MsgAcknowledgementAminoMsg, MsgAcknowledgementResponse, MsgAcknowledgementResponseProtoMsg, MsgAcknowledgementResponseAmino, MsgAcknowledgementResponseAminoMsg } from "./core/channel/v1/tx";
23
+ export { GenesisState as IbcCoreChannelV2GenesisState, GenesisStateProtoMsg as IbcCoreChannelV2GenesisStateProtoMsg, GenesisStateAmino as IbcCoreChannelV2GenesisStateAmino, GenesisStateAminoMsg as IbcCoreChannelV2GenesisStateAminoMsg, PacketState as IbcCoreChannelV2PacketState, PacketStateProtoMsg as IbcCoreChannelV2PacketStateProtoMsg, PacketStateAmino as IbcCoreChannelV2PacketStateAmino, PacketStateAminoMsg as IbcCoreChannelV2PacketStateAminoMsg, PacketSequence as IbcCoreChannelV2PacketSequence, PacketSequenceProtoMsg as IbcCoreChannelV2PacketSequenceProtoMsg, PacketSequenceAmino as IbcCoreChannelV2PacketSequenceAmino, PacketSequenceAminoMsg as IbcCoreChannelV2PacketSequenceAminoMsg } from "./core/channel/v2/genesis";
24
+ export { PacketStatus, PacketStatusAmino, Packet as IbcCoreChannelV2Packet, PacketProtoMsg as IbcCoreChannelV2PacketProtoMsg, PacketAmino as IbcCoreChannelV2PacketAmino, PacketAminoMsg as IbcCoreChannelV2PacketAminoMsg, Payload, PayloadProtoMsg, PayloadAmino, PayloadAminoMsg, Acknowledgement as IbcCoreChannelV2Acknowledgement, AcknowledgementProtoMsg as IbcCoreChannelV2AcknowledgementProtoMsg, AcknowledgementAmino as IbcCoreChannelV2AcknowledgementAmino, AcknowledgementAminoMsg as IbcCoreChannelV2AcknowledgementAminoMsg, RecvPacketResult, RecvPacketResultProtoMsg, RecvPacketResultAmino, RecvPacketResultAminoMsg } from "./core/channel/v2/packet";
25
+ export { QueryNextSequenceSendRequest as IbcCoreChannelV2QueryNextSequenceSendRequest, QueryNextSequenceSendRequestProtoMsg as IbcCoreChannelV2QueryNextSequenceSendRequestProtoMsg, QueryNextSequenceSendRequestAmino as IbcCoreChannelV2QueryNextSequenceSendRequestAmino, QueryNextSequenceSendRequestAminoMsg as IbcCoreChannelV2QueryNextSequenceSendRequestAminoMsg, QueryNextSequenceSendResponse as IbcCoreChannelV2QueryNextSequenceSendResponse, QueryNextSequenceSendResponseProtoMsg as IbcCoreChannelV2QueryNextSequenceSendResponseProtoMsg, QueryNextSequenceSendResponseAmino as IbcCoreChannelV2QueryNextSequenceSendResponseAmino, QueryNextSequenceSendResponseAminoMsg as IbcCoreChannelV2QueryNextSequenceSendResponseAminoMsg, QueryPacketCommitmentRequest as IbcCoreChannelV2QueryPacketCommitmentRequest, QueryPacketCommitmentRequestProtoMsg as IbcCoreChannelV2QueryPacketCommitmentRequestProtoMsg, QueryPacketCommitmentRequestAmino as IbcCoreChannelV2QueryPacketCommitmentRequestAmino, QueryPacketCommitmentRequestAminoMsg as IbcCoreChannelV2QueryPacketCommitmentRequestAminoMsg, QueryPacketCommitmentResponse as IbcCoreChannelV2QueryPacketCommitmentResponse, QueryPacketCommitmentResponseProtoMsg as IbcCoreChannelV2QueryPacketCommitmentResponseProtoMsg, QueryPacketCommitmentResponseAmino as IbcCoreChannelV2QueryPacketCommitmentResponseAmino, QueryPacketCommitmentResponseAminoMsg as IbcCoreChannelV2QueryPacketCommitmentResponseAminoMsg, QueryPacketCommitmentsRequest as IbcCoreChannelV2QueryPacketCommitmentsRequest, QueryPacketCommitmentsRequestProtoMsg as IbcCoreChannelV2QueryPacketCommitmentsRequestProtoMsg, QueryPacketCommitmentsRequestAmino as IbcCoreChannelV2QueryPacketCommitmentsRequestAmino, QueryPacketCommitmentsRequestAminoMsg as IbcCoreChannelV2QueryPacketCommitmentsRequestAminoMsg, QueryPacketCommitmentsResponse as IbcCoreChannelV2QueryPacketCommitmentsResponse, QueryPacketCommitmentsResponseProtoMsg as IbcCoreChannelV2QueryPacketCommitmentsResponseProtoMsg, QueryPacketCommitmentsResponseAmino as IbcCoreChannelV2QueryPacketCommitmentsResponseAmino, QueryPacketCommitmentsResponseAminoMsg as IbcCoreChannelV2QueryPacketCommitmentsResponseAminoMsg, QueryPacketAcknowledgementRequest as IbcCoreChannelV2QueryPacketAcknowledgementRequest, QueryPacketAcknowledgementRequestProtoMsg as IbcCoreChannelV2QueryPacketAcknowledgementRequestProtoMsg, QueryPacketAcknowledgementRequestAmino as IbcCoreChannelV2QueryPacketAcknowledgementRequestAmino, QueryPacketAcknowledgementRequestAminoMsg as IbcCoreChannelV2QueryPacketAcknowledgementRequestAminoMsg, QueryPacketAcknowledgementResponse as IbcCoreChannelV2QueryPacketAcknowledgementResponse, QueryPacketAcknowledgementResponseProtoMsg as IbcCoreChannelV2QueryPacketAcknowledgementResponseProtoMsg, QueryPacketAcknowledgementResponseAmino as IbcCoreChannelV2QueryPacketAcknowledgementResponseAmino, QueryPacketAcknowledgementResponseAminoMsg as IbcCoreChannelV2QueryPacketAcknowledgementResponseAminoMsg, QueryPacketAcknowledgementsRequest as IbcCoreChannelV2QueryPacketAcknowledgementsRequest, QueryPacketAcknowledgementsRequestProtoMsg as IbcCoreChannelV2QueryPacketAcknowledgementsRequestProtoMsg, QueryPacketAcknowledgementsRequestAmino as IbcCoreChannelV2QueryPacketAcknowledgementsRequestAmino, QueryPacketAcknowledgementsRequestAminoMsg as IbcCoreChannelV2QueryPacketAcknowledgementsRequestAminoMsg, QueryPacketAcknowledgementsResponse as IbcCoreChannelV2QueryPacketAcknowledgementsResponse, QueryPacketAcknowledgementsResponseProtoMsg as IbcCoreChannelV2QueryPacketAcknowledgementsResponseProtoMsg, QueryPacketAcknowledgementsResponseAmino as IbcCoreChannelV2QueryPacketAcknowledgementsResponseAmino, QueryPacketAcknowledgementsResponseAminoMsg as IbcCoreChannelV2QueryPacketAcknowledgementsResponseAminoMsg, QueryPacketReceiptRequest as IbcCoreChannelV2QueryPacketReceiptRequest, QueryPacketReceiptRequestProtoMsg as IbcCoreChannelV2QueryPacketReceiptRequestProtoMsg, QueryPacketReceiptRequestAmino as IbcCoreChannelV2QueryPacketReceiptRequestAmino, QueryPacketReceiptRequestAminoMsg as IbcCoreChannelV2QueryPacketReceiptRequestAminoMsg, QueryPacketReceiptResponse as IbcCoreChannelV2QueryPacketReceiptResponse, QueryPacketReceiptResponseProtoMsg as IbcCoreChannelV2QueryPacketReceiptResponseProtoMsg, QueryPacketReceiptResponseAmino as IbcCoreChannelV2QueryPacketReceiptResponseAmino, QueryPacketReceiptResponseAminoMsg as IbcCoreChannelV2QueryPacketReceiptResponseAminoMsg, QueryUnreceivedPacketsRequest as IbcCoreChannelV2QueryUnreceivedPacketsRequest, QueryUnreceivedPacketsRequestProtoMsg as IbcCoreChannelV2QueryUnreceivedPacketsRequestProtoMsg, QueryUnreceivedPacketsRequestAmino as IbcCoreChannelV2QueryUnreceivedPacketsRequestAmino, QueryUnreceivedPacketsRequestAminoMsg as IbcCoreChannelV2QueryUnreceivedPacketsRequestAminoMsg, QueryUnreceivedPacketsResponse as IbcCoreChannelV2QueryUnreceivedPacketsResponse, QueryUnreceivedPacketsResponseProtoMsg as IbcCoreChannelV2QueryUnreceivedPacketsResponseProtoMsg, QueryUnreceivedPacketsResponseAmino as IbcCoreChannelV2QueryUnreceivedPacketsResponseAmino, QueryUnreceivedPacketsResponseAminoMsg as IbcCoreChannelV2QueryUnreceivedPacketsResponseAminoMsg, QueryUnreceivedAcksRequest as IbcCoreChannelV2QueryUnreceivedAcksRequest, QueryUnreceivedAcksRequestProtoMsg as IbcCoreChannelV2QueryUnreceivedAcksRequestProtoMsg, QueryUnreceivedAcksRequestAmino as IbcCoreChannelV2QueryUnreceivedAcksRequestAmino, QueryUnreceivedAcksRequestAminoMsg as IbcCoreChannelV2QueryUnreceivedAcksRequestAminoMsg, QueryUnreceivedAcksResponse as IbcCoreChannelV2QueryUnreceivedAcksResponse, QueryUnreceivedAcksResponseProtoMsg as IbcCoreChannelV2QueryUnreceivedAcksResponseProtoMsg, QueryUnreceivedAcksResponseAmino as IbcCoreChannelV2QueryUnreceivedAcksResponseAmino, QueryUnreceivedAcksResponseAminoMsg as IbcCoreChannelV2QueryUnreceivedAcksResponseAminoMsg } from "./core/channel/v2/query";
26
+ export { ResponseResultType as IbcCoreChannelV2ResponseResultType, ResponseResultTypeAmino as IbcCoreChannelV2ResponseResultTypeAmino, MsgSendPacket, MsgSendPacketProtoMsg, MsgSendPacketAmino, MsgSendPacketAminoMsg, MsgSendPacketResponse, MsgSendPacketResponseProtoMsg, MsgSendPacketResponseAmino, MsgSendPacketResponseAminoMsg, MsgRecvPacket as IbcCoreChannelV2MsgRecvPacket, MsgRecvPacketProtoMsg as IbcCoreChannelV2MsgRecvPacketProtoMsg, MsgRecvPacketAmino as IbcCoreChannelV2MsgRecvPacketAmino, MsgRecvPacketAminoMsg as IbcCoreChannelV2MsgRecvPacketAminoMsg, MsgRecvPacketResponse as IbcCoreChannelV2MsgRecvPacketResponse, MsgRecvPacketResponseProtoMsg as IbcCoreChannelV2MsgRecvPacketResponseProtoMsg, MsgRecvPacketResponseAmino as IbcCoreChannelV2MsgRecvPacketResponseAmino, MsgRecvPacketResponseAminoMsg as IbcCoreChannelV2MsgRecvPacketResponseAminoMsg, MsgTimeout as IbcCoreChannelV2MsgTimeout, MsgTimeoutProtoMsg as IbcCoreChannelV2MsgTimeoutProtoMsg, MsgTimeoutAmino as IbcCoreChannelV2MsgTimeoutAmino, MsgTimeoutAminoMsg as IbcCoreChannelV2MsgTimeoutAminoMsg, MsgTimeoutResponse as IbcCoreChannelV2MsgTimeoutResponse, MsgTimeoutResponseProtoMsg as IbcCoreChannelV2MsgTimeoutResponseProtoMsg, MsgTimeoutResponseAmino as IbcCoreChannelV2MsgTimeoutResponseAmino, MsgTimeoutResponseAminoMsg as IbcCoreChannelV2MsgTimeoutResponseAminoMsg, MsgAcknowledgement as IbcCoreChannelV2MsgAcknowledgement, MsgAcknowledgementProtoMsg as IbcCoreChannelV2MsgAcknowledgementProtoMsg, MsgAcknowledgementAmino as IbcCoreChannelV2MsgAcknowledgementAmino, MsgAcknowledgementAminoMsg as IbcCoreChannelV2MsgAcknowledgementAminoMsg, MsgAcknowledgementResponse as IbcCoreChannelV2MsgAcknowledgementResponse, MsgAcknowledgementResponseProtoMsg as IbcCoreChannelV2MsgAcknowledgementResponseProtoMsg, MsgAcknowledgementResponseAmino as IbcCoreChannelV2MsgAcknowledgementResponseAmino, MsgAcknowledgementResponseAminoMsg as IbcCoreChannelV2MsgAcknowledgementResponseAminoMsg } from "./core/channel/v2/tx";
27
+ export { IdentifiedClientState, IdentifiedClientStateProtoMsg, IdentifiedClientStateAmino, IdentifiedClientStateAminoMsg, ConsensusStateWithHeight, ConsensusStateWithHeightProtoMsg, ConsensusStateWithHeightAmino, ConsensusStateWithHeightAminoMsg, ClientConsensusStates, ClientConsensusStatesProtoMsg, ClientConsensusStatesAmino, ClientConsensusStatesAminoMsg, Height, HeightProtoMsg, HeightAmino, HeightAminoMsg, Params as IbcCoreClientV1Params, ParamsProtoMsg as IbcCoreClientV1ParamsProtoMsg, ParamsAmino as IbcCoreClientV1ParamsAmino, ParamsAminoMsg as IbcCoreClientV1ParamsAminoMsg } from "./core/client/v1/client";
28
+ export { GenesisState as IbcCoreClientV1GenesisState, GenesisStateProtoMsg as IbcCoreClientV1GenesisStateProtoMsg, GenesisStateAmino as IbcCoreClientV1GenesisStateAmino, GenesisStateAminoMsg as IbcCoreClientV1GenesisStateAminoMsg, GenesisMetadata, GenesisMetadataProtoMsg, GenesisMetadataAmino, GenesisMetadataAminoMsg, IdentifiedGenesisMetadata, IdentifiedGenesisMetadataProtoMsg, IdentifiedGenesisMetadataAmino, IdentifiedGenesisMetadataAminoMsg } from "./core/client/v1/genesis";
29
+ export { QueryClientStateRequest, QueryClientStateRequestProtoMsg, QueryClientStateRequestAmino, QueryClientStateRequestAminoMsg, QueryClientStateResponse, QueryClientStateResponseProtoMsg, QueryClientStateResponseAmino, QueryClientStateResponseAminoMsg, QueryClientStatesRequest, QueryClientStatesRequestProtoMsg, QueryClientStatesRequestAmino, QueryClientStatesRequestAminoMsg, QueryClientStatesResponse, QueryClientStatesResponseProtoMsg, QueryClientStatesResponseAmino, QueryClientStatesResponseAminoMsg, QueryConsensusStateRequest, QueryConsensusStateRequestProtoMsg, QueryConsensusStateRequestAmino, QueryConsensusStateRequestAminoMsg, QueryConsensusStateResponse, QueryConsensusStateResponseProtoMsg, QueryConsensusStateResponseAmino, QueryConsensusStateResponseAminoMsg, QueryConsensusStatesRequest, QueryConsensusStatesRequestProtoMsg, QueryConsensusStatesRequestAmino, QueryConsensusStatesRequestAminoMsg, QueryConsensusStatesResponse, QueryConsensusStatesResponseProtoMsg, QueryConsensusStatesResponseAmino, QueryConsensusStatesResponseAminoMsg, QueryConsensusStateHeightsRequest, QueryConsensusStateHeightsRequestProtoMsg, QueryConsensusStateHeightsRequestAmino, QueryConsensusStateHeightsRequestAminoMsg, QueryConsensusStateHeightsResponse, QueryConsensusStateHeightsResponseProtoMsg, QueryConsensusStateHeightsResponseAmino, QueryConsensusStateHeightsResponseAminoMsg, QueryClientStatusRequest, QueryClientStatusRequestProtoMsg, QueryClientStatusRequestAmino, QueryClientStatusRequestAminoMsg, QueryClientStatusResponse, QueryClientStatusResponseProtoMsg, QueryClientStatusResponseAmino, QueryClientStatusResponseAminoMsg, QueryClientParamsRequest, QueryClientParamsRequestProtoMsg, QueryClientParamsRequestAmino, QueryClientParamsRequestAminoMsg, QueryClientParamsResponse, QueryClientParamsResponseProtoMsg, QueryClientParamsResponseAmino, QueryClientParamsResponseAminoMsg, QueryClientCreatorRequest, QueryClientCreatorRequestProtoMsg, QueryClientCreatorRequestAmino, QueryClientCreatorRequestAminoMsg, QueryClientCreatorResponse, QueryClientCreatorResponseProtoMsg, QueryClientCreatorResponseAmino, QueryClientCreatorResponseAminoMsg, QueryUpgradedClientStateRequest, QueryUpgradedClientStateRequestProtoMsg, QueryUpgradedClientStateRequestAmino, QueryUpgradedClientStateRequestAminoMsg, QueryUpgradedClientStateResponse, QueryUpgradedClientStateResponseProtoMsg, QueryUpgradedClientStateResponseAmino, QueryUpgradedClientStateResponseAminoMsg, QueryUpgradedConsensusStateRequest as IbcCoreClientV1QueryUpgradedConsensusStateRequest, QueryUpgradedConsensusStateRequestProtoMsg as IbcCoreClientV1QueryUpgradedConsensusStateRequestProtoMsg, QueryUpgradedConsensusStateRequestAmino as IbcCoreClientV1QueryUpgradedConsensusStateRequestAmino, QueryUpgradedConsensusStateRequestAminoMsg as IbcCoreClientV1QueryUpgradedConsensusStateRequestAminoMsg, QueryUpgradedConsensusStateResponse as IbcCoreClientV1QueryUpgradedConsensusStateResponse, QueryUpgradedConsensusStateResponseProtoMsg as IbcCoreClientV1QueryUpgradedConsensusStateResponseProtoMsg, QueryUpgradedConsensusStateResponseAmino as IbcCoreClientV1QueryUpgradedConsensusStateResponseAmino, QueryUpgradedConsensusStateResponseAminoMsg as IbcCoreClientV1QueryUpgradedConsensusStateResponseAminoMsg, QueryVerifyMembershipRequest, QueryVerifyMembershipRequestProtoMsg, QueryVerifyMembershipRequestAmino, QueryVerifyMembershipRequestAminoMsg, QueryVerifyMembershipResponse, QueryVerifyMembershipResponseProtoMsg, QueryVerifyMembershipResponseAmino, QueryVerifyMembershipResponseAminoMsg } from "./core/client/v1/query";
30
+ export { MsgCreateClient, MsgCreateClientProtoMsg, MsgCreateClientAmino, MsgCreateClientAminoMsg, MsgCreateClientResponse, MsgCreateClientResponseProtoMsg, MsgCreateClientResponseAmino, MsgCreateClientResponseAminoMsg, MsgUpdateClient, MsgUpdateClientProtoMsg, MsgUpdateClientAmino, MsgUpdateClientAminoMsg, MsgUpdateClientResponse, MsgUpdateClientResponseProtoMsg, MsgUpdateClientResponseAmino, MsgUpdateClientResponseAminoMsg, MsgUpgradeClient, MsgUpgradeClientProtoMsg, MsgUpgradeClientAmino, MsgUpgradeClientAminoMsg, MsgUpgradeClientResponse, MsgUpgradeClientResponseProtoMsg, MsgUpgradeClientResponseAmino, MsgUpgradeClientResponseAminoMsg, MsgSubmitMisbehaviour, MsgSubmitMisbehaviourProtoMsg, MsgSubmitMisbehaviourAmino, MsgSubmitMisbehaviourAminoMsg, MsgSubmitMisbehaviourResponse, MsgSubmitMisbehaviourResponseProtoMsg, MsgSubmitMisbehaviourResponseAmino, MsgSubmitMisbehaviourResponseAminoMsg, MsgRecoverClient, MsgRecoverClientProtoMsg, MsgRecoverClientAmino, MsgRecoverClientAminoMsg, MsgRecoverClientResponse, MsgRecoverClientResponseProtoMsg, MsgRecoverClientResponseAmino, MsgRecoverClientResponseAminoMsg, MsgIBCSoftwareUpgrade, MsgIBCSoftwareUpgradeProtoMsg, MsgIBCSoftwareUpgradeAmino, MsgIBCSoftwareUpgradeAminoMsg, MsgIBCSoftwareUpgradeResponse, MsgIBCSoftwareUpgradeResponseProtoMsg, MsgIBCSoftwareUpgradeResponseAmino, MsgIBCSoftwareUpgradeResponseAminoMsg, MsgUpdateParams as IbcCoreClientV1MsgUpdateParams, MsgUpdateParamsProtoMsg as IbcCoreClientV1MsgUpdateParamsProtoMsg, MsgUpdateParamsAmino as IbcCoreClientV1MsgUpdateParamsAmino, MsgUpdateParamsAminoMsg as IbcCoreClientV1MsgUpdateParamsAminoMsg, MsgUpdateParamsResponse as IbcCoreClientV1MsgUpdateParamsResponse, MsgUpdateParamsResponseProtoMsg as IbcCoreClientV1MsgUpdateParamsResponseProtoMsg, MsgUpdateParamsResponseAmino as IbcCoreClientV1MsgUpdateParamsResponseAmino, MsgUpdateParamsResponseAminoMsg as IbcCoreClientV1MsgUpdateParamsResponseAminoMsg, MsgDeleteClientCreator, MsgDeleteClientCreatorProtoMsg, MsgDeleteClientCreatorAmino, MsgDeleteClientCreatorAminoMsg, MsgDeleteClientCreatorResponse, MsgDeleteClientCreatorResponseProtoMsg, MsgDeleteClientCreatorResponseAmino, MsgDeleteClientCreatorResponseAminoMsg } from "./core/client/v1/tx";
31
+ export { Config as IbcCoreClientV2Config, ConfigProtoMsg as IbcCoreClientV2ConfigProtoMsg, ConfigAmino as IbcCoreClientV2ConfigAmino, ConfigAminoMsg as IbcCoreClientV2ConfigAminoMsg } from "./core/client/v2/config";
32
+ export * from "./core/client/v2/counterparty";
33
+ export { GenesisCounterpartyInfo, GenesisCounterpartyInfoProtoMsg, GenesisCounterpartyInfoAmino, GenesisCounterpartyInfoAminoMsg, GenesisState as IbcCoreClientV2GenesisState, GenesisStateProtoMsg as IbcCoreClientV2GenesisStateProtoMsg, GenesisStateAmino as IbcCoreClientV2GenesisStateAmino, GenesisStateAminoMsg as IbcCoreClientV2GenesisStateAminoMsg } from "./core/client/v2/genesis";
34
+ export { QueryCounterpartyInfoRequest, QueryCounterpartyInfoRequestProtoMsg, QueryCounterpartyInfoRequestAmino, QueryCounterpartyInfoRequestAminoMsg, QueryCounterpartyInfoResponse, QueryCounterpartyInfoResponseProtoMsg, QueryCounterpartyInfoResponseAmino, QueryCounterpartyInfoResponseAminoMsg, QueryConfigRequest as IbcCoreClientV2QueryConfigRequest, QueryConfigRequestProtoMsg as IbcCoreClientV2QueryConfigRequestProtoMsg, QueryConfigRequestAmino as IbcCoreClientV2QueryConfigRequestAmino, QueryConfigRequestAminoMsg as IbcCoreClientV2QueryConfigRequestAminoMsg, QueryConfigResponse as IbcCoreClientV2QueryConfigResponse, QueryConfigResponseProtoMsg as IbcCoreClientV2QueryConfigResponseProtoMsg, QueryConfigResponseAmino as IbcCoreClientV2QueryConfigResponseAmino, QueryConfigResponseAminoMsg as IbcCoreClientV2QueryConfigResponseAminoMsg } from "./core/client/v2/query";
35
+ export * from "./core/client/v2/tx";
36
+ export * from "./core/commitment/v1/commitment";
37
+ export * from "./core/commitment/v2/commitment";
38
+ export { State as IbcCoreConnectionV1State, StateAmino as IbcCoreConnectionV1StateAmino, ConnectionEnd, ConnectionEndProtoMsg, ConnectionEndAmino, ConnectionEndAminoMsg, IdentifiedConnection, IdentifiedConnectionProtoMsg, IdentifiedConnectionAmino, IdentifiedConnectionAminoMsg, Counterparty as IbcCoreConnectionV1Counterparty, CounterpartyProtoMsg as IbcCoreConnectionV1CounterpartyProtoMsg, CounterpartyAmino as IbcCoreConnectionV1CounterpartyAmino, CounterpartyAminoMsg as IbcCoreConnectionV1CounterpartyAminoMsg, ClientPaths, ClientPathsProtoMsg, ClientPathsAmino, ClientPathsAminoMsg, ConnectionPaths, ConnectionPathsProtoMsg, ConnectionPathsAmino, ConnectionPathsAminoMsg, Version, VersionProtoMsg, VersionAmino, VersionAminoMsg, Params as IbcCoreConnectionV1Params, ParamsProtoMsg as IbcCoreConnectionV1ParamsProtoMsg, ParamsAmino as IbcCoreConnectionV1ParamsAmino, ParamsAminoMsg as IbcCoreConnectionV1ParamsAminoMsg } from "./core/connection/v1/connection";
39
+ export { GenesisState as IbcCoreConnectionV1GenesisState, GenesisStateProtoMsg as IbcCoreConnectionV1GenesisStateProtoMsg, GenesisStateAmino as IbcCoreConnectionV1GenesisStateAmino, GenesisStateAminoMsg as IbcCoreConnectionV1GenesisStateAminoMsg } from "./core/connection/v1/genesis";
40
+ export * from "./core/connection/v1/query";
41
+ export { MsgConnectionOpenInit, MsgConnectionOpenInitProtoMsg, MsgConnectionOpenInitAmino, MsgConnectionOpenInitAminoMsg, MsgConnectionOpenInitResponse, MsgConnectionOpenInitResponseProtoMsg, MsgConnectionOpenInitResponseAmino, MsgConnectionOpenInitResponseAminoMsg, MsgConnectionOpenTry, MsgConnectionOpenTryProtoMsg, MsgConnectionOpenTryAmino, MsgConnectionOpenTryAminoMsg, MsgConnectionOpenTryResponse, MsgConnectionOpenTryResponseProtoMsg, MsgConnectionOpenTryResponseAmino, MsgConnectionOpenTryResponseAminoMsg, MsgConnectionOpenAck, MsgConnectionOpenAckProtoMsg, MsgConnectionOpenAckAmino, MsgConnectionOpenAckAminoMsg, MsgConnectionOpenAckResponse, MsgConnectionOpenAckResponseProtoMsg, MsgConnectionOpenAckResponseAmino, MsgConnectionOpenAckResponseAminoMsg, MsgConnectionOpenConfirm, MsgConnectionOpenConfirmProtoMsg, MsgConnectionOpenConfirmAmino, MsgConnectionOpenConfirmAminoMsg, MsgConnectionOpenConfirmResponse, MsgConnectionOpenConfirmResponseProtoMsg, MsgConnectionOpenConfirmResponseAmino, MsgConnectionOpenConfirmResponseAminoMsg, MsgUpdateParams as IbcCoreConnectionV1MsgUpdateParams, MsgUpdateParamsProtoMsg as IbcCoreConnectionV1MsgUpdateParamsProtoMsg, MsgUpdateParamsAmino as IbcCoreConnectionV1MsgUpdateParamsAmino, MsgUpdateParamsAminoMsg as IbcCoreConnectionV1MsgUpdateParamsAminoMsg, MsgUpdateParamsResponse as IbcCoreConnectionV1MsgUpdateParamsResponse, MsgUpdateParamsResponseProtoMsg as IbcCoreConnectionV1MsgUpdateParamsResponseProtoMsg, MsgUpdateParamsResponseAmino as IbcCoreConnectionV1MsgUpdateParamsResponseAmino, MsgUpdateParamsResponseAminoMsg as IbcCoreConnectionV1MsgUpdateParamsResponseAminoMsg } from "./core/connection/v1/tx";
42
+ export { GenesisState as IbcCoreTypesV1GenesisState, GenesisStateProtoMsg as IbcCoreTypesV1GenesisStateProtoMsg, GenesisStateAmino as IbcCoreTypesV1GenesisStateAmino, GenesisStateAminoMsg as IbcCoreTypesV1GenesisStateAminoMsg } from "./core/types/v1/genesis";
43
+ export { DataType, DataTypeAmino, ClientState, ClientStateProtoMsg, ClientStateAmino, ClientStateAminoMsg, ConsensusState, ConsensusStateProtoMsg, ConsensusStateAmino, ConsensusStateAminoMsg, Header as IbcLightclientsSolomachineV2Header, HeaderProtoMsg as IbcLightclientsSolomachineV2HeaderProtoMsg, HeaderAmino as IbcLightclientsSolomachineV2HeaderAmino, HeaderAminoMsg as IbcLightclientsSolomachineV2HeaderAminoMsg, Misbehaviour, MisbehaviourProtoMsg, MisbehaviourAmino, MisbehaviourAminoMsg, SignatureAndData, SignatureAndDataProtoMsg, SignatureAndDataAmino, SignatureAndDataAminoMsg, TimestampedSignatureData, TimestampedSignatureDataProtoMsg, TimestampedSignatureDataAmino, TimestampedSignatureDataAminoMsg, SignBytes, SignBytesProtoMsg, SignBytesAmino, SignBytesAminoMsg, HeaderData, HeaderDataProtoMsg, HeaderDataAmino, HeaderDataAminoMsg, ClientStateData, ClientStateDataProtoMsg, ClientStateDataAmino, ClientStateDataAminoMsg, ConsensusStateData, ConsensusStateDataProtoMsg, ConsensusStateDataAmino, ConsensusStateDataAminoMsg, ConnectionStateData, ConnectionStateDataProtoMsg, ConnectionStateDataAmino, ConnectionStateDataAminoMsg, ChannelStateData, ChannelStateDataProtoMsg, ChannelStateDataAmino, ChannelStateDataAminoMsg, PacketCommitmentData, PacketCommitmentDataProtoMsg, PacketCommitmentDataAmino, PacketCommitmentDataAminoMsg, PacketAcknowledgementData, PacketAcknowledgementDataProtoMsg, PacketAcknowledgementDataAmino, PacketAcknowledgementDataAminoMsg, PacketReceiptAbsenceData, PacketReceiptAbsenceDataProtoMsg, PacketReceiptAbsenceDataAmino, PacketReceiptAbsenceDataAminoMsg, NextSequenceRecvData, NextSequenceRecvDataProtoMsg, NextSequenceRecvDataAmino, NextSequenceRecvDataAminoMsg } from "./lightclients/solomachine/v2/solomachine";
44
+ export { ClientState as IbcLightclientsSolomachineV3ClientState, ClientStateProtoMsg as IbcLightclientsSolomachineV3ClientStateProtoMsg, ClientStateAmino as IbcLightclientsSolomachineV3ClientStateAmino, ClientStateAminoMsg as IbcLightclientsSolomachineV3ClientStateAminoMsg, ConsensusState as IbcLightclientsSolomachineV3ConsensusState, ConsensusStateProtoMsg as IbcLightclientsSolomachineV3ConsensusStateProtoMsg, ConsensusStateAmino as IbcLightclientsSolomachineV3ConsensusStateAmino, ConsensusStateAminoMsg as IbcLightclientsSolomachineV3ConsensusStateAminoMsg, Header as IbcLightclientsSolomachineV3Header, HeaderProtoMsg as IbcLightclientsSolomachineV3HeaderProtoMsg, HeaderAmino as IbcLightclientsSolomachineV3HeaderAmino, HeaderAminoMsg as IbcLightclientsSolomachineV3HeaderAminoMsg, Misbehaviour as IbcLightclientsSolomachineV3Misbehaviour, MisbehaviourProtoMsg as IbcLightclientsSolomachineV3MisbehaviourProtoMsg, MisbehaviourAmino as IbcLightclientsSolomachineV3MisbehaviourAmino, MisbehaviourAminoMsg as IbcLightclientsSolomachineV3MisbehaviourAminoMsg, SignatureAndData as IbcLightclientsSolomachineV3SignatureAndData, SignatureAndDataProtoMsg as IbcLightclientsSolomachineV3SignatureAndDataProtoMsg, SignatureAndDataAmino as IbcLightclientsSolomachineV3SignatureAndDataAmino, SignatureAndDataAminoMsg as IbcLightclientsSolomachineV3SignatureAndDataAminoMsg, TimestampedSignatureData as IbcLightclientsSolomachineV3TimestampedSignatureData, TimestampedSignatureDataProtoMsg as IbcLightclientsSolomachineV3TimestampedSignatureDataProtoMsg, TimestampedSignatureDataAmino as IbcLightclientsSolomachineV3TimestampedSignatureDataAmino, TimestampedSignatureDataAminoMsg as IbcLightclientsSolomachineV3TimestampedSignatureDataAminoMsg, SignBytes as IbcLightclientsSolomachineV3SignBytes, SignBytesProtoMsg as IbcLightclientsSolomachineV3SignBytesProtoMsg, SignBytesAmino as IbcLightclientsSolomachineV3SignBytesAmino, SignBytesAminoMsg as IbcLightclientsSolomachineV3SignBytesAminoMsg, HeaderData as IbcLightclientsSolomachineV3HeaderData, HeaderDataProtoMsg as IbcLightclientsSolomachineV3HeaderDataProtoMsg, HeaderDataAmino as IbcLightclientsSolomachineV3HeaderDataAmino, HeaderDataAminoMsg as IbcLightclientsSolomachineV3HeaderDataAminoMsg } from "./lightclients/solomachine/v3/solomachine";
45
+ export { ClientState as IbcLightclientsTendermintV1ClientState, ClientStateProtoMsg as IbcLightclientsTendermintV1ClientStateProtoMsg, ClientStateAmino as IbcLightclientsTendermintV1ClientStateAmino, ClientStateAminoMsg as IbcLightclientsTendermintV1ClientStateAminoMsg, ConsensusState as IbcLightclientsTendermintV1ConsensusState, ConsensusStateProtoMsg as IbcLightclientsTendermintV1ConsensusStateProtoMsg, ConsensusStateAmino as IbcLightclientsTendermintV1ConsensusStateAmino, ConsensusStateAminoMsg as IbcLightclientsTendermintV1ConsensusStateAminoMsg, Misbehaviour as IbcLightclientsTendermintV1Misbehaviour, MisbehaviourProtoMsg as IbcLightclientsTendermintV1MisbehaviourProtoMsg, MisbehaviourAmino as IbcLightclientsTendermintV1MisbehaviourAmino, MisbehaviourAminoMsg as IbcLightclientsTendermintV1MisbehaviourAminoMsg, Header as IbcLightclientsTendermintV1Header, HeaderProtoMsg as IbcLightclientsTendermintV1HeaderProtoMsg, HeaderAmino as IbcLightclientsTendermintV1HeaderAmino, HeaderAminoMsg as IbcLightclientsTendermintV1HeaderAminoMsg, Fraction, FractionProtoMsg, FractionAmino, FractionAminoMsg } from "./lightclients/tendermint/v1/tendermint";
46
+ export { GenesisState as IbcLightclientsWasmV1GenesisState, GenesisStateProtoMsg as IbcLightclientsWasmV1GenesisStateProtoMsg, GenesisStateAmino as IbcLightclientsWasmV1GenesisStateAmino, GenesisStateAminoMsg as IbcLightclientsWasmV1GenesisStateAminoMsg, Contract as IbcLightclientsWasmV1Contract, ContractProtoMsg as IbcLightclientsWasmV1ContractProtoMsg, ContractAmino as IbcLightclientsWasmV1ContractAmino, ContractAminoMsg as IbcLightclientsWasmV1ContractAminoMsg } from "./lightclients/wasm/v1/genesis";
47
+ export { QueryChecksumsRequest, QueryChecksumsRequestProtoMsg, QueryChecksumsRequestAmino, QueryChecksumsRequestAminoMsg, QueryChecksumsResponse, QueryChecksumsResponseProtoMsg, QueryChecksumsResponseAmino, QueryChecksumsResponseAminoMsg, QueryCodeRequest as IbcLightclientsWasmV1QueryCodeRequest, QueryCodeRequestProtoMsg as IbcLightclientsWasmV1QueryCodeRequestProtoMsg, QueryCodeRequestAmino as IbcLightclientsWasmV1QueryCodeRequestAmino, QueryCodeRequestAminoMsg as IbcLightclientsWasmV1QueryCodeRequestAminoMsg, QueryCodeResponse as IbcLightclientsWasmV1QueryCodeResponse, QueryCodeResponseProtoMsg as IbcLightclientsWasmV1QueryCodeResponseProtoMsg, QueryCodeResponseAmino as IbcLightclientsWasmV1QueryCodeResponseAmino, QueryCodeResponseAminoMsg as IbcLightclientsWasmV1QueryCodeResponseAminoMsg } from "./lightclients/wasm/v1/query";
48
+ export { MsgStoreCode as IbcLightclientsWasmV1MsgStoreCode, MsgStoreCodeProtoMsg as IbcLightclientsWasmV1MsgStoreCodeProtoMsg, MsgStoreCodeAmino as IbcLightclientsWasmV1MsgStoreCodeAmino, MsgStoreCodeAminoMsg as IbcLightclientsWasmV1MsgStoreCodeAminoMsg, MsgStoreCodeResponse as IbcLightclientsWasmV1MsgStoreCodeResponse, MsgStoreCodeResponseProtoMsg as IbcLightclientsWasmV1MsgStoreCodeResponseProtoMsg, MsgStoreCodeResponseAmino as IbcLightclientsWasmV1MsgStoreCodeResponseAmino, MsgStoreCodeResponseAminoMsg as IbcLightclientsWasmV1MsgStoreCodeResponseAminoMsg, MsgRemoveChecksum, MsgRemoveChecksumProtoMsg, MsgRemoveChecksumAmino, MsgRemoveChecksumAminoMsg, MsgRemoveChecksumResponse, MsgRemoveChecksumResponseProtoMsg, MsgRemoveChecksumResponseAmino, MsgRemoveChecksumResponseAminoMsg, MsgMigrateContract as IbcLightclientsWasmV1MsgMigrateContract, MsgMigrateContractProtoMsg as IbcLightclientsWasmV1MsgMigrateContractProtoMsg, MsgMigrateContractAmino as IbcLightclientsWasmV1MsgMigrateContractAmino, MsgMigrateContractAminoMsg as IbcLightclientsWasmV1MsgMigrateContractAminoMsg, MsgMigrateContractResponse as IbcLightclientsWasmV1MsgMigrateContractResponse, MsgMigrateContractResponseProtoMsg as IbcLightclientsWasmV1MsgMigrateContractResponseProtoMsg, MsgMigrateContractResponseAmino as IbcLightclientsWasmV1MsgMigrateContractResponseAmino, MsgMigrateContractResponseAminoMsg as IbcLightclientsWasmV1MsgMigrateContractResponseAminoMsg } from "./lightclients/wasm/v1/tx";
49
+ export { ClientState as IbcLightclientsWasmV1ClientState, ClientStateProtoMsg as IbcLightclientsWasmV1ClientStateProtoMsg, ClientStateAmino as IbcLightclientsWasmV1ClientStateAmino, ClientStateAminoMsg as IbcLightclientsWasmV1ClientStateAminoMsg, ConsensusState as IbcLightclientsWasmV1ConsensusState, ConsensusStateProtoMsg as IbcLightclientsWasmV1ConsensusStateProtoMsg, ConsensusStateAmino as IbcLightclientsWasmV1ConsensusStateAmino, ConsensusStateAminoMsg as IbcLightclientsWasmV1ConsensusStateAminoMsg, ClientMessage, ClientMessageProtoMsg, ClientMessageAmino, ClientMessageAminoMsg, Checksums, ChecksumsProtoMsg, ChecksumsAmino, ChecksumsAminoMsg } from "./lightclients/wasm/v1/wasm";
50
+ export { registry as IbcApplicationsInterchainAccountsControllerV1Registry, MessageComposer as IbcApplicationsInterchainAccountsControllerV1MessageComposer } from "./applications/interchain_accounts/controller/v1/tx.registry";
51
+ export { registry as IbcApplicationsInterchainAccountsHostV1Registry, MessageComposer as IbcApplicationsInterchainAccountsHostV1MessageComposer } from "./applications/interchain_accounts/host/v1/tx.registry";
52
+ export { registry as IbcApplicationsTransferV1Registry, MessageComposer as IbcApplicationsTransferV1MessageComposer } from "./applications/transfer/v1/tx.registry";
53
+ export { registry as IbcCoreChannelV1Registry, MessageComposer as IbcCoreChannelV1MessageComposer } from "./core/channel/v1/tx.registry";
54
+ export { registry as IbcCoreChannelV2Registry, MessageComposer as IbcCoreChannelV2MessageComposer } from "./core/channel/v2/tx.registry";
55
+ export { registry as IbcCoreClientV1Registry, MessageComposer as IbcCoreClientV1MessageComposer } from "./core/client/v1/tx.registry";
56
+ export { registry as IbcCoreClientV2Registry, MessageComposer as IbcCoreClientV2MessageComposer } from "./core/client/v2/tx.registry";
57
+ export { registry as IbcCoreConnectionV1Registry, MessageComposer as IbcCoreConnectionV1MessageComposer } from "./core/connection/v1/tx.registry";
58
+ export { registry as IbcLightclientsWasmV1Registry, MessageComposer as IbcLightclientsWasmV1MessageComposer } from "./lightclients/wasm/v1/tx.registry";
59
+ export { getInterchainAccount, getParams as getParamsIbcApplicationsInterchainAccountsControllerV1 } from "./applications/interchain_accounts/controller/v1/query.rpc.func";
60
+ export { getParams as getParamsIbcApplicationsInterchainAccountsHostV1 } from "./applications/interchain_accounts/host/v1/query.rpc.func";
61
+ export { getParams as getParamsIbcApplicationsTransferV1, getDenoms, getDenom, getDenomHash, getEscrowAddress, getTotalEscrowForDenom } from "./applications/transfer/v1/query.rpc.func";
62
+ export { getChannel, getChannels, getConnectionChannels, getChannelClientState, getChannelConsensusState, getPacketCommitment, getPacketCommitments, getPacketReceipt, getPacketAcknowledgement, getPacketAcknowledgements, getUnreceivedPackets, getUnreceivedAcks, getNextSequenceReceive, getNextSequenceSend } from "./core/channel/v1/query.rpc.func";
63
+ export { getNextSequenceSend as getNextSequenceSendIbcCoreChannelV2, getPacketCommitment as getPacketCommitmentIbcCoreChannelV2, getPacketCommitments as getPacketCommitmentsIbcCoreChannelV2, getPacketAcknowledgement as getPacketAcknowledgementIbcCoreChannelV2, getPacketAcknowledgements as getPacketAcknowledgementsIbcCoreChannelV2, getPacketReceipt as getPacketReceiptIbcCoreChannelV2, getUnreceivedPackets as getUnreceivedPacketsIbcCoreChannelV2, getUnreceivedAcks as getUnreceivedAcksIbcCoreChannelV2 } from "./core/channel/v2/query.rpc.func";
64
+ export { getClientState, getClientStates, getConsensusState, getConsensusStates, getConsensusStateHeights, getClientStatus, getClientParams, getClientCreator, getUpgradedClientState, getUpgradedConsensusState as getUpgradedConsensusStateIbcCoreClientV1, getVerifyMembership } from "./core/client/v1/query.rpc.func";
65
+ export { getCounterpartyInfo, getConfig as getConfigIbcCoreClientV2 } from "./core/client/v2/query.rpc.func";
66
+ export * from "./core/connection/v1/query.rpc.func";
67
+ export { getChecksums, getCode as getCodeIbcLightclientsWasmV1 } from "./lightclients/wasm/v1/query.rpc.func";
68
+ export { registerInterchainAccount, sendTx, updateParams as updateParamsIbcApplicationsInterchainAccountsControllerV1 } from "./applications/interchain_accounts/controller/v1/tx.rpc.func";
69
+ export { updateParams as updateParamsIbcApplicationsInterchainAccountsHostV1, moduleQuerySafe } from "./applications/interchain_accounts/host/v1/tx.rpc.func";
70
+ export { transfer, updateParams as updateParamsIbcApplicationsTransferV1 } from "./applications/transfer/v1/tx.rpc.func";
71
+ export { channelOpenInit, channelOpenTry, channelOpenAck, channelOpenConfirm, channelCloseInit, channelCloseConfirm, recvPacket, timeout, timeoutOnClose, acknowledgement } from "./core/channel/v1/tx.rpc.func";
72
+ export { sendPacket, recvPacket as recvPacketIbcCoreChannelV2, timeout as timeoutIbcCoreChannelV2, acknowledgement as acknowledgementIbcCoreChannelV2 } from "./core/channel/v2/tx.rpc.func";
73
+ export * from "./core/client/v1/tx.rpc.func";
74
+ export * from "./core/client/v2/tx.rpc.func";
75
+ export * from "./core/connection/v1/tx.rpc.func";
76
+ export { storeCode as storeCodeIbcLightclientsWasmV1, removeChecksum, migrateContract as migrateContractIbcLightclientsWasmV1 } from "./lightclients/wasm/v1/tx.rpc.func";