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
@@ -4,112 +4,215 @@ import { SpotOrder, SpotOrderAmino, DerivativeOrder, DerivativeOrderAmino, Marke
4
4
  import { Params, ParamsAmino } from "../../../cosmos/distribution/v1beta1/distribution";
5
5
  import { BinaryReader, BinaryWriter } from "../../../binary";
6
6
  import { DeepPartial } from "../../../helpers";
7
+ /**
8
+ * @name MsgUpdateSpotMarket
9
+ * @package injective.exchange.v1beta1
10
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarket
11
+ */
7
12
  export interface MsgUpdateSpotMarket {
8
- /** current admin address of the associated market */
13
+ /**
14
+ * current admin address of the associated market
15
+ */
9
16
  admin: string;
10
- /** id of the market to be updated */
17
+ /**
18
+ * id of the market to be updated
19
+ */
11
20
  marketId: string;
12
- /** (optional) updated ticker value */
21
+ /**
22
+ * (optional) updated ticker value
23
+ */
13
24
  newTicker: string;
14
- /** (optional) updated min price tick size value */
25
+ /**
26
+ * (optional) updated min price tick size value
27
+ */
15
28
  newMinPriceTickSize: string;
16
- /** (optional) updated min quantity tick size value */
29
+ /**
30
+ * (optional) updated min quantity tick size value
31
+ */
17
32
  newMinQuantityTickSize: string;
18
- /** (optional) updated min notional */
33
+ /**
34
+ * (optional) updated min notional
35
+ */
19
36
  newMinNotional: string;
20
37
  }
21
38
  export interface MsgUpdateSpotMarketProtoMsg {
22
39
  typeUrl: "/injective.exchange.v1beta1.MsgUpdateSpotMarket";
23
40
  value: Uint8Array;
24
41
  }
42
+ /**
43
+ * @name MsgUpdateSpotMarketAmino
44
+ * @package injective.exchange.v1beta1
45
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarket
46
+ */
25
47
  export interface MsgUpdateSpotMarketAmino {
26
- /** current admin address of the associated market */
48
+ /**
49
+ * current admin address of the associated market
50
+ */
27
51
  admin: string;
28
- /** id of the market to be updated */
52
+ /**
53
+ * id of the market to be updated
54
+ */
29
55
  market_id: string;
30
- /** (optional) updated ticker value */
56
+ /**
57
+ * (optional) updated ticker value
58
+ */
31
59
  new_ticker: string;
32
- /** (optional) updated min price tick size value */
60
+ /**
61
+ * (optional) updated min price tick size value
62
+ */
33
63
  new_min_price_tick_size: string;
34
- /** (optional) updated min quantity tick size value */
64
+ /**
65
+ * (optional) updated min quantity tick size value
66
+ */
35
67
  new_min_quantity_tick_size: string;
36
- /** (optional) updated min notional */
68
+ /**
69
+ * (optional) updated min notional
70
+ */
37
71
  new_min_notional: string;
38
72
  }
39
73
  export interface MsgUpdateSpotMarketAminoMsg {
40
74
  type: "exchange/MsgUpdateSpotMarket";
41
75
  value: MsgUpdateSpotMarketAmino;
42
76
  }
77
+ /**
78
+ * @name MsgUpdateSpotMarketResponse
79
+ * @package injective.exchange.v1beta1
80
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarketResponse
81
+ */
43
82
  export interface MsgUpdateSpotMarketResponse {
44
83
  }
45
84
  export interface MsgUpdateSpotMarketResponseProtoMsg {
46
85
  typeUrl: "/injective.exchange.v1beta1.MsgUpdateSpotMarketResponse";
47
86
  value: Uint8Array;
48
87
  }
88
+ /**
89
+ * @name MsgUpdateSpotMarketResponseAmino
90
+ * @package injective.exchange.v1beta1
91
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarketResponse
92
+ */
49
93
  export interface MsgUpdateSpotMarketResponseAmino {
50
94
  }
51
95
  export interface MsgUpdateSpotMarketResponseAminoMsg {
52
96
  type: "/injective.exchange.v1beta1.MsgUpdateSpotMarketResponse";
53
97
  value: MsgUpdateSpotMarketResponseAmino;
54
98
  }
99
+ /**
100
+ * @name MsgUpdateDerivativeMarket
101
+ * @package injective.exchange.v1beta1
102
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarket
103
+ */
55
104
  export interface MsgUpdateDerivativeMarket {
56
- /** current admin address of the associated market */
105
+ /**
106
+ * current admin address of the associated market
107
+ */
57
108
  admin: string;
58
- /** id of the market to be updated */
109
+ /**
110
+ * id of the market to be updated
111
+ */
59
112
  marketId: string;
60
- /** (optional) updated value for ticker */
113
+ /**
114
+ * (optional) updated value for ticker
115
+ */
61
116
  newTicker: string;
62
- /** (optional) updated value for min_price_tick_size */
117
+ /**
118
+ * (optional) updated value for min_price_tick_size
119
+ */
63
120
  newMinPriceTickSize: string;
64
- /** (optional) updated value min_quantity_tick_size */
121
+ /**
122
+ * (optional) updated value min_quantity_tick_size
123
+ */
65
124
  newMinQuantityTickSize: string;
66
- /** (optional) updated min notional */
125
+ /**
126
+ * (optional) updated min notional
127
+ */
67
128
  newMinNotional: string;
68
- /** (optional) updated value for initial_margin_ratio */
129
+ /**
130
+ * (optional) updated value for initial_margin_ratio
131
+ */
69
132
  newInitialMarginRatio: string;
70
- /** (optional) updated value for maintenance_margin_ratio */
133
+ /**
134
+ * (optional) updated value for maintenance_margin_ratio
135
+ */
71
136
  newMaintenanceMarginRatio: string;
72
137
  }
73
138
  export interface MsgUpdateDerivativeMarketProtoMsg {
74
139
  typeUrl: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarket";
75
140
  value: Uint8Array;
76
141
  }
142
+ /**
143
+ * @name MsgUpdateDerivativeMarketAmino
144
+ * @package injective.exchange.v1beta1
145
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarket
146
+ */
77
147
  export interface MsgUpdateDerivativeMarketAmino {
78
- /** current admin address of the associated market */
148
+ /**
149
+ * current admin address of the associated market
150
+ */
79
151
  admin: string;
80
- /** id of the market to be updated */
152
+ /**
153
+ * id of the market to be updated
154
+ */
81
155
  market_id: string;
82
- /** (optional) updated value for ticker */
156
+ /**
157
+ * (optional) updated value for ticker
158
+ */
83
159
  new_ticker: string;
84
- /** (optional) updated value for min_price_tick_size */
160
+ /**
161
+ * (optional) updated value for min_price_tick_size
162
+ */
85
163
  new_min_price_tick_size: string;
86
- /** (optional) updated value min_quantity_tick_size */
164
+ /**
165
+ * (optional) updated value min_quantity_tick_size
166
+ */
87
167
  new_min_quantity_tick_size: string;
88
- /** (optional) updated min notional */
168
+ /**
169
+ * (optional) updated min notional
170
+ */
89
171
  new_min_notional: string;
90
- /** (optional) updated value for initial_margin_ratio */
172
+ /**
173
+ * (optional) updated value for initial_margin_ratio
174
+ */
91
175
  new_initial_margin_ratio: string;
92
- /** (optional) updated value for maintenance_margin_ratio */
176
+ /**
177
+ * (optional) updated value for maintenance_margin_ratio
178
+ */
93
179
  new_maintenance_margin_ratio: string;
94
180
  }
95
181
  export interface MsgUpdateDerivativeMarketAminoMsg {
96
182
  type: "exchange/MsgUpdateDerivativeMarket";
97
183
  value: MsgUpdateDerivativeMarketAmino;
98
184
  }
185
+ /**
186
+ * @name MsgUpdateDerivativeMarketResponse
187
+ * @package injective.exchange.v1beta1
188
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse
189
+ */
99
190
  export interface MsgUpdateDerivativeMarketResponse {
100
191
  }
101
192
  export interface MsgUpdateDerivativeMarketResponseProtoMsg {
102
193
  typeUrl: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse";
103
194
  value: Uint8Array;
104
195
  }
196
+ /**
197
+ * @name MsgUpdateDerivativeMarketResponseAmino
198
+ * @package injective.exchange.v1beta1
199
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse
200
+ */
105
201
  export interface MsgUpdateDerivativeMarketResponseAmino {
106
202
  }
107
203
  export interface MsgUpdateDerivativeMarketResponseAminoMsg {
108
204
  type: "/injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse";
109
205
  value: MsgUpdateDerivativeMarketResponseAmino;
110
206
  }
207
+ /**
208
+ * @name MsgUpdateParams
209
+ * @package injective.exchange.v1beta1
210
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateParams
211
+ */
111
212
  export interface MsgUpdateParams {
112
- /** authority is the address of the governance account. */
213
+ /**
214
+ * authority is the address of the governance account.
215
+ */
113
216
  authority: string;
114
217
  /**
115
218
  * params defines the exchange parameters to update.
@@ -122,8 +225,15 @@ export interface MsgUpdateParamsProtoMsg {
122
225
  typeUrl: "/injective.exchange.v1beta1.MsgUpdateParams";
123
226
  value: Uint8Array;
124
227
  }
228
+ /**
229
+ * @name MsgUpdateParamsAmino
230
+ * @package injective.exchange.v1beta1
231
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateParams
232
+ */
125
233
  export interface MsgUpdateParamsAmino {
126
- /** authority is the address of the governance account. */
234
+ /**
235
+ * authority is the address of the governance account.
236
+ */
127
237
  authority: string;
128
238
  /**
129
239
  * params defines the exchange parameters to update.
@@ -136,12 +246,22 @@ export interface MsgUpdateParamsAminoMsg {
136
246
  type: "exchange/MsgUpdateParams";
137
247
  value: MsgUpdateParamsAmino;
138
248
  }
249
+ /**
250
+ * @name MsgUpdateParamsResponse
251
+ * @package injective.exchange.v1beta1
252
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateParamsResponse
253
+ */
139
254
  export interface MsgUpdateParamsResponse {
140
255
  }
141
256
  export interface MsgUpdateParamsResponseProtoMsg {
142
257
  typeUrl: "/injective.exchange.v1beta1.MsgUpdateParamsResponse";
143
258
  value: Uint8Array;
144
259
  }
260
+ /**
261
+ * @name MsgUpdateParamsResponseAmino
262
+ * @package injective.exchange.v1beta1
263
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateParamsResponse
264
+ */
145
265
  export interface MsgUpdateParamsResponseAmino {
146
266
  }
147
267
  export interface MsgUpdateParamsResponseAminoMsg {
@@ -151,6 +271,9 @@ export interface MsgUpdateParamsResponseAminoMsg {
151
271
  /**
152
272
  * MsgDeposit defines a SDK message for transferring coins from the sender's
153
273
  * bank balance into the subaccount's exchange deposits
274
+ * @name MsgDeposit
275
+ * @package injective.exchange.v1beta1
276
+ * @see proto type: injective.exchange.v1beta1.MsgDeposit
154
277
  */
155
278
  export interface MsgDeposit {
156
279
  sender: string;
@@ -168,6 +291,9 @@ export interface MsgDepositProtoMsg {
168
291
  /**
169
292
  * MsgDeposit defines a SDK message for transferring coins from the sender's
170
293
  * bank balance into the subaccount's exchange deposits
294
+ * @name MsgDepositAmino
295
+ * @package injective.exchange.v1beta1
296
+ * @see proto type: injective.exchange.v1beta1.MsgDeposit
171
297
  */
172
298
  export interface MsgDepositAmino {
173
299
  sender: string;
@@ -182,14 +308,24 @@ export interface MsgDepositAminoMsg {
182
308
  type: "exchange/MsgDeposit";
183
309
  value: MsgDepositAmino;
184
310
  }
185
- /** MsgDepositResponse defines the Msg/Deposit response type. */
311
+ /**
312
+ * MsgDepositResponse defines the Msg/Deposit response type.
313
+ * @name MsgDepositResponse
314
+ * @package injective.exchange.v1beta1
315
+ * @see proto type: injective.exchange.v1beta1.MsgDepositResponse
316
+ */
186
317
  export interface MsgDepositResponse {
187
318
  }
188
319
  export interface MsgDepositResponseProtoMsg {
189
320
  typeUrl: "/injective.exchange.v1beta1.MsgDepositResponse";
190
321
  value: Uint8Array;
191
322
  }
192
- /** MsgDepositResponse defines the Msg/Deposit response type. */
323
+ /**
324
+ * MsgDepositResponse defines the Msg/Deposit response type.
325
+ * @name MsgDepositResponseAmino
326
+ * @package injective.exchange.v1beta1
327
+ * @see proto type: injective.exchange.v1beta1.MsgDepositResponse
328
+ */
193
329
  export interface MsgDepositResponseAmino {
194
330
  }
195
331
  export interface MsgDepositResponseAminoMsg {
@@ -199,10 +335,15 @@ export interface MsgDepositResponseAminoMsg {
199
335
  /**
200
336
  * MsgWithdraw defines a SDK message for withdrawing coins from a subaccount's
201
337
  * deposits to the user's bank balance
338
+ * @name MsgWithdraw
339
+ * @package injective.exchange.v1beta1
340
+ * @see proto type: injective.exchange.v1beta1.MsgWithdraw
202
341
  */
203
342
  export interface MsgWithdraw {
204
343
  sender: string;
205
- /** bytes32 subaccount ID to withdraw funds from */
344
+ /**
345
+ * bytes32 subaccount ID to withdraw funds from
346
+ */
206
347
  subaccountId: string;
207
348
  amount: Coin;
208
349
  }
@@ -213,10 +354,15 @@ export interface MsgWithdrawProtoMsg {
213
354
  /**
214
355
  * MsgWithdraw defines a SDK message for withdrawing coins from a subaccount's
215
356
  * deposits to the user's bank balance
357
+ * @name MsgWithdrawAmino
358
+ * @package injective.exchange.v1beta1
359
+ * @see proto type: injective.exchange.v1beta1.MsgWithdraw
216
360
  */
217
361
  export interface MsgWithdrawAmino {
218
362
  sender: string;
219
- /** bytes32 subaccount ID to withdraw funds from */
363
+ /**
364
+ * bytes32 subaccount ID to withdraw funds from
365
+ */
220
366
  subaccount_id: string;
221
367
  amount: CoinAmino;
222
368
  }
@@ -224,14 +370,24 @@ export interface MsgWithdrawAminoMsg {
224
370
  type: "exchange/MsgWithdraw";
225
371
  value: MsgWithdrawAmino;
226
372
  }
227
- /** MsgWithdraw defines the Msg/Withdraw response type. */
373
+ /**
374
+ * MsgWithdraw defines the Msg/Withdraw response type.
375
+ * @name MsgWithdrawResponse
376
+ * @package injective.exchange.v1beta1
377
+ * @see proto type: injective.exchange.v1beta1.MsgWithdrawResponse
378
+ */
228
379
  export interface MsgWithdrawResponse {
229
380
  }
230
381
  export interface MsgWithdrawResponseProtoMsg {
231
382
  typeUrl: "/injective.exchange.v1beta1.MsgWithdrawResponse";
232
383
  value: Uint8Array;
233
384
  }
234
- /** MsgWithdraw defines the Msg/Withdraw response type. */
385
+ /**
386
+ * MsgWithdraw defines the Msg/Withdraw response type.
387
+ * @name MsgWithdrawResponseAmino
388
+ * @package injective.exchange.v1beta1
389
+ * @see proto type: injective.exchange.v1beta1.MsgWithdrawResponse
390
+ */
235
391
  export interface MsgWithdrawResponseAmino {
236
392
  }
237
393
  export interface MsgWithdrawResponseAminoMsg {
@@ -241,6 +397,9 @@ export interface MsgWithdrawResponseAminoMsg {
241
397
  /**
242
398
  * MsgCreateSpotLimitOrder defines a SDK message for creating a new spot limit
243
399
  * order.
400
+ * @name MsgCreateSpotLimitOrder
401
+ * @package injective.exchange.v1beta1
402
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrder
244
403
  */
245
404
  export interface MsgCreateSpotLimitOrder {
246
405
  sender: string;
@@ -253,6 +412,9 @@ export interface MsgCreateSpotLimitOrderProtoMsg {
253
412
  /**
254
413
  * MsgCreateSpotLimitOrder defines a SDK message for creating a new spot limit
255
414
  * order.
415
+ * @name MsgCreateSpotLimitOrderAmino
416
+ * @package injective.exchange.v1beta1
417
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrder
256
418
  */
257
419
  export interface MsgCreateSpotLimitOrderAmino {
258
420
  sender: string;
@@ -265,6 +427,9 @@ export interface MsgCreateSpotLimitOrderAminoMsg {
265
427
  /**
266
428
  * MsgCreateSpotLimitOrderResponse defines the Msg/CreateSpotOrder response
267
429
  * type.
430
+ * @name MsgCreateSpotLimitOrderResponse
431
+ * @package injective.exchange.v1beta1
432
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse
268
433
  */
269
434
  export interface MsgCreateSpotLimitOrderResponse {
270
435
  orderHash: string;
@@ -277,6 +442,9 @@ export interface MsgCreateSpotLimitOrderResponseProtoMsg {
277
442
  /**
278
443
  * MsgCreateSpotLimitOrderResponse defines the Msg/CreateSpotOrder response
279
444
  * type.
445
+ * @name MsgCreateSpotLimitOrderResponseAmino
446
+ * @package injective.exchange.v1beta1
447
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse
280
448
  */
281
449
  export interface MsgCreateSpotLimitOrderResponseAmino {
282
450
  order_hash: string;
@@ -289,6 +457,9 @@ export interface MsgCreateSpotLimitOrderResponseAminoMsg {
289
457
  /**
290
458
  * MsgBatchCreateSpotLimitOrders defines a SDK message for creating a new batch
291
459
  * of spot limit orders.
460
+ * @name MsgBatchCreateSpotLimitOrders
461
+ * @package injective.exchange.v1beta1
462
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders
292
463
  */
293
464
  export interface MsgBatchCreateSpotLimitOrders {
294
465
  sender: string;
@@ -301,6 +472,9 @@ export interface MsgBatchCreateSpotLimitOrdersProtoMsg {
301
472
  /**
302
473
  * MsgBatchCreateSpotLimitOrders defines a SDK message for creating a new batch
303
474
  * of spot limit orders.
475
+ * @name MsgBatchCreateSpotLimitOrdersAmino
476
+ * @package injective.exchange.v1beta1
477
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders
304
478
  */
305
479
  export interface MsgBatchCreateSpotLimitOrdersAmino {
306
480
  sender: string;
@@ -313,6 +487,9 @@ export interface MsgBatchCreateSpotLimitOrdersAminoMsg {
313
487
  /**
314
488
  * MsgBatchCreateSpotLimitOrdersResponse defines the
315
489
  * Msg/BatchCreateSpotLimitOrders response type.
490
+ * @name MsgBatchCreateSpotLimitOrdersResponse
491
+ * @package injective.exchange.v1beta1
492
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse
316
493
  */
317
494
  export interface MsgBatchCreateSpotLimitOrdersResponse {
318
495
  orderHashes: string[];
@@ -326,6 +503,9 @@ export interface MsgBatchCreateSpotLimitOrdersResponseProtoMsg {
326
503
  /**
327
504
  * MsgBatchCreateSpotLimitOrdersResponse defines the
328
505
  * Msg/BatchCreateSpotLimitOrders response type.
506
+ * @name MsgBatchCreateSpotLimitOrdersResponseAmino
507
+ * @package injective.exchange.v1beta1
508
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse
329
509
  */
330
510
  export interface MsgBatchCreateSpotLimitOrdersResponseAmino {
331
511
  order_hashes: string[];
@@ -339,16 +519,27 @@ export interface MsgBatchCreateSpotLimitOrdersResponseAminoMsg {
339
519
  /**
340
520
  * MsgInstantSpotMarketLaunch defines a SDK message for creating a new spot
341
521
  * market by paying listing fee without governance
522
+ * @name MsgInstantSpotMarketLaunch
523
+ * @package injective.exchange.v1beta1
524
+ * @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunch
342
525
  */
343
526
  export interface MsgInstantSpotMarketLaunch {
344
527
  sender: string;
345
- /** Ticker for the spot market. */
528
+ /**
529
+ * Ticker for the spot market.
530
+ */
346
531
  ticker: string;
347
- /** type of coin to use as the base currency */
532
+ /**
533
+ * type of coin to use as the base currency
534
+ */
348
535
  baseDenom: string;
349
- /** type of coin to use as the quote currency */
536
+ /**
537
+ * type of coin to use as the quote currency
538
+ */
350
539
  quoteDenom: string;
351
- /** min_price_tick_size defines the minimum tick size of the order's price */
540
+ /**
541
+ * min_price_tick_size defines the minimum tick size of the order's price
542
+ */
352
543
  minPriceTickSize: string;
353
544
  /**
354
545
  * min_quantity_tick_size defines the minimum tick size of the order's
@@ -368,16 +559,27 @@ export interface MsgInstantSpotMarketLaunchProtoMsg {
368
559
  /**
369
560
  * MsgInstantSpotMarketLaunch defines a SDK message for creating a new spot
370
561
  * market by paying listing fee without governance
562
+ * @name MsgInstantSpotMarketLaunchAmino
563
+ * @package injective.exchange.v1beta1
564
+ * @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunch
371
565
  */
372
566
  export interface MsgInstantSpotMarketLaunchAmino {
373
567
  sender: string;
374
- /** Ticker for the spot market. */
568
+ /**
569
+ * Ticker for the spot market.
570
+ */
375
571
  ticker: string;
376
- /** type of coin to use as the base currency */
572
+ /**
573
+ * type of coin to use as the base currency
574
+ */
377
575
  base_denom: string;
378
- /** type of coin to use as the quote currency */
576
+ /**
577
+ * type of coin to use as the quote currency
578
+ */
379
579
  quote_denom: string;
380
- /** min_price_tick_size defines the minimum tick size of the order's price */
580
+ /**
581
+ * min_price_tick_size defines the minimum tick size of the order's price
582
+ */
381
583
  min_price_tick_size: string;
382
584
  /**
383
585
  * min_quantity_tick_size defines the minimum tick size of the order's
@@ -397,6 +599,9 @@ export interface MsgInstantSpotMarketLaunchAminoMsg {
397
599
  /**
398
600
  * MsgInstantSpotMarketLaunchResponse defines the Msg/InstantSpotMarketLaunch
399
601
  * response type.
602
+ * @name MsgInstantSpotMarketLaunchResponse
603
+ * @package injective.exchange.v1beta1
604
+ * @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse
400
605
  */
401
606
  export interface MsgInstantSpotMarketLaunchResponse {
402
607
  }
@@ -407,6 +612,9 @@ export interface MsgInstantSpotMarketLaunchResponseProtoMsg {
407
612
  /**
408
613
  * MsgInstantSpotMarketLaunchResponse defines the Msg/InstantSpotMarketLaunch
409
614
  * response type.
615
+ * @name MsgInstantSpotMarketLaunchResponseAmino
616
+ * @package injective.exchange.v1beta1
617
+ * @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse
410
618
  */
411
619
  export interface MsgInstantSpotMarketLaunchResponseAmino {
412
620
  }
@@ -417,20 +625,35 @@ export interface MsgInstantSpotMarketLaunchResponseAminoMsg {
417
625
  /**
418
626
  * MsgInstantPerpetualMarketLaunch defines a SDK message for creating a new
419
627
  * perpetual futures market by paying listing fee without governance
628
+ * @name MsgInstantPerpetualMarketLaunch
629
+ * @package injective.exchange.v1beta1
630
+ * @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch
420
631
  */
421
632
  export interface MsgInstantPerpetualMarketLaunch {
422
633
  sender: string;
423
- /** Ticker for the derivative market. */
634
+ /**
635
+ * Ticker for the derivative market.
636
+ */
424
637
  ticker: string;
425
- /** type of coin to use as the base currency */
638
+ /**
639
+ * type of coin to use as the base currency
640
+ */
426
641
  quoteDenom: string;
427
- /** Oracle base currency */
642
+ /**
643
+ * Oracle base currency
644
+ */
428
645
  oracleBase: string;
429
- /** Oracle quote currency */
646
+ /**
647
+ * Oracle quote currency
648
+ */
430
649
  oracleQuote: string;
431
- /** Scale factor for oracle prices. */
650
+ /**
651
+ * Scale factor for oracle prices.
652
+ */
432
653
  oracleScaleFactor: number;
433
- /** Oracle type */
654
+ /**
655
+ * Oracle type
656
+ */
434
657
  oracleType: OracleType;
435
658
  /**
436
659
  * maker_fee_rate defines the trade fee rate for makers on the perpetual
@@ -475,20 +698,35 @@ export interface MsgInstantPerpetualMarketLaunchProtoMsg {
475
698
  /**
476
699
  * MsgInstantPerpetualMarketLaunch defines a SDK message for creating a new
477
700
  * perpetual futures market by paying listing fee without governance
701
+ * @name MsgInstantPerpetualMarketLaunchAmino
702
+ * @package injective.exchange.v1beta1
703
+ * @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch
478
704
  */
479
705
  export interface MsgInstantPerpetualMarketLaunchAmino {
480
706
  sender: string;
481
- /** Ticker for the derivative market. */
707
+ /**
708
+ * Ticker for the derivative market.
709
+ */
482
710
  ticker: string;
483
- /** type of coin to use as the base currency */
711
+ /**
712
+ * type of coin to use as the base currency
713
+ */
484
714
  quote_denom: string;
485
- /** Oracle base currency */
715
+ /**
716
+ * Oracle base currency
717
+ */
486
718
  oracle_base: string;
487
- /** Oracle quote currency */
719
+ /**
720
+ * Oracle quote currency
721
+ */
488
722
  oracle_quote: string;
489
- /** Scale factor for oracle prices. */
723
+ /**
724
+ * Scale factor for oracle prices.
725
+ */
490
726
  oracle_scale_factor: number;
491
- /** Oracle type */
727
+ /**
728
+ * Oracle type
729
+ */
492
730
  oracle_type: OracleType;
493
731
  /**
494
732
  * maker_fee_rate defines the trade fee rate for makers on the perpetual
@@ -533,6 +771,9 @@ export interface MsgInstantPerpetualMarketLaunchAminoMsg {
533
771
  /**
534
772
  * MsgInstantPerpetualMarketLaunchResponse defines the
535
773
  * Msg/InstantPerpetualMarketLaunchResponse response type.
774
+ * @name MsgInstantPerpetualMarketLaunchResponse
775
+ * @package injective.exchange.v1beta1
776
+ * @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse
536
777
  */
537
778
  export interface MsgInstantPerpetualMarketLaunchResponse {
538
779
  }
@@ -543,6 +784,9 @@ export interface MsgInstantPerpetualMarketLaunchResponseProtoMsg {
543
784
  /**
544
785
  * MsgInstantPerpetualMarketLaunchResponse defines the
545
786
  * Msg/InstantPerpetualMarketLaunchResponse response type.
787
+ * @name MsgInstantPerpetualMarketLaunchResponseAmino
788
+ * @package injective.exchange.v1beta1
789
+ * @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse
546
790
  */
547
791
  export interface MsgInstantPerpetualMarketLaunchResponseAmino {
548
792
  }
@@ -553,18 +797,31 @@ export interface MsgInstantPerpetualMarketLaunchResponseAminoMsg {
553
797
  /**
554
798
  * MsgInstantBinaryOptionsMarketLaunch defines a SDK message for creating a new
555
799
  * perpetual futures market by paying listing fee without governance
800
+ * @name MsgInstantBinaryOptionsMarketLaunch
801
+ * @package injective.exchange.v1beta1
802
+ * @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch
556
803
  */
557
804
  export interface MsgInstantBinaryOptionsMarketLaunch {
558
805
  sender: string;
559
- /** Ticker for the derivative contract. */
806
+ /**
807
+ * Ticker for the derivative contract.
808
+ */
560
809
  ticker: string;
561
- /** Oracle symbol */
810
+ /**
811
+ * Oracle symbol
812
+ */
562
813
  oracleSymbol: string;
563
- /** Oracle Provider */
814
+ /**
815
+ * Oracle Provider
816
+ */
564
817
  oracleProvider: string;
565
- /** Oracle type */
818
+ /**
819
+ * Oracle type
820
+ */
566
821
  oracleType: OracleType;
567
- /** Scale factor for oracle prices. */
822
+ /**
823
+ * Scale factor for oracle prices.
824
+ */
568
825
  oracleScaleFactor: number;
569
826
  /**
570
827
  * maker_fee_rate defines the trade fee rate for makers on the perpetual
@@ -576,13 +833,21 @@ export interface MsgInstantBinaryOptionsMarketLaunch {
576
833
  * market
577
834
  */
578
835
  takerFeeRate: string;
579
- /** expiration timestamp */
836
+ /**
837
+ * expiration timestamp
838
+ */
580
839
  expirationTimestamp: bigint;
581
- /** expiration timestamp */
840
+ /**
841
+ * expiration timestamp
842
+ */
582
843
  settlementTimestamp: bigint;
583
- /** admin of the market */
844
+ /**
845
+ * admin of the market
846
+ */
584
847
  admin: string;
585
- /** Address of the quote currency denomination for the binary options contract */
848
+ /**
849
+ * Address of the quote currency denomination for the binary options contract
850
+ */
586
851
  quoteDenom: string;
587
852
  /**
588
853
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -607,18 +872,31 @@ export interface MsgInstantBinaryOptionsMarketLaunchProtoMsg {
607
872
  /**
608
873
  * MsgInstantBinaryOptionsMarketLaunch defines a SDK message for creating a new
609
874
  * perpetual futures market by paying listing fee without governance
875
+ * @name MsgInstantBinaryOptionsMarketLaunchAmino
876
+ * @package injective.exchange.v1beta1
877
+ * @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch
610
878
  */
611
879
  export interface MsgInstantBinaryOptionsMarketLaunchAmino {
612
880
  sender: string;
613
- /** Ticker for the derivative contract. */
881
+ /**
882
+ * Ticker for the derivative contract.
883
+ */
614
884
  ticker: string;
615
- /** Oracle symbol */
885
+ /**
886
+ * Oracle symbol
887
+ */
616
888
  oracle_symbol: string;
617
- /** Oracle Provider */
889
+ /**
890
+ * Oracle Provider
891
+ */
618
892
  oracle_provider: string;
619
- /** Oracle type */
893
+ /**
894
+ * Oracle type
895
+ */
620
896
  oracle_type: OracleType;
621
- /** Scale factor for oracle prices. */
897
+ /**
898
+ * Scale factor for oracle prices.
899
+ */
622
900
  oracle_scale_factor: number;
623
901
  /**
624
902
  * maker_fee_rate defines the trade fee rate for makers on the perpetual
@@ -630,13 +908,21 @@ export interface MsgInstantBinaryOptionsMarketLaunchAmino {
630
908
  * market
631
909
  */
632
910
  taker_fee_rate: string;
633
- /** expiration timestamp */
911
+ /**
912
+ * expiration timestamp
913
+ */
634
914
  expiration_timestamp: string;
635
- /** expiration timestamp */
915
+ /**
916
+ * expiration timestamp
917
+ */
636
918
  settlement_timestamp: string;
637
- /** admin of the market */
919
+ /**
920
+ * admin of the market
921
+ */
638
922
  admin: string;
639
- /** Address of the quote currency denomination for the binary options contract */
923
+ /**
924
+ * Address of the quote currency denomination for the binary options contract
925
+ */
640
926
  quote_denom: string;
641
927
  /**
642
928
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -661,6 +947,9 @@ export interface MsgInstantBinaryOptionsMarketLaunchAminoMsg {
661
947
  /**
662
948
  * MsgInstantBinaryOptionsMarketLaunchResponse defines the
663
949
  * Msg/InstantBinaryOptionsMarketLaunchResponse response type.
950
+ * @name MsgInstantBinaryOptionsMarketLaunchResponse
951
+ * @package injective.exchange.v1beta1
952
+ * @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse
664
953
  */
665
954
  export interface MsgInstantBinaryOptionsMarketLaunchResponse {
666
955
  }
@@ -671,6 +960,9 @@ export interface MsgInstantBinaryOptionsMarketLaunchResponseProtoMsg {
671
960
  /**
672
961
  * MsgInstantBinaryOptionsMarketLaunchResponse defines the
673
962
  * Msg/InstantBinaryOptionsMarketLaunchResponse response type.
963
+ * @name MsgInstantBinaryOptionsMarketLaunchResponseAmino
964
+ * @package injective.exchange.v1beta1
965
+ * @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse
674
966
  */
675
967
  export interface MsgInstantBinaryOptionsMarketLaunchResponseAmino {
676
968
  }
@@ -681,22 +973,39 @@ export interface MsgInstantBinaryOptionsMarketLaunchResponseAminoMsg {
681
973
  /**
682
974
  * MsgInstantExpiryFuturesMarketLaunch defines a SDK message for creating a new
683
975
  * expiry futures market by paying listing fee without governance
976
+ * @name MsgInstantExpiryFuturesMarketLaunch
977
+ * @package injective.exchange.v1beta1
978
+ * @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch
684
979
  */
685
980
  export interface MsgInstantExpiryFuturesMarketLaunch {
686
981
  sender: string;
687
- /** Ticker for the derivative market. */
982
+ /**
983
+ * Ticker for the derivative market.
984
+ */
688
985
  ticker: string;
689
- /** type of coin to use as the quote currency */
986
+ /**
987
+ * type of coin to use as the quote currency
988
+ */
690
989
  quoteDenom: string;
691
- /** Oracle base currency */
990
+ /**
991
+ * Oracle base currency
992
+ */
692
993
  oracleBase: string;
693
- /** Oracle quote currency */
994
+ /**
995
+ * Oracle quote currency
996
+ */
694
997
  oracleQuote: string;
695
- /** Oracle type */
998
+ /**
999
+ * Oracle type
1000
+ */
696
1001
  oracleType: OracleType;
697
- /** Scale factor for oracle prices. */
1002
+ /**
1003
+ * Scale factor for oracle prices.
1004
+ */
698
1005
  oracleScaleFactor: number;
699
- /** Expiration time of the market */
1006
+ /**
1007
+ * Expiration time of the market
1008
+ */
700
1009
  expiry: bigint;
701
1010
  /**
702
1011
  * maker_fee_rate defines the trade fee rate for makers on the expiry futures
@@ -741,22 +1050,39 @@ export interface MsgInstantExpiryFuturesMarketLaunchProtoMsg {
741
1050
  /**
742
1051
  * MsgInstantExpiryFuturesMarketLaunch defines a SDK message for creating a new
743
1052
  * expiry futures market by paying listing fee without governance
1053
+ * @name MsgInstantExpiryFuturesMarketLaunchAmino
1054
+ * @package injective.exchange.v1beta1
1055
+ * @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch
744
1056
  */
745
1057
  export interface MsgInstantExpiryFuturesMarketLaunchAmino {
746
1058
  sender: string;
747
- /** Ticker for the derivative market. */
1059
+ /**
1060
+ * Ticker for the derivative market.
1061
+ */
748
1062
  ticker: string;
749
- /** type of coin to use as the quote currency */
1063
+ /**
1064
+ * type of coin to use as the quote currency
1065
+ */
750
1066
  quote_denom: string;
751
- /** Oracle base currency */
1067
+ /**
1068
+ * Oracle base currency
1069
+ */
752
1070
  oracle_base: string;
753
- /** Oracle quote currency */
1071
+ /**
1072
+ * Oracle quote currency
1073
+ */
754
1074
  oracle_quote: string;
755
- /** Oracle type */
1075
+ /**
1076
+ * Oracle type
1077
+ */
756
1078
  oracle_type: OracleType;
757
- /** Scale factor for oracle prices. */
1079
+ /**
1080
+ * Scale factor for oracle prices.
1081
+ */
758
1082
  oracle_scale_factor: number;
759
- /** Expiration time of the market */
1083
+ /**
1084
+ * Expiration time of the market
1085
+ */
760
1086
  expiry: string;
761
1087
  /**
762
1088
  * maker_fee_rate defines the trade fee rate for makers on the expiry futures
@@ -801,6 +1127,9 @@ export interface MsgInstantExpiryFuturesMarketLaunchAminoMsg {
801
1127
  /**
802
1128
  * MsgInstantExpiryFuturesMarketLaunchResponse defines the
803
1129
  * Msg/InstantExpiryFuturesMarketLaunch response type.
1130
+ * @name MsgInstantExpiryFuturesMarketLaunchResponse
1131
+ * @package injective.exchange.v1beta1
1132
+ * @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse
804
1133
  */
805
1134
  export interface MsgInstantExpiryFuturesMarketLaunchResponse {
806
1135
  }
@@ -811,6 +1140,9 @@ export interface MsgInstantExpiryFuturesMarketLaunchResponseProtoMsg {
811
1140
  /**
812
1141
  * MsgInstantExpiryFuturesMarketLaunchResponse defines the
813
1142
  * Msg/InstantExpiryFuturesMarketLaunch response type.
1143
+ * @name MsgInstantExpiryFuturesMarketLaunchResponseAmino
1144
+ * @package injective.exchange.v1beta1
1145
+ * @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse
814
1146
  */
815
1147
  export interface MsgInstantExpiryFuturesMarketLaunchResponseAmino {
816
1148
  }
@@ -821,6 +1153,9 @@ export interface MsgInstantExpiryFuturesMarketLaunchResponseAminoMsg {
821
1153
  /**
822
1154
  * MsgCreateSpotMarketOrder defines a SDK message for creating a new spot market
823
1155
  * order.
1156
+ * @name MsgCreateSpotMarketOrder
1157
+ * @package injective.exchange.v1beta1
1158
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrder
824
1159
  */
825
1160
  export interface MsgCreateSpotMarketOrder {
826
1161
  sender: string;
@@ -833,6 +1168,9 @@ export interface MsgCreateSpotMarketOrderProtoMsg {
833
1168
  /**
834
1169
  * MsgCreateSpotMarketOrder defines a SDK message for creating a new spot market
835
1170
  * order.
1171
+ * @name MsgCreateSpotMarketOrderAmino
1172
+ * @package injective.exchange.v1beta1
1173
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrder
836
1174
  */
837
1175
  export interface MsgCreateSpotMarketOrderAmino {
838
1176
  sender: string;
@@ -845,6 +1183,9 @@ export interface MsgCreateSpotMarketOrderAminoMsg {
845
1183
  /**
846
1184
  * MsgCreateSpotMarketOrderResponse defines the Msg/CreateSpotMarketLimitOrder
847
1185
  * response type.
1186
+ * @name MsgCreateSpotMarketOrderResponse
1187
+ * @package injective.exchange.v1beta1
1188
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse
848
1189
  */
849
1190
  export interface MsgCreateSpotMarketOrderResponse {
850
1191
  orderHash: string;
@@ -858,6 +1199,9 @@ export interface MsgCreateSpotMarketOrderResponseProtoMsg {
858
1199
  /**
859
1200
  * MsgCreateSpotMarketOrderResponse defines the Msg/CreateSpotMarketLimitOrder
860
1201
  * response type.
1202
+ * @name MsgCreateSpotMarketOrderResponseAmino
1203
+ * @package injective.exchange.v1beta1
1204
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse
861
1205
  */
862
1206
  export interface MsgCreateSpotMarketOrderResponseAmino {
863
1207
  order_hash: string;
@@ -868,6 +1212,11 @@ export interface MsgCreateSpotMarketOrderResponseAminoMsg {
868
1212
  type: "/injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse";
869
1213
  value: MsgCreateSpotMarketOrderResponseAmino;
870
1214
  }
1215
+ /**
1216
+ * @name SpotMarketOrderResults
1217
+ * @package injective.exchange.v1beta1
1218
+ * @see proto type: injective.exchange.v1beta1.SpotMarketOrderResults
1219
+ */
871
1220
  export interface SpotMarketOrderResults {
872
1221
  quantity: string;
873
1222
  price: string;
@@ -877,6 +1226,11 @@ export interface SpotMarketOrderResultsProtoMsg {
877
1226
  typeUrl: "/injective.exchange.v1beta1.SpotMarketOrderResults";
878
1227
  value: Uint8Array;
879
1228
  }
1229
+ /**
1230
+ * @name SpotMarketOrderResultsAmino
1231
+ * @package injective.exchange.v1beta1
1232
+ * @see proto type: injective.exchange.v1beta1.SpotMarketOrderResults
1233
+ */
880
1234
  export interface SpotMarketOrderResultsAmino {
881
1235
  quantity: string;
882
1236
  price: string;
@@ -886,7 +1240,12 @@ export interface SpotMarketOrderResultsAminoMsg {
886
1240
  type: "/injective.exchange.v1beta1.SpotMarketOrderResults";
887
1241
  value: SpotMarketOrderResultsAmino;
888
1242
  }
889
- /** A Cosmos-SDK MsgCreateDerivativeLimitOrder */
1243
+ /**
1244
+ * A Cosmos-SDK MsgCreateDerivativeLimitOrder
1245
+ * @name MsgCreateDerivativeLimitOrder
1246
+ * @package injective.exchange.v1beta1
1247
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder
1248
+ */
890
1249
  export interface MsgCreateDerivativeLimitOrder {
891
1250
  sender: string;
892
1251
  order: DerivativeOrder;
@@ -895,7 +1254,12 @@ export interface MsgCreateDerivativeLimitOrderProtoMsg {
895
1254
  typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder";
896
1255
  value: Uint8Array;
897
1256
  }
898
- /** A Cosmos-SDK MsgCreateDerivativeLimitOrder */
1257
+ /**
1258
+ * A Cosmos-SDK MsgCreateDerivativeLimitOrder
1259
+ * @name MsgCreateDerivativeLimitOrderAmino
1260
+ * @package injective.exchange.v1beta1
1261
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder
1262
+ */
899
1263
  export interface MsgCreateDerivativeLimitOrderAmino {
900
1264
  sender: string;
901
1265
  order: DerivativeOrderAmino;
@@ -907,6 +1271,9 @@ export interface MsgCreateDerivativeLimitOrderAminoMsg {
907
1271
  /**
908
1272
  * MsgCreateDerivativeLimitOrderResponse defines the
909
1273
  * Msg/CreateDerivativeMarketOrder response type.
1274
+ * @name MsgCreateDerivativeLimitOrderResponse
1275
+ * @package injective.exchange.v1beta1
1276
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse
910
1277
  */
911
1278
  export interface MsgCreateDerivativeLimitOrderResponse {
912
1279
  orderHash: string;
@@ -919,6 +1286,9 @@ export interface MsgCreateDerivativeLimitOrderResponseProtoMsg {
919
1286
  /**
920
1287
  * MsgCreateDerivativeLimitOrderResponse defines the
921
1288
  * Msg/CreateDerivativeMarketOrder response type.
1289
+ * @name MsgCreateDerivativeLimitOrderResponseAmino
1290
+ * @package injective.exchange.v1beta1
1291
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse
922
1292
  */
923
1293
  export interface MsgCreateDerivativeLimitOrderResponseAmino {
924
1294
  order_hash: string;
@@ -928,7 +1298,12 @@ export interface MsgCreateDerivativeLimitOrderResponseAminoMsg {
928
1298
  type: "/injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse";
929
1299
  value: MsgCreateDerivativeLimitOrderResponseAmino;
930
1300
  }
931
- /** A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder */
1301
+ /**
1302
+ * A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder
1303
+ * @name MsgCreateBinaryOptionsLimitOrder
1304
+ * @package injective.exchange.v1beta1
1305
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder
1306
+ */
932
1307
  export interface MsgCreateBinaryOptionsLimitOrder {
933
1308
  sender: string;
934
1309
  order: DerivativeOrder;
@@ -937,7 +1312,12 @@ export interface MsgCreateBinaryOptionsLimitOrderProtoMsg {
937
1312
  typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder";
938
1313
  value: Uint8Array;
939
1314
  }
940
- /** A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder */
1315
+ /**
1316
+ * A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder
1317
+ * @name MsgCreateBinaryOptionsLimitOrderAmino
1318
+ * @package injective.exchange.v1beta1
1319
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder
1320
+ */
941
1321
  export interface MsgCreateBinaryOptionsLimitOrderAmino {
942
1322
  sender: string;
943
1323
  order: DerivativeOrderAmino;
@@ -949,6 +1329,9 @@ export interface MsgCreateBinaryOptionsLimitOrderAminoMsg {
949
1329
  /**
950
1330
  * MsgCreateBinaryOptionsLimitOrderResponse defines the
951
1331
  * Msg/CreateBinaryOptionsLimitOrder response type.
1332
+ * @name MsgCreateBinaryOptionsLimitOrderResponse
1333
+ * @package injective.exchange.v1beta1
1334
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse
952
1335
  */
953
1336
  export interface MsgCreateBinaryOptionsLimitOrderResponse {
954
1337
  orderHash: string;
@@ -961,6 +1344,9 @@ export interface MsgCreateBinaryOptionsLimitOrderResponseProtoMsg {
961
1344
  /**
962
1345
  * MsgCreateBinaryOptionsLimitOrderResponse defines the
963
1346
  * Msg/CreateBinaryOptionsLimitOrder response type.
1347
+ * @name MsgCreateBinaryOptionsLimitOrderResponseAmino
1348
+ * @package injective.exchange.v1beta1
1349
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse
964
1350
  */
965
1351
  export interface MsgCreateBinaryOptionsLimitOrderResponseAmino {
966
1352
  order_hash: string;
@@ -970,7 +1356,12 @@ export interface MsgCreateBinaryOptionsLimitOrderResponseAminoMsg {
970
1356
  type: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse";
971
1357
  value: MsgCreateBinaryOptionsLimitOrderResponseAmino;
972
1358
  }
973
- /** A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders */
1359
+ /**
1360
+ * A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders
1361
+ * @name MsgBatchCreateDerivativeLimitOrders
1362
+ * @package injective.exchange.v1beta1
1363
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders
1364
+ */
974
1365
  export interface MsgBatchCreateDerivativeLimitOrders {
975
1366
  sender: string;
976
1367
  orders: DerivativeOrder[];
@@ -979,7 +1370,12 @@ export interface MsgBatchCreateDerivativeLimitOrdersProtoMsg {
979
1370
  typeUrl: "/injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders";
980
1371
  value: Uint8Array;
981
1372
  }
982
- /** A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders */
1373
+ /**
1374
+ * A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders
1375
+ * @name MsgBatchCreateDerivativeLimitOrdersAmino
1376
+ * @package injective.exchange.v1beta1
1377
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders
1378
+ */
983
1379
  export interface MsgBatchCreateDerivativeLimitOrdersAmino {
984
1380
  sender: string;
985
1381
  orders: DerivativeOrderAmino[];
@@ -991,6 +1387,9 @@ export interface MsgBatchCreateDerivativeLimitOrdersAminoMsg {
991
1387
  /**
992
1388
  * MsgBatchCreateDerivativeLimitOrdersResponse defines the
993
1389
  * Msg/BatchCreateDerivativeLimitOrders response type.
1390
+ * @name MsgBatchCreateDerivativeLimitOrdersResponse
1391
+ * @package injective.exchange.v1beta1
1392
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse
994
1393
  */
995
1394
  export interface MsgBatchCreateDerivativeLimitOrdersResponse {
996
1395
  orderHashes: string[];
@@ -1004,6 +1403,9 @@ export interface MsgBatchCreateDerivativeLimitOrdersResponseProtoMsg {
1004
1403
  /**
1005
1404
  * MsgBatchCreateDerivativeLimitOrdersResponse defines the
1006
1405
  * Msg/BatchCreateDerivativeLimitOrders response type.
1406
+ * @name MsgBatchCreateDerivativeLimitOrdersResponseAmino
1407
+ * @package injective.exchange.v1beta1
1408
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse
1007
1409
  */
1008
1410
  export interface MsgBatchCreateDerivativeLimitOrdersResponseAmino {
1009
1411
  order_hashes: string[];
@@ -1014,7 +1416,12 @@ export interface MsgBatchCreateDerivativeLimitOrdersResponseAminoMsg {
1014
1416
  type: "/injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse";
1015
1417
  value: MsgBatchCreateDerivativeLimitOrdersResponseAmino;
1016
1418
  }
1017
- /** MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type. */
1419
+ /**
1420
+ * MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type.
1421
+ * @name MsgCancelSpotOrder
1422
+ * @package injective.exchange.v1beta1
1423
+ * @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrder
1424
+ */
1018
1425
  export interface MsgCancelSpotOrder {
1019
1426
  sender: string;
1020
1427
  marketId: string;
@@ -1026,7 +1433,12 @@ export interface MsgCancelSpotOrderProtoMsg {
1026
1433
  typeUrl: "/injective.exchange.v1beta1.MsgCancelSpotOrder";
1027
1434
  value: Uint8Array;
1028
1435
  }
1029
- /** MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type. */
1436
+ /**
1437
+ * MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type.
1438
+ * @name MsgCancelSpotOrderAmino
1439
+ * @package injective.exchange.v1beta1
1440
+ * @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrder
1441
+ */
1030
1442
  export interface MsgCancelSpotOrderAmino {
1031
1443
  sender: string;
1032
1444
  market_id: string;
@@ -1038,21 +1450,36 @@ export interface MsgCancelSpotOrderAminoMsg {
1038
1450
  type: "exchange/MsgCancelSpotOrder";
1039
1451
  value: MsgCancelSpotOrderAmino;
1040
1452
  }
1041
- /** MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type. */
1453
+ /**
1454
+ * MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type.
1455
+ * @name MsgCancelSpotOrderResponse
1456
+ * @package injective.exchange.v1beta1
1457
+ * @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrderResponse
1458
+ */
1042
1459
  export interface MsgCancelSpotOrderResponse {
1043
1460
  }
1044
1461
  export interface MsgCancelSpotOrderResponseProtoMsg {
1045
1462
  typeUrl: "/injective.exchange.v1beta1.MsgCancelSpotOrderResponse";
1046
1463
  value: Uint8Array;
1047
1464
  }
1048
- /** MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type. */
1465
+ /**
1466
+ * MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type.
1467
+ * @name MsgCancelSpotOrderResponseAmino
1468
+ * @package injective.exchange.v1beta1
1469
+ * @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrderResponse
1470
+ */
1049
1471
  export interface MsgCancelSpotOrderResponseAmino {
1050
1472
  }
1051
1473
  export interface MsgCancelSpotOrderResponseAminoMsg {
1052
1474
  type: "/injective.exchange.v1beta1.MsgCancelSpotOrderResponse";
1053
1475
  value: MsgCancelSpotOrderResponseAmino;
1054
1476
  }
1055
- /** MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type. */
1477
+ /**
1478
+ * MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type.
1479
+ * @name MsgBatchCancelSpotOrders
1480
+ * @package injective.exchange.v1beta1
1481
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrders
1482
+ */
1056
1483
  export interface MsgBatchCancelSpotOrders {
1057
1484
  sender: string;
1058
1485
  data: OrderData[];
@@ -1061,7 +1488,12 @@ export interface MsgBatchCancelSpotOrdersProtoMsg {
1061
1488
  typeUrl: "/injective.exchange.v1beta1.MsgBatchCancelSpotOrders";
1062
1489
  value: Uint8Array;
1063
1490
  }
1064
- /** MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type. */
1491
+ /**
1492
+ * MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type.
1493
+ * @name MsgBatchCancelSpotOrdersAmino
1494
+ * @package injective.exchange.v1beta1
1495
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrders
1496
+ */
1065
1497
  export interface MsgBatchCancelSpotOrdersAmino {
1066
1498
  sender: string;
1067
1499
  data: OrderDataAmino[];
@@ -1073,6 +1505,9 @@ export interface MsgBatchCancelSpotOrdersAminoMsg {
1073
1505
  /**
1074
1506
  * MsgBatchCancelSpotOrdersResponse defines the Msg/BatchCancelSpotOrders
1075
1507
  * response type.
1508
+ * @name MsgBatchCancelSpotOrdersResponse
1509
+ * @package injective.exchange.v1beta1
1510
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse
1076
1511
  */
1077
1512
  export interface MsgBatchCancelSpotOrdersResponse {
1078
1513
  success: boolean[];
@@ -1084,6 +1519,9 @@ export interface MsgBatchCancelSpotOrdersResponseProtoMsg {
1084
1519
  /**
1085
1520
  * MsgBatchCancelSpotOrdersResponse defines the Msg/BatchCancelSpotOrders
1086
1521
  * response type.
1522
+ * @name MsgBatchCancelSpotOrdersResponseAmino
1523
+ * @package injective.exchange.v1beta1
1524
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse
1087
1525
  */
1088
1526
  export interface MsgBatchCancelSpotOrdersResponseAmino {
1089
1527
  success: boolean[];
@@ -1095,6 +1533,9 @@ export interface MsgBatchCancelSpotOrdersResponseAminoMsg {
1095
1533
  /**
1096
1534
  * MsgBatchCancelBinaryOptionsOrders defines the
1097
1535
  * Msg/BatchCancelBinaryOptionsOrders response type.
1536
+ * @name MsgBatchCancelBinaryOptionsOrders
1537
+ * @package injective.exchange.v1beta1
1538
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders
1098
1539
  */
1099
1540
  export interface MsgBatchCancelBinaryOptionsOrders {
1100
1541
  sender: string;
@@ -1107,6 +1548,9 @@ export interface MsgBatchCancelBinaryOptionsOrdersProtoMsg {
1107
1548
  /**
1108
1549
  * MsgBatchCancelBinaryOptionsOrders defines the
1109
1550
  * Msg/BatchCancelBinaryOptionsOrders response type.
1551
+ * @name MsgBatchCancelBinaryOptionsOrdersAmino
1552
+ * @package injective.exchange.v1beta1
1553
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders
1110
1554
  */
1111
1555
  export interface MsgBatchCancelBinaryOptionsOrdersAmino {
1112
1556
  sender: string;
@@ -1119,6 +1563,9 @@ export interface MsgBatchCancelBinaryOptionsOrdersAminoMsg {
1119
1563
  /**
1120
1564
  * BatchCancelBinaryOptionsOrdersResponse defines the
1121
1565
  * Msg/BatchCancelBinaryOptionsOrders response type.
1566
+ * @name MsgBatchCancelBinaryOptionsOrdersResponse
1567
+ * @package injective.exchange.v1beta1
1568
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse
1122
1569
  */
1123
1570
  export interface MsgBatchCancelBinaryOptionsOrdersResponse {
1124
1571
  success: boolean[];
@@ -1130,6 +1577,9 @@ export interface MsgBatchCancelBinaryOptionsOrdersResponseProtoMsg {
1130
1577
  /**
1131
1578
  * BatchCancelBinaryOptionsOrdersResponse defines the
1132
1579
  * Msg/BatchCancelBinaryOptionsOrders response type.
1580
+ * @name MsgBatchCancelBinaryOptionsOrdersResponseAmino
1581
+ * @package injective.exchange.v1beta1
1582
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse
1133
1583
  */
1134
1584
  export interface MsgBatchCancelBinaryOptionsOrdersResponseAmino {
1135
1585
  success: boolean[];
@@ -1138,7 +1588,12 @@ export interface MsgBatchCancelBinaryOptionsOrdersResponseAminoMsg {
1138
1588
  type: "/injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse";
1139
1589
  value: MsgBatchCancelBinaryOptionsOrdersResponseAmino;
1140
1590
  }
1141
- /** MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type. */
1591
+ /**
1592
+ * MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type.
1593
+ * @name MsgBatchUpdateOrders
1594
+ * @package injective.exchange.v1beta1
1595
+ * @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrders
1596
+ */
1142
1597
  export interface MsgBatchUpdateOrders {
1143
1598
  sender: string;
1144
1599
  /**
@@ -1160,7 +1615,12 @@ export interface MsgBatchUpdateOrdersProtoMsg {
1160
1615
  typeUrl: "/injective.exchange.v1beta1.MsgBatchUpdateOrders";
1161
1616
  value: Uint8Array;
1162
1617
  }
1163
- /** MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type. */
1618
+ /**
1619
+ * MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type.
1620
+ * @name MsgBatchUpdateOrdersAmino
1621
+ * @package injective.exchange.v1beta1
1622
+ * @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrders
1623
+ */
1164
1624
  export interface MsgBatchUpdateOrdersAmino {
1165
1625
  sender: string;
1166
1626
  /**
@@ -1182,7 +1642,12 @@ export interface MsgBatchUpdateOrdersAminoMsg {
1182
1642
  type: "exchange/MsgBatchUpdateOrders";
1183
1643
  value: MsgBatchUpdateOrdersAmino;
1184
1644
  }
1185
- /** MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type. */
1645
+ /**
1646
+ * MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type.
1647
+ * @name MsgBatchUpdateOrdersResponse
1648
+ * @package injective.exchange.v1beta1
1649
+ * @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse
1650
+ */
1186
1651
  export interface MsgBatchUpdateOrdersResponse {
1187
1652
  spotCancelSuccess: boolean[];
1188
1653
  derivativeCancelSuccess: boolean[];
@@ -1201,7 +1666,12 @@ export interface MsgBatchUpdateOrdersResponseProtoMsg {
1201
1666
  typeUrl: "/injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse";
1202
1667
  value: Uint8Array;
1203
1668
  }
1204
- /** MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type. */
1669
+ /**
1670
+ * MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type.
1671
+ * @name MsgBatchUpdateOrdersResponseAmino
1672
+ * @package injective.exchange.v1beta1
1673
+ * @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse
1674
+ */
1205
1675
  export interface MsgBatchUpdateOrdersResponseAmino {
1206
1676
  spot_cancel_success: boolean[];
1207
1677
  derivative_cancel_success: boolean[];
@@ -1220,7 +1690,12 @@ export interface MsgBatchUpdateOrdersResponseAminoMsg {
1220
1690
  type: "/injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse";
1221
1691
  value: MsgBatchUpdateOrdersResponseAmino;
1222
1692
  }
1223
- /** A Cosmos-SDK MsgCreateDerivativeMarketOrder */
1693
+ /**
1694
+ * A Cosmos-SDK MsgCreateDerivativeMarketOrder
1695
+ * @name MsgCreateDerivativeMarketOrder
1696
+ * @package injective.exchange.v1beta1
1697
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder
1698
+ */
1224
1699
  export interface MsgCreateDerivativeMarketOrder {
1225
1700
  sender: string;
1226
1701
  order: DerivativeOrder;
@@ -1229,7 +1704,12 @@ export interface MsgCreateDerivativeMarketOrderProtoMsg {
1229
1704
  typeUrl: "/injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder";
1230
1705
  value: Uint8Array;
1231
1706
  }
1232
- /** A Cosmos-SDK MsgCreateDerivativeMarketOrder */
1707
+ /**
1708
+ * A Cosmos-SDK MsgCreateDerivativeMarketOrder
1709
+ * @name MsgCreateDerivativeMarketOrderAmino
1710
+ * @package injective.exchange.v1beta1
1711
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder
1712
+ */
1233
1713
  export interface MsgCreateDerivativeMarketOrderAmino {
1234
1714
  sender: string;
1235
1715
  order: DerivativeOrderAmino;
@@ -1241,6 +1721,9 @@ export interface MsgCreateDerivativeMarketOrderAminoMsg {
1241
1721
  /**
1242
1722
  * MsgCreateDerivativeMarketOrderResponse defines the
1243
1723
  * Msg/CreateDerivativeMarketOrder response type.
1724
+ * @name MsgCreateDerivativeMarketOrderResponse
1725
+ * @package injective.exchange.v1beta1
1726
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse
1244
1727
  */
1245
1728
  export interface MsgCreateDerivativeMarketOrderResponse {
1246
1729
  orderHash: string;
@@ -1254,6 +1737,9 @@ export interface MsgCreateDerivativeMarketOrderResponseProtoMsg {
1254
1737
  /**
1255
1738
  * MsgCreateDerivativeMarketOrderResponse defines the
1256
1739
  * Msg/CreateDerivativeMarketOrder response type.
1740
+ * @name MsgCreateDerivativeMarketOrderResponseAmino
1741
+ * @package injective.exchange.v1beta1
1742
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse
1257
1743
  */
1258
1744
  export interface MsgCreateDerivativeMarketOrderResponseAmino {
1259
1745
  order_hash: string;
@@ -1264,6 +1750,11 @@ export interface MsgCreateDerivativeMarketOrderResponseAminoMsg {
1264
1750
  type: "/injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse";
1265
1751
  value: MsgCreateDerivativeMarketOrderResponseAmino;
1266
1752
  }
1753
+ /**
1754
+ * @name DerivativeMarketOrderResults
1755
+ * @package injective.exchange.v1beta1
1756
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketOrderResults
1757
+ */
1267
1758
  export interface DerivativeMarketOrderResults {
1268
1759
  quantity: string;
1269
1760
  price: string;
@@ -1275,6 +1766,11 @@ export interface DerivativeMarketOrderResultsProtoMsg {
1275
1766
  typeUrl: "/injective.exchange.v1beta1.DerivativeMarketOrderResults";
1276
1767
  value: Uint8Array;
1277
1768
  }
1769
+ /**
1770
+ * @name DerivativeMarketOrderResultsAmino
1771
+ * @package injective.exchange.v1beta1
1772
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketOrderResults
1773
+ */
1278
1774
  export interface DerivativeMarketOrderResultsAmino {
1279
1775
  quantity: string;
1280
1776
  price: string;
@@ -1286,7 +1782,12 @@ export interface DerivativeMarketOrderResultsAminoMsg {
1286
1782
  type: "/injective.exchange.v1beta1.DerivativeMarketOrderResults";
1287
1783
  value: DerivativeMarketOrderResultsAmino;
1288
1784
  }
1289
- /** A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder */
1785
+ /**
1786
+ * A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder
1787
+ * @name MsgCreateBinaryOptionsMarketOrder
1788
+ * @package injective.exchange.v1beta1
1789
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder
1790
+ */
1290
1791
  export interface MsgCreateBinaryOptionsMarketOrder {
1291
1792
  sender: string;
1292
1793
  order: DerivativeOrder;
@@ -1295,7 +1796,12 @@ export interface MsgCreateBinaryOptionsMarketOrderProtoMsg {
1295
1796
  typeUrl: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder";
1296
1797
  value: Uint8Array;
1297
1798
  }
1298
- /** A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder */
1799
+ /**
1800
+ * A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder
1801
+ * @name MsgCreateBinaryOptionsMarketOrderAmino
1802
+ * @package injective.exchange.v1beta1
1803
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder
1804
+ */
1299
1805
  export interface MsgCreateBinaryOptionsMarketOrderAmino {
1300
1806
  sender: string;
1301
1807
  order: DerivativeOrderAmino;
@@ -1307,6 +1813,9 @@ export interface MsgCreateBinaryOptionsMarketOrderAminoMsg {
1307
1813
  /**
1308
1814
  * MsgCreateBinaryOptionsMarketOrderResponse defines the
1309
1815
  * Msg/CreateBinaryOptionsMarketOrder response type.
1816
+ * @name MsgCreateBinaryOptionsMarketOrderResponse
1817
+ * @package injective.exchange.v1beta1
1818
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse
1310
1819
  */
1311
1820
  export interface MsgCreateBinaryOptionsMarketOrderResponse {
1312
1821
  orderHash: string;
@@ -1320,6 +1829,9 @@ export interface MsgCreateBinaryOptionsMarketOrderResponseProtoMsg {
1320
1829
  /**
1321
1830
  * MsgCreateBinaryOptionsMarketOrderResponse defines the
1322
1831
  * Msg/CreateBinaryOptionsMarketOrder response type.
1832
+ * @name MsgCreateBinaryOptionsMarketOrderResponseAmino
1833
+ * @package injective.exchange.v1beta1
1834
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse
1323
1835
  */
1324
1836
  export interface MsgCreateBinaryOptionsMarketOrderResponseAmino {
1325
1837
  order_hash: string;
@@ -1330,13 +1842,20 @@ export interface MsgCreateBinaryOptionsMarketOrderResponseAminoMsg {
1330
1842
  type: "/injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse";
1331
1843
  value: MsgCreateBinaryOptionsMarketOrderResponseAmino;
1332
1844
  }
1333
- /** MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type. */
1845
+ /**
1846
+ * MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type.
1847
+ * @name MsgCancelDerivativeOrder
1848
+ * @package injective.exchange.v1beta1
1849
+ * @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrder
1850
+ */
1334
1851
  export interface MsgCancelDerivativeOrder {
1335
1852
  sender: string;
1336
1853
  marketId: string;
1337
1854
  subaccountId: string;
1338
1855
  orderHash: string;
1339
- /** bitwise combination of OrderMask enum values */
1856
+ /**
1857
+ * bitwise combination of OrderMask enum values
1858
+ */
1340
1859
  orderMask: number;
1341
1860
  cid: string;
1342
1861
  }
@@ -1344,13 +1863,20 @@ export interface MsgCancelDerivativeOrderProtoMsg {
1344
1863
  typeUrl: "/injective.exchange.v1beta1.MsgCancelDerivativeOrder";
1345
1864
  value: Uint8Array;
1346
1865
  }
1347
- /** MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type. */
1866
+ /**
1867
+ * MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type.
1868
+ * @name MsgCancelDerivativeOrderAmino
1869
+ * @package injective.exchange.v1beta1
1870
+ * @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrder
1871
+ */
1348
1872
  export interface MsgCancelDerivativeOrderAmino {
1349
1873
  sender: string;
1350
1874
  market_id: string;
1351
1875
  subaccount_id: string;
1352
1876
  order_hash: string;
1353
- /** bitwise combination of OrderMask enum values */
1877
+ /**
1878
+ * bitwise combination of OrderMask enum values
1879
+ */
1354
1880
  order_mask: number;
1355
1881
  cid: string;
1356
1882
  }
@@ -1361,6 +1887,9 @@ export interface MsgCancelDerivativeOrderAminoMsg {
1361
1887
  /**
1362
1888
  * MsgCancelDerivativeOrderResponse defines the
1363
1889
  * Msg/CancelDerivativeOrderResponse response type.
1890
+ * @name MsgCancelDerivativeOrderResponse
1891
+ * @package injective.exchange.v1beta1
1892
+ * @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse
1364
1893
  */
1365
1894
  export interface MsgCancelDerivativeOrderResponse {
1366
1895
  }
@@ -1371,6 +1900,9 @@ export interface MsgCancelDerivativeOrderResponseProtoMsg {
1371
1900
  /**
1372
1901
  * MsgCancelDerivativeOrderResponse defines the
1373
1902
  * Msg/CancelDerivativeOrderResponse response type.
1903
+ * @name MsgCancelDerivativeOrderResponseAmino
1904
+ * @package injective.exchange.v1beta1
1905
+ * @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse
1374
1906
  */
1375
1907
  export interface MsgCancelDerivativeOrderResponseAmino {
1376
1908
  }
@@ -1381,13 +1913,18 @@ export interface MsgCancelDerivativeOrderResponseAminoMsg {
1381
1913
  /**
1382
1914
  * MsgCancelBinaryOptionsOrder defines the Msg/CancelBinaryOptionsOrder response
1383
1915
  * type.
1916
+ * @name MsgCancelBinaryOptionsOrder
1917
+ * @package injective.exchange.v1beta1
1918
+ * @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder
1384
1919
  */
1385
1920
  export interface MsgCancelBinaryOptionsOrder {
1386
1921
  sender: string;
1387
1922
  marketId: string;
1388
1923
  subaccountId: string;
1389
1924
  orderHash: string;
1390
- /** bitwise combination of OrderMask enum values */
1925
+ /**
1926
+ * bitwise combination of OrderMask enum values
1927
+ */
1391
1928
  orderMask: number;
1392
1929
  cid: string;
1393
1930
  }
@@ -1398,13 +1935,18 @@ export interface MsgCancelBinaryOptionsOrderProtoMsg {
1398
1935
  /**
1399
1936
  * MsgCancelBinaryOptionsOrder defines the Msg/CancelBinaryOptionsOrder response
1400
1937
  * type.
1938
+ * @name MsgCancelBinaryOptionsOrderAmino
1939
+ * @package injective.exchange.v1beta1
1940
+ * @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder
1401
1941
  */
1402
1942
  export interface MsgCancelBinaryOptionsOrderAmino {
1403
1943
  sender: string;
1404
1944
  market_id: string;
1405
1945
  subaccount_id: string;
1406
1946
  order_hash: string;
1407
- /** bitwise combination of OrderMask enum values */
1947
+ /**
1948
+ * bitwise combination of OrderMask enum values
1949
+ */
1408
1950
  order_mask: number;
1409
1951
  cid: string;
1410
1952
  }
@@ -1415,6 +1957,9 @@ export interface MsgCancelBinaryOptionsOrderAminoMsg {
1415
1957
  /**
1416
1958
  * MsgCancelBinaryOptionsOrderResponse defines the
1417
1959
  * Msg/CancelBinaryOptionsOrderResponse response type.
1960
+ * @name MsgCancelBinaryOptionsOrderResponse
1961
+ * @package injective.exchange.v1beta1
1962
+ * @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse
1418
1963
  */
1419
1964
  export interface MsgCancelBinaryOptionsOrderResponse {
1420
1965
  }
@@ -1425,6 +1970,9 @@ export interface MsgCancelBinaryOptionsOrderResponseProtoMsg {
1425
1970
  /**
1426
1971
  * MsgCancelBinaryOptionsOrderResponse defines the
1427
1972
  * Msg/CancelBinaryOptionsOrderResponse response type.
1973
+ * @name MsgCancelBinaryOptionsOrderResponseAmino
1974
+ * @package injective.exchange.v1beta1
1975
+ * @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse
1428
1976
  */
1429
1977
  export interface MsgCancelBinaryOptionsOrderResponseAmino {
1430
1978
  }
@@ -1432,11 +1980,18 @@ export interface MsgCancelBinaryOptionsOrderResponseAminoMsg {
1432
1980
  type: "/injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse";
1433
1981
  value: MsgCancelBinaryOptionsOrderResponseAmino;
1434
1982
  }
1983
+ /**
1984
+ * @name OrderData
1985
+ * @package injective.exchange.v1beta1
1986
+ * @see proto type: injective.exchange.v1beta1.OrderData
1987
+ */
1435
1988
  export interface OrderData {
1436
1989
  marketId: string;
1437
1990
  subaccountId: string;
1438
1991
  orderHash: string;
1439
- /** bitwise combination of OrderMask enum values */
1992
+ /**
1993
+ * bitwise combination of OrderMask enum values
1994
+ */
1440
1995
  orderMask: number;
1441
1996
  cid: string;
1442
1997
  }
@@ -1444,11 +1999,18 @@ export interface OrderDataProtoMsg {
1444
1999
  typeUrl: "/injective.exchange.v1beta1.OrderData";
1445
2000
  value: Uint8Array;
1446
2001
  }
2002
+ /**
2003
+ * @name OrderDataAmino
2004
+ * @package injective.exchange.v1beta1
2005
+ * @see proto type: injective.exchange.v1beta1.OrderData
2006
+ */
1447
2007
  export interface OrderDataAmino {
1448
2008
  market_id: string;
1449
2009
  subaccount_id: string;
1450
2010
  order_hash: string;
1451
- /** bitwise combination of OrderMask enum values */
2011
+ /**
2012
+ * bitwise combination of OrderMask enum values
2013
+ */
1452
2014
  order_mask: number;
1453
2015
  cid: string;
1454
2016
  }
@@ -1459,6 +2021,9 @@ export interface OrderDataAminoMsg {
1459
2021
  /**
1460
2022
  * MsgBatchCancelDerivativeOrders defines the Msg/CancelDerivativeOrders
1461
2023
  * response type.
2024
+ * @name MsgBatchCancelDerivativeOrders
2025
+ * @package injective.exchange.v1beta1
2026
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders
1462
2027
  */
1463
2028
  export interface MsgBatchCancelDerivativeOrders {
1464
2029
  sender: string;
@@ -1471,6 +2036,9 @@ export interface MsgBatchCancelDerivativeOrdersProtoMsg {
1471
2036
  /**
1472
2037
  * MsgBatchCancelDerivativeOrders defines the Msg/CancelDerivativeOrders
1473
2038
  * response type.
2039
+ * @name MsgBatchCancelDerivativeOrdersAmino
2040
+ * @package injective.exchange.v1beta1
2041
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders
1474
2042
  */
1475
2043
  export interface MsgBatchCancelDerivativeOrdersAmino {
1476
2044
  sender: string;
@@ -1483,6 +2051,9 @@ export interface MsgBatchCancelDerivativeOrdersAminoMsg {
1483
2051
  /**
1484
2052
  * MsgBatchCancelDerivativeOrdersResponse defines the
1485
2053
  * Msg/CancelDerivativeOrderResponse response type.
2054
+ * @name MsgBatchCancelDerivativeOrdersResponse
2055
+ * @package injective.exchange.v1beta1
2056
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse
1486
2057
  */
1487
2058
  export interface MsgBatchCancelDerivativeOrdersResponse {
1488
2059
  success: boolean[];
@@ -1494,6 +2065,9 @@ export interface MsgBatchCancelDerivativeOrdersResponseProtoMsg {
1494
2065
  /**
1495
2066
  * MsgBatchCancelDerivativeOrdersResponse defines the
1496
2067
  * Msg/CancelDerivativeOrderResponse response type.
2068
+ * @name MsgBatchCancelDerivativeOrdersResponseAmino
2069
+ * @package injective.exchange.v1beta1
2070
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse
1497
2071
  */
1498
2072
  export interface MsgBatchCancelDerivativeOrdersResponseAmino {
1499
2073
  success: boolean[];
@@ -1502,7 +2076,12 @@ export interface MsgBatchCancelDerivativeOrdersResponseAminoMsg {
1502
2076
  type: "/injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse";
1503
2077
  value: MsgBatchCancelDerivativeOrdersResponseAmino;
1504
2078
  }
1505
- /** A Cosmos-SDK MsgSubaccountTransfer */
2079
+ /**
2080
+ * A Cosmos-SDK MsgSubaccountTransfer
2081
+ * @name MsgSubaccountTransfer
2082
+ * @package injective.exchange.v1beta1
2083
+ * @see proto type: injective.exchange.v1beta1.MsgSubaccountTransfer
2084
+ */
1506
2085
  export interface MsgSubaccountTransfer {
1507
2086
  sender: string;
1508
2087
  sourceSubaccountId: string;
@@ -1513,7 +2092,12 @@ export interface MsgSubaccountTransferProtoMsg {
1513
2092
  typeUrl: "/injective.exchange.v1beta1.MsgSubaccountTransfer";
1514
2093
  value: Uint8Array;
1515
2094
  }
1516
- /** A Cosmos-SDK MsgSubaccountTransfer */
2095
+ /**
2096
+ * A Cosmos-SDK MsgSubaccountTransfer
2097
+ * @name MsgSubaccountTransferAmino
2098
+ * @package injective.exchange.v1beta1
2099
+ * @see proto type: injective.exchange.v1beta1.MsgSubaccountTransfer
2100
+ */
1517
2101
  export interface MsgSubaccountTransferAmino {
1518
2102
  sender: string;
1519
2103
  source_subaccount_id: string;
@@ -1527,6 +2111,9 @@ export interface MsgSubaccountTransferAminoMsg {
1527
2111
  /**
1528
2112
  * MsgSubaccountTransferResponse defines the Msg/SubaccountTransfer response
1529
2113
  * type.
2114
+ * @name MsgSubaccountTransferResponse
2115
+ * @package injective.exchange.v1beta1
2116
+ * @see proto type: injective.exchange.v1beta1.MsgSubaccountTransferResponse
1530
2117
  */
1531
2118
  export interface MsgSubaccountTransferResponse {
1532
2119
  }
@@ -1537,6 +2124,9 @@ export interface MsgSubaccountTransferResponseProtoMsg {
1537
2124
  /**
1538
2125
  * MsgSubaccountTransferResponse defines the Msg/SubaccountTransfer response
1539
2126
  * type.
2127
+ * @name MsgSubaccountTransferResponseAmino
2128
+ * @package injective.exchange.v1beta1
2129
+ * @see proto type: injective.exchange.v1beta1.MsgSubaccountTransferResponse
1540
2130
  */
1541
2131
  export interface MsgSubaccountTransferResponseAmino {
1542
2132
  }
@@ -1544,7 +2134,12 @@ export interface MsgSubaccountTransferResponseAminoMsg {
1544
2134
  type: "/injective.exchange.v1beta1.MsgSubaccountTransferResponse";
1545
2135
  value: MsgSubaccountTransferResponseAmino;
1546
2136
  }
1547
- /** A Cosmos-SDK MsgExternalTransfer */
2137
+ /**
2138
+ * A Cosmos-SDK MsgExternalTransfer
2139
+ * @name MsgExternalTransfer
2140
+ * @package injective.exchange.v1beta1
2141
+ * @see proto type: injective.exchange.v1beta1.MsgExternalTransfer
2142
+ */
1548
2143
  export interface MsgExternalTransfer {
1549
2144
  sender: string;
1550
2145
  sourceSubaccountId: string;
@@ -1555,7 +2150,12 @@ export interface MsgExternalTransferProtoMsg {
1555
2150
  typeUrl: "/injective.exchange.v1beta1.MsgExternalTransfer";
1556
2151
  value: Uint8Array;
1557
2152
  }
1558
- /** A Cosmos-SDK MsgExternalTransfer */
2153
+ /**
2154
+ * A Cosmos-SDK MsgExternalTransfer
2155
+ * @name MsgExternalTransferAmino
2156
+ * @package injective.exchange.v1beta1
2157
+ * @see proto type: injective.exchange.v1beta1.MsgExternalTransfer
2158
+ */
1559
2159
  export interface MsgExternalTransferAmino {
1560
2160
  sender: string;
1561
2161
  source_subaccount_id: string;
@@ -1566,59 +2166,98 @@ export interface MsgExternalTransferAminoMsg {
1566
2166
  type: "exchange/MsgExternalTransfer";
1567
2167
  value: MsgExternalTransferAmino;
1568
2168
  }
1569
- /** MsgExternalTransferResponse defines the Msg/ExternalTransfer response type. */
2169
+ /**
2170
+ * MsgExternalTransferResponse defines the Msg/ExternalTransfer response type.
2171
+ * @name MsgExternalTransferResponse
2172
+ * @package injective.exchange.v1beta1
2173
+ * @see proto type: injective.exchange.v1beta1.MsgExternalTransferResponse
2174
+ */
1570
2175
  export interface MsgExternalTransferResponse {
1571
2176
  }
1572
2177
  export interface MsgExternalTransferResponseProtoMsg {
1573
2178
  typeUrl: "/injective.exchange.v1beta1.MsgExternalTransferResponse";
1574
2179
  value: Uint8Array;
1575
2180
  }
1576
- /** MsgExternalTransferResponse defines the Msg/ExternalTransfer response type. */
2181
+ /**
2182
+ * MsgExternalTransferResponse defines the Msg/ExternalTransfer response type.
2183
+ * @name MsgExternalTransferResponseAmino
2184
+ * @package injective.exchange.v1beta1
2185
+ * @see proto type: injective.exchange.v1beta1.MsgExternalTransferResponse
2186
+ */
1577
2187
  export interface MsgExternalTransferResponseAmino {
1578
2188
  }
1579
2189
  export interface MsgExternalTransferResponseAminoMsg {
1580
2190
  type: "/injective.exchange.v1beta1.MsgExternalTransferResponse";
1581
2191
  value: MsgExternalTransferResponseAmino;
1582
2192
  }
1583
- /** A Cosmos-SDK MsgLiquidatePosition */
2193
+ /**
2194
+ * A Cosmos-SDK MsgLiquidatePosition
2195
+ * @name MsgLiquidatePosition
2196
+ * @package injective.exchange.v1beta1
2197
+ * @see proto type: injective.exchange.v1beta1.MsgLiquidatePosition
2198
+ */
1584
2199
  export interface MsgLiquidatePosition {
1585
2200
  sender: string;
1586
2201
  subaccountId: string;
1587
2202
  marketId: string;
1588
- /** optional order to provide for liquidation */
2203
+ /**
2204
+ * optional order to provide for liquidation
2205
+ */
1589
2206
  order?: DerivativeOrder;
1590
2207
  }
1591
2208
  export interface MsgLiquidatePositionProtoMsg {
1592
2209
  typeUrl: "/injective.exchange.v1beta1.MsgLiquidatePosition";
1593
2210
  value: Uint8Array;
1594
2211
  }
1595
- /** A Cosmos-SDK MsgLiquidatePosition */
2212
+ /**
2213
+ * A Cosmos-SDK MsgLiquidatePosition
2214
+ * @name MsgLiquidatePositionAmino
2215
+ * @package injective.exchange.v1beta1
2216
+ * @see proto type: injective.exchange.v1beta1.MsgLiquidatePosition
2217
+ */
1596
2218
  export interface MsgLiquidatePositionAmino {
1597
2219
  sender: string;
1598
2220
  subaccount_id: string;
1599
2221
  market_id: string;
1600
- /** optional order to provide for liquidation */
2222
+ /**
2223
+ * optional order to provide for liquidation
2224
+ */
1601
2225
  order?: DerivativeOrderAmino;
1602
2226
  }
1603
2227
  export interface MsgLiquidatePositionAminoMsg {
1604
2228
  type: "exchange/MsgLiquidatePosition";
1605
2229
  value: MsgLiquidatePositionAmino;
1606
2230
  }
1607
- /** MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type. */
2231
+ /**
2232
+ * MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type.
2233
+ * @name MsgLiquidatePositionResponse
2234
+ * @package injective.exchange.v1beta1
2235
+ * @see proto type: injective.exchange.v1beta1.MsgLiquidatePositionResponse
2236
+ */
1608
2237
  export interface MsgLiquidatePositionResponse {
1609
2238
  }
1610
2239
  export interface MsgLiquidatePositionResponseProtoMsg {
1611
2240
  typeUrl: "/injective.exchange.v1beta1.MsgLiquidatePositionResponse";
1612
2241
  value: Uint8Array;
1613
2242
  }
1614
- /** MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type. */
2243
+ /**
2244
+ * MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type.
2245
+ * @name MsgLiquidatePositionResponseAmino
2246
+ * @package injective.exchange.v1beta1
2247
+ * @see proto type: injective.exchange.v1beta1.MsgLiquidatePositionResponse
2248
+ */
1615
2249
  export interface MsgLiquidatePositionResponseAmino {
1616
2250
  }
1617
2251
  export interface MsgLiquidatePositionResponseAminoMsg {
1618
2252
  type: "/injective.exchange.v1beta1.MsgLiquidatePositionResponse";
1619
2253
  value: MsgLiquidatePositionResponseAmino;
1620
2254
  }
1621
- /** A Cosmos-SDK MsgEmergencySettleMarket */
2255
+ /**
2256
+ * A Cosmos-SDK MsgEmergencySettleMarket
2257
+ * @name MsgEmergencySettleMarket
2258
+ * @package injective.exchange.v1beta1
2259
+ * @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarket
2260
+ */
1622
2261
  export interface MsgEmergencySettleMarket {
1623
2262
  sender: string;
1624
2263
  subaccountId: string;
@@ -1628,7 +2267,12 @@ export interface MsgEmergencySettleMarketProtoMsg {
1628
2267
  typeUrl: "/injective.exchange.v1beta1.MsgEmergencySettleMarket";
1629
2268
  value: Uint8Array;
1630
2269
  }
1631
- /** A Cosmos-SDK MsgEmergencySettleMarket */
2270
+ /**
2271
+ * A Cosmos-SDK MsgEmergencySettleMarket
2272
+ * @name MsgEmergencySettleMarketAmino
2273
+ * @package injective.exchange.v1beta1
2274
+ * @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarket
2275
+ */
1632
2276
  export interface MsgEmergencySettleMarketAmino {
1633
2277
  sender: string;
1634
2278
  subaccount_id: string;
@@ -1641,6 +2285,9 @@ export interface MsgEmergencySettleMarketAminoMsg {
1641
2285
  /**
1642
2286
  * MsgEmergencySettleMarketResponse defines the Msg/EmergencySettleMarket
1643
2287
  * response type.
2288
+ * @name MsgEmergencySettleMarketResponse
2289
+ * @package injective.exchange.v1beta1
2290
+ * @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarketResponse
1644
2291
  */
1645
2292
  export interface MsgEmergencySettleMarketResponse {
1646
2293
  }
@@ -1651,6 +2298,9 @@ export interface MsgEmergencySettleMarketResponseProtoMsg {
1651
2298
  /**
1652
2299
  * MsgEmergencySettleMarketResponse defines the Msg/EmergencySettleMarket
1653
2300
  * response type.
2301
+ * @name MsgEmergencySettleMarketResponseAmino
2302
+ * @package injective.exchange.v1beta1
2303
+ * @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarketResponse
1654
2304
  */
1655
2305
  export interface MsgEmergencySettleMarketResponseAmino {
1656
2306
  }
@@ -1658,26 +2308,40 @@ export interface MsgEmergencySettleMarketResponseAminoMsg {
1658
2308
  type: "/injective.exchange.v1beta1.MsgEmergencySettleMarketResponse";
1659
2309
  value: MsgEmergencySettleMarketResponseAmino;
1660
2310
  }
1661
- /** A Cosmos-SDK MsgIncreasePositionMargin */
2311
+ /**
2312
+ * A Cosmos-SDK MsgIncreasePositionMargin
2313
+ * @name MsgIncreasePositionMargin
2314
+ * @package injective.exchange.v1beta1
2315
+ * @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMargin
2316
+ */
1662
2317
  export interface MsgIncreasePositionMargin {
1663
2318
  sender: string;
1664
2319
  sourceSubaccountId: string;
1665
2320
  destinationSubaccountId: string;
1666
2321
  marketId: string;
1667
- /** amount defines the amount of margin to add to the position */
2322
+ /**
2323
+ * amount defines the amount of margin to add to the position
2324
+ */
1668
2325
  amount: string;
1669
2326
  }
1670
2327
  export interface MsgIncreasePositionMarginProtoMsg {
1671
2328
  typeUrl: "/injective.exchange.v1beta1.MsgIncreasePositionMargin";
1672
2329
  value: Uint8Array;
1673
2330
  }
1674
- /** A Cosmos-SDK MsgIncreasePositionMargin */
2331
+ /**
2332
+ * A Cosmos-SDK MsgIncreasePositionMargin
2333
+ * @name MsgIncreasePositionMarginAmino
2334
+ * @package injective.exchange.v1beta1
2335
+ * @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMargin
2336
+ */
1675
2337
  export interface MsgIncreasePositionMarginAmino {
1676
2338
  sender: string;
1677
2339
  source_subaccount_id: string;
1678
2340
  destination_subaccount_id: string;
1679
2341
  market_id: string;
1680
- /** amount defines the amount of margin to add to the position */
2342
+ /**
2343
+ * amount defines the amount of margin to add to the position
2344
+ */
1681
2345
  amount: string;
1682
2346
  }
1683
2347
  export interface MsgIncreasePositionMarginAminoMsg {
@@ -1687,6 +2351,9 @@ export interface MsgIncreasePositionMarginAminoMsg {
1687
2351
  /**
1688
2352
  * MsgIncreasePositionMarginResponse defines the Msg/IncreasePositionMargin
1689
2353
  * response type.
2354
+ * @name MsgIncreasePositionMarginResponse
2355
+ * @package injective.exchange.v1beta1
2356
+ * @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMarginResponse
1690
2357
  */
1691
2358
  export interface MsgIncreasePositionMarginResponse {
1692
2359
  }
@@ -1697,6 +2364,9 @@ export interface MsgIncreasePositionMarginResponseProtoMsg {
1697
2364
  /**
1698
2365
  * MsgIncreasePositionMarginResponse defines the Msg/IncreasePositionMargin
1699
2366
  * response type.
2367
+ * @name MsgIncreasePositionMarginResponseAmino
2368
+ * @package injective.exchange.v1beta1
2369
+ * @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMarginResponse
1700
2370
  */
1701
2371
  export interface MsgIncreasePositionMarginResponseAmino {
1702
2372
  }
@@ -1704,26 +2374,40 @@ export interface MsgIncreasePositionMarginResponseAminoMsg {
1704
2374
  type: "/injective.exchange.v1beta1.MsgIncreasePositionMarginResponse";
1705
2375
  value: MsgIncreasePositionMarginResponseAmino;
1706
2376
  }
1707
- /** A Cosmos-SDK MsgDecreasePositionMargin */
2377
+ /**
2378
+ * A Cosmos-SDK MsgDecreasePositionMargin
2379
+ * @name MsgDecreasePositionMargin
2380
+ * @package injective.exchange.v1beta1
2381
+ * @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMargin
2382
+ */
1708
2383
  export interface MsgDecreasePositionMargin {
1709
2384
  sender: string;
1710
2385
  sourceSubaccountId: string;
1711
2386
  destinationSubaccountId: string;
1712
2387
  marketId: string;
1713
- /** amount defines the amount of margin to withdraw from the position */
2388
+ /**
2389
+ * amount defines the amount of margin to withdraw from the position
2390
+ */
1714
2391
  amount: string;
1715
2392
  }
1716
2393
  export interface MsgDecreasePositionMarginProtoMsg {
1717
2394
  typeUrl: "/injective.exchange.v1beta1.MsgDecreasePositionMargin";
1718
2395
  value: Uint8Array;
1719
2396
  }
1720
- /** A Cosmos-SDK MsgDecreasePositionMargin */
2397
+ /**
2398
+ * A Cosmos-SDK MsgDecreasePositionMargin
2399
+ * @name MsgDecreasePositionMarginAmino
2400
+ * @package injective.exchange.v1beta1
2401
+ * @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMargin
2402
+ */
1721
2403
  export interface MsgDecreasePositionMarginAmino {
1722
2404
  sender: string;
1723
2405
  source_subaccount_id: string;
1724
2406
  destination_subaccount_id: string;
1725
2407
  market_id: string;
1726
- /** amount defines the amount of margin to withdraw from the position */
2408
+ /**
2409
+ * amount defines the amount of margin to withdraw from the position
2410
+ */
1727
2411
  amount: string;
1728
2412
  }
1729
2413
  export interface MsgDecreasePositionMarginAminoMsg {
@@ -1733,6 +2417,9 @@ export interface MsgDecreasePositionMarginAminoMsg {
1733
2417
  /**
1734
2418
  * MsgDecreasePositionMarginResponse defines the Msg/MsgDecreasePositionMargin
1735
2419
  * response type.
2420
+ * @name MsgDecreasePositionMarginResponse
2421
+ * @package injective.exchange.v1beta1
2422
+ * @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMarginResponse
1736
2423
  */
1737
2424
  export interface MsgDecreasePositionMarginResponse {
1738
2425
  }
@@ -1743,6 +2430,9 @@ export interface MsgDecreasePositionMarginResponseProtoMsg {
1743
2430
  /**
1744
2431
  * MsgDecreasePositionMarginResponse defines the Msg/MsgDecreasePositionMargin
1745
2432
  * response type.
2433
+ * @name MsgDecreasePositionMarginResponseAmino
2434
+ * @package injective.exchange.v1beta1
2435
+ * @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMarginResponse
1746
2436
  */
1747
2437
  export interface MsgDecreasePositionMarginResponseAmino {
1748
2438
  }
@@ -1750,7 +2440,12 @@ export interface MsgDecreasePositionMarginResponseAminoMsg {
1750
2440
  type: "/injective.exchange.v1beta1.MsgDecreasePositionMarginResponse";
1751
2441
  value: MsgDecreasePositionMarginResponseAmino;
1752
2442
  }
1753
- /** MsgPrivilegedExecuteContract defines the Msg/Exec message type */
2443
+ /**
2444
+ * MsgPrivilegedExecuteContract defines the Msg/Exec message type
2445
+ * @name MsgPrivilegedExecuteContract
2446
+ * @package injective.exchange.v1beta1
2447
+ * @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContract
2448
+ */
1754
2449
  export interface MsgPrivilegedExecuteContract {
1755
2450
  sender: string;
1756
2451
  /**
@@ -1758,16 +2453,25 @@ export interface MsgPrivilegedExecuteContract {
1758
2453
  * 100inj).
1759
2454
  */
1760
2455
  funds: string;
1761
- /** contract_address defines the contract address to execute */
2456
+ /**
2457
+ * contract_address defines the contract address to execute
2458
+ */
1762
2459
  contractAddress: string;
1763
- /** data defines the call data used when executing the contract */
2460
+ /**
2461
+ * data defines the call data used when executing the contract
2462
+ */
1764
2463
  data: string;
1765
2464
  }
1766
2465
  export interface MsgPrivilegedExecuteContractProtoMsg {
1767
2466
  typeUrl: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContract";
1768
2467
  value: Uint8Array;
1769
2468
  }
1770
- /** MsgPrivilegedExecuteContract defines the Msg/Exec message type */
2469
+ /**
2470
+ * MsgPrivilegedExecuteContract defines the Msg/Exec message type
2471
+ * @name MsgPrivilegedExecuteContractAmino
2472
+ * @package injective.exchange.v1beta1
2473
+ * @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContract
2474
+ */
1771
2475
  export interface MsgPrivilegedExecuteContractAmino {
1772
2476
  sender: string;
1773
2477
  /**
@@ -1775,16 +2479,25 @@ export interface MsgPrivilegedExecuteContractAmino {
1775
2479
  * 100inj).
1776
2480
  */
1777
2481
  funds: string;
1778
- /** contract_address defines the contract address to execute */
2482
+ /**
2483
+ * contract_address defines the contract address to execute
2484
+ */
1779
2485
  contract_address: string;
1780
- /** data defines the call data used when executing the contract */
2486
+ /**
2487
+ * data defines the call data used when executing the contract
2488
+ */
1781
2489
  data: string;
1782
2490
  }
1783
2491
  export interface MsgPrivilegedExecuteContractAminoMsg {
1784
2492
  type: "exchange/MsgPrivilegedExecuteContract";
1785
2493
  value: MsgPrivilegedExecuteContractAmino;
1786
2494
  }
1787
- /** MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type. */
2495
+ /**
2496
+ * MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type.
2497
+ * @name MsgPrivilegedExecuteContractResponse
2498
+ * @package injective.exchange.v1beta1
2499
+ * @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse
2500
+ */
1788
2501
  export interface MsgPrivilegedExecuteContractResponse {
1789
2502
  fundsDiff: Coin[];
1790
2503
  }
@@ -1792,7 +2505,12 @@ export interface MsgPrivilegedExecuteContractResponseProtoMsg {
1792
2505
  typeUrl: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse";
1793
2506
  value: Uint8Array;
1794
2507
  }
1795
- /** MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type. */
2508
+ /**
2509
+ * MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type.
2510
+ * @name MsgPrivilegedExecuteContractResponseAmino
2511
+ * @package injective.exchange.v1beta1
2512
+ * @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse
2513
+ */
1796
2514
  export interface MsgPrivilegedExecuteContractResponseAmino {
1797
2515
  funds_diff: CoinAmino[];
1798
2516
  }
@@ -1800,7 +2518,12 @@ export interface MsgPrivilegedExecuteContractResponseAminoMsg {
1800
2518
  type: "/injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse";
1801
2519
  value: MsgPrivilegedExecuteContractResponseAmino;
1802
2520
  }
1803
- /** A Cosmos-SDK MsgRewardsOptOut */
2521
+ /**
2522
+ * A Cosmos-SDK MsgRewardsOptOut
2523
+ * @name MsgRewardsOptOut
2524
+ * @package injective.exchange.v1beta1
2525
+ * @see proto type: injective.exchange.v1beta1.MsgRewardsOptOut
2526
+ */
1804
2527
  export interface MsgRewardsOptOut {
1805
2528
  sender: string;
1806
2529
  }
@@ -1808,7 +2531,12 @@ export interface MsgRewardsOptOutProtoMsg {
1808
2531
  typeUrl: "/injective.exchange.v1beta1.MsgRewardsOptOut";
1809
2532
  value: Uint8Array;
1810
2533
  }
1811
- /** A Cosmos-SDK MsgRewardsOptOut */
2534
+ /**
2535
+ * A Cosmos-SDK MsgRewardsOptOut
2536
+ * @name MsgRewardsOptOutAmino
2537
+ * @package injective.exchange.v1beta1
2538
+ * @see proto type: injective.exchange.v1beta1.MsgRewardsOptOut
2539
+ */
1812
2540
  export interface MsgRewardsOptOutAmino {
1813
2541
  sender: string;
1814
2542
  }
@@ -1816,21 +2544,36 @@ export interface MsgRewardsOptOutAminoMsg {
1816
2544
  type: "exchange/MsgRewardsOptOut";
1817
2545
  value: MsgRewardsOptOutAmino;
1818
2546
  }
1819
- /** MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type. */
2547
+ /**
2548
+ * MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type.
2549
+ * @name MsgRewardsOptOutResponse
2550
+ * @package injective.exchange.v1beta1
2551
+ * @see proto type: injective.exchange.v1beta1.MsgRewardsOptOutResponse
2552
+ */
1820
2553
  export interface MsgRewardsOptOutResponse {
1821
2554
  }
1822
2555
  export interface MsgRewardsOptOutResponseProtoMsg {
1823
2556
  typeUrl: "/injective.exchange.v1beta1.MsgRewardsOptOutResponse";
1824
2557
  value: Uint8Array;
1825
2558
  }
1826
- /** MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type. */
2559
+ /**
2560
+ * MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type.
2561
+ * @name MsgRewardsOptOutResponseAmino
2562
+ * @package injective.exchange.v1beta1
2563
+ * @see proto type: injective.exchange.v1beta1.MsgRewardsOptOutResponse
2564
+ */
1827
2565
  export interface MsgRewardsOptOutResponseAmino {
1828
2566
  }
1829
2567
  export interface MsgRewardsOptOutResponseAminoMsg {
1830
2568
  type: "/injective.exchange.v1beta1.MsgRewardsOptOutResponse";
1831
2569
  value: MsgRewardsOptOutResponseAmino;
1832
2570
  }
1833
- /** A Cosmos-SDK MsgReclaimLockedFunds */
2571
+ /**
2572
+ * A Cosmos-SDK MsgReclaimLockedFunds
2573
+ * @name MsgReclaimLockedFunds
2574
+ * @package injective.exchange.v1beta1
2575
+ * @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFunds
2576
+ */
1834
2577
  export interface MsgReclaimLockedFunds {
1835
2578
  sender: string;
1836
2579
  lockedAccountPubKey: Uint8Array;
@@ -1840,7 +2583,12 @@ export interface MsgReclaimLockedFundsProtoMsg {
1840
2583
  typeUrl: "/injective.exchange.v1beta1.MsgReclaimLockedFunds";
1841
2584
  value: Uint8Array;
1842
2585
  }
1843
- /** A Cosmos-SDK MsgReclaimLockedFunds */
2586
+ /**
2587
+ * A Cosmos-SDK MsgReclaimLockedFunds
2588
+ * @name MsgReclaimLockedFundsAmino
2589
+ * @package injective.exchange.v1beta1
2590
+ * @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFunds
2591
+ */
1844
2592
  export interface MsgReclaimLockedFundsAmino {
1845
2593
  sender: string;
1846
2594
  lockedAccountPubKey: string;
@@ -1853,6 +2601,9 @@ export interface MsgReclaimLockedFundsAminoMsg {
1853
2601
  /**
1854
2602
  * MsgReclaimLockedFundsResponse defines the Msg/ReclaimLockedFunds response
1855
2603
  * type.
2604
+ * @name MsgReclaimLockedFundsResponse
2605
+ * @package injective.exchange.v1beta1
2606
+ * @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFundsResponse
1856
2607
  */
1857
2608
  export interface MsgReclaimLockedFundsResponse {
1858
2609
  }
@@ -1863,6 +2614,9 @@ export interface MsgReclaimLockedFundsResponseProtoMsg {
1863
2614
  /**
1864
2615
  * MsgReclaimLockedFundsResponse defines the Msg/ReclaimLockedFunds response
1865
2616
  * type.
2617
+ * @name MsgReclaimLockedFundsResponseAmino
2618
+ * @package injective.exchange.v1beta1
2619
+ * @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFundsResponse
1866
2620
  */
1867
2621
  export interface MsgReclaimLockedFundsResponseAmino {
1868
2622
  }
@@ -1870,9 +2624,16 @@ export interface MsgReclaimLockedFundsResponseAminoMsg {
1870
2624
  type: "/injective.exchange.v1beta1.MsgReclaimLockedFundsResponse";
1871
2625
  value: MsgReclaimLockedFundsResponseAmino;
1872
2626
  }
1873
- /** MsgSignData defines an arbitrary, general-purpose, off-chain message */
2627
+ /**
2628
+ * MsgSignData defines an arbitrary, general-purpose, off-chain message
2629
+ * @name MsgSignData
2630
+ * @package injective.exchange.v1beta1
2631
+ * @see proto type: injective.exchange.v1beta1.MsgSignData
2632
+ */
1874
2633
  export interface MsgSignData {
1875
- /** Signer is the sdk.AccAddress of the message signer */
2634
+ /**
2635
+ * Signer is the sdk.AccAddress of the message signer
2636
+ */
1876
2637
  signer: Uint8Array;
1877
2638
  /**
1878
2639
  * Data represents the raw bytes of the content that is signed (text, json,
@@ -1884,9 +2645,16 @@ export interface MsgSignDataProtoMsg {
1884
2645
  typeUrl: "/injective.exchange.v1beta1.MsgSignData";
1885
2646
  value: Uint8Array;
1886
2647
  }
1887
- /** MsgSignData defines an arbitrary, general-purpose, off-chain message */
2648
+ /**
2649
+ * MsgSignData defines an arbitrary, general-purpose, off-chain message
2650
+ * @name MsgSignDataAmino
2651
+ * @package injective.exchange.v1beta1
2652
+ * @see proto type: injective.exchange.v1beta1.MsgSignData
2653
+ */
1888
2654
  export interface MsgSignDataAmino {
1889
- /** Signer is the sdk.AccAddress of the message signer */
2655
+ /**
2656
+ * Signer is the sdk.AccAddress of the message signer
2657
+ */
1890
2658
  Signer: string;
1891
2659
  /**
1892
2660
  * Data represents the raw bytes of the content that is signed (text, json,
@@ -1898,7 +2666,12 @@ export interface MsgSignDataAminoMsg {
1898
2666
  type: "/injective.exchange.v1beta1.MsgSignData";
1899
2667
  value: MsgSignDataAmino;
1900
2668
  }
1901
- /** MsgSignDoc defines an arbitrary, general-purpose, off-chain message */
2669
+ /**
2670
+ * MsgSignDoc defines an arbitrary, general-purpose, off-chain message
2671
+ * @name MsgSignDoc
2672
+ * @package injective.exchange.v1beta1
2673
+ * @see proto type: injective.exchange.v1beta1.MsgSignDoc
2674
+ */
1902
2675
  export interface MsgSignDoc {
1903
2676
  signType: string;
1904
2677
  value: MsgSignData;
@@ -1907,7 +2680,12 @@ export interface MsgSignDocProtoMsg {
1907
2680
  typeUrl: "/injective.exchange.v1beta1.MsgSignDoc";
1908
2681
  value: Uint8Array;
1909
2682
  }
1910
- /** MsgSignDoc defines an arbitrary, general-purpose, off-chain message */
2683
+ /**
2684
+ * MsgSignDoc defines an arbitrary, general-purpose, off-chain message
2685
+ * @name MsgSignDocAmino
2686
+ * @package injective.exchange.v1beta1
2687
+ * @see proto type: injective.exchange.v1beta1.MsgSignDoc
2688
+ */
1911
2689
  export interface MsgSignDocAmino {
1912
2690
  sign_type: string;
1913
2691
  value: MsgSignDataAmino;
@@ -1919,17 +2697,28 @@ export interface MsgSignDocAminoMsg {
1919
2697
  /**
1920
2698
  * MsgAdminUpdateBinaryOptionsMarket is used by the market Admin to operate the
1921
2699
  * market
2700
+ * @name MsgAdminUpdateBinaryOptionsMarket
2701
+ * @package injective.exchange.v1beta1
2702
+ * @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket
1922
2703
  */
1923
2704
  export interface MsgAdminUpdateBinaryOptionsMarket {
1924
2705
  sender: string;
1925
2706
  marketId: string;
1926
- /** new price at which market will be settled */
2707
+ /**
2708
+ * new price at which market will be settled
2709
+ */
1927
2710
  settlementPrice?: string;
1928
- /** expiration timestamp */
2711
+ /**
2712
+ * expiration timestamp
2713
+ */
1929
2714
  expirationTimestamp: bigint;
1930
- /** expiration timestamp */
2715
+ /**
2716
+ * expiration timestamp
2717
+ */
1931
2718
  settlementTimestamp: bigint;
1932
- /** Status of the market */
2719
+ /**
2720
+ * Status of the market
2721
+ */
1933
2722
  status: MarketStatus;
1934
2723
  }
1935
2724
  export interface MsgAdminUpdateBinaryOptionsMarketProtoMsg {
@@ -1939,17 +2728,28 @@ export interface MsgAdminUpdateBinaryOptionsMarketProtoMsg {
1939
2728
  /**
1940
2729
  * MsgAdminUpdateBinaryOptionsMarket is used by the market Admin to operate the
1941
2730
  * market
2731
+ * @name MsgAdminUpdateBinaryOptionsMarketAmino
2732
+ * @package injective.exchange.v1beta1
2733
+ * @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket
1942
2734
  */
1943
2735
  export interface MsgAdminUpdateBinaryOptionsMarketAmino {
1944
2736
  sender: string;
1945
2737
  market_id: string;
1946
- /** new price at which market will be settled */
2738
+ /**
2739
+ * new price at which market will be settled
2740
+ */
1947
2741
  settlement_price?: string;
1948
- /** expiration timestamp */
2742
+ /**
2743
+ * expiration timestamp
2744
+ */
1949
2745
  expiration_timestamp: string;
1950
- /** expiration timestamp */
2746
+ /**
2747
+ * expiration timestamp
2748
+ */
1951
2749
  settlement_timestamp: string;
1952
- /** Status of the market */
2750
+ /**
2751
+ * Status of the market
2752
+ */
1953
2753
  status: MarketStatus;
1954
2754
  }
1955
2755
  export interface MsgAdminUpdateBinaryOptionsMarketAminoMsg {
@@ -1959,6 +2759,9 @@ export interface MsgAdminUpdateBinaryOptionsMarketAminoMsg {
1959
2759
  /**
1960
2760
  * MsgAdminUpdateBinaryOptionsMarketResponse is the response for
1961
2761
  * AdminUpdateBinaryOptionsMarket rpc method
2762
+ * @name MsgAdminUpdateBinaryOptionsMarketResponse
2763
+ * @package injective.exchange.v1beta1
2764
+ * @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse
1962
2765
  */
1963
2766
  export interface MsgAdminUpdateBinaryOptionsMarketResponse {
1964
2767
  }
@@ -1969,6 +2772,9 @@ export interface MsgAdminUpdateBinaryOptionsMarketResponseProtoMsg {
1969
2772
  /**
1970
2773
  * MsgAdminUpdateBinaryOptionsMarketResponse is the response for
1971
2774
  * AdminUpdateBinaryOptionsMarket rpc method
2775
+ * @name MsgAdminUpdateBinaryOptionsMarketResponseAmino
2776
+ * @package injective.exchange.v1beta1
2777
+ * @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse
1972
2778
  */
1973
2779
  export interface MsgAdminUpdateBinaryOptionsMarketResponseAmino {
1974
2780
  }
@@ -1976,7 +2782,12 @@ export interface MsgAdminUpdateBinaryOptionsMarketResponseAminoMsg {
1976
2782
  type: "/injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse";
1977
2783
  value: MsgAdminUpdateBinaryOptionsMarketResponseAmino;
1978
2784
  }
1979
- /** MsgAuthorizeStakeGrants grants stakes to grantees. */
2785
+ /**
2786
+ * MsgAuthorizeStakeGrants grants stakes to grantees.
2787
+ * @name MsgAuthorizeStakeGrants
2788
+ * @package injective.exchange.v1beta1
2789
+ * @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrants
2790
+ */
1980
2791
  export interface MsgAuthorizeStakeGrants {
1981
2792
  sender: string;
1982
2793
  grants: GrantAuthorization[];
@@ -1985,7 +2796,12 @@ export interface MsgAuthorizeStakeGrantsProtoMsg {
1985
2796
  typeUrl: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrants";
1986
2797
  value: Uint8Array;
1987
2798
  }
1988
- /** MsgAuthorizeStakeGrants grants stakes to grantees. */
2799
+ /**
2800
+ * MsgAuthorizeStakeGrants grants stakes to grantees.
2801
+ * @name MsgAuthorizeStakeGrantsAmino
2802
+ * @package injective.exchange.v1beta1
2803
+ * @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrants
2804
+ */
1989
2805
  export interface MsgAuthorizeStakeGrantsAmino {
1990
2806
  sender: string;
1991
2807
  grants: GrantAuthorizationAmino[];
@@ -1994,19 +2810,34 @@ export interface MsgAuthorizeStakeGrantsAminoMsg {
1994
2810
  type: "exchange/MsgAuthorizeStakeGrants";
1995
2811
  value: MsgAuthorizeStakeGrantsAmino;
1996
2812
  }
2813
+ /**
2814
+ * @name MsgAuthorizeStakeGrantsResponse
2815
+ * @package injective.exchange.v1beta1
2816
+ * @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse
2817
+ */
1997
2818
  export interface MsgAuthorizeStakeGrantsResponse {
1998
2819
  }
1999
2820
  export interface MsgAuthorizeStakeGrantsResponseProtoMsg {
2000
2821
  typeUrl: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse";
2001
2822
  value: Uint8Array;
2002
2823
  }
2824
+ /**
2825
+ * @name MsgAuthorizeStakeGrantsResponseAmino
2826
+ * @package injective.exchange.v1beta1
2827
+ * @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse
2828
+ */
2003
2829
  export interface MsgAuthorizeStakeGrantsResponseAmino {
2004
2830
  }
2005
2831
  export interface MsgAuthorizeStakeGrantsResponseAminoMsg {
2006
2832
  type: "/injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse";
2007
2833
  value: MsgAuthorizeStakeGrantsResponseAmino;
2008
2834
  }
2009
- /** MsgActivateStakeGrant allows a grantee to activate a stake grant. */
2835
+ /**
2836
+ * MsgActivateStakeGrant allows a grantee to activate a stake grant.
2837
+ * @name MsgActivateStakeGrant
2838
+ * @package injective.exchange.v1beta1
2839
+ * @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrant
2840
+ */
2010
2841
  export interface MsgActivateStakeGrant {
2011
2842
  sender: string;
2012
2843
  granter: string;
@@ -2015,7 +2846,12 @@ export interface MsgActivateStakeGrantProtoMsg {
2015
2846
  typeUrl: "/injective.exchange.v1beta1.MsgActivateStakeGrant";
2016
2847
  value: Uint8Array;
2017
2848
  }
2018
- /** MsgActivateStakeGrant allows a grantee to activate a stake grant. */
2849
+ /**
2850
+ * MsgActivateStakeGrant allows a grantee to activate a stake grant.
2851
+ * @name MsgActivateStakeGrantAmino
2852
+ * @package injective.exchange.v1beta1
2853
+ * @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrant
2854
+ */
2019
2855
  export interface MsgActivateStakeGrantAmino {
2020
2856
  sender: string;
2021
2857
  granter: string;
@@ -2024,18 +2860,33 @@ export interface MsgActivateStakeGrantAminoMsg {
2024
2860
  type: "exchange/MsgActivateStakeGrant";
2025
2861
  value: MsgActivateStakeGrantAmino;
2026
2862
  }
2863
+ /**
2864
+ * @name MsgActivateStakeGrantResponse
2865
+ * @package injective.exchange.v1beta1
2866
+ * @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrantResponse
2867
+ */
2027
2868
  export interface MsgActivateStakeGrantResponse {
2028
2869
  }
2029
2870
  export interface MsgActivateStakeGrantResponseProtoMsg {
2030
2871
  typeUrl: "/injective.exchange.v1beta1.MsgActivateStakeGrantResponse";
2031
2872
  value: Uint8Array;
2032
2873
  }
2874
+ /**
2875
+ * @name MsgActivateStakeGrantResponseAmino
2876
+ * @package injective.exchange.v1beta1
2877
+ * @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrantResponse
2878
+ */
2033
2879
  export interface MsgActivateStakeGrantResponseAmino {
2034
2880
  }
2035
2881
  export interface MsgActivateStakeGrantResponseAminoMsg {
2036
2882
  type: "/injective.exchange.v1beta1.MsgActivateStakeGrantResponse";
2037
2883
  value: MsgActivateStakeGrantResponseAmino;
2038
2884
  }
2885
+ /**
2886
+ * @name MsgUpdateSpotMarket
2887
+ * @package injective.exchange.v1beta1
2888
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarket
2889
+ */
2039
2890
  export declare const MsgUpdateSpotMarket: {
2040
2891
  typeUrl: string;
2041
2892
  aminoType: string;
@@ -2053,6 +2904,11 @@ export declare const MsgUpdateSpotMarket: {
2053
2904
  toProtoMsg(message: MsgUpdateSpotMarket): MsgUpdateSpotMarketProtoMsg;
2054
2905
  registerTypeUrl(): void;
2055
2906
  };
2907
+ /**
2908
+ * @name MsgUpdateSpotMarketResponse
2909
+ * @package injective.exchange.v1beta1
2910
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateSpotMarketResponse
2911
+ */
2056
2912
  export declare const MsgUpdateSpotMarketResponse: {
2057
2913
  typeUrl: string;
2058
2914
  is(o: any): o is MsgUpdateSpotMarketResponse;
@@ -2068,6 +2924,11 @@ export declare const MsgUpdateSpotMarketResponse: {
2068
2924
  toProtoMsg(message: MsgUpdateSpotMarketResponse): MsgUpdateSpotMarketResponseProtoMsg;
2069
2925
  registerTypeUrl(): void;
2070
2926
  };
2927
+ /**
2928
+ * @name MsgUpdateDerivativeMarket
2929
+ * @package injective.exchange.v1beta1
2930
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarket
2931
+ */
2071
2932
  export declare const MsgUpdateDerivativeMarket: {
2072
2933
  typeUrl: string;
2073
2934
  aminoType: string;
@@ -2085,6 +2946,11 @@ export declare const MsgUpdateDerivativeMarket: {
2085
2946
  toProtoMsg(message: MsgUpdateDerivativeMarket): MsgUpdateDerivativeMarketProtoMsg;
2086
2947
  registerTypeUrl(): void;
2087
2948
  };
2949
+ /**
2950
+ * @name MsgUpdateDerivativeMarketResponse
2951
+ * @package injective.exchange.v1beta1
2952
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateDerivativeMarketResponse
2953
+ */
2088
2954
  export declare const MsgUpdateDerivativeMarketResponse: {
2089
2955
  typeUrl: string;
2090
2956
  is(o: any): o is MsgUpdateDerivativeMarketResponse;
@@ -2100,6 +2966,11 @@ export declare const MsgUpdateDerivativeMarketResponse: {
2100
2966
  toProtoMsg(message: MsgUpdateDerivativeMarketResponse): MsgUpdateDerivativeMarketResponseProtoMsg;
2101
2967
  registerTypeUrl(): void;
2102
2968
  };
2969
+ /**
2970
+ * @name MsgUpdateParams
2971
+ * @package injective.exchange.v1beta1
2972
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateParams
2973
+ */
2103
2974
  export declare const MsgUpdateParams: {
2104
2975
  typeUrl: string;
2105
2976
  aminoType: string;
@@ -2117,6 +2988,11 @@ export declare const MsgUpdateParams: {
2117
2988
  toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
2118
2989
  registerTypeUrl(): void;
2119
2990
  };
2991
+ /**
2992
+ * @name MsgUpdateParamsResponse
2993
+ * @package injective.exchange.v1beta1
2994
+ * @see proto type: injective.exchange.v1beta1.MsgUpdateParamsResponse
2995
+ */
2120
2996
  export declare const MsgUpdateParamsResponse: {
2121
2997
  typeUrl: string;
2122
2998
  is(o: any): o is MsgUpdateParamsResponse;
@@ -2132,6 +3008,13 @@ export declare const MsgUpdateParamsResponse: {
2132
3008
  toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
2133
3009
  registerTypeUrl(): void;
2134
3010
  };
3011
+ /**
3012
+ * MsgDeposit defines a SDK message for transferring coins from the sender's
3013
+ * bank balance into the subaccount's exchange deposits
3014
+ * @name MsgDeposit
3015
+ * @package injective.exchange.v1beta1
3016
+ * @see proto type: injective.exchange.v1beta1.MsgDeposit
3017
+ */
2135
3018
  export declare const MsgDeposit: {
2136
3019
  typeUrl: string;
2137
3020
  aminoType: string;
@@ -2149,6 +3032,12 @@ export declare const MsgDeposit: {
2149
3032
  toProtoMsg(message: MsgDeposit): MsgDepositProtoMsg;
2150
3033
  registerTypeUrl(): void;
2151
3034
  };
3035
+ /**
3036
+ * MsgDepositResponse defines the Msg/Deposit response type.
3037
+ * @name MsgDepositResponse
3038
+ * @package injective.exchange.v1beta1
3039
+ * @see proto type: injective.exchange.v1beta1.MsgDepositResponse
3040
+ */
2152
3041
  export declare const MsgDepositResponse: {
2153
3042
  typeUrl: string;
2154
3043
  is(o: any): o is MsgDepositResponse;
@@ -2164,6 +3053,13 @@ export declare const MsgDepositResponse: {
2164
3053
  toProtoMsg(message: MsgDepositResponse): MsgDepositResponseProtoMsg;
2165
3054
  registerTypeUrl(): void;
2166
3055
  };
3056
+ /**
3057
+ * MsgWithdraw defines a SDK message for withdrawing coins from a subaccount's
3058
+ * deposits to the user's bank balance
3059
+ * @name MsgWithdraw
3060
+ * @package injective.exchange.v1beta1
3061
+ * @see proto type: injective.exchange.v1beta1.MsgWithdraw
3062
+ */
2167
3063
  export declare const MsgWithdraw: {
2168
3064
  typeUrl: string;
2169
3065
  aminoType: string;
@@ -2181,6 +3077,12 @@ export declare const MsgWithdraw: {
2181
3077
  toProtoMsg(message: MsgWithdraw): MsgWithdrawProtoMsg;
2182
3078
  registerTypeUrl(): void;
2183
3079
  };
3080
+ /**
3081
+ * MsgWithdraw defines the Msg/Withdraw response type.
3082
+ * @name MsgWithdrawResponse
3083
+ * @package injective.exchange.v1beta1
3084
+ * @see proto type: injective.exchange.v1beta1.MsgWithdrawResponse
3085
+ */
2184
3086
  export declare const MsgWithdrawResponse: {
2185
3087
  typeUrl: string;
2186
3088
  is(o: any): o is MsgWithdrawResponse;
@@ -2196,6 +3098,13 @@ export declare const MsgWithdrawResponse: {
2196
3098
  toProtoMsg(message: MsgWithdrawResponse): MsgWithdrawResponseProtoMsg;
2197
3099
  registerTypeUrl(): void;
2198
3100
  };
3101
+ /**
3102
+ * MsgCreateSpotLimitOrder defines a SDK message for creating a new spot limit
3103
+ * order.
3104
+ * @name MsgCreateSpotLimitOrder
3105
+ * @package injective.exchange.v1beta1
3106
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrder
3107
+ */
2199
3108
  export declare const MsgCreateSpotLimitOrder: {
2200
3109
  typeUrl: string;
2201
3110
  aminoType: string;
@@ -2213,6 +3122,13 @@ export declare const MsgCreateSpotLimitOrder: {
2213
3122
  toProtoMsg(message: MsgCreateSpotLimitOrder): MsgCreateSpotLimitOrderProtoMsg;
2214
3123
  registerTypeUrl(): void;
2215
3124
  };
3125
+ /**
3126
+ * MsgCreateSpotLimitOrderResponse defines the Msg/CreateSpotOrder response
3127
+ * type.
3128
+ * @name MsgCreateSpotLimitOrderResponse
3129
+ * @package injective.exchange.v1beta1
3130
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotLimitOrderResponse
3131
+ */
2216
3132
  export declare const MsgCreateSpotLimitOrderResponse: {
2217
3133
  typeUrl: string;
2218
3134
  is(o: any): o is MsgCreateSpotLimitOrderResponse;
@@ -2228,6 +3144,13 @@ export declare const MsgCreateSpotLimitOrderResponse: {
2228
3144
  toProtoMsg(message: MsgCreateSpotLimitOrderResponse): MsgCreateSpotLimitOrderResponseProtoMsg;
2229
3145
  registerTypeUrl(): void;
2230
3146
  };
3147
+ /**
3148
+ * MsgBatchCreateSpotLimitOrders defines a SDK message for creating a new batch
3149
+ * of spot limit orders.
3150
+ * @name MsgBatchCreateSpotLimitOrders
3151
+ * @package injective.exchange.v1beta1
3152
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrders
3153
+ */
2231
3154
  export declare const MsgBatchCreateSpotLimitOrders: {
2232
3155
  typeUrl: string;
2233
3156
  aminoType: string;
@@ -2245,6 +3168,13 @@ export declare const MsgBatchCreateSpotLimitOrders: {
2245
3168
  toProtoMsg(message: MsgBatchCreateSpotLimitOrders): MsgBatchCreateSpotLimitOrdersProtoMsg;
2246
3169
  registerTypeUrl(): void;
2247
3170
  };
3171
+ /**
3172
+ * MsgBatchCreateSpotLimitOrdersResponse defines the
3173
+ * Msg/BatchCreateSpotLimitOrders response type.
3174
+ * @name MsgBatchCreateSpotLimitOrdersResponse
3175
+ * @package injective.exchange.v1beta1
3176
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateSpotLimitOrdersResponse
3177
+ */
2248
3178
  export declare const MsgBatchCreateSpotLimitOrdersResponse: {
2249
3179
  typeUrl: string;
2250
3180
  is(o: any): o is MsgBatchCreateSpotLimitOrdersResponse;
@@ -2260,6 +3190,13 @@ export declare const MsgBatchCreateSpotLimitOrdersResponse: {
2260
3190
  toProtoMsg(message: MsgBatchCreateSpotLimitOrdersResponse): MsgBatchCreateSpotLimitOrdersResponseProtoMsg;
2261
3191
  registerTypeUrl(): void;
2262
3192
  };
3193
+ /**
3194
+ * MsgInstantSpotMarketLaunch defines a SDK message for creating a new spot
3195
+ * market by paying listing fee without governance
3196
+ * @name MsgInstantSpotMarketLaunch
3197
+ * @package injective.exchange.v1beta1
3198
+ * @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunch
3199
+ */
2263
3200
  export declare const MsgInstantSpotMarketLaunch: {
2264
3201
  typeUrl: string;
2265
3202
  aminoType: string;
@@ -2277,6 +3214,13 @@ export declare const MsgInstantSpotMarketLaunch: {
2277
3214
  toProtoMsg(message: MsgInstantSpotMarketLaunch): MsgInstantSpotMarketLaunchProtoMsg;
2278
3215
  registerTypeUrl(): void;
2279
3216
  };
3217
+ /**
3218
+ * MsgInstantSpotMarketLaunchResponse defines the Msg/InstantSpotMarketLaunch
3219
+ * response type.
3220
+ * @name MsgInstantSpotMarketLaunchResponse
3221
+ * @package injective.exchange.v1beta1
3222
+ * @see proto type: injective.exchange.v1beta1.MsgInstantSpotMarketLaunchResponse
3223
+ */
2280
3224
  export declare const MsgInstantSpotMarketLaunchResponse: {
2281
3225
  typeUrl: string;
2282
3226
  is(o: any): o is MsgInstantSpotMarketLaunchResponse;
@@ -2292,6 +3236,13 @@ export declare const MsgInstantSpotMarketLaunchResponse: {
2292
3236
  toProtoMsg(message: MsgInstantSpotMarketLaunchResponse): MsgInstantSpotMarketLaunchResponseProtoMsg;
2293
3237
  registerTypeUrl(): void;
2294
3238
  };
3239
+ /**
3240
+ * MsgInstantPerpetualMarketLaunch defines a SDK message for creating a new
3241
+ * perpetual futures market by paying listing fee without governance
3242
+ * @name MsgInstantPerpetualMarketLaunch
3243
+ * @package injective.exchange.v1beta1
3244
+ * @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunch
3245
+ */
2295
3246
  export declare const MsgInstantPerpetualMarketLaunch: {
2296
3247
  typeUrl: string;
2297
3248
  aminoType: string;
@@ -2309,6 +3260,13 @@ export declare const MsgInstantPerpetualMarketLaunch: {
2309
3260
  toProtoMsg(message: MsgInstantPerpetualMarketLaunch): MsgInstantPerpetualMarketLaunchProtoMsg;
2310
3261
  registerTypeUrl(): void;
2311
3262
  };
3263
+ /**
3264
+ * MsgInstantPerpetualMarketLaunchResponse defines the
3265
+ * Msg/InstantPerpetualMarketLaunchResponse response type.
3266
+ * @name MsgInstantPerpetualMarketLaunchResponse
3267
+ * @package injective.exchange.v1beta1
3268
+ * @see proto type: injective.exchange.v1beta1.MsgInstantPerpetualMarketLaunchResponse
3269
+ */
2312
3270
  export declare const MsgInstantPerpetualMarketLaunchResponse: {
2313
3271
  typeUrl: string;
2314
3272
  is(o: any): o is MsgInstantPerpetualMarketLaunchResponse;
@@ -2324,6 +3282,13 @@ export declare const MsgInstantPerpetualMarketLaunchResponse: {
2324
3282
  toProtoMsg(message: MsgInstantPerpetualMarketLaunchResponse): MsgInstantPerpetualMarketLaunchResponseProtoMsg;
2325
3283
  registerTypeUrl(): void;
2326
3284
  };
3285
+ /**
3286
+ * MsgInstantBinaryOptionsMarketLaunch defines a SDK message for creating a new
3287
+ * perpetual futures market by paying listing fee without governance
3288
+ * @name MsgInstantBinaryOptionsMarketLaunch
3289
+ * @package injective.exchange.v1beta1
3290
+ * @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunch
3291
+ */
2327
3292
  export declare const MsgInstantBinaryOptionsMarketLaunch: {
2328
3293
  typeUrl: string;
2329
3294
  aminoType: string;
@@ -2341,6 +3306,13 @@ export declare const MsgInstantBinaryOptionsMarketLaunch: {
2341
3306
  toProtoMsg(message: MsgInstantBinaryOptionsMarketLaunch): MsgInstantBinaryOptionsMarketLaunchProtoMsg;
2342
3307
  registerTypeUrl(): void;
2343
3308
  };
3309
+ /**
3310
+ * MsgInstantBinaryOptionsMarketLaunchResponse defines the
3311
+ * Msg/InstantBinaryOptionsMarketLaunchResponse response type.
3312
+ * @name MsgInstantBinaryOptionsMarketLaunchResponse
3313
+ * @package injective.exchange.v1beta1
3314
+ * @see proto type: injective.exchange.v1beta1.MsgInstantBinaryOptionsMarketLaunchResponse
3315
+ */
2344
3316
  export declare const MsgInstantBinaryOptionsMarketLaunchResponse: {
2345
3317
  typeUrl: string;
2346
3318
  is(o: any): o is MsgInstantBinaryOptionsMarketLaunchResponse;
@@ -2356,6 +3328,13 @@ export declare const MsgInstantBinaryOptionsMarketLaunchResponse: {
2356
3328
  toProtoMsg(message: MsgInstantBinaryOptionsMarketLaunchResponse): MsgInstantBinaryOptionsMarketLaunchResponseProtoMsg;
2357
3329
  registerTypeUrl(): void;
2358
3330
  };
3331
+ /**
3332
+ * MsgInstantExpiryFuturesMarketLaunch defines a SDK message for creating a new
3333
+ * expiry futures market by paying listing fee without governance
3334
+ * @name MsgInstantExpiryFuturesMarketLaunch
3335
+ * @package injective.exchange.v1beta1
3336
+ * @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunch
3337
+ */
2359
3338
  export declare const MsgInstantExpiryFuturesMarketLaunch: {
2360
3339
  typeUrl: string;
2361
3340
  aminoType: string;
@@ -2373,6 +3352,13 @@ export declare const MsgInstantExpiryFuturesMarketLaunch: {
2373
3352
  toProtoMsg(message: MsgInstantExpiryFuturesMarketLaunch): MsgInstantExpiryFuturesMarketLaunchProtoMsg;
2374
3353
  registerTypeUrl(): void;
2375
3354
  };
3355
+ /**
3356
+ * MsgInstantExpiryFuturesMarketLaunchResponse defines the
3357
+ * Msg/InstantExpiryFuturesMarketLaunch response type.
3358
+ * @name MsgInstantExpiryFuturesMarketLaunchResponse
3359
+ * @package injective.exchange.v1beta1
3360
+ * @see proto type: injective.exchange.v1beta1.MsgInstantExpiryFuturesMarketLaunchResponse
3361
+ */
2376
3362
  export declare const MsgInstantExpiryFuturesMarketLaunchResponse: {
2377
3363
  typeUrl: string;
2378
3364
  is(o: any): o is MsgInstantExpiryFuturesMarketLaunchResponse;
@@ -2388,6 +3374,13 @@ export declare const MsgInstantExpiryFuturesMarketLaunchResponse: {
2388
3374
  toProtoMsg(message: MsgInstantExpiryFuturesMarketLaunchResponse): MsgInstantExpiryFuturesMarketLaunchResponseProtoMsg;
2389
3375
  registerTypeUrl(): void;
2390
3376
  };
3377
+ /**
3378
+ * MsgCreateSpotMarketOrder defines a SDK message for creating a new spot market
3379
+ * order.
3380
+ * @name MsgCreateSpotMarketOrder
3381
+ * @package injective.exchange.v1beta1
3382
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrder
3383
+ */
2391
3384
  export declare const MsgCreateSpotMarketOrder: {
2392
3385
  typeUrl: string;
2393
3386
  aminoType: string;
@@ -2405,6 +3398,13 @@ export declare const MsgCreateSpotMarketOrder: {
2405
3398
  toProtoMsg(message: MsgCreateSpotMarketOrder): MsgCreateSpotMarketOrderProtoMsg;
2406
3399
  registerTypeUrl(): void;
2407
3400
  };
3401
+ /**
3402
+ * MsgCreateSpotMarketOrderResponse defines the Msg/CreateSpotMarketLimitOrder
3403
+ * response type.
3404
+ * @name MsgCreateSpotMarketOrderResponse
3405
+ * @package injective.exchange.v1beta1
3406
+ * @see proto type: injective.exchange.v1beta1.MsgCreateSpotMarketOrderResponse
3407
+ */
2408
3408
  export declare const MsgCreateSpotMarketOrderResponse: {
2409
3409
  typeUrl: string;
2410
3410
  is(o: any): o is MsgCreateSpotMarketOrderResponse;
@@ -2420,6 +3420,11 @@ export declare const MsgCreateSpotMarketOrderResponse: {
2420
3420
  toProtoMsg(message: MsgCreateSpotMarketOrderResponse): MsgCreateSpotMarketOrderResponseProtoMsg;
2421
3421
  registerTypeUrl(): void;
2422
3422
  };
3423
+ /**
3424
+ * @name SpotMarketOrderResults
3425
+ * @package injective.exchange.v1beta1
3426
+ * @see proto type: injective.exchange.v1beta1.SpotMarketOrderResults
3427
+ */
2423
3428
  export declare const SpotMarketOrderResults: {
2424
3429
  typeUrl: string;
2425
3430
  is(o: any): o is SpotMarketOrderResults;
@@ -2435,6 +3440,12 @@ export declare const SpotMarketOrderResults: {
2435
3440
  toProtoMsg(message: SpotMarketOrderResults): SpotMarketOrderResultsProtoMsg;
2436
3441
  registerTypeUrl(): void;
2437
3442
  };
3443
+ /**
3444
+ * A Cosmos-SDK MsgCreateDerivativeLimitOrder
3445
+ * @name MsgCreateDerivativeLimitOrder
3446
+ * @package injective.exchange.v1beta1
3447
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrder
3448
+ */
2438
3449
  export declare const MsgCreateDerivativeLimitOrder: {
2439
3450
  typeUrl: string;
2440
3451
  aminoType: string;
@@ -2452,6 +3463,13 @@ export declare const MsgCreateDerivativeLimitOrder: {
2452
3463
  toProtoMsg(message: MsgCreateDerivativeLimitOrder): MsgCreateDerivativeLimitOrderProtoMsg;
2453
3464
  registerTypeUrl(): void;
2454
3465
  };
3466
+ /**
3467
+ * MsgCreateDerivativeLimitOrderResponse defines the
3468
+ * Msg/CreateDerivativeMarketOrder response type.
3469
+ * @name MsgCreateDerivativeLimitOrderResponse
3470
+ * @package injective.exchange.v1beta1
3471
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeLimitOrderResponse
3472
+ */
2455
3473
  export declare const MsgCreateDerivativeLimitOrderResponse: {
2456
3474
  typeUrl: string;
2457
3475
  is(o: any): o is MsgCreateDerivativeLimitOrderResponse;
@@ -2467,6 +3485,12 @@ export declare const MsgCreateDerivativeLimitOrderResponse: {
2467
3485
  toProtoMsg(message: MsgCreateDerivativeLimitOrderResponse): MsgCreateDerivativeLimitOrderResponseProtoMsg;
2468
3486
  registerTypeUrl(): void;
2469
3487
  };
3488
+ /**
3489
+ * A Cosmos-SDK MsgCreateBinaryOptionsLimitOrder
3490
+ * @name MsgCreateBinaryOptionsLimitOrder
3491
+ * @package injective.exchange.v1beta1
3492
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrder
3493
+ */
2470
3494
  export declare const MsgCreateBinaryOptionsLimitOrder: {
2471
3495
  typeUrl: string;
2472
3496
  aminoType: string;
@@ -2484,6 +3508,13 @@ export declare const MsgCreateBinaryOptionsLimitOrder: {
2484
3508
  toProtoMsg(message: MsgCreateBinaryOptionsLimitOrder): MsgCreateBinaryOptionsLimitOrderProtoMsg;
2485
3509
  registerTypeUrl(): void;
2486
3510
  };
3511
+ /**
3512
+ * MsgCreateBinaryOptionsLimitOrderResponse defines the
3513
+ * Msg/CreateBinaryOptionsLimitOrder response type.
3514
+ * @name MsgCreateBinaryOptionsLimitOrderResponse
3515
+ * @package injective.exchange.v1beta1
3516
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsLimitOrderResponse
3517
+ */
2487
3518
  export declare const MsgCreateBinaryOptionsLimitOrderResponse: {
2488
3519
  typeUrl: string;
2489
3520
  is(o: any): o is MsgCreateBinaryOptionsLimitOrderResponse;
@@ -2499,6 +3530,12 @@ export declare const MsgCreateBinaryOptionsLimitOrderResponse: {
2499
3530
  toProtoMsg(message: MsgCreateBinaryOptionsLimitOrderResponse): MsgCreateBinaryOptionsLimitOrderResponseProtoMsg;
2500
3531
  registerTypeUrl(): void;
2501
3532
  };
3533
+ /**
3534
+ * A Cosmos-SDK MsgBatchCreateDerivativeLimitOrders
3535
+ * @name MsgBatchCreateDerivativeLimitOrders
3536
+ * @package injective.exchange.v1beta1
3537
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrders
3538
+ */
2502
3539
  export declare const MsgBatchCreateDerivativeLimitOrders: {
2503
3540
  typeUrl: string;
2504
3541
  aminoType: string;
@@ -2516,6 +3553,13 @@ export declare const MsgBatchCreateDerivativeLimitOrders: {
2516
3553
  toProtoMsg(message: MsgBatchCreateDerivativeLimitOrders): MsgBatchCreateDerivativeLimitOrdersProtoMsg;
2517
3554
  registerTypeUrl(): void;
2518
3555
  };
3556
+ /**
3557
+ * MsgBatchCreateDerivativeLimitOrdersResponse defines the
3558
+ * Msg/BatchCreateDerivativeLimitOrders response type.
3559
+ * @name MsgBatchCreateDerivativeLimitOrdersResponse
3560
+ * @package injective.exchange.v1beta1
3561
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCreateDerivativeLimitOrdersResponse
3562
+ */
2519
3563
  export declare const MsgBatchCreateDerivativeLimitOrdersResponse: {
2520
3564
  typeUrl: string;
2521
3565
  is(o: any): o is MsgBatchCreateDerivativeLimitOrdersResponse;
@@ -2531,6 +3575,12 @@ export declare const MsgBatchCreateDerivativeLimitOrdersResponse: {
2531
3575
  toProtoMsg(message: MsgBatchCreateDerivativeLimitOrdersResponse): MsgBatchCreateDerivativeLimitOrdersResponseProtoMsg;
2532
3576
  registerTypeUrl(): void;
2533
3577
  };
3578
+ /**
3579
+ * MsgCancelSpotOrder defines the Msg/CancelSpotOrder response type.
3580
+ * @name MsgCancelSpotOrder
3581
+ * @package injective.exchange.v1beta1
3582
+ * @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrder
3583
+ */
2534
3584
  export declare const MsgCancelSpotOrder: {
2535
3585
  typeUrl: string;
2536
3586
  aminoType: string;
@@ -2548,6 +3598,12 @@ export declare const MsgCancelSpotOrder: {
2548
3598
  toProtoMsg(message: MsgCancelSpotOrder): MsgCancelSpotOrderProtoMsg;
2549
3599
  registerTypeUrl(): void;
2550
3600
  };
3601
+ /**
3602
+ * MsgCancelSpotOrderResponse defines the Msg/CancelSpotOrder response type.
3603
+ * @name MsgCancelSpotOrderResponse
3604
+ * @package injective.exchange.v1beta1
3605
+ * @see proto type: injective.exchange.v1beta1.MsgCancelSpotOrderResponse
3606
+ */
2551
3607
  export declare const MsgCancelSpotOrderResponse: {
2552
3608
  typeUrl: string;
2553
3609
  is(o: any): o is MsgCancelSpotOrderResponse;
@@ -2563,6 +3619,12 @@ export declare const MsgCancelSpotOrderResponse: {
2563
3619
  toProtoMsg(message: MsgCancelSpotOrderResponse): MsgCancelSpotOrderResponseProtoMsg;
2564
3620
  registerTypeUrl(): void;
2565
3621
  };
3622
+ /**
3623
+ * MsgBatchCancelSpotOrders defines the Msg/BatchCancelSpotOrders response type.
3624
+ * @name MsgBatchCancelSpotOrders
3625
+ * @package injective.exchange.v1beta1
3626
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrders
3627
+ */
2566
3628
  export declare const MsgBatchCancelSpotOrders: {
2567
3629
  typeUrl: string;
2568
3630
  aminoType: string;
@@ -2580,6 +3642,13 @@ export declare const MsgBatchCancelSpotOrders: {
2580
3642
  toProtoMsg(message: MsgBatchCancelSpotOrders): MsgBatchCancelSpotOrdersProtoMsg;
2581
3643
  registerTypeUrl(): void;
2582
3644
  };
3645
+ /**
3646
+ * MsgBatchCancelSpotOrdersResponse defines the Msg/BatchCancelSpotOrders
3647
+ * response type.
3648
+ * @name MsgBatchCancelSpotOrdersResponse
3649
+ * @package injective.exchange.v1beta1
3650
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelSpotOrdersResponse
3651
+ */
2583
3652
  export declare const MsgBatchCancelSpotOrdersResponse: {
2584
3653
  typeUrl: string;
2585
3654
  is(o: any): o is MsgBatchCancelSpotOrdersResponse;
@@ -2595,6 +3664,13 @@ export declare const MsgBatchCancelSpotOrdersResponse: {
2595
3664
  toProtoMsg(message: MsgBatchCancelSpotOrdersResponse): MsgBatchCancelSpotOrdersResponseProtoMsg;
2596
3665
  registerTypeUrl(): void;
2597
3666
  };
3667
+ /**
3668
+ * MsgBatchCancelBinaryOptionsOrders defines the
3669
+ * Msg/BatchCancelBinaryOptionsOrders response type.
3670
+ * @name MsgBatchCancelBinaryOptionsOrders
3671
+ * @package injective.exchange.v1beta1
3672
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrders
3673
+ */
2598
3674
  export declare const MsgBatchCancelBinaryOptionsOrders: {
2599
3675
  typeUrl: string;
2600
3676
  aminoType: string;
@@ -2612,6 +3688,13 @@ export declare const MsgBatchCancelBinaryOptionsOrders: {
2612
3688
  toProtoMsg(message: MsgBatchCancelBinaryOptionsOrders): MsgBatchCancelBinaryOptionsOrdersProtoMsg;
2613
3689
  registerTypeUrl(): void;
2614
3690
  };
3691
+ /**
3692
+ * BatchCancelBinaryOptionsOrdersResponse defines the
3693
+ * Msg/BatchCancelBinaryOptionsOrders response type.
3694
+ * @name MsgBatchCancelBinaryOptionsOrdersResponse
3695
+ * @package injective.exchange.v1beta1
3696
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelBinaryOptionsOrdersResponse
3697
+ */
2615
3698
  export declare const MsgBatchCancelBinaryOptionsOrdersResponse: {
2616
3699
  typeUrl: string;
2617
3700
  is(o: any): o is MsgBatchCancelBinaryOptionsOrdersResponse;
@@ -2627,6 +3710,12 @@ export declare const MsgBatchCancelBinaryOptionsOrdersResponse: {
2627
3710
  toProtoMsg(message: MsgBatchCancelBinaryOptionsOrdersResponse): MsgBatchCancelBinaryOptionsOrdersResponseProtoMsg;
2628
3711
  registerTypeUrl(): void;
2629
3712
  };
3713
+ /**
3714
+ * MsgBatchUpdateOrders defines the Msg/BatchUpdateOrders response type.
3715
+ * @name MsgBatchUpdateOrders
3716
+ * @package injective.exchange.v1beta1
3717
+ * @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrders
3718
+ */
2630
3719
  export declare const MsgBatchUpdateOrders: {
2631
3720
  typeUrl: string;
2632
3721
  aminoType: string;
@@ -2644,6 +3733,12 @@ export declare const MsgBatchUpdateOrders: {
2644
3733
  toProtoMsg(message: MsgBatchUpdateOrders): MsgBatchUpdateOrdersProtoMsg;
2645
3734
  registerTypeUrl(): void;
2646
3735
  };
3736
+ /**
3737
+ * MsgBatchUpdateOrdersResponse defines the Msg/BatchUpdateOrders response type.
3738
+ * @name MsgBatchUpdateOrdersResponse
3739
+ * @package injective.exchange.v1beta1
3740
+ * @see proto type: injective.exchange.v1beta1.MsgBatchUpdateOrdersResponse
3741
+ */
2647
3742
  export declare const MsgBatchUpdateOrdersResponse: {
2648
3743
  typeUrl: string;
2649
3744
  is(o: any): o is MsgBatchUpdateOrdersResponse;
@@ -2659,6 +3754,12 @@ export declare const MsgBatchUpdateOrdersResponse: {
2659
3754
  toProtoMsg(message: MsgBatchUpdateOrdersResponse): MsgBatchUpdateOrdersResponseProtoMsg;
2660
3755
  registerTypeUrl(): void;
2661
3756
  };
3757
+ /**
3758
+ * A Cosmos-SDK MsgCreateDerivativeMarketOrder
3759
+ * @name MsgCreateDerivativeMarketOrder
3760
+ * @package injective.exchange.v1beta1
3761
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrder
3762
+ */
2662
3763
  export declare const MsgCreateDerivativeMarketOrder: {
2663
3764
  typeUrl: string;
2664
3765
  aminoType: string;
@@ -2676,6 +3777,13 @@ export declare const MsgCreateDerivativeMarketOrder: {
2676
3777
  toProtoMsg(message: MsgCreateDerivativeMarketOrder): MsgCreateDerivativeMarketOrderProtoMsg;
2677
3778
  registerTypeUrl(): void;
2678
3779
  };
3780
+ /**
3781
+ * MsgCreateDerivativeMarketOrderResponse defines the
3782
+ * Msg/CreateDerivativeMarketOrder response type.
3783
+ * @name MsgCreateDerivativeMarketOrderResponse
3784
+ * @package injective.exchange.v1beta1
3785
+ * @see proto type: injective.exchange.v1beta1.MsgCreateDerivativeMarketOrderResponse
3786
+ */
2679
3787
  export declare const MsgCreateDerivativeMarketOrderResponse: {
2680
3788
  typeUrl: string;
2681
3789
  is(o: any): o is MsgCreateDerivativeMarketOrderResponse;
@@ -2691,6 +3799,11 @@ export declare const MsgCreateDerivativeMarketOrderResponse: {
2691
3799
  toProtoMsg(message: MsgCreateDerivativeMarketOrderResponse): MsgCreateDerivativeMarketOrderResponseProtoMsg;
2692
3800
  registerTypeUrl(): void;
2693
3801
  };
3802
+ /**
3803
+ * @name DerivativeMarketOrderResults
3804
+ * @package injective.exchange.v1beta1
3805
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketOrderResults
3806
+ */
2694
3807
  export declare const DerivativeMarketOrderResults: {
2695
3808
  typeUrl: string;
2696
3809
  is(o: any): o is DerivativeMarketOrderResults;
@@ -2706,6 +3819,12 @@ export declare const DerivativeMarketOrderResults: {
2706
3819
  toProtoMsg(message: DerivativeMarketOrderResults): DerivativeMarketOrderResultsProtoMsg;
2707
3820
  registerTypeUrl(): void;
2708
3821
  };
3822
+ /**
3823
+ * A Cosmos-SDK MsgCreateBinaryOptionsMarketOrder
3824
+ * @name MsgCreateBinaryOptionsMarketOrder
3825
+ * @package injective.exchange.v1beta1
3826
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrder
3827
+ */
2709
3828
  export declare const MsgCreateBinaryOptionsMarketOrder: {
2710
3829
  typeUrl: string;
2711
3830
  aminoType: string;
@@ -2723,6 +3842,13 @@ export declare const MsgCreateBinaryOptionsMarketOrder: {
2723
3842
  toProtoMsg(message: MsgCreateBinaryOptionsMarketOrder): MsgCreateBinaryOptionsMarketOrderProtoMsg;
2724
3843
  registerTypeUrl(): void;
2725
3844
  };
3845
+ /**
3846
+ * MsgCreateBinaryOptionsMarketOrderResponse defines the
3847
+ * Msg/CreateBinaryOptionsMarketOrder response type.
3848
+ * @name MsgCreateBinaryOptionsMarketOrderResponse
3849
+ * @package injective.exchange.v1beta1
3850
+ * @see proto type: injective.exchange.v1beta1.MsgCreateBinaryOptionsMarketOrderResponse
3851
+ */
2726
3852
  export declare const MsgCreateBinaryOptionsMarketOrderResponse: {
2727
3853
  typeUrl: string;
2728
3854
  is(o: any): o is MsgCreateBinaryOptionsMarketOrderResponse;
@@ -2738,6 +3864,12 @@ export declare const MsgCreateBinaryOptionsMarketOrderResponse: {
2738
3864
  toProtoMsg(message: MsgCreateBinaryOptionsMarketOrderResponse): MsgCreateBinaryOptionsMarketOrderResponseProtoMsg;
2739
3865
  registerTypeUrl(): void;
2740
3866
  };
3867
+ /**
3868
+ * MsgCancelDerivativeOrder defines the Msg/CancelDerivativeOrder response type.
3869
+ * @name MsgCancelDerivativeOrder
3870
+ * @package injective.exchange.v1beta1
3871
+ * @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrder
3872
+ */
2741
3873
  export declare const MsgCancelDerivativeOrder: {
2742
3874
  typeUrl: string;
2743
3875
  aminoType: string;
@@ -2755,6 +3887,13 @@ export declare const MsgCancelDerivativeOrder: {
2755
3887
  toProtoMsg(message: MsgCancelDerivativeOrder): MsgCancelDerivativeOrderProtoMsg;
2756
3888
  registerTypeUrl(): void;
2757
3889
  };
3890
+ /**
3891
+ * MsgCancelDerivativeOrderResponse defines the
3892
+ * Msg/CancelDerivativeOrderResponse response type.
3893
+ * @name MsgCancelDerivativeOrderResponse
3894
+ * @package injective.exchange.v1beta1
3895
+ * @see proto type: injective.exchange.v1beta1.MsgCancelDerivativeOrderResponse
3896
+ */
2758
3897
  export declare const MsgCancelDerivativeOrderResponse: {
2759
3898
  typeUrl: string;
2760
3899
  is(o: any): o is MsgCancelDerivativeOrderResponse;
@@ -2770,6 +3909,13 @@ export declare const MsgCancelDerivativeOrderResponse: {
2770
3909
  toProtoMsg(message: MsgCancelDerivativeOrderResponse): MsgCancelDerivativeOrderResponseProtoMsg;
2771
3910
  registerTypeUrl(): void;
2772
3911
  };
3912
+ /**
3913
+ * MsgCancelBinaryOptionsOrder defines the Msg/CancelBinaryOptionsOrder response
3914
+ * type.
3915
+ * @name MsgCancelBinaryOptionsOrder
3916
+ * @package injective.exchange.v1beta1
3917
+ * @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrder
3918
+ */
2773
3919
  export declare const MsgCancelBinaryOptionsOrder: {
2774
3920
  typeUrl: string;
2775
3921
  aminoType: string;
@@ -2787,6 +3933,13 @@ export declare const MsgCancelBinaryOptionsOrder: {
2787
3933
  toProtoMsg(message: MsgCancelBinaryOptionsOrder): MsgCancelBinaryOptionsOrderProtoMsg;
2788
3934
  registerTypeUrl(): void;
2789
3935
  };
3936
+ /**
3937
+ * MsgCancelBinaryOptionsOrderResponse defines the
3938
+ * Msg/CancelBinaryOptionsOrderResponse response type.
3939
+ * @name MsgCancelBinaryOptionsOrderResponse
3940
+ * @package injective.exchange.v1beta1
3941
+ * @see proto type: injective.exchange.v1beta1.MsgCancelBinaryOptionsOrderResponse
3942
+ */
2790
3943
  export declare const MsgCancelBinaryOptionsOrderResponse: {
2791
3944
  typeUrl: string;
2792
3945
  is(o: any): o is MsgCancelBinaryOptionsOrderResponse;
@@ -2802,6 +3955,11 @@ export declare const MsgCancelBinaryOptionsOrderResponse: {
2802
3955
  toProtoMsg(message: MsgCancelBinaryOptionsOrderResponse): MsgCancelBinaryOptionsOrderResponseProtoMsg;
2803
3956
  registerTypeUrl(): void;
2804
3957
  };
3958
+ /**
3959
+ * @name OrderData
3960
+ * @package injective.exchange.v1beta1
3961
+ * @see proto type: injective.exchange.v1beta1.OrderData
3962
+ */
2805
3963
  export declare const OrderData: {
2806
3964
  typeUrl: string;
2807
3965
  is(o: any): o is OrderData;
@@ -2817,6 +3975,13 @@ export declare const OrderData: {
2817
3975
  toProtoMsg(message: OrderData): OrderDataProtoMsg;
2818
3976
  registerTypeUrl(): void;
2819
3977
  };
3978
+ /**
3979
+ * MsgBatchCancelDerivativeOrders defines the Msg/CancelDerivativeOrders
3980
+ * response type.
3981
+ * @name MsgBatchCancelDerivativeOrders
3982
+ * @package injective.exchange.v1beta1
3983
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrders
3984
+ */
2820
3985
  export declare const MsgBatchCancelDerivativeOrders: {
2821
3986
  typeUrl: string;
2822
3987
  aminoType: string;
@@ -2834,6 +3999,13 @@ export declare const MsgBatchCancelDerivativeOrders: {
2834
3999
  toProtoMsg(message: MsgBatchCancelDerivativeOrders): MsgBatchCancelDerivativeOrdersProtoMsg;
2835
4000
  registerTypeUrl(): void;
2836
4001
  };
4002
+ /**
4003
+ * MsgBatchCancelDerivativeOrdersResponse defines the
4004
+ * Msg/CancelDerivativeOrderResponse response type.
4005
+ * @name MsgBatchCancelDerivativeOrdersResponse
4006
+ * @package injective.exchange.v1beta1
4007
+ * @see proto type: injective.exchange.v1beta1.MsgBatchCancelDerivativeOrdersResponse
4008
+ */
2837
4009
  export declare const MsgBatchCancelDerivativeOrdersResponse: {
2838
4010
  typeUrl: string;
2839
4011
  is(o: any): o is MsgBatchCancelDerivativeOrdersResponse;
@@ -2849,6 +4021,12 @@ export declare const MsgBatchCancelDerivativeOrdersResponse: {
2849
4021
  toProtoMsg(message: MsgBatchCancelDerivativeOrdersResponse): MsgBatchCancelDerivativeOrdersResponseProtoMsg;
2850
4022
  registerTypeUrl(): void;
2851
4023
  };
4024
+ /**
4025
+ * A Cosmos-SDK MsgSubaccountTransfer
4026
+ * @name MsgSubaccountTransfer
4027
+ * @package injective.exchange.v1beta1
4028
+ * @see proto type: injective.exchange.v1beta1.MsgSubaccountTransfer
4029
+ */
2852
4030
  export declare const MsgSubaccountTransfer: {
2853
4031
  typeUrl: string;
2854
4032
  aminoType: string;
@@ -2866,6 +4044,13 @@ export declare const MsgSubaccountTransfer: {
2866
4044
  toProtoMsg(message: MsgSubaccountTransfer): MsgSubaccountTransferProtoMsg;
2867
4045
  registerTypeUrl(): void;
2868
4046
  };
4047
+ /**
4048
+ * MsgSubaccountTransferResponse defines the Msg/SubaccountTransfer response
4049
+ * type.
4050
+ * @name MsgSubaccountTransferResponse
4051
+ * @package injective.exchange.v1beta1
4052
+ * @see proto type: injective.exchange.v1beta1.MsgSubaccountTransferResponse
4053
+ */
2869
4054
  export declare const MsgSubaccountTransferResponse: {
2870
4055
  typeUrl: string;
2871
4056
  is(o: any): o is MsgSubaccountTransferResponse;
@@ -2881,6 +4066,12 @@ export declare const MsgSubaccountTransferResponse: {
2881
4066
  toProtoMsg(message: MsgSubaccountTransferResponse): MsgSubaccountTransferResponseProtoMsg;
2882
4067
  registerTypeUrl(): void;
2883
4068
  };
4069
+ /**
4070
+ * A Cosmos-SDK MsgExternalTransfer
4071
+ * @name MsgExternalTransfer
4072
+ * @package injective.exchange.v1beta1
4073
+ * @see proto type: injective.exchange.v1beta1.MsgExternalTransfer
4074
+ */
2884
4075
  export declare const MsgExternalTransfer: {
2885
4076
  typeUrl: string;
2886
4077
  aminoType: string;
@@ -2898,6 +4089,12 @@ export declare const MsgExternalTransfer: {
2898
4089
  toProtoMsg(message: MsgExternalTransfer): MsgExternalTransferProtoMsg;
2899
4090
  registerTypeUrl(): void;
2900
4091
  };
4092
+ /**
4093
+ * MsgExternalTransferResponse defines the Msg/ExternalTransfer response type.
4094
+ * @name MsgExternalTransferResponse
4095
+ * @package injective.exchange.v1beta1
4096
+ * @see proto type: injective.exchange.v1beta1.MsgExternalTransferResponse
4097
+ */
2901
4098
  export declare const MsgExternalTransferResponse: {
2902
4099
  typeUrl: string;
2903
4100
  is(o: any): o is MsgExternalTransferResponse;
@@ -2913,6 +4110,12 @@ export declare const MsgExternalTransferResponse: {
2913
4110
  toProtoMsg(message: MsgExternalTransferResponse): MsgExternalTransferResponseProtoMsg;
2914
4111
  registerTypeUrl(): void;
2915
4112
  };
4113
+ /**
4114
+ * A Cosmos-SDK MsgLiquidatePosition
4115
+ * @name MsgLiquidatePosition
4116
+ * @package injective.exchange.v1beta1
4117
+ * @see proto type: injective.exchange.v1beta1.MsgLiquidatePosition
4118
+ */
2916
4119
  export declare const MsgLiquidatePosition: {
2917
4120
  typeUrl: string;
2918
4121
  aminoType: string;
@@ -2930,6 +4133,12 @@ export declare const MsgLiquidatePosition: {
2930
4133
  toProtoMsg(message: MsgLiquidatePosition): MsgLiquidatePositionProtoMsg;
2931
4134
  registerTypeUrl(): void;
2932
4135
  };
4136
+ /**
4137
+ * MsgLiquidatePositionResponse defines the Msg/LiquidatePosition response type.
4138
+ * @name MsgLiquidatePositionResponse
4139
+ * @package injective.exchange.v1beta1
4140
+ * @see proto type: injective.exchange.v1beta1.MsgLiquidatePositionResponse
4141
+ */
2933
4142
  export declare const MsgLiquidatePositionResponse: {
2934
4143
  typeUrl: string;
2935
4144
  is(o: any): o is MsgLiquidatePositionResponse;
@@ -2945,6 +4154,12 @@ export declare const MsgLiquidatePositionResponse: {
2945
4154
  toProtoMsg(message: MsgLiquidatePositionResponse): MsgLiquidatePositionResponseProtoMsg;
2946
4155
  registerTypeUrl(): void;
2947
4156
  };
4157
+ /**
4158
+ * A Cosmos-SDK MsgEmergencySettleMarket
4159
+ * @name MsgEmergencySettleMarket
4160
+ * @package injective.exchange.v1beta1
4161
+ * @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarket
4162
+ */
2948
4163
  export declare const MsgEmergencySettleMarket: {
2949
4164
  typeUrl: string;
2950
4165
  aminoType: string;
@@ -2962,6 +4177,13 @@ export declare const MsgEmergencySettleMarket: {
2962
4177
  toProtoMsg(message: MsgEmergencySettleMarket): MsgEmergencySettleMarketProtoMsg;
2963
4178
  registerTypeUrl(): void;
2964
4179
  };
4180
+ /**
4181
+ * MsgEmergencySettleMarketResponse defines the Msg/EmergencySettleMarket
4182
+ * response type.
4183
+ * @name MsgEmergencySettleMarketResponse
4184
+ * @package injective.exchange.v1beta1
4185
+ * @see proto type: injective.exchange.v1beta1.MsgEmergencySettleMarketResponse
4186
+ */
2965
4187
  export declare const MsgEmergencySettleMarketResponse: {
2966
4188
  typeUrl: string;
2967
4189
  is(o: any): o is MsgEmergencySettleMarketResponse;
@@ -2977,6 +4199,12 @@ export declare const MsgEmergencySettleMarketResponse: {
2977
4199
  toProtoMsg(message: MsgEmergencySettleMarketResponse): MsgEmergencySettleMarketResponseProtoMsg;
2978
4200
  registerTypeUrl(): void;
2979
4201
  };
4202
+ /**
4203
+ * A Cosmos-SDK MsgIncreasePositionMargin
4204
+ * @name MsgIncreasePositionMargin
4205
+ * @package injective.exchange.v1beta1
4206
+ * @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMargin
4207
+ */
2980
4208
  export declare const MsgIncreasePositionMargin: {
2981
4209
  typeUrl: string;
2982
4210
  aminoType: string;
@@ -2994,6 +4222,13 @@ export declare const MsgIncreasePositionMargin: {
2994
4222
  toProtoMsg(message: MsgIncreasePositionMargin): MsgIncreasePositionMarginProtoMsg;
2995
4223
  registerTypeUrl(): void;
2996
4224
  };
4225
+ /**
4226
+ * MsgIncreasePositionMarginResponse defines the Msg/IncreasePositionMargin
4227
+ * response type.
4228
+ * @name MsgIncreasePositionMarginResponse
4229
+ * @package injective.exchange.v1beta1
4230
+ * @see proto type: injective.exchange.v1beta1.MsgIncreasePositionMarginResponse
4231
+ */
2997
4232
  export declare const MsgIncreasePositionMarginResponse: {
2998
4233
  typeUrl: string;
2999
4234
  is(o: any): o is MsgIncreasePositionMarginResponse;
@@ -3009,6 +4244,12 @@ export declare const MsgIncreasePositionMarginResponse: {
3009
4244
  toProtoMsg(message: MsgIncreasePositionMarginResponse): MsgIncreasePositionMarginResponseProtoMsg;
3010
4245
  registerTypeUrl(): void;
3011
4246
  };
4247
+ /**
4248
+ * A Cosmos-SDK MsgDecreasePositionMargin
4249
+ * @name MsgDecreasePositionMargin
4250
+ * @package injective.exchange.v1beta1
4251
+ * @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMargin
4252
+ */
3012
4253
  export declare const MsgDecreasePositionMargin: {
3013
4254
  typeUrl: string;
3014
4255
  aminoType: string;
@@ -3026,6 +4267,13 @@ export declare const MsgDecreasePositionMargin: {
3026
4267
  toProtoMsg(message: MsgDecreasePositionMargin): MsgDecreasePositionMarginProtoMsg;
3027
4268
  registerTypeUrl(): void;
3028
4269
  };
4270
+ /**
4271
+ * MsgDecreasePositionMarginResponse defines the Msg/MsgDecreasePositionMargin
4272
+ * response type.
4273
+ * @name MsgDecreasePositionMarginResponse
4274
+ * @package injective.exchange.v1beta1
4275
+ * @see proto type: injective.exchange.v1beta1.MsgDecreasePositionMarginResponse
4276
+ */
3029
4277
  export declare const MsgDecreasePositionMarginResponse: {
3030
4278
  typeUrl: string;
3031
4279
  is(o: any): o is MsgDecreasePositionMarginResponse;
@@ -3041,6 +4289,12 @@ export declare const MsgDecreasePositionMarginResponse: {
3041
4289
  toProtoMsg(message: MsgDecreasePositionMarginResponse): MsgDecreasePositionMarginResponseProtoMsg;
3042
4290
  registerTypeUrl(): void;
3043
4291
  };
4292
+ /**
4293
+ * MsgPrivilegedExecuteContract defines the Msg/Exec message type
4294
+ * @name MsgPrivilegedExecuteContract
4295
+ * @package injective.exchange.v1beta1
4296
+ * @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContract
4297
+ */
3044
4298
  export declare const MsgPrivilegedExecuteContract: {
3045
4299
  typeUrl: string;
3046
4300
  aminoType: string;
@@ -3058,6 +4312,12 @@ export declare const MsgPrivilegedExecuteContract: {
3058
4312
  toProtoMsg(message: MsgPrivilegedExecuteContract): MsgPrivilegedExecuteContractProtoMsg;
3059
4313
  registerTypeUrl(): void;
3060
4314
  };
4315
+ /**
4316
+ * MsgPrivilegedExecuteContractResponse defines the Msg/Exec response type.
4317
+ * @name MsgPrivilegedExecuteContractResponse
4318
+ * @package injective.exchange.v1beta1
4319
+ * @see proto type: injective.exchange.v1beta1.MsgPrivilegedExecuteContractResponse
4320
+ */
3061
4321
  export declare const MsgPrivilegedExecuteContractResponse: {
3062
4322
  typeUrl: string;
3063
4323
  is(o: any): o is MsgPrivilegedExecuteContractResponse;
@@ -3073,6 +4333,12 @@ export declare const MsgPrivilegedExecuteContractResponse: {
3073
4333
  toProtoMsg(message: MsgPrivilegedExecuteContractResponse): MsgPrivilegedExecuteContractResponseProtoMsg;
3074
4334
  registerTypeUrl(): void;
3075
4335
  };
4336
+ /**
4337
+ * A Cosmos-SDK MsgRewardsOptOut
4338
+ * @name MsgRewardsOptOut
4339
+ * @package injective.exchange.v1beta1
4340
+ * @see proto type: injective.exchange.v1beta1.MsgRewardsOptOut
4341
+ */
3076
4342
  export declare const MsgRewardsOptOut: {
3077
4343
  typeUrl: string;
3078
4344
  aminoType: string;
@@ -3090,6 +4356,12 @@ export declare const MsgRewardsOptOut: {
3090
4356
  toProtoMsg(message: MsgRewardsOptOut): MsgRewardsOptOutProtoMsg;
3091
4357
  registerTypeUrl(): void;
3092
4358
  };
4359
+ /**
4360
+ * MsgRewardsOptOutResponse defines the Msg/RewardsOptOut response type.
4361
+ * @name MsgRewardsOptOutResponse
4362
+ * @package injective.exchange.v1beta1
4363
+ * @see proto type: injective.exchange.v1beta1.MsgRewardsOptOutResponse
4364
+ */
3093
4365
  export declare const MsgRewardsOptOutResponse: {
3094
4366
  typeUrl: string;
3095
4367
  is(o: any): o is MsgRewardsOptOutResponse;
@@ -3105,6 +4377,12 @@ export declare const MsgRewardsOptOutResponse: {
3105
4377
  toProtoMsg(message: MsgRewardsOptOutResponse): MsgRewardsOptOutResponseProtoMsg;
3106
4378
  registerTypeUrl(): void;
3107
4379
  };
4380
+ /**
4381
+ * A Cosmos-SDK MsgReclaimLockedFunds
4382
+ * @name MsgReclaimLockedFunds
4383
+ * @package injective.exchange.v1beta1
4384
+ * @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFunds
4385
+ */
3108
4386
  export declare const MsgReclaimLockedFunds: {
3109
4387
  typeUrl: string;
3110
4388
  aminoType: string;
@@ -3122,6 +4400,13 @@ export declare const MsgReclaimLockedFunds: {
3122
4400
  toProtoMsg(message: MsgReclaimLockedFunds): MsgReclaimLockedFundsProtoMsg;
3123
4401
  registerTypeUrl(): void;
3124
4402
  };
4403
+ /**
4404
+ * MsgReclaimLockedFundsResponse defines the Msg/ReclaimLockedFunds response
4405
+ * type.
4406
+ * @name MsgReclaimLockedFundsResponse
4407
+ * @package injective.exchange.v1beta1
4408
+ * @see proto type: injective.exchange.v1beta1.MsgReclaimLockedFundsResponse
4409
+ */
3125
4410
  export declare const MsgReclaimLockedFundsResponse: {
3126
4411
  typeUrl: string;
3127
4412
  is(o: any): o is MsgReclaimLockedFundsResponse;
@@ -3137,6 +4422,12 @@ export declare const MsgReclaimLockedFundsResponse: {
3137
4422
  toProtoMsg(message: MsgReclaimLockedFundsResponse): MsgReclaimLockedFundsResponseProtoMsg;
3138
4423
  registerTypeUrl(): void;
3139
4424
  };
4425
+ /**
4426
+ * MsgSignData defines an arbitrary, general-purpose, off-chain message
4427
+ * @name MsgSignData
4428
+ * @package injective.exchange.v1beta1
4429
+ * @see proto type: injective.exchange.v1beta1.MsgSignData
4430
+ */
3140
4431
  export declare const MsgSignData: {
3141
4432
  typeUrl: string;
3142
4433
  is(o: any): o is MsgSignData;
@@ -3152,6 +4443,12 @@ export declare const MsgSignData: {
3152
4443
  toProtoMsg(message: MsgSignData): MsgSignDataProtoMsg;
3153
4444
  registerTypeUrl(): void;
3154
4445
  };
4446
+ /**
4447
+ * MsgSignDoc defines an arbitrary, general-purpose, off-chain message
4448
+ * @name MsgSignDoc
4449
+ * @package injective.exchange.v1beta1
4450
+ * @see proto type: injective.exchange.v1beta1.MsgSignDoc
4451
+ */
3155
4452
  export declare const MsgSignDoc: {
3156
4453
  typeUrl: string;
3157
4454
  is(o: any): o is MsgSignDoc;
@@ -3167,6 +4464,13 @@ export declare const MsgSignDoc: {
3167
4464
  toProtoMsg(message: MsgSignDoc): MsgSignDocProtoMsg;
3168
4465
  registerTypeUrl(): void;
3169
4466
  };
4467
+ /**
4468
+ * MsgAdminUpdateBinaryOptionsMarket is used by the market Admin to operate the
4469
+ * market
4470
+ * @name MsgAdminUpdateBinaryOptionsMarket
4471
+ * @package injective.exchange.v1beta1
4472
+ * @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarket
4473
+ */
3170
4474
  export declare const MsgAdminUpdateBinaryOptionsMarket: {
3171
4475
  typeUrl: string;
3172
4476
  aminoType: string;
@@ -3184,6 +4488,13 @@ export declare const MsgAdminUpdateBinaryOptionsMarket: {
3184
4488
  toProtoMsg(message: MsgAdminUpdateBinaryOptionsMarket): MsgAdminUpdateBinaryOptionsMarketProtoMsg;
3185
4489
  registerTypeUrl(): void;
3186
4490
  };
4491
+ /**
4492
+ * MsgAdminUpdateBinaryOptionsMarketResponse is the response for
4493
+ * AdminUpdateBinaryOptionsMarket rpc method
4494
+ * @name MsgAdminUpdateBinaryOptionsMarketResponse
4495
+ * @package injective.exchange.v1beta1
4496
+ * @see proto type: injective.exchange.v1beta1.MsgAdminUpdateBinaryOptionsMarketResponse
4497
+ */
3187
4498
  export declare const MsgAdminUpdateBinaryOptionsMarketResponse: {
3188
4499
  typeUrl: string;
3189
4500
  is(o: any): o is MsgAdminUpdateBinaryOptionsMarketResponse;
@@ -3199,6 +4510,12 @@ export declare const MsgAdminUpdateBinaryOptionsMarketResponse: {
3199
4510
  toProtoMsg(message: MsgAdminUpdateBinaryOptionsMarketResponse): MsgAdminUpdateBinaryOptionsMarketResponseProtoMsg;
3200
4511
  registerTypeUrl(): void;
3201
4512
  };
4513
+ /**
4514
+ * MsgAuthorizeStakeGrants grants stakes to grantees.
4515
+ * @name MsgAuthorizeStakeGrants
4516
+ * @package injective.exchange.v1beta1
4517
+ * @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrants
4518
+ */
3202
4519
  export declare const MsgAuthorizeStakeGrants: {
3203
4520
  typeUrl: string;
3204
4521
  aminoType: string;
@@ -3216,6 +4533,11 @@ export declare const MsgAuthorizeStakeGrants: {
3216
4533
  toProtoMsg(message: MsgAuthorizeStakeGrants): MsgAuthorizeStakeGrantsProtoMsg;
3217
4534
  registerTypeUrl(): void;
3218
4535
  };
4536
+ /**
4537
+ * @name MsgAuthorizeStakeGrantsResponse
4538
+ * @package injective.exchange.v1beta1
4539
+ * @see proto type: injective.exchange.v1beta1.MsgAuthorizeStakeGrantsResponse
4540
+ */
3219
4541
  export declare const MsgAuthorizeStakeGrantsResponse: {
3220
4542
  typeUrl: string;
3221
4543
  is(o: any): o is MsgAuthorizeStakeGrantsResponse;
@@ -3231,6 +4553,12 @@ export declare const MsgAuthorizeStakeGrantsResponse: {
3231
4553
  toProtoMsg(message: MsgAuthorizeStakeGrantsResponse): MsgAuthorizeStakeGrantsResponseProtoMsg;
3232
4554
  registerTypeUrl(): void;
3233
4555
  };
4556
+ /**
4557
+ * MsgActivateStakeGrant allows a grantee to activate a stake grant.
4558
+ * @name MsgActivateStakeGrant
4559
+ * @package injective.exchange.v1beta1
4560
+ * @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrant
4561
+ */
3234
4562
  export declare const MsgActivateStakeGrant: {
3235
4563
  typeUrl: string;
3236
4564
  aminoType: string;
@@ -3248,6 +4576,11 @@ export declare const MsgActivateStakeGrant: {
3248
4576
  toProtoMsg(message: MsgActivateStakeGrant): MsgActivateStakeGrantProtoMsg;
3249
4577
  registerTypeUrl(): void;
3250
4578
  };
4579
+ /**
4580
+ * @name MsgActivateStakeGrantResponse
4581
+ * @package injective.exchange.v1beta1
4582
+ * @see proto type: injective.exchange.v1beta1.MsgActivateStakeGrantResponse
4583
+ */
3251
4584
  export declare const MsgActivateStakeGrantResponse: {
3252
4585
  typeUrl: string;
3253
4586
  is(o: any): o is MsgActivateStakeGrantResponse;