injectivejs 1.11.13 → 1.11.15

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 (520) hide show
  1. package/binary.d.ts +1 -1
  2. package/binary.js +1 -1
  3. package/cosmos/auth/v1beta1/auth.d.ts +70 -6
  4. package/cosmos/auth/v1beta1/auth.js +28 -0
  5. package/cosmos/auth/v1beta1/query.d.ts +362 -32
  6. package/cosmos/auth/v1beta1/query.js +148 -0
  7. package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
  8. package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  9. package/cosmos/authz/v1beta1/authz.d.ts +69 -6
  10. package/cosmos/authz/v1beta1/authz.js +27 -0
  11. package/cosmos/authz/v1beta1/tx.d.ts +94 -6
  12. package/cosmos/authz/v1beta1/tx.js +40 -0
  13. package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
  14. package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  15. package/cosmos/bank/v1beta1/bank.d.ts +136 -18
  16. package/cosmos/bank/v1beta1/bank.js +48 -0
  17. package/cosmos/bank/v1beta1/query.d.ts +619 -86
  18. package/cosmos/bank/v1beta1/query.js +199 -0
  19. package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
  20. package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  21. package/cosmos/bank/v1beta1/tx.d.ts +151 -14
  22. package/cosmos/bank/v1beta1/tx.js +61 -0
  23. package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
  24. package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  25. package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
  26. package/cosmos/base/abci/v1beta1/abci.js +73 -0
  27. package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
  28. package/cosmos/base/query/v1beta1/pagination.js +24 -0
  29. package/cosmos/base/v1beta1/coin.d.ts +56 -0
  30. package/cosmos/base/v1beta1/coin.js +32 -0
  31. package/cosmos/bundle.d.ts +8 -8
  32. package/cosmos/bundle.js +15 -15
  33. package/cosmos/crypto/ed25519/keys.d.ts +29 -0
  34. package/cosmos/crypto/ed25519/keys.js +17 -0
  35. package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
  36. package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  37. package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
  38. package/cosmos/crypto/secp256k1/keys.js +16 -0
  39. package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
  40. package/cosmos/crypto/secp256r1/keys.js +12 -0
  41. package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
  42. package/cosmos/distribution/v1beta1/distribution.js +105 -0
  43. package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
  44. package/cosmos/distribution/v1beta1/tx.js +109 -0
  45. package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
  46. package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  47. package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
  48. package/cosmos/feegrant/v1beta1/tx.js +41 -0
  49. package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
  50. package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  51. package/cosmos/gov/v1/gov.d.ts +343 -80
  52. package/cosmos/gov/v1/gov.js +61 -0
  53. package/cosmos/gov/v1/tx.d.ts +376 -65
  54. package/cosmos/gov/v1/tx.js +96 -0
  55. package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
  56. package/cosmos/gov/v1/tx.rpc.func.js +48 -13
  57. package/cosmos/gov/v1beta1/gov.d.ts +293 -61
  58. package/cosmos/gov/v1beta1/gov.js +59 -0
  59. package/cosmos/gov/v1beta1/query.d.ts +439 -82
  60. package/cosmos/gov/v1beta1/query.js +97 -0
  61. package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
  62. package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  63. package/cosmos/gov/v1beta1/tx.d.ts +213 -37
  64. package/cosmos/gov/v1beta1/tx.js +53 -0
  65. package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
  66. package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  67. package/cosmos/group/v1/tx.d.ts +804 -155
  68. package/cosmos/group/v1/tx.js +168 -0
  69. package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
  70. package/cosmos/group/v1/tx.rpc.func.js +84 -14
  71. package/cosmos/group/v1/types.d.ts +398 -83
  72. package/cosmos/group/v1/types.js +82 -0
  73. package/cosmos/ics23/v1/proofs.d.ts +294 -22
  74. package/cosmos/ics23/v1/proofs.js +138 -0
  75. package/cosmos/staking/v1beta1/query.d.ts +660 -102
  76. package/cosmos/staking/v1beta1/query.js +186 -0
  77. package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
  78. package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  79. package/cosmos/staking/v1beta1/staking.d.ts +631 -117
  80. package/cosmos/staking/v1beta1/staking.js +153 -0
  81. package/cosmos/staking/v1beta1/tx.d.ts +242 -22
  82. package/cosmos/staking/v1beta1/tx.js +96 -0
  83. package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
  84. package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  85. package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
  86. package/cosmos/tx/signing/v1beta1/signing.js +33 -0
  87. package/cosmos/tx/v1beta1/service.d.ts +375 -46
  88. package/cosmos/tx/v1beta1/service.js +145 -0
  89. package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
  90. package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  91. package/cosmos/tx/v1beta1/tx.d.ts +303 -46
  92. package/cosmos/tx/v1beta1/tx.js +99 -0
  93. package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
  94. package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  95. package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
  96. package/cosmos/vesting/v1beta1/tx.js +48 -0
  97. package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
  98. package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  99. package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
  100. package/cosmos/vesting/v1beta1/vesting.js +45 -0
  101. package/cosmos_proto/cosmos.d.ts +31 -0
  102. package/cosmos_proto/cosmos.js +19 -0
  103. package/cosmwasm/bundle.d.ts +2 -2
  104. package/cosmwasm/bundle.js +3 -3
  105. package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
  106. package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  107. package/cosmwasm/wasm/v1/query.d.ts +615 -82
  108. package/cosmwasm/wasm/v1/query.js +195 -0
  109. package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
  110. package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  111. package/cosmwasm/wasm/v1/tx.d.ts +956 -170
  112. package/cosmwasm/wasm/v1/tx.js +242 -0
  113. package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
  114. package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  115. package/cosmwasm/wasm/v1/types.d.ts +217 -40
  116. package/cosmwasm/wasm/v1/types.js +49 -0
  117. package/esm/binary.js +1 -1
  118. package/esm/cosmos/auth/v1beta1/auth.js +28 -0
  119. package/esm/cosmos/auth/v1beta1/query.js +148 -0
  120. package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
  121. package/esm/cosmos/authz/v1beta1/authz.js +27 -0
  122. package/esm/cosmos/authz/v1beta1/tx.js +40 -0
  123. package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
  124. package/esm/cosmos/bank/v1beta1/bank.js +48 -0
  125. package/esm/cosmos/bank/v1beta1/query.js +199 -0
  126. package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
  127. package/esm/cosmos/bank/v1beta1/tx.js +61 -0
  128. package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
  129. package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
  130. package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
  131. package/esm/cosmos/base/v1beta1/coin.js +32 -0
  132. package/esm/cosmos/bundle.js +8 -8
  133. package/esm/cosmos/crypto/ed25519/keys.js +17 -0
  134. package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
  135. package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
  136. package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
  137. package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
  138. package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
  139. package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
  140. package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
  141. package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
  142. package/esm/cosmos/gov/v1/gov.js +61 -0
  143. package/esm/cosmos/gov/v1/tx.js +96 -0
  144. package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
  145. package/esm/cosmos/gov/v1beta1/gov.js +59 -0
  146. package/esm/cosmos/gov/v1beta1/query.js +97 -0
  147. package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
  148. package/esm/cosmos/gov/v1beta1/tx.js +53 -0
  149. package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
  150. package/esm/cosmos/group/v1/tx.js +168 -0
  151. package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
  152. package/esm/cosmos/group/v1/types.js +82 -0
  153. package/esm/cosmos/ics23/v1/proofs.js +138 -0
  154. package/esm/cosmos/staking/v1beta1/query.js +186 -0
  155. package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
  156. package/esm/cosmos/staking/v1beta1/staking.js +153 -0
  157. package/esm/cosmos/staking/v1beta1/tx.js +96 -0
  158. package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
  159. package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
  160. package/esm/cosmos/tx/v1beta1/service.js +145 -0
  161. package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
  162. package/esm/cosmos/tx/v1beta1/tx.js +99 -0
  163. package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
  164. package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
  165. package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
  166. package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
  167. package/esm/cosmos_proto/cosmos.js +19 -0
  168. package/esm/cosmwasm/bundle.js +2 -2
  169. package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
  170. package/esm/cosmwasm/wasm/v1/query.js +195 -0
  171. package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
  172. package/esm/cosmwasm/wasm/v1/tx.js +242 -0
  173. package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
  174. package/esm/cosmwasm/wasm/v1/types.js +49 -0
  175. package/esm/extern.js +1 -1
  176. package/esm/google/api/http.js +283 -0
  177. package/esm/google/protobuf/any.js +90 -0
  178. package/esm/google/protobuf/descriptor.js +215 -0
  179. package/esm/google/protobuf/duration.js +63 -0
  180. package/esm/google/protobuf/timestamp.js +94 -0
  181. package/esm/helper-func-types.js +1 -1
  182. package/esm/helpers.js +1 -1
  183. package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
  184. package/esm/ibc/applications/transfer/v1/tx.js +27 -0
  185. package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  186. package/esm/ibc/bundle.js +1 -1
  187. package/esm/ibc/core/channel/v1/channel.js +70 -0
  188. package/esm/ibc/core/channel/v1/tx.js +242 -0
  189. package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  190. package/esm/ibc/core/channel/v1/upgrade.js +25 -0
  191. package/esm/ibc/core/client/v1/client.js +45 -0
  192. package/esm/ibc/core/client/v1/tx.js +90 -0
  193. package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
  194. package/esm/ibc/core/commitment/v1/commitment.js +25 -0
  195. package/esm/ibc/core/connection/v1/connection.js +47 -0
  196. package/esm/ibc/core/connection/v1/tx.js +66 -0
  197. package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  198. package/esm/index.js +1 -1
  199. package/esm/injective/auction/v1beta1/auction.js +30 -0
  200. package/esm/injective/auction/v1beta1/genesis.js +6 -0
  201. package/esm/injective/auction/v1beta1/query.js +52 -0
  202. package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
  203. package/esm/injective/auction/v1beta1/tx.js +21 -0
  204. package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  205. package/esm/injective/bundle.js +14 -14
  206. package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  207. package/esm/injective/exchange/v1beta1/authz.js +58 -0
  208. package/esm/injective/exchange/v1beta1/events.js +180 -0
  209. package/esm/injective/exchange/v1beta1/exchange.js +263 -0
  210. package/esm/injective/exchange/v1beta1/genesis.js +89 -0
  211. package/esm/injective/exchange/v1beta1/proposal.js +113 -0
  212. package/esm/injective/exchange/v1beta1/query.js +864 -0
  213. package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  214. package/esm/injective/exchange/v1beta1/tx.js +487 -0
  215. package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  216. package/esm/injective/insurance/v1beta1/events.js +25 -0
  217. package/esm/injective/insurance/v1beta1/genesis.js +6 -0
  218. package/esm/injective/insurance/v1beta1/insurance.js +15 -0
  219. package/esm/injective/insurance/v1beta1/query.js +84 -0
  220. package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  221. package/esm/injective/insurance/v1beta1/tx.js +46 -0
  222. package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  223. package/esm/injective/ocr/v1beta1/genesis.js +41 -0
  224. package/esm/injective/ocr/v1beta1/ocr.js +108 -0
  225. package/esm/injective/ocr/v1beta1/query.js +70 -0
  226. package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  227. package/esm/injective/ocr/v1beta1/tx.js +90 -0
  228. package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  229. package/esm/injective/oracle/v1beta1/events.js +56 -0
  230. package/esm/injective/oracle/v1beta1/genesis.js +11 -0
  231. package/esm/injective/oracle/v1beta1/oracle.js +122 -0
  232. package/esm/injective/oracle/v1beta1/proposal.js +55 -0
  233. package/esm/injective/oracle/v1beta1/query.js +240 -0
  234. package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  235. package/esm/injective/oracle/v1beta1/tx.js +93 -0
  236. package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  237. package/esm/injective/peggy/v1/attestation.js +31 -0
  238. package/esm/injective/peggy/v1/batch.js +12 -0
  239. package/esm/injective/peggy/v1/events.js +85 -0
  240. package/esm/injective/peggy/v1/genesis.js +6 -0
  241. package/esm/injective/peggy/v1/msgs.js +223 -0
  242. package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
  243. package/esm/injective/peggy/v1/params.js +5 -0
  244. package/esm/injective/peggy/v1/pool.js +11 -0
  245. package/esm/injective/peggy/v1/proposal.js +10 -0
  246. package/esm/injective/peggy/v1/query.js +214 -0
  247. package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
  248. package/esm/injective/peggy/v1/types.js +37 -0
  249. package/esm/injective/permissions/v1beta1/events.js +5 -0
  250. package/esm/injective/permissions/v1beta1/genesis.js +6 -0
  251. package/esm/injective/permissions/v1beta1/params.js +6 -0
  252. package/esm/injective/permissions/v1beta1/permissions.js +33 -0
  253. package/esm/injective/permissions/v1beta1/query.js +74 -0
  254. package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  255. package/esm/injective/permissions/v1beta1/tx.js +90 -0
  256. package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  257. package/esm/injective/stream/v1beta1/query.js +110 -0
  258. package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  259. package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
  260. package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
  261. package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
  262. package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
  263. package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  264. package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
  265. package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  266. package/esm/injective/types/v1beta1/account.js +7 -0
  267. package/esm/injective/types/v1beta1/tx_ext.js +5 -0
  268. package/esm/injective/types/v1beta1/tx_response.js +13 -0
  269. package/esm/injective/wasmx/v1/events.js +15 -0
  270. package/esm/injective/wasmx/v1/genesis.js +11 -0
  271. package/esm/injective/wasmx/v1/proposal.js +25 -0
  272. package/esm/injective/wasmx/v1/query.js +39 -0
  273. package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
  274. package/esm/injective/wasmx/v1/tx.js +63 -0
  275. package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
  276. package/esm/injective/wasmx/v1/wasmx.js +10 -0
  277. package/esm/registry.js +1 -1
  278. package/esm/tendermint/abci/types.js +255 -0
  279. package/esm/tendermint/crypto/keys.js +6 -0
  280. package/esm/tendermint/crypto/proof.js +29 -0
  281. package/esm/tendermint/types/block.js +5 -0
  282. package/esm/tendermint/types/evidence.js +22 -0
  283. package/esm/tendermint/types/params.js +46 -0
  284. package/esm/tendermint/types/types.js +87 -0
  285. package/esm/tendermint/types/validator.js +15 -0
  286. package/esm/tendermint/version/types.js +16 -0
  287. package/esm/types.js +1 -1
  288. package/esm/utf8.js +1 -1
  289. package/esm/varint.js +1 -1
  290. package/extern.d.ts +1 -1
  291. package/extern.js +1 -1
  292. package/google/api/http.d.ts +343 -14
  293. package/google/api/http.js +283 -0
  294. package/google/protobuf/any.d.ts +102 -2
  295. package/google/protobuf/any.js +90 -0
  296. package/google/protobuf/descriptor.d.ts +715 -86
  297. package/google/protobuf/descriptor.js +215 -0
  298. package/google/protobuf/duration.d.ts +69 -0
  299. package/google/protobuf/duration.js +63 -0
  300. package/google/protobuf/timestamp.d.ts +100 -0
  301. package/google/protobuf/timestamp.js +94 -0
  302. package/helper-func-types.d.ts +1 -1
  303. package/helper-func-types.js +1 -1
  304. package/helpers.d.ts +1 -1
  305. package/helpers.js +1 -1
  306. package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
  307. package/ibc/applications/transfer/v1/transfer.js +24 -0
  308. package/ibc/applications/transfer/v1/tx.d.ts +125 -26
  309. package/ibc/applications/transfer/v1/tx.js +27 -0
  310. package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
  311. package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
  312. package/ibc/bundle.d.ts +1 -1
  313. package/ibc/bundle.js +2 -2
  314. package/ibc/core/channel/v1/channel.d.ts +316 -64
  315. package/ibc/core/channel/v1/channel.js +70 -0
  316. package/ibc/core/channel/v1/tx.d.ts +676 -70
  317. package/ibc/core/channel/v1/tx.js +242 -0
  318. package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
  319. package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
  320. package/ibc/core/channel/v1/upgrade.d.ts +55 -4
  321. package/ibc/core/channel/v1/upgrade.js +25 -0
  322. package/ibc/core/client/v1/client.d.ts +129 -18
  323. package/ibc/core/client/v1/client.js +45 -0
  324. package/ibc/core/client/v1/tx.d.ts +338 -56
  325. package/ibc/core/client/v1/tx.js +90 -0
  326. package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
  327. package/ibc/core/client/v1/tx.rpc.func.js +42 -7
  328. package/ibc/core/commitment/v1/commitment.d.ts +43 -0
  329. package/ibc/core/commitment/v1/commitment.js +25 -0
  330. package/ibc/core/connection/v1/connection.d.ts +197 -36
  331. package/ibc/core/connection/v1/connection.js +47 -0
  332. package/ibc/core/connection/v1/tx.d.ts +250 -56
  333. package/ibc/core/connection/v1/tx.js +66 -0
  334. package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
  335. package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
  336. package/index.d.ts +1 -1
  337. package/index.js +1 -1
  338. package/injective/auction/v1beta1/auction.d.ts +168 -26
  339. package/injective/auction/v1beta1/auction.js +30 -0
  340. package/injective/auction/v1beta1/genesis.d.ts +48 -12
  341. package/injective/auction/v1beta1/genesis.js +6 -0
  342. package/injective/auction/v1beta1/query.d.ts +138 -10
  343. package/injective/auction/v1beta1/query.js +52 -0
  344. package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
  345. package/injective/auction/v1beta1/query.rpc.func.js +23 -3
  346. package/injective/auction/v1beta1/tx.d.ts +81 -8
  347. package/injective/auction/v1beta1/tx.js +21 -0
  348. package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
  349. package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
  350. package/injective/bundle.d.ts +14 -14
  351. package/injective/bundle.js +18 -18
  352. package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
  353. package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
  354. package/injective/exchange/v1beta1/authz.d.ts +174 -6
  355. package/injective/exchange/v1beta1/authz.js +58 -0
  356. package/injective/exchange/v1beta1/events.d.ts +546 -2
  357. package/injective/exchange/v1beta1/events.js +180 -0
  358. package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
  359. package/injective/exchange/v1beta1/exchange.js +263 -0
  360. package/injective/exchange/v1beta1/genesis.d.ts +357 -38
  361. package/injective/exchange/v1beta1/genesis.js +89 -0
  362. package/injective/exchange/v1beta1/proposal.d.ts +589 -94
  363. package/injective/exchange/v1beta1/proposal.js +113 -0
  364. package/injective/exchange/v1beta1/query.d.ts +2162 -136
  365. package/injective/exchange/v1beta1/query.js +864 -0
  366. package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
  367. package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
  368. package/injective/exchange/v1beta1/tx.d.ts +1503 -170
  369. package/injective/exchange/v1beta1/tx.js +487 -0
  370. package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
  371. package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
  372. package/injective/insurance/v1beta1/events.d.ts +111 -12
  373. package/injective/insurance/v1beta1/events.js +25 -0
  374. package/injective/insurance/v1beta1/genesis.d.ts +30 -6
  375. package/injective/insurance/v1beta1/genesis.js +6 -0
  376. package/injective/insurance/v1beta1/insurance.d.ts +117 -24
  377. package/injective/insurance/v1beta1/insurance.js +15 -0
  378. package/injective/insurance/v1beta1/query.d.ts +162 -2
  379. package/injective/insurance/v1beta1/query.js +84 -0
  380. package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
  381. package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
  382. package/injective/insurance/v1beta1/tx.d.ts +186 -24
  383. package/injective/insurance/v1beta1/tx.js +46 -0
  384. package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
  385. package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
  386. package/injective/ocr/v1beta1/genesis.d.ts +171 -18
  387. package/injective/ocr/v1beta1/genesis.js +41 -0
  388. package/injective/ocr/v1beta1/ocr.d.ts +514 -68
  389. package/injective/ocr/v1beta1/ocr.js +108 -0
  390. package/injective/ocr/v1beta1/query.d.ts +210 -0
  391. package/injective/ocr/v1beta1/query.js +70 -0
  392. package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
  393. package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
  394. package/injective/ocr/v1beta1/tx.d.ts +360 -30
  395. package/injective/ocr/v1beta1/tx.js +90 -0
  396. package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
  397. package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
  398. package/injective/oracle/v1beta1/events.d.ts +174 -4
  399. package/injective/oracle/v1beta1/events.js +56 -0
  400. package/injective/oracle/v1beta1/genesis.d.ts +39 -4
  401. package/injective/oracle/v1beta1/genesis.js +11 -0
  402. package/injective/oracle/v1beta1/oracle.d.ts +514 -52
  403. package/injective/oracle/v1beta1/oracle.js +122 -0
  404. package/injective/oracle/v1beta1/proposal.d.ts +165 -0
  405. package/injective/oracle/v1beta1/proposal.js +55 -0
  406. package/injective/oracle/v1beta1/query.d.ts +502 -0
  407. package/injective/oracle/v1beta1/query.js +240 -0
  408. package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
  409. package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
  410. package/injective/oracle/v1beta1/tx.d.ts +251 -10
  411. package/injective/oracle/v1beta1/tx.js +93 -0
  412. package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
  413. package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
  414. package/injective/peggy/v1/attestation.d.ts +43 -0
  415. package/injective/peggy/v1/attestation.js +31 -0
  416. package/injective/peggy/v1/batch.d.ts +36 -4
  417. package/injective/peggy/v1/batch.js +12 -0
  418. package/injective/peggy/v1/events.d.ts +255 -0
  419. package/injective/peggy/v1/events.js +85 -0
  420. package/injective/peggy/v1/genesis.d.ts +18 -2
  421. package/injective/peggy/v1/genesis.js +6 -0
  422. package/injective/peggy/v1/msgs.d.ts +473 -10
  423. package/injective/peggy/v1/msgs.js +223 -0
  424. package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
  425. package/injective/peggy/v1/msgs.rpc.func.js +73 -3
  426. package/injective/peggy/v1/params.d.ts +15 -0
  427. package/injective/peggy/v1/params.js +5 -0
  428. package/injective/peggy/v1/pool.d.ts +33 -2
  429. package/injective/peggy/v1/pool.js +11 -0
  430. package/injective/peggy/v1/proposal.d.ts +30 -0
  431. package/injective/peggy/v1/proposal.js +10 -0
  432. package/injective/peggy/v1/query.d.ts +626 -0
  433. package/injective/peggy/v1/query.js +214 -0
  434. package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
  435. package/injective/peggy/v1/query.rpc.func.js +110 -5
  436. package/injective/peggy/v1/types.d.ts +85 -6
  437. package/injective/peggy/v1/types.js +37 -0
  438. package/injective/permissions/v1beta1/events.d.ts +15 -0
  439. package/injective/permissions/v1beta1/events.js +5 -0
  440. package/injective/permissions/v1beta1/genesis.d.ts +24 -4
  441. package/injective/permissions/v1beta1/genesis.js +6 -0
  442. package/injective/permissions/v1beta1/params.d.ts +18 -2
  443. package/injective/permissions/v1beta1/params.js +6 -0
  444. package/injective/permissions/v1beta1/permissions.d.ts +117 -12
  445. package/injective/permissions/v1beta1/permissions.js +33 -0
  446. package/injective/permissions/v1beta1/query.d.ts +180 -6
  447. package/injective/permissions/v1beta1/query.js +74 -0
  448. package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
  449. package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
  450. package/injective/permissions/v1beta1/tx.d.ts +318 -16
  451. package/injective/permissions/v1beta1/tx.js +90 -0
  452. package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
  453. package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
  454. package/injective/stream/v1beta1/query.d.ts +336 -2
  455. package/injective/stream/v1beta1/query.js +110 -0
  456. package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
  457. package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
  458. package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
  459. package/injective/tokenfactory/v1beta1/events.js +25 -0
  460. package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
  461. package/injective/tokenfactory/v1beta1/genesis.js +14 -0
  462. package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
  463. package/injective/tokenfactory/v1beta1/params.js +6 -0
  464. package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
  465. package/injective/tokenfactory/v1beta1/query.js +54 -0
  466. package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
  467. package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
  468. package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
  469. package/injective/tokenfactory/v1beta1/tx.js +83 -0
  470. package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
  471. package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
  472. package/injective/types/v1beta1/account.d.ts +13 -0
  473. package/injective/types/v1beta1/account.js +7 -0
  474. package/injective/types/v1beta1/tx_ext.d.ts +15 -0
  475. package/injective/types/v1beta1/tx_ext.js +5 -0
  476. package/injective/types/v1beta1/tx_response.d.ts +31 -2
  477. package/injective/types/v1beta1/tx_response.js +13 -0
  478. package/injective/wasmx/v1/events.d.ts +45 -0
  479. package/injective/wasmx/v1/events.js +15 -0
  480. package/injective/wasmx/v1/genesis.d.ts +39 -4
  481. package/injective/wasmx/v1/genesis.js +11 -0
  482. package/injective/wasmx/v1/proposal.d.ts +99 -8
  483. package/injective/wasmx/v1/proposal.js +25 -0
  484. package/injective/wasmx/v1/query.d.ts +85 -2
  485. package/injective/wasmx/v1/query.js +39 -0
  486. package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
  487. package/injective/wasmx/v1/query.rpc.func.js +18 -3
  488. package/injective/wasmx/v1/tx.d.ts +253 -26
  489. package/injective/wasmx/v1/tx.js +63 -0
  490. package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
  491. package/injective/wasmx/v1/tx.rpc.func.js +30 -0
  492. package/injective/wasmx/v1/wasmx.d.ts +60 -10
  493. package/injective/wasmx/v1/wasmx.js +10 -0
  494. package/package.json +9 -9
  495. package/registry.d.ts +1 -1
  496. package/registry.js +1 -1
  497. package/tendermint/abci/types.d.ts +971 -98
  498. package/tendermint/abci/types.js +255 -0
  499. package/tendermint/crypto/keys.d.ts +18 -2
  500. package/tendermint/crypto/keys.js +6 -0
  501. package/tendermint/crypto/proof.d.ts +89 -6
  502. package/tendermint/crypto/proof.js +29 -0
  503. package/tendermint/types/block.d.ts +15 -0
  504. package/tendermint/types/block.js +5 -0
  505. package/tendermint/types/evidence.d.ts +66 -4
  506. package/tendermint/types/evidence.js +22 -0
  507. package/tendermint/types/params.d.ts +112 -8
  508. package/tendermint/types/params.js +46 -0
  509. package/tendermint/types/types.d.ts +327 -42
  510. package/tendermint/types/types.js +87 -0
  511. package/tendermint/types/validator.d.ts +45 -0
  512. package/tendermint/types/validator.js +15 -0
  513. package/tendermint/version/types.d.ts +28 -0
  514. package/tendermint/version/types.js +16 -0
  515. package/types.d.ts +1 -1
  516. package/types.js +1 -1
  517. package/utf8.d.ts +1 -1
  518. package/utf8.js +1 -1
  519. package/varint.d.ts +1 -1
  520. package/varint.js +1 -1
@@ -129,6 +129,13 @@ function createBaseGetTxsEventRequest() {
129
129
  query: ""
130
130
  };
131
131
  }
132
+ /**
133
+ * GetTxsEventRequest is the request type for the Service.TxsByEvents
134
+ * RPC method.
135
+ * @name GetTxsEventRequest
136
+ * @package cosmos.tx.v1beta1
137
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
138
+ */
132
139
  exports.GetTxsEventRequest = {
133
140
  typeUrl: "/cosmos.tx.v1beta1.GetTxsEventRequest",
134
141
  aminoType: "cosmos-sdk/GetTxsEventRequest",
@@ -272,6 +279,13 @@ function createBaseGetTxsEventResponse() {
272
279
  total: BigInt(0)
273
280
  };
274
281
  }
282
+ /**
283
+ * GetTxsEventResponse is the response type for the Service.TxsByEvents
284
+ * RPC method.
285
+ * @name GetTxsEventResponse
286
+ * @package cosmos.tx.v1beta1
287
+ * @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
288
+ */
275
289
  exports.GetTxsEventResponse = {
276
290
  typeUrl: "/cosmos.tx.v1beta1.GetTxsEventResponse",
277
291
  aminoType: "cosmos-sdk/GetTxsEventResponse",
@@ -396,6 +410,13 @@ function createBaseBroadcastTxRequest() {
396
410
  mode: 0
397
411
  };
398
412
  }
413
+ /**
414
+ * BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
415
+ * RPC method.
416
+ * @name BroadcastTxRequest
417
+ * @package cosmos.tx.v1beta1
418
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
419
+ */
399
420
  exports.BroadcastTxRequest = {
400
421
  typeUrl: "/cosmos.tx.v1beta1.BroadcastTxRequest",
401
422
  aminoType: "cosmos-sdk/BroadcastTxRequest",
@@ -484,6 +505,13 @@ function createBaseBroadcastTxResponse() {
484
505
  txResponse: undefined
485
506
  };
486
507
  }
508
+ /**
509
+ * BroadcastTxResponse is the response type for the
510
+ * Service.BroadcastTx method.
511
+ * @name BroadcastTxResponse
512
+ * @package cosmos.tx.v1beta1
513
+ * @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
514
+ */
487
515
  exports.BroadcastTxResponse = {
488
516
  typeUrl: "/cosmos.tx.v1beta1.BroadcastTxResponse",
489
517
  aminoType: "cosmos-sdk/BroadcastTxResponse",
@@ -567,6 +595,13 @@ function createBaseSimulateRequest() {
567
595
  txBytes: new Uint8Array()
568
596
  };
569
597
  }
598
+ /**
599
+ * SimulateRequest is the request type for the Service.Simulate
600
+ * RPC method.
601
+ * @name SimulateRequest
602
+ * @package cosmos.tx.v1beta1
603
+ * @see proto type: cosmos.tx.v1beta1.SimulateRequest
604
+ */
570
605
  exports.SimulateRequest = {
571
606
  typeUrl: "/cosmos.tx.v1beta1.SimulateRequest",
572
607
  aminoType: "cosmos-sdk/SimulateRequest",
@@ -661,6 +696,13 @@ function createBaseSimulateResponse() {
661
696
  result: undefined
662
697
  };
663
698
  }
699
+ /**
700
+ * SimulateResponse is the response type for the
701
+ * Service.SimulateRPC method.
702
+ * @name SimulateResponse
703
+ * @package cosmos.tx.v1beta1
704
+ * @see proto type: cosmos.tx.v1beta1.SimulateResponse
705
+ */
664
706
  exports.SimulateResponse = {
665
707
  typeUrl: "/cosmos.tx.v1beta1.SimulateResponse",
666
708
  aminoType: "cosmos-sdk/SimulateResponse",
@@ -755,6 +797,13 @@ function createBaseGetTxRequest() {
755
797
  hash: ""
756
798
  };
757
799
  }
800
+ /**
801
+ * GetTxRequest is the request type for the Service.GetTx
802
+ * RPC method.
803
+ * @name GetTxRequest
804
+ * @package cosmos.tx.v1beta1
805
+ * @see proto type: cosmos.tx.v1beta1.GetTxRequest
806
+ */
758
807
  exports.GetTxRequest = {
759
808
  typeUrl: "/cosmos.tx.v1beta1.GetTxRequest",
760
809
  aminoType: "cosmos-sdk/GetTxRequest",
@@ -833,6 +882,12 @@ function createBaseGetTxResponse() {
833
882
  txResponse: undefined
834
883
  };
835
884
  }
885
+ /**
886
+ * GetTxResponse is the response type for the Service.GetTx method.
887
+ * @name GetTxResponse
888
+ * @package cosmos.tx.v1beta1
889
+ * @see proto type: cosmos.tx.v1beta1.GetTxResponse
890
+ */
836
891
  exports.GetTxResponse = {
837
892
  typeUrl: "/cosmos.tx.v1beta1.GetTxResponse",
838
893
  aminoType: "cosmos-sdk/GetTxResponse",
@@ -928,6 +983,15 @@ function createBaseGetBlockWithTxsRequest() {
928
983
  pagination: undefined
929
984
  };
930
985
  }
986
+ /**
987
+ * GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
988
+ * RPC method.
989
+ *
990
+ * Since: cosmos-sdk 0.45.2
991
+ * @name GetBlockWithTxsRequest
992
+ * @package cosmos.tx.v1beta1
993
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
994
+ */
931
995
  exports.GetBlockWithTxsRequest = {
932
996
  typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsRequest",
933
997
  aminoType: "cosmos-sdk/GetBlockWithTxsRequest",
@@ -1024,6 +1088,15 @@ function createBaseGetBlockWithTxsResponse() {
1024
1088
  pagination: undefined
1025
1089
  };
1026
1090
  }
1091
+ /**
1092
+ * GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
1093
+ * method.
1094
+ *
1095
+ * Since: cosmos-sdk 0.45.2
1096
+ * @name GetBlockWithTxsResponse
1097
+ * @package cosmos.tx.v1beta1
1098
+ * @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
1099
+ */
1027
1100
  exports.GetBlockWithTxsResponse = {
1028
1101
  typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsResponse",
1029
1102
  aminoType: "cosmos-sdk/GetBlockWithTxsResponse",
@@ -1145,6 +1218,15 @@ function createBaseTxDecodeRequest() {
1145
1218
  txBytes: new Uint8Array()
1146
1219
  };
1147
1220
  }
1221
+ /**
1222
+ * TxDecodeRequest is the request type for the Service.TxDecode
1223
+ * RPC method.
1224
+ *
1225
+ * Since: cosmos-sdk 0.47
1226
+ * @name TxDecodeRequest
1227
+ * @package cosmos.tx.v1beta1
1228
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
1229
+ */
1148
1230
  exports.TxDecodeRequest = {
1149
1231
  typeUrl: "/cosmos.tx.v1beta1.TxDecodeRequest",
1150
1232
  aminoType: "cosmos-sdk/TxDecodeRequest",
@@ -1222,6 +1304,15 @@ function createBaseTxDecodeResponse() {
1222
1304
  tx: undefined
1223
1305
  };
1224
1306
  }
1307
+ /**
1308
+ * TxDecodeResponse is the response type for the
1309
+ * Service.TxDecode method.
1310
+ *
1311
+ * Since: cosmos-sdk 0.47
1312
+ * @name TxDecodeResponse
1313
+ * @package cosmos.tx.v1beta1
1314
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
1315
+ */
1225
1316
  exports.TxDecodeResponse = {
1226
1317
  typeUrl: "/cosmos.tx.v1beta1.TxDecodeResponse",
1227
1318
  aminoType: "cosmos-sdk/TxDecodeResponse",
@@ -1304,6 +1395,15 @@ function createBaseTxEncodeRequest() {
1304
1395
  tx: undefined
1305
1396
  };
1306
1397
  }
1398
+ /**
1399
+ * TxEncodeRequest is the request type for the Service.TxEncode
1400
+ * RPC method.
1401
+ *
1402
+ * Since: cosmos-sdk 0.47
1403
+ * @name TxEncodeRequest
1404
+ * @package cosmos.tx.v1beta1
1405
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
1406
+ */
1307
1407
  exports.TxEncodeRequest = {
1308
1408
  typeUrl: "/cosmos.tx.v1beta1.TxEncodeRequest",
1309
1409
  aminoType: "cosmos-sdk/TxEncodeRequest",
@@ -1386,6 +1486,15 @@ function createBaseTxEncodeResponse() {
1386
1486
  txBytes: new Uint8Array()
1387
1487
  };
1388
1488
  }
1489
+ /**
1490
+ * TxEncodeResponse is the response type for the
1491
+ * Service.TxEncode method.
1492
+ *
1493
+ * Since: cosmos-sdk 0.47
1494
+ * @name TxEncodeResponse
1495
+ * @package cosmos.tx.v1beta1
1496
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
1497
+ */
1389
1498
  exports.TxEncodeResponse = {
1390
1499
  typeUrl: "/cosmos.tx.v1beta1.TxEncodeResponse",
1391
1500
  aminoType: "cosmos-sdk/TxEncodeResponse",
@@ -1463,6 +1572,15 @@ function createBaseTxEncodeAminoRequest() {
1463
1572
  aminoJson: ""
1464
1573
  };
1465
1574
  }
1575
+ /**
1576
+ * TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
1577
+ * RPC method.
1578
+ *
1579
+ * Since: cosmos-sdk 0.47
1580
+ * @name TxEncodeAminoRequest
1581
+ * @package cosmos.tx.v1beta1
1582
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
1583
+ */
1466
1584
  exports.TxEncodeAminoRequest = {
1467
1585
  typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoRequest",
1468
1586
  aminoType: "cosmos-sdk/TxEncodeAminoRequest",
@@ -1540,6 +1658,15 @@ function createBaseTxEncodeAminoResponse() {
1540
1658
  aminoBinary: new Uint8Array()
1541
1659
  };
1542
1660
  }
1661
+ /**
1662
+ * TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
1663
+ * RPC method.
1664
+ *
1665
+ * Since: cosmos-sdk 0.47
1666
+ * @name TxEncodeAminoResponse
1667
+ * @package cosmos.tx.v1beta1
1668
+ * @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
1669
+ */
1543
1670
  exports.TxEncodeAminoResponse = {
1544
1671
  typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoResponse",
1545
1672
  aminoType: "cosmos-sdk/TxEncodeAminoResponse",
@@ -1617,6 +1744,15 @@ function createBaseTxDecodeAminoRequest() {
1617
1744
  aminoBinary: new Uint8Array()
1618
1745
  };
1619
1746
  }
1747
+ /**
1748
+ * TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
1749
+ * RPC method.
1750
+ *
1751
+ * Since: cosmos-sdk 0.47
1752
+ * @name TxDecodeAminoRequest
1753
+ * @package cosmos.tx.v1beta1
1754
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
1755
+ */
1620
1756
  exports.TxDecodeAminoRequest = {
1621
1757
  typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoRequest",
1622
1758
  aminoType: "cosmos-sdk/TxDecodeAminoRequest",
@@ -1694,6 +1830,15 @@ function createBaseTxDecodeAminoResponse() {
1694
1830
  aminoJson: ""
1695
1831
  };
1696
1832
  }
1833
+ /**
1834
+ * TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
1835
+ * RPC method.
1836
+ *
1837
+ * Since: cosmos-sdk 0.47
1838
+ * @name TxDecodeAminoResponse
1839
+ * @package cosmos.tx.v1beta1
1840
+ * @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
1841
+ */
1697
1842
  exports.TxDecodeAminoResponse = {
1698
1843
  typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoResponse",
1699
1844
  aminoType: "cosmos-sdk/TxDecodeAminoResponse",
@@ -1,10 +1,74 @@
1
1
  import { SimulateRequest, SimulateResponse, GetTxRequest, GetTxResponse, BroadcastTxRequest, BroadcastTxResponse, GetTxsEventRequest, GetTxsEventResponse, GetBlockWithTxsRequest, GetBlockWithTxsResponse, TxDecodeRequest, TxDecodeResponse, TxEncodeRequest, TxEncodeResponse, TxEncodeAminoRequest, TxEncodeAminoResponse, TxDecodeAminoRequest, TxDecodeAminoResponse } from "./service";
2
+ /**
3
+ * Simulate simulates executing a transaction for estimating gas usage.
4
+ * @name getSimulate
5
+ * @package cosmos.tx.v1beta1
6
+ * @see proto service: cosmos.tx.v1beta1.Simulate
7
+ */
2
8
  export declare const getSimulate: (client: import("../../../helper-func-types").EndpointOrRpc, request: SimulateRequest) => Promise<SimulateResponse>;
9
+ /**
10
+ * GetTx fetches a tx by hash.
11
+ * @name getTx
12
+ * @package cosmos.tx.v1beta1
13
+ * @see proto service: cosmos.tx.v1beta1.GetTx
14
+ */
3
15
  export declare const getTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxRequest) => Promise<GetTxResponse>;
16
+ /**
17
+ * BroadcastTx broadcast transaction.
18
+ * @name getBroadcastTx
19
+ * @package cosmos.tx.v1beta1
20
+ * @see proto service: cosmos.tx.v1beta1.BroadcastTx
21
+ */
4
22
  export declare const getBroadcastTx: (client: import("../../../helper-func-types").EndpointOrRpc, request: BroadcastTxRequest) => Promise<BroadcastTxResponse>;
23
+ /**
24
+ * GetTxsEvent fetches txs by event.
25
+ * @name getTxsEvent
26
+ * @package cosmos.tx.v1beta1
27
+ * @see proto service: cosmos.tx.v1beta1.GetTxsEvent
28
+ */
5
29
  export declare const getTxsEvent: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetTxsEventRequest) => Promise<GetTxsEventResponse>;
30
+ /**
31
+ * GetBlockWithTxs fetches a block with decoded txs.
32
+ *
33
+ * Since: cosmos-sdk 0.45.2
34
+ * @name getBlockWithTxs
35
+ * @package cosmos.tx.v1beta1
36
+ * @see proto service: cosmos.tx.v1beta1.GetBlockWithTxs
37
+ */
6
38
  export declare const getBlockWithTxs: (client: import("../../../helper-func-types").EndpointOrRpc, request: GetBlockWithTxsRequest) => Promise<GetBlockWithTxsResponse>;
39
+ /**
40
+ * TxDecode decodes the transaction.
41
+ *
42
+ * Since: cosmos-sdk 0.47
43
+ * @name getTxDecode
44
+ * @package cosmos.tx.v1beta1
45
+ * @see proto service: cosmos.tx.v1beta1.TxDecode
46
+ */
7
47
  export declare const getTxDecode: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxDecodeRequest) => Promise<TxDecodeResponse>;
48
+ /**
49
+ * TxEncode encodes the transaction.
50
+ *
51
+ * Since: cosmos-sdk 0.47
52
+ * @name getTxEncode
53
+ * @package cosmos.tx.v1beta1
54
+ * @see proto service: cosmos.tx.v1beta1.TxEncode
55
+ */
8
56
  export declare const getTxEncode: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxEncodeRequest) => Promise<TxEncodeResponse>;
57
+ /**
58
+ * TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.
59
+ *
60
+ * Since: cosmos-sdk 0.47
61
+ * @name getTxEncodeAmino
62
+ * @package cosmos.tx.v1beta1
63
+ * @see proto service: cosmos.tx.v1beta1.TxEncodeAmino
64
+ */
9
65
  export declare const getTxEncodeAmino: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxEncodeAminoRequest) => Promise<TxEncodeAminoResponse>;
66
+ /**
67
+ * TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.
68
+ *
69
+ * Since: cosmos-sdk 0.47
70
+ * @name getTxDecodeAmino
71
+ * @package cosmos.tx.v1beta1
72
+ * @see proto service: cosmos.tx.v1beta1.TxDecodeAmino
73
+ */
10
74
  export declare const getTxDecodeAmino: (client: import("../../../helper-func-types").EndpointOrRpc, request: TxDecodeAminoRequest) => Promise<TxDecodeAminoResponse>;
@@ -3,7 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getTxDecodeAmino = exports.getTxEncodeAmino = exports.getTxEncode = exports.getTxDecode = exports.getBlockWithTxs = exports.getTxsEvent = exports.getBroadcastTx = exports.getTx = exports.getSimulate = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const service_1 = require("./service");
6
- /* Simulate simulates executing a transaction for estimating gas usage. */
6
+ /**
7
+ * Simulate simulates executing a transaction for estimating gas usage.
8
+ * @name getSimulate
9
+ * @package cosmos.tx.v1beta1
10
+ * @see proto service: cosmos.tx.v1beta1.Simulate
11
+ */
7
12
  exports.getSimulate = (0, helper_func_types_1.buildQuery)({
8
13
  encode: service_1.SimulateRequest.encode,
9
14
  decode: service_1.SimulateResponse.decode,
@@ -11,7 +16,12 @@ exports.getSimulate = (0, helper_func_types_1.buildQuery)({
11
16
  method: "Simulate",
12
17
  deps: [service_1.SimulateRequest, service_1.SimulateResponse]
13
18
  });
14
- /* GetTx fetches a tx by hash. */
19
+ /**
20
+ * GetTx fetches a tx by hash.
21
+ * @name getTx
22
+ * @package cosmos.tx.v1beta1
23
+ * @see proto service: cosmos.tx.v1beta1.GetTx
24
+ */
15
25
  exports.getTx = (0, helper_func_types_1.buildQuery)({
16
26
  encode: service_1.GetTxRequest.encode,
17
27
  decode: service_1.GetTxResponse.decode,
@@ -19,7 +29,12 @@ exports.getTx = (0, helper_func_types_1.buildQuery)({
19
29
  method: "GetTx",
20
30
  deps: [service_1.GetTxRequest, service_1.GetTxResponse]
21
31
  });
22
- /* BroadcastTx broadcast transaction. */
32
+ /**
33
+ * BroadcastTx broadcast transaction.
34
+ * @name getBroadcastTx
35
+ * @package cosmos.tx.v1beta1
36
+ * @see proto service: cosmos.tx.v1beta1.BroadcastTx
37
+ */
23
38
  exports.getBroadcastTx = (0, helper_func_types_1.buildQuery)({
24
39
  encode: service_1.BroadcastTxRequest.encode,
25
40
  decode: service_1.BroadcastTxResponse.decode,
@@ -27,7 +42,12 @@ exports.getBroadcastTx = (0, helper_func_types_1.buildQuery)({
27
42
  method: "BroadcastTx",
28
43
  deps: [service_1.BroadcastTxRequest, service_1.BroadcastTxResponse]
29
44
  });
30
- /* GetTxsEvent fetches txs by event. */
45
+ /**
46
+ * GetTxsEvent fetches txs by event.
47
+ * @name getTxsEvent
48
+ * @package cosmos.tx.v1beta1
49
+ * @see proto service: cosmos.tx.v1beta1.GetTxsEvent
50
+ */
31
51
  exports.getTxsEvent = (0, helper_func_types_1.buildQuery)({
32
52
  encode: service_1.GetTxsEventRequest.encode,
33
53
  decode: service_1.GetTxsEventResponse.decode,
@@ -35,9 +55,14 @@ exports.getTxsEvent = (0, helper_func_types_1.buildQuery)({
35
55
  method: "GetTxsEvent",
36
56
  deps: [service_1.GetTxsEventRequest, service_1.GetTxsEventResponse]
37
57
  });
38
- /* GetBlockWithTxs fetches a block with decoded txs.
39
-
40
- Since: cosmos-sdk 0.45.2 */
58
+ /**
59
+ * GetBlockWithTxs fetches a block with decoded txs.
60
+ *
61
+ * Since: cosmos-sdk 0.45.2
62
+ * @name getBlockWithTxs
63
+ * @package cosmos.tx.v1beta1
64
+ * @see proto service: cosmos.tx.v1beta1.GetBlockWithTxs
65
+ */
41
66
  exports.getBlockWithTxs = (0, helper_func_types_1.buildQuery)({
42
67
  encode: service_1.GetBlockWithTxsRequest.encode,
43
68
  decode: service_1.GetBlockWithTxsResponse.decode,
@@ -45,9 +70,14 @@ exports.getBlockWithTxs = (0, helper_func_types_1.buildQuery)({
45
70
  method: "GetBlockWithTxs",
46
71
  deps: [service_1.GetBlockWithTxsRequest, service_1.GetBlockWithTxsResponse]
47
72
  });
48
- /* TxDecode decodes the transaction.
49
-
50
- Since: cosmos-sdk 0.47 */
73
+ /**
74
+ * TxDecode decodes the transaction.
75
+ *
76
+ * Since: cosmos-sdk 0.47
77
+ * @name getTxDecode
78
+ * @package cosmos.tx.v1beta1
79
+ * @see proto service: cosmos.tx.v1beta1.TxDecode
80
+ */
51
81
  exports.getTxDecode = (0, helper_func_types_1.buildQuery)({
52
82
  encode: service_1.TxDecodeRequest.encode,
53
83
  decode: service_1.TxDecodeResponse.decode,
@@ -55,9 +85,14 @@ exports.getTxDecode = (0, helper_func_types_1.buildQuery)({
55
85
  method: "TxDecode",
56
86
  deps: [service_1.TxDecodeRequest, service_1.TxDecodeResponse]
57
87
  });
58
- /* TxEncode encodes the transaction.
59
-
60
- Since: cosmos-sdk 0.47 */
88
+ /**
89
+ * TxEncode encodes the transaction.
90
+ *
91
+ * Since: cosmos-sdk 0.47
92
+ * @name getTxEncode
93
+ * @package cosmos.tx.v1beta1
94
+ * @see proto service: cosmos.tx.v1beta1.TxEncode
95
+ */
61
96
  exports.getTxEncode = (0, helper_func_types_1.buildQuery)({
62
97
  encode: service_1.TxEncodeRequest.encode,
63
98
  decode: service_1.TxEncodeResponse.decode,
@@ -65,9 +100,14 @@ exports.getTxEncode = (0, helper_func_types_1.buildQuery)({
65
100
  method: "TxEncode",
66
101
  deps: [service_1.TxEncodeRequest, service_1.TxEncodeResponse]
67
102
  });
68
- /* TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.
69
-
70
- Since: cosmos-sdk 0.47 */
103
+ /**
104
+ * TxEncodeAmino encodes an Amino transaction from JSON to encoded bytes.
105
+ *
106
+ * Since: cosmos-sdk 0.47
107
+ * @name getTxEncodeAmino
108
+ * @package cosmos.tx.v1beta1
109
+ * @see proto service: cosmos.tx.v1beta1.TxEncodeAmino
110
+ */
71
111
  exports.getTxEncodeAmino = (0, helper_func_types_1.buildQuery)({
72
112
  encode: service_1.TxEncodeAminoRequest.encode,
73
113
  decode: service_1.TxEncodeAminoResponse.decode,
@@ -75,9 +115,14 @@ exports.getTxEncodeAmino = (0, helper_func_types_1.buildQuery)({
75
115
  method: "TxEncodeAmino",
76
116
  deps: [service_1.TxEncodeAminoRequest, service_1.TxEncodeAminoResponse]
77
117
  });
78
- /* TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.
79
-
80
- Since: cosmos-sdk 0.47 */
118
+ /**
119
+ * TxDecodeAmino decodes an Amino transaction from encoded bytes to JSON.
120
+ *
121
+ * Since: cosmos-sdk 0.47
122
+ * @name getTxDecodeAmino
123
+ * @package cosmos.tx.v1beta1
124
+ * @see proto service: cosmos.tx.v1beta1.TxDecodeAmino
125
+ */
81
126
  exports.getTxDecodeAmino = (0, helper_func_types_1.buildQuery)({
82
127
  encode: service_1.TxDecodeAminoRequest.encode,
83
128
  decode: service_1.TxDecodeAminoResponse.decode,