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
@@ -101,6 +101,11 @@ function createBaseSubaccount() {
101
101
  subaccountNonce: 0
102
102
  };
103
103
  }
104
+ /**
105
+ * @name Subaccount
106
+ * @package injective.exchange.v1beta1
107
+ * @see proto type: injective.exchange.v1beta1.Subaccount
108
+ */
104
109
  exports.Subaccount = {
105
110
  typeUrl: "/injective.exchange.v1beta1.Subaccount",
106
111
  is(o) {
@@ -183,6 +188,11 @@ function createBaseQuerySubaccountOrdersRequest() {
183
188
  marketId: ""
184
189
  };
185
190
  }
191
+ /**
192
+ * @name QuerySubaccountOrdersRequest
193
+ * @package injective.exchange.v1beta1
194
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountOrdersRequest
195
+ */
186
196
  exports.QuerySubaccountOrdersRequest = {
187
197
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrdersRequest",
188
198
  is(o) {
@@ -265,6 +275,11 @@ function createBaseQuerySubaccountOrdersResponse() {
265
275
  sellOrders: []
266
276
  };
267
277
  }
278
+ /**
279
+ * @name QuerySubaccountOrdersResponse
280
+ * @package injective.exchange.v1beta1
281
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountOrdersResponse
282
+ */
268
283
  exports.QuerySubaccountOrdersResponse = {
269
284
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrdersResponse",
270
285
  is(o) {
@@ -359,6 +374,11 @@ function createBaseSubaccountOrderbookMetadataWithMarket() {
359
374
  isBuy: false
360
375
  };
361
376
  }
377
+ /**
378
+ * @name SubaccountOrderbookMetadataWithMarket
379
+ * @package injective.exchange.v1beta1
380
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderbookMetadataWithMarket
381
+ */
362
382
  exports.SubaccountOrderbookMetadataWithMarket = {
363
383
  typeUrl: "/injective.exchange.v1beta1.SubaccountOrderbookMetadataWithMarket",
364
384
  is(o) {
@@ -454,6 +474,13 @@ exports.SubaccountOrderbookMetadataWithMarket = {
454
474
  function createBaseQueryExchangeParamsRequest() {
455
475
  return {};
456
476
  }
477
+ /**
478
+ * QueryExchangeParamsRequest is the request type for the Query/ExchangeParams
479
+ * RPC method.
480
+ * @name QueryExchangeParamsRequest
481
+ * @package injective.exchange.v1beta1
482
+ * @see proto type: injective.exchange.v1beta1.QueryExchangeParamsRequest
483
+ */
457
484
  exports.QueryExchangeParamsRequest = {
458
485
  typeUrl: "/injective.exchange.v1beta1.QueryExchangeParamsRequest",
459
486
  is(o) {
@@ -513,6 +540,13 @@ function createBaseQueryExchangeParamsResponse() {
513
540
  params: exchange_1.Params.fromPartial({})
514
541
  };
515
542
  }
543
+ /**
544
+ * QueryExchangeParamsRequest is the response type for the Query/ExchangeParams
545
+ * RPC method.
546
+ * @name QueryExchangeParamsResponse
547
+ * @package injective.exchange.v1beta1
548
+ * @see proto type: injective.exchange.v1beta1.QueryExchangeParamsResponse
549
+ */
516
550
  exports.QueryExchangeParamsResponse = {
517
551
  typeUrl: "/injective.exchange.v1beta1.QueryExchangeParamsResponse",
518
552
  is(o) {
@@ -589,6 +623,13 @@ function createBaseQuerySubaccountDepositsRequest() {
589
623
  subaccount: undefined
590
624
  };
591
625
  }
626
+ /**
627
+ * QuerySubaccountDepositsRequest is the request type for the
628
+ * Query/SubaccountDeposits RPC method.
629
+ * @name QuerySubaccountDepositsRequest
630
+ * @package injective.exchange.v1beta1
631
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositsRequest
632
+ */
592
633
  exports.QuerySubaccountDepositsRequest = {
593
634
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositsRequest",
594
635
  is(o) {
@@ -676,6 +717,11 @@ function createBaseQuerySubaccountDepositsResponse_DepositsEntry() {
676
717
  value: undefined
677
718
  };
678
719
  }
720
+ /**
721
+ * @name QuerySubaccountDepositsResponse_DepositsEntry
722
+ * @package injective.exchange.v1beta1
723
+ * @see proto type: injective.exchange.v1beta1.undefined
724
+ */
679
725
  exports.QuerySubaccountDepositsResponse_DepositsEntry = {
680
726
  encode(message, writer = binary_1.BinaryWriter.create()) {
681
727
  if (message.key !== "") {
@@ -746,6 +792,13 @@ function createBaseQuerySubaccountDepositsResponse() {
746
792
  deposits: {}
747
793
  };
748
794
  }
795
+ /**
796
+ * QuerySubaccountDepositsResponse is the response type for the
797
+ * Query/SubaccountDeposits RPC method.
798
+ * @name QuerySubaccountDepositsResponse
799
+ * @package injective.exchange.v1beta1
800
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositsResponse
801
+ */
749
802
  exports.QuerySubaccountDepositsResponse = {
750
803
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositsResponse",
751
804
  is(o) {
@@ -838,6 +891,13 @@ exports.QuerySubaccountDepositsResponse = {
838
891
  function createBaseQueryExchangeBalancesRequest() {
839
892
  return {};
840
893
  }
894
+ /**
895
+ * QueryExchangeBalancesRequest is the request type for the
896
+ * Query/ExchangeBalances RPC method.
897
+ * @name QueryExchangeBalancesRequest
898
+ * @package injective.exchange.v1beta1
899
+ * @see proto type: injective.exchange.v1beta1.QueryExchangeBalancesRequest
900
+ */
841
901
  exports.QueryExchangeBalancesRequest = {
842
902
  typeUrl: "/injective.exchange.v1beta1.QueryExchangeBalancesRequest",
843
903
  is(o) {
@@ -897,6 +957,13 @@ function createBaseQueryExchangeBalancesResponse() {
897
957
  balances: []
898
958
  };
899
959
  }
960
+ /**
961
+ * QuerySubaccountDepositsResponse is the response type for the
962
+ * Query/SubaccountDeposits RPC method.
963
+ * @name QueryExchangeBalancesResponse
964
+ * @package injective.exchange.v1beta1
965
+ * @see proto type: injective.exchange.v1beta1.QueryExchangeBalancesResponse
966
+ */
900
967
  exports.QueryExchangeBalancesResponse = {
901
968
  typeUrl: "/injective.exchange.v1beta1.QueryExchangeBalancesResponse",
902
969
  is(o) {
@@ -975,6 +1042,13 @@ function createBaseQueryAggregateVolumeRequest() {
975
1042
  account: ""
976
1043
  };
977
1044
  }
1045
+ /**
1046
+ * QueryAggregateVolumeRequest is the request type for the Query/AggregateVolume
1047
+ * RPC method.
1048
+ * @name QueryAggregateVolumeRequest
1049
+ * @package injective.exchange.v1beta1
1050
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateVolumeRequest
1051
+ */
978
1052
  exports.QueryAggregateVolumeRequest = {
979
1053
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumeRequest",
980
1054
  is(o) {
@@ -1045,6 +1119,13 @@ function createBaseQueryAggregateVolumeResponse() {
1045
1119
  aggregateVolumes: []
1046
1120
  };
1047
1121
  }
1122
+ /**
1123
+ * QueryAggregateVolumeResponse is the response type for the
1124
+ * Query/AggregateVolume RPC method.
1125
+ * @name QueryAggregateVolumeResponse
1126
+ * @package injective.exchange.v1beta1
1127
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateVolumeResponse
1128
+ */
1048
1129
  exports.QueryAggregateVolumeResponse = {
1049
1130
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumeResponse",
1050
1131
  is(o) {
@@ -1124,6 +1205,13 @@ function createBaseQueryAggregateVolumesRequest() {
1124
1205
  marketIds: []
1125
1206
  };
1126
1207
  }
1208
+ /**
1209
+ * QueryAggregateVolumesRequest is the request type for the
1210
+ * Query/AggregateVolumes RPC method.
1211
+ * @name QueryAggregateVolumesRequest
1212
+ * @package injective.exchange.v1beta1
1213
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateVolumesRequest
1214
+ */
1127
1215
  exports.QueryAggregateVolumesRequest = {
1128
1216
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumesRequest",
1129
1217
  is(o) {
@@ -1212,6 +1300,13 @@ function createBaseQueryAggregateVolumesResponse() {
1212
1300
  aggregateMarketVolumes: []
1213
1301
  };
1214
1302
  }
1303
+ /**
1304
+ * QueryAggregateVolumesResponse is the response type for the
1305
+ * Query/AggregateVolumes RPC method.
1306
+ * @name QueryAggregateVolumesResponse
1307
+ * @package injective.exchange.v1beta1
1308
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateVolumesResponse
1309
+ */
1215
1310
  exports.QueryAggregateVolumesResponse = {
1216
1311
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateVolumesResponse",
1217
1312
  is(o) {
@@ -1305,6 +1400,13 @@ function createBaseQueryAggregateMarketVolumeRequest() {
1305
1400
  marketId: ""
1306
1401
  };
1307
1402
  }
1403
+ /**
1404
+ * QueryAggregateMarketVolumeRequest is the request type for the
1405
+ * Query/AggregateMarketVolume RPC method.
1406
+ * @name QueryAggregateMarketVolumeRequest
1407
+ * @package injective.exchange.v1beta1
1408
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumeRequest
1409
+ */
1308
1410
  exports.QueryAggregateMarketVolumeRequest = {
1309
1411
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumeRequest",
1310
1412
  is(o) {
@@ -1375,6 +1477,13 @@ function createBaseQueryAggregateMarketVolumeResponse() {
1375
1477
  volume: exchange_1.VolumeRecord.fromPartial({})
1376
1478
  };
1377
1479
  }
1480
+ /**
1481
+ * QueryAggregateMarketVolumeResponse is the response type for the
1482
+ * Query/AggregateMarketVolume RPC method.
1483
+ * @name QueryAggregateMarketVolumeResponse
1484
+ * @package injective.exchange.v1beta1
1485
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumeResponse
1486
+ */
1378
1487
  exports.QueryAggregateMarketVolumeResponse = {
1379
1488
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumeResponse",
1380
1489
  is(o) {
@@ -1450,6 +1559,13 @@ function createBaseQueryDenomDecimalRequest() {
1450
1559
  denom: ""
1451
1560
  };
1452
1561
  }
1562
+ /**
1563
+ * QueryDenomDecimalRequest is the request type for the Query/DenomDecimal RPC
1564
+ * method.
1565
+ * @name QueryDenomDecimalRequest
1566
+ * @package injective.exchange.v1beta1
1567
+ * @see proto type: injective.exchange.v1beta1.QueryDenomDecimalRequest
1568
+ */
1453
1569
  exports.QueryDenomDecimalRequest = {
1454
1570
  typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalRequest",
1455
1571
  is(o) {
@@ -1520,6 +1636,13 @@ function createBaseQueryDenomDecimalResponse() {
1520
1636
  decimal: BigInt(0)
1521
1637
  };
1522
1638
  }
1639
+ /**
1640
+ * QueryDenomDecimalResponse is the response type for the Query/DenomDecimal RPC
1641
+ * method.
1642
+ * @name QueryDenomDecimalResponse
1643
+ * @package injective.exchange.v1beta1
1644
+ * @see proto type: injective.exchange.v1beta1.QueryDenomDecimalResponse
1645
+ */
1523
1646
  exports.QueryDenomDecimalResponse = {
1524
1647
  typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalResponse",
1525
1648
  is(o) {
@@ -1590,6 +1713,13 @@ function createBaseQueryDenomDecimalsRequest() {
1590
1713
  denoms: []
1591
1714
  };
1592
1715
  }
1716
+ /**
1717
+ * QueryDenomDecimalsRequest is the request type for the Query/DenomDecimals RPC
1718
+ * method.
1719
+ * @name QueryDenomDecimalsRequest
1720
+ * @package injective.exchange.v1beta1
1721
+ * @see proto type: injective.exchange.v1beta1.QueryDenomDecimalsRequest
1722
+ */
1593
1723
  exports.QueryDenomDecimalsRequest = {
1594
1724
  typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalsRequest",
1595
1725
  is(o) {
@@ -1663,6 +1793,13 @@ function createBaseQueryDenomDecimalsResponse() {
1663
1793
  denomDecimals: []
1664
1794
  };
1665
1795
  }
1796
+ /**
1797
+ * QueryDenomDecimalsRequest is the response type for the Query/DenomDecimals
1798
+ * RPC method.
1799
+ * @name QueryDenomDecimalsResponse
1800
+ * @package injective.exchange.v1beta1
1801
+ * @see proto type: injective.exchange.v1beta1.QueryDenomDecimalsResponse
1802
+ */
1666
1803
  exports.QueryDenomDecimalsResponse = {
1667
1804
  typeUrl: "/injective.exchange.v1beta1.QueryDenomDecimalsResponse",
1668
1805
  is(o) {
@@ -1741,6 +1878,13 @@ function createBaseQueryAggregateMarketVolumesRequest() {
1741
1878
  marketIds: []
1742
1879
  };
1743
1880
  }
1881
+ /**
1882
+ * QueryAggregateMarketVolumesRequest is the request type for the
1883
+ * Query/AggregateMarketVolumes RPC method.
1884
+ * @name QueryAggregateMarketVolumesRequest
1885
+ * @package injective.exchange.v1beta1
1886
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumesRequest
1887
+ */
1744
1888
  exports.QueryAggregateMarketVolumesRequest = {
1745
1889
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumesRequest",
1746
1890
  is(o) {
@@ -1814,6 +1958,13 @@ function createBaseQueryAggregateMarketVolumesResponse() {
1814
1958
  volumes: []
1815
1959
  };
1816
1960
  }
1961
+ /**
1962
+ * QueryAggregateMarketVolumesResponse is the response type for the
1963
+ * Query/AggregateMarketVolumes RPC method.
1964
+ * @name QueryAggregateMarketVolumesResponse
1965
+ * @package injective.exchange.v1beta1
1966
+ * @see proto type: injective.exchange.v1beta1.QueryAggregateMarketVolumesResponse
1967
+ */
1817
1968
  exports.QueryAggregateMarketVolumesResponse = {
1818
1969
  typeUrl: "/injective.exchange.v1beta1.QueryAggregateMarketVolumesResponse",
1819
1970
  is(o) {
@@ -1893,6 +2044,13 @@ function createBaseQuerySubaccountDepositRequest() {
1893
2044
  denom: ""
1894
2045
  };
1895
2046
  }
2047
+ /**
2048
+ * QuerySubaccountDepositsRequest is the request type for the
2049
+ * Query/SubaccountDeposits RPC method.
2050
+ * @name QuerySubaccountDepositRequest
2051
+ * @package injective.exchange.v1beta1
2052
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositRequest
2053
+ */
1896
2054
  exports.QuerySubaccountDepositRequest = {
1897
2055
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositRequest",
1898
2056
  is(o) {
@@ -1974,6 +2132,13 @@ function createBaseQuerySubaccountDepositResponse() {
1974
2132
  deposits: undefined
1975
2133
  };
1976
2134
  }
2135
+ /**
2136
+ * QuerySubaccountDepositsResponse is the response type for the
2137
+ * Query/SubaccountDeposits RPC method.
2138
+ * @name QuerySubaccountDepositResponse
2139
+ * @package injective.exchange.v1beta1
2140
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountDepositResponse
2141
+ */
1977
2142
  exports.QuerySubaccountDepositResponse = {
1978
2143
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountDepositResponse",
1979
2144
  is(o) {
@@ -2050,6 +2215,13 @@ function createBaseQuerySpotMarketsRequest() {
2050
2215
  marketIds: []
2051
2216
  };
2052
2217
  }
2218
+ /**
2219
+ * QuerySpotMarketsRequest is the request type for the Query/SpotMarkets RPC
2220
+ * method.
2221
+ * @name QuerySpotMarketsRequest
2222
+ * @package injective.exchange.v1beta1
2223
+ * @see proto type: injective.exchange.v1beta1.QuerySpotMarketsRequest
2224
+ */
2053
2225
  exports.QuerySpotMarketsRequest = {
2054
2226
  typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketsRequest",
2055
2227
  is(o) {
@@ -2134,6 +2306,13 @@ function createBaseQuerySpotMarketsResponse() {
2134
2306
  markets: []
2135
2307
  };
2136
2308
  }
2309
+ /**
2310
+ * QuerySpotMarketsResponse is the response type for the Query/SpotMarkets RPC
2311
+ * method.
2312
+ * @name QuerySpotMarketsResponse
2313
+ * @package injective.exchange.v1beta1
2314
+ * @see proto type: injective.exchange.v1beta1.QuerySpotMarketsResponse
2315
+ */
2137
2316
  exports.QuerySpotMarketsResponse = {
2138
2317
  typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketsResponse",
2139
2318
  is(o) {
@@ -2212,6 +2391,13 @@ function createBaseQuerySpotMarketRequest() {
2212
2391
  marketId: ""
2213
2392
  };
2214
2393
  }
2394
+ /**
2395
+ * QuerySpotMarketRequest is the request type for the Query/SpotMarket RPC
2396
+ * method.
2397
+ * @name QuerySpotMarketRequest
2398
+ * @package injective.exchange.v1beta1
2399
+ * @see proto type: injective.exchange.v1beta1.QuerySpotMarketRequest
2400
+ */
2215
2401
  exports.QuerySpotMarketRequest = {
2216
2402
  typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketRequest",
2217
2403
  is(o) {
@@ -2282,6 +2468,13 @@ function createBaseQuerySpotMarketResponse() {
2282
2468
  market: undefined
2283
2469
  };
2284
2470
  }
2471
+ /**
2472
+ * QuerySpotMarketResponse is the response type for the Query/SpotMarket RPC
2473
+ * method.
2474
+ * @name QuerySpotMarketResponse
2475
+ * @package injective.exchange.v1beta1
2476
+ * @see proto type: injective.exchange.v1beta1.QuerySpotMarketResponse
2477
+ */
2285
2478
  exports.QuerySpotMarketResponse = {
2286
2479
  typeUrl: "/injective.exchange.v1beta1.QuerySpotMarketResponse",
2287
2480
  is(o) {
@@ -2361,6 +2554,13 @@ function createBaseQuerySpotOrderbookRequest() {
2361
2554
  limitCumulativeQuantity: undefined
2362
2555
  };
2363
2556
  }
2557
+ /**
2558
+ * QuerySpotOrderbookRequest is the request type for the Query/SpotOrderbook RPC
2559
+ * method.
2560
+ * @name QuerySpotOrderbookRequest
2561
+ * @package injective.exchange.v1beta1
2562
+ * @see proto type: injective.exchange.v1beta1.QuerySpotOrderbookRequest
2563
+ */
2364
2564
  exports.QuerySpotOrderbookRequest = {
2365
2565
  typeUrl: "/injective.exchange.v1beta1.QuerySpotOrderbookRequest",
2366
2566
  is(o) {
@@ -2476,6 +2676,13 @@ function createBaseQuerySpotOrderbookResponse() {
2476
2676
  sellsPriceLevel: []
2477
2677
  };
2478
2678
  }
2679
+ /**
2680
+ * QuerySpotOrderbookResponse is the response type for the Query/SpotOrderbook
2681
+ * RPC method.
2682
+ * @name QuerySpotOrderbookResponse
2683
+ * @package injective.exchange.v1beta1
2684
+ * @see proto type: injective.exchange.v1beta1.QuerySpotOrderbookResponse
2685
+ */
2479
2686
  exports.QuerySpotOrderbookResponse = {
2480
2687
  typeUrl: "/injective.exchange.v1beta1.QuerySpotOrderbookResponse",
2481
2688
  is(o) {
@@ -2569,6 +2776,11 @@ function createBaseFullSpotMarket() {
2569
2776
  midPriceAndTob: undefined
2570
2777
  };
2571
2778
  }
2779
+ /**
2780
+ * @name FullSpotMarket
2781
+ * @package injective.exchange.v1beta1
2782
+ * @see proto type: injective.exchange.v1beta1.FullSpotMarket
2783
+ */
2572
2784
  exports.FullSpotMarket = {
2573
2785
  typeUrl: "/injective.exchange.v1beta1.FullSpotMarket",
2574
2786
  is(o) {
@@ -2658,6 +2870,13 @@ function createBaseQueryFullSpotMarketsRequest() {
2658
2870
  withMidPriceAndTob: false
2659
2871
  };
2660
2872
  }
2873
+ /**
2874
+ * QueryFullSpotMarketsRequest is the request type for the Query/FullSpotMarkets
2875
+ * RPC method.
2876
+ * @name QueryFullSpotMarketsRequest
2877
+ * @package injective.exchange.v1beta1
2878
+ * @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketsRequest
2879
+ */
2661
2880
  exports.QueryFullSpotMarketsRequest = {
2662
2881
  typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketsRequest",
2663
2882
  is(o) {
@@ -2753,6 +2972,13 @@ function createBaseQueryFullSpotMarketsResponse() {
2753
2972
  markets: []
2754
2973
  };
2755
2974
  }
2975
+ /**
2976
+ * QueryFullSpotMarketsResponse is the response type for the
2977
+ * Query/FullSpotMarkets RPC method.
2978
+ * @name QueryFullSpotMarketsResponse
2979
+ * @package injective.exchange.v1beta1
2980
+ * @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketsResponse
2981
+ */
2756
2982
  exports.QueryFullSpotMarketsResponse = {
2757
2983
  typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketsResponse",
2758
2984
  is(o) {
@@ -2832,6 +3058,13 @@ function createBaseQueryFullSpotMarketRequest() {
2832
3058
  withMidPriceAndTob: false
2833
3059
  };
2834
3060
  }
3061
+ /**
3062
+ * QuerySpotMarketRequest is the request type for the Query/SpotMarket RPC
3063
+ * method.
3064
+ * @name QueryFullSpotMarketRequest
3065
+ * @package injective.exchange.v1beta1
3066
+ * @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketRequest
3067
+ */
2835
3068
  exports.QueryFullSpotMarketRequest = {
2836
3069
  typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketRequest",
2837
3070
  is(o) {
@@ -2913,6 +3146,13 @@ function createBaseQueryFullSpotMarketResponse() {
2913
3146
  market: undefined
2914
3147
  };
2915
3148
  }
3149
+ /**
3150
+ * QuerySpotMarketResponse is the response type for the Query/SpotMarket RPC
3151
+ * method.
3152
+ * @name QueryFullSpotMarketResponse
3153
+ * @package injective.exchange.v1beta1
3154
+ * @see proto type: injective.exchange.v1beta1.QueryFullSpotMarketResponse
3155
+ */
2916
3156
  exports.QueryFullSpotMarketResponse = {
2917
3157
  typeUrl: "/injective.exchange.v1beta1.QueryFullSpotMarketResponse",
2918
3158
  is(o) {
@@ -2990,6 +3230,13 @@ function createBaseQuerySpotOrdersByHashesRequest() {
2990
3230
  orderHashes: []
2991
3231
  };
2992
3232
  }
3233
+ /**
3234
+ * QuerySpotOrdersByHashesRequest is the request type for the
3235
+ * Query/SpotOrdersByHashes RPC method.
3236
+ * @name QuerySpotOrdersByHashesRequest
3237
+ * @package injective.exchange.v1beta1
3238
+ * @see proto type: injective.exchange.v1beta1.QuerySpotOrdersByHashesRequest
3239
+ */
2993
3240
  exports.QuerySpotOrdersByHashesRequest = {
2994
3241
  typeUrl: "/injective.exchange.v1beta1.QuerySpotOrdersByHashesRequest",
2995
3242
  is(o) {
@@ -3085,6 +3332,13 @@ function createBaseQuerySpotOrdersByHashesResponse() {
3085
3332
  orders: []
3086
3333
  };
3087
3334
  }
3335
+ /**
3336
+ * QuerySpotOrdersByHashesResponse is the response type for the
3337
+ * Query/SpotOrdersByHashes RPC method.
3338
+ * @name QuerySpotOrdersByHashesResponse
3339
+ * @package injective.exchange.v1beta1
3340
+ * @see proto type: injective.exchange.v1beta1.QuerySpotOrdersByHashesResponse
3341
+ */
3088
3342
  exports.QuerySpotOrdersByHashesResponse = {
3089
3343
  typeUrl: "/injective.exchange.v1beta1.QuerySpotOrdersByHashesResponse",
3090
3344
  is(o) {
@@ -3164,6 +3418,13 @@ function createBaseQueryTraderSpotOrdersRequest() {
3164
3418
  subaccountId: ""
3165
3419
  };
3166
3420
  }
3421
+ /**
3422
+ * QueryTraderSpotOrdersRequest is the request type for the
3423
+ * Query/TraderSpotOrders RPC method.
3424
+ * @name QueryTraderSpotOrdersRequest
3425
+ * @package injective.exchange.v1beta1
3426
+ * @see proto type: injective.exchange.v1beta1.QueryTraderSpotOrdersRequest
3427
+ */
3167
3428
  exports.QueryTraderSpotOrdersRequest = {
3168
3429
  typeUrl: "/injective.exchange.v1beta1.QueryTraderSpotOrdersRequest",
3169
3430
  is(o) {
@@ -3246,6 +3507,13 @@ function createBaseQueryAccountAddressSpotOrdersRequest() {
3246
3507
  accountAddress: ""
3247
3508
  };
3248
3509
  }
3510
+ /**
3511
+ * QueryAccountAddressSpotOrdersRequest is the request type for the
3512
+ * Query/AccountAddressSpotOrders RPC method.
3513
+ * @name QueryAccountAddressSpotOrdersRequest
3514
+ * @package injective.exchange.v1beta1
3515
+ * @see proto type: injective.exchange.v1beta1.QueryAccountAddressSpotOrdersRequest
3516
+ */
3249
3517
  exports.QueryAccountAddressSpotOrdersRequest = {
3250
3518
  typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressSpotOrdersRequest",
3251
3519
  is(o) {
@@ -3332,6 +3600,11 @@ function createBaseTrimmedSpotLimitOrder() {
3332
3600
  cid: ""
3333
3601
  };
3334
3602
  }
3603
+ /**
3604
+ * @name TrimmedSpotLimitOrder
3605
+ * @package injective.exchange.v1beta1
3606
+ * @see proto type: injective.exchange.v1beta1.TrimmedSpotLimitOrder
3607
+ */
3335
3608
  exports.TrimmedSpotLimitOrder = {
3336
3609
  typeUrl: "/injective.exchange.v1beta1.TrimmedSpotLimitOrder",
3337
3610
  is(o) {
@@ -3457,6 +3730,13 @@ function createBaseQueryTraderSpotOrdersResponse() {
3457
3730
  orders: []
3458
3731
  };
3459
3732
  }
3733
+ /**
3734
+ * QueryTraderSpotOrdersResponse is the response type for the
3735
+ * Query/TraderSpotOrders RPC method.
3736
+ * @name QueryTraderSpotOrdersResponse
3737
+ * @package injective.exchange.v1beta1
3738
+ * @see proto type: injective.exchange.v1beta1.QueryTraderSpotOrdersResponse
3739
+ */
3460
3740
  exports.QueryTraderSpotOrdersResponse = {
3461
3741
  typeUrl: "/injective.exchange.v1beta1.QueryTraderSpotOrdersResponse",
3462
3742
  is(o) {
@@ -3535,6 +3815,13 @@ function createBaseQueryAccountAddressSpotOrdersResponse() {
3535
3815
  orders: []
3536
3816
  };
3537
3817
  }
3818
+ /**
3819
+ * QueryAccountAddressSpotOrdersResponse is the response type for the
3820
+ * Query/AccountAddressSpotOrders RPC method.
3821
+ * @name QueryAccountAddressSpotOrdersResponse
3822
+ * @package injective.exchange.v1beta1
3823
+ * @see proto type: injective.exchange.v1beta1.QueryAccountAddressSpotOrdersResponse
3824
+ */
3538
3825
  exports.QueryAccountAddressSpotOrdersResponse = {
3539
3826
  typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressSpotOrdersResponse",
3540
3827
  is(o) {
@@ -3613,6 +3900,13 @@ function createBaseQuerySpotMidPriceAndTOBRequest() {
3613
3900
  marketId: ""
3614
3901
  };
3615
3902
  }
3903
+ /**
3904
+ * QuerySpotMidPriceAndTOBRequest is the request type for the
3905
+ * Query/SpotMidPriceAndTOB RPC method.
3906
+ * @name QuerySpotMidPriceAndTOBRequest
3907
+ * @package injective.exchange.v1beta1
3908
+ * @see proto type: injective.exchange.v1beta1.QuerySpotMidPriceAndTOBRequest
3909
+ */
3616
3910
  exports.QuerySpotMidPriceAndTOBRequest = {
3617
3911
  typeUrl: "/injective.exchange.v1beta1.QuerySpotMidPriceAndTOBRequest",
3618
3912
  is(o) {
@@ -3685,6 +3979,13 @@ function createBaseQuerySpotMidPriceAndTOBResponse() {
3685
3979
  bestSellPrice: undefined
3686
3980
  };
3687
3981
  }
3982
+ /**
3983
+ * QuerySpotMidPriceAndTOBResponse is the response type for the
3984
+ * Query/SpotMidPriceAndTOB RPC method.
3985
+ * @name QuerySpotMidPriceAndTOBResponse
3986
+ * @package injective.exchange.v1beta1
3987
+ * @see proto type: injective.exchange.v1beta1.QuerySpotMidPriceAndTOBResponse
3988
+ */
3688
3989
  exports.QuerySpotMidPriceAndTOBResponse = {
3689
3990
  typeUrl: "/injective.exchange.v1beta1.QuerySpotMidPriceAndTOBResponse",
3690
3991
  is(o) {
@@ -3777,6 +4078,13 @@ function createBaseQueryDerivativeMidPriceAndTOBRequest() {
3777
4078
  marketId: ""
3778
4079
  };
3779
4080
  }
4081
+ /**
4082
+ * QueryDerivativeMidPriceAndTOBRequest is the request type for the
4083
+ * Query/GetDerivativeMidPriceAndTOB RPC method.
4084
+ * @name QueryDerivativeMidPriceAndTOBRequest
4085
+ * @package injective.exchange.v1beta1
4086
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBRequest
4087
+ */
3780
4088
  exports.QueryDerivativeMidPriceAndTOBRequest = {
3781
4089
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBRequest",
3782
4090
  is(o) {
@@ -3849,6 +4157,13 @@ function createBaseQueryDerivativeMidPriceAndTOBResponse() {
3849
4157
  bestSellPrice: undefined
3850
4158
  };
3851
4159
  }
4160
+ /**
4161
+ * QueryDerivativeMidPriceAndTOBResponse is the response type for the
4162
+ * Query/GetDerivativeMidPriceAndTOB RPC method.
4163
+ * @name QueryDerivativeMidPriceAndTOBResponse
4164
+ * @package injective.exchange.v1beta1
4165
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBResponse
4166
+ */
3852
4167
  exports.QueryDerivativeMidPriceAndTOBResponse = {
3853
4168
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMidPriceAndTOBResponse",
3854
4169
  is(o) {
@@ -3943,6 +4258,13 @@ function createBaseQueryDerivativeOrderbookRequest() {
3943
4258
  limitCumulativeNotional: undefined
3944
4259
  };
3945
4260
  }
4261
+ /**
4262
+ * QueryDerivativeOrderbookRequest is the request type for the
4263
+ * Query/DerivativeOrderbook RPC method.
4264
+ * @name QueryDerivativeOrderbookRequest
4265
+ * @package injective.exchange.v1beta1
4266
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeOrderbookRequest
4267
+ */
3946
4268
  exports.QueryDerivativeOrderbookRequest = {
3947
4269
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrderbookRequest",
3948
4270
  is(o) {
@@ -4036,6 +4358,13 @@ function createBaseQueryDerivativeOrderbookResponse() {
4036
4358
  sellsPriceLevel: []
4037
4359
  };
4038
4360
  }
4361
+ /**
4362
+ * QueryDerivativeOrderbookResponse is the response type for the
4363
+ * Query/DerivativeOrderbook RPC method.
4364
+ * @name QueryDerivativeOrderbookResponse
4365
+ * @package injective.exchange.v1beta1
4366
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeOrderbookResponse
4367
+ */
4039
4368
  exports.QueryDerivativeOrderbookResponse = {
4040
4369
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrderbookResponse",
4041
4370
  is(o) {
@@ -4133,6 +4462,13 @@ function createBaseQueryTraderSpotOrdersToCancelUpToAmountRequest() {
4133
4462
  referencePrice: undefined
4134
4463
  };
4135
4464
  }
4465
+ /**
4466
+ * QueryTraderSpotOrdersToCancelUpToAmountRequest is the request type for the
4467
+ * Query/TraderSpotOrdersToCancelUpToAmountRequest RPC method.
4468
+ * @name QueryTraderSpotOrdersToCancelUpToAmountRequest
4469
+ * @package injective.exchange.v1beta1
4470
+ * @see proto type: injective.exchange.v1beta1.QueryTraderSpotOrdersToCancelUpToAmountRequest
4471
+ */
4136
4472
  exports.QueryTraderSpotOrdersToCancelUpToAmountRequest = {
4137
4473
  typeUrl: "/injective.exchange.v1beta1.QueryTraderSpotOrdersToCancelUpToAmountRequest",
4138
4474
  is(o) {
@@ -4262,6 +4598,13 @@ function createBaseQueryTraderDerivativeOrdersToCancelUpToAmountRequest() {
4262
4598
  referencePrice: undefined
4263
4599
  };
4264
4600
  }
4601
+ /**
4602
+ * QueryTraderDerivativeOrdersToCancelUpToAmountRequest is the request type for
4603
+ * the Query/TraderDerivativeOrdersToCancelUpToAmountRequest RPC method.
4604
+ * @name QueryTraderDerivativeOrdersToCancelUpToAmountRequest
4605
+ * @package injective.exchange.v1beta1
4606
+ * @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeOrdersToCancelUpToAmountRequest
4607
+ */
4265
4608
  exports.QueryTraderDerivativeOrdersToCancelUpToAmountRequest = {
4266
4609
  typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeOrdersToCancelUpToAmountRequest",
4267
4610
  is(o) {
@@ -4377,6 +4720,13 @@ function createBaseQueryTraderDerivativeOrdersRequest() {
4377
4720
  subaccountId: ""
4378
4721
  };
4379
4722
  }
4723
+ /**
4724
+ * QueryTraderDerivativeOrdersRequest is the request type for the
4725
+ * Query/TraderDerivativeOrders RPC method.
4726
+ * @name QueryTraderDerivativeOrdersRequest
4727
+ * @package injective.exchange.v1beta1
4728
+ * @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeOrdersRequest
4729
+ */
4380
4730
  exports.QueryTraderDerivativeOrdersRequest = {
4381
4731
  typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeOrdersRequest",
4382
4732
  is(o) {
@@ -4459,6 +4809,13 @@ function createBaseQueryAccountAddressDerivativeOrdersRequest() {
4459
4809
  accountAddress: ""
4460
4810
  };
4461
4811
  }
4812
+ /**
4813
+ * QueryAccountAddressSpotOrdersRequest is the request type for the
4814
+ * Query/AccountAddressDerivativeOrders RPC method.
4815
+ * @name QueryAccountAddressDerivativeOrdersRequest
4816
+ * @package injective.exchange.v1beta1
4817
+ * @see proto type: injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersRequest
4818
+ */
4462
4819
  exports.QueryAccountAddressDerivativeOrdersRequest = {
4463
4820
  typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersRequest",
4464
4821
  is(o) {
@@ -4546,6 +4903,11 @@ function createBaseTrimmedDerivativeLimitOrder() {
4546
4903
  cid: ""
4547
4904
  };
4548
4905
  }
4906
+ /**
4907
+ * @name TrimmedDerivativeLimitOrder
4908
+ * @package injective.exchange.v1beta1
4909
+ * @see proto type: injective.exchange.v1beta1.TrimmedDerivativeLimitOrder
4910
+ */
4549
4911
  exports.TrimmedDerivativeLimitOrder = {
4550
4912
  typeUrl: "/injective.exchange.v1beta1.TrimmedDerivativeLimitOrder",
4551
4913
  is(o) {
@@ -4682,6 +5044,13 @@ function createBaseQueryTraderDerivativeOrdersResponse() {
4682
5044
  orders: []
4683
5045
  };
4684
5046
  }
5047
+ /**
5048
+ * QueryTraderDerivativeOrdersResponse is the response type for the
5049
+ * Query/TraderDerivativeOrders RPC method.
5050
+ * @name QueryTraderDerivativeOrdersResponse
5051
+ * @package injective.exchange.v1beta1
5052
+ * @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeOrdersResponse
5053
+ */
4685
5054
  exports.QueryTraderDerivativeOrdersResponse = {
4686
5055
  typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeOrdersResponse",
4687
5056
  is(o) {
@@ -4760,6 +5129,13 @@ function createBaseQueryAccountAddressDerivativeOrdersResponse() {
4760
5129
  orders: []
4761
5130
  };
4762
5131
  }
5132
+ /**
5133
+ * QueryAccountAddressDerivativeOrdersResponse is the response type for the
5134
+ * Query/AccountAddressDerivativeOrders RPC method.
5135
+ * @name QueryAccountAddressDerivativeOrdersResponse
5136
+ * @package injective.exchange.v1beta1
5137
+ * @see proto type: injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersResponse
5138
+ */
4763
5139
  exports.QueryAccountAddressDerivativeOrdersResponse = {
4764
5140
  typeUrl: "/injective.exchange.v1beta1.QueryAccountAddressDerivativeOrdersResponse",
4765
5141
  is(o) {
@@ -4840,6 +5216,13 @@ function createBaseQueryDerivativeOrdersByHashesRequest() {
4840
5216
  orderHashes: []
4841
5217
  };
4842
5218
  }
5219
+ /**
5220
+ * QueryTraderDerivativeOrdersRequest is the request type for the
5221
+ * Query/TraderDerivativeOrders RPC method.
5222
+ * @name QueryDerivativeOrdersByHashesRequest
5223
+ * @package injective.exchange.v1beta1
5224
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeOrdersByHashesRequest
5225
+ */
4843
5226
  exports.QueryDerivativeOrdersByHashesRequest = {
4844
5227
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrdersByHashesRequest",
4845
5228
  is(o) {
@@ -4935,6 +5318,13 @@ function createBaseQueryDerivativeOrdersByHashesResponse() {
4935
5318
  orders: []
4936
5319
  };
4937
5320
  }
5321
+ /**
5322
+ * QueryDerivativeOrdersByHashesResponse is the response type for the
5323
+ * Query/DerivativeOrdersByHashes RPC method.
5324
+ * @name QueryDerivativeOrdersByHashesResponse
5325
+ * @package injective.exchange.v1beta1
5326
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeOrdersByHashesResponse
5327
+ */
4938
5328
  exports.QueryDerivativeOrdersByHashesResponse = {
4939
5329
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeOrdersByHashesResponse",
4940
5330
  is(o) {
@@ -5015,6 +5405,13 @@ function createBaseQueryDerivativeMarketsRequest() {
5015
5405
  withMidPriceAndTob: false
5016
5406
  };
5017
5407
  }
5408
+ /**
5409
+ * QueryDerivativeMarketsRequest is the request type for the
5410
+ * Query/DerivativeMarkets RPC method.
5411
+ * @name QueryDerivativeMarketsRequest
5412
+ * @package injective.exchange.v1beta1
5413
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketsRequest
5414
+ */
5018
5415
  exports.QueryDerivativeMarketsRequest = {
5019
5416
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketsRequest",
5020
5417
  is(o) {
@@ -5111,6 +5508,11 @@ function createBasePriceLevel() {
5111
5508
  quantity: ""
5112
5509
  };
5113
5510
  }
5511
+ /**
5512
+ * @name PriceLevel
5513
+ * @package injective.exchange.v1beta1
5514
+ * @see proto type: injective.exchange.v1beta1.PriceLevel
5515
+ */
5114
5516
  exports.PriceLevel = {
5115
5517
  typeUrl: "/injective.exchange.v1beta1.PriceLevel",
5116
5518
  is(o) {
@@ -5193,6 +5595,11 @@ function createBasePerpetualMarketState() {
5193
5595
  fundingInfo: undefined
5194
5596
  };
5195
5597
  }
5598
+ /**
5599
+ * @name PerpetualMarketState
5600
+ * @package injective.exchange.v1beta1
5601
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketState
5602
+ */
5196
5603
  exports.PerpetualMarketState = {
5197
5604
  typeUrl: "/injective.exchange.v1beta1.PerpetualMarketState",
5198
5605
  is(o) {
@@ -5284,6 +5691,11 @@ function createBaseFullDerivativeMarket() {
5284
5691
  midPriceAndTob: undefined
5285
5692
  };
5286
5693
  }
5694
+ /**
5695
+ * @name FullDerivativeMarket
5696
+ * @package injective.exchange.v1beta1
5697
+ * @see proto type: injective.exchange.v1beta1.FullDerivativeMarket
5698
+ */
5287
5699
  exports.FullDerivativeMarket = {
5288
5700
  typeUrl: "/injective.exchange.v1beta1.FullDerivativeMarket",
5289
5701
  is(o) {
@@ -5406,6 +5818,13 @@ function createBaseQueryDerivativeMarketsResponse() {
5406
5818
  markets: []
5407
5819
  };
5408
5820
  }
5821
+ /**
5822
+ * QueryDerivativeMarketsResponse is the response type for the
5823
+ * Query/DerivativeMarkets RPC method.
5824
+ * @name QueryDerivativeMarketsResponse
5825
+ * @package injective.exchange.v1beta1
5826
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketsResponse
5827
+ */
5409
5828
  exports.QueryDerivativeMarketsResponse = {
5410
5829
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketsResponse",
5411
5830
  is(o) {
@@ -5484,6 +5903,13 @@ function createBaseQueryDerivativeMarketRequest() {
5484
5903
  marketId: ""
5485
5904
  };
5486
5905
  }
5906
+ /**
5907
+ * QueryDerivativeMarketRequest is the request type for the
5908
+ * Query/DerivativeMarket RPC method.
5909
+ * @name QueryDerivativeMarketRequest
5910
+ * @package injective.exchange.v1beta1
5911
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketRequest
5912
+ */
5487
5913
  exports.QueryDerivativeMarketRequest = {
5488
5914
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketRequest",
5489
5915
  is(o) {
@@ -5554,6 +5980,13 @@ function createBaseQueryDerivativeMarketResponse() {
5554
5980
  market: undefined
5555
5981
  };
5556
5982
  }
5983
+ /**
5984
+ * QueryDerivativeMarketResponse is the response type for the
5985
+ * Query/DerivativeMarket RPC method.
5986
+ * @name QueryDerivativeMarketResponse
5987
+ * @package injective.exchange.v1beta1
5988
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketResponse
5989
+ */
5557
5990
  exports.QueryDerivativeMarketResponse = {
5558
5991
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketResponse",
5559
5992
  is(o) {
@@ -5629,6 +6062,13 @@ function createBaseQueryDerivativeMarketAddressRequest() {
5629
6062
  marketId: ""
5630
6063
  };
5631
6064
  }
6065
+ /**
6066
+ * QueryDerivativeMarketAddressRequest is the request type for the
6067
+ * Query/DerivativeMarketAddress RPC method.
6068
+ * @name QueryDerivativeMarketAddressRequest
6069
+ * @package injective.exchange.v1beta1
6070
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketAddressRequest
6071
+ */
5632
6072
  exports.QueryDerivativeMarketAddressRequest = {
5633
6073
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketAddressRequest",
5634
6074
  is(o) {
@@ -5700,6 +6140,13 @@ function createBaseQueryDerivativeMarketAddressResponse() {
5700
6140
  subaccountId: ""
5701
6141
  };
5702
6142
  }
6143
+ /**
6144
+ * QueryDerivativeMarketAddressResponse is the response type for the
6145
+ * Query/DerivativeMarketAddress RPC method.
6146
+ * @name QueryDerivativeMarketAddressResponse
6147
+ * @package injective.exchange.v1beta1
6148
+ * @see proto type: injective.exchange.v1beta1.QueryDerivativeMarketAddressResponse
6149
+ */
5703
6150
  exports.QueryDerivativeMarketAddressResponse = {
5704
6151
  typeUrl: "/injective.exchange.v1beta1.QueryDerivativeMarketAddressResponse",
5705
6152
  is(o) {
@@ -5781,6 +6228,13 @@ function createBaseQuerySubaccountTradeNonceRequest() {
5781
6228
  subaccountId: ""
5782
6229
  };
5783
6230
  }
6231
+ /**
6232
+ * QuerySubaccountTradeNonceRequest is the request type for the
6233
+ * Query/SubaccountTradeNonce RPC method.
6234
+ * @name QuerySubaccountTradeNonceRequest
6235
+ * @package injective.exchange.v1beta1
6236
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountTradeNonceRequest
6237
+ */
5784
6238
  exports.QuerySubaccountTradeNonceRequest = {
5785
6239
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountTradeNonceRequest",
5786
6240
  is(o) {
@@ -5851,6 +6305,13 @@ function createBaseQuerySubaccountPositionsRequest() {
5851
6305
  subaccountId: ""
5852
6306
  };
5853
6307
  }
6308
+ /**
6309
+ * QuerySubaccountPositionsRequest is the request type for the
6310
+ * Query/SubaccountPositions RPC method.
6311
+ * @name QuerySubaccountPositionsRequest
6312
+ * @package injective.exchange.v1beta1
6313
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionsRequest
6314
+ */
5854
6315
  exports.QuerySubaccountPositionsRequest = {
5855
6316
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionsRequest",
5856
6317
  is(o) {
@@ -5922,6 +6383,13 @@ function createBaseQuerySubaccountPositionInMarketRequest() {
5922
6383
  marketId: ""
5923
6384
  };
5924
6385
  }
6386
+ /**
6387
+ * QuerySubaccountPositionInMarketRequest is the request type for the
6388
+ * Query/SubaccountPositionInMarket RPC method.
6389
+ * @name QuerySubaccountPositionInMarketRequest
6390
+ * @package injective.exchange.v1beta1
6391
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionInMarketRequest
6392
+ */
5925
6393
  exports.QuerySubaccountPositionInMarketRequest = {
5926
6394
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionInMarketRequest",
5927
6395
  is(o) {
@@ -6004,6 +6472,13 @@ function createBaseQuerySubaccountEffectivePositionInMarketRequest() {
6004
6472
  marketId: ""
6005
6473
  };
6006
6474
  }
6475
+ /**
6476
+ * QuerySubaccountEffectivePositionInMarketRequest is the request type for the
6477
+ * Query/SubaccountEffectivePositionInMarket RPC method.
6478
+ * @name QuerySubaccountEffectivePositionInMarketRequest
6479
+ * @package injective.exchange.v1beta1
6480
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketRequest
6481
+ */
6007
6482
  exports.QuerySubaccountEffectivePositionInMarketRequest = {
6008
6483
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketRequest",
6009
6484
  is(o) {
@@ -6085,6 +6560,13 @@ function createBaseQuerySubaccountOrderMetadataRequest() {
6085
6560
  subaccountId: ""
6086
6561
  };
6087
6562
  }
6563
+ /**
6564
+ * QuerySubaccountOrderMetadataRequest is the request type for the
6565
+ * Query/SubaccountOrderMetadata RPC method.
6566
+ * @name QuerySubaccountOrderMetadataRequest
6567
+ * @package injective.exchange.v1beta1
6568
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountOrderMetadataRequest
6569
+ */
6088
6570
  exports.QuerySubaccountOrderMetadataRequest = {
6089
6571
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrderMetadataRequest",
6090
6572
  is(o) {
@@ -6155,6 +6637,13 @@ function createBaseQuerySubaccountPositionsResponse() {
6155
6637
  state: []
6156
6638
  };
6157
6639
  }
6640
+ /**
6641
+ * QuerySubaccountPositionsResponse is the response type for the
6642
+ * Query/SubaccountPositions RPC method.
6643
+ * @name QuerySubaccountPositionsResponse
6644
+ * @package injective.exchange.v1beta1
6645
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionsResponse
6646
+ */
6158
6647
  exports.QuerySubaccountPositionsResponse = {
6159
6648
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionsResponse",
6160
6649
  is(o) {
@@ -6233,6 +6722,13 @@ function createBaseQuerySubaccountPositionInMarketResponse() {
6233
6722
  state: undefined
6234
6723
  };
6235
6724
  }
6725
+ /**
6726
+ * QuerySubaccountPositionInMarketResponse is the response type for the
6727
+ * Query/SubaccountPositionInMarket RPC method.
6728
+ * @name QuerySubaccountPositionInMarketResponse
6729
+ * @package injective.exchange.v1beta1
6730
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountPositionInMarketResponse
6731
+ */
6236
6732
  exports.QuerySubaccountPositionInMarketResponse = {
6237
6733
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountPositionInMarketResponse",
6238
6734
  is(o) {
@@ -6311,6 +6807,11 @@ function createBaseEffectivePosition() {
6311
6807
  effectiveMargin: ""
6312
6808
  };
6313
6809
  }
6810
+ /**
6811
+ * @name EffectivePosition
6812
+ * @package injective.exchange.v1beta1
6813
+ * @see proto type: injective.exchange.v1beta1.EffectivePosition
6814
+ */
6314
6815
  exports.EffectivePosition = {
6315
6816
  typeUrl: "/injective.exchange.v1beta1.EffectivePosition",
6316
6817
  is(o) {
@@ -6414,6 +6915,13 @@ function createBaseQuerySubaccountEffectivePositionInMarketResponse() {
6414
6915
  state: undefined
6415
6916
  };
6416
6917
  }
6918
+ /**
6919
+ * QuerySubaccountEffectivePositionInMarketResponse is the response type for the
6920
+ * Query/SubaccountEffectivePositionInMarket RPC method.
6921
+ * @name QuerySubaccountEffectivePositionInMarketResponse
6922
+ * @package injective.exchange.v1beta1
6923
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketResponse
6924
+ */
6417
6925
  exports.QuerySubaccountEffectivePositionInMarketResponse = {
6418
6926
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountEffectivePositionInMarketResponse",
6419
6927
  is(o) {
@@ -6489,6 +6997,13 @@ function createBaseQueryPerpetualMarketInfoRequest() {
6489
6997
  marketId: ""
6490
6998
  };
6491
6999
  }
7000
+ /**
7001
+ * QueryPerpetualMarketInfoRequest is the request type for the
7002
+ * Query/PerpetualMarketInfo RPC method.
7003
+ * @name QueryPerpetualMarketInfoRequest
7004
+ * @package injective.exchange.v1beta1
7005
+ * @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketInfoRequest
7006
+ */
6492
7007
  exports.QueryPerpetualMarketInfoRequest = {
6493
7008
  typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketInfoRequest",
6494
7009
  is(o) {
@@ -6559,6 +7074,13 @@ function createBaseQueryPerpetualMarketInfoResponse() {
6559
7074
  info: exchange_1.PerpetualMarketInfo.fromPartial({})
6560
7075
  };
6561
7076
  }
7077
+ /**
7078
+ * QueryPerpetualMarketInfoResponse is the response type for the
7079
+ * Query/PerpetualMarketInfo RPC method.
7080
+ * @name QueryPerpetualMarketInfoResponse
7081
+ * @package injective.exchange.v1beta1
7082
+ * @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketInfoResponse
7083
+ */
6562
7084
  exports.QueryPerpetualMarketInfoResponse = {
6563
7085
  typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketInfoResponse",
6564
7086
  is(o) {
@@ -6634,6 +7156,13 @@ function createBaseQueryExpiryFuturesMarketInfoRequest() {
6634
7156
  marketId: ""
6635
7157
  };
6636
7158
  }
7159
+ /**
7160
+ * QueryExpiryFuturesMarketInfoRequest is the request type for the Query/
7161
+ * ExpiryFuturesMarketInfo RPC method.
7162
+ * @name QueryExpiryFuturesMarketInfoRequest
7163
+ * @package injective.exchange.v1beta1
7164
+ * @see proto type: injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoRequest
7165
+ */
6637
7166
  exports.QueryExpiryFuturesMarketInfoRequest = {
6638
7167
  typeUrl: "/injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoRequest",
6639
7168
  is(o) {
@@ -6704,6 +7233,13 @@ function createBaseQueryExpiryFuturesMarketInfoResponse() {
6704
7233
  info: exchange_1.ExpiryFuturesMarketInfo.fromPartial({})
6705
7234
  };
6706
7235
  }
7236
+ /**
7237
+ * QueryExpiryFuturesMarketInfoResponse is the response type for the Query/
7238
+ * ExpiryFuturesMarketInfo RPC method.
7239
+ * @name QueryExpiryFuturesMarketInfoResponse
7240
+ * @package injective.exchange.v1beta1
7241
+ * @see proto type: injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoResponse
7242
+ */
6707
7243
  exports.QueryExpiryFuturesMarketInfoResponse = {
6708
7244
  typeUrl: "/injective.exchange.v1beta1.QueryExpiryFuturesMarketInfoResponse",
6709
7245
  is(o) {
@@ -6779,6 +7315,13 @@ function createBaseQueryPerpetualMarketFundingRequest() {
6779
7315
  marketId: ""
6780
7316
  };
6781
7317
  }
7318
+ /**
7319
+ * QueryPerpetualMarketFundingRequest is the request type for the
7320
+ * Query/PerpetualMarketFunding RPC method.
7321
+ * @name QueryPerpetualMarketFundingRequest
7322
+ * @package injective.exchange.v1beta1
7323
+ * @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketFundingRequest
7324
+ */
6782
7325
  exports.QueryPerpetualMarketFundingRequest = {
6783
7326
  typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketFundingRequest",
6784
7327
  is(o) {
@@ -6849,6 +7392,13 @@ function createBaseQueryPerpetualMarketFundingResponse() {
6849
7392
  state: exchange_1.PerpetualMarketFunding.fromPartial({})
6850
7393
  };
6851
7394
  }
7395
+ /**
7396
+ * QueryPerpetualMarketFundingResponse is the response type for the
7397
+ * Query/PerpetualMarketFunding RPC method.
7398
+ * @name QueryPerpetualMarketFundingResponse
7399
+ * @package injective.exchange.v1beta1
7400
+ * @see proto type: injective.exchange.v1beta1.QueryPerpetualMarketFundingResponse
7401
+ */
6852
7402
  exports.QueryPerpetualMarketFundingResponse = {
6853
7403
  typeUrl: "/injective.exchange.v1beta1.QueryPerpetualMarketFundingResponse",
6854
7404
  is(o) {
@@ -6924,6 +7474,13 @@ function createBaseQuerySubaccountOrderMetadataResponse() {
6924
7474
  metadata: []
6925
7475
  };
6926
7476
  }
7477
+ /**
7478
+ * QuerySubaccountOrderMetadataResponse is the response type for the
7479
+ * Query/SubaccountOrderMetadata RPC method.
7480
+ * @name QuerySubaccountOrderMetadataResponse
7481
+ * @package injective.exchange.v1beta1
7482
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountOrderMetadataResponse
7483
+ */
6927
7484
  exports.QuerySubaccountOrderMetadataResponse = {
6928
7485
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountOrderMetadataResponse",
6929
7486
  is(o) {
@@ -7002,6 +7559,13 @@ function createBaseQuerySubaccountTradeNonceResponse() {
7002
7559
  nonce: 0
7003
7560
  };
7004
7561
  }
7562
+ /**
7563
+ * QuerySubaccountTradeNonceResponse is the response type for the
7564
+ * Query/SubaccountTradeNonce RPC method.
7565
+ * @name QuerySubaccountTradeNonceResponse
7566
+ * @package injective.exchange.v1beta1
7567
+ * @see proto type: injective.exchange.v1beta1.QuerySubaccountTradeNonceResponse
7568
+ */
7005
7569
  exports.QuerySubaccountTradeNonceResponse = {
7006
7570
  typeUrl: "/injective.exchange.v1beta1.QuerySubaccountTradeNonceResponse",
7007
7571
  is(o) {
@@ -7070,6 +7634,13 @@ exports.QuerySubaccountTradeNonceResponse = {
7070
7634
  function createBaseQueryModuleStateRequest() {
7071
7635
  return {};
7072
7636
  }
7637
+ /**
7638
+ * QueryModuleStateRequest is the request type for the Query/ExchangeModuleState
7639
+ * RPC method.
7640
+ * @name QueryModuleStateRequest
7641
+ * @package injective.exchange.v1beta1
7642
+ * @see proto type: injective.exchange.v1beta1.QueryModuleStateRequest
7643
+ */
7073
7644
  exports.QueryModuleStateRequest = {
7074
7645
  typeUrl: "/injective.exchange.v1beta1.QueryModuleStateRequest",
7075
7646
  is(o) {
@@ -7129,6 +7700,13 @@ function createBaseQueryModuleStateResponse() {
7129
7700
  state: undefined
7130
7701
  };
7131
7702
  }
7703
+ /**
7704
+ * QueryModuleStateResponse is the response type for the
7705
+ * Query/ExchangeModuleState RPC method.
7706
+ * @name QueryModuleStateResponse
7707
+ * @package injective.exchange.v1beta1
7708
+ * @see proto type: injective.exchange.v1beta1.QueryModuleStateResponse
7709
+ */
7132
7710
  exports.QueryModuleStateResponse = {
7133
7711
  typeUrl: "/injective.exchange.v1beta1.QueryModuleStateResponse",
7134
7712
  is(o) {
@@ -7202,6 +7780,12 @@ exports.QueryModuleStateResponse = {
7202
7780
  function createBaseQueryPositionsRequest() {
7203
7781
  return {};
7204
7782
  }
7783
+ /**
7784
+ * QueryPositionsRequest is the request type for the Query/Positions RPC method.
7785
+ * @name QueryPositionsRequest
7786
+ * @package injective.exchange.v1beta1
7787
+ * @see proto type: injective.exchange.v1beta1.QueryPositionsRequest
7788
+ */
7205
7789
  exports.QueryPositionsRequest = {
7206
7790
  typeUrl: "/injective.exchange.v1beta1.QueryPositionsRequest",
7207
7791
  is(o) {
@@ -7261,6 +7845,13 @@ function createBaseQueryPositionsResponse() {
7261
7845
  state: []
7262
7846
  };
7263
7847
  }
7848
+ /**
7849
+ * QueryPositionsResponse is the response type for the Query/Positions RPC
7850
+ * method.
7851
+ * @name QueryPositionsResponse
7852
+ * @package injective.exchange.v1beta1
7853
+ * @see proto type: injective.exchange.v1beta1.QueryPositionsResponse
7854
+ */
7264
7855
  exports.QueryPositionsResponse = {
7265
7856
  typeUrl: "/injective.exchange.v1beta1.QueryPositionsResponse",
7266
7857
  is(o) {
@@ -7340,6 +7931,13 @@ function createBaseQueryTradeRewardPointsRequest() {
7340
7931
  pendingPoolTimestamp: BigInt(0)
7341
7932
  };
7342
7933
  }
7934
+ /**
7935
+ * QueryTradeRewardPointsRequest is the request type for the
7936
+ * Query/TradeRewardPoints RPC method.
7937
+ * @name QueryTradeRewardPointsRequest
7938
+ * @package injective.exchange.v1beta1
7939
+ * @see proto type: injective.exchange.v1beta1.QueryTradeRewardPointsRequest
7940
+ */
7343
7941
  exports.QueryTradeRewardPointsRequest = {
7344
7942
  typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardPointsRequest",
7345
7943
  is(o) {
@@ -7424,6 +8022,13 @@ function createBaseQueryTradeRewardPointsResponse() {
7424
8022
  accountTradeRewardPoints: []
7425
8023
  };
7426
8024
  }
8025
+ /**
8026
+ * QueryTradeRewardPointsResponse is the response type for the
8027
+ * Query/TradeRewardPoints RPC method.
8028
+ * @name QueryTradeRewardPointsResponse
8029
+ * @package injective.exchange.v1beta1
8030
+ * @see proto type: injective.exchange.v1beta1.QueryTradeRewardPointsResponse
8031
+ */
7427
8032
  exports.QueryTradeRewardPointsResponse = {
7428
8033
  typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardPointsResponse",
7429
8034
  is(o) {
@@ -7495,6 +8100,13 @@ exports.QueryTradeRewardPointsResponse = {
7495
8100
  function createBaseQueryTradeRewardCampaignRequest() {
7496
8101
  return {};
7497
8102
  }
8103
+ /**
8104
+ * QueryTradeRewardCampaignRequest is the request type for the
8105
+ * Query/TradeRewardCampaign RPC method.
8106
+ * @name QueryTradeRewardCampaignRequest
8107
+ * @package injective.exchange.v1beta1
8108
+ * @see proto type: injective.exchange.v1beta1.QueryTradeRewardCampaignRequest
8109
+ */
7498
8110
  exports.QueryTradeRewardCampaignRequest = {
7499
8111
  typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardCampaignRequest",
7500
8112
  is(o) {
@@ -7558,6 +8170,13 @@ function createBaseQueryTradeRewardCampaignResponse() {
7558
8170
  pendingTotalTradeRewardPoints: []
7559
8171
  };
7560
8172
  }
8173
+ /**
8174
+ * QueryTradeRewardCampaignResponse is the response type for the
8175
+ * Query/TradeRewardCampaign RPC method.
8176
+ * @name QueryTradeRewardCampaignResponse
8177
+ * @package injective.exchange.v1beta1
8178
+ * @see proto type: injective.exchange.v1beta1.QueryTradeRewardCampaignResponse
8179
+ */
7561
8180
  exports.QueryTradeRewardCampaignResponse = {
7562
8181
  typeUrl: "/injective.exchange.v1beta1.QueryTradeRewardCampaignResponse",
7563
8182
  is(o) {
@@ -7687,6 +8306,13 @@ function createBaseQueryIsOptedOutOfRewardsRequest() {
7687
8306
  account: ""
7688
8307
  };
7689
8308
  }
8309
+ /**
8310
+ * QueryIsRegisteredDMMRequest is the request type for the Query/IsRegisteredDMM
8311
+ * RPC method.
8312
+ * @name QueryIsOptedOutOfRewardsRequest
8313
+ * @package injective.exchange.v1beta1
8314
+ * @see proto type: injective.exchange.v1beta1.QueryIsOptedOutOfRewardsRequest
8315
+ */
7690
8316
  exports.QueryIsOptedOutOfRewardsRequest = {
7691
8317
  typeUrl: "/injective.exchange.v1beta1.QueryIsOptedOutOfRewardsRequest",
7692
8318
  is(o) {
@@ -7757,6 +8383,13 @@ function createBaseQueryIsOptedOutOfRewardsResponse() {
7757
8383
  isOptedOut: false
7758
8384
  };
7759
8385
  }
8386
+ /**
8387
+ * QueryIsRegisteredDMMResponse is the response type for the
8388
+ * Query/IsRegisteredDMM RPC method.
8389
+ * @name QueryIsOptedOutOfRewardsResponse
8390
+ * @package injective.exchange.v1beta1
8391
+ * @see proto type: injective.exchange.v1beta1.QueryIsOptedOutOfRewardsResponse
8392
+ */
7760
8393
  exports.QueryIsOptedOutOfRewardsResponse = {
7761
8394
  typeUrl: "/injective.exchange.v1beta1.QueryIsOptedOutOfRewardsResponse",
7762
8395
  is(o) {
@@ -7825,6 +8458,13 @@ exports.QueryIsOptedOutOfRewardsResponse = {
7825
8458
  function createBaseQueryOptedOutOfRewardsAccountsRequest() {
7826
8459
  return {};
7827
8460
  }
8461
+ /**
8462
+ * QueryRegisteredDMMsRequest is the request type for the Query/RegisteredDMMs
8463
+ * RPC method.
8464
+ * @name QueryOptedOutOfRewardsAccountsRequest
8465
+ * @package injective.exchange.v1beta1
8466
+ * @see proto type: injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsRequest
8467
+ */
7828
8468
  exports.QueryOptedOutOfRewardsAccountsRequest = {
7829
8469
  typeUrl: "/injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsRequest",
7830
8470
  is(o) {
@@ -7884,6 +8524,13 @@ function createBaseQueryOptedOutOfRewardsAccountsResponse() {
7884
8524
  accounts: []
7885
8525
  };
7886
8526
  }
8527
+ /**
8528
+ * QueryRegisteredDMMsResponse is the response type for the Query/RegisteredDMMs
8529
+ * RPC method.
8530
+ * @name QueryOptedOutOfRewardsAccountsResponse
8531
+ * @package injective.exchange.v1beta1
8532
+ * @see proto type: injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsResponse
8533
+ */
7887
8534
  exports.QueryOptedOutOfRewardsAccountsResponse = {
7888
8535
  typeUrl: "/injective.exchange.v1beta1.QueryOptedOutOfRewardsAccountsResponse",
7889
8536
  is(o) {
@@ -7957,6 +8604,13 @@ function createBaseQueryFeeDiscountAccountInfoRequest() {
7957
8604
  account: ""
7958
8605
  };
7959
8606
  }
8607
+ /**
8608
+ * QueryFeeDiscountAccountInfoRequest is the request type for the
8609
+ * Query/FeeDiscountAccountInfo RPC method.
8610
+ * @name QueryFeeDiscountAccountInfoRequest
8611
+ * @package injective.exchange.v1beta1
8612
+ * @see proto type: injective.exchange.v1beta1.QueryFeeDiscountAccountInfoRequest
8613
+ */
7960
8614
  exports.QueryFeeDiscountAccountInfoRequest = {
7961
8615
  typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountAccountInfoRequest",
7962
8616
  is(o) {
@@ -8029,6 +8683,13 @@ function createBaseQueryFeeDiscountAccountInfoResponse() {
8029
8683
  accountTtl: undefined
8030
8684
  };
8031
8685
  }
8686
+ /**
8687
+ * QueryFeeDiscountAccountInfoResponse is the response type for the
8688
+ * Query/FeeDiscountAccountInfo RPC method.
8689
+ * @name QueryFeeDiscountAccountInfoResponse
8690
+ * @package injective.exchange.v1beta1
8691
+ * @see proto type: injective.exchange.v1beta1.QueryFeeDiscountAccountInfoResponse
8692
+ */
8032
8693
  exports.QueryFeeDiscountAccountInfoResponse = {
8033
8694
  typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountAccountInfoResponse",
8034
8695
  is(o) {
@@ -8125,6 +8786,13 @@ exports.QueryFeeDiscountAccountInfoResponse = {
8125
8786
  function createBaseQueryFeeDiscountScheduleRequest() {
8126
8787
  return {};
8127
8788
  }
8789
+ /**
8790
+ * QueryFeeDiscountScheduleRequest is the request type for the
8791
+ * Query/FeeDiscountSchedule RPC method.
8792
+ * @name QueryFeeDiscountScheduleRequest
8793
+ * @package injective.exchange.v1beta1
8794
+ * @see proto type: injective.exchange.v1beta1.QueryFeeDiscountScheduleRequest
8795
+ */
8128
8796
  exports.QueryFeeDiscountScheduleRequest = {
8129
8797
  typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountScheduleRequest",
8130
8798
  is(o) {
@@ -8184,6 +8852,13 @@ function createBaseQueryFeeDiscountScheduleResponse() {
8184
8852
  feeDiscountSchedule: undefined
8185
8853
  };
8186
8854
  }
8855
+ /**
8856
+ * QueryFeeDiscountScheduleResponse is the response type for the
8857
+ * Query/FeeDiscountSchedule RPC method.
8858
+ * @name QueryFeeDiscountScheduleResponse
8859
+ * @package injective.exchange.v1beta1
8860
+ * @see proto type: injective.exchange.v1beta1.QueryFeeDiscountScheduleResponse
8861
+ */
8187
8862
  exports.QueryFeeDiscountScheduleResponse = {
8188
8863
  typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountScheduleResponse",
8189
8864
  is(o) {
@@ -8259,6 +8934,13 @@ function createBaseQueryBalanceMismatchesRequest() {
8259
8934
  dustFactor: BigInt(0)
8260
8935
  };
8261
8936
  }
8937
+ /**
8938
+ * QueryBalanceMismatchesRequest is the request type for the
8939
+ * Query/QueryBalanceMismatches RPC method.
8940
+ * @name QueryBalanceMismatchesRequest
8941
+ * @package injective.exchange.v1beta1
8942
+ * @see proto type: injective.exchange.v1beta1.QueryBalanceMismatchesRequest
8943
+ */
8262
8944
  exports.QueryBalanceMismatchesRequest = {
8263
8945
  typeUrl: "/injective.exchange.v1beta1.QueryBalanceMismatchesRequest",
8264
8946
  is(o) {
@@ -8335,6 +9017,11 @@ function createBaseBalanceMismatch() {
8335
9017
  difference: ""
8336
9018
  };
8337
9019
  }
9020
+ /**
9021
+ * @name BalanceMismatch
9022
+ * @package injective.exchange.v1beta1
9023
+ * @see proto type: injective.exchange.v1beta1.BalanceMismatch
9024
+ */
8338
9025
  exports.BalanceMismatch = {
8339
9026
  typeUrl: "/injective.exchange.v1beta1.BalanceMismatch",
8340
9027
  is(o) {
@@ -8471,6 +9158,13 @@ function createBaseQueryBalanceMismatchesResponse() {
8471
9158
  balanceMismatches: []
8472
9159
  };
8473
9160
  }
9161
+ /**
9162
+ * QueryBalanceMismatchesResponse is the response type for the
9163
+ * Query/QueryBalanceMismatches RPC method.
9164
+ * @name QueryBalanceMismatchesResponse
9165
+ * @package injective.exchange.v1beta1
9166
+ * @see proto type: injective.exchange.v1beta1.QueryBalanceMismatchesResponse
9167
+ */
8474
9168
  exports.QueryBalanceMismatchesResponse = {
8475
9169
  typeUrl: "/injective.exchange.v1beta1.QueryBalanceMismatchesResponse",
8476
9170
  is(o) {
@@ -8547,6 +9241,13 @@ exports.QueryBalanceMismatchesResponse = {
8547
9241
  function createBaseQueryBalanceWithBalanceHoldsRequest() {
8548
9242
  return {};
8549
9243
  }
9244
+ /**
9245
+ * QueryBalanceWithBalanceHoldsRequest is the request type for the
9246
+ * Query/QueryBalanceWithBalanceHolds RPC method.
9247
+ * @name QueryBalanceWithBalanceHoldsRequest
9248
+ * @package injective.exchange.v1beta1
9249
+ * @see proto type: injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsRequest
9250
+ */
8550
9251
  exports.QueryBalanceWithBalanceHoldsRequest = {
8551
9252
  typeUrl: "/injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsRequest",
8552
9253
  is(o) {
@@ -8610,6 +9311,11 @@ function createBaseBalanceWithMarginHold() {
8610
9311
  balanceHold: ""
8611
9312
  };
8612
9313
  }
9314
+ /**
9315
+ * @name BalanceWithMarginHold
9316
+ * @package injective.exchange.v1beta1
9317
+ * @see proto type: injective.exchange.v1beta1.BalanceWithMarginHold
9318
+ */
8613
9319
  exports.BalanceWithMarginHold = {
8614
9320
  typeUrl: "/injective.exchange.v1beta1.BalanceWithMarginHold",
8615
9321
  is(o) {
@@ -8724,6 +9430,13 @@ function createBaseQueryBalanceWithBalanceHoldsResponse() {
8724
9430
  balanceWithBalanceHolds: []
8725
9431
  };
8726
9432
  }
9433
+ /**
9434
+ * QueryBalanceWithBalanceHoldsResponse is the response type for the
9435
+ * Query/QueryBalanceWithBalanceHolds RPC method.
9436
+ * @name QueryBalanceWithBalanceHoldsResponse
9437
+ * @package injective.exchange.v1beta1
9438
+ * @see proto type: injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsResponse
9439
+ */
8727
9440
  exports.QueryBalanceWithBalanceHoldsResponse = {
8728
9441
  typeUrl: "/injective.exchange.v1beta1.QueryBalanceWithBalanceHoldsResponse",
8729
9442
  is(o) {
@@ -8800,6 +9513,13 @@ exports.QueryBalanceWithBalanceHoldsResponse = {
8800
9513
  function createBaseQueryFeeDiscountTierStatisticsRequest() {
8801
9514
  return {};
8802
9515
  }
9516
+ /**
9517
+ * QueryFeeDiscountTierStatisticsRequest is the request type for the
9518
+ * Query/QueryFeeDiscountTierStatistics RPC method.
9519
+ * @name QueryFeeDiscountTierStatisticsRequest
9520
+ * @package injective.exchange.v1beta1
9521
+ * @see proto type: injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsRequest
9522
+ */
8803
9523
  exports.QueryFeeDiscountTierStatisticsRequest = {
8804
9524
  typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsRequest",
8805
9525
  is(o) {
@@ -8860,6 +9580,11 @@ function createBaseTierStatistic() {
8860
9580
  count: BigInt(0)
8861
9581
  };
8862
9582
  }
9583
+ /**
9584
+ * @name TierStatistic
9585
+ * @package injective.exchange.v1beta1
9586
+ * @see proto type: injective.exchange.v1beta1.TierStatistic
9587
+ */
8863
9588
  exports.TierStatistic = {
8864
9589
  typeUrl: "/injective.exchange.v1beta1.TierStatistic",
8865
9590
  is(o) {
@@ -8941,6 +9666,13 @@ function createBaseQueryFeeDiscountTierStatisticsResponse() {
8941
9666
  statistics: []
8942
9667
  };
8943
9668
  }
9669
+ /**
9670
+ * QueryFeeDiscountTierStatisticsResponse is the response type for the
9671
+ * Query/QueryFeeDiscountTierStatistics RPC method.
9672
+ * @name QueryFeeDiscountTierStatisticsResponse
9673
+ * @package injective.exchange.v1beta1
9674
+ * @see proto type: injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsResponse
9675
+ */
8944
9676
  exports.QueryFeeDiscountTierStatisticsResponse = {
8945
9677
  typeUrl: "/injective.exchange.v1beta1.QueryFeeDiscountTierStatisticsResponse",
8946
9678
  is(o) {
@@ -9017,6 +9749,13 @@ exports.QueryFeeDiscountTierStatisticsResponse = {
9017
9749
  function createBaseMitoVaultInfosRequest() {
9018
9750
  return {};
9019
9751
  }
9752
+ /**
9753
+ * MitoVaultInfosRequest is the request type for the Query/MitoVaultInfos RPC
9754
+ * method.
9755
+ * @name MitoVaultInfosRequest
9756
+ * @package injective.exchange.v1beta1
9757
+ * @see proto type: injective.exchange.v1beta1.MitoVaultInfosRequest
9758
+ */
9020
9759
  exports.MitoVaultInfosRequest = {
9021
9760
  typeUrl: "/injective.exchange.v1beta1.MitoVaultInfosRequest",
9022
9761
  is(o) {
@@ -9079,6 +9818,13 @@ function createBaseMitoVaultInfosResponse() {
9079
9818
  cw20Addresses: []
9080
9819
  };
9081
9820
  }
9821
+ /**
9822
+ * MitoVaultInfosResponse is the response type for the Query/MitoVaultInfos RPC
9823
+ * method.
9824
+ * @name MitoVaultInfosResponse
9825
+ * @package injective.exchange.v1beta1
9826
+ * @see proto type: injective.exchange.v1beta1.MitoVaultInfosResponse
9827
+ */
9082
9828
  exports.MitoVaultInfosResponse = {
9083
9829
  typeUrl: "/injective.exchange.v1beta1.MitoVaultInfosResponse",
9084
9830
  is(o) {
@@ -9194,6 +9940,13 @@ function createBaseQueryMarketIDFromVaultRequest() {
9194
9940
  vaultAddress: ""
9195
9941
  };
9196
9942
  }
9943
+ /**
9944
+ * QueryMarketIDFromVaultRequest is the request type for the
9945
+ * Query/QueryMarketIDFromVault RPC method.
9946
+ * @name QueryMarketIDFromVaultRequest
9947
+ * @package injective.exchange.v1beta1
9948
+ * @see proto type: injective.exchange.v1beta1.QueryMarketIDFromVaultRequest
9949
+ */
9197
9950
  exports.QueryMarketIDFromVaultRequest = {
9198
9951
  typeUrl: "/injective.exchange.v1beta1.QueryMarketIDFromVaultRequest",
9199
9952
  is(o) {
@@ -9264,6 +10017,13 @@ function createBaseQueryMarketIDFromVaultResponse() {
9264
10017
  marketId: ""
9265
10018
  };
9266
10019
  }
10020
+ /**
10021
+ * QueryMarketIDFromVaultResponse is the response type for the
10022
+ * Query/QueryMarketIDFromVault RPC method.
10023
+ * @name QueryMarketIDFromVaultResponse
10024
+ * @package injective.exchange.v1beta1
10025
+ * @see proto type: injective.exchange.v1beta1.QueryMarketIDFromVaultResponse
10026
+ */
9267
10027
  exports.QueryMarketIDFromVaultResponse = {
9268
10028
  typeUrl: "/injective.exchange.v1beta1.QueryMarketIDFromVaultResponse",
9269
10029
  is(o) {
@@ -9334,6 +10094,11 @@ function createBaseQueryHistoricalTradeRecordsRequest() {
9334
10094
  marketId: ""
9335
10095
  };
9336
10096
  }
10097
+ /**
10098
+ * @name QueryHistoricalTradeRecordsRequest
10099
+ * @package injective.exchange.v1beta1
10100
+ * @see proto type: injective.exchange.v1beta1.QueryHistoricalTradeRecordsRequest
10101
+ */
9337
10102
  exports.QueryHistoricalTradeRecordsRequest = {
9338
10103
  typeUrl: "/injective.exchange.v1beta1.QueryHistoricalTradeRecordsRequest",
9339
10104
  is(o) {
@@ -9404,6 +10169,11 @@ function createBaseQueryHistoricalTradeRecordsResponse() {
9404
10169
  tradeRecords: []
9405
10170
  };
9406
10171
  }
10172
+ /**
10173
+ * @name QueryHistoricalTradeRecordsResponse
10174
+ * @package injective.exchange.v1beta1
10175
+ * @see proto type: injective.exchange.v1beta1.QueryHistoricalTradeRecordsResponse
10176
+ */
9407
10177
  exports.QueryHistoricalTradeRecordsResponse = {
9408
10178
  typeUrl: "/injective.exchange.v1beta1.QueryHistoricalTradeRecordsResponse",
9409
10179
  is(o) {
@@ -9485,6 +10255,13 @@ function createBaseTradeHistoryOptions() {
9485
10255
  includeMetadata: false
9486
10256
  };
9487
10257
  }
10258
+ /**
10259
+ * TradeHistoryOptions are the optional params for Query/MarketVolatility RPC
10260
+ * method.
10261
+ * @name TradeHistoryOptions
10262
+ * @package injective.exchange.v1beta1
10263
+ * @see proto type: injective.exchange.v1beta1.TradeHistoryOptions
10264
+ */
9488
10265
  exports.TradeHistoryOptions = {
9489
10266
  typeUrl: "/injective.exchange.v1beta1.TradeHistoryOptions",
9490
10267
  is(o) {
@@ -9589,6 +10366,13 @@ function createBaseQueryMarketVolatilityRequest() {
9589
10366
  tradeHistoryOptions: undefined
9590
10367
  };
9591
10368
  }
10369
+ /**
10370
+ * QueryMarketVolatilityRequest are the request params for the
10371
+ * Query/MarketVolatility RPC method.
10372
+ * @name QueryMarketVolatilityRequest
10373
+ * @package injective.exchange.v1beta1
10374
+ * @see proto type: injective.exchange.v1beta1.QueryMarketVolatilityRequest
10375
+ */
9592
10376
  exports.QueryMarketVolatilityRequest = {
9593
10377
  typeUrl: "/injective.exchange.v1beta1.QueryMarketVolatilityRequest",
9594
10378
  is(o) {
@@ -9677,6 +10461,13 @@ function createBaseQueryMarketVolatilityResponse() {
9677
10461
  rawHistory: []
9678
10462
  };
9679
10463
  }
10464
+ /**
10465
+ * QueryMarketVolatilityResponse is the response type for the
10466
+ * Query/MarketVolatility RPC method.
10467
+ * @name QueryMarketVolatilityResponse
10468
+ * @package injective.exchange.v1beta1
10469
+ * @see proto type: injective.exchange.v1beta1.QueryMarketVolatilityResponse
10470
+ */
9680
10471
  exports.QueryMarketVolatilityResponse = {
9681
10472
  typeUrl: "/injective.exchange.v1beta1.QueryMarketVolatilityResponse",
9682
10473
  is(o) {
@@ -9778,6 +10569,13 @@ function createBaseQueryBinaryMarketsRequest() {
9778
10569
  status: ""
9779
10570
  };
9780
10571
  }
10572
+ /**
10573
+ * QuerBinaryMarketsRequest is the request type for the Query/BinaryMarkets RPC
10574
+ * method.
10575
+ * @name QueryBinaryMarketsRequest
10576
+ * @package injective.exchange.v1beta1
10577
+ * @see proto type: injective.exchange.v1beta1.QueryBinaryMarketsRequest
10578
+ */
9781
10579
  exports.QueryBinaryMarketsRequest = {
9782
10580
  typeUrl: "/injective.exchange.v1beta1.QueryBinaryMarketsRequest",
9783
10581
  is(o) {
@@ -9848,6 +10646,13 @@ function createBaseQueryBinaryMarketsResponse() {
9848
10646
  markets: []
9849
10647
  };
9850
10648
  }
10649
+ /**
10650
+ * QueryBinaryMarketsResponse is the response type for the Query/BinaryMarkets
10651
+ * RPC method.
10652
+ * @name QueryBinaryMarketsResponse
10653
+ * @package injective.exchange.v1beta1
10654
+ * @see proto type: injective.exchange.v1beta1.QueryBinaryMarketsResponse
10655
+ */
9851
10656
  exports.QueryBinaryMarketsResponse = {
9852
10657
  typeUrl: "/injective.exchange.v1beta1.QueryBinaryMarketsResponse",
9853
10658
  is(o) {
@@ -9927,6 +10732,13 @@ function createBaseQueryTraderDerivativeConditionalOrdersRequest() {
9927
10732
  marketId: ""
9928
10733
  };
9929
10734
  }
10735
+ /**
10736
+ * QueryConditionalOrdersRequest is the request type for the
10737
+ * Query/ConditionalOrders RPC method.
10738
+ * @name QueryTraderDerivativeConditionalOrdersRequest
10739
+ * @package injective.exchange.v1beta1
10740
+ * @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersRequest
10741
+ */
9930
10742
  exports.QueryTraderDerivativeConditionalOrdersRequest = {
9931
10743
  typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersRequest",
9932
10744
  is(o) {
@@ -10015,6 +10827,11 @@ function createBaseTrimmedDerivativeConditionalOrder() {
10015
10827
  cid: ""
10016
10828
  };
10017
10829
  }
10830
+ /**
10831
+ * @name TrimmedDerivativeConditionalOrder
10832
+ * @package injective.exchange.v1beta1
10833
+ * @see proto type: injective.exchange.v1beta1.TrimmedDerivativeConditionalOrder
10834
+ */
10018
10835
  exports.TrimmedDerivativeConditionalOrder = {
10019
10836
  typeUrl: "/injective.exchange.v1beta1.TrimmedDerivativeConditionalOrder",
10020
10837
  is(o) {
@@ -10162,6 +10979,13 @@ function createBaseQueryTraderDerivativeConditionalOrdersResponse() {
10162
10979
  orders: []
10163
10980
  };
10164
10981
  }
10982
+ /**
10983
+ * QueryTraderDerivativeOrdersResponse is the response type for the
10984
+ * Query/TraderDerivativeOrders RPC method.
10985
+ * @name QueryTraderDerivativeConditionalOrdersResponse
10986
+ * @package injective.exchange.v1beta1
10987
+ * @see proto type: injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersResponse
10988
+ */
10165
10989
  exports.QueryTraderDerivativeConditionalOrdersResponse = {
10166
10990
  typeUrl: "/injective.exchange.v1beta1.QueryTraderDerivativeConditionalOrdersResponse",
10167
10991
  is(o) {
@@ -10240,6 +11064,11 @@ function createBaseQueryMarketAtomicExecutionFeeMultiplierRequest() {
10240
11064
  marketId: ""
10241
11065
  };
10242
11066
  }
11067
+ /**
11068
+ * @name QueryMarketAtomicExecutionFeeMultiplierRequest
11069
+ * @package injective.exchange.v1beta1
11070
+ * @see proto type: injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierRequest
11071
+ */
10243
11072
  exports.QueryMarketAtomicExecutionFeeMultiplierRequest = {
10244
11073
  typeUrl: "/injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierRequest",
10245
11074
  is(o) {
@@ -10310,6 +11139,11 @@ function createBaseQueryMarketAtomicExecutionFeeMultiplierResponse() {
10310
11139
  multiplier: ""
10311
11140
  };
10312
11141
  }
11142
+ /**
11143
+ * @name QueryMarketAtomicExecutionFeeMultiplierResponse
11144
+ * @package injective.exchange.v1beta1
11145
+ * @see proto type: injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierResponse
11146
+ */
10313
11147
  exports.QueryMarketAtomicExecutionFeeMultiplierResponse = {
10314
11148
  typeUrl: "/injective.exchange.v1beta1.QueryMarketAtomicExecutionFeeMultiplierResponse",
10315
11149
  is(o) {
@@ -10380,6 +11214,11 @@ function createBaseQueryActiveStakeGrantRequest() {
10380
11214
  grantee: ""
10381
11215
  };
10382
11216
  }
11217
+ /**
11218
+ * @name QueryActiveStakeGrantRequest
11219
+ * @package injective.exchange.v1beta1
11220
+ * @see proto type: injective.exchange.v1beta1.QueryActiveStakeGrantRequest
11221
+ */
10383
11222
  exports.QueryActiveStakeGrantRequest = {
10384
11223
  typeUrl: "/injective.exchange.v1beta1.QueryActiveStakeGrantRequest",
10385
11224
  is(o) {
@@ -10451,6 +11290,11 @@ function createBaseQueryActiveStakeGrantResponse() {
10451
11290
  effectiveGrant: undefined
10452
11291
  };
10453
11292
  }
11293
+ /**
11294
+ * @name QueryActiveStakeGrantResponse
11295
+ * @package injective.exchange.v1beta1
11296
+ * @see proto type: injective.exchange.v1beta1.QueryActiveStakeGrantResponse
11297
+ */
10454
11298
  exports.QueryActiveStakeGrantResponse = {
10455
11299
  typeUrl: "/injective.exchange.v1beta1.QueryActiveStakeGrantResponse",
10456
11300
  is(o) {
@@ -10539,6 +11383,11 @@ function createBaseQueryGrantAuthorizationRequest() {
10539
11383
  grantee: ""
10540
11384
  };
10541
11385
  }
11386
+ /**
11387
+ * @name QueryGrantAuthorizationRequest
11388
+ * @package injective.exchange.v1beta1
11389
+ * @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationRequest
11390
+ */
10542
11391
  exports.QueryGrantAuthorizationRequest = {
10543
11392
  typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationRequest",
10544
11393
  is(o) {
@@ -10620,6 +11469,11 @@ function createBaseQueryGrantAuthorizationResponse() {
10620
11469
  amount: ""
10621
11470
  };
10622
11471
  }
11472
+ /**
11473
+ * @name QueryGrantAuthorizationResponse
11474
+ * @package injective.exchange.v1beta1
11475
+ * @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationResponse
11476
+ */
10623
11477
  exports.QueryGrantAuthorizationResponse = {
10624
11478
  typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationResponse",
10625
11479
  is(o) {
@@ -10690,6 +11544,11 @@ function createBaseQueryGrantAuthorizationsRequest() {
10690
11544
  granter: ""
10691
11545
  };
10692
11546
  }
11547
+ /**
11548
+ * @name QueryGrantAuthorizationsRequest
11549
+ * @package injective.exchange.v1beta1
11550
+ * @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationsRequest
11551
+ */
10693
11552
  exports.QueryGrantAuthorizationsRequest = {
10694
11553
  typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationsRequest",
10695
11554
  is(o) {
@@ -10761,6 +11620,11 @@ function createBaseQueryGrantAuthorizationsResponse() {
10761
11620
  grants: []
10762
11621
  };
10763
11622
  }
11623
+ /**
11624
+ * @name QueryGrantAuthorizationsResponse
11625
+ * @package injective.exchange.v1beta1
11626
+ * @see proto type: injective.exchange.v1beta1.QueryGrantAuthorizationsResponse
11627
+ */
10764
11628
  exports.QueryGrantAuthorizationsResponse = {
10765
11629
  typeUrl: "/injective.exchange.v1beta1.QueryGrantAuthorizationsResponse",
10766
11630
  is(o) {