@sparkdreamnft/sparkdreamjs 0.0.5 → 0.0.7

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 (793) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
  4. package/cosmos/app/runtime/v1alpha1/module.js +44 -1
  5. package/cosmos/app/v1alpha1/module.d.ts +55 -6
  6. package/cosmos/app/v1alpha1/module.js +19 -0
  7. package/cosmos/auth/module/v1/module.d.ts +72 -12
  8. package/cosmos/auth/module/v1/module.js +25 -1
  9. package/cosmos/auth/v1beta1/auth.d.ts +68 -10
  10. package/cosmos/auth/v1beta1/auth.js +26 -0
  11. package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
  12. package/cosmos/auth/v1beta1/genesis.js +6 -0
  13. package/cosmos/auth/v1beta1/query.d.ts +334 -92
  14. package/cosmos/auth/v1beta1/query.js +120 -0
  15. package/cosmos/auth/v1beta1/query.lcd.js +7 -21
  16. package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
  17. package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  18. package/cosmos/auth/v1beta1/tx.d.ts +31 -10
  19. package/cosmos/auth/v1beta1/tx.js +13 -0
  20. package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
  21. package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  22. package/cosmos/authz/module/v1/module.d.ts +18 -2
  23. package/cosmos/authz/module/v1/module.js +6 -0
  24. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  25. package/cosmos/authz/v1beta1/authz.js +27 -0
  26. package/cosmos/authz/v1beta1/event.d.ts +72 -16
  27. package/cosmos/authz/v1beta1/event.js +12 -0
  28. package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
  29. package/cosmos/authz/v1beta1/genesis.js +6 -0
  30. package/cosmos/authz/v1beta1/query.d.ts +168 -32
  31. package/cosmos/authz/v1beta1/query.js +36 -0
  32. package/cosmos/authz/v1beta1/query.lcd.js +2 -6
  33. package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
  34. package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  35. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  36. package/cosmos/authz/v1beta1/tx.js +40 -0
  37. package/cosmos/bank/module/v1/module.d.ts +24 -4
  38. package/cosmos/bank/module/v1/module.js +6 -0
  39. package/cosmos/bank/v1beta1/authz.d.ts +13 -8
  40. package/cosmos/bank/v1beta1/authz.js +7 -0
  41. package/cosmos/bank/v1beta1/bank.d.ts +136 -34
  42. package/cosmos/bank/v1beta1/bank.js +48 -0
  43. package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
  44. package/cosmos/bank/v1beta1/genesis.js +13 -0
  45. package/cosmos/bank/v1beta1/query.d.ts +599 -138
  46. package/cosmos/bank/v1beta1/query.js +179 -0
  47. package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
  48. package/cosmos/bank/v1beta1/query.lcd.js +28 -29
  49. package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
  50. package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
  51. package/cosmos/bank/v1beta1/tx.d.ts +143 -30
  52. package/cosmos/bank/v1beta1/tx.js +53 -0
  53. package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
  54. package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  55. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
  56. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  57. package/cosmos/base/node/v1beta1/query.d.ts +102 -18
  58. package/cosmos/base/node/v1beta1/query.js +24 -0
  59. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
  60. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  61. package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
  62. package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  63. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  64. package/cosmos/base/v1beta1/coin.js +32 -0
  65. package/cosmos/benchmark/module/v1/module.d.ts +102 -26
  66. package/cosmos/benchmark/module/v1/module.js +12 -0
  67. package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
  68. package/cosmos/benchmark/v1/benchmark.js +6 -0
  69. package/cosmos/benchmark/v1/tx.d.ts +36 -4
  70. package/cosmos/benchmark/v1/tx.js +12 -0
  71. package/cosmos/bundle.d.ts +2284 -2422
  72. package/cosmos/bundle.js +242 -261
  73. package/cosmos/circuit/module/v1/module.d.ts +24 -4
  74. package/cosmos/circuit/module/v1/module.js +6 -0
  75. package/cosmos/circuit/v1/query.d.ts +120 -16
  76. package/cosmos/circuit/v1/query.js +36 -0
  77. package/cosmos/circuit/v1/tx.d.ts +126 -18
  78. package/cosmos/circuit/v1/tx.js +36 -0
  79. package/cosmos/circuit/v1/types.d.ts +55 -6
  80. package/cosmos/circuit/v1/types.js +19 -0
  81. package/cosmos/consensus/module/v1/module.d.ts +24 -4
  82. package/cosmos/consensus/module/v1/module.js +6 -0
  83. package/cosmos/consensus/v1/query.d.ts +36 -4
  84. package/cosmos/consensus/v1/query.js +12 -0
  85. package/cosmos/consensus/v1/tx.d.ts +37 -6
  86. package/cosmos/consensus/v1/tx.js +13 -0
  87. package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
  88. package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  89. package/cosmos/counter/module/v1/module.d.ts +24 -4
  90. package/cosmos/counter/module/v1/module.js +6 -0
  91. package/cosmos/counter/v1/query.d.ts +36 -4
  92. package/cosmos/counter/v1/query.js +12 -0
  93. package/cosmos/counter/v1/tx.d.ts +54 -10
  94. package/cosmos/counter/v1/tx.js +12 -0
  95. package/cosmos/crisis/module/v1/module.d.ts +30 -6
  96. package/cosmos/crisis/module/v1/module.js +6 -0
  97. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  98. package/cosmos/crypto/ed25519/keys.js +17 -0
  99. package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
  100. package/cosmos/crypto/hd/v1/hd.js +6 -0
  101. package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
  102. package/cosmos/crypto/keyring/v1/record.js +31 -0
  103. package/cosmos/crypto/multisig/keys.d.ts +14 -0
  104. package/cosmos/crypto/multisig/keys.js +8 -0
  105. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  106. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  107. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  108. package/cosmos/crypto/secp256k1/keys.js +16 -0
  109. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  110. package/cosmos/crypto/secp256r1/keys.js +12 -0
  111. package/cosmos/distribution/module/v1/module.d.ts +24 -4
  112. package/cosmos/distribution/module/v1/module.js +6 -0
  113. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  114. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  115. package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
  116. package/cosmos/distribution/v1beta1/genesis.js +52 -0
  117. package/cosmos/distribution/v1beta1/query.d.ts +430 -58
  118. package/cosmos/distribution/v1beta1/query.js +136 -0
  119. package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  120. package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
  121. package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  122. package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
  123. package/cosmos/distribution/v1beta1/tx.js +97 -0
  124. package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
  125. package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  126. package/cosmos/epochs/module/v1/module.d.ts +18 -2
  127. package/cosmos/epochs/module/v1/module.js +6 -0
  128. package/cosmos/epochs/v1beta1/events.d.ts +36 -4
  129. package/cosmos/epochs/v1beta1/events.js +12 -0
  130. package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
  131. package/cosmos/epochs/v1beta1/genesis.js +13 -0
  132. package/cosmos/epochs/v1beta1/query.d.ts +52 -0
  133. package/cosmos/epochs/v1beta1/query.js +28 -0
  134. package/cosmos/evidence/module/v1/module.d.ts +18 -2
  135. package/cosmos/evidence/module/v1/module.js +6 -0
  136. package/cosmos/feegrant/module/v1/module.d.ts +18 -2
  137. package/cosmos/feegrant/module/v1/module.js +6 -0
  138. package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
  139. package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  140. package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
  141. package/cosmos/feegrant/v1beta1/genesis.js +6 -0
  142. package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
  143. package/cosmos/feegrant/v1beta1/query.js +36 -0
  144. package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  145. package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
  146. package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  147. package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
  148. package/cosmos/feegrant/v1beta1/tx.js +37 -0
  149. package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
  150. package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  151. package/cosmos/genutil/module/v1/module.d.ts +18 -2
  152. package/cosmos/genutil/module/v1/module.js +6 -0
  153. package/cosmos/gov/module/v1/module.d.ts +24 -4
  154. package/cosmos/gov/module/v1/module.js +6 -0
  155. package/cosmos/gov/v1/genesis.d.ts +48 -24
  156. package/cosmos/gov/v1/genesis.js +6 -0
  157. package/cosmos/gov/v1/gov.d.ts +341 -124
  158. package/cosmos/gov/v1/gov.js +59 -0
  159. package/cosmos/gov/v1/query.d.ts +469 -92
  160. package/cosmos/gov/v1/query.js +109 -0
  161. package/cosmos/gov/v1/tx.d.ts +368 -93
  162. package/cosmos/gov/v1/tx.js +88 -0
  163. package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
  164. package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  165. package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
  166. package/cosmos/gov/v1beta1/genesis.js +6 -0
  167. package/cosmos/gov/v1beta1/gov.d.ts +291 -69
  168. package/cosmos/gov/v1beta1/gov.js +57 -0
  169. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  170. package/cosmos/gov/v1beta1/query.js +97 -0
  171. package/cosmos/gov/v1beta1/tx.d.ts +209 -45
  172. package/cosmos/gov/v1beta1/tx.js +49 -0
  173. package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
  174. package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  175. package/cosmos/group/module/v1/module.d.ts +18 -2
  176. package/cosmos/group/module/v1/module.js +6 -0
  177. package/cosmos/group/v1/events.d.ts +300 -56
  178. package/cosmos/group/v1/events.js +66 -0
  179. package/cosmos/group/v1/genesis.d.ts +48 -12
  180. package/cosmos/group/v1/genesis.js +6 -0
  181. package/cosmos/group/v1/query.d.ts +768 -152
  182. package/cosmos/group/v1/query.js +168 -0
  183. package/cosmos/group/v1/query.lcd.js +1 -3
  184. package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
  185. package/cosmos/group/v1/query.rpc.Query.js +1 -3
  186. package/cosmos/group/v1/tx.d.ts +804 -163
  187. package/cosmos/group/v1/tx.js +168 -0
  188. package/cosmos/group/v1/types.d.ts +398 -91
  189. package/cosmos/group/v1/types.js +82 -0
  190. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  191. package/cosmos/ics23/v1/proofs.js +138 -0
  192. package/cosmos/mint/module/v1/module.d.ts +24 -4
  193. package/cosmos/mint/module/v1/module.js +6 -0
  194. package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
  195. package/cosmos/mint/v1beta1/genesis.js +6 -0
  196. package/cosmos/mint/v1beta1/mint.d.ts +84 -20
  197. package/cosmos/mint/v1beta1/mint.js +12 -0
  198. package/cosmos/mint/v1beta1/query.d.ts +111 -12
  199. package/cosmos/mint/v1beta1/query.js +39 -0
  200. package/cosmos/mint/v1beta1/tx.d.ts +31 -10
  201. package/cosmos/mint/v1beta1/tx.js +13 -0
  202. package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
  203. package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  204. package/cosmos/nft/module/v1/module.d.ts +18 -2
  205. package/cosmos/nft/module/v1/module.js +6 -0
  206. package/cosmos/params/module/v1/module.d.ts +18 -2
  207. package/cosmos/params/module/v1/module.js +6 -0
  208. package/cosmos/params/v1beta1/params.d.ts +31 -2
  209. package/cosmos/params/v1beta1/params.js +13 -0
  210. package/cosmos/params/v1beta1/query.d.ts +93 -22
  211. package/cosmos/params/v1beta1/query.js +33 -0
  212. package/cosmos/params/v1beta1/query.lcd.js +1 -3
  213. package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
  214. package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  215. package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
  216. package/cosmos/protocolpool/module/v1/module.js +6 -0
  217. package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
  218. package/cosmos/protocolpool/v1/genesis.js +6 -0
  219. package/cosmos/protocolpool/v1/query.d.ts +138 -12
  220. package/cosmos/protocolpool/v1/query.js +54 -0
  221. package/cosmos/protocolpool/v1/tx.d.ts +217 -30
  222. package/cosmos/protocolpool/v1/tx.js +67 -0
  223. package/cosmos/protocolpool/v1/types.d.ts +54 -10
  224. package/cosmos/protocolpool/v1/types.js +12 -0
  225. package/cosmos/reflection/v1/reflection.d.ts +42 -6
  226. package/cosmos/reflection/v1/reflection.js +12 -0
  227. package/cosmos/rpc.query.d.ts +1 -9
  228. package/cosmos/rpc.query.js +0 -5
  229. package/cosmos/slashing/module/v1/module.d.ts +24 -4
  230. package/cosmos/slashing/module/v1/module.js +6 -0
  231. package/cosmos/staking/module/v1/module.d.ts +36 -8
  232. package/cosmos/staking/module/v1/module.js +6 -0
  233. package/cosmos/staking/v1beta1/authz.d.ts +43 -15
  234. package/cosmos/staking/v1beta1/authz.js +13 -5
  235. package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
  236. package/cosmos/staking/v1beta1/genesis.js +12 -0
  237. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  238. package/cosmos/staking/v1beta1/query.js +186 -0
  239. package/cosmos/staking/v1beta1/staking.d.ts +631 -121
  240. package/cosmos/staking/v1beta1/staking.js +153 -0
  241. package/cosmos/staking/v1beta1/tx.d.ts +234 -42
  242. package/cosmos/staking/v1beta1/tx.js +88 -0
  243. package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
  244. package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  245. package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
  246. package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  247. package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
  248. package/cosmos/store/snapshots/v1/snapshot.js +42 -0
  249. package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
  250. package/cosmos/store/streaming/abci/grpc.js +24 -0
  251. package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
  252. package/cosmos/store/v1beta1/commit_info.js +21 -0
  253. package/cosmos/store/v1beta1/listening.d.ts +45 -10
  254. package/cosmos/store/v1beta1/listening.js +15 -0
  255. package/cosmos/tx/config/v1/config.d.ts +18 -2
  256. package/cosmos/tx/config/v1/config.js +6 -0
  257. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  258. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  259. package/cosmos/tx/v1beta1/service.d.ts +355 -94
  260. package/cosmos/tx/v1beta1/service.js +125 -0
  261. package/cosmos/tx/v1beta1/service.lcd.js +1 -3
  262. package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
  263. package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  264. package/cosmos/tx/v1beta1/tx.d.ts +371 -80
  265. package/cosmos/tx/v1beta1/tx.js +118 -0
  266. package/cosmos/upgrade/module/v1/module.d.ts +24 -4
  267. package/cosmos/upgrade/module/v1/module.js +6 -0
  268. package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
  269. package/cosmos/upgrade/v1beta1/query.js +70 -0
  270. package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  271. package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
  272. package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  273. package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
  274. package/cosmos/upgrade/v1beta1/tx.js +24 -0
  275. package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
  276. package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  277. package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
  278. package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  279. package/cosmos/vesting/module/v1/module.d.ts +18 -2
  280. package/cosmos/vesting/module/v1/module.js +6 -0
  281. package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
  282. package/cosmos/vesting/v1beta1/tx.js +40 -0
  283. package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
  284. package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  285. package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
  286. package/cosmos/vesting/v1beta1/vesting.js +43 -0
  287. package/cosmos_proto/cosmos.d.ts +31 -0
  288. package/cosmos_proto/cosmos.js +19 -0
  289. package/esm/binary.js +1 -1
  290. package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
  291. package/esm/cosmos/app/v1alpha1/module.js +19 -0
  292. package/esm/cosmos/auth/module/v1/module.js +25 -1
  293. package/esm/cosmos/auth/v1beta1/auth.js +26 -0
  294. package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
  295. package/esm/cosmos/auth/v1beta1/query.js +120 -0
  296. package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
  297. package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
  298. package/esm/cosmos/auth/v1beta1/tx.js +13 -0
  299. package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
  300. package/esm/cosmos/authz/module/v1/module.js +6 -0
  301. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  302. package/esm/cosmos/authz/v1beta1/event.js +12 -0
  303. package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
  304. package/esm/cosmos/authz/v1beta1/query.js +36 -0
  305. package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
  306. package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
  307. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  308. package/esm/cosmos/bank/module/v1/module.js +6 -0
  309. package/esm/cosmos/bank/v1beta1/authz.js +7 -0
  310. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  311. package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
  312. package/esm/cosmos/bank/v1beta1/query.js +179 -0
  313. package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
  314. package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
  315. package/esm/cosmos/bank/v1beta1/tx.js +53 -0
  316. package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
  317. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  318. package/esm/cosmos/base/node/v1beta1/query.js +24 -0
  319. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  320. package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
  321. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  322. package/esm/cosmos/benchmark/module/v1/module.js +12 -0
  323. package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
  324. package/esm/cosmos/benchmark/v1/tx.js +12 -0
  325. package/esm/cosmos/bundle.js +242 -261
  326. package/esm/cosmos/circuit/module/v1/module.js +6 -0
  327. package/esm/cosmos/circuit/v1/query.js +36 -0
  328. package/esm/cosmos/circuit/v1/tx.js +36 -0
  329. package/esm/cosmos/circuit/v1/types.js +19 -0
  330. package/esm/cosmos/consensus/module/v1/module.js +6 -0
  331. package/esm/cosmos/consensus/v1/query.js +12 -0
  332. package/esm/cosmos/consensus/v1/tx.js +13 -0
  333. package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
  334. package/esm/cosmos/counter/module/v1/module.js +6 -0
  335. package/esm/cosmos/counter/v1/query.js +12 -0
  336. package/esm/cosmos/counter/v1/tx.js +12 -0
  337. package/esm/cosmos/crisis/module/v1/module.js +6 -0
  338. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  339. package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
  340. package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
  341. package/esm/cosmos/crypto/multisig/keys.js +8 -0
  342. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  343. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  344. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  345. package/esm/cosmos/distribution/module/v1/module.js +6 -0
  346. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  347. package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
  348. package/esm/cosmos/distribution/v1beta1/query.js +136 -0
  349. package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
  350. package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
  351. package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
  352. package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
  353. package/esm/cosmos/epochs/module/v1/module.js +6 -0
  354. package/esm/cosmos/epochs/v1beta1/events.js +12 -0
  355. package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
  356. package/esm/cosmos/epochs/v1beta1/query.js +28 -0
  357. package/esm/cosmos/evidence/module/v1/module.js +6 -0
  358. package/esm/cosmos/feegrant/module/v1/module.js +6 -0
  359. package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
  360. package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
  361. package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
  362. package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
  363. package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
  364. package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
  365. package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
  366. package/esm/cosmos/genutil/module/v1/module.js +6 -0
  367. package/esm/cosmos/gov/module/v1/module.js +6 -0
  368. package/esm/cosmos/gov/v1/genesis.js +6 -0
  369. package/esm/cosmos/gov/v1/gov.js +59 -0
  370. package/esm/cosmos/gov/v1/query.js +109 -0
  371. package/esm/cosmos/gov/v1/tx.js +88 -0
  372. package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
  373. package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
  374. package/esm/cosmos/gov/v1beta1/gov.js +57 -0
  375. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  376. package/esm/cosmos/gov/v1beta1/tx.js +49 -0
  377. package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
  378. package/esm/cosmos/group/module/v1/module.js +6 -0
  379. package/esm/cosmos/group/v1/events.js +66 -0
  380. package/esm/cosmos/group/v1/genesis.js +6 -0
  381. package/esm/cosmos/group/v1/query.js +168 -0
  382. package/esm/cosmos/group/v1/query.lcd.js +1 -3
  383. package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
  384. package/esm/cosmos/group/v1/tx.js +168 -0
  385. package/esm/cosmos/group/v1/types.js +82 -0
  386. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  387. package/esm/cosmos/mint/module/v1/module.js +6 -0
  388. package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
  389. package/esm/cosmos/mint/v1beta1/mint.js +12 -0
  390. package/esm/cosmos/mint/v1beta1/query.js +39 -0
  391. package/esm/cosmos/mint/v1beta1/tx.js +13 -0
  392. package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
  393. package/esm/cosmos/nft/module/v1/module.js +6 -0
  394. package/esm/cosmos/params/module/v1/module.js +6 -0
  395. package/esm/cosmos/params/v1beta1/params.js +13 -0
  396. package/esm/cosmos/params/v1beta1/query.js +33 -0
  397. package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
  398. package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
  399. package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
  400. package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
  401. package/esm/cosmos/protocolpool/v1/query.js +54 -0
  402. package/esm/cosmos/protocolpool/v1/tx.js +67 -0
  403. package/esm/cosmos/protocolpool/v1/types.js +12 -0
  404. package/esm/cosmos/reflection/v1/reflection.js +12 -0
  405. package/esm/cosmos/rpc.query.js +0 -5
  406. package/esm/cosmos/slashing/module/v1/module.js +6 -0
  407. package/esm/cosmos/staking/module/v1/module.js +6 -0
  408. package/esm/cosmos/staking/v1beta1/authz.js +13 -5
  409. package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
  410. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  411. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  412. package/esm/cosmos/staking/v1beta1/tx.js +88 -0
  413. package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
  414. package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
  415. package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
  416. package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
  417. package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
  418. package/esm/cosmos/store/v1beta1/listening.js +15 -0
  419. package/esm/cosmos/tx/config/v1/config.js +6 -0
  420. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  421. package/esm/cosmos/tx/v1beta1/service.js +125 -0
  422. package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
  423. package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
  424. package/esm/cosmos/tx/v1beta1/tx.js +119 -1
  425. package/esm/cosmos/upgrade/module/v1/module.js +6 -0
  426. package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
  427. package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
  428. package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
  429. package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
  430. package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
  431. package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
  432. package/esm/cosmos/vesting/module/v1/module.js +6 -0
  433. package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
  434. package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
  435. package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
  436. package/esm/cosmos_proto/cosmos.js +19 -0
  437. package/esm/gogoproto/bundle.js +2 -2
  438. package/esm/google/api/http.js +283 -0
  439. package/esm/google/bundle.js +7 -7
  440. package/esm/google/protobuf/any.js +90 -0
  441. package/esm/google/protobuf/descriptor.js +220 -0
  442. package/esm/google/protobuf/duration.js +63 -0
  443. package/esm/google/protobuf/timestamp.js +94 -0
  444. package/esm/helpers.js +1 -1
  445. package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  446. package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  447. package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  448. package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  449. package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  450. package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  451. package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  452. package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
  453. package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  454. package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  455. package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  456. package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
  457. package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
  458. package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
  459. package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
  460. package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
  461. package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
  462. package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
  463. package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
  464. package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
  465. package/esm/ibc/applications/transfer/v1/authz.js +13 -0
  466. package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
  467. package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
  468. package/esm/ibc/applications/transfer/v1/packet.js +8 -0
  469. package/esm/ibc/applications/transfer/v1/query.js +78 -0
  470. package/esm/ibc/applications/transfer/v1/token.js +18 -0
  471. package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
  472. package/esm/ibc/applications/transfer/v1/tx.js +40 -1
  473. package/esm/ibc/bundle.js +196 -173
  474. package/esm/ibc/client.js +4 -1
  475. package/esm/ibc/core/channel/v1/channel.js +64 -0
  476. package/esm/ibc/core/channel/v1/genesis.js +13 -0
  477. package/esm/ibc/core/channel/v1/query.js +197 -0
  478. package/esm/ibc/core/channel/v1/tx.js +129 -0
  479. package/esm/ibc/core/channel/v2/genesis.js +21 -0
  480. package/esm/ibc/core/channel/v2/packet.js +29 -0
  481. package/esm/ibc/core/channel/v2/query.js +100 -0
  482. package/esm/ibc/core/channel/v2/tx.js +48 -0
  483. package/esm/ibc/core/client/v1/client.js +45 -0
  484. package/esm/ibc/core/client/v1/genesis.js +20 -0
  485. package/esm/ibc/core/client/v1/query.js +154 -0
  486. package/esm/ibc/core/client/v1/tx.amino.js +1 -6
  487. package/esm/ibc/core/client/v1/tx.js +86 -151
  488. package/esm/ibc/core/client/v1/tx.registry.js +2 -20
  489. package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
  490. package/esm/ibc/core/client/v2/config.js +9 -0
  491. package/esm/ibc/core/client/v2/counterparty.js +6 -0
  492. package/esm/ibc/core/client/v2/genesis.js +12 -0
  493. package/esm/ibc/core/client/v2/query.js +26 -0
  494. package/esm/ibc/core/client/v2/tx.js +24 -0
  495. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  496. package/esm/ibc/core/commitment/v2/commitment.js +36 -0
  497. package/esm/ibc/core/connection/v1/connection.js +47 -0
  498. package/esm/ibc/core/connection/v1/genesis.js +6 -0
  499. package/esm/ibc/core/connection/v1/query.js +83 -0
  500. package/esm/ibc/core/connection/v1/tx.js +66 -0
  501. package/esm/ibc/lcd.js +5 -0
  502. package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  503. package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  504. package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  505. package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
  506. package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
  507. package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
  508. package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
  509. package/esm/ibc/rpc.query.js +3 -5
  510. package/esm/ibc/rpc.tx.js +3 -0
  511. package/esm/index.js +1 -1
  512. package/esm/sparkdream/blog/module/{module.js → v1/module.js} +9 -3
  513. package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
  514. package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
  515. package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
  516. package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
  517. package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
  518. package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
  519. package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
  520. package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
  521. package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
  522. package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
  523. package/esm/sparkdream/bundle.js +68 -48
  524. package/esm/sparkdream/client.js +7 -7
  525. package/esm/sparkdream/lcd.js +10 -6
  526. package/esm/sparkdream/rpc.query.js +6 -7
  527. package/esm/sparkdream/rpc.tx.js +6 -2
  528. package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
  529. package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
  530. package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
  531. package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
  532. package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
  533. package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
  534. package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
  535. package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
  536. package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
  537. package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
  538. package/esm/tendermint/abci/types.js +255 -0
  539. package/esm/tendermint/bundle.js +20 -20
  540. package/esm/tendermint/crypto/keys.js +6 -0
  541. package/esm/tendermint/crypto/proof.js +29 -0
  542. package/esm/tendermint/p2p/types.js +20 -0
  543. package/esm/tendermint/types/block.js +5 -0
  544. package/esm/tendermint/types/evidence.js +22 -0
  545. package/esm/tendermint/types/params.js +46 -0
  546. package/esm/tendermint/types/types.js +87 -0
  547. package/esm/tendermint/types/validator.js +15 -0
  548. package/esm/tendermint/version/types.js +16 -0
  549. package/esm/types.js +1 -1
  550. package/esm/utf8.js +1 -1
  551. package/esm/varint.js +1 -1
  552. package/gogoproto/bundle.js +2 -2
  553. package/google/api/http.d.ts +343 -14
  554. package/google/api/http.js +283 -0
  555. package/google/bundle.d.ts +418 -418
  556. package/google/bundle.js +7 -7
  557. package/google/protobuf/any.d.ts +102 -2
  558. package/google/protobuf/any.js +90 -0
  559. package/google/protobuf/descriptor.d.ts +738 -90
  560. package/google/protobuf/descriptor.js +220 -0
  561. package/google/protobuf/duration.d.ts +69 -0
  562. package/google/protobuf/duration.js +63 -0
  563. package/google/protobuf/timestamp.d.ts +100 -0
  564. package/google/protobuf/timestamp.js +94 -0
  565. package/helpers.d.ts +1 -1
  566. package/helpers.js +1 -1
  567. package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
  568. package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
  569. package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
  570. package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
  571. package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
  572. package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
  573. package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
  574. package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
  575. package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
  576. package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
  577. package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
  578. package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
  579. package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
  580. package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
  581. package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
  582. package/ibc/applications/interchain_accounts/v1/account.js +6 -0
  583. package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
  584. package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
  585. package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
  586. package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
  587. package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
  588. package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
  589. package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
  590. package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
  591. package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
  592. package/ibc/applications/rate_limiting/v1/query.js +906 -0
  593. package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
  594. package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
  595. package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
  596. package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
  597. package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
  598. package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
  599. package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
  600. package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
  601. package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
  602. package/ibc/applications/rate_limiting/v1/tx.js +729 -0
  603. package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
  604. package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
  605. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
  606. package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
  607. package/ibc/applications/transfer/v1/authz.d.ts +61 -12
  608. package/ibc/applications/transfer/v1/authz.js +13 -0
  609. package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
  610. package/ibc/applications/transfer/v1/denomtrace.js +8 -0
  611. package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
  612. package/ibc/applications/transfer/v1/genesis.js +6 -0
  613. package/ibc/applications/transfer/v1/packet.d.ts +44 -10
  614. package/ibc/applications/transfer/v1/packet.js +8 -0
  615. package/ibc/applications/transfer/v1/query.d.ts +252 -34
  616. package/ibc/applications/transfer/v1/query.js +78 -0
  617. package/ibc/applications/transfer/v1/token.d.ts +78 -14
  618. package/ibc/applications/transfer/v1/token.js +18 -0
  619. package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
  620. package/ibc/applications/transfer/v1/transfer.js +9 -0
  621. package/ibc/applications/transfer/v1/tx.d.ts +135 -22
  622. package/ibc/applications/transfer/v1/tx.js +40 -1
  623. package/ibc/bundle.d.ts +3830 -3396
  624. package/ibc/bundle.js +196 -173
  625. package/ibc/client.d.ts +20 -5
  626. package/ibc/client.js +4 -1
  627. package/ibc/core/channel/v1/channel.d.ts +292 -60
  628. package/ibc/core/channel/v1/channel.js +64 -0
  629. package/ibc/core/channel/v1/genesis.d.ts +37 -4
  630. package/ibc/core/channel/v1/genesis.js +13 -0
  631. package/ibc/core/channel/v1/query.d.ts +839 -158
  632. package/ibc/core/channel/v1/query.js +197 -0
  633. package/ibc/core/channel/v1/tx.d.ts +335 -30
  634. package/ibc/core/channel/v1/tx.js +129 -0
  635. package/ibc/core/channel/v2/genesis.d.ts +81 -14
  636. package/ibc/core/channel/v2/genesis.js +21 -0
  637. package/ibc/core/channel/v2/packet.d.ts +137 -28
  638. package/ibc/core/channel/v2/packet.js +29 -0
  639. package/ibc/core/channel/v2/query.d.ts +490 -98
  640. package/ibc/core/channel/v2/query.js +100 -0
  641. package/ibc/core/channel/v2/tx.d.ts +144 -16
  642. package/ibc/core/channel/v2/tx.js +48 -0
  643. package/ibc/core/client/v1/client.d.ts +129 -18
  644. package/ibc/core/client/v1/client.js +45 -0
  645. package/ibc/core/client/v1/genesis.d.ts +82 -16
  646. package/ibc/core/client/v1/genesis.js +20 -0
  647. package/ibc/core/client/v1/query.d.ts +508 -74
  648. package/ibc/core/client/v1/query.js +154 -0
  649. package/ibc/core/client/v1/tx.amino.d.ts +1 -6
  650. package/ibc/core/client/v1/tx.amino.js +0 -5
  651. package/ibc/core/client/v1/tx.d.ts +336 -138
  652. package/ibc/core/client/v1/tx.js +87 -152
  653. package/ibc/core/client/v1/tx.registry.d.ts +1 -13
  654. package/ibc/core/client/v1/tx.registry.js +1 -19
  655. package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
  656. package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
  657. package/ibc/core/client/v2/config.d.ts +21 -2
  658. package/ibc/core/client/v2/config.js +9 -0
  659. package/ibc/core/client/v2/counterparty.d.ts +30 -6
  660. package/ibc/core/client/v2/counterparty.js +6 -0
  661. package/ibc/core/client/v2/genesis.d.ts +54 -10
  662. package/ibc/core/client/v2/genesis.js +12 -0
  663. package/ibc/core/client/v2/query.d.ts +74 -8
  664. package/ibc/core/client/v2/query.js +26 -0
  665. package/ibc/core/client/v2/tx.d.ts +108 -20
  666. package/ibc/core/client/v2/tx.js +24 -0
  667. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  668. package/ibc/core/commitment/v1/commitment.js +25 -0
  669. package/ibc/core/commitment/v2/commitment.d.ts +42 -0
  670. package/ibc/core/commitment/v2/commitment.js +36 -0
  671. package/ibc/core/connection/v1/connection.d.ts +197 -36
  672. package/ibc/core/connection/v1/connection.js +47 -0
  673. package/ibc/core/connection/v1/genesis.d.ts +24 -4
  674. package/ibc/core/connection/v1/genesis.js +6 -0
  675. package/ibc/core/connection/v1/query.d.ts +293 -46
  676. package/ibc/core/connection/v1/query.js +83 -0
  677. package/ibc/core/connection/v1/tx.d.ts +250 -56
  678. package/ibc/core/connection/v1/tx.js +66 -0
  679. package/ibc/lcd.d.ts +3 -0
  680. package/ibc/lcd.js +5 -0
  681. package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
  682. package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
  683. package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
  684. package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
  685. package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
  686. package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
  687. package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
  688. package/ibc/lightclients/wasm/v1/genesis.js +12 -0
  689. package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
  690. package/ibc/lightclients/wasm/v1/query.js +24 -0
  691. package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
  692. package/ibc/lightclients/wasm/v1/tx.js +36 -0
  693. package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
  694. package/ibc/lightclients/wasm/v1/wasm.js +19 -74
  695. package/ibc/rpc.query.d.ts +11 -9
  696. package/ibc/rpc.query.js +3 -5
  697. package/ibc/rpc.tx.d.ts +3 -0
  698. package/ibc/rpc.tx.js +3 -0
  699. package/index.d.ts +1 -1
  700. package/index.js +1 -1
  701. package/package.json +1 -1
  702. package/sparkdream/blog/module/v1/module.d.ts +54 -0
  703. package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
  704. package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
  705. package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
  706. package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
  707. package/sparkdream/blog/{params.js → v1/params.js} +9 -3
  708. package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
  709. package/sparkdream/blog/{post.js → v1/post.js} +9 -3
  710. package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
  711. package/sparkdream/blog/{query.js → v1/query.js} +50 -14
  712. package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
  713. package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
  714. package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
  715. package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
  716. package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
  717. package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
  718. package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
  719. package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
  720. package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
  721. package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
  722. package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
  723. package/sparkdream/bundle.d.ts +461 -419
  724. package/sparkdream/bundle.js +68 -48
  725. package/sparkdream/client.d.ts +15 -15
  726. package/sparkdream/client.js +7 -7
  727. package/sparkdream/lcd.d.ts +6 -2
  728. package/sparkdream/lcd.js +10 -6
  729. package/sparkdream/rpc.query.d.ts +9 -13
  730. package/sparkdream/rpc.query.js +6 -7
  731. package/sparkdream/rpc.tx.d.ts +6 -2
  732. package/sparkdream/rpc.tx.js +6 -2
  733. package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
  734. package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
  735. package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
  736. package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
  737. package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
  738. package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
  739. package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
  740. package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
  741. package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
  742. package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
  743. package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
  744. package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
  745. package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
  746. package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
  747. package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
  748. package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
  749. package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
  750. package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
  751. package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
  752. package/tendermint/abci/types.d.ts +971 -98
  753. package/tendermint/abci/types.js +255 -0
  754. package/tendermint/bundle.d.ts +844 -844
  755. package/tendermint/bundle.js +20 -20
  756. package/tendermint/crypto/keys.d.ts +18 -2
  757. package/tendermint/crypto/keys.js +6 -0
  758. package/tendermint/crypto/proof.d.ts +89 -6
  759. package/tendermint/crypto/proof.js +29 -0
  760. package/tendermint/p2p/types.d.ts +60 -0
  761. package/tendermint/p2p/types.js +20 -0
  762. package/tendermint/types/block.d.ts +15 -0
  763. package/tendermint/types/block.js +5 -0
  764. package/tendermint/types/evidence.d.ts +66 -4
  765. package/tendermint/types/evidence.js +22 -0
  766. package/tendermint/types/params.d.ts +112 -8
  767. package/tendermint/types/params.js +46 -0
  768. package/tendermint/types/types.d.ts +327 -42
  769. package/tendermint/types/types.js +87 -0
  770. package/tendermint/types/validator.d.ts +45 -0
  771. package/tendermint/types/validator.js +15 -0
  772. package/tendermint/version/types.d.ts +28 -0
  773. package/tendermint/version/types.js +16 -0
  774. package/types.d.ts +1 -1
  775. package/types.js +1 -1
  776. package/utf8.d.ts +1 -1
  777. package/utf8.js +1 -1
  778. package/varint.d.ts +1 -1
  779. package/varint.js +1 -1
  780. package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
  781. package/cosmos/orm/module/v1alpha1/module.js +0 -62
  782. package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
  783. package/cosmos/orm/query/v1alpha1/query.js +0 -695
  784. package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
  785. package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
  786. package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
  787. package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
  788. package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
  789. package/sparkdream/blog/genesis.d.ts +0 -33
  790. package/sparkdream/blog/module/module.d.ts +0 -32
  791. package/sparkdream/sparkdream/module/module.d.ts +0 -32
  792. /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
  793. /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
@@ -10,6 +10,13 @@ function createBaseParams() {
10
10
  allowMessages: []
11
11
  };
12
12
  }
13
+ /**
14
+ * Params defines the set of on-chain interchain accounts parameters.
15
+ * The following parameters may be used to disable the host submodule.
16
+ * @name Params
17
+ * @package ibc.applications.interchain_accounts.host.v1
18
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.Params
19
+ */
13
20
  exports.Params = {
14
21
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.Params",
15
22
  aminoType: "cosmos-sdk/Params",
@@ -95,6 +102,13 @@ function createBaseQueryRequest() {
95
102
  data: new Uint8Array()
96
103
  };
97
104
  }
105
+ /**
106
+ * QueryRequest defines the parameters for a particular query request
107
+ * by an interchain account.
108
+ * @name QueryRequest
109
+ * @package ibc.applications.interchain_accounts.host.v1
110
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryRequest
111
+ */
98
112
  exports.QueryRequest = {
99
113
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.QueryRequest",
100
114
  aminoType: "cosmos-sdk/QueryRequest",
@@ -1,38 +1,68 @@
1
1
  import { Params, ParamsAmino } from "./host";
2
2
  import { BinaryReader, BinaryWriter } from "../../../../../binary";
3
3
  import { DeepPartial } from "../../../../../helpers";
4
- /** QueryParamsRequest is the request type for the Query/Params RPC method. */
4
+ /**
5
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
6
+ * @name QueryParamsRequest
7
+ * @package ibc.applications.interchain_accounts.host.v1
8
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsRequest
9
+ */
5
10
  export interface QueryParamsRequest {
6
11
  }
7
12
  export interface QueryParamsRequestProtoMsg {
8
13
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.QueryParamsRequest";
9
14
  value: Uint8Array;
10
15
  }
11
- /** QueryParamsRequest is the request type for the Query/Params RPC method. */
16
+ /**
17
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
18
+ * @name QueryParamsRequestAmino
19
+ * @package ibc.applications.interchain_accounts.host.v1
20
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsRequest
21
+ */
12
22
  export interface QueryParamsRequestAmino {
13
23
  }
14
24
  export interface QueryParamsRequestAminoMsg {
15
25
  type: "cosmos-sdk/QueryParamsRequest";
16
26
  value: QueryParamsRequestAmino;
17
27
  }
18
- /** QueryParamsResponse is the response type for the Query/Params RPC method. */
28
+ /**
29
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
30
+ * @name QueryParamsResponse
31
+ * @package ibc.applications.interchain_accounts.host.v1
32
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsResponse
33
+ */
19
34
  export interface QueryParamsResponse {
20
- /** params defines the parameters of the module. */
35
+ /**
36
+ * params defines the parameters of the module.
37
+ */
21
38
  params?: Params;
22
39
  }
23
40
  export interface QueryParamsResponseProtoMsg {
24
41
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.QueryParamsResponse";
25
42
  value: Uint8Array;
26
43
  }
27
- /** QueryParamsResponse is the response type for the Query/Params RPC method. */
44
+ /**
45
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
46
+ * @name QueryParamsResponseAmino
47
+ * @package ibc.applications.interchain_accounts.host.v1
48
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsResponse
49
+ */
28
50
  export interface QueryParamsResponseAmino {
29
- /** params defines the parameters of the module. */
51
+ /**
52
+ * params defines the parameters of the module.
53
+ */
30
54
  params?: ParamsAmino;
31
55
  }
32
56
  export interface QueryParamsResponseAminoMsg {
33
57
  type: "cosmos-sdk/QueryParamsResponse";
34
58
  value: QueryParamsResponseAmino;
35
59
  }
60
+ /**
61
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
62
+ * @name QueryParamsRequest
63
+ * @package ibc.applications.interchain_accounts.host.v1
64
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsRequest
65
+ */
36
66
  export declare const QueryParamsRequest: {
37
67
  typeUrl: string;
38
68
  aminoType: string;
@@ -47,6 +77,12 @@ export declare const QueryParamsRequest: {
47
77
  toProto(message: QueryParamsRequest): Uint8Array;
48
78
  toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
49
79
  };
80
+ /**
81
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
82
+ * @name QueryParamsResponse
83
+ * @package ibc.applications.interchain_accounts.host.v1
84
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsResponse
85
+ */
50
86
  export declare const QueryParamsResponse: {
51
87
  typeUrl: string;
52
88
  aminoType: string;
@@ -7,6 +7,12 @@ const binary_1 = require("../../../../../binary");
7
7
  function createBaseQueryParamsRequest() {
8
8
  return {};
9
9
  }
10
+ /**
11
+ * QueryParamsRequest is the request type for the Query/Params RPC method.
12
+ * @name QueryParamsRequest
13
+ * @package ibc.applications.interchain_accounts.host.v1
14
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsRequest
15
+ */
10
16
  exports.QueryParamsRequest = {
11
17
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.QueryParamsRequest",
12
18
  aminoType: "cosmos-sdk/QueryParamsRequest",
@@ -66,6 +72,12 @@ function createBaseQueryParamsResponse() {
66
72
  params: undefined
67
73
  };
68
74
  }
75
+ /**
76
+ * QueryParamsResponse is the response type for the Query/Params RPC method.
77
+ * @name QueryParamsResponse
78
+ * @package ibc.applications.interchain_accounts.host.v1
79
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.QueryParamsResponse
80
+ */
69
81
  exports.QueryParamsResponse = {
70
82
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.QueryParamsResponse",
71
83
  aminoType: "cosmos-sdk/QueryParamsResponse",
@@ -1,9 +1,16 @@
1
1
  import { Params, ParamsAmino, QueryRequest, QueryRequestAmino } from "./host";
2
2
  import { BinaryReader, BinaryWriter } from "../../../../../binary";
3
3
  import { DeepPartial } from "../../../../../helpers";
4
- /** MsgUpdateParams defines the payload for Msg/UpdateParams */
4
+ /**
5
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
6
+ * @name MsgUpdateParams
7
+ * @package ibc.applications.interchain_accounts.host.v1
8
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParams
9
+ */
5
10
  export interface MsgUpdateParams {
6
- /** signer address */
11
+ /**
12
+ * signer address
13
+ */
7
14
  signer: string;
8
15
  /**
9
16
  * params defines the 27-interchain-accounts/host parameters to update.
@@ -16,9 +23,16 @@ export interface MsgUpdateParamsProtoMsg {
16
23
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgUpdateParams";
17
24
  value: Uint8Array;
18
25
  }
19
- /** MsgUpdateParams defines the payload for Msg/UpdateParams */
26
+ /**
27
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
28
+ * @name MsgUpdateParamsAmino
29
+ * @package ibc.applications.interchain_accounts.host.v1
30
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParams
31
+ */
20
32
  export interface MsgUpdateParamsAmino {
21
- /** signer address */
33
+ /**
34
+ * signer address
35
+ */
22
36
  signer?: string;
23
37
  /**
24
38
  * params defines the 27-interchain-accounts/host parameters to update.
@@ -31,64 +45,116 @@ export interface MsgUpdateParamsAminoMsg {
31
45
  type: "cosmos-sdk/MsgUpdateParams";
32
46
  value: MsgUpdateParamsAmino;
33
47
  }
34
- /** MsgUpdateParamsResponse defines the response for Msg/UpdateParams */
48
+ /**
49
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
50
+ * @name MsgUpdateParamsResponse
51
+ * @package ibc.applications.interchain_accounts.host.v1
52
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParamsResponse
53
+ */
35
54
  export interface MsgUpdateParamsResponse {
36
55
  }
37
56
  export interface MsgUpdateParamsResponseProtoMsg {
38
57
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgUpdateParamsResponse";
39
58
  value: Uint8Array;
40
59
  }
41
- /** MsgUpdateParamsResponse defines the response for Msg/UpdateParams */
60
+ /**
61
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
62
+ * @name MsgUpdateParamsResponseAmino
63
+ * @package ibc.applications.interchain_accounts.host.v1
64
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParamsResponse
65
+ */
42
66
  export interface MsgUpdateParamsResponseAmino {
43
67
  }
44
68
  export interface MsgUpdateParamsResponseAminoMsg {
45
69
  type: "cosmos-sdk/MsgUpdateParamsResponse";
46
70
  value: MsgUpdateParamsResponseAmino;
47
71
  }
48
- /** MsgModuleQuerySafe defines the payload for Msg/ModuleQuerySafe */
72
+ /**
73
+ * MsgModuleQuerySafe defines the payload for Msg/ModuleQuerySafe
74
+ * @name MsgModuleQuerySafe
75
+ * @package ibc.applications.interchain_accounts.host.v1
76
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafe
77
+ */
49
78
  export interface MsgModuleQuerySafe {
50
- /** signer address */
79
+ /**
80
+ * signer address
81
+ */
51
82
  signer: string;
52
- /** requests defines the module safe queries to execute. */
83
+ /**
84
+ * requests defines the module safe queries to execute.
85
+ */
53
86
  requests: QueryRequest[];
54
87
  }
55
88
  export interface MsgModuleQuerySafeProtoMsg {
56
89
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafe";
57
90
  value: Uint8Array;
58
91
  }
59
- /** MsgModuleQuerySafe defines the payload for Msg/ModuleQuerySafe */
92
+ /**
93
+ * MsgModuleQuerySafe defines the payload for Msg/ModuleQuerySafe
94
+ * @name MsgModuleQuerySafeAmino
95
+ * @package ibc.applications.interchain_accounts.host.v1
96
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafe
97
+ */
60
98
  export interface MsgModuleQuerySafeAmino {
61
- /** signer address */
99
+ /**
100
+ * signer address
101
+ */
62
102
  signer?: string;
63
- /** requests defines the module safe queries to execute. */
103
+ /**
104
+ * requests defines the module safe queries to execute.
105
+ */
64
106
  requests?: QueryRequestAmino[];
65
107
  }
66
108
  export interface MsgModuleQuerySafeAminoMsg {
67
109
  type: "cosmos-sdk/MsgModuleQuerySafe";
68
110
  value: MsgModuleQuerySafeAmino;
69
111
  }
70
- /** MsgModuleQuerySafeResponse defines the response for Msg/ModuleQuerySafe */
112
+ /**
113
+ * MsgModuleQuerySafeResponse defines the response for Msg/ModuleQuerySafe
114
+ * @name MsgModuleQuerySafeResponse
115
+ * @package ibc.applications.interchain_accounts.host.v1
116
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafeResponse
117
+ */
71
118
  export interface MsgModuleQuerySafeResponse {
72
- /** height at which the responses were queried */
119
+ /**
120
+ * height at which the responses were queried
121
+ */
73
122
  height: bigint;
74
- /** protobuf encoded responses for each query */
123
+ /**
124
+ * protobuf encoded responses for each query
125
+ */
75
126
  responses: Uint8Array[];
76
127
  }
77
128
  export interface MsgModuleQuerySafeResponseProtoMsg {
78
129
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafeResponse";
79
130
  value: Uint8Array;
80
131
  }
81
- /** MsgModuleQuerySafeResponse defines the response for Msg/ModuleQuerySafe */
132
+ /**
133
+ * MsgModuleQuerySafeResponse defines the response for Msg/ModuleQuerySafe
134
+ * @name MsgModuleQuerySafeResponseAmino
135
+ * @package ibc.applications.interchain_accounts.host.v1
136
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafeResponse
137
+ */
82
138
  export interface MsgModuleQuerySafeResponseAmino {
83
- /** height at which the responses were queried */
139
+ /**
140
+ * height at which the responses were queried
141
+ */
84
142
  height?: string;
85
- /** protobuf encoded responses for each query */
143
+ /**
144
+ * protobuf encoded responses for each query
145
+ */
86
146
  responses?: string[];
87
147
  }
88
148
  export interface MsgModuleQuerySafeResponseAminoMsg {
89
149
  type: "cosmos-sdk/MsgModuleQuerySafeResponse";
90
150
  value: MsgModuleQuerySafeResponseAmino;
91
151
  }
152
+ /**
153
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
154
+ * @name MsgUpdateParams
155
+ * @package ibc.applications.interchain_accounts.host.v1
156
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParams
157
+ */
92
158
  export declare const MsgUpdateParams: {
93
159
  typeUrl: string;
94
160
  aminoType: string;
@@ -103,6 +169,12 @@ export declare const MsgUpdateParams: {
103
169
  toProto(message: MsgUpdateParams): Uint8Array;
104
170
  toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
105
171
  };
172
+ /**
173
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
174
+ * @name MsgUpdateParamsResponse
175
+ * @package ibc.applications.interchain_accounts.host.v1
176
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParamsResponse
177
+ */
106
178
  export declare const MsgUpdateParamsResponse: {
107
179
  typeUrl: string;
108
180
  aminoType: string;
@@ -117,6 +189,12 @@ export declare const MsgUpdateParamsResponse: {
117
189
  toProto(message: MsgUpdateParamsResponse): Uint8Array;
118
190
  toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
119
191
  };
192
+ /**
193
+ * MsgModuleQuerySafe defines the payload for Msg/ModuleQuerySafe
194
+ * @name MsgModuleQuerySafe
195
+ * @package ibc.applications.interchain_accounts.host.v1
196
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafe
197
+ */
120
198
  export declare const MsgModuleQuerySafe: {
121
199
  typeUrl: string;
122
200
  aminoType: string;
@@ -131,6 +209,12 @@ export declare const MsgModuleQuerySafe: {
131
209
  toProto(message: MsgModuleQuerySafe): Uint8Array;
132
210
  toProtoMsg(message: MsgModuleQuerySafe): MsgModuleQuerySafeProtoMsg;
133
211
  };
212
+ /**
213
+ * MsgModuleQuerySafeResponse defines the response for Msg/ModuleQuerySafe
214
+ * @name MsgModuleQuerySafeResponse
215
+ * @package ibc.applications.interchain_accounts.host.v1
216
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafeResponse
217
+ */
134
218
  export declare const MsgModuleQuerySafeResponse: {
135
219
  typeUrl: string;
136
220
  aminoType: string;
@@ -11,6 +11,12 @@ function createBaseMsgUpdateParams() {
11
11
  params: host_1.Params.fromPartial({})
12
12
  };
13
13
  }
14
+ /**
15
+ * MsgUpdateParams defines the payload for Msg/UpdateParams
16
+ * @name MsgUpdateParams
17
+ * @package ibc.applications.interchain_accounts.host.v1
18
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParams
19
+ */
14
20
  exports.MsgUpdateParams = {
15
21
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgUpdateParams",
16
22
  aminoType: "cosmos-sdk/MsgUpdateParams",
@@ -90,6 +96,12 @@ exports.MsgUpdateParams = {
90
96
  function createBaseMsgUpdateParamsResponse() {
91
97
  return {};
92
98
  }
99
+ /**
100
+ * MsgUpdateParamsResponse defines the response for Msg/UpdateParams
101
+ * @name MsgUpdateParamsResponse
102
+ * @package ibc.applications.interchain_accounts.host.v1
103
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgUpdateParamsResponse
104
+ */
93
105
  exports.MsgUpdateParamsResponse = {
94
106
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgUpdateParamsResponse",
95
107
  aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
@@ -150,6 +162,12 @@ function createBaseMsgModuleQuerySafe() {
150
162
  requests: []
151
163
  };
152
164
  }
165
+ /**
166
+ * MsgModuleQuerySafe defines the payload for Msg/ModuleQuerySafe
167
+ * @name MsgModuleQuerySafe
168
+ * @package ibc.applications.interchain_accounts.host.v1
169
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafe
170
+ */
153
171
  exports.MsgModuleQuerySafe = {
154
172
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafe",
155
173
  aminoType: "cosmos-sdk/MsgModuleQuerySafe",
@@ -235,6 +253,12 @@ function createBaseMsgModuleQuerySafeResponse() {
235
253
  responses: []
236
254
  };
237
255
  }
256
+ /**
257
+ * MsgModuleQuerySafeResponse defines the response for Msg/ModuleQuerySafe
258
+ * @name MsgModuleQuerySafeResponse
259
+ * @package ibc.applications.interchain_accounts.host.v1
260
+ * @see proto type: ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafeResponse
261
+ */
238
262
  exports.MsgModuleQuerySafeResponse = {
239
263
  typeUrl: "/ibc.applications.interchain_accounts.host.v1.MsgModuleQuerySafeResponse",
240
264
  aminoType: "cosmos-sdk/MsgModuleQuerySafeResponse",
@@ -1,7 +1,12 @@
1
1
  import { BaseAccount, BaseAccountAmino } from "../../../../cosmos/auth/v1beta1/auth";
2
2
  import { BinaryReader, BinaryWriter } from "../../../../binary";
3
3
  import { DeepPartial } from "../../../../helpers";
4
- /** An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain */
4
+ /**
5
+ * An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain
6
+ * @name InterchainAccount
7
+ * @package ibc.applications.interchain_accounts.v1
8
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccount
9
+ */
5
10
  export interface InterchainAccount {
6
11
  baseAccount?: BaseAccount;
7
12
  accountOwner: string;
@@ -10,7 +15,12 @@ export interface InterchainAccountProtoMsg {
10
15
  typeUrl: "/ibc.applications.interchain_accounts.v1.InterchainAccount";
11
16
  value: Uint8Array;
12
17
  }
13
- /** An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain */
18
+ /**
19
+ * An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain
20
+ * @name InterchainAccountAmino
21
+ * @package ibc.applications.interchain_accounts.v1
22
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccount
23
+ */
14
24
  export interface InterchainAccountAmino {
15
25
  base_account?: BaseAccountAmino;
16
26
  account_owner?: string;
@@ -19,6 +29,12 @@ export interface InterchainAccountAminoMsg {
19
29
  type: "cosmos-sdk/InterchainAccount";
20
30
  value: InterchainAccountAmino;
21
31
  }
32
+ /**
33
+ * An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain
34
+ * @name InterchainAccount
35
+ * @package ibc.applications.interchain_accounts.v1
36
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccount
37
+ */
22
38
  export declare const InterchainAccount: {
23
39
  typeUrl: string;
24
40
  aminoType: string;
@@ -10,6 +10,12 @@ function createBaseInterchainAccount() {
10
10
  accountOwner: ""
11
11
  };
12
12
  }
13
+ /**
14
+ * An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain
15
+ * @name InterchainAccount
16
+ * @package ibc.applications.interchain_accounts.v1
17
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccount
18
+ */
13
19
  exports.InterchainAccount = {
14
20
  typeUrl: "/ibc.applications.interchain_accounts.v1.InterchainAccount",
15
21
  aminoType: "cosmos-sdk/InterchainAccount",
@@ -3,22 +3,35 @@ import { DeepPartial } from "../../../../helpers";
3
3
  /**
4
4
  * Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring
5
5
  * See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning
6
+ * @name Metadata
7
+ * @package ibc.applications.interchain_accounts.v1
8
+ * @see proto type: ibc.applications.interchain_accounts.v1.Metadata
6
9
  */
7
10
  export interface Metadata {
8
- /** version defines the ICS27 protocol version */
11
+ /**
12
+ * version defines the ICS27 protocol version
13
+ */
9
14
  version: string;
10
- /** controller_connection_id is the connection identifier associated with the controller chain */
15
+ /**
16
+ * controller_connection_id is the connection identifier associated with the controller chain
17
+ */
11
18
  controllerConnectionId: string;
12
- /** host_connection_id is the connection identifier associated with the host chain */
19
+ /**
20
+ * host_connection_id is the connection identifier associated with the host chain
21
+ */
13
22
  hostConnectionId: string;
14
23
  /**
15
24
  * address defines the interchain account address to be fulfilled upon the OnChanOpenTry handshake step
16
25
  * NOTE: the address field is empty on the OnChanOpenInit handshake step
17
26
  */
18
27
  address: string;
19
- /** encoding defines the supported codec format */
28
+ /**
29
+ * encoding defines the supported codec format
30
+ */
20
31
  encoding: string;
21
- /** tx_type defines the type of transactions the interchain account can execute */
32
+ /**
33
+ * tx_type defines the type of transactions the interchain account can execute
34
+ */
22
35
  txType: string;
23
36
  }
24
37
  export interface MetadataProtoMsg {
@@ -28,28 +41,48 @@ export interface MetadataProtoMsg {
28
41
  /**
29
42
  * Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring
30
43
  * See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning
44
+ * @name MetadataAmino
45
+ * @package ibc.applications.interchain_accounts.v1
46
+ * @see proto type: ibc.applications.interchain_accounts.v1.Metadata
31
47
  */
32
48
  export interface MetadataAmino {
33
- /** version defines the ICS27 protocol version */
49
+ /**
50
+ * version defines the ICS27 protocol version
51
+ */
34
52
  version?: string;
35
- /** controller_connection_id is the connection identifier associated with the controller chain */
53
+ /**
54
+ * controller_connection_id is the connection identifier associated with the controller chain
55
+ */
36
56
  controller_connection_id?: string;
37
- /** host_connection_id is the connection identifier associated with the host chain */
57
+ /**
58
+ * host_connection_id is the connection identifier associated with the host chain
59
+ */
38
60
  host_connection_id?: string;
39
61
  /**
40
62
  * address defines the interchain account address to be fulfilled upon the OnChanOpenTry handshake step
41
63
  * NOTE: the address field is empty on the OnChanOpenInit handshake step
42
64
  */
43
65
  address?: string;
44
- /** encoding defines the supported codec format */
66
+ /**
67
+ * encoding defines the supported codec format
68
+ */
45
69
  encoding?: string;
46
- /** tx_type defines the type of transactions the interchain account can execute */
70
+ /**
71
+ * tx_type defines the type of transactions the interchain account can execute
72
+ */
47
73
  tx_type?: string;
48
74
  }
49
75
  export interface MetadataAminoMsg {
50
76
  type: "cosmos-sdk/Metadata";
51
77
  value: MetadataAmino;
52
78
  }
79
+ /**
80
+ * Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring
81
+ * See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning
82
+ * @name Metadata
83
+ * @package ibc.applications.interchain_accounts.v1
84
+ * @see proto type: ibc.applications.interchain_accounts.v1.Metadata
85
+ */
53
86
  export declare const Metadata: {
54
87
  typeUrl: string;
55
88
  aminoType: string;
@@ -13,6 +13,13 @@ function createBaseMetadata() {
13
13
  txType: ""
14
14
  };
15
15
  }
16
+ /**
17
+ * Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring
18
+ * See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning
19
+ * @name Metadata
20
+ * @package ibc.applications.interchain_accounts.v1
21
+ * @see proto type: ibc.applications.interchain_accounts.v1.Metadata
22
+ */
16
23
  exports.Metadata = {
17
24
  typeUrl: "/ibc.applications.interchain_accounts.v1.Metadata",
18
25
  aminoType: "cosmos-sdk/Metadata",
@@ -15,7 +15,12 @@ export declare enum Type {
15
15
  export declare const TypeAmino: typeof Type;
16
16
  export declare function typeFromJSON(object: any): Type;
17
17
  export declare function typeToJSON(object: Type): string;
18
- /** InterchainAccountPacketData is comprised of a raw transaction, type of transaction and optional memo field. */
18
+ /**
19
+ * InterchainAccountPacketData is comprised of a raw transaction, type of transaction and optional memo field.
20
+ * @name InterchainAccountPacketData
21
+ * @package ibc.applications.interchain_accounts.v1
22
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccountPacketData
23
+ */
19
24
  export interface InterchainAccountPacketData {
20
25
  type: Type;
21
26
  data: Uint8Array;
@@ -25,7 +30,12 @@ export interface InterchainAccountPacketDataProtoMsg {
25
30
  typeUrl: "/ibc.applications.interchain_accounts.v1.InterchainAccountPacketData";
26
31
  value: Uint8Array;
27
32
  }
28
- /** InterchainAccountPacketData is comprised of a raw transaction, type of transaction and optional memo field. */
33
+ /**
34
+ * InterchainAccountPacketData is comprised of a raw transaction, type of transaction and optional memo field.
35
+ * @name InterchainAccountPacketDataAmino
36
+ * @package ibc.applications.interchain_accounts.v1
37
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccountPacketData
38
+ */
29
39
  export interface InterchainAccountPacketDataAmino {
30
40
  type?: Type;
31
41
  data?: string;
@@ -35,7 +45,12 @@ export interface InterchainAccountPacketDataAminoMsg {
35
45
  type: "cosmos-sdk/InterchainAccountPacketData";
36
46
  value: InterchainAccountPacketDataAmino;
37
47
  }
38
- /** CosmosTx contains a list of sdk.Msg's. It should be used when sending transactions to an SDK host chain. */
48
+ /**
49
+ * CosmosTx contains a list of sdk.Msg's. It should be used when sending transactions to an SDK host chain.
50
+ * @name CosmosTx
51
+ * @package ibc.applications.interchain_accounts.v1
52
+ * @see proto type: ibc.applications.interchain_accounts.v1.CosmosTx
53
+ */
39
54
  export interface CosmosTx {
40
55
  messages: Any[];
41
56
  }
@@ -43,7 +58,12 @@ export interface CosmosTxProtoMsg {
43
58
  typeUrl: "/ibc.applications.interchain_accounts.v1.CosmosTx";
44
59
  value: Uint8Array;
45
60
  }
46
- /** CosmosTx contains a list of sdk.Msg's. It should be used when sending transactions to an SDK host chain. */
61
+ /**
62
+ * CosmosTx contains a list of sdk.Msg's. It should be used when sending transactions to an SDK host chain.
63
+ * @name CosmosTxAmino
64
+ * @package ibc.applications.interchain_accounts.v1
65
+ * @see proto type: ibc.applications.interchain_accounts.v1.CosmosTx
66
+ */
47
67
  export interface CosmosTxAmino {
48
68
  messages?: AnyAmino[];
49
69
  }
@@ -51,6 +71,12 @@ export interface CosmosTxAminoMsg {
51
71
  type: "cosmos-sdk/CosmosTx";
52
72
  value: CosmosTxAmino;
53
73
  }
74
+ /**
75
+ * InterchainAccountPacketData is comprised of a raw transaction, type of transaction and optional memo field.
76
+ * @name InterchainAccountPacketData
77
+ * @package ibc.applications.interchain_accounts.v1
78
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccountPacketData
79
+ */
54
80
  export declare const InterchainAccountPacketData: {
55
81
  typeUrl: string;
56
82
  aminoType: string;
@@ -65,6 +91,12 @@ export declare const InterchainAccountPacketData: {
65
91
  toProto(message: InterchainAccountPacketData): Uint8Array;
66
92
  toProtoMsg(message: InterchainAccountPacketData): InterchainAccountPacketDataProtoMsg;
67
93
  };
94
+ /**
95
+ * CosmosTx contains a list of sdk.Msg's. It should be used when sending transactions to an SDK host chain.
96
+ * @name CosmosTx
97
+ * @package ibc.applications.interchain_accounts.v1
98
+ * @see proto type: ibc.applications.interchain_accounts.v1.CosmosTx
99
+ */
68
100
  export declare const CosmosTx: {
69
101
  typeUrl: string;
70
102
  aminoType: string;
@@ -52,6 +52,12 @@ function createBaseInterchainAccountPacketData() {
52
52
  memo: ""
53
53
  };
54
54
  }
55
+ /**
56
+ * InterchainAccountPacketData is comprised of a raw transaction, type of transaction and optional memo field.
57
+ * @name InterchainAccountPacketData
58
+ * @package ibc.applications.interchain_accounts.v1
59
+ * @see proto type: ibc.applications.interchain_accounts.v1.InterchainAccountPacketData
60
+ */
55
61
  exports.InterchainAccountPacketData = {
56
62
  typeUrl: "/ibc.applications.interchain_accounts.v1.InterchainAccountPacketData",
57
63
  aminoType: "cosmos-sdk/InterchainAccountPacketData",
@@ -144,6 +150,12 @@ function createBaseCosmosTx() {
144
150
  messages: []
145
151
  };
146
152
  }
153
+ /**
154
+ * CosmosTx contains a list of sdk.Msg's. It should be used when sending transactions to an SDK host chain.
155
+ * @name CosmosTx
156
+ * @package ibc.applications.interchain_accounts.v1
157
+ * @see proto type: ibc.applications.interchain_accounts.v1.CosmosTx
158
+ */
147
159
  exports.CosmosTx = {
148
160
  typeUrl: "/ibc.applications.interchain_accounts.v1.CosmosTx",
149
161
  aminoType: "cosmos-sdk/CosmosTx",