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
@@ -68,6 +68,11 @@ export declare enum OrderMask {
68
68
  export declare const OrderMaskAmino: typeof OrderMask;
69
69
  export declare function orderMaskFromJSON(object: any): OrderMask;
70
70
  export declare function orderMaskToJSON(object: OrderMask): string;
71
+ /**
72
+ * @name Params
73
+ * @package injective.exchange.v1beta1
74
+ * @see proto type: injective.exchange.v1beta1.Params
75
+ */
71
76
  export interface Params {
72
77
  /**
73
78
  * spot_market_instant_listing_fee defines the expedited fee in INJ required
@@ -129,7 +134,9 @@ export interface Params {
129
134
  * of the hourly funding rate
130
135
  */
131
136
  defaultHourlyFundingRateCap: string;
132
- /** hourly_interest_rate defines the hourly interest rate */
137
+ /**
138
+ * hourly_interest_rate defines the hourly interest rate
139
+ */
133
140
  defaultHourlyInterestRate: string;
134
141
  /**
135
142
  * max_derivative_order_side_count defines the maximum number of derivative
@@ -176,7 +183,9 @@ export interface Params {
176
183
  * multiplier for executing atomic market orders in binary markets
177
184
  */
178
185
  binaryOptionsAtomicMarketOrderFeeMultiplier: string;
179
- /** minimal_protocol_fee_rate defines the minimal protocol fee rate */
186
+ /**
187
+ * minimal_protocol_fee_rate defines the minimal protocol fee rate
188
+ */
180
189
  minimalProtocolFeeRate: string;
181
190
  /**
182
191
  * is_instant_derivative_market_launch_enabled defines whether instant
@@ -189,15 +198,24 @@ export interface Params {
189
198
  * decrease in margin
190
199
  */
191
200
  marginDecreasePriceTimestampThresholdSeconds: bigint;
192
- /** List of addresses that are allowed to perform exchange admin operations */
201
+ /**
202
+ * List of addresses that are allowed to perform exchange admin operations
203
+ */
193
204
  exchangeAdmins: string[];
194
- /** inj_auction_max_cap defines the maximum cap for INJ sent to auction */
205
+ /**
206
+ * inj_auction_max_cap defines the maximum cap for INJ sent to auction
207
+ */
195
208
  injAuctionMaxCap: string;
196
209
  }
197
210
  export interface ParamsProtoMsg {
198
211
  typeUrl: "/injective.exchange.v1beta1.Params";
199
212
  value: Uint8Array;
200
213
  }
214
+ /**
215
+ * @name ParamsAmino
216
+ * @package injective.exchange.v1beta1
217
+ * @see proto type: injective.exchange.v1beta1.Params
218
+ */
201
219
  export interface ParamsAmino {
202
220
  /**
203
221
  * spot_market_instant_listing_fee defines the expedited fee in INJ required
@@ -259,7 +277,9 @@ export interface ParamsAmino {
259
277
  * of the hourly funding rate
260
278
  */
261
279
  default_hourly_funding_rate_cap: string;
262
- /** hourly_interest_rate defines the hourly interest rate */
280
+ /**
281
+ * hourly_interest_rate defines the hourly interest rate
282
+ */
263
283
  default_hourly_interest_rate: string;
264
284
  /**
265
285
  * max_derivative_order_side_count defines the maximum number of derivative
@@ -306,7 +326,9 @@ export interface ParamsAmino {
306
326
  * multiplier for executing atomic market orders in binary markets
307
327
  */
308
328
  binary_options_atomic_market_order_fee_multiplier: string;
309
- /** minimal_protocol_fee_rate defines the minimal protocol fee rate */
329
+ /**
330
+ * minimal_protocol_fee_rate defines the minimal protocol fee rate
331
+ */
310
332
  minimal_protocol_fee_rate: string;
311
333
  /**
312
334
  * is_instant_derivative_market_launch_enabled defines whether instant
@@ -319,15 +341,24 @@ export interface ParamsAmino {
319
341
  * decrease in margin
320
342
  */
321
343
  margin_decrease_price_timestamp_threshold_seconds: string;
322
- /** List of addresses that are allowed to perform exchange admin operations */
344
+ /**
345
+ * List of addresses that are allowed to perform exchange admin operations
346
+ */
323
347
  exchange_admins: string[];
324
- /** inj_auction_max_cap defines the maximum cap for INJ sent to auction */
348
+ /**
349
+ * inj_auction_max_cap defines the maximum cap for INJ sent to auction
350
+ */
325
351
  inj_auction_max_cap: string;
326
352
  }
327
353
  export interface ParamsAminoMsg {
328
354
  type: "exchange/Params";
329
355
  value: ParamsAmino;
330
356
  }
357
+ /**
358
+ * @name MarketFeeMultiplier
359
+ * @package injective.exchange.v1beta1
360
+ * @see proto type: injective.exchange.v1beta1.MarketFeeMultiplier
361
+ */
331
362
  export interface MarketFeeMultiplier {
332
363
  marketId: string;
333
364
  feeMultiplier: string;
@@ -336,6 +367,11 @@ export interface MarketFeeMultiplierProtoMsg {
336
367
  typeUrl: "/injective.exchange.v1beta1.MarketFeeMultiplier";
337
368
  value: Uint8Array;
338
369
  }
370
+ /**
371
+ * @name MarketFeeMultiplierAmino
372
+ * @package injective.exchange.v1beta1
373
+ * @see proto type: injective.exchange.v1beta1.MarketFeeMultiplier
374
+ */
339
375
  export interface MarketFeeMultiplierAmino {
340
376
  market_id: string;
341
377
  fee_multiplier: string;
@@ -344,21 +380,40 @@ export interface MarketFeeMultiplierAminoMsg {
344
380
  type: "/injective.exchange.v1beta1.MarketFeeMultiplier";
345
381
  value: MarketFeeMultiplierAmino;
346
382
  }
347
- /** An object describing a derivative market in the Injective Futures Protocol. */
383
+ /**
384
+ * An object describing a derivative market in the Injective Futures Protocol.
385
+ * @name DerivativeMarket
386
+ * @package injective.exchange.v1beta1
387
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarket
388
+ */
348
389
  export interface DerivativeMarket {
349
- /** Ticker for the derivative contract. */
390
+ /**
391
+ * Ticker for the derivative contract.
392
+ */
350
393
  ticker: string;
351
- /** Oracle base currency */
394
+ /**
395
+ * Oracle base currency
396
+ */
352
397
  oracleBase: string;
353
- /** Oracle quote currency */
398
+ /**
399
+ * Oracle quote currency
400
+ */
354
401
  oracleQuote: string;
355
- /** Oracle type */
402
+ /**
403
+ * Oracle type
404
+ */
356
405
  oracleType: OracleType;
357
- /** Scale factor for oracle prices. */
406
+ /**
407
+ * Scale factor for oracle prices.
408
+ */
358
409
  oracleScaleFactor: number;
359
- /** Address of the quote currency denomination for the derivative contract */
410
+ /**
411
+ * Address of the quote currency denomination for the derivative contract
412
+ */
360
413
  quoteDenom: string;
361
- /** Unique market ID. */
414
+ /**
415
+ * Unique market ID.
416
+ */
362
417
  marketId: string;
363
418
  /**
364
419
  * initial_margin_ratio defines the initial margin ratio of a derivative
@@ -370,9 +425,13 @@ export interface DerivativeMarket {
370
425
  * derivative market
371
426
  */
372
427
  maintenanceMarginRatio: string;
373
- /** maker_fee_rate defines the maker fee rate of a derivative market */
428
+ /**
429
+ * maker_fee_rate defines the maker fee rate of a derivative market
430
+ */
374
431
  makerFeeRate: string;
375
- /** taker_fee_rate defines the taker fee rate of a derivative market */
432
+ /**
433
+ * taker_fee_rate defines the taker fee rate of a derivative market
434
+ */
376
435
  takerFeeRate: string;
377
436
  /**
378
437
  * relayer_fee_share_rate defines the percentage of the transaction fee shared
@@ -384,7 +443,9 @@ export interface DerivativeMarket {
384
443
  * futures market
385
444
  */
386
445
  isPerpetual: boolean;
387
- /** Status of the market */
446
+ /**
447
+ * Status of the market
448
+ */
388
449
  status: MarketStatus;
389
450
  /**
390
451
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -401,30 +462,53 @@ export interface DerivativeMarket {
401
462
  * orders in the market
402
463
  */
403
464
  minNotional: string;
404
- /** current market admin */
465
+ /**
466
+ * current market admin
467
+ */
405
468
  admin: string;
406
- /** level of admin permissions */
469
+ /**
470
+ * level of admin permissions
471
+ */
407
472
  adminPermissions: number;
408
473
  }
409
474
  export interface DerivativeMarketProtoMsg {
410
475
  typeUrl: "/injective.exchange.v1beta1.DerivativeMarket";
411
476
  value: Uint8Array;
412
477
  }
413
- /** An object describing a derivative market in the Injective Futures Protocol. */
478
+ /**
479
+ * An object describing a derivative market in the Injective Futures Protocol.
480
+ * @name DerivativeMarketAmino
481
+ * @package injective.exchange.v1beta1
482
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarket
483
+ */
414
484
  export interface DerivativeMarketAmino {
415
- /** Ticker for the derivative contract. */
485
+ /**
486
+ * Ticker for the derivative contract.
487
+ */
416
488
  ticker: string;
417
- /** Oracle base currency */
489
+ /**
490
+ * Oracle base currency
491
+ */
418
492
  oracle_base: string;
419
- /** Oracle quote currency */
493
+ /**
494
+ * Oracle quote currency
495
+ */
420
496
  oracle_quote: string;
421
- /** Oracle type */
497
+ /**
498
+ * Oracle type
499
+ */
422
500
  oracle_type: OracleType;
423
- /** Scale factor for oracle prices. */
501
+ /**
502
+ * Scale factor for oracle prices.
503
+ */
424
504
  oracle_scale_factor: number;
425
- /** Address of the quote currency denomination for the derivative contract */
505
+ /**
506
+ * Address of the quote currency denomination for the derivative contract
507
+ */
426
508
  quote_denom: string;
427
- /** Unique market ID. */
509
+ /**
510
+ * Unique market ID.
511
+ */
428
512
  market_id: string;
429
513
  /**
430
514
  * initial_margin_ratio defines the initial margin ratio of a derivative
@@ -436,9 +520,13 @@ export interface DerivativeMarketAmino {
436
520
  * derivative market
437
521
  */
438
522
  maintenance_margin_ratio: string;
439
- /** maker_fee_rate defines the maker fee rate of a derivative market */
523
+ /**
524
+ * maker_fee_rate defines the maker fee rate of a derivative market
525
+ */
440
526
  maker_fee_rate: string;
441
- /** taker_fee_rate defines the taker fee rate of a derivative market */
527
+ /**
528
+ * taker_fee_rate defines the taker fee rate of a derivative market
529
+ */
442
530
  taker_fee_rate: string;
443
531
  /**
444
532
  * relayer_fee_share_rate defines the percentage of the transaction fee shared
@@ -450,7 +538,9 @@ export interface DerivativeMarketAmino {
450
538
  * futures market
451
539
  */
452
540
  isPerpetual: boolean;
453
- /** Status of the market */
541
+ /**
542
+ * Status of the market
543
+ */
454
544
  status: MarketStatus;
455
545
  /**
456
546
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -467,47 +557,82 @@ export interface DerivativeMarketAmino {
467
557
  * orders in the market
468
558
  */
469
559
  min_notional: string;
470
- /** current market admin */
560
+ /**
561
+ * current market admin
562
+ */
471
563
  admin: string;
472
- /** level of admin permissions */
564
+ /**
565
+ * level of admin permissions
566
+ */
473
567
  admin_permissions: number;
474
568
  }
475
569
  export interface DerivativeMarketAminoMsg {
476
570
  type: "/injective.exchange.v1beta1.DerivativeMarket";
477
571
  value: DerivativeMarketAmino;
478
572
  }
479
- /** An object describing a binary options market in Injective Protocol. */
573
+ /**
574
+ * An object describing a binary options market in Injective Protocol.
575
+ * @name BinaryOptionsMarket
576
+ * @package injective.exchange.v1beta1
577
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarket
578
+ */
480
579
  export interface BinaryOptionsMarket {
481
- /** Ticker for the derivative contract. */
580
+ /**
581
+ * Ticker for the derivative contract.
582
+ */
482
583
  ticker: string;
483
- /** Oracle symbol */
584
+ /**
585
+ * Oracle symbol
586
+ */
484
587
  oracleSymbol: string;
485
- /** Oracle Provider */
588
+ /**
589
+ * Oracle Provider
590
+ */
486
591
  oracleProvider: string;
487
- /** Oracle type */
592
+ /**
593
+ * Oracle type
594
+ */
488
595
  oracleType: OracleType;
489
- /** Scale factor for oracle prices. */
596
+ /**
597
+ * Scale factor for oracle prices.
598
+ */
490
599
  oracleScaleFactor: number;
491
- /** expiration timestamp */
600
+ /**
601
+ * expiration timestamp
602
+ */
492
603
  expirationTimestamp: bigint;
493
- /** expiration timestamp */
604
+ /**
605
+ * expiration timestamp
606
+ */
494
607
  settlementTimestamp: bigint;
495
- /** admin of the market */
608
+ /**
609
+ * admin of the market
610
+ */
496
611
  admin: string;
497
- /** Address of the quote currency denomination for the binary options contract */
612
+ /**
613
+ * Address of the quote currency denomination for the binary options contract
614
+ */
498
615
  quoteDenom: string;
499
- /** Unique market ID. */
616
+ /**
617
+ * Unique market ID.
618
+ */
500
619
  marketId: string;
501
- /** maker_fee_rate defines the maker fee rate of a binary options market */
620
+ /**
621
+ * maker_fee_rate defines the maker fee rate of a binary options market
622
+ */
502
623
  makerFeeRate: string;
503
- /** taker_fee_rate defines the taker fee rate of a derivative market */
624
+ /**
625
+ * taker_fee_rate defines the taker fee rate of a derivative market
626
+ */
504
627
  takerFeeRate: string;
505
628
  /**
506
629
  * relayer_fee_share_rate defines the percentage of the transaction fee shared
507
630
  * with the relayer in a derivative market
508
631
  */
509
632
  relayerFeeShareRate: string;
510
- /** Status of the market */
633
+ /**
634
+ * Status of the market
635
+ */
511
636
  status: MarketStatus;
512
637
  /**
513
638
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -525,45 +650,78 @@ export interface BinaryOptionsMarket {
525
650
  * orders in the market
526
651
  */
527
652
  minNotional: string;
528
- /** level of admin permissions */
653
+ /**
654
+ * level of admin permissions
655
+ */
529
656
  adminPermissions: number;
530
657
  }
531
658
  export interface BinaryOptionsMarketProtoMsg {
532
659
  typeUrl: "/injective.exchange.v1beta1.BinaryOptionsMarket";
533
660
  value: Uint8Array;
534
661
  }
535
- /** An object describing a binary options market in Injective Protocol. */
662
+ /**
663
+ * An object describing a binary options market in Injective Protocol.
664
+ * @name BinaryOptionsMarketAmino
665
+ * @package injective.exchange.v1beta1
666
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarket
667
+ */
536
668
  export interface BinaryOptionsMarketAmino {
537
- /** Ticker for the derivative contract. */
669
+ /**
670
+ * Ticker for the derivative contract.
671
+ */
538
672
  ticker: string;
539
- /** Oracle symbol */
673
+ /**
674
+ * Oracle symbol
675
+ */
540
676
  oracle_symbol: string;
541
- /** Oracle Provider */
677
+ /**
678
+ * Oracle Provider
679
+ */
542
680
  oracle_provider: string;
543
- /** Oracle type */
681
+ /**
682
+ * Oracle type
683
+ */
544
684
  oracle_type: OracleType;
545
- /** Scale factor for oracle prices. */
685
+ /**
686
+ * Scale factor for oracle prices.
687
+ */
546
688
  oracle_scale_factor: number;
547
- /** expiration timestamp */
689
+ /**
690
+ * expiration timestamp
691
+ */
548
692
  expiration_timestamp: string;
549
- /** expiration timestamp */
693
+ /**
694
+ * expiration timestamp
695
+ */
550
696
  settlement_timestamp: string;
551
- /** admin of the market */
697
+ /**
698
+ * admin of the market
699
+ */
552
700
  admin: string;
553
- /** Address of the quote currency denomination for the binary options contract */
701
+ /**
702
+ * Address of the quote currency denomination for the binary options contract
703
+ */
554
704
  quote_denom: string;
555
- /** Unique market ID. */
705
+ /**
706
+ * Unique market ID.
707
+ */
556
708
  market_id: string;
557
- /** maker_fee_rate defines the maker fee rate of a binary options market */
709
+ /**
710
+ * maker_fee_rate defines the maker fee rate of a binary options market
711
+ */
558
712
  maker_fee_rate: string;
559
- /** taker_fee_rate defines the taker fee rate of a derivative market */
713
+ /**
714
+ * taker_fee_rate defines the taker fee rate of a derivative market
715
+ */
560
716
  taker_fee_rate: string;
561
717
  /**
562
718
  * relayer_fee_share_rate defines the percentage of the transaction fee shared
563
719
  * with the relayer in a derivative market
564
720
  */
565
721
  relayer_fee_share_rate: string;
566
- /** Status of the market */
722
+ /**
723
+ * Status of the market
724
+ */
567
725
  status: MarketStatus;
568
726
  /**
569
727
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -581,15 +739,24 @@ export interface BinaryOptionsMarketAmino {
581
739
  * orders in the market
582
740
  */
583
741
  min_notional: string;
584
- /** level of admin permissions */
742
+ /**
743
+ * level of admin permissions
744
+ */
585
745
  admin_permissions: number;
586
746
  }
587
747
  export interface BinaryOptionsMarketAminoMsg {
588
748
  type: "/injective.exchange.v1beta1.BinaryOptionsMarket";
589
749
  value: BinaryOptionsMarketAmino;
590
750
  }
751
+ /**
752
+ * @name ExpiryFuturesMarketInfo
753
+ * @package injective.exchange.v1beta1
754
+ * @see proto type: injective.exchange.v1beta1.ExpiryFuturesMarketInfo
755
+ */
591
756
  export interface ExpiryFuturesMarketInfo {
592
- /** market ID. */
757
+ /**
758
+ * market ID.
759
+ */
593
760
  marketId: string;
594
761
  /**
595
762
  * expiration_timestamp defines the expiration time for a time expiry futures
@@ -616,8 +783,15 @@ export interface ExpiryFuturesMarketInfoProtoMsg {
616
783
  typeUrl: "/injective.exchange.v1beta1.ExpiryFuturesMarketInfo";
617
784
  value: Uint8Array;
618
785
  }
786
+ /**
787
+ * @name ExpiryFuturesMarketInfoAmino
788
+ * @package injective.exchange.v1beta1
789
+ * @see proto type: injective.exchange.v1beta1.ExpiryFuturesMarketInfo
790
+ */
619
791
  export interface ExpiryFuturesMarketInfoAmino {
620
- /** market ID. */
792
+ /**
793
+ * market ID.
794
+ */
621
795
  market_id: string;
622
796
  /**
623
797
  * expiration_timestamp defines the expiration time for a time expiry futures
@@ -644,15 +818,24 @@ export interface ExpiryFuturesMarketInfoAminoMsg {
644
818
  type: "/injective.exchange.v1beta1.ExpiryFuturesMarketInfo";
645
819
  value: ExpiryFuturesMarketInfoAmino;
646
820
  }
821
+ /**
822
+ * @name PerpetualMarketInfo
823
+ * @package injective.exchange.v1beta1
824
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketInfo
825
+ */
647
826
  export interface PerpetualMarketInfo {
648
- /** market ID. */
827
+ /**
828
+ * market ID.
829
+ */
649
830
  marketId: string;
650
831
  /**
651
832
  * hourly_funding_rate_cap defines the maximum absolute value of the hourly
652
833
  * funding rate
653
834
  */
654
835
  hourlyFundingRateCap: string;
655
- /** hourly_interest_rate defines the hourly interest rate */
836
+ /**
837
+ * hourly_interest_rate defines the hourly interest rate
838
+ */
656
839
  hourlyInterestRate: string;
657
840
  /**
658
841
  * next_funding_timestamp defines the next funding timestamp in seconds of a
@@ -669,15 +852,24 @@ export interface PerpetualMarketInfoProtoMsg {
669
852
  typeUrl: "/injective.exchange.v1beta1.PerpetualMarketInfo";
670
853
  value: Uint8Array;
671
854
  }
855
+ /**
856
+ * @name PerpetualMarketInfoAmino
857
+ * @package injective.exchange.v1beta1
858
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketInfo
859
+ */
672
860
  export interface PerpetualMarketInfoAmino {
673
- /** market ID. */
861
+ /**
862
+ * market ID.
863
+ */
674
864
  market_id: string;
675
865
  /**
676
866
  * hourly_funding_rate_cap defines the maximum absolute value of the hourly
677
867
  * funding rate
678
868
  */
679
869
  hourly_funding_rate_cap: string;
680
- /** hourly_interest_rate defines the hourly interest rate */
870
+ /**
871
+ * hourly_interest_rate defines the hourly interest rate
872
+ */
681
873
  hourly_interest_rate: string;
682
874
  /**
683
875
  * next_funding_timestamp defines the next funding timestamp in seconds of a
@@ -694,8 +886,15 @@ export interface PerpetualMarketInfoAminoMsg {
694
886
  type: "/injective.exchange.v1beta1.PerpetualMarketInfo";
695
887
  value: PerpetualMarketInfoAmino;
696
888
  }
889
+ /**
890
+ * @name PerpetualMarketFunding
891
+ * @package injective.exchange.v1beta1
892
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketFunding
893
+ */
697
894
  export interface PerpetualMarketFunding {
698
- /** cumulative_funding defines the cumulative funding of a perpetual market. */
895
+ /**
896
+ * cumulative_funding defines the cumulative funding of a perpetual market.
897
+ */
699
898
  cumulativeFunding: string;
700
899
  /**
701
900
  * cumulative_price defines the cumulative price for the current hour up to
@@ -708,8 +907,15 @@ export interface PerpetualMarketFundingProtoMsg {
708
907
  typeUrl: "/injective.exchange.v1beta1.PerpetualMarketFunding";
709
908
  value: Uint8Array;
710
909
  }
910
+ /**
911
+ * @name PerpetualMarketFundingAmino
912
+ * @package injective.exchange.v1beta1
913
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketFunding
914
+ */
711
915
  export interface PerpetualMarketFundingAmino {
712
- /** cumulative_funding defines the cumulative funding of a perpetual market. */
916
+ /**
917
+ * cumulative_funding defines the cumulative funding of a perpetual market.
918
+ */
713
919
  cumulative_funding: string;
714
920
  /**
715
921
  * cumulative_price defines the cumulative price for the current hour up to
@@ -722,26 +928,49 @@ export interface PerpetualMarketFundingAminoMsg {
722
928
  type: "/injective.exchange.v1beta1.PerpetualMarketFunding";
723
929
  value: PerpetualMarketFundingAmino;
724
930
  }
931
+ /**
932
+ * @name DerivativeMarketSettlementInfo
933
+ * @package injective.exchange.v1beta1
934
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketSettlementInfo
935
+ */
725
936
  export interface DerivativeMarketSettlementInfo {
726
- /** market ID. */
937
+ /**
938
+ * market ID.
939
+ */
727
940
  marketId: string;
728
- /** settlement_price defines the settlement price */
941
+ /**
942
+ * settlement_price defines the settlement price
943
+ */
729
944
  settlementPrice: string;
730
945
  }
731
946
  export interface DerivativeMarketSettlementInfoProtoMsg {
732
947
  typeUrl: "/injective.exchange.v1beta1.DerivativeMarketSettlementInfo";
733
948
  value: Uint8Array;
734
949
  }
950
+ /**
951
+ * @name DerivativeMarketSettlementInfoAmino
952
+ * @package injective.exchange.v1beta1
953
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketSettlementInfo
954
+ */
735
955
  export interface DerivativeMarketSettlementInfoAmino {
736
- /** market ID. */
956
+ /**
957
+ * market ID.
958
+ */
737
959
  market_id: string;
738
- /** settlement_price defines the settlement price */
960
+ /**
961
+ * settlement_price defines the settlement price
962
+ */
739
963
  settlement_price: string;
740
964
  }
741
965
  export interface DerivativeMarketSettlementInfoAminoMsg {
742
966
  type: "/injective.exchange.v1beta1.DerivativeMarketSettlementInfo";
743
967
  value: DerivativeMarketSettlementInfoAmino;
744
968
  }
969
+ /**
970
+ * @name NextFundingTimestamp
971
+ * @package injective.exchange.v1beta1
972
+ * @see proto type: injective.exchange.v1beta1.NextFundingTimestamp
973
+ */
745
974
  export interface NextFundingTimestamp {
746
975
  nextTimestamp: bigint;
747
976
  }
@@ -749,6 +978,11 @@ export interface NextFundingTimestampProtoMsg {
749
978
  typeUrl: "/injective.exchange.v1beta1.NextFundingTimestamp";
750
979
  value: Uint8Array;
751
980
  }
981
+ /**
982
+ * @name NextFundingTimestampAmino
983
+ * @package injective.exchange.v1beta1
984
+ * @see proto type: injective.exchange.v1beta1.NextFundingTimestamp
985
+ */
752
986
  export interface NextFundingTimestampAmino {
753
987
  next_timestamp: string;
754
988
  }
@@ -756,53 +990,92 @@ export interface NextFundingTimestampAminoMsg {
756
990
  type: "/injective.exchange.v1beta1.NextFundingTimestamp";
757
991
  value: NextFundingTimestampAmino;
758
992
  }
993
+ /**
994
+ * @name MidPriceAndTOB
995
+ * @package injective.exchange.v1beta1
996
+ * @see proto type: injective.exchange.v1beta1.MidPriceAndTOB
997
+ */
759
998
  export interface MidPriceAndTOB {
760
- /** mid price of the market */
999
+ /**
1000
+ * mid price of the market
1001
+ */
761
1002
  midPrice?: string;
762
- /** best buy price of the market */
1003
+ /**
1004
+ * best buy price of the market
1005
+ */
763
1006
  bestBuyPrice?: string;
764
- /** best sell price of the market */
1007
+ /**
1008
+ * best sell price of the market
1009
+ */
765
1010
  bestSellPrice?: string;
766
1011
  }
767
1012
  export interface MidPriceAndTOBProtoMsg {
768
1013
  typeUrl: "/injective.exchange.v1beta1.MidPriceAndTOB";
769
1014
  value: Uint8Array;
770
1015
  }
1016
+ /**
1017
+ * @name MidPriceAndTOBAmino
1018
+ * @package injective.exchange.v1beta1
1019
+ * @see proto type: injective.exchange.v1beta1.MidPriceAndTOB
1020
+ */
771
1021
  export interface MidPriceAndTOBAmino {
772
- /** mid price of the market */
1022
+ /**
1023
+ * mid price of the market
1024
+ */
773
1025
  mid_price?: string;
774
- /** best buy price of the market */
1026
+ /**
1027
+ * best buy price of the market
1028
+ */
775
1029
  best_buy_price?: string;
776
- /** best sell price of the market */
1030
+ /**
1031
+ * best sell price of the market
1032
+ */
777
1033
  best_sell_price?: string;
778
1034
  }
779
1035
  export interface MidPriceAndTOBAminoMsg {
780
1036
  type: "/injective.exchange.v1beta1.MidPriceAndTOB";
781
1037
  value: MidPriceAndTOBAmino;
782
1038
  }
783
- /** An object describing trade pair of two assets. */
1039
+ /**
1040
+ * An object describing trade pair of two assets.
1041
+ * @name SpotMarket
1042
+ * @package injective.exchange.v1beta1
1043
+ * @see proto type: injective.exchange.v1beta1.SpotMarket
1044
+ */
784
1045
  export interface SpotMarket {
785
1046
  /**
786
1047
  * A name of the pair in format AAA/BBB, where AAA is base asset, BBB is quote
787
1048
  * asset.
788
1049
  */
789
1050
  ticker: string;
790
- /** Coin denom used for the base asset */
1051
+ /**
1052
+ * Coin denom used for the base asset
1053
+ */
791
1054
  baseDenom: string;
792
- /** Coin used for the quote asset */
1055
+ /**
1056
+ * Coin used for the quote asset
1057
+ */
793
1058
  quoteDenom: string;
794
- /** maker_fee_rate defines the fee percentage makers pay when trading */
1059
+ /**
1060
+ * maker_fee_rate defines the fee percentage makers pay when trading
1061
+ */
795
1062
  makerFeeRate: string;
796
- /** taker_fee_rate defines the fee percentage takers pay when trading */
1063
+ /**
1064
+ * taker_fee_rate defines the fee percentage takers pay when trading
1065
+ */
797
1066
  takerFeeRate: string;
798
1067
  /**
799
1068
  * relayer_fee_share_rate defines the percentage of the transaction fee shared
800
1069
  * with the relayer in a derivative market
801
1070
  */
802
1071
  relayerFeeShareRate: string;
803
- /** Unique market ID. */
1072
+ /**
1073
+ * Unique market ID.
1074
+ */
804
1075
  marketId: string;
805
- /** Status of the market */
1076
+ /**
1077
+ * Status of the market
1078
+ */
806
1079
  status: MarketStatus;
807
1080
  /**
808
1081
  * min_price_tick_size defines the minimum tick size that the price required
@@ -819,38 +1092,59 @@ export interface SpotMarket {
819
1092
  * orders in the market
820
1093
  */
821
1094
  minNotional: string;
822
- /** current market admin */
1095
+ /**
1096
+ * current market admin
1097
+ */
823
1098
  admin: string;
824
- /** level of admin permissions */
1099
+ /**
1100
+ * level of admin permissions
1101
+ */
825
1102
  adminPermissions: number;
826
1103
  }
827
1104
  export interface SpotMarketProtoMsg {
828
1105
  typeUrl: "/injective.exchange.v1beta1.SpotMarket";
829
1106
  value: Uint8Array;
830
1107
  }
831
- /** An object describing trade pair of two assets. */
1108
+ /**
1109
+ * An object describing trade pair of two assets.
1110
+ * @name SpotMarketAmino
1111
+ * @package injective.exchange.v1beta1
1112
+ * @see proto type: injective.exchange.v1beta1.SpotMarket
1113
+ */
832
1114
  export interface SpotMarketAmino {
833
1115
  /**
834
1116
  * A name of the pair in format AAA/BBB, where AAA is base asset, BBB is quote
835
1117
  * asset.
836
1118
  */
837
1119
  ticker: string;
838
- /** Coin denom used for the base asset */
1120
+ /**
1121
+ * Coin denom used for the base asset
1122
+ */
839
1123
  base_denom: string;
840
- /** Coin used for the quote asset */
1124
+ /**
1125
+ * Coin used for the quote asset
1126
+ */
841
1127
  quote_denom: string;
842
- /** maker_fee_rate defines the fee percentage makers pay when trading */
1128
+ /**
1129
+ * maker_fee_rate defines the fee percentage makers pay when trading
1130
+ */
843
1131
  maker_fee_rate: string;
844
- /** taker_fee_rate defines the fee percentage takers pay when trading */
1132
+ /**
1133
+ * taker_fee_rate defines the fee percentage takers pay when trading
1134
+ */
845
1135
  taker_fee_rate: string;
846
1136
  /**
847
1137
  * relayer_fee_share_rate defines the percentage of the transaction fee shared
848
1138
  * with the relayer in a derivative market
849
1139
  */
850
1140
  relayer_fee_share_rate: string;
851
- /** Unique market ID. */
1141
+ /**
1142
+ * Unique market ID.
1143
+ */
852
1144
  market_id: string;
853
- /** Status of the market */
1145
+ /**
1146
+ * Status of the market
1147
+ */
854
1148
  status: MarketStatus;
855
1149
  /**
856
1150
  * min_price_tick_size defines the minimum tick size that the price required
@@ -867,16 +1161,25 @@ export interface SpotMarketAmino {
867
1161
  * orders in the market
868
1162
  */
869
1163
  min_notional: string;
870
- /** current market admin */
1164
+ /**
1165
+ * current market admin
1166
+ */
871
1167
  admin: string;
872
- /** level of admin permissions */
1168
+ /**
1169
+ * level of admin permissions
1170
+ */
873
1171
  admin_permissions: number;
874
1172
  }
875
1173
  export interface SpotMarketAminoMsg {
876
1174
  type: "/injective.exchange.v1beta1.SpotMarket";
877
1175
  value: SpotMarketAmino;
878
1176
  }
879
- /** A subaccount's deposit for a given base currency */
1177
+ /**
1178
+ * A subaccount's deposit for a given base currency
1179
+ * @name Deposit
1180
+ * @package injective.exchange.v1beta1
1181
+ * @see proto type: injective.exchange.v1beta1.Deposit
1182
+ */
880
1183
  export interface Deposit {
881
1184
  availableBalance: string;
882
1185
  totalBalance: string;
@@ -885,7 +1188,12 @@ export interface DepositProtoMsg {
885
1188
  typeUrl: "/injective.exchange.v1beta1.Deposit";
886
1189
  value: Uint8Array;
887
1190
  }
888
- /** A subaccount's deposit for a given base currency */
1191
+ /**
1192
+ * A subaccount's deposit for a given base currency
1193
+ * @name DepositAmino
1194
+ * @package injective.exchange.v1beta1
1195
+ * @see proto type: injective.exchange.v1beta1.Deposit
1196
+ */
889
1197
  export interface DepositAmino {
890
1198
  available_balance: string;
891
1199
  total_balance: string;
@@ -894,6 +1202,11 @@ export interface DepositAminoMsg {
894
1202
  type: "/injective.exchange.v1beta1.Deposit";
895
1203
  value: DepositAmino;
896
1204
  }
1205
+ /**
1206
+ * @name SubaccountTradeNonce
1207
+ * @package injective.exchange.v1beta1
1208
+ * @see proto type: injective.exchange.v1beta1.SubaccountTradeNonce
1209
+ */
897
1210
  export interface SubaccountTradeNonce {
898
1211
  nonce: number;
899
1212
  }
@@ -901,6 +1214,11 @@ export interface SubaccountTradeNonceProtoMsg {
901
1214
  typeUrl: "/injective.exchange.v1beta1.SubaccountTradeNonce";
902
1215
  value: Uint8Array;
903
1216
  }
1217
+ /**
1218
+ * @name SubaccountTradeNonceAmino
1219
+ * @package injective.exchange.v1beta1
1220
+ * @see proto type: injective.exchange.v1beta1.SubaccountTradeNonce
1221
+ */
904
1222
  export interface SubaccountTradeNonceAmino {
905
1223
  nonce: number;
906
1224
  }
@@ -908,14 +1226,27 @@ export interface SubaccountTradeNonceAminoMsg {
908
1226
  type: "/injective.exchange.v1beta1.SubaccountTradeNonce";
909
1227
  value: SubaccountTradeNonceAmino;
910
1228
  }
1229
+ /**
1230
+ * @name OrderInfo
1231
+ * @package injective.exchange.v1beta1
1232
+ * @see proto type: injective.exchange.v1beta1.OrderInfo
1233
+ */
911
1234
  export interface OrderInfo {
912
- /** bytes32 subaccount ID that created the order */
1235
+ /**
1236
+ * bytes32 subaccount ID that created the order
1237
+ */
913
1238
  subaccountId: string;
914
- /** address fee_recipient address that will receive fees for the order */
1239
+ /**
1240
+ * address fee_recipient address that will receive fees for the order
1241
+ */
915
1242
  feeRecipient: string;
916
- /** price of the order */
1243
+ /**
1244
+ * price of the order
1245
+ */
917
1246
  price: string;
918
- /** quantity of the order */
1247
+ /**
1248
+ * quantity of the order
1249
+ */
919
1250
  quantity: string;
920
1251
  cid: string;
921
1252
  }
@@ -923,14 +1254,27 @@ export interface OrderInfoProtoMsg {
923
1254
  typeUrl: "/injective.exchange.v1beta1.OrderInfo";
924
1255
  value: Uint8Array;
925
1256
  }
1257
+ /**
1258
+ * @name OrderInfoAmino
1259
+ * @package injective.exchange.v1beta1
1260
+ * @see proto type: injective.exchange.v1beta1.OrderInfo
1261
+ */
926
1262
  export interface OrderInfoAmino {
927
- /** bytes32 subaccount ID that created the order */
1263
+ /**
1264
+ * bytes32 subaccount ID that created the order
1265
+ */
928
1266
  subaccount_id: string;
929
- /** address fee_recipient address that will receive fees for the order */
1267
+ /**
1268
+ * address fee_recipient address that will receive fees for the order
1269
+ */
930
1270
  fee_recipient: string;
931
- /** price of the order */
1271
+ /**
1272
+ * price of the order
1273
+ */
932
1274
  price: string;
933
- /** quantity of the order */
1275
+ /**
1276
+ * quantity of the order
1277
+ */
934
1278
  quantity: string;
935
1279
  cid: string;
936
1280
  }
@@ -938,43 +1282,82 @@ export interface OrderInfoAminoMsg {
938
1282
  type: "/injective.exchange.v1beta1.OrderInfo";
939
1283
  value: OrderInfoAmino;
940
1284
  }
1285
+ /**
1286
+ * @name SpotOrder
1287
+ * @package injective.exchange.v1beta1
1288
+ * @see proto type: injective.exchange.v1beta1.SpotOrder
1289
+ */
941
1290
  export interface SpotOrder {
942
- /** market_id represents the unique ID of the market */
1291
+ /**
1292
+ * market_id represents the unique ID of the market
1293
+ */
943
1294
  marketId: string;
944
- /** order_info contains the information of the order */
1295
+ /**
1296
+ * order_info contains the information of the order
1297
+ */
945
1298
  orderInfo: OrderInfo;
946
- /** order types */
1299
+ /**
1300
+ * order types
1301
+ */
947
1302
  orderType: OrderType;
948
- /** trigger_price is the trigger price used by stop/take orders */
1303
+ /**
1304
+ * trigger_price is the trigger price used by stop/take orders
1305
+ */
949
1306
  triggerPrice?: string;
950
1307
  }
951
1308
  export interface SpotOrderProtoMsg {
952
1309
  typeUrl: "/injective.exchange.v1beta1.SpotOrder";
953
1310
  value: Uint8Array;
954
1311
  }
1312
+ /**
1313
+ * @name SpotOrderAmino
1314
+ * @package injective.exchange.v1beta1
1315
+ * @see proto type: injective.exchange.v1beta1.SpotOrder
1316
+ */
955
1317
  export interface SpotOrderAmino {
956
- /** market_id represents the unique ID of the market */
1318
+ /**
1319
+ * market_id represents the unique ID of the market
1320
+ */
957
1321
  market_id: string;
958
- /** order_info contains the information of the order */
1322
+ /**
1323
+ * order_info contains the information of the order
1324
+ */
959
1325
  order_info: OrderInfoAmino;
960
- /** order types */
1326
+ /**
1327
+ * order types
1328
+ */
961
1329
  order_type: OrderType;
962
- /** trigger_price is the trigger price used by stop/take orders */
1330
+ /**
1331
+ * trigger_price is the trigger price used by stop/take orders
1332
+ */
963
1333
  trigger_price?: string;
964
1334
  }
965
1335
  export interface SpotOrderAminoMsg {
966
1336
  type: "/injective.exchange.v1beta1.SpotOrder";
967
1337
  value: SpotOrderAmino;
968
1338
  }
969
- /** A valid Spot limit order with Metadata. */
1339
+ /**
1340
+ * A valid Spot limit order with Metadata.
1341
+ * @name SpotLimitOrder
1342
+ * @package injective.exchange.v1beta1
1343
+ * @see proto type: injective.exchange.v1beta1.SpotLimitOrder
1344
+ */
970
1345
  export interface SpotLimitOrder {
971
- /** order_info contains the information of the order */
1346
+ /**
1347
+ * order_info contains the information of the order
1348
+ */
972
1349
  orderInfo: OrderInfo;
973
- /** order types */
1350
+ /**
1351
+ * order types
1352
+ */
974
1353
  orderType: OrderType;
975
- /** the amount of the quantity remaining fillable */
1354
+ /**
1355
+ * the amount of the quantity remaining fillable
1356
+ */
976
1357
  fillable: string;
977
- /** trigger_price is the trigger price used by stop/take orders */
1358
+ /**
1359
+ * trigger_price is the trigger price used by stop/take orders
1360
+ */
978
1361
  triggerPrice?: string;
979
1362
  orderHash: Uint8Array;
980
1363
  }
@@ -982,15 +1365,28 @@ export interface SpotLimitOrderProtoMsg {
982
1365
  typeUrl: "/injective.exchange.v1beta1.SpotLimitOrder";
983
1366
  value: Uint8Array;
984
1367
  }
985
- /** A valid Spot limit order with Metadata. */
1368
+ /**
1369
+ * A valid Spot limit order with Metadata.
1370
+ * @name SpotLimitOrderAmino
1371
+ * @package injective.exchange.v1beta1
1372
+ * @see proto type: injective.exchange.v1beta1.SpotLimitOrder
1373
+ */
986
1374
  export interface SpotLimitOrderAmino {
987
- /** order_info contains the information of the order */
1375
+ /**
1376
+ * order_info contains the information of the order
1377
+ */
988
1378
  order_info: OrderInfoAmino;
989
- /** order types */
1379
+ /**
1380
+ * order types
1381
+ */
990
1382
  order_type: OrderType;
991
- /** the amount of the quantity remaining fillable */
1383
+ /**
1384
+ * the amount of the quantity remaining fillable
1385
+ */
992
1386
  fillable: string;
993
- /** trigger_price is the trigger price used by stop/take orders */
1387
+ /**
1388
+ * trigger_price is the trigger price used by stop/take orders
1389
+ */
994
1390
  trigger_price?: string;
995
1391
  order_hash: string;
996
1392
  }
@@ -998,68 +1394,125 @@ export interface SpotLimitOrderAminoMsg {
998
1394
  type: "/injective.exchange.v1beta1.SpotLimitOrder";
999
1395
  value: SpotLimitOrderAmino;
1000
1396
  }
1001
- /** A valid Spot market order with Metadata. */
1397
+ /**
1398
+ * A valid Spot market order with Metadata.
1399
+ * @name SpotMarketOrder
1400
+ * @package injective.exchange.v1beta1
1401
+ * @see proto type: injective.exchange.v1beta1.SpotMarketOrder
1402
+ */
1002
1403
  export interface SpotMarketOrder {
1003
- /** order_info contains the information of the order */
1404
+ /**
1405
+ * order_info contains the information of the order
1406
+ */
1004
1407
  orderInfo: OrderInfo;
1005
1408
  balanceHold: string;
1006
1409
  orderHash: Uint8Array;
1007
- /** order types */
1410
+ /**
1411
+ * order types
1412
+ */
1008
1413
  orderType: OrderType;
1009
- /** trigger_price is the trigger price used by stop/take orders */
1414
+ /**
1415
+ * trigger_price is the trigger price used by stop/take orders
1416
+ */
1010
1417
  triggerPrice?: string;
1011
1418
  }
1012
1419
  export interface SpotMarketOrderProtoMsg {
1013
1420
  typeUrl: "/injective.exchange.v1beta1.SpotMarketOrder";
1014
1421
  value: Uint8Array;
1015
1422
  }
1016
- /** A valid Spot market order with Metadata. */
1423
+ /**
1424
+ * A valid Spot market order with Metadata.
1425
+ * @name SpotMarketOrderAmino
1426
+ * @package injective.exchange.v1beta1
1427
+ * @see proto type: injective.exchange.v1beta1.SpotMarketOrder
1428
+ */
1017
1429
  export interface SpotMarketOrderAmino {
1018
- /** order_info contains the information of the order */
1430
+ /**
1431
+ * order_info contains the information of the order
1432
+ */
1019
1433
  order_info: OrderInfoAmino;
1020
1434
  balance_hold: string;
1021
1435
  order_hash: string;
1022
- /** order types */
1436
+ /**
1437
+ * order types
1438
+ */
1023
1439
  order_type: OrderType;
1024
- /** trigger_price is the trigger price used by stop/take orders */
1440
+ /**
1441
+ * trigger_price is the trigger price used by stop/take orders
1442
+ */
1025
1443
  trigger_price?: string;
1026
1444
  }
1027
1445
  export interface SpotMarketOrderAminoMsg {
1028
1446
  type: "/injective.exchange.v1beta1.SpotMarketOrder";
1029
1447
  value: SpotMarketOrderAmino;
1030
1448
  }
1449
+ /**
1450
+ * @name DerivativeOrder
1451
+ * @package injective.exchange.v1beta1
1452
+ * @see proto type: injective.exchange.v1beta1.DerivativeOrder
1453
+ */
1031
1454
  export interface DerivativeOrder {
1032
- /** market_id represents the unique ID of the market */
1455
+ /**
1456
+ * market_id represents the unique ID of the market
1457
+ */
1033
1458
  marketId: string;
1034
- /** order_info contains the information of the order */
1459
+ /**
1460
+ * order_info contains the information of the order
1461
+ */
1035
1462
  orderInfo: OrderInfo;
1036
- /** order types */
1463
+ /**
1464
+ * order types
1465
+ */
1037
1466
  orderType: OrderType;
1038
- /** margin is the margin used by the limit order */
1467
+ /**
1468
+ * margin is the margin used by the limit order
1469
+ */
1039
1470
  margin: string;
1040
- /** trigger_price is the trigger price used by stop/take orders */
1471
+ /**
1472
+ * trigger_price is the trigger price used by stop/take orders
1473
+ */
1041
1474
  triggerPrice?: string;
1042
1475
  }
1043
1476
  export interface DerivativeOrderProtoMsg {
1044
1477
  typeUrl: "/injective.exchange.v1beta1.DerivativeOrder";
1045
1478
  value: Uint8Array;
1046
1479
  }
1480
+ /**
1481
+ * @name DerivativeOrderAmino
1482
+ * @package injective.exchange.v1beta1
1483
+ * @see proto type: injective.exchange.v1beta1.DerivativeOrder
1484
+ */
1047
1485
  export interface DerivativeOrderAmino {
1048
- /** market_id represents the unique ID of the market */
1486
+ /**
1487
+ * market_id represents the unique ID of the market
1488
+ */
1049
1489
  market_id: string;
1050
- /** order_info contains the information of the order */
1490
+ /**
1491
+ * order_info contains the information of the order
1492
+ */
1051
1493
  order_info: OrderInfoAmino;
1052
- /** order types */
1494
+ /**
1495
+ * order types
1496
+ */
1053
1497
  order_type: OrderType;
1054
- /** margin is the margin used by the limit order */
1498
+ /**
1499
+ * margin is the margin used by the limit order
1500
+ */
1055
1501
  margin: string;
1056
- /** trigger_price is the trigger price used by stop/take orders */
1502
+ /**
1503
+ * trigger_price is the trigger price used by stop/take orders
1504
+ */
1057
1505
  trigger_price?: string;
1058
1506
  }
1059
1507
  export interface DerivativeOrderAminoMsg {
1060
1508
  type: "/injective.exchange.v1beta1.DerivativeOrder";
1061
1509
  value: DerivativeOrderAmino;
1062
1510
  }
1511
+ /**
1512
+ * @name SubaccountOrderbookMetadata
1513
+ * @package injective.exchange.v1beta1
1514
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderbookMetadata
1515
+ */
1063
1516
  export interface SubaccountOrderbookMetadata {
1064
1517
  vanillaLimitOrderCount: number;
1065
1518
  reduceOnlyLimitOrderCount: number;
@@ -1080,6 +1533,11 @@ export interface SubaccountOrderbookMetadataProtoMsg {
1080
1533
  typeUrl: "/injective.exchange.v1beta1.SubaccountOrderbookMetadata";
1081
1534
  value: Uint8Array;
1082
1535
  }
1536
+ /**
1537
+ * @name SubaccountOrderbookMetadataAmino
1538
+ * @package injective.exchange.v1beta1
1539
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderbookMetadata
1540
+ */
1083
1541
  export interface SubaccountOrderbookMetadataAmino {
1084
1542
  vanilla_limit_order_count: number;
1085
1543
  reduce_only_limit_order_count: number;
@@ -1100,10 +1558,19 @@ export interface SubaccountOrderbookMetadataAminoMsg {
1100
1558
  type: "/injective.exchange.v1beta1.SubaccountOrderbookMetadata";
1101
1559
  value: SubaccountOrderbookMetadataAmino;
1102
1560
  }
1561
+ /**
1562
+ * @name SubaccountOrder
1563
+ * @package injective.exchange.v1beta1
1564
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrder
1565
+ */
1103
1566
  export interface SubaccountOrder {
1104
- /** price of the order */
1567
+ /**
1568
+ * price of the order
1569
+ */
1105
1570
  price: string;
1106
- /** the amount of the quantity remaining fillable */
1571
+ /**
1572
+ * the amount of the quantity remaining fillable
1573
+ */
1107
1574
  quantity: string;
1108
1575
  isReduceOnly: boolean;
1109
1576
  cid: string;
@@ -1112,10 +1579,19 @@ export interface SubaccountOrderProtoMsg {
1112
1579
  typeUrl: "/injective.exchange.v1beta1.SubaccountOrder";
1113
1580
  value: Uint8Array;
1114
1581
  }
1582
+ /**
1583
+ * @name SubaccountOrderAmino
1584
+ * @package injective.exchange.v1beta1
1585
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrder
1586
+ */
1115
1587
  export interface SubaccountOrderAmino {
1116
- /** price of the order */
1588
+ /**
1589
+ * price of the order
1590
+ */
1117
1591
  price: string;
1118
- /** the amount of the quantity remaining fillable */
1592
+ /**
1593
+ * the amount of the quantity remaining fillable
1594
+ */
1119
1595
  quantity: string;
1120
1596
  isReduceOnly: boolean;
1121
1597
  cid: string;
@@ -1124,6 +1600,11 @@ export interface SubaccountOrderAminoMsg {
1124
1600
  type: "/injective.exchange.v1beta1.SubaccountOrder";
1125
1601
  value: SubaccountOrderAmino;
1126
1602
  }
1603
+ /**
1604
+ * @name SubaccountOrderData
1605
+ * @package injective.exchange.v1beta1
1606
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderData
1607
+ */
1127
1608
  export interface SubaccountOrderData {
1128
1609
  order?: SubaccountOrder;
1129
1610
  orderHash: Uint8Array;
@@ -1132,6 +1613,11 @@ export interface SubaccountOrderDataProtoMsg {
1132
1613
  typeUrl: "/injective.exchange.v1beta1.SubaccountOrderData";
1133
1614
  value: Uint8Array;
1134
1615
  }
1616
+ /**
1617
+ * @name SubaccountOrderDataAmino
1618
+ * @package injective.exchange.v1beta1
1619
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderData
1620
+ */
1135
1621
  export interface SubaccountOrderDataAmino {
1136
1622
  order?: SubaccountOrderAmino;
1137
1623
  order_hash: string;
@@ -1140,17 +1626,32 @@ export interface SubaccountOrderDataAminoMsg {
1140
1626
  type: "/injective.exchange.v1beta1.SubaccountOrderData";
1141
1627
  value: SubaccountOrderDataAmino;
1142
1628
  }
1143
- /** A valid Derivative limit order with Metadata. */
1629
+ /**
1630
+ * A valid Derivative limit order with Metadata.
1631
+ * @name DerivativeLimitOrder
1632
+ * @package injective.exchange.v1beta1
1633
+ * @see proto type: injective.exchange.v1beta1.DerivativeLimitOrder
1634
+ */
1144
1635
  export interface DerivativeLimitOrder {
1145
- /** order_info contains the information of the order */
1636
+ /**
1637
+ * order_info contains the information of the order
1638
+ */
1146
1639
  orderInfo: OrderInfo;
1147
- /** order types */
1640
+ /**
1641
+ * order types
1642
+ */
1148
1643
  orderType: OrderType;
1149
- /** margin is the margin used by the limit order */
1644
+ /**
1645
+ * margin is the margin used by the limit order
1646
+ */
1150
1647
  margin: string;
1151
- /** the amount of the quantity remaining fillable */
1648
+ /**
1649
+ * the amount of the quantity remaining fillable
1650
+ */
1152
1651
  fillable: string;
1153
- /** trigger_price is the trigger price used by stop/take orders */
1652
+ /**
1653
+ * trigger_price is the trigger price used by stop/take orders
1654
+ */
1154
1655
  triggerPrice?: string;
1155
1656
  orderHash: Uint8Array;
1156
1657
  }
@@ -1158,17 +1659,32 @@ export interface DerivativeLimitOrderProtoMsg {
1158
1659
  typeUrl: "/injective.exchange.v1beta1.DerivativeLimitOrder";
1159
1660
  value: Uint8Array;
1160
1661
  }
1161
- /** A valid Derivative limit order with Metadata. */
1662
+ /**
1663
+ * A valid Derivative limit order with Metadata.
1664
+ * @name DerivativeLimitOrderAmino
1665
+ * @package injective.exchange.v1beta1
1666
+ * @see proto type: injective.exchange.v1beta1.DerivativeLimitOrder
1667
+ */
1162
1668
  export interface DerivativeLimitOrderAmino {
1163
- /** order_info contains the information of the order */
1669
+ /**
1670
+ * order_info contains the information of the order
1671
+ */
1164
1672
  order_info: OrderInfoAmino;
1165
- /** order types */
1673
+ /**
1674
+ * order types
1675
+ */
1166
1676
  order_type: OrderType;
1167
- /** margin is the margin used by the limit order */
1677
+ /**
1678
+ * margin is the margin used by the limit order
1679
+ */
1168
1680
  margin: string;
1169
- /** the amount of the quantity remaining fillable */
1681
+ /**
1682
+ * the amount of the quantity remaining fillable
1683
+ */
1170
1684
  fillable: string;
1171
- /** trigger_price is the trigger price used by stop/take orders */
1685
+ /**
1686
+ * trigger_price is the trigger price used by stop/take orders
1687
+ */
1172
1688
  trigger_price?: string;
1173
1689
  order_hash: string;
1174
1690
  }
@@ -1176,15 +1692,26 @@ export interface DerivativeLimitOrderAminoMsg {
1176
1692
  type: "/injective.exchange.v1beta1.DerivativeLimitOrder";
1177
1693
  value: DerivativeLimitOrderAmino;
1178
1694
  }
1179
- /** A valid Derivative market order with Metadata. */
1695
+ /**
1696
+ * A valid Derivative market order with Metadata.
1697
+ * @name DerivativeMarketOrder
1698
+ * @package injective.exchange.v1beta1
1699
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketOrder
1700
+ */
1180
1701
  export interface DerivativeMarketOrder {
1181
- /** order_info contains the information of the order */
1702
+ /**
1703
+ * order_info contains the information of the order
1704
+ */
1182
1705
  orderInfo: OrderInfo;
1183
- /** order types */
1706
+ /**
1707
+ * order types
1708
+ */
1184
1709
  orderType: OrderType;
1185
1710
  margin: string;
1186
1711
  marginHold: string;
1187
- /** trigger_price is the trigger price used by stop/take orders */
1712
+ /**
1713
+ * trigger_price is the trigger price used by stop/take orders
1714
+ */
1188
1715
  triggerPrice?: string;
1189
1716
  orderHash: Uint8Array;
1190
1717
  }
@@ -1192,15 +1719,26 @@ export interface DerivativeMarketOrderProtoMsg {
1192
1719
  typeUrl: "/injective.exchange.v1beta1.DerivativeMarketOrder";
1193
1720
  value: Uint8Array;
1194
1721
  }
1195
- /** A valid Derivative market order with Metadata. */
1722
+ /**
1723
+ * A valid Derivative market order with Metadata.
1724
+ * @name DerivativeMarketOrderAmino
1725
+ * @package injective.exchange.v1beta1
1726
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketOrder
1727
+ */
1196
1728
  export interface DerivativeMarketOrderAmino {
1197
- /** order_info contains the information of the order */
1729
+ /**
1730
+ * order_info contains the information of the order
1731
+ */
1198
1732
  order_info: OrderInfoAmino;
1199
- /** order types */
1733
+ /**
1734
+ * order types
1735
+ */
1200
1736
  order_type: OrderType;
1201
1737
  margin: string;
1202
1738
  margin_hold: string;
1203
- /** trigger_price is the trigger price used by stop/take orders */
1739
+ /**
1740
+ * trigger_price is the trigger price used by stop/take orders
1741
+ */
1204
1742
  trigger_price?: string;
1205
1743
  order_hash: string;
1206
1744
  }
@@ -1208,6 +1746,11 @@ export interface DerivativeMarketOrderAminoMsg {
1208
1746
  type: "/injective.exchange.v1beta1.DerivativeMarketOrder";
1209
1747
  value: DerivativeMarketOrderAmino;
1210
1748
  }
1749
+ /**
1750
+ * @name Position
1751
+ * @package injective.exchange.v1beta1
1752
+ * @see proto type: injective.exchange.v1beta1.Position
1753
+ */
1211
1754
  export interface Position {
1212
1755
  isLong: boolean;
1213
1756
  quantity: string;
@@ -1219,6 +1762,11 @@ export interface PositionProtoMsg {
1219
1762
  typeUrl: "/injective.exchange.v1beta1.Position";
1220
1763
  value: Uint8Array;
1221
1764
  }
1765
+ /**
1766
+ * @name PositionAmino
1767
+ * @package injective.exchange.v1beta1
1768
+ * @see proto type: injective.exchange.v1beta1.Position
1769
+ */
1222
1770
  export interface PositionAmino {
1223
1771
  isLong: boolean;
1224
1772
  quantity: string;
@@ -1230,8 +1778,15 @@ export interface PositionAminoMsg {
1230
1778
  type: "/injective.exchange.v1beta1.Position";
1231
1779
  value: PositionAmino;
1232
1780
  }
1781
+ /**
1782
+ * @name MarketOrderIndicator
1783
+ * @package injective.exchange.v1beta1
1784
+ * @see proto type: injective.exchange.v1beta1.MarketOrderIndicator
1785
+ */
1233
1786
  export interface MarketOrderIndicator {
1234
- /** market_id represents the unique ID of the market */
1787
+ /**
1788
+ * market_id represents the unique ID of the market
1789
+ */
1235
1790
  marketId: string;
1236
1791
  isBuy: boolean;
1237
1792
  }
@@ -1239,8 +1794,15 @@ export interface MarketOrderIndicatorProtoMsg {
1239
1794
  typeUrl: "/injective.exchange.v1beta1.MarketOrderIndicator";
1240
1795
  value: Uint8Array;
1241
1796
  }
1797
+ /**
1798
+ * @name MarketOrderIndicatorAmino
1799
+ * @package injective.exchange.v1beta1
1800
+ * @see proto type: injective.exchange.v1beta1.MarketOrderIndicator
1801
+ */
1242
1802
  export interface MarketOrderIndicatorAmino {
1243
- /** market_id represents the unique ID of the market */
1803
+ /**
1804
+ * market_id represents the unique ID of the market
1805
+ */
1244
1806
  market_id: string;
1245
1807
  isBuy: boolean;
1246
1808
  }
@@ -1248,10 +1810,17 @@ export interface MarketOrderIndicatorAminoMsg {
1248
1810
  type: "/injective.exchange.v1beta1.MarketOrderIndicator";
1249
1811
  value: MarketOrderIndicatorAmino;
1250
1812
  }
1813
+ /**
1814
+ * @name TradeLog
1815
+ * @package injective.exchange.v1beta1
1816
+ * @see proto type: injective.exchange.v1beta1.TradeLog
1817
+ */
1251
1818
  export interface TradeLog {
1252
1819
  quantity: string;
1253
1820
  price: string;
1254
- /** bytes32 subaccount ID that executed the trade */
1821
+ /**
1822
+ * bytes32 subaccount ID that executed the trade
1823
+ */
1255
1824
  subaccountId: Uint8Array;
1256
1825
  fee: string;
1257
1826
  orderHash: Uint8Array;
@@ -1262,10 +1831,17 @@ export interface TradeLogProtoMsg {
1262
1831
  typeUrl: "/injective.exchange.v1beta1.TradeLog";
1263
1832
  value: Uint8Array;
1264
1833
  }
1834
+ /**
1835
+ * @name TradeLogAmino
1836
+ * @package injective.exchange.v1beta1
1837
+ * @see proto type: injective.exchange.v1beta1.TradeLog
1838
+ */
1265
1839
  export interface TradeLogAmino {
1266
1840
  quantity: string;
1267
1841
  price: string;
1268
- /** bytes32 subaccount ID that executed the trade */
1842
+ /**
1843
+ * bytes32 subaccount ID that executed the trade
1844
+ */
1269
1845
  subaccount_id: string;
1270
1846
  fee: string;
1271
1847
  order_hash: string;
@@ -1276,6 +1852,11 @@ export interface TradeLogAminoMsg {
1276
1852
  type: "/injective.exchange.v1beta1.TradeLog";
1277
1853
  value: TradeLogAmino;
1278
1854
  }
1855
+ /**
1856
+ * @name PositionDelta
1857
+ * @package injective.exchange.v1beta1
1858
+ * @see proto type: injective.exchange.v1beta1.PositionDelta
1859
+ */
1279
1860
  export interface PositionDelta {
1280
1861
  isLong: boolean;
1281
1862
  executionQuantity: string;
@@ -1286,6 +1867,11 @@ export interface PositionDeltaProtoMsg {
1286
1867
  typeUrl: "/injective.exchange.v1beta1.PositionDelta";
1287
1868
  value: Uint8Array;
1288
1869
  }
1870
+ /**
1871
+ * @name PositionDeltaAmino
1872
+ * @package injective.exchange.v1beta1
1873
+ * @see proto type: injective.exchange.v1beta1.PositionDelta
1874
+ */
1289
1875
  export interface PositionDeltaAmino {
1290
1876
  is_long: boolean;
1291
1877
  execution_quantity: string;
@@ -1296,6 +1882,11 @@ export interface PositionDeltaAminoMsg {
1296
1882
  type: "/injective.exchange.v1beta1.PositionDelta";
1297
1883
  value: PositionDeltaAmino;
1298
1884
  }
1885
+ /**
1886
+ * @name DerivativeTradeLog
1887
+ * @package injective.exchange.v1beta1
1888
+ * @see proto type: injective.exchange.v1beta1.DerivativeTradeLog
1889
+ */
1299
1890
  export interface DerivativeTradeLog {
1300
1891
  subaccountId: Uint8Array;
1301
1892
  positionDelta?: PositionDelta;
@@ -1310,6 +1901,11 @@ export interface DerivativeTradeLogProtoMsg {
1310
1901
  typeUrl: "/injective.exchange.v1beta1.DerivativeTradeLog";
1311
1902
  value: Uint8Array;
1312
1903
  }
1904
+ /**
1905
+ * @name DerivativeTradeLogAmino
1906
+ * @package injective.exchange.v1beta1
1907
+ * @see proto type: injective.exchange.v1beta1.DerivativeTradeLog
1908
+ */
1313
1909
  export interface DerivativeTradeLogAmino {
1314
1910
  subaccount_id: string;
1315
1911
  position_delta?: PositionDeltaAmino;
@@ -1324,6 +1920,11 @@ export interface DerivativeTradeLogAminoMsg {
1324
1920
  type: "/injective.exchange.v1beta1.DerivativeTradeLog";
1325
1921
  value: DerivativeTradeLogAmino;
1326
1922
  }
1923
+ /**
1924
+ * @name SubaccountPosition
1925
+ * @package injective.exchange.v1beta1
1926
+ * @see proto type: injective.exchange.v1beta1.SubaccountPosition
1927
+ */
1327
1928
  export interface SubaccountPosition {
1328
1929
  position?: Position;
1329
1930
  subaccountId: Uint8Array;
@@ -1332,6 +1933,11 @@ export interface SubaccountPositionProtoMsg {
1332
1933
  typeUrl: "/injective.exchange.v1beta1.SubaccountPosition";
1333
1934
  value: Uint8Array;
1334
1935
  }
1936
+ /**
1937
+ * @name SubaccountPositionAmino
1938
+ * @package injective.exchange.v1beta1
1939
+ * @see proto type: injective.exchange.v1beta1.SubaccountPosition
1940
+ */
1335
1941
  export interface SubaccountPositionAmino {
1336
1942
  position?: PositionAmino;
1337
1943
  subaccount_id: string;
@@ -1340,6 +1946,11 @@ export interface SubaccountPositionAminoMsg {
1340
1946
  type: "/injective.exchange.v1beta1.SubaccountPosition";
1341
1947
  value: SubaccountPositionAmino;
1342
1948
  }
1949
+ /**
1950
+ * @name SubaccountDeposit
1951
+ * @package injective.exchange.v1beta1
1952
+ * @see proto type: injective.exchange.v1beta1.SubaccountDeposit
1953
+ */
1343
1954
  export interface SubaccountDeposit {
1344
1955
  subaccountId: Uint8Array;
1345
1956
  deposit?: Deposit;
@@ -1348,6 +1959,11 @@ export interface SubaccountDepositProtoMsg {
1348
1959
  typeUrl: "/injective.exchange.v1beta1.SubaccountDeposit";
1349
1960
  value: Uint8Array;
1350
1961
  }
1962
+ /**
1963
+ * @name SubaccountDepositAmino
1964
+ * @package injective.exchange.v1beta1
1965
+ * @see proto type: injective.exchange.v1beta1.SubaccountDeposit
1966
+ */
1351
1967
  export interface SubaccountDepositAmino {
1352
1968
  subaccount_id: string;
1353
1969
  deposit?: DepositAmino;
@@ -1356,6 +1972,11 @@ export interface SubaccountDepositAminoMsg {
1356
1972
  type: "/injective.exchange.v1beta1.SubaccountDeposit";
1357
1973
  value: SubaccountDepositAmino;
1358
1974
  }
1975
+ /**
1976
+ * @name DepositUpdate
1977
+ * @package injective.exchange.v1beta1
1978
+ * @see proto type: injective.exchange.v1beta1.DepositUpdate
1979
+ */
1359
1980
  export interface DepositUpdate {
1360
1981
  denom: string;
1361
1982
  deposits: SubaccountDeposit[];
@@ -1364,6 +1985,11 @@ export interface DepositUpdateProtoMsg {
1364
1985
  typeUrl: "/injective.exchange.v1beta1.DepositUpdate";
1365
1986
  value: Uint8Array;
1366
1987
  }
1988
+ /**
1989
+ * @name DepositUpdateAmino
1990
+ * @package injective.exchange.v1beta1
1991
+ * @see proto type: injective.exchange.v1beta1.DepositUpdate
1992
+ */
1367
1993
  export interface DepositUpdateAmino {
1368
1994
  denom: string;
1369
1995
  deposits: SubaccountDepositAmino[];
@@ -1372,6 +1998,11 @@ export interface DepositUpdateAminoMsg {
1372
1998
  type: "/injective.exchange.v1beta1.DepositUpdate";
1373
1999
  value: DepositUpdateAmino;
1374
2000
  }
2001
+ /**
2002
+ * @name PointsMultiplier
2003
+ * @package injective.exchange.v1beta1
2004
+ * @see proto type: injective.exchange.v1beta1.PointsMultiplier
2005
+ */
1375
2006
  export interface PointsMultiplier {
1376
2007
  makerPointsMultiplier: string;
1377
2008
  takerPointsMultiplier: string;
@@ -1380,6 +2011,11 @@ export interface PointsMultiplierProtoMsg {
1380
2011
  typeUrl: "/injective.exchange.v1beta1.PointsMultiplier";
1381
2012
  value: Uint8Array;
1382
2013
  }
2014
+ /**
2015
+ * @name PointsMultiplierAmino
2016
+ * @package injective.exchange.v1beta1
2017
+ * @see proto type: injective.exchange.v1beta1.PointsMultiplier
2018
+ */
1383
2019
  export interface PointsMultiplierAmino {
1384
2020
  maker_points_multiplier: string;
1385
2021
  taker_points_multiplier: string;
@@ -1388,6 +2024,11 @@ export interface PointsMultiplierAminoMsg {
1388
2024
  type: "/injective.exchange.v1beta1.PointsMultiplier";
1389
2025
  value: PointsMultiplierAmino;
1390
2026
  }
2027
+ /**
2028
+ * @name TradingRewardCampaignBoostInfo
2029
+ * @package injective.exchange.v1beta1
2030
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignBoostInfo
2031
+ */
1391
2032
  export interface TradingRewardCampaignBoostInfo {
1392
2033
  boostedSpotMarketIds: string[];
1393
2034
  spotMarketMultipliers: PointsMultiplier[];
@@ -1398,6 +2039,11 @@ export interface TradingRewardCampaignBoostInfoProtoMsg {
1398
2039
  typeUrl: "/injective.exchange.v1beta1.TradingRewardCampaignBoostInfo";
1399
2040
  value: Uint8Array;
1400
2041
  }
2042
+ /**
2043
+ * @name TradingRewardCampaignBoostInfoAmino
2044
+ * @package injective.exchange.v1beta1
2045
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignBoostInfo
2046
+ */
1401
2047
  export interface TradingRewardCampaignBoostInfoAmino {
1402
2048
  boosted_spot_market_ids: string[];
1403
2049
  spot_market_multipliers: PointsMultiplierAmino[];
@@ -1408,6 +2054,11 @@ export interface TradingRewardCampaignBoostInfoAminoMsg {
1408
2054
  type: "/injective.exchange.v1beta1.TradingRewardCampaignBoostInfo";
1409
2055
  value: TradingRewardCampaignBoostInfoAmino;
1410
2056
  }
2057
+ /**
2058
+ * @name CampaignRewardPool
2059
+ * @package injective.exchange.v1beta1
2060
+ * @see proto type: injective.exchange.v1beta1.CampaignRewardPool
2061
+ */
1411
2062
  export interface CampaignRewardPool {
1412
2063
  startTimestamp: bigint;
1413
2064
  /**
@@ -1420,6 +2071,11 @@ export interface CampaignRewardPoolProtoMsg {
1420
2071
  typeUrl: "/injective.exchange.v1beta1.CampaignRewardPool";
1421
2072
  value: Uint8Array;
1422
2073
  }
2074
+ /**
2075
+ * @name CampaignRewardPoolAmino
2076
+ * @package injective.exchange.v1beta1
2077
+ * @see proto type: injective.exchange.v1beta1.CampaignRewardPool
2078
+ */
1423
2079
  export interface CampaignRewardPoolAmino {
1424
2080
  start_timestamp: string;
1425
2081
  /**
@@ -1432,34 +2088,65 @@ export interface CampaignRewardPoolAminoMsg {
1432
2088
  type: "/injective.exchange.v1beta1.CampaignRewardPool";
1433
2089
  value: CampaignRewardPoolAmino;
1434
2090
  }
2091
+ /**
2092
+ * @name TradingRewardCampaignInfo
2093
+ * @package injective.exchange.v1beta1
2094
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignInfo
2095
+ */
1435
2096
  export interface TradingRewardCampaignInfo {
1436
- /** number of seconds of the duration of each campaign */
2097
+ /**
2098
+ * number of seconds of the duration of each campaign
2099
+ */
1437
2100
  campaignDurationSeconds: bigint;
1438
- /** the trading fee quote denoms which will be counted for the rewards */
2101
+ /**
2102
+ * the trading fee quote denoms which will be counted for the rewards
2103
+ */
1439
2104
  quoteDenoms: string[];
1440
- /** the optional boost info for markets */
2105
+ /**
2106
+ * the optional boost info for markets
2107
+ */
1441
2108
  tradingRewardBoostInfo?: TradingRewardCampaignBoostInfo;
1442
- /** the marketIDs which are disqualified from being rewarded */
2109
+ /**
2110
+ * the marketIDs which are disqualified from being rewarded
2111
+ */
1443
2112
  disqualifiedMarketIds: string[];
1444
2113
  }
1445
2114
  export interface TradingRewardCampaignInfoProtoMsg {
1446
2115
  typeUrl: "/injective.exchange.v1beta1.TradingRewardCampaignInfo";
1447
2116
  value: Uint8Array;
1448
2117
  }
2118
+ /**
2119
+ * @name TradingRewardCampaignInfoAmino
2120
+ * @package injective.exchange.v1beta1
2121
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignInfo
2122
+ */
1449
2123
  export interface TradingRewardCampaignInfoAmino {
1450
- /** number of seconds of the duration of each campaign */
2124
+ /**
2125
+ * number of seconds of the duration of each campaign
2126
+ */
1451
2127
  campaign_duration_seconds: string;
1452
- /** the trading fee quote denoms which will be counted for the rewards */
2128
+ /**
2129
+ * the trading fee quote denoms which will be counted for the rewards
2130
+ */
1453
2131
  quote_denoms: string[];
1454
- /** the optional boost info for markets */
2132
+ /**
2133
+ * the optional boost info for markets
2134
+ */
1455
2135
  trading_reward_boost_info?: TradingRewardCampaignBoostInfoAmino;
1456
- /** the marketIDs which are disqualified from being rewarded */
2136
+ /**
2137
+ * the marketIDs which are disqualified from being rewarded
2138
+ */
1457
2139
  disqualified_market_ids: string[];
1458
2140
  }
1459
2141
  export interface TradingRewardCampaignInfoAminoMsg {
1460
2142
  type: "/injective.exchange.v1beta1.TradingRewardCampaignInfo";
1461
2143
  value: TradingRewardCampaignInfoAmino;
1462
2144
  }
2145
+ /**
2146
+ * @name FeeDiscountTierInfo
2147
+ * @package injective.exchange.v1beta1
2148
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountTierInfo
2149
+ */
1463
2150
  export interface FeeDiscountTierInfo {
1464
2151
  makerDiscountRate: string;
1465
2152
  takerDiscountRate: string;
@@ -1470,6 +2157,11 @@ export interface FeeDiscountTierInfoProtoMsg {
1470
2157
  typeUrl: "/injective.exchange.v1beta1.FeeDiscountTierInfo";
1471
2158
  value: Uint8Array;
1472
2159
  }
2160
+ /**
2161
+ * @name FeeDiscountTierInfoAmino
2162
+ * @package injective.exchange.v1beta1
2163
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountTierInfo
2164
+ */
1473
2165
  export interface FeeDiscountTierInfoAmino {
1474
2166
  maker_discount_rate: string;
1475
2167
  taker_discount_rate: string;
@@ -1480,6 +2172,11 @@ export interface FeeDiscountTierInfoAminoMsg {
1480
2172
  type: "/injective.exchange.v1beta1.FeeDiscountTierInfo";
1481
2173
  value: FeeDiscountTierInfoAmino;
1482
2174
  }
2175
+ /**
2176
+ * @name FeeDiscountSchedule
2177
+ * @package injective.exchange.v1beta1
2178
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountSchedule
2179
+ */
1483
2180
  export interface FeeDiscountSchedule {
1484
2181
  bucketCount: bigint;
1485
2182
  bucketDuration: bigint;
@@ -1488,7 +2185,9 @@ export interface FeeDiscountSchedule {
1488
2185
  * contribution
1489
2186
  */
1490
2187
  quoteDenoms: string[];
1491
- /** the fee discount tiers */
2188
+ /**
2189
+ * the fee discount tiers
2190
+ */
1492
2191
  tierInfos: FeeDiscountTierInfo[];
1493
2192
  /**
1494
2193
  * the marketIDs which are disqualified from contributing to the fee paid
@@ -1500,6 +2199,11 @@ export interface FeeDiscountScheduleProtoMsg {
1500
2199
  typeUrl: "/injective.exchange.v1beta1.FeeDiscountSchedule";
1501
2200
  value: Uint8Array;
1502
2201
  }
2202
+ /**
2203
+ * @name FeeDiscountScheduleAmino
2204
+ * @package injective.exchange.v1beta1
2205
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountSchedule
2206
+ */
1503
2207
  export interface FeeDiscountScheduleAmino {
1504
2208
  bucket_count: string;
1505
2209
  bucket_duration: string;
@@ -1508,7 +2212,9 @@ export interface FeeDiscountScheduleAmino {
1508
2212
  * contribution
1509
2213
  */
1510
2214
  quote_denoms: string[];
1511
- /** the fee discount tiers */
2215
+ /**
2216
+ * the fee discount tiers
2217
+ */
1512
2218
  tier_infos: FeeDiscountTierInfoAmino[];
1513
2219
  /**
1514
2220
  * the marketIDs which are disqualified from contributing to the fee paid
@@ -1520,6 +2226,11 @@ export interface FeeDiscountScheduleAminoMsg {
1520
2226
  type: "/injective.exchange.v1beta1.FeeDiscountSchedule";
1521
2227
  value: FeeDiscountScheduleAmino;
1522
2228
  }
2229
+ /**
2230
+ * @name FeeDiscountTierTTL
2231
+ * @package injective.exchange.v1beta1
2232
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountTierTTL
2233
+ */
1523
2234
  export interface FeeDiscountTierTTL {
1524
2235
  tier: bigint;
1525
2236
  ttlTimestamp: bigint;
@@ -1528,6 +2239,11 @@ export interface FeeDiscountTierTTLProtoMsg {
1528
2239
  typeUrl: "/injective.exchange.v1beta1.FeeDiscountTierTTL";
1529
2240
  value: Uint8Array;
1530
2241
  }
2242
+ /**
2243
+ * @name FeeDiscountTierTTLAmino
2244
+ * @package injective.exchange.v1beta1
2245
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountTierTTL
2246
+ */
1531
2247
  export interface FeeDiscountTierTTLAmino {
1532
2248
  tier: string;
1533
2249
  ttl_timestamp: string;
@@ -1536,6 +2252,11 @@ export interface FeeDiscountTierTTLAminoMsg {
1536
2252
  type: "/injective.exchange.v1beta1.FeeDiscountTierTTL";
1537
2253
  value: FeeDiscountTierTTLAmino;
1538
2254
  }
2255
+ /**
2256
+ * @name VolumeRecord
2257
+ * @package injective.exchange.v1beta1
2258
+ * @see proto type: injective.exchange.v1beta1.VolumeRecord
2259
+ */
1539
2260
  export interface VolumeRecord {
1540
2261
  makerVolume: string;
1541
2262
  takerVolume: string;
@@ -1544,6 +2265,11 @@ export interface VolumeRecordProtoMsg {
1544
2265
  typeUrl: "/injective.exchange.v1beta1.VolumeRecord";
1545
2266
  value: Uint8Array;
1546
2267
  }
2268
+ /**
2269
+ * @name VolumeRecordAmino
2270
+ * @package injective.exchange.v1beta1
2271
+ * @see proto type: injective.exchange.v1beta1.VolumeRecord
2272
+ */
1547
2273
  export interface VolumeRecordAmino {
1548
2274
  maker_volume: string;
1549
2275
  taker_volume: string;
@@ -1552,6 +2278,11 @@ export interface VolumeRecordAminoMsg {
1552
2278
  type: "/injective.exchange.v1beta1.VolumeRecord";
1553
2279
  value: VolumeRecordAmino;
1554
2280
  }
2281
+ /**
2282
+ * @name AccountRewards
2283
+ * @package injective.exchange.v1beta1
2284
+ * @see proto type: injective.exchange.v1beta1.AccountRewards
2285
+ */
1555
2286
  export interface AccountRewards {
1556
2287
  account: string;
1557
2288
  rewards: Coin[];
@@ -1560,6 +2291,11 @@ export interface AccountRewardsProtoMsg {
1560
2291
  typeUrl: "/injective.exchange.v1beta1.AccountRewards";
1561
2292
  value: Uint8Array;
1562
2293
  }
2294
+ /**
2295
+ * @name AccountRewardsAmino
2296
+ * @package injective.exchange.v1beta1
2297
+ * @see proto type: injective.exchange.v1beta1.AccountRewards
2298
+ */
1563
2299
  export interface AccountRewardsAmino {
1564
2300
  account: string;
1565
2301
  rewards: CoinAmino[];
@@ -1568,6 +2304,11 @@ export interface AccountRewardsAminoMsg {
1568
2304
  type: "/injective.exchange.v1beta1.AccountRewards";
1569
2305
  value: AccountRewardsAmino;
1570
2306
  }
2307
+ /**
2308
+ * @name TradeRecords
2309
+ * @package injective.exchange.v1beta1
2310
+ * @see proto type: injective.exchange.v1beta1.TradeRecords
2311
+ */
1571
2312
  export interface TradeRecords {
1572
2313
  marketId: string;
1573
2314
  latestTradeRecords: TradeRecord[];
@@ -1576,6 +2317,11 @@ export interface TradeRecordsProtoMsg {
1576
2317
  typeUrl: "/injective.exchange.v1beta1.TradeRecords";
1577
2318
  value: Uint8Array;
1578
2319
  }
2320
+ /**
2321
+ * @name TradeRecordsAmino
2322
+ * @package injective.exchange.v1beta1
2323
+ * @see proto type: injective.exchange.v1beta1.TradeRecords
2324
+ */
1579
2325
  export interface TradeRecordsAmino {
1580
2326
  market_id: string;
1581
2327
  latest_trade_records: TradeRecordAmino[];
@@ -1584,6 +2330,11 @@ export interface TradeRecordsAminoMsg {
1584
2330
  type: "/injective.exchange.v1beta1.TradeRecords";
1585
2331
  value: TradeRecordsAmino;
1586
2332
  }
2333
+ /**
2334
+ * @name SubaccountIDs
2335
+ * @package injective.exchange.v1beta1
2336
+ * @see proto type: injective.exchange.v1beta1.SubaccountIDs
2337
+ */
1587
2338
  export interface SubaccountIDs {
1588
2339
  subaccountIds: Uint8Array[];
1589
2340
  }
@@ -1591,6 +2342,11 @@ export interface SubaccountIDsProtoMsg {
1591
2342
  typeUrl: "/injective.exchange.v1beta1.SubaccountIDs";
1592
2343
  value: Uint8Array;
1593
2344
  }
2345
+ /**
2346
+ * @name SubaccountIDsAmino
2347
+ * @package injective.exchange.v1beta1
2348
+ * @see proto type: injective.exchange.v1beta1.SubaccountIDs
2349
+ */
1594
2350
  export interface SubaccountIDsAmino {
1595
2351
  subaccount_ids: string[];
1596
2352
  }
@@ -1598,6 +2354,11 @@ export interface SubaccountIDsAminoMsg {
1598
2354
  type: "/injective.exchange.v1beta1.SubaccountIDs";
1599
2355
  value: SubaccountIDsAmino;
1600
2356
  }
2357
+ /**
2358
+ * @name TradeRecord
2359
+ * @package injective.exchange.v1beta1
2360
+ * @see proto type: injective.exchange.v1beta1.TradeRecord
2361
+ */
1601
2362
  export interface TradeRecord {
1602
2363
  timestamp: bigint;
1603
2364
  price: string;
@@ -1607,6 +2368,11 @@ export interface TradeRecordProtoMsg {
1607
2368
  typeUrl: "/injective.exchange.v1beta1.TradeRecord";
1608
2369
  value: Uint8Array;
1609
2370
  }
2371
+ /**
2372
+ * @name TradeRecordAmino
2373
+ * @package injective.exchange.v1beta1
2374
+ * @see proto type: injective.exchange.v1beta1.TradeRecord
2375
+ */
1610
2376
  export interface TradeRecordAmino {
1611
2377
  timestamp: string;
1612
2378
  price: string;
@@ -1616,26 +2382,49 @@ export interface TradeRecordAminoMsg {
1616
2382
  type: "/injective.exchange.v1beta1.TradeRecord";
1617
2383
  value: TradeRecordAmino;
1618
2384
  }
2385
+ /**
2386
+ * @name Level
2387
+ * @package injective.exchange.v1beta1
2388
+ * @see proto type: injective.exchange.v1beta1.Level
2389
+ */
1619
2390
  export interface Level {
1620
- /** price */
2391
+ /**
2392
+ * price
2393
+ */
1621
2394
  p: string;
1622
- /** quantity */
2395
+ /**
2396
+ * quantity
2397
+ */
1623
2398
  q: string;
1624
2399
  }
1625
2400
  export interface LevelProtoMsg {
1626
2401
  typeUrl: "/injective.exchange.v1beta1.Level";
1627
2402
  value: Uint8Array;
1628
2403
  }
2404
+ /**
2405
+ * @name LevelAmino
2406
+ * @package injective.exchange.v1beta1
2407
+ * @see proto type: injective.exchange.v1beta1.Level
2408
+ */
1629
2409
  export interface LevelAmino {
1630
- /** price */
2410
+ /**
2411
+ * price
2412
+ */
1631
2413
  p: string;
1632
- /** quantity */
2414
+ /**
2415
+ * quantity
2416
+ */
1633
2417
  q: string;
1634
2418
  }
1635
2419
  export interface LevelAminoMsg {
1636
2420
  type: "/injective.exchange.v1beta1.Level";
1637
2421
  value: LevelAmino;
1638
2422
  }
2423
+ /**
2424
+ * @name AggregateSubaccountVolumeRecord
2425
+ * @package injective.exchange.v1beta1
2426
+ * @see proto type: injective.exchange.v1beta1.AggregateSubaccountVolumeRecord
2427
+ */
1639
2428
  export interface AggregateSubaccountVolumeRecord {
1640
2429
  subaccountId: string;
1641
2430
  marketVolumes: MarketVolume[];
@@ -1644,6 +2433,11 @@ export interface AggregateSubaccountVolumeRecordProtoMsg {
1644
2433
  typeUrl: "/injective.exchange.v1beta1.AggregateSubaccountVolumeRecord";
1645
2434
  value: Uint8Array;
1646
2435
  }
2436
+ /**
2437
+ * @name AggregateSubaccountVolumeRecordAmino
2438
+ * @package injective.exchange.v1beta1
2439
+ * @see proto type: injective.exchange.v1beta1.AggregateSubaccountVolumeRecord
2440
+ */
1647
2441
  export interface AggregateSubaccountVolumeRecordAmino {
1648
2442
  subaccount_id: string;
1649
2443
  market_volumes: MarketVolumeAmino[];
@@ -1652,6 +2446,11 @@ export interface AggregateSubaccountVolumeRecordAminoMsg {
1652
2446
  type: "/injective.exchange.v1beta1.AggregateSubaccountVolumeRecord";
1653
2447
  value: AggregateSubaccountVolumeRecordAmino;
1654
2448
  }
2449
+ /**
2450
+ * @name AggregateAccountVolumeRecord
2451
+ * @package injective.exchange.v1beta1
2452
+ * @see proto type: injective.exchange.v1beta1.AggregateAccountVolumeRecord
2453
+ */
1655
2454
  export interface AggregateAccountVolumeRecord {
1656
2455
  account: string;
1657
2456
  marketVolumes: MarketVolume[];
@@ -1660,6 +2459,11 @@ export interface AggregateAccountVolumeRecordProtoMsg {
1660
2459
  typeUrl: "/injective.exchange.v1beta1.AggregateAccountVolumeRecord";
1661
2460
  value: Uint8Array;
1662
2461
  }
2462
+ /**
2463
+ * @name AggregateAccountVolumeRecordAmino
2464
+ * @package injective.exchange.v1beta1
2465
+ * @see proto type: injective.exchange.v1beta1.AggregateAccountVolumeRecord
2466
+ */
1663
2467
  export interface AggregateAccountVolumeRecordAmino {
1664
2468
  account: string;
1665
2469
  market_volumes: MarketVolumeAmino[];
@@ -1668,6 +2472,11 @@ export interface AggregateAccountVolumeRecordAminoMsg {
1668
2472
  type: "/injective.exchange.v1beta1.AggregateAccountVolumeRecord";
1669
2473
  value: AggregateAccountVolumeRecordAmino;
1670
2474
  }
2475
+ /**
2476
+ * @name MarketVolume
2477
+ * @package injective.exchange.v1beta1
2478
+ * @see proto type: injective.exchange.v1beta1.MarketVolume
2479
+ */
1671
2480
  export interface MarketVolume {
1672
2481
  marketId: string;
1673
2482
  volume: VolumeRecord;
@@ -1676,6 +2485,11 @@ export interface MarketVolumeProtoMsg {
1676
2485
  typeUrl: "/injective.exchange.v1beta1.MarketVolume";
1677
2486
  value: Uint8Array;
1678
2487
  }
2488
+ /**
2489
+ * @name MarketVolumeAmino
2490
+ * @package injective.exchange.v1beta1
2491
+ * @see proto type: injective.exchange.v1beta1.MarketVolume
2492
+ */
1679
2493
  export interface MarketVolumeAmino {
1680
2494
  market_id: string;
1681
2495
  volume: VolumeRecordAmino;
@@ -1684,6 +2498,11 @@ export interface MarketVolumeAminoMsg {
1684
2498
  type: "/injective.exchange.v1beta1.MarketVolume";
1685
2499
  value: MarketVolumeAmino;
1686
2500
  }
2501
+ /**
2502
+ * @name DenomDecimals
2503
+ * @package injective.exchange.v1beta1
2504
+ * @see proto type: injective.exchange.v1beta1.DenomDecimals
2505
+ */
1687
2506
  export interface DenomDecimals {
1688
2507
  denom: string;
1689
2508
  decimals: bigint;
@@ -1692,6 +2511,11 @@ export interface DenomDecimalsProtoMsg {
1692
2511
  typeUrl: "/injective.exchange.v1beta1.DenomDecimals";
1693
2512
  value: Uint8Array;
1694
2513
  }
2514
+ /**
2515
+ * @name DenomDecimalsAmino
2516
+ * @package injective.exchange.v1beta1
2517
+ * @see proto type: injective.exchange.v1beta1.DenomDecimals
2518
+ */
1695
2519
  export interface DenomDecimalsAmino {
1696
2520
  denom: string;
1697
2521
  decimals: string;
@@ -1700,6 +2524,11 @@ export interface DenomDecimalsAminoMsg {
1700
2524
  type: "/injective.exchange.v1beta1.DenomDecimals";
1701
2525
  value: DenomDecimalsAmino;
1702
2526
  }
2527
+ /**
2528
+ * @name GrantAuthorization
2529
+ * @package injective.exchange.v1beta1
2530
+ * @see proto type: injective.exchange.v1beta1.GrantAuthorization
2531
+ */
1703
2532
  export interface GrantAuthorization {
1704
2533
  grantee: string;
1705
2534
  amount: string;
@@ -1708,6 +2537,11 @@ export interface GrantAuthorizationProtoMsg {
1708
2537
  typeUrl: "/injective.exchange.v1beta1.GrantAuthorization";
1709
2538
  value: Uint8Array;
1710
2539
  }
2540
+ /**
2541
+ * @name GrantAuthorizationAmino
2542
+ * @package injective.exchange.v1beta1
2543
+ * @see proto type: injective.exchange.v1beta1.GrantAuthorization
2544
+ */
1711
2545
  export interface GrantAuthorizationAmino {
1712
2546
  grantee: string;
1713
2547
  amount: string;
@@ -1716,6 +2550,11 @@ export interface GrantAuthorizationAminoMsg {
1716
2550
  type: "/injective.exchange.v1beta1.GrantAuthorization";
1717
2551
  value: GrantAuthorizationAmino;
1718
2552
  }
2553
+ /**
2554
+ * @name ActiveGrant
2555
+ * @package injective.exchange.v1beta1
2556
+ * @see proto type: injective.exchange.v1beta1.ActiveGrant
2557
+ */
1719
2558
  export interface ActiveGrant {
1720
2559
  granter: string;
1721
2560
  amount: string;
@@ -1724,6 +2563,11 @@ export interface ActiveGrantProtoMsg {
1724
2563
  typeUrl: "/injective.exchange.v1beta1.ActiveGrant";
1725
2564
  value: Uint8Array;
1726
2565
  }
2566
+ /**
2567
+ * @name ActiveGrantAmino
2568
+ * @package injective.exchange.v1beta1
2569
+ * @see proto type: injective.exchange.v1beta1.ActiveGrant
2570
+ */
1727
2571
  export interface ActiveGrantAmino {
1728
2572
  granter: string;
1729
2573
  amount: string;
@@ -1732,6 +2576,11 @@ export interface ActiveGrantAminoMsg {
1732
2576
  type: "/injective.exchange.v1beta1.ActiveGrant";
1733
2577
  value: ActiveGrantAmino;
1734
2578
  }
2579
+ /**
2580
+ * @name EffectiveGrant
2581
+ * @package injective.exchange.v1beta1
2582
+ * @see proto type: injective.exchange.v1beta1.EffectiveGrant
2583
+ */
1735
2584
  export interface EffectiveGrant {
1736
2585
  granter: string;
1737
2586
  netGrantedStake: string;
@@ -1741,6 +2590,11 @@ export interface EffectiveGrantProtoMsg {
1741
2590
  typeUrl: "/injective.exchange.v1beta1.EffectiveGrant";
1742
2591
  value: Uint8Array;
1743
2592
  }
2593
+ /**
2594
+ * @name EffectiveGrantAmino
2595
+ * @package injective.exchange.v1beta1
2596
+ * @see proto type: injective.exchange.v1beta1.EffectiveGrant
2597
+ */
1744
2598
  export interface EffectiveGrantAmino {
1745
2599
  granter: string;
1746
2600
  net_granted_stake: string;
@@ -1750,6 +2604,11 @@ export interface EffectiveGrantAminoMsg {
1750
2604
  type: "/injective.exchange.v1beta1.EffectiveGrant";
1751
2605
  value: EffectiveGrantAmino;
1752
2606
  }
2607
+ /**
2608
+ * @name Params
2609
+ * @package injective.exchange.v1beta1
2610
+ * @see proto type: injective.exchange.v1beta1.Params
2611
+ */
1753
2612
  export declare const Params: {
1754
2613
  typeUrl: string;
1755
2614
  aminoType: string;
@@ -1767,6 +2626,11 @@ export declare const Params: {
1767
2626
  toProtoMsg(message: Params): ParamsProtoMsg;
1768
2627
  registerTypeUrl(): void;
1769
2628
  };
2629
+ /**
2630
+ * @name MarketFeeMultiplier
2631
+ * @package injective.exchange.v1beta1
2632
+ * @see proto type: injective.exchange.v1beta1.MarketFeeMultiplier
2633
+ */
1770
2634
  export declare const MarketFeeMultiplier: {
1771
2635
  typeUrl: string;
1772
2636
  is(o: any): o is MarketFeeMultiplier;
@@ -1782,6 +2646,12 @@ export declare const MarketFeeMultiplier: {
1782
2646
  toProtoMsg(message: MarketFeeMultiplier): MarketFeeMultiplierProtoMsg;
1783
2647
  registerTypeUrl(): void;
1784
2648
  };
2649
+ /**
2650
+ * An object describing a derivative market in the Injective Futures Protocol.
2651
+ * @name DerivativeMarket
2652
+ * @package injective.exchange.v1beta1
2653
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarket
2654
+ */
1785
2655
  export declare const DerivativeMarket: {
1786
2656
  typeUrl: string;
1787
2657
  is(o: any): o is DerivativeMarket;
@@ -1797,6 +2667,12 @@ export declare const DerivativeMarket: {
1797
2667
  toProtoMsg(message: DerivativeMarket): DerivativeMarketProtoMsg;
1798
2668
  registerTypeUrl(): void;
1799
2669
  };
2670
+ /**
2671
+ * An object describing a binary options market in Injective Protocol.
2672
+ * @name BinaryOptionsMarket
2673
+ * @package injective.exchange.v1beta1
2674
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarket
2675
+ */
1800
2676
  export declare const BinaryOptionsMarket: {
1801
2677
  typeUrl: string;
1802
2678
  is(o: any): o is BinaryOptionsMarket;
@@ -1812,6 +2688,11 @@ export declare const BinaryOptionsMarket: {
1812
2688
  toProtoMsg(message: BinaryOptionsMarket): BinaryOptionsMarketProtoMsg;
1813
2689
  registerTypeUrl(): void;
1814
2690
  };
2691
+ /**
2692
+ * @name ExpiryFuturesMarketInfo
2693
+ * @package injective.exchange.v1beta1
2694
+ * @see proto type: injective.exchange.v1beta1.ExpiryFuturesMarketInfo
2695
+ */
1815
2696
  export declare const ExpiryFuturesMarketInfo: {
1816
2697
  typeUrl: string;
1817
2698
  is(o: any): o is ExpiryFuturesMarketInfo;
@@ -1827,6 +2708,11 @@ export declare const ExpiryFuturesMarketInfo: {
1827
2708
  toProtoMsg(message: ExpiryFuturesMarketInfo): ExpiryFuturesMarketInfoProtoMsg;
1828
2709
  registerTypeUrl(): void;
1829
2710
  };
2711
+ /**
2712
+ * @name PerpetualMarketInfo
2713
+ * @package injective.exchange.v1beta1
2714
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketInfo
2715
+ */
1830
2716
  export declare const PerpetualMarketInfo: {
1831
2717
  typeUrl: string;
1832
2718
  is(o: any): o is PerpetualMarketInfo;
@@ -1842,6 +2728,11 @@ export declare const PerpetualMarketInfo: {
1842
2728
  toProtoMsg(message: PerpetualMarketInfo): PerpetualMarketInfoProtoMsg;
1843
2729
  registerTypeUrl(): void;
1844
2730
  };
2731
+ /**
2732
+ * @name PerpetualMarketFunding
2733
+ * @package injective.exchange.v1beta1
2734
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketFunding
2735
+ */
1845
2736
  export declare const PerpetualMarketFunding: {
1846
2737
  typeUrl: string;
1847
2738
  is(o: any): o is PerpetualMarketFunding;
@@ -1857,6 +2748,11 @@ export declare const PerpetualMarketFunding: {
1857
2748
  toProtoMsg(message: PerpetualMarketFunding): PerpetualMarketFundingProtoMsg;
1858
2749
  registerTypeUrl(): void;
1859
2750
  };
2751
+ /**
2752
+ * @name DerivativeMarketSettlementInfo
2753
+ * @package injective.exchange.v1beta1
2754
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketSettlementInfo
2755
+ */
1860
2756
  export declare const DerivativeMarketSettlementInfo: {
1861
2757
  typeUrl: string;
1862
2758
  is(o: any): o is DerivativeMarketSettlementInfo;
@@ -1872,6 +2768,11 @@ export declare const DerivativeMarketSettlementInfo: {
1872
2768
  toProtoMsg(message: DerivativeMarketSettlementInfo): DerivativeMarketSettlementInfoProtoMsg;
1873
2769
  registerTypeUrl(): void;
1874
2770
  };
2771
+ /**
2772
+ * @name NextFundingTimestamp
2773
+ * @package injective.exchange.v1beta1
2774
+ * @see proto type: injective.exchange.v1beta1.NextFundingTimestamp
2775
+ */
1875
2776
  export declare const NextFundingTimestamp: {
1876
2777
  typeUrl: string;
1877
2778
  is(o: any): o is NextFundingTimestamp;
@@ -1887,6 +2788,11 @@ export declare const NextFundingTimestamp: {
1887
2788
  toProtoMsg(message: NextFundingTimestamp): NextFundingTimestampProtoMsg;
1888
2789
  registerTypeUrl(): void;
1889
2790
  };
2791
+ /**
2792
+ * @name MidPriceAndTOB
2793
+ * @package injective.exchange.v1beta1
2794
+ * @see proto type: injective.exchange.v1beta1.MidPriceAndTOB
2795
+ */
1890
2796
  export declare const MidPriceAndTOB: {
1891
2797
  typeUrl: string;
1892
2798
  is(o: any): o is MidPriceAndTOB;
@@ -1902,6 +2808,12 @@ export declare const MidPriceAndTOB: {
1902
2808
  toProtoMsg(message: MidPriceAndTOB): MidPriceAndTOBProtoMsg;
1903
2809
  registerTypeUrl(): void;
1904
2810
  };
2811
+ /**
2812
+ * An object describing trade pair of two assets.
2813
+ * @name SpotMarket
2814
+ * @package injective.exchange.v1beta1
2815
+ * @see proto type: injective.exchange.v1beta1.SpotMarket
2816
+ */
1905
2817
  export declare const SpotMarket: {
1906
2818
  typeUrl: string;
1907
2819
  is(o: any): o is SpotMarket;
@@ -1917,6 +2829,12 @@ export declare const SpotMarket: {
1917
2829
  toProtoMsg(message: SpotMarket): SpotMarketProtoMsg;
1918
2830
  registerTypeUrl(): void;
1919
2831
  };
2832
+ /**
2833
+ * A subaccount's deposit for a given base currency
2834
+ * @name Deposit
2835
+ * @package injective.exchange.v1beta1
2836
+ * @see proto type: injective.exchange.v1beta1.Deposit
2837
+ */
1920
2838
  export declare const Deposit: {
1921
2839
  typeUrl: string;
1922
2840
  is(o: any): o is Deposit;
@@ -1932,6 +2850,11 @@ export declare const Deposit: {
1932
2850
  toProtoMsg(message: Deposit): DepositProtoMsg;
1933
2851
  registerTypeUrl(): void;
1934
2852
  };
2853
+ /**
2854
+ * @name SubaccountTradeNonce
2855
+ * @package injective.exchange.v1beta1
2856
+ * @see proto type: injective.exchange.v1beta1.SubaccountTradeNonce
2857
+ */
1935
2858
  export declare const SubaccountTradeNonce: {
1936
2859
  typeUrl: string;
1937
2860
  is(o: any): o is SubaccountTradeNonce;
@@ -1947,6 +2870,11 @@ export declare const SubaccountTradeNonce: {
1947
2870
  toProtoMsg(message: SubaccountTradeNonce): SubaccountTradeNonceProtoMsg;
1948
2871
  registerTypeUrl(): void;
1949
2872
  };
2873
+ /**
2874
+ * @name OrderInfo
2875
+ * @package injective.exchange.v1beta1
2876
+ * @see proto type: injective.exchange.v1beta1.OrderInfo
2877
+ */
1950
2878
  export declare const OrderInfo: {
1951
2879
  typeUrl: string;
1952
2880
  is(o: any): o is OrderInfo;
@@ -1962,6 +2890,11 @@ export declare const OrderInfo: {
1962
2890
  toProtoMsg(message: OrderInfo): OrderInfoProtoMsg;
1963
2891
  registerTypeUrl(): void;
1964
2892
  };
2893
+ /**
2894
+ * @name SpotOrder
2895
+ * @package injective.exchange.v1beta1
2896
+ * @see proto type: injective.exchange.v1beta1.SpotOrder
2897
+ */
1965
2898
  export declare const SpotOrder: {
1966
2899
  typeUrl: string;
1967
2900
  is(o: any): o is SpotOrder;
@@ -1977,6 +2910,12 @@ export declare const SpotOrder: {
1977
2910
  toProtoMsg(message: SpotOrder): SpotOrderProtoMsg;
1978
2911
  registerTypeUrl(): void;
1979
2912
  };
2913
+ /**
2914
+ * A valid Spot limit order with Metadata.
2915
+ * @name SpotLimitOrder
2916
+ * @package injective.exchange.v1beta1
2917
+ * @see proto type: injective.exchange.v1beta1.SpotLimitOrder
2918
+ */
1980
2919
  export declare const SpotLimitOrder: {
1981
2920
  typeUrl: string;
1982
2921
  is(o: any): o is SpotLimitOrder;
@@ -1992,6 +2931,12 @@ export declare const SpotLimitOrder: {
1992
2931
  toProtoMsg(message: SpotLimitOrder): SpotLimitOrderProtoMsg;
1993
2932
  registerTypeUrl(): void;
1994
2933
  };
2934
+ /**
2935
+ * A valid Spot market order with Metadata.
2936
+ * @name SpotMarketOrder
2937
+ * @package injective.exchange.v1beta1
2938
+ * @see proto type: injective.exchange.v1beta1.SpotMarketOrder
2939
+ */
1995
2940
  export declare const SpotMarketOrder: {
1996
2941
  typeUrl: string;
1997
2942
  is(o: any): o is SpotMarketOrder;
@@ -2007,6 +2952,11 @@ export declare const SpotMarketOrder: {
2007
2952
  toProtoMsg(message: SpotMarketOrder): SpotMarketOrderProtoMsg;
2008
2953
  registerTypeUrl(): void;
2009
2954
  };
2955
+ /**
2956
+ * @name DerivativeOrder
2957
+ * @package injective.exchange.v1beta1
2958
+ * @see proto type: injective.exchange.v1beta1.DerivativeOrder
2959
+ */
2010
2960
  export declare const DerivativeOrder: {
2011
2961
  typeUrl: string;
2012
2962
  is(o: any): o is DerivativeOrder;
@@ -2022,6 +2972,11 @@ export declare const DerivativeOrder: {
2022
2972
  toProtoMsg(message: DerivativeOrder): DerivativeOrderProtoMsg;
2023
2973
  registerTypeUrl(): void;
2024
2974
  };
2975
+ /**
2976
+ * @name SubaccountOrderbookMetadata
2977
+ * @package injective.exchange.v1beta1
2978
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderbookMetadata
2979
+ */
2025
2980
  export declare const SubaccountOrderbookMetadata: {
2026
2981
  typeUrl: string;
2027
2982
  is(o: any): o is SubaccountOrderbookMetadata;
@@ -2037,6 +2992,11 @@ export declare const SubaccountOrderbookMetadata: {
2037
2992
  toProtoMsg(message: SubaccountOrderbookMetadata): SubaccountOrderbookMetadataProtoMsg;
2038
2993
  registerTypeUrl(): void;
2039
2994
  };
2995
+ /**
2996
+ * @name SubaccountOrder
2997
+ * @package injective.exchange.v1beta1
2998
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrder
2999
+ */
2040
3000
  export declare const SubaccountOrder: {
2041
3001
  typeUrl: string;
2042
3002
  is(o: any): o is SubaccountOrder;
@@ -2052,6 +3012,11 @@ export declare const SubaccountOrder: {
2052
3012
  toProtoMsg(message: SubaccountOrder): SubaccountOrderProtoMsg;
2053
3013
  registerTypeUrl(): void;
2054
3014
  };
3015
+ /**
3016
+ * @name SubaccountOrderData
3017
+ * @package injective.exchange.v1beta1
3018
+ * @see proto type: injective.exchange.v1beta1.SubaccountOrderData
3019
+ */
2055
3020
  export declare const SubaccountOrderData: {
2056
3021
  typeUrl: string;
2057
3022
  is(o: any): o is SubaccountOrderData;
@@ -2067,6 +3032,12 @@ export declare const SubaccountOrderData: {
2067
3032
  toProtoMsg(message: SubaccountOrderData): SubaccountOrderDataProtoMsg;
2068
3033
  registerTypeUrl(): void;
2069
3034
  };
3035
+ /**
3036
+ * A valid Derivative limit order with Metadata.
3037
+ * @name DerivativeLimitOrder
3038
+ * @package injective.exchange.v1beta1
3039
+ * @see proto type: injective.exchange.v1beta1.DerivativeLimitOrder
3040
+ */
2070
3041
  export declare const DerivativeLimitOrder: {
2071
3042
  typeUrl: string;
2072
3043
  is(o: any): o is DerivativeLimitOrder;
@@ -2082,6 +3053,12 @@ export declare const DerivativeLimitOrder: {
2082
3053
  toProtoMsg(message: DerivativeLimitOrder): DerivativeLimitOrderProtoMsg;
2083
3054
  registerTypeUrl(): void;
2084
3055
  };
3056
+ /**
3057
+ * A valid Derivative market order with Metadata.
3058
+ * @name DerivativeMarketOrder
3059
+ * @package injective.exchange.v1beta1
3060
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketOrder
3061
+ */
2085
3062
  export declare const DerivativeMarketOrder: {
2086
3063
  typeUrl: string;
2087
3064
  is(o: any): o is DerivativeMarketOrder;
@@ -2097,6 +3074,11 @@ export declare const DerivativeMarketOrder: {
2097
3074
  toProtoMsg(message: DerivativeMarketOrder): DerivativeMarketOrderProtoMsg;
2098
3075
  registerTypeUrl(): void;
2099
3076
  };
3077
+ /**
3078
+ * @name Position
3079
+ * @package injective.exchange.v1beta1
3080
+ * @see proto type: injective.exchange.v1beta1.Position
3081
+ */
2100
3082
  export declare const Position: {
2101
3083
  typeUrl: string;
2102
3084
  is(o: any): o is Position;
@@ -2112,6 +3094,11 @@ export declare const Position: {
2112
3094
  toProtoMsg(message: Position): PositionProtoMsg;
2113
3095
  registerTypeUrl(): void;
2114
3096
  };
3097
+ /**
3098
+ * @name MarketOrderIndicator
3099
+ * @package injective.exchange.v1beta1
3100
+ * @see proto type: injective.exchange.v1beta1.MarketOrderIndicator
3101
+ */
2115
3102
  export declare const MarketOrderIndicator: {
2116
3103
  typeUrl: string;
2117
3104
  is(o: any): o is MarketOrderIndicator;
@@ -2127,6 +3114,11 @@ export declare const MarketOrderIndicator: {
2127
3114
  toProtoMsg(message: MarketOrderIndicator): MarketOrderIndicatorProtoMsg;
2128
3115
  registerTypeUrl(): void;
2129
3116
  };
3117
+ /**
3118
+ * @name TradeLog
3119
+ * @package injective.exchange.v1beta1
3120
+ * @see proto type: injective.exchange.v1beta1.TradeLog
3121
+ */
2130
3122
  export declare const TradeLog: {
2131
3123
  typeUrl: string;
2132
3124
  is(o: any): o is TradeLog;
@@ -2142,6 +3134,11 @@ export declare const TradeLog: {
2142
3134
  toProtoMsg(message: TradeLog): TradeLogProtoMsg;
2143
3135
  registerTypeUrl(): void;
2144
3136
  };
3137
+ /**
3138
+ * @name PositionDelta
3139
+ * @package injective.exchange.v1beta1
3140
+ * @see proto type: injective.exchange.v1beta1.PositionDelta
3141
+ */
2145
3142
  export declare const PositionDelta: {
2146
3143
  typeUrl: string;
2147
3144
  is(o: any): o is PositionDelta;
@@ -2157,6 +3154,11 @@ export declare const PositionDelta: {
2157
3154
  toProtoMsg(message: PositionDelta): PositionDeltaProtoMsg;
2158
3155
  registerTypeUrl(): void;
2159
3156
  };
3157
+ /**
3158
+ * @name DerivativeTradeLog
3159
+ * @package injective.exchange.v1beta1
3160
+ * @see proto type: injective.exchange.v1beta1.DerivativeTradeLog
3161
+ */
2160
3162
  export declare const DerivativeTradeLog: {
2161
3163
  typeUrl: string;
2162
3164
  is(o: any): o is DerivativeTradeLog;
@@ -2172,6 +3174,11 @@ export declare const DerivativeTradeLog: {
2172
3174
  toProtoMsg(message: DerivativeTradeLog): DerivativeTradeLogProtoMsg;
2173
3175
  registerTypeUrl(): void;
2174
3176
  };
3177
+ /**
3178
+ * @name SubaccountPosition
3179
+ * @package injective.exchange.v1beta1
3180
+ * @see proto type: injective.exchange.v1beta1.SubaccountPosition
3181
+ */
2175
3182
  export declare const SubaccountPosition: {
2176
3183
  typeUrl: string;
2177
3184
  is(o: any): o is SubaccountPosition;
@@ -2187,6 +3194,11 @@ export declare const SubaccountPosition: {
2187
3194
  toProtoMsg(message: SubaccountPosition): SubaccountPositionProtoMsg;
2188
3195
  registerTypeUrl(): void;
2189
3196
  };
3197
+ /**
3198
+ * @name SubaccountDeposit
3199
+ * @package injective.exchange.v1beta1
3200
+ * @see proto type: injective.exchange.v1beta1.SubaccountDeposit
3201
+ */
2190
3202
  export declare const SubaccountDeposit: {
2191
3203
  typeUrl: string;
2192
3204
  is(o: any): o is SubaccountDeposit;
@@ -2202,6 +3214,11 @@ export declare const SubaccountDeposit: {
2202
3214
  toProtoMsg(message: SubaccountDeposit): SubaccountDepositProtoMsg;
2203
3215
  registerTypeUrl(): void;
2204
3216
  };
3217
+ /**
3218
+ * @name DepositUpdate
3219
+ * @package injective.exchange.v1beta1
3220
+ * @see proto type: injective.exchange.v1beta1.DepositUpdate
3221
+ */
2205
3222
  export declare const DepositUpdate: {
2206
3223
  typeUrl: string;
2207
3224
  is(o: any): o is DepositUpdate;
@@ -2217,6 +3234,11 @@ export declare const DepositUpdate: {
2217
3234
  toProtoMsg(message: DepositUpdate): DepositUpdateProtoMsg;
2218
3235
  registerTypeUrl(): void;
2219
3236
  };
3237
+ /**
3238
+ * @name PointsMultiplier
3239
+ * @package injective.exchange.v1beta1
3240
+ * @see proto type: injective.exchange.v1beta1.PointsMultiplier
3241
+ */
2220
3242
  export declare const PointsMultiplier: {
2221
3243
  typeUrl: string;
2222
3244
  is(o: any): o is PointsMultiplier;
@@ -2232,6 +3254,11 @@ export declare const PointsMultiplier: {
2232
3254
  toProtoMsg(message: PointsMultiplier): PointsMultiplierProtoMsg;
2233
3255
  registerTypeUrl(): void;
2234
3256
  };
3257
+ /**
3258
+ * @name TradingRewardCampaignBoostInfo
3259
+ * @package injective.exchange.v1beta1
3260
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignBoostInfo
3261
+ */
2235
3262
  export declare const TradingRewardCampaignBoostInfo: {
2236
3263
  typeUrl: string;
2237
3264
  is(o: any): o is TradingRewardCampaignBoostInfo;
@@ -2247,6 +3274,11 @@ export declare const TradingRewardCampaignBoostInfo: {
2247
3274
  toProtoMsg(message: TradingRewardCampaignBoostInfo): TradingRewardCampaignBoostInfoProtoMsg;
2248
3275
  registerTypeUrl(): void;
2249
3276
  };
3277
+ /**
3278
+ * @name CampaignRewardPool
3279
+ * @package injective.exchange.v1beta1
3280
+ * @see proto type: injective.exchange.v1beta1.CampaignRewardPool
3281
+ */
2250
3282
  export declare const CampaignRewardPool: {
2251
3283
  typeUrl: string;
2252
3284
  is(o: any): o is CampaignRewardPool;
@@ -2262,6 +3294,11 @@ export declare const CampaignRewardPool: {
2262
3294
  toProtoMsg(message: CampaignRewardPool): CampaignRewardPoolProtoMsg;
2263
3295
  registerTypeUrl(): void;
2264
3296
  };
3297
+ /**
3298
+ * @name TradingRewardCampaignInfo
3299
+ * @package injective.exchange.v1beta1
3300
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignInfo
3301
+ */
2265
3302
  export declare const TradingRewardCampaignInfo: {
2266
3303
  typeUrl: string;
2267
3304
  is(o: any): o is TradingRewardCampaignInfo;
@@ -2277,6 +3314,11 @@ export declare const TradingRewardCampaignInfo: {
2277
3314
  toProtoMsg(message: TradingRewardCampaignInfo): TradingRewardCampaignInfoProtoMsg;
2278
3315
  registerTypeUrl(): void;
2279
3316
  };
3317
+ /**
3318
+ * @name FeeDiscountTierInfo
3319
+ * @package injective.exchange.v1beta1
3320
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountTierInfo
3321
+ */
2280
3322
  export declare const FeeDiscountTierInfo: {
2281
3323
  typeUrl: string;
2282
3324
  is(o: any): o is FeeDiscountTierInfo;
@@ -2292,6 +3334,11 @@ export declare const FeeDiscountTierInfo: {
2292
3334
  toProtoMsg(message: FeeDiscountTierInfo): FeeDiscountTierInfoProtoMsg;
2293
3335
  registerTypeUrl(): void;
2294
3336
  };
3337
+ /**
3338
+ * @name FeeDiscountSchedule
3339
+ * @package injective.exchange.v1beta1
3340
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountSchedule
3341
+ */
2295
3342
  export declare const FeeDiscountSchedule: {
2296
3343
  typeUrl: string;
2297
3344
  is(o: any): o is FeeDiscountSchedule;
@@ -2307,6 +3354,11 @@ export declare const FeeDiscountSchedule: {
2307
3354
  toProtoMsg(message: FeeDiscountSchedule): FeeDiscountScheduleProtoMsg;
2308
3355
  registerTypeUrl(): void;
2309
3356
  };
3357
+ /**
3358
+ * @name FeeDiscountTierTTL
3359
+ * @package injective.exchange.v1beta1
3360
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountTierTTL
3361
+ */
2310
3362
  export declare const FeeDiscountTierTTL: {
2311
3363
  typeUrl: string;
2312
3364
  is(o: any): o is FeeDiscountTierTTL;
@@ -2322,6 +3374,11 @@ export declare const FeeDiscountTierTTL: {
2322
3374
  toProtoMsg(message: FeeDiscountTierTTL): FeeDiscountTierTTLProtoMsg;
2323
3375
  registerTypeUrl(): void;
2324
3376
  };
3377
+ /**
3378
+ * @name VolumeRecord
3379
+ * @package injective.exchange.v1beta1
3380
+ * @see proto type: injective.exchange.v1beta1.VolumeRecord
3381
+ */
2325
3382
  export declare const VolumeRecord: {
2326
3383
  typeUrl: string;
2327
3384
  is(o: any): o is VolumeRecord;
@@ -2337,6 +3394,11 @@ export declare const VolumeRecord: {
2337
3394
  toProtoMsg(message: VolumeRecord): VolumeRecordProtoMsg;
2338
3395
  registerTypeUrl(): void;
2339
3396
  };
3397
+ /**
3398
+ * @name AccountRewards
3399
+ * @package injective.exchange.v1beta1
3400
+ * @see proto type: injective.exchange.v1beta1.AccountRewards
3401
+ */
2340
3402
  export declare const AccountRewards: {
2341
3403
  typeUrl: string;
2342
3404
  is(o: any): o is AccountRewards;
@@ -2352,6 +3414,11 @@ export declare const AccountRewards: {
2352
3414
  toProtoMsg(message: AccountRewards): AccountRewardsProtoMsg;
2353
3415
  registerTypeUrl(): void;
2354
3416
  };
3417
+ /**
3418
+ * @name TradeRecords
3419
+ * @package injective.exchange.v1beta1
3420
+ * @see proto type: injective.exchange.v1beta1.TradeRecords
3421
+ */
2355
3422
  export declare const TradeRecords: {
2356
3423
  typeUrl: string;
2357
3424
  is(o: any): o is TradeRecords;
@@ -2367,6 +3434,11 @@ export declare const TradeRecords: {
2367
3434
  toProtoMsg(message: TradeRecords): TradeRecordsProtoMsg;
2368
3435
  registerTypeUrl(): void;
2369
3436
  };
3437
+ /**
3438
+ * @name SubaccountIDs
3439
+ * @package injective.exchange.v1beta1
3440
+ * @see proto type: injective.exchange.v1beta1.SubaccountIDs
3441
+ */
2370
3442
  export declare const SubaccountIDs: {
2371
3443
  typeUrl: string;
2372
3444
  is(o: any): o is SubaccountIDs;
@@ -2382,6 +3454,11 @@ export declare const SubaccountIDs: {
2382
3454
  toProtoMsg(message: SubaccountIDs): SubaccountIDsProtoMsg;
2383
3455
  registerTypeUrl(): void;
2384
3456
  };
3457
+ /**
3458
+ * @name TradeRecord
3459
+ * @package injective.exchange.v1beta1
3460
+ * @see proto type: injective.exchange.v1beta1.TradeRecord
3461
+ */
2385
3462
  export declare const TradeRecord: {
2386
3463
  typeUrl: string;
2387
3464
  is(o: any): o is TradeRecord;
@@ -2397,6 +3474,11 @@ export declare const TradeRecord: {
2397
3474
  toProtoMsg(message: TradeRecord): TradeRecordProtoMsg;
2398
3475
  registerTypeUrl(): void;
2399
3476
  };
3477
+ /**
3478
+ * @name Level
3479
+ * @package injective.exchange.v1beta1
3480
+ * @see proto type: injective.exchange.v1beta1.Level
3481
+ */
2400
3482
  export declare const Level: {
2401
3483
  typeUrl: string;
2402
3484
  is(o: any): o is Level;
@@ -2412,6 +3494,11 @@ export declare const Level: {
2412
3494
  toProtoMsg(message: Level): LevelProtoMsg;
2413
3495
  registerTypeUrl(): void;
2414
3496
  };
3497
+ /**
3498
+ * @name AggregateSubaccountVolumeRecord
3499
+ * @package injective.exchange.v1beta1
3500
+ * @see proto type: injective.exchange.v1beta1.AggregateSubaccountVolumeRecord
3501
+ */
2415
3502
  export declare const AggregateSubaccountVolumeRecord: {
2416
3503
  typeUrl: string;
2417
3504
  is(o: any): o is AggregateSubaccountVolumeRecord;
@@ -2427,6 +3514,11 @@ export declare const AggregateSubaccountVolumeRecord: {
2427
3514
  toProtoMsg(message: AggregateSubaccountVolumeRecord): AggregateSubaccountVolumeRecordProtoMsg;
2428
3515
  registerTypeUrl(): void;
2429
3516
  };
3517
+ /**
3518
+ * @name AggregateAccountVolumeRecord
3519
+ * @package injective.exchange.v1beta1
3520
+ * @see proto type: injective.exchange.v1beta1.AggregateAccountVolumeRecord
3521
+ */
2430
3522
  export declare const AggregateAccountVolumeRecord: {
2431
3523
  typeUrl: string;
2432
3524
  is(o: any): o is AggregateAccountVolumeRecord;
@@ -2442,6 +3534,11 @@ export declare const AggregateAccountVolumeRecord: {
2442
3534
  toProtoMsg(message: AggregateAccountVolumeRecord): AggregateAccountVolumeRecordProtoMsg;
2443
3535
  registerTypeUrl(): void;
2444
3536
  };
3537
+ /**
3538
+ * @name MarketVolume
3539
+ * @package injective.exchange.v1beta1
3540
+ * @see proto type: injective.exchange.v1beta1.MarketVolume
3541
+ */
2445
3542
  export declare const MarketVolume: {
2446
3543
  typeUrl: string;
2447
3544
  is(o: any): o is MarketVolume;
@@ -2457,6 +3554,11 @@ export declare const MarketVolume: {
2457
3554
  toProtoMsg(message: MarketVolume): MarketVolumeProtoMsg;
2458
3555
  registerTypeUrl(): void;
2459
3556
  };
3557
+ /**
3558
+ * @name DenomDecimals
3559
+ * @package injective.exchange.v1beta1
3560
+ * @see proto type: injective.exchange.v1beta1.DenomDecimals
3561
+ */
2460
3562
  export declare const DenomDecimals: {
2461
3563
  typeUrl: string;
2462
3564
  is(o: any): o is DenomDecimals;
@@ -2472,6 +3574,11 @@ export declare const DenomDecimals: {
2472
3574
  toProtoMsg(message: DenomDecimals): DenomDecimalsProtoMsg;
2473
3575
  registerTypeUrl(): void;
2474
3576
  };
3577
+ /**
3578
+ * @name GrantAuthorization
3579
+ * @package injective.exchange.v1beta1
3580
+ * @see proto type: injective.exchange.v1beta1.GrantAuthorization
3581
+ */
2475
3582
  export declare const GrantAuthorization: {
2476
3583
  typeUrl: string;
2477
3584
  is(o: any): o is GrantAuthorization;
@@ -2487,6 +3594,11 @@ export declare const GrantAuthorization: {
2487
3594
  toProtoMsg(message: GrantAuthorization): GrantAuthorizationProtoMsg;
2488
3595
  registerTypeUrl(): void;
2489
3596
  };
3597
+ /**
3598
+ * @name ActiveGrant
3599
+ * @package injective.exchange.v1beta1
3600
+ * @see proto type: injective.exchange.v1beta1.ActiveGrant
3601
+ */
2490
3602
  export declare const ActiveGrant: {
2491
3603
  typeUrl: string;
2492
3604
  is(o: any): o is ActiveGrant;
@@ -2502,6 +3614,11 @@ export declare const ActiveGrant: {
2502
3614
  toProtoMsg(message: ActiveGrant): ActiveGrantProtoMsg;
2503
3615
  registerTypeUrl(): void;
2504
3616
  };
3617
+ /**
3618
+ * @name EffectiveGrant
3619
+ * @package injective.exchange.v1beta1
3620
+ * @see proto type: injective.exchange.v1beta1.EffectiveGrant
3621
+ */
2505
3622
  export declare const EffectiveGrant: {
2506
3623
  typeUrl: string;
2507
3624
  is(o: any): o is EffectiveGrant;