@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
@@ -51,20 +51,23 @@ export declare function broadcastModeToJSON(object: BroadcastMode): string;
51
51
  /**
52
52
  * GetTxsEventRequest is the request type for the Service.TxsByEvents
53
53
  * RPC method.
54
+ * @name GetTxsEventRequest
55
+ * @package cosmos.tx.v1beta1
56
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
54
57
  */
55
58
  export interface GetTxsEventRequest {
56
59
  /**
57
60
  * events is the list of transaction event type.
58
61
  * Deprecated post v0.47.x: use query instead, which should contain a valid
59
62
  * events query.
63
+ * @deprecated
60
64
  */
61
- /** @deprecated */
62
65
  events: string[];
63
66
  /**
64
67
  * pagination defines a pagination for the request.
65
68
  * Deprecated post v0.46.x: use page and limit instead.
69
+ * @deprecated
66
70
  */
67
- /** @deprecated */
68
71
  pagination?: PageRequest;
69
72
  orderBy: OrderBy;
70
73
  /**
@@ -80,8 +83,6 @@ export interface GetTxsEventRequest {
80
83
  /**
81
84
  * query defines the transaction event query that is proxied to Tendermint's
82
85
  * TxSearch RPC method. The query must be valid.
83
- *
84
- * Since cosmos-sdk 0.50
85
86
  */
86
87
  query: string;
87
88
  }
@@ -92,20 +93,23 @@ export interface GetTxsEventRequestProtoMsg {
92
93
  /**
93
94
  * GetTxsEventRequest is the request type for the Service.TxsByEvents
94
95
  * RPC method.
96
+ * @name GetTxsEventRequestAmino
97
+ * @package cosmos.tx.v1beta1
98
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
95
99
  */
96
100
  export interface GetTxsEventRequestAmino {
97
101
  /**
98
102
  * events is the list of transaction event type.
99
103
  * Deprecated post v0.47.x: use query instead, which should contain a valid
100
104
  * events query.
105
+ * @deprecated
101
106
  */
102
- /** @deprecated */
103
107
  events?: string[];
104
108
  /**
105
109
  * pagination defines a pagination for the request.
106
110
  * Deprecated post v0.46.x: use page and limit instead.
111
+ * @deprecated
107
112
  */
108
- /** @deprecated */
109
113
  pagination?: PageRequestAmino;
110
114
  order_by?: OrderBy;
111
115
  /**
@@ -121,8 +125,6 @@ export interface GetTxsEventRequestAmino {
121
125
  /**
122
126
  * query defines the transaction event query that is proxied to Tendermint's
123
127
  * TxSearch RPC method. The query must be valid.
124
- *
125
- * Since cosmos-sdk 0.50
126
128
  */
127
129
  query?: string;
128
130
  }
@@ -133,19 +135,28 @@ export interface GetTxsEventRequestAminoMsg {
133
135
  /**
134
136
  * GetTxsEventResponse is the response type for the Service.TxsByEvents
135
137
  * RPC method.
138
+ * @name GetTxsEventResponse
139
+ * @package cosmos.tx.v1beta1
140
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
136
141
  */
137
142
  export interface GetTxsEventResponse {
138
- /** txs is the list of queried transactions. */
143
+ /**
144
+ * txs is the list of queried transactions.
145
+ */
139
146
  txs: Tx[];
140
- /** tx_responses is the list of queried TxResponses. */
147
+ /**
148
+ * tx_responses is the list of queried TxResponses.
149
+ */
141
150
  txResponses: TxResponse[];
142
151
  /**
143
152
  * pagination defines a pagination for the response.
144
153
  * Deprecated post v0.46.x: use total instead.
154
+ * @deprecated
145
155
  */
146
- /** @deprecated */
147
156
  pagination?: PageResponse;
148
- /** total is total number of results available */
157
+ /**
158
+ * total is total number of results available
159
+ */
149
160
  total: bigint;
150
161
  }
151
162
  export interface GetTxsEventResponseProtoMsg {
@@ -155,19 +166,28 @@ export interface GetTxsEventResponseProtoMsg {
155
166
  /**
156
167
  * GetTxsEventResponse is the response type for the Service.TxsByEvents
157
168
  * RPC method.
169
+ * @name GetTxsEventResponseAmino
170
+ * @package cosmos.tx.v1beta1
171
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
158
172
  */
159
173
  export interface GetTxsEventResponseAmino {
160
- /** txs is the list of queried transactions. */
174
+ /**
175
+ * txs is the list of queried transactions.
176
+ */
161
177
  txs?: TxAmino[];
162
- /** tx_responses is the list of queried TxResponses. */
178
+ /**
179
+ * tx_responses is the list of queried TxResponses.
180
+ */
163
181
  tx_responses?: TxResponseAmino[];
164
182
  /**
165
183
  * pagination defines a pagination for the response.
166
184
  * Deprecated post v0.46.x: use total instead.
185
+ * @deprecated
167
186
  */
168
- /** @deprecated */
169
187
  pagination?: PageResponseAmino;
170
- /** total is total number of results available */
188
+ /**
189
+ * total is total number of results available
190
+ */
171
191
  total?: string;
172
192
  }
173
193
  export interface GetTxsEventResponseAminoMsg {
@@ -177,9 +197,14 @@ export interface GetTxsEventResponseAminoMsg {
177
197
  /**
178
198
  * BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
179
199
  * RPC method.
200
+ * @name BroadcastTxRequest
201
+ * @package cosmos.tx.v1beta1
202
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
180
203
  */
181
204
  export interface BroadcastTxRequest {
182
- /** tx_bytes is the raw transaction. */
205
+ /**
206
+ * tx_bytes is the raw transaction.
207
+ */
183
208
  txBytes: Uint8Array;
184
209
  mode: BroadcastMode;
185
210
  }
@@ -190,9 +215,14 @@ export interface BroadcastTxRequestProtoMsg {
190
215
  /**
191
216
  * BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
192
217
  * RPC method.
218
+ * @name BroadcastTxRequestAmino
219
+ * @package cosmos.tx.v1beta1
220
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
193
221
  */
194
222
  export interface BroadcastTxRequestAmino {
195
- /** tx_bytes is the raw transaction. */
223
+ /**
224
+ * tx_bytes is the raw transaction.
225
+ */
196
226
  tx_bytes?: string;
197
227
  mode?: BroadcastMode;
198
228
  }
@@ -203,9 +233,14 @@ export interface BroadcastTxRequestAminoMsg {
203
233
  /**
204
234
  * BroadcastTxResponse is the response type for the
205
235
  * Service.BroadcastTx method.
236
+ * @name BroadcastTxResponse
237
+ * @package cosmos.tx.v1beta1
238
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
206
239
  */
207
240
  export interface BroadcastTxResponse {
208
- /** tx_response is the queried TxResponses. */
241
+ /**
242
+ * tx_response is the queried TxResponses.
243
+ */
209
244
  txResponse?: TxResponse;
210
245
  }
211
246
  export interface BroadcastTxResponseProtoMsg {
@@ -215,9 +250,14 @@ export interface BroadcastTxResponseProtoMsg {
215
250
  /**
216
251
  * BroadcastTxResponse is the response type for the
217
252
  * Service.BroadcastTx method.
253
+ * @name BroadcastTxResponseAmino
254
+ * @package cosmos.tx.v1beta1
255
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
218
256
  */
219
257
  export interface BroadcastTxResponseAmino {
220
- /** tx_response is the queried TxResponses. */
258
+ /**
259
+ * tx_response is the queried TxResponses.
260
+ */
221
261
  tx_response?: TxResponseAmino;
222
262
  }
223
263
  export interface BroadcastTxResponseAminoMsg {
@@ -227,18 +267,19 @@ export interface BroadcastTxResponseAminoMsg {
227
267
  /**
228
268
  * SimulateRequest is the request type for the Service.Simulate
229
269
  * RPC method.
270
+ * @name SimulateRequest
271
+ * @package cosmos.tx.v1beta1
272
+ * @see proto type: cosmos.tx.v1beta1.SimulateRequest
230
273
  */
231
274
  export interface SimulateRequest {
232
275
  /**
233
276
  * tx is the transaction to simulate.
234
277
  * Deprecated. Send raw tx bytes instead.
278
+ * @deprecated
235
279
  */
236
- /** @deprecated */
237
280
  tx?: Tx;
238
281
  /**
239
282
  * tx_bytes is the raw transaction.
240
- *
241
- * Since: cosmos-sdk 0.43
242
283
  */
243
284
  txBytes: Uint8Array;
244
285
  }
@@ -249,18 +290,19 @@ export interface SimulateRequestProtoMsg {
249
290
  /**
250
291
  * SimulateRequest is the request type for the Service.Simulate
251
292
  * RPC method.
293
+ * @name SimulateRequestAmino
294
+ * @package cosmos.tx.v1beta1
295
+ * @see proto type: cosmos.tx.v1beta1.SimulateRequest
252
296
  */
253
297
  export interface SimulateRequestAmino {
254
298
  /**
255
299
  * tx is the transaction to simulate.
256
300
  * Deprecated. Send raw tx bytes instead.
301
+ * @deprecated
257
302
  */
258
- /** @deprecated */
259
303
  tx?: TxAmino;
260
304
  /**
261
305
  * tx_bytes is the raw transaction.
262
- *
263
- * Since: cosmos-sdk 0.43
264
306
  */
265
307
  tx_bytes?: string;
266
308
  }
@@ -271,11 +313,18 @@ export interface SimulateRequestAminoMsg {
271
313
  /**
272
314
  * SimulateResponse is the response type for the
273
315
  * Service.SimulateRPC method.
316
+ * @name SimulateResponse
317
+ * @package cosmos.tx.v1beta1
318
+ * @see proto type: cosmos.tx.v1beta1.SimulateResponse
274
319
  */
275
320
  export interface SimulateResponse {
276
- /** gas_info is the information about gas used in the simulation. */
321
+ /**
322
+ * gas_info is the information about gas used in the simulation.
323
+ */
277
324
  gasInfo?: GasInfo;
278
- /** result is the result of the simulation. */
325
+ /**
326
+ * result is the result of the simulation.
327
+ */
279
328
  result?: Result;
280
329
  }
281
330
  export interface SimulateResponseProtoMsg {
@@ -285,11 +334,18 @@ export interface SimulateResponseProtoMsg {
285
334
  /**
286
335
  * SimulateResponse is the response type for the
287
336
  * Service.SimulateRPC method.
337
+ * @name SimulateResponseAmino
338
+ * @package cosmos.tx.v1beta1
339
+ * @see proto type: cosmos.tx.v1beta1.SimulateResponse
288
340
  */
289
341
  export interface SimulateResponseAmino {
290
- /** gas_info is the information about gas used in the simulation. */
342
+ /**
343
+ * gas_info is the information about gas used in the simulation.
344
+ */
291
345
  gas_info?: GasInfoAmino;
292
- /** result is the result of the simulation. */
346
+ /**
347
+ * result is the result of the simulation.
348
+ */
293
349
  result?: ResultAmino;
294
350
  }
295
351
  export interface SimulateResponseAminoMsg {
@@ -299,9 +355,14 @@ export interface SimulateResponseAminoMsg {
299
355
  /**
300
356
  * GetTxRequest is the request type for the Service.GetTx
301
357
  * RPC method.
358
+ * @name GetTxRequest
359
+ * @package cosmos.tx.v1beta1
360
+ * @see proto type: cosmos.tx.v1beta1.GetTxRequest
302
361
  */
303
362
  export interface GetTxRequest {
304
- /** hash is the tx hash to query, encoded as a hex string. */
363
+ /**
364
+ * hash is the tx hash to query, encoded as a hex string.
365
+ */
305
366
  hash: string;
306
367
  }
307
368
  export interface GetTxRequestProtoMsg {
@@ -311,31 +372,54 @@ export interface GetTxRequestProtoMsg {
311
372
  /**
312
373
  * GetTxRequest is the request type for the Service.GetTx
313
374
  * RPC method.
375
+ * @name GetTxRequestAmino
376
+ * @package cosmos.tx.v1beta1
377
+ * @see proto type: cosmos.tx.v1beta1.GetTxRequest
314
378
  */
315
379
  export interface GetTxRequestAmino {
316
- /** hash is the tx hash to query, encoded as a hex string. */
380
+ /**
381
+ * hash is the tx hash to query, encoded as a hex string.
382
+ */
317
383
  hash?: string;
318
384
  }
319
385
  export interface GetTxRequestAminoMsg {
320
386
  type: "cosmos-sdk/GetTxRequest";
321
387
  value: GetTxRequestAmino;
322
388
  }
323
- /** GetTxResponse is the response type for the Service.GetTx method. */
389
+ /**
390
+ * GetTxResponse is the response type for the Service.GetTx method.
391
+ * @name GetTxResponse
392
+ * @package cosmos.tx.v1beta1
393
+ * @see proto type: cosmos.tx.v1beta1.GetTxResponse
394
+ */
324
395
  export interface GetTxResponse {
325
- /** tx is the queried transaction. */
396
+ /**
397
+ * tx is the queried transaction.
398
+ */
326
399
  tx?: Tx;
327
- /** tx_response is the queried TxResponses. */
400
+ /**
401
+ * tx_response is the queried TxResponses.
402
+ */
328
403
  txResponse?: TxResponse;
329
404
  }
330
405
  export interface GetTxResponseProtoMsg {
331
406
  typeUrl: "/cosmos.tx.v1beta1.GetTxResponse";
332
407
  value: Uint8Array;
333
408
  }
334
- /** GetTxResponse is the response type for the Service.GetTx method. */
409
+ /**
410
+ * GetTxResponse is the response type for the Service.GetTx method.
411
+ * @name GetTxResponseAmino
412
+ * @package cosmos.tx.v1beta1
413
+ * @see proto type: cosmos.tx.v1beta1.GetTxResponse
414
+ */
335
415
  export interface GetTxResponseAmino {
336
- /** tx is the queried transaction. */
416
+ /**
417
+ * tx is the queried transaction.
418
+ */
337
419
  tx?: TxAmino;
338
- /** tx_response is the queried TxResponses. */
420
+ /**
421
+ * tx_response is the queried TxResponses.
422
+ */
339
423
  tx_response?: TxResponseAmino;
340
424
  }
341
425
  export interface GetTxResponseAminoMsg {
@@ -345,13 +429,18 @@ export interface GetTxResponseAminoMsg {
345
429
  /**
346
430
  * GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
347
431
  * RPC method.
348
- *
349
- * Since: cosmos-sdk 0.45.2
432
+ * @name GetBlockWithTxsRequest
433
+ * @package cosmos.tx.v1beta1
434
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
350
435
  */
351
436
  export interface GetBlockWithTxsRequest {
352
- /** height is the height of the block to query. */
437
+ /**
438
+ * height is the height of the block to query.
439
+ */
353
440
  height: bigint;
354
- /** pagination defines a pagination for the request. */
441
+ /**
442
+ * pagination defines a pagination for the request.
443
+ */
355
444
  pagination?: PageRequest;
356
445
  }
357
446
  export interface GetBlockWithTxsRequestProtoMsg {
@@ -361,13 +450,18 @@ export interface GetBlockWithTxsRequestProtoMsg {
361
450
  /**
362
451
  * GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
363
452
  * RPC method.
364
- *
365
- * Since: cosmos-sdk 0.45.2
453
+ * @name GetBlockWithTxsRequestAmino
454
+ * @package cosmos.tx.v1beta1
455
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
366
456
  */
367
457
  export interface GetBlockWithTxsRequestAmino {
368
- /** height is the height of the block to query. */
458
+ /**
459
+ * height is the height of the block to query.
460
+ */
369
461
  height?: string;
370
- /** pagination defines a pagination for the request. */
462
+ /**
463
+ * pagination defines a pagination for the request.
464
+ */
371
465
  pagination?: PageRequestAmino;
372
466
  }
373
467
  export interface GetBlockWithTxsRequestAminoMsg {
@@ -377,15 +471,20 @@ export interface GetBlockWithTxsRequestAminoMsg {
377
471
  /**
378
472
  * GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
379
473
  * method.
380
- *
381
- * Since: cosmos-sdk 0.45.2
474
+ * @name GetBlockWithTxsResponse
475
+ * @package cosmos.tx.v1beta1
476
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
382
477
  */
383
478
  export interface GetBlockWithTxsResponse {
384
- /** txs are the transactions in the block. */
479
+ /**
480
+ * txs are the transactions in the block.
481
+ */
385
482
  txs: Tx[];
386
483
  blockId?: BlockID;
387
484
  block?: Block;
388
- /** pagination defines a pagination for the response. */
485
+ /**
486
+ * pagination defines a pagination for the response.
487
+ */
389
488
  pagination?: PageResponse;
390
489
  }
391
490
  export interface GetBlockWithTxsResponseProtoMsg {
@@ -395,15 +494,20 @@ export interface GetBlockWithTxsResponseProtoMsg {
395
494
  /**
396
495
  * GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
397
496
  * method.
398
- *
399
- * Since: cosmos-sdk 0.45.2
497
+ * @name GetBlockWithTxsResponseAmino
498
+ * @package cosmos.tx.v1beta1
499
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
400
500
  */
401
501
  export interface GetBlockWithTxsResponseAmino {
402
- /** txs are the transactions in the block. */
502
+ /**
503
+ * txs are the transactions in the block.
504
+ */
403
505
  txs?: TxAmino[];
404
506
  block_id?: BlockIDAmino;
405
507
  block?: BlockAmino;
406
- /** pagination defines a pagination for the response. */
508
+ /**
509
+ * pagination defines a pagination for the response.
510
+ */
407
511
  pagination?: PageResponseAmino;
408
512
  }
409
513
  export interface GetBlockWithTxsResponseAminoMsg {
@@ -413,11 +517,14 @@ export interface GetBlockWithTxsResponseAminoMsg {
413
517
  /**
414
518
  * TxDecodeRequest is the request type for the Service.TxDecode
415
519
  * RPC method.
416
- *
417
- * Since: cosmos-sdk 0.47
520
+ * @name TxDecodeRequest
521
+ * @package cosmos.tx.v1beta1
522
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
418
523
  */
419
524
  export interface TxDecodeRequest {
420
- /** tx_bytes is the raw transaction. */
525
+ /**
526
+ * tx_bytes is the raw transaction.
527
+ */
421
528
  txBytes: Uint8Array;
422
529
  }
423
530
  export interface TxDecodeRequestProtoMsg {
@@ -427,11 +534,14 @@ export interface TxDecodeRequestProtoMsg {
427
534
  /**
428
535
  * TxDecodeRequest is the request type for the Service.TxDecode
429
536
  * RPC method.
430
- *
431
- * Since: cosmos-sdk 0.47
537
+ * @name TxDecodeRequestAmino
538
+ * @package cosmos.tx.v1beta1
539
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
432
540
  */
433
541
  export interface TxDecodeRequestAmino {
434
- /** tx_bytes is the raw transaction. */
542
+ /**
543
+ * tx_bytes is the raw transaction.
544
+ */
435
545
  tx_bytes?: string;
436
546
  }
437
547
  export interface TxDecodeRequestAminoMsg {
@@ -441,11 +551,14 @@ export interface TxDecodeRequestAminoMsg {
441
551
  /**
442
552
  * TxDecodeResponse is the response type for the
443
553
  * Service.TxDecode method.
444
- *
445
- * Since: cosmos-sdk 0.47
554
+ * @name TxDecodeResponse
555
+ * @package cosmos.tx.v1beta1
556
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
446
557
  */
447
558
  export interface TxDecodeResponse {
448
- /** tx is the decoded transaction. */
559
+ /**
560
+ * tx is the decoded transaction.
561
+ */
449
562
  tx?: Tx;
450
563
  }
451
564
  export interface TxDecodeResponseProtoMsg {
@@ -455,11 +568,14 @@ export interface TxDecodeResponseProtoMsg {
455
568
  /**
456
569
  * TxDecodeResponse is the response type for the
457
570
  * Service.TxDecode method.
458
- *
459
- * Since: cosmos-sdk 0.47
571
+ * @name TxDecodeResponseAmino
572
+ * @package cosmos.tx.v1beta1
573
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
460
574
  */
461
575
  export interface TxDecodeResponseAmino {
462
- /** tx is the decoded transaction. */
576
+ /**
577
+ * tx is the decoded transaction.
578
+ */
463
579
  tx?: TxAmino;
464
580
  }
465
581
  export interface TxDecodeResponseAminoMsg {
@@ -469,11 +585,14 @@ export interface TxDecodeResponseAminoMsg {
469
585
  /**
470
586
  * TxEncodeRequest is the request type for the Service.TxEncode
471
587
  * RPC method.
472
- *
473
- * Since: cosmos-sdk 0.47
588
+ * @name TxEncodeRequest
589
+ * @package cosmos.tx.v1beta1
590
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
474
591
  */
475
592
  export interface TxEncodeRequest {
476
- /** tx is the transaction to encode. */
593
+ /**
594
+ * tx is the transaction to encode.
595
+ */
477
596
  tx?: Tx;
478
597
  }
479
598
  export interface TxEncodeRequestProtoMsg {
@@ -483,11 +602,14 @@ export interface TxEncodeRequestProtoMsg {
483
602
  /**
484
603
  * TxEncodeRequest is the request type for the Service.TxEncode
485
604
  * RPC method.
486
- *
487
- * Since: cosmos-sdk 0.47
605
+ * @name TxEncodeRequestAmino
606
+ * @package cosmos.tx.v1beta1
607
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
488
608
  */
489
609
  export interface TxEncodeRequestAmino {
490
- /** tx is the transaction to encode. */
610
+ /**
611
+ * tx is the transaction to encode.
612
+ */
491
613
  tx?: TxAmino;
492
614
  }
493
615
  export interface TxEncodeRequestAminoMsg {
@@ -497,11 +619,14 @@ export interface TxEncodeRequestAminoMsg {
497
619
  /**
498
620
  * TxEncodeResponse is the response type for the
499
621
  * Service.TxEncode method.
500
- *
501
- * Since: cosmos-sdk 0.47
622
+ * @name TxEncodeResponse
623
+ * @package cosmos.tx.v1beta1
624
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
502
625
  */
503
626
  export interface TxEncodeResponse {
504
- /** tx_bytes is the encoded transaction bytes. */
627
+ /**
628
+ * tx_bytes is the encoded transaction bytes.
629
+ */
505
630
  txBytes: Uint8Array;
506
631
  }
507
632
  export interface TxEncodeResponseProtoMsg {
@@ -511,11 +636,14 @@ export interface TxEncodeResponseProtoMsg {
511
636
  /**
512
637
  * TxEncodeResponse is the response type for the
513
638
  * Service.TxEncode method.
514
- *
515
- * Since: cosmos-sdk 0.47
639
+ * @name TxEncodeResponseAmino
640
+ * @package cosmos.tx.v1beta1
641
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
516
642
  */
517
643
  export interface TxEncodeResponseAmino {
518
- /** tx_bytes is the encoded transaction bytes. */
644
+ /**
645
+ * tx_bytes is the encoded transaction bytes.
646
+ */
519
647
  tx_bytes?: string;
520
648
  }
521
649
  export interface TxEncodeResponseAminoMsg {
@@ -525,8 +653,9 @@ export interface TxEncodeResponseAminoMsg {
525
653
  /**
526
654
  * TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
527
655
  * RPC method.
528
- *
529
- * Since: cosmos-sdk 0.47
656
+ * @name TxEncodeAminoRequest
657
+ * @package cosmos.tx.v1beta1
658
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
530
659
  */
531
660
  export interface TxEncodeAminoRequest {
532
661
  aminoJson: string;
@@ -538,8 +667,9 @@ export interface TxEncodeAminoRequestProtoMsg {
538
667
  /**
539
668
  * TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
540
669
  * RPC method.
541
- *
542
- * Since: cosmos-sdk 0.47
670
+ * @name TxEncodeAminoRequestAmino
671
+ * @package cosmos.tx.v1beta1
672
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
543
673
  */
544
674
  export interface TxEncodeAminoRequestAmino {
545
675
  amino_json?: string;
@@ -551,8 +681,9 @@ export interface TxEncodeAminoRequestAminoMsg {
551
681
  /**
552
682
  * TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
553
683
  * RPC method.
554
- *
555
- * Since: cosmos-sdk 0.47
684
+ * @name TxEncodeAminoResponse
685
+ * @package cosmos.tx.v1beta1
686
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
556
687
  */
557
688
  export interface TxEncodeAminoResponse {
558
689
  aminoBinary: Uint8Array;
@@ -564,8 +695,9 @@ export interface TxEncodeAminoResponseProtoMsg {
564
695
  /**
565
696
  * TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
566
697
  * RPC method.
567
- *
568
- * Since: cosmos-sdk 0.47
698
+ * @name TxEncodeAminoResponseAmino
699
+ * @package cosmos.tx.v1beta1
700
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
569
701
  */
570
702
  export interface TxEncodeAminoResponseAmino {
571
703
  amino_binary?: string;
@@ -577,8 +709,9 @@ export interface TxEncodeAminoResponseAminoMsg {
577
709
  /**
578
710
  * TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
579
711
  * RPC method.
580
- *
581
- * Since: cosmos-sdk 0.47
712
+ * @name TxDecodeAminoRequest
713
+ * @package cosmos.tx.v1beta1
714
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
582
715
  */
583
716
  export interface TxDecodeAminoRequest {
584
717
  aminoBinary: Uint8Array;
@@ -590,8 +723,9 @@ export interface TxDecodeAminoRequestProtoMsg {
590
723
  /**
591
724
  * TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
592
725
  * RPC method.
593
- *
594
- * Since: cosmos-sdk 0.47
726
+ * @name TxDecodeAminoRequestAmino
727
+ * @package cosmos.tx.v1beta1
728
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
595
729
  */
596
730
  export interface TxDecodeAminoRequestAmino {
597
731
  amino_binary?: string;
@@ -603,8 +737,9 @@ export interface TxDecodeAminoRequestAminoMsg {
603
737
  /**
604
738
  * TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
605
739
  * RPC method.
606
- *
607
- * Since: cosmos-sdk 0.47
740
+ * @name TxDecodeAminoResponse
741
+ * @package cosmos.tx.v1beta1
742
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
608
743
  */
609
744
  export interface TxDecodeAminoResponse {
610
745
  aminoJson: string;
@@ -616,8 +751,9 @@ export interface TxDecodeAminoResponseProtoMsg {
616
751
  /**
617
752
  * TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
618
753
  * RPC method.
619
- *
620
- * Since: cosmos-sdk 0.47
754
+ * @name TxDecodeAminoResponseAmino
755
+ * @package cosmos.tx.v1beta1
756
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
621
757
  */
622
758
  export interface TxDecodeAminoResponseAmino {
623
759
  amino_json?: string;
@@ -626,6 +762,13 @@ export interface TxDecodeAminoResponseAminoMsg {
626
762
  type: "cosmos-sdk/TxDecodeAminoResponse";
627
763
  value: TxDecodeAminoResponseAmino;
628
764
  }
765
+ /**
766
+ * GetTxsEventRequest is the request type for the Service.TxsByEvents
767
+ * RPC method.
768
+ * @name GetTxsEventRequest
769
+ * @package cosmos.tx.v1beta1
770
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
771
+ */
629
772
  export declare const GetTxsEventRequest: {
630
773
  typeUrl: string;
631
774
  aminoType: string;
@@ -640,6 +783,13 @@ export declare const GetTxsEventRequest: {
640
783
  toProto(message: GetTxsEventRequest): Uint8Array;
641
784
  toProtoMsg(message: GetTxsEventRequest): GetTxsEventRequestProtoMsg;
642
785
  };
786
+ /**
787
+ * GetTxsEventResponse is the response type for the Service.TxsByEvents
788
+ * RPC method.
789
+ * @name GetTxsEventResponse
790
+ * @package cosmos.tx.v1beta1
791
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
792
+ */
643
793
  export declare const GetTxsEventResponse: {
644
794
  typeUrl: string;
645
795
  aminoType: string;
@@ -654,6 +804,13 @@ export declare const GetTxsEventResponse: {
654
804
  toProto(message: GetTxsEventResponse): Uint8Array;
655
805
  toProtoMsg(message: GetTxsEventResponse): GetTxsEventResponseProtoMsg;
656
806
  };
807
+ /**
808
+ * BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
809
+ * RPC method.
810
+ * @name BroadcastTxRequest
811
+ * @package cosmos.tx.v1beta1
812
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
813
+ */
657
814
  export declare const BroadcastTxRequest: {
658
815
  typeUrl: string;
659
816
  aminoType: string;
@@ -668,6 +825,13 @@ export declare const BroadcastTxRequest: {
668
825
  toProto(message: BroadcastTxRequest): Uint8Array;
669
826
  toProtoMsg(message: BroadcastTxRequest): BroadcastTxRequestProtoMsg;
670
827
  };
828
+ /**
829
+ * BroadcastTxResponse is the response type for the
830
+ * Service.BroadcastTx method.
831
+ * @name BroadcastTxResponse
832
+ * @package cosmos.tx.v1beta1
833
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
834
+ */
671
835
  export declare const BroadcastTxResponse: {
672
836
  typeUrl: string;
673
837
  aminoType: string;
@@ -682,6 +846,13 @@ export declare const BroadcastTxResponse: {
682
846
  toProto(message: BroadcastTxResponse): Uint8Array;
683
847
  toProtoMsg(message: BroadcastTxResponse): BroadcastTxResponseProtoMsg;
684
848
  };
849
+ /**
850
+ * SimulateRequest is the request type for the Service.Simulate
851
+ * RPC method.
852
+ * @name SimulateRequest
853
+ * @package cosmos.tx.v1beta1
854
+ * @see proto type: cosmos.tx.v1beta1.SimulateRequest
855
+ */
685
856
  export declare const SimulateRequest: {
686
857
  typeUrl: string;
687
858
  aminoType: string;
@@ -696,6 +867,13 @@ export declare const SimulateRequest: {
696
867
  toProto(message: SimulateRequest): Uint8Array;
697
868
  toProtoMsg(message: SimulateRequest): SimulateRequestProtoMsg;
698
869
  };
870
+ /**
871
+ * SimulateResponse is the response type for the
872
+ * Service.SimulateRPC method.
873
+ * @name SimulateResponse
874
+ * @package cosmos.tx.v1beta1
875
+ * @see proto type: cosmos.tx.v1beta1.SimulateResponse
876
+ */
699
877
  export declare const SimulateResponse: {
700
878
  typeUrl: string;
701
879
  aminoType: string;
@@ -710,6 +888,13 @@ export declare const SimulateResponse: {
710
888
  toProto(message: SimulateResponse): Uint8Array;
711
889
  toProtoMsg(message: SimulateResponse): SimulateResponseProtoMsg;
712
890
  };
891
+ /**
892
+ * GetTxRequest is the request type for the Service.GetTx
893
+ * RPC method.
894
+ * @name GetTxRequest
895
+ * @package cosmos.tx.v1beta1
896
+ * @see proto type: cosmos.tx.v1beta1.GetTxRequest
897
+ */
713
898
  export declare const GetTxRequest: {
714
899
  typeUrl: string;
715
900
  aminoType: string;
@@ -724,6 +909,12 @@ export declare const GetTxRequest: {
724
909
  toProto(message: GetTxRequest): Uint8Array;
725
910
  toProtoMsg(message: GetTxRequest): GetTxRequestProtoMsg;
726
911
  };
912
+ /**
913
+ * GetTxResponse is the response type for the Service.GetTx method.
914
+ * @name GetTxResponse
915
+ * @package cosmos.tx.v1beta1
916
+ * @see proto type: cosmos.tx.v1beta1.GetTxResponse
917
+ */
727
918
  export declare const GetTxResponse: {
728
919
  typeUrl: string;
729
920
  aminoType: string;
@@ -738,6 +929,13 @@ export declare const GetTxResponse: {
738
929
  toProto(message: GetTxResponse): Uint8Array;
739
930
  toProtoMsg(message: GetTxResponse): GetTxResponseProtoMsg;
740
931
  };
932
+ /**
933
+ * GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
934
+ * RPC method.
935
+ * @name GetBlockWithTxsRequest
936
+ * @package cosmos.tx.v1beta1
937
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
938
+ */
741
939
  export declare const GetBlockWithTxsRequest: {
742
940
  typeUrl: string;
743
941
  aminoType: string;
@@ -752,6 +950,13 @@ export declare const GetBlockWithTxsRequest: {
752
950
  toProto(message: GetBlockWithTxsRequest): Uint8Array;
753
951
  toProtoMsg(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestProtoMsg;
754
952
  };
953
+ /**
954
+ * GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
955
+ * method.
956
+ * @name GetBlockWithTxsResponse
957
+ * @package cosmos.tx.v1beta1
958
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
959
+ */
755
960
  export declare const GetBlockWithTxsResponse: {
756
961
  typeUrl: string;
757
962
  aminoType: string;
@@ -766,6 +971,13 @@ export declare const GetBlockWithTxsResponse: {
766
971
  toProto(message: GetBlockWithTxsResponse): Uint8Array;
767
972
  toProtoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseProtoMsg;
768
973
  };
974
+ /**
975
+ * TxDecodeRequest is the request type for the Service.TxDecode
976
+ * RPC method.
977
+ * @name TxDecodeRequest
978
+ * @package cosmos.tx.v1beta1
979
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
980
+ */
769
981
  export declare const TxDecodeRequest: {
770
982
  typeUrl: string;
771
983
  aminoType: string;
@@ -780,6 +992,13 @@ export declare const TxDecodeRequest: {
780
992
  toProto(message: TxDecodeRequest): Uint8Array;
781
993
  toProtoMsg(message: TxDecodeRequest): TxDecodeRequestProtoMsg;
782
994
  };
995
+ /**
996
+ * TxDecodeResponse is the response type for the
997
+ * Service.TxDecode method.
998
+ * @name TxDecodeResponse
999
+ * @package cosmos.tx.v1beta1
1000
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
1001
+ */
783
1002
  export declare const TxDecodeResponse: {
784
1003
  typeUrl: string;
785
1004
  aminoType: string;
@@ -794,6 +1013,13 @@ export declare const TxDecodeResponse: {
794
1013
  toProto(message: TxDecodeResponse): Uint8Array;
795
1014
  toProtoMsg(message: TxDecodeResponse): TxDecodeResponseProtoMsg;
796
1015
  };
1016
+ /**
1017
+ * TxEncodeRequest is the request type for the Service.TxEncode
1018
+ * RPC method.
1019
+ * @name TxEncodeRequest
1020
+ * @package cosmos.tx.v1beta1
1021
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
1022
+ */
797
1023
  export declare const TxEncodeRequest: {
798
1024
  typeUrl: string;
799
1025
  aminoType: string;
@@ -808,6 +1034,13 @@ export declare const TxEncodeRequest: {
808
1034
  toProto(message: TxEncodeRequest): Uint8Array;
809
1035
  toProtoMsg(message: TxEncodeRequest): TxEncodeRequestProtoMsg;
810
1036
  };
1037
+ /**
1038
+ * TxEncodeResponse is the response type for the
1039
+ * Service.TxEncode method.
1040
+ * @name TxEncodeResponse
1041
+ * @package cosmos.tx.v1beta1
1042
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
1043
+ */
811
1044
  export declare const TxEncodeResponse: {
812
1045
  typeUrl: string;
813
1046
  aminoType: string;
@@ -822,6 +1055,13 @@ export declare const TxEncodeResponse: {
822
1055
  toProto(message: TxEncodeResponse): Uint8Array;
823
1056
  toProtoMsg(message: TxEncodeResponse): TxEncodeResponseProtoMsg;
824
1057
  };
1058
+ /**
1059
+ * TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
1060
+ * RPC method.
1061
+ * @name TxEncodeAminoRequest
1062
+ * @package cosmos.tx.v1beta1
1063
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
1064
+ */
825
1065
  export declare const TxEncodeAminoRequest: {
826
1066
  typeUrl: string;
827
1067
  aminoType: string;
@@ -836,6 +1076,13 @@ export declare const TxEncodeAminoRequest: {
836
1076
  toProto(message: TxEncodeAminoRequest): Uint8Array;
837
1077
  toProtoMsg(message: TxEncodeAminoRequest): TxEncodeAminoRequestProtoMsg;
838
1078
  };
1079
+ /**
1080
+ * TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
1081
+ * RPC method.
1082
+ * @name TxEncodeAminoResponse
1083
+ * @package cosmos.tx.v1beta1
1084
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
1085
+ */
839
1086
  export declare const TxEncodeAminoResponse: {
840
1087
  typeUrl: string;
841
1088
  aminoType: string;
@@ -850,6 +1097,13 @@ export declare const TxEncodeAminoResponse: {
850
1097
  toProto(message: TxEncodeAminoResponse): Uint8Array;
851
1098
  toProtoMsg(message: TxEncodeAminoResponse): TxEncodeAminoResponseProtoMsg;
852
1099
  };
1100
+ /**
1101
+ * TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
1102
+ * RPC method.
1103
+ * @name TxDecodeAminoRequest
1104
+ * @package cosmos.tx.v1beta1
1105
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
1106
+ */
853
1107
  export declare const TxDecodeAminoRequest: {
854
1108
  typeUrl: string;
855
1109
  aminoType: string;
@@ -864,6 +1118,13 @@ export declare const TxDecodeAminoRequest: {
864
1118
  toProto(message: TxDecodeAminoRequest): Uint8Array;
865
1119
  toProtoMsg(message: TxDecodeAminoRequest): TxDecodeAminoRequestProtoMsg;
866
1120
  };
1121
+ /**
1122
+ * TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
1123
+ * RPC method.
1124
+ * @name TxDecodeAminoResponse
1125
+ * @package cosmos.tx.v1beta1
1126
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
1127
+ */
867
1128
  export declare const TxDecodeAminoResponse: {
868
1129
  typeUrl: string;
869
1130
  aminoType: string;