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
@@ -12,13 +12,22 @@ export declare enum ExchangeType {
12
12
  export declare const ExchangeTypeAmino: typeof ExchangeType;
13
13
  export declare function exchangeTypeFromJSON(object: any): ExchangeType;
14
14
  export declare function exchangeTypeToJSON(object: ExchangeType): string;
15
+ /**
16
+ * @name SpotMarketParamUpdateProposal
17
+ * @package injective.exchange.v1beta1
18
+ * @see proto type: injective.exchange.v1beta1.SpotMarketParamUpdateProposal
19
+ */
15
20
  export interface SpotMarketParamUpdateProposal {
16
21
  title: string;
17
22
  description: string;
18
23
  marketId: string;
19
- /** maker_fee_rate defines the trade fee rate for makers on the spot market */
24
+ /**
25
+ * maker_fee_rate defines the trade fee rate for makers on the spot market
26
+ */
20
27
  makerFeeRate?: string;
21
- /** taker_fee_rate defines the trade fee rate for takers on the spot market */
28
+ /**
29
+ * taker_fee_rate defines the trade fee rate for takers on the spot market
30
+ */
22
31
  takerFeeRate?: string;
23
32
  /**
24
33
  * relayer_fee_share_rate defines the relayer fee share rate for the spot
@@ -48,13 +57,22 @@ export interface SpotMarketParamUpdateProposalProtoMsg {
48
57
  typeUrl: "/injective.exchange.v1beta1.SpotMarketParamUpdateProposal";
49
58
  value: Uint8Array;
50
59
  }
60
+ /**
61
+ * @name SpotMarketParamUpdateProposalAmino
62
+ * @package injective.exchange.v1beta1
63
+ * @see proto type: injective.exchange.v1beta1.SpotMarketParamUpdateProposal
64
+ */
51
65
  export interface SpotMarketParamUpdateProposalAmino {
52
66
  title: string;
53
67
  description: string;
54
68
  market_id: string;
55
- /** maker_fee_rate defines the trade fee rate for makers on the spot market */
69
+ /**
70
+ * maker_fee_rate defines the trade fee rate for makers on the spot market
71
+ */
56
72
  maker_fee_rate?: string;
57
- /** taker_fee_rate defines the trade fee rate for takers on the spot market */
73
+ /**
74
+ * taker_fee_rate defines the trade fee rate for takers on the spot market
75
+ */
58
76
  taker_fee_rate?: string;
59
77
  /**
60
78
  * relayer_fee_share_rate defines the relayer fee share rate for the spot
@@ -84,6 +102,11 @@ export interface SpotMarketParamUpdateProposalAminoMsg {
84
102
  type: "exchange/SpotMarketParamUpdateProposal";
85
103
  value: SpotMarketParamUpdateProposalAmino;
86
104
  }
105
+ /**
106
+ * @name ExchangeEnableProposal
107
+ * @package injective.exchange.v1beta1
108
+ * @see proto type: injective.exchange.v1beta1.ExchangeEnableProposal
109
+ */
87
110
  export interface ExchangeEnableProposal {
88
111
  title: string;
89
112
  description: string;
@@ -93,6 +116,11 @@ export interface ExchangeEnableProposalProtoMsg {
93
116
  typeUrl: "/injective.exchange.v1beta1.ExchangeEnableProposal";
94
117
  value: Uint8Array;
95
118
  }
119
+ /**
120
+ * @name ExchangeEnableProposalAmino
121
+ * @package injective.exchange.v1beta1
122
+ * @see proto type: injective.exchange.v1beta1.ExchangeEnableProposal
123
+ */
96
124
  export interface ExchangeEnableProposalAmino {
97
125
  title: string;
98
126
  description: string;
@@ -102,6 +130,11 @@ export interface ExchangeEnableProposalAminoMsg {
102
130
  type: "exchange/ExchangeEnableProposal";
103
131
  value: ExchangeEnableProposalAmino;
104
132
  }
133
+ /**
134
+ * @name BatchExchangeModificationProposal
135
+ * @package injective.exchange.v1beta1
136
+ * @see proto type: injective.exchange.v1beta1.BatchExchangeModificationProposal
137
+ */
105
138
  export interface BatchExchangeModificationProposal {
106
139
  title: string;
107
140
  description: string;
@@ -121,6 +154,11 @@ export interface BatchExchangeModificationProposalProtoMsg {
121
154
  typeUrl: "/injective.exchange.v1beta1.BatchExchangeModificationProposal";
122
155
  value: Uint8Array;
123
156
  }
157
+ /**
158
+ * @name BatchExchangeModificationProposalAmino
159
+ * @package injective.exchange.v1beta1
160
+ * @see proto type: injective.exchange.v1beta1.BatchExchangeModificationProposal
161
+ */
124
162
  export interface BatchExchangeModificationProposalAmino {
125
163
  title: string;
126
164
  description: string;
@@ -143,28 +181,45 @@ export interface BatchExchangeModificationProposalAminoMsg {
143
181
  /**
144
182
  * SpotMarketLaunchProposal defines a SDK message for proposing a new spot
145
183
  * market through governance
184
+ * @name SpotMarketLaunchProposal
185
+ * @package injective.exchange.v1beta1
186
+ * @see proto type: injective.exchange.v1beta1.SpotMarketLaunchProposal
146
187
  */
147
188
  export interface SpotMarketLaunchProposal {
148
189
  title: string;
149
190
  description: string;
150
- /** Ticker for the spot market. */
191
+ /**
192
+ * Ticker for the spot market.
193
+ */
151
194
  ticker: string;
152
- /** type of coin to use as the base currency */
195
+ /**
196
+ * type of coin to use as the base currency
197
+ */
153
198
  baseDenom: string;
154
- /** type of coin to use as the quote currency */
199
+ /**
200
+ * type of coin to use as the quote currency
201
+ */
155
202
  quoteDenom: string;
156
- /** min_price_tick_size defines the minimum tick size of the order's price */
203
+ /**
204
+ * min_price_tick_size defines the minimum tick size of the order's price
205
+ */
157
206
  minPriceTickSize: string;
158
207
  /**
159
208
  * min_quantity_tick_size defines the minimum tick size of the order's
160
209
  * quantity
161
210
  */
162
211
  minQuantityTickSize: string;
163
- /** maker_fee_rate defines the fee percentage makers pay when trading */
212
+ /**
213
+ * maker_fee_rate defines the fee percentage makers pay when trading
214
+ */
164
215
  makerFeeRate?: string;
165
- /** taker_fee_rate defines the fee percentage takers pay when trading */
216
+ /**
217
+ * taker_fee_rate defines the fee percentage takers pay when trading
218
+ */
166
219
  takerFeeRate?: string;
167
- /** min_notional defines the minimum notional for orders in the market */
220
+ /**
221
+ * min_notional defines the minimum notional for orders in the market
222
+ */
168
223
  minNotional: string;
169
224
  adminInfo?: AdminInfo;
170
225
  }
@@ -175,28 +230,45 @@ export interface SpotMarketLaunchProposalProtoMsg {
175
230
  /**
176
231
  * SpotMarketLaunchProposal defines a SDK message for proposing a new spot
177
232
  * market through governance
233
+ * @name SpotMarketLaunchProposalAmino
234
+ * @package injective.exchange.v1beta1
235
+ * @see proto type: injective.exchange.v1beta1.SpotMarketLaunchProposal
178
236
  */
179
237
  export interface SpotMarketLaunchProposalAmino {
180
238
  title: string;
181
239
  description: string;
182
- /** Ticker for the spot market. */
240
+ /**
241
+ * Ticker for the spot market.
242
+ */
183
243
  ticker: string;
184
- /** type of coin to use as the base currency */
244
+ /**
245
+ * type of coin to use as the base currency
246
+ */
185
247
  base_denom: string;
186
- /** type of coin to use as the quote currency */
248
+ /**
249
+ * type of coin to use as the quote currency
250
+ */
187
251
  quote_denom: string;
188
- /** min_price_tick_size defines the minimum tick size of the order's price */
252
+ /**
253
+ * min_price_tick_size defines the minimum tick size of the order's price
254
+ */
189
255
  min_price_tick_size: string;
190
256
  /**
191
257
  * min_quantity_tick_size defines the minimum tick size of the order's
192
258
  * quantity
193
259
  */
194
260
  min_quantity_tick_size: string;
195
- /** maker_fee_rate defines the fee percentage makers pay when trading */
261
+ /**
262
+ * maker_fee_rate defines the fee percentage makers pay when trading
263
+ */
196
264
  maker_fee_rate?: string;
197
- /** taker_fee_rate defines the fee percentage takers pay when trading */
265
+ /**
266
+ * taker_fee_rate defines the fee percentage takers pay when trading
267
+ */
198
268
  taker_fee_rate?: string;
199
- /** min_notional defines the minimum notional for orders in the market */
269
+ /**
270
+ * min_notional defines the minimum notional for orders in the market
271
+ */
200
272
  min_notional: string;
201
273
  admin_info?: AdminInfoAmino;
202
274
  }
@@ -207,21 +279,36 @@ export interface SpotMarketLaunchProposalAminoMsg {
207
279
  /**
208
280
  * PerpetualMarketLaunchProposal defines a SDK message for proposing a new
209
281
  * perpetual futures market through governance
282
+ * @name PerpetualMarketLaunchProposal
283
+ * @package injective.exchange.v1beta1
284
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketLaunchProposal
210
285
  */
211
286
  export interface PerpetualMarketLaunchProposal {
212
287
  title: string;
213
288
  description: string;
214
- /** Ticker for the derivative market. */
289
+ /**
290
+ * Ticker for the derivative market.
291
+ */
215
292
  ticker: string;
216
- /** type of coin to use as the base currency */
293
+ /**
294
+ * type of coin to use as the base currency
295
+ */
217
296
  quoteDenom: string;
218
- /** Oracle base currency */
297
+ /**
298
+ * Oracle base currency
299
+ */
219
300
  oracleBase: string;
220
- /** Oracle quote currency */
301
+ /**
302
+ * Oracle quote currency
303
+ */
221
304
  oracleQuote: string;
222
- /** Scale factor for oracle prices. */
305
+ /**
306
+ * Scale factor for oracle prices.
307
+ */
223
308
  oracleScaleFactor: number;
224
- /** Oracle type */
309
+ /**
310
+ * Oracle type
311
+ */
225
312
  oracleType: OracleType;
226
313
  /**
227
314
  * initial_margin_ratio defines the initial margin ratio for the derivative
@@ -267,21 +354,36 @@ export interface PerpetualMarketLaunchProposalProtoMsg {
267
354
  /**
268
355
  * PerpetualMarketLaunchProposal defines a SDK message for proposing a new
269
356
  * perpetual futures market through governance
357
+ * @name PerpetualMarketLaunchProposalAmino
358
+ * @package injective.exchange.v1beta1
359
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketLaunchProposal
270
360
  */
271
361
  export interface PerpetualMarketLaunchProposalAmino {
272
362
  title: string;
273
363
  description: string;
274
- /** Ticker for the derivative market. */
364
+ /**
365
+ * Ticker for the derivative market.
366
+ */
275
367
  ticker: string;
276
- /** type of coin to use as the base currency */
368
+ /**
369
+ * type of coin to use as the base currency
370
+ */
277
371
  quote_denom: string;
278
- /** Oracle base currency */
372
+ /**
373
+ * Oracle base currency
374
+ */
279
375
  oracle_base: string;
280
- /** Oracle quote currency */
376
+ /**
377
+ * Oracle quote currency
378
+ */
281
379
  oracle_quote: string;
282
- /** Scale factor for oracle prices. */
380
+ /**
381
+ * Scale factor for oracle prices.
382
+ */
283
383
  oracle_scale_factor: number;
284
- /** Oracle type */
384
+ /**
385
+ * Oracle type
386
+ */
285
387
  oracle_type: OracleType;
286
388
  /**
287
389
  * initial_margin_ratio defines the initial margin ratio for the derivative
@@ -324,30 +426,57 @@ export interface PerpetualMarketLaunchProposalAminoMsg {
324
426
  type: "exchange/PerpetualMarketLaunchProposal";
325
427
  value: PerpetualMarketLaunchProposalAmino;
326
428
  }
429
+ /**
430
+ * @name BinaryOptionsMarketLaunchProposal
431
+ * @package injective.exchange.v1beta1
432
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarketLaunchProposal
433
+ */
327
434
  export interface BinaryOptionsMarketLaunchProposal {
328
435
  title: string;
329
436
  description: string;
330
- /** Ticker for the derivative contract. */
437
+ /**
438
+ * Ticker for the derivative contract.
439
+ */
331
440
  ticker: string;
332
- /** Oracle symbol */
441
+ /**
442
+ * Oracle symbol
443
+ */
333
444
  oracleSymbol: string;
334
- /** Oracle Provider */
445
+ /**
446
+ * Oracle Provider
447
+ */
335
448
  oracleProvider: string;
336
- /** Oracle type */
449
+ /**
450
+ * Oracle type
451
+ */
337
452
  oracleType: OracleType;
338
- /** Scale factor for oracle prices. */
453
+ /**
454
+ * Scale factor for oracle prices.
455
+ */
339
456
  oracleScaleFactor: number;
340
- /** expiration timestamp */
457
+ /**
458
+ * expiration timestamp
459
+ */
341
460
  expirationTimestamp: bigint;
342
- /** expiration timestamp */
461
+ /**
462
+ * expiration timestamp
463
+ */
343
464
  settlementTimestamp: bigint;
344
- /** admin of the market */
465
+ /**
466
+ * admin of the market
467
+ */
345
468
  admin: string;
346
- /** Address of the quote currency denomination for the binary options contract */
469
+ /**
470
+ * Address of the quote currency denomination for the binary options contract
471
+ */
347
472
  quoteDenom: string;
348
- /** maker_fee_rate defines the maker fee rate of a binary options market */
473
+ /**
474
+ * maker_fee_rate defines the maker fee rate of a binary options market
475
+ */
349
476
  makerFeeRate: string;
350
- /** taker_fee_rate defines the taker fee rate of a derivative market */
477
+ /**
478
+ * taker_fee_rate defines the taker fee rate of a derivative market
479
+ */
351
480
  takerFeeRate: string;
352
481
  /**
353
482
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -370,30 +499,57 @@ export interface BinaryOptionsMarketLaunchProposalProtoMsg {
370
499
  typeUrl: "/injective.exchange.v1beta1.BinaryOptionsMarketLaunchProposal";
371
500
  value: Uint8Array;
372
501
  }
502
+ /**
503
+ * @name BinaryOptionsMarketLaunchProposalAmino
504
+ * @package injective.exchange.v1beta1
505
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarketLaunchProposal
506
+ */
373
507
  export interface BinaryOptionsMarketLaunchProposalAmino {
374
508
  title: string;
375
509
  description: string;
376
- /** Ticker for the derivative contract. */
510
+ /**
511
+ * Ticker for the derivative contract.
512
+ */
377
513
  ticker: string;
378
- /** Oracle symbol */
514
+ /**
515
+ * Oracle symbol
516
+ */
379
517
  oracle_symbol: string;
380
- /** Oracle Provider */
518
+ /**
519
+ * Oracle Provider
520
+ */
381
521
  oracle_provider: string;
382
- /** Oracle type */
522
+ /**
523
+ * Oracle type
524
+ */
383
525
  oracle_type: OracleType;
384
- /** Scale factor for oracle prices. */
526
+ /**
527
+ * Scale factor for oracle prices.
528
+ */
385
529
  oracle_scale_factor: number;
386
- /** expiration timestamp */
530
+ /**
531
+ * expiration timestamp
532
+ */
387
533
  expiration_timestamp: string;
388
- /** expiration timestamp */
534
+ /**
535
+ * expiration timestamp
536
+ */
389
537
  settlement_timestamp: string;
390
- /** admin of the market */
538
+ /**
539
+ * admin of the market
540
+ */
391
541
  admin: string;
392
- /** Address of the quote currency denomination for the binary options contract */
542
+ /**
543
+ * Address of the quote currency denomination for the binary options contract
544
+ */
393
545
  quote_denom: string;
394
- /** maker_fee_rate defines the maker fee rate of a binary options market */
546
+ /**
547
+ * maker_fee_rate defines the maker fee rate of a binary options market
548
+ */
395
549
  maker_fee_rate: string;
396
- /** taker_fee_rate defines the taker fee rate of a derivative market */
550
+ /**
551
+ * taker_fee_rate defines the taker fee rate of a derivative market
552
+ */
397
553
  taker_fee_rate: string;
398
554
  /**
399
555
  * min_price_tick_size defines the minimum tick size that the price and margin
@@ -419,23 +575,40 @@ export interface BinaryOptionsMarketLaunchProposalAminoMsg {
419
575
  /**
420
576
  * ExpiryFuturesMarketLaunchProposal defines a SDK message for proposing a new
421
577
  * expiry futures market through governance
578
+ * @name ExpiryFuturesMarketLaunchProposal
579
+ * @package injective.exchange.v1beta1
580
+ * @see proto type: injective.exchange.v1beta1.ExpiryFuturesMarketLaunchProposal
422
581
  */
423
582
  export interface ExpiryFuturesMarketLaunchProposal {
424
583
  title: string;
425
584
  description: string;
426
- /** Ticker for the derivative market. */
585
+ /**
586
+ * Ticker for the derivative market.
587
+ */
427
588
  ticker: string;
428
- /** type of coin to use as the quote currency */
589
+ /**
590
+ * type of coin to use as the quote currency
591
+ */
429
592
  quoteDenom: string;
430
- /** Oracle base currency */
593
+ /**
594
+ * Oracle base currency
595
+ */
431
596
  oracleBase: string;
432
- /** Oracle quote currency */
597
+ /**
598
+ * Oracle quote currency
599
+ */
433
600
  oracleQuote: string;
434
- /** Scale factor for oracle prices. */
601
+ /**
602
+ * Scale factor for oracle prices.
603
+ */
435
604
  oracleScaleFactor: number;
436
- /** Oracle type */
605
+ /**
606
+ * Oracle type
607
+ */
437
608
  oracleType: OracleType;
438
- /** Expiration time of the market */
609
+ /**
610
+ * Expiration time of the market
611
+ */
439
612
  expiry: bigint;
440
613
  /**
441
614
  * initial_margin_ratio defines the initial margin ratio for the derivative
@@ -481,23 +654,40 @@ export interface ExpiryFuturesMarketLaunchProposalProtoMsg {
481
654
  /**
482
655
  * ExpiryFuturesMarketLaunchProposal defines a SDK message for proposing a new
483
656
  * expiry futures market through governance
657
+ * @name ExpiryFuturesMarketLaunchProposalAmino
658
+ * @package injective.exchange.v1beta1
659
+ * @see proto type: injective.exchange.v1beta1.ExpiryFuturesMarketLaunchProposal
484
660
  */
485
661
  export interface ExpiryFuturesMarketLaunchProposalAmino {
486
662
  title: string;
487
663
  description: string;
488
- /** Ticker for the derivative market. */
664
+ /**
665
+ * Ticker for the derivative market.
666
+ */
489
667
  ticker: string;
490
- /** type of coin to use as the quote currency */
668
+ /**
669
+ * type of coin to use as the quote currency
670
+ */
491
671
  quote_denom: string;
492
- /** Oracle base currency */
672
+ /**
673
+ * Oracle base currency
674
+ */
493
675
  oracle_base: string;
494
- /** Oracle quote currency */
676
+ /**
677
+ * Oracle quote currency
678
+ */
495
679
  oracle_quote: string;
496
- /** Scale factor for oracle prices. */
680
+ /**
681
+ * Scale factor for oracle prices.
682
+ */
497
683
  oracle_scale_factor: number;
498
- /** Oracle type */
684
+ /**
685
+ * Oracle type
686
+ */
499
687
  oracle_type: OracleType;
500
- /** Expiration time of the market */
688
+ /**
689
+ * Expiration time of the market
690
+ */
501
691
  expiry: string;
502
692
  /**
503
693
  * initial_margin_ratio defines the initial margin ratio for the derivative
@@ -540,6 +730,11 @@ export interface ExpiryFuturesMarketLaunchProposalAminoMsg {
540
730
  type: "exchange/ExpiryFuturesMarketLaunchProposal";
541
731
  value: ExpiryFuturesMarketLaunchProposalAmino;
542
732
  }
733
+ /**
734
+ * @name DerivativeMarketParamUpdateProposal
735
+ * @package injective.exchange.v1beta1
736
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketParamUpdateProposal
737
+ */
543
738
  export interface DerivativeMarketParamUpdateProposal {
544
739
  title: string;
545
740
  description: string;
@@ -579,7 +774,9 @@ export interface DerivativeMarketParamUpdateProposal {
579
774
  * quantity
580
775
  */
581
776
  minQuantityTickSize?: string;
582
- /** hourly_interest_rate defines the hourly interest rate */
777
+ /**
778
+ * hourly_interest_rate defines the hourly interest rate
779
+ */
583
780
  hourlyInterestRate?: string;
584
781
  /**
585
782
  * hourly_funding_rate_cap defines the maximum absolute value of the hourly
@@ -600,6 +797,11 @@ export interface DerivativeMarketParamUpdateProposalProtoMsg {
600
797
  typeUrl: "/injective.exchange.v1beta1.DerivativeMarketParamUpdateProposal";
601
798
  value: Uint8Array;
602
799
  }
800
+ /**
801
+ * @name DerivativeMarketParamUpdateProposalAmino
802
+ * @package injective.exchange.v1beta1
803
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketParamUpdateProposal
804
+ */
603
805
  export interface DerivativeMarketParamUpdateProposalAmino {
604
806
  title: string;
605
807
  description: string;
@@ -639,7 +841,9 @@ export interface DerivativeMarketParamUpdateProposalAmino {
639
841
  * quantity
640
842
  */
641
843
  min_quantity_tick_size?: string;
642
- /** hourly_interest_rate defines the hourly interest rate */
844
+ /**
845
+ * hourly_interest_rate defines the hourly interest rate
846
+ */
643
847
  HourlyInterestRate?: string;
644
848
  /**
645
849
  * hourly_funding_rate_cap defines the maximum absolute value of the hourly
@@ -660,6 +864,11 @@ export interface DerivativeMarketParamUpdateProposalAminoMsg {
660
864
  type: "exchange/DerivativeMarketParamUpdateProposal";
661
865
  value: DerivativeMarketParamUpdateProposalAmino;
662
866
  }
867
+ /**
868
+ * @name AdminInfo
869
+ * @package injective.exchange.v1beta1
870
+ * @see proto type: injective.exchange.v1beta1.AdminInfo
871
+ */
663
872
  export interface AdminInfo {
664
873
  admin: string;
665
874
  adminPermissions: number;
@@ -668,6 +877,11 @@ export interface AdminInfoProtoMsg {
668
877
  typeUrl: "/injective.exchange.v1beta1.AdminInfo";
669
878
  value: Uint8Array;
670
879
  }
880
+ /**
881
+ * @name AdminInfoAmino
882
+ * @package injective.exchange.v1beta1
883
+ * @see proto type: injective.exchange.v1beta1.AdminInfo
884
+ */
671
885
  export interface AdminInfoAmino {
672
886
  admin: string;
673
887
  admin_permissions: number;
@@ -676,6 +890,11 @@ export interface AdminInfoAminoMsg {
676
890
  type: "/injective.exchange.v1beta1.AdminInfo";
677
891
  value: AdminInfoAmino;
678
892
  }
893
+ /**
894
+ * @name MarketForcedSettlementProposal
895
+ * @package injective.exchange.v1beta1
896
+ * @see proto type: injective.exchange.v1beta1.MarketForcedSettlementProposal
897
+ */
679
898
  export interface MarketForcedSettlementProposal {
680
899
  title: string;
681
900
  description: string;
@@ -686,6 +905,11 @@ export interface MarketForcedSettlementProposalProtoMsg {
686
905
  typeUrl: "/injective.exchange.v1beta1.MarketForcedSettlementProposal";
687
906
  value: Uint8Array;
688
907
  }
908
+ /**
909
+ * @name MarketForcedSettlementProposalAmino
910
+ * @package injective.exchange.v1beta1
911
+ * @see proto type: injective.exchange.v1beta1.MarketForcedSettlementProposal
912
+ */
689
913
  export interface MarketForcedSettlementProposalAmino {
690
914
  title: string;
691
915
  description: string;
@@ -696,6 +920,11 @@ export interface MarketForcedSettlementProposalAminoMsg {
696
920
  type: "exchange/MarketForcedSettlementProposal";
697
921
  value: MarketForcedSettlementProposalAmino;
698
922
  }
923
+ /**
924
+ * @name UpdateDenomDecimalsProposal
925
+ * @package injective.exchange.v1beta1
926
+ * @see proto type: injective.exchange.v1beta1.UpdateDenomDecimalsProposal
927
+ */
699
928
  export interface UpdateDenomDecimalsProposal {
700
929
  title: string;
701
930
  description: string;
@@ -705,6 +934,11 @@ export interface UpdateDenomDecimalsProposalProtoMsg {
705
934
  typeUrl: "/injective.exchange.v1beta1.UpdateDenomDecimalsProposal";
706
935
  value: Uint8Array;
707
936
  }
937
+ /**
938
+ * @name UpdateDenomDecimalsProposalAmino
939
+ * @package injective.exchange.v1beta1
940
+ * @see proto type: injective.exchange.v1beta1.UpdateDenomDecimalsProposal
941
+ */
708
942
  export interface UpdateDenomDecimalsProposalAmino {
709
943
  title: string;
710
944
  description: string;
@@ -714,6 +948,11 @@ export interface UpdateDenomDecimalsProposalAminoMsg {
714
948
  type: "exchange/UpdateDenomDecimalsProposal";
715
949
  value: UpdateDenomDecimalsProposalAmino;
716
950
  }
951
+ /**
952
+ * @name BinaryOptionsMarketParamUpdateProposal
953
+ * @package injective.exchange.v1beta1
954
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarketParamUpdateProposal
955
+ */
717
956
  export interface BinaryOptionsMarketParamUpdateProposal {
718
957
  title: string;
719
958
  description: string;
@@ -743,13 +982,21 @@ export interface BinaryOptionsMarketParamUpdateProposal {
743
982
  * quantity
744
983
  */
745
984
  minQuantityTickSize?: string;
746
- /** expiration timestamp */
985
+ /**
986
+ * expiration timestamp
987
+ */
747
988
  expirationTimestamp: bigint;
748
- /** expiration timestamp */
989
+ /**
990
+ * expiration timestamp
991
+ */
749
992
  settlementTimestamp: bigint;
750
- /** new price at which market will be settled */
993
+ /**
994
+ * new price at which market will be settled
995
+ */
751
996
  settlementPrice?: string;
752
- /** admin of the market */
997
+ /**
998
+ * admin of the market
999
+ */
753
1000
  admin: string;
754
1001
  status: MarketStatus;
755
1002
  oracleParams?: ProviderOracleParams;
@@ -764,6 +1011,11 @@ export interface BinaryOptionsMarketParamUpdateProposalProtoMsg {
764
1011
  typeUrl: "/injective.exchange.v1beta1.BinaryOptionsMarketParamUpdateProposal";
765
1012
  value: Uint8Array;
766
1013
  }
1014
+ /**
1015
+ * @name BinaryOptionsMarketParamUpdateProposalAmino
1016
+ * @package injective.exchange.v1beta1
1017
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarketParamUpdateProposal
1018
+ */
767
1019
  export interface BinaryOptionsMarketParamUpdateProposalAmino {
768
1020
  title: string;
769
1021
  description: string;
@@ -793,13 +1045,21 @@ export interface BinaryOptionsMarketParamUpdateProposalAmino {
793
1045
  * quantity
794
1046
  */
795
1047
  min_quantity_tick_size?: string;
796
- /** expiration timestamp */
1048
+ /**
1049
+ * expiration timestamp
1050
+ */
797
1051
  expiration_timestamp: string;
798
- /** expiration timestamp */
1052
+ /**
1053
+ * expiration timestamp
1054
+ */
799
1055
  settlement_timestamp: string;
800
- /** new price at which market will be settled */
1056
+ /**
1057
+ * new price at which market will be settled
1058
+ */
801
1059
  settlement_price?: string;
802
- /** admin of the market */
1060
+ /**
1061
+ * admin of the market
1062
+ */
803
1063
  admin: string;
804
1064
  status: MarketStatus;
805
1065
  oracle_params?: ProviderOracleParamsAmino;
@@ -814,62 +1074,119 @@ export interface BinaryOptionsMarketParamUpdateProposalAminoMsg {
814
1074
  type: "exchange/BinaryOptionsMarketParamUpdateProposal";
815
1075
  value: BinaryOptionsMarketParamUpdateProposalAmino;
816
1076
  }
1077
+ /**
1078
+ * @name ProviderOracleParams
1079
+ * @package injective.exchange.v1beta1
1080
+ * @see proto type: injective.exchange.v1beta1.ProviderOracleParams
1081
+ */
817
1082
  export interface ProviderOracleParams {
818
- /** Oracle base currency */
1083
+ /**
1084
+ * Oracle base currency
1085
+ */
819
1086
  symbol: string;
820
- /** Oracle quote currency */
1087
+ /**
1088
+ * Oracle quote currency
1089
+ */
821
1090
  provider: string;
822
- /** Scale factor for oracle prices. */
1091
+ /**
1092
+ * Scale factor for oracle prices.
1093
+ */
823
1094
  oracleScaleFactor: number;
824
- /** Oracle type */
1095
+ /**
1096
+ * Oracle type
1097
+ */
825
1098
  oracleType: OracleType;
826
1099
  }
827
1100
  export interface ProviderOracleParamsProtoMsg {
828
1101
  typeUrl: "/injective.exchange.v1beta1.ProviderOracleParams";
829
1102
  value: Uint8Array;
830
1103
  }
1104
+ /**
1105
+ * @name ProviderOracleParamsAmino
1106
+ * @package injective.exchange.v1beta1
1107
+ * @see proto type: injective.exchange.v1beta1.ProviderOracleParams
1108
+ */
831
1109
  export interface ProviderOracleParamsAmino {
832
- /** Oracle base currency */
1110
+ /**
1111
+ * Oracle base currency
1112
+ */
833
1113
  symbol: string;
834
- /** Oracle quote currency */
1114
+ /**
1115
+ * Oracle quote currency
1116
+ */
835
1117
  provider: string;
836
- /** Scale factor for oracle prices. */
1118
+ /**
1119
+ * Scale factor for oracle prices.
1120
+ */
837
1121
  oracle_scale_factor: number;
838
- /** Oracle type */
1122
+ /**
1123
+ * Oracle type
1124
+ */
839
1125
  oracle_type: OracleType;
840
1126
  }
841
1127
  export interface ProviderOracleParamsAminoMsg {
842
1128
  type: "/injective.exchange.v1beta1.ProviderOracleParams";
843
1129
  value: ProviderOracleParamsAmino;
844
1130
  }
1131
+ /**
1132
+ * @name OracleParams
1133
+ * @package injective.exchange.v1beta1
1134
+ * @see proto type: injective.exchange.v1beta1.OracleParams
1135
+ */
845
1136
  export interface OracleParams {
846
- /** Oracle base currency */
1137
+ /**
1138
+ * Oracle base currency
1139
+ */
847
1140
  oracleBase: string;
848
- /** Oracle quote currency */
1141
+ /**
1142
+ * Oracle quote currency
1143
+ */
849
1144
  oracleQuote: string;
850
- /** Scale factor for oracle prices. */
1145
+ /**
1146
+ * Scale factor for oracle prices.
1147
+ */
851
1148
  oracleScaleFactor: number;
852
- /** Oracle type */
1149
+ /**
1150
+ * Oracle type
1151
+ */
853
1152
  oracleType: OracleType;
854
1153
  }
855
1154
  export interface OracleParamsProtoMsg {
856
1155
  typeUrl: "/injective.exchange.v1beta1.OracleParams";
857
1156
  value: Uint8Array;
858
1157
  }
1158
+ /**
1159
+ * @name OracleParamsAmino
1160
+ * @package injective.exchange.v1beta1
1161
+ * @see proto type: injective.exchange.v1beta1.OracleParams
1162
+ */
859
1163
  export interface OracleParamsAmino {
860
- /** Oracle base currency */
1164
+ /**
1165
+ * Oracle base currency
1166
+ */
861
1167
  oracle_base: string;
862
- /** Oracle quote currency */
1168
+ /**
1169
+ * Oracle quote currency
1170
+ */
863
1171
  oracle_quote: string;
864
- /** Scale factor for oracle prices. */
1172
+ /**
1173
+ * Scale factor for oracle prices.
1174
+ */
865
1175
  oracle_scale_factor: number;
866
- /** Oracle type */
1176
+ /**
1177
+ * Oracle type
1178
+ */
867
1179
  oracle_type: OracleType;
868
1180
  }
869
1181
  export interface OracleParamsAminoMsg {
870
1182
  type: "/injective.exchange.v1beta1.OracleParams";
871
1183
  value: OracleParamsAmino;
872
1184
  }
1185
+ /**
1186
+ * @name TradingRewardCampaignLaunchProposal
1187
+ * @package injective.exchange.v1beta1
1188
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignLaunchProposal
1189
+ */
873
1190
  export interface TradingRewardCampaignLaunchProposal {
874
1191
  title: string;
875
1192
  description: string;
@@ -880,6 +1197,11 @@ export interface TradingRewardCampaignLaunchProposalProtoMsg {
880
1197
  typeUrl: "/injective.exchange.v1beta1.TradingRewardCampaignLaunchProposal";
881
1198
  value: Uint8Array;
882
1199
  }
1200
+ /**
1201
+ * @name TradingRewardCampaignLaunchProposalAmino
1202
+ * @package injective.exchange.v1beta1
1203
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignLaunchProposal
1204
+ */
883
1205
  export interface TradingRewardCampaignLaunchProposalAmino {
884
1206
  title: string;
885
1207
  description: string;
@@ -890,6 +1212,11 @@ export interface TradingRewardCampaignLaunchProposalAminoMsg {
890
1212
  type: "exchange/TradingRewardCampaignLaunchProposal";
891
1213
  value: TradingRewardCampaignLaunchProposalAmino;
892
1214
  }
1215
+ /**
1216
+ * @name TradingRewardCampaignUpdateProposal
1217
+ * @package injective.exchange.v1beta1
1218
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignUpdateProposal
1219
+ */
893
1220
  export interface TradingRewardCampaignUpdateProposal {
894
1221
  title: string;
895
1222
  description: string;
@@ -901,6 +1228,11 @@ export interface TradingRewardCampaignUpdateProposalProtoMsg {
901
1228
  typeUrl: "/injective.exchange.v1beta1.TradingRewardCampaignUpdateProposal";
902
1229
  value: Uint8Array;
903
1230
  }
1231
+ /**
1232
+ * @name TradingRewardCampaignUpdateProposalAmino
1233
+ * @package injective.exchange.v1beta1
1234
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignUpdateProposal
1235
+ */
904
1236
  export interface TradingRewardCampaignUpdateProposalAmino {
905
1237
  title: string;
906
1238
  description: string;
@@ -912,24 +1244,43 @@ export interface TradingRewardCampaignUpdateProposalAminoMsg {
912
1244
  type: "exchange/TradingRewardCampaignUpdateProposal";
913
1245
  value: TradingRewardCampaignUpdateProposalAmino;
914
1246
  }
1247
+ /**
1248
+ * @name RewardPointUpdate
1249
+ * @package injective.exchange.v1beta1
1250
+ * @see proto type: injective.exchange.v1beta1.RewardPointUpdate
1251
+ */
915
1252
  export interface RewardPointUpdate {
916
1253
  accountAddress: string;
917
- /** new_points overwrites the current trading reward points for the account */
1254
+ /**
1255
+ * new_points overwrites the current trading reward points for the account
1256
+ */
918
1257
  newPoints: string;
919
1258
  }
920
1259
  export interface RewardPointUpdateProtoMsg {
921
1260
  typeUrl: "/injective.exchange.v1beta1.RewardPointUpdate";
922
1261
  value: Uint8Array;
923
1262
  }
1263
+ /**
1264
+ * @name RewardPointUpdateAmino
1265
+ * @package injective.exchange.v1beta1
1266
+ * @see proto type: injective.exchange.v1beta1.RewardPointUpdate
1267
+ */
924
1268
  export interface RewardPointUpdateAmino {
925
1269
  account_address: string;
926
- /** new_points overwrites the current trading reward points for the account */
1270
+ /**
1271
+ * new_points overwrites the current trading reward points for the account
1272
+ */
927
1273
  new_points: string;
928
1274
  }
929
1275
  export interface RewardPointUpdateAminoMsg {
930
1276
  type: "/injective.exchange.v1beta1.RewardPointUpdate";
931
1277
  value: RewardPointUpdateAmino;
932
1278
  }
1279
+ /**
1280
+ * @name TradingRewardPendingPointsUpdateProposal
1281
+ * @package injective.exchange.v1beta1
1282
+ * @see proto type: injective.exchange.v1beta1.TradingRewardPendingPointsUpdateProposal
1283
+ */
933
1284
  export interface TradingRewardPendingPointsUpdateProposal {
934
1285
  title: string;
935
1286
  description: string;
@@ -940,6 +1291,11 @@ export interface TradingRewardPendingPointsUpdateProposalProtoMsg {
940
1291
  typeUrl: "/injective.exchange.v1beta1.TradingRewardPendingPointsUpdateProposal";
941
1292
  value: Uint8Array;
942
1293
  }
1294
+ /**
1295
+ * @name TradingRewardPendingPointsUpdateProposalAmino
1296
+ * @package injective.exchange.v1beta1
1297
+ * @see proto type: injective.exchange.v1beta1.TradingRewardPendingPointsUpdateProposal
1298
+ */
943
1299
  export interface TradingRewardPendingPointsUpdateProposalAmino {
944
1300
  title: string;
945
1301
  description: string;
@@ -950,6 +1306,11 @@ export interface TradingRewardPendingPointsUpdateProposalAminoMsg {
950
1306
  type: "exchange/TradingRewardPendingPointsUpdateProposal";
951
1307
  value: TradingRewardPendingPointsUpdateProposalAmino;
952
1308
  }
1309
+ /**
1310
+ * @name FeeDiscountProposal
1311
+ * @package injective.exchange.v1beta1
1312
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountProposal
1313
+ */
953
1314
  export interface FeeDiscountProposal {
954
1315
  title: string;
955
1316
  description: string;
@@ -959,6 +1320,11 @@ export interface FeeDiscountProposalProtoMsg {
959
1320
  typeUrl: "/injective.exchange.v1beta1.FeeDiscountProposal";
960
1321
  value: Uint8Array;
961
1322
  }
1323
+ /**
1324
+ * @name FeeDiscountProposalAmino
1325
+ * @package injective.exchange.v1beta1
1326
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountProposal
1327
+ */
962
1328
  export interface FeeDiscountProposalAmino {
963
1329
  title: string;
964
1330
  description: string;
@@ -968,6 +1334,11 @@ export interface FeeDiscountProposalAminoMsg {
968
1334
  type: "exchange/FeeDiscountProposal";
969
1335
  value: FeeDiscountProposalAmino;
970
1336
  }
1337
+ /**
1338
+ * @name BatchCommunityPoolSpendProposal
1339
+ * @package injective.exchange.v1beta1
1340
+ * @see proto type: injective.exchange.v1beta1.BatchCommunityPoolSpendProposal
1341
+ */
971
1342
  export interface BatchCommunityPoolSpendProposal {
972
1343
  title: string;
973
1344
  description: string;
@@ -977,6 +1348,11 @@ export interface BatchCommunityPoolSpendProposalProtoMsg {
977
1348
  typeUrl: "/injective.exchange.v1beta1.BatchCommunityPoolSpendProposal";
978
1349
  value: Uint8Array;
979
1350
  }
1351
+ /**
1352
+ * @name BatchCommunityPoolSpendProposalAmino
1353
+ * @package injective.exchange.v1beta1
1354
+ * @see proto type: injective.exchange.v1beta1.BatchCommunityPoolSpendProposal
1355
+ */
980
1356
  export interface BatchCommunityPoolSpendProposalAmino {
981
1357
  title: string;
982
1358
  description: string;
@@ -989,6 +1365,9 @@ export interface BatchCommunityPoolSpendProposalAminoMsg {
989
1365
  /**
990
1366
  * AtomicMarketOrderFeeMultiplierScheduleProposal defines a SDK message for
991
1367
  * proposing new atomic take fee multipliers for specified markets
1368
+ * @name AtomicMarketOrderFeeMultiplierScheduleProposal
1369
+ * @package injective.exchange.v1beta1
1370
+ * @see proto type: injective.exchange.v1beta1.AtomicMarketOrderFeeMultiplierScheduleProposal
992
1371
  */
993
1372
  export interface AtomicMarketOrderFeeMultiplierScheduleProposal {
994
1373
  title: string;
@@ -1002,6 +1381,9 @@ export interface AtomicMarketOrderFeeMultiplierScheduleProposalProtoMsg {
1002
1381
  /**
1003
1382
  * AtomicMarketOrderFeeMultiplierScheduleProposal defines a SDK message for
1004
1383
  * proposing new atomic take fee multipliers for specified markets
1384
+ * @name AtomicMarketOrderFeeMultiplierScheduleProposalAmino
1385
+ * @package injective.exchange.v1beta1
1386
+ * @see proto type: injective.exchange.v1beta1.AtomicMarketOrderFeeMultiplierScheduleProposal
1005
1387
  */
1006
1388
  export interface AtomicMarketOrderFeeMultiplierScheduleProposalAmino {
1007
1389
  title: string;
@@ -1012,6 +1394,11 @@ export interface AtomicMarketOrderFeeMultiplierScheduleProposalAminoMsg {
1012
1394
  type: "exchange/AtomicMarketOrderFeeMultiplierScheduleProposal";
1013
1395
  value: AtomicMarketOrderFeeMultiplierScheduleProposalAmino;
1014
1396
  }
1397
+ /**
1398
+ * @name SpotMarketParamUpdateProposal
1399
+ * @package injective.exchange.v1beta1
1400
+ * @see proto type: injective.exchange.v1beta1.SpotMarketParamUpdateProposal
1401
+ */
1015
1402
  export declare const SpotMarketParamUpdateProposal: {
1016
1403
  typeUrl: string;
1017
1404
  aminoType: string;
@@ -1029,6 +1416,11 @@ export declare const SpotMarketParamUpdateProposal: {
1029
1416
  toProtoMsg(message: SpotMarketParamUpdateProposal): SpotMarketParamUpdateProposalProtoMsg;
1030
1417
  registerTypeUrl(): void;
1031
1418
  };
1419
+ /**
1420
+ * @name ExchangeEnableProposal
1421
+ * @package injective.exchange.v1beta1
1422
+ * @see proto type: injective.exchange.v1beta1.ExchangeEnableProposal
1423
+ */
1032
1424
  export declare const ExchangeEnableProposal: {
1033
1425
  typeUrl: string;
1034
1426
  aminoType: string;
@@ -1046,6 +1438,11 @@ export declare const ExchangeEnableProposal: {
1046
1438
  toProtoMsg(message: ExchangeEnableProposal): ExchangeEnableProposalProtoMsg;
1047
1439
  registerTypeUrl(): void;
1048
1440
  };
1441
+ /**
1442
+ * @name BatchExchangeModificationProposal
1443
+ * @package injective.exchange.v1beta1
1444
+ * @see proto type: injective.exchange.v1beta1.BatchExchangeModificationProposal
1445
+ */
1049
1446
  export declare const BatchExchangeModificationProposal: {
1050
1447
  typeUrl: string;
1051
1448
  aminoType: string;
@@ -1063,6 +1460,13 @@ export declare const BatchExchangeModificationProposal: {
1063
1460
  toProtoMsg(message: BatchExchangeModificationProposal): BatchExchangeModificationProposalProtoMsg;
1064
1461
  registerTypeUrl(): void;
1065
1462
  };
1463
+ /**
1464
+ * SpotMarketLaunchProposal defines a SDK message for proposing a new spot
1465
+ * market through governance
1466
+ * @name SpotMarketLaunchProposal
1467
+ * @package injective.exchange.v1beta1
1468
+ * @see proto type: injective.exchange.v1beta1.SpotMarketLaunchProposal
1469
+ */
1066
1470
  export declare const SpotMarketLaunchProposal: {
1067
1471
  typeUrl: string;
1068
1472
  aminoType: string;
@@ -1080,6 +1484,13 @@ export declare const SpotMarketLaunchProposal: {
1080
1484
  toProtoMsg(message: SpotMarketLaunchProposal): SpotMarketLaunchProposalProtoMsg;
1081
1485
  registerTypeUrl(): void;
1082
1486
  };
1487
+ /**
1488
+ * PerpetualMarketLaunchProposal defines a SDK message for proposing a new
1489
+ * perpetual futures market through governance
1490
+ * @name PerpetualMarketLaunchProposal
1491
+ * @package injective.exchange.v1beta1
1492
+ * @see proto type: injective.exchange.v1beta1.PerpetualMarketLaunchProposal
1493
+ */
1083
1494
  export declare const PerpetualMarketLaunchProposal: {
1084
1495
  typeUrl: string;
1085
1496
  aminoType: string;
@@ -1097,6 +1508,11 @@ export declare const PerpetualMarketLaunchProposal: {
1097
1508
  toProtoMsg(message: PerpetualMarketLaunchProposal): PerpetualMarketLaunchProposalProtoMsg;
1098
1509
  registerTypeUrl(): void;
1099
1510
  };
1511
+ /**
1512
+ * @name BinaryOptionsMarketLaunchProposal
1513
+ * @package injective.exchange.v1beta1
1514
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarketLaunchProposal
1515
+ */
1100
1516
  export declare const BinaryOptionsMarketLaunchProposal: {
1101
1517
  typeUrl: string;
1102
1518
  aminoType: string;
@@ -1114,6 +1530,13 @@ export declare const BinaryOptionsMarketLaunchProposal: {
1114
1530
  toProtoMsg(message: BinaryOptionsMarketLaunchProposal): BinaryOptionsMarketLaunchProposalProtoMsg;
1115
1531
  registerTypeUrl(): void;
1116
1532
  };
1533
+ /**
1534
+ * ExpiryFuturesMarketLaunchProposal defines a SDK message for proposing a new
1535
+ * expiry futures market through governance
1536
+ * @name ExpiryFuturesMarketLaunchProposal
1537
+ * @package injective.exchange.v1beta1
1538
+ * @see proto type: injective.exchange.v1beta1.ExpiryFuturesMarketLaunchProposal
1539
+ */
1117
1540
  export declare const ExpiryFuturesMarketLaunchProposal: {
1118
1541
  typeUrl: string;
1119
1542
  aminoType: string;
@@ -1131,6 +1554,11 @@ export declare const ExpiryFuturesMarketLaunchProposal: {
1131
1554
  toProtoMsg(message: ExpiryFuturesMarketLaunchProposal): ExpiryFuturesMarketLaunchProposalProtoMsg;
1132
1555
  registerTypeUrl(): void;
1133
1556
  };
1557
+ /**
1558
+ * @name DerivativeMarketParamUpdateProposal
1559
+ * @package injective.exchange.v1beta1
1560
+ * @see proto type: injective.exchange.v1beta1.DerivativeMarketParamUpdateProposal
1561
+ */
1134
1562
  export declare const DerivativeMarketParamUpdateProposal: {
1135
1563
  typeUrl: string;
1136
1564
  aminoType: string;
@@ -1148,6 +1576,11 @@ export declare const DerivativeMarketParamUpdateProposal: {
1148
1576
  toProtoMsg(message: DerivativeMarketParamUpdateProposal): DerivativeMarketParamUpdateProposalProtoMsg;
1149
1577
  registerTypeUrl(): void;
1150
1578
  };
1579
+ /**
1580
+ * @name AdminInfo
1581
+ * @package injective.exchange.v1beta1
1582
+ * @see proto type: injective.exchange.v1beta1.AdminInfo
1583
+ */
1151
1584
  export declare const AdminInfo: {
1152
1585
  typeUrl: string;
1153
1586
  is(o: any): o is AdminInfo;
@@ -1163,6 +1596,11 @@ export declare const AdminInfo: {
1163
1596
  toProtoMsg(message: AdminInfo): AdminInfoProtoMsg;
1164
1597
  registerTypeUrl(): void;
1165
1598
  };
1599
+ /**
1600
+ * @name MarketForcedSettlementProposal
1601
+ * @package injective.exchange.v1beta1
1602
+ * @see proto type: injective.exchange.v1beta1.MarketForcedSettlementProposal
1603
+ */
1166
1604
  export declare const MarketForcedSettlementProposal: {
1167
1605
  typeUrl: string;
1168
1606
  aminoType: string;
@@ -1180,6 +1618,11 @@ export declare const MarketForcedSettlementProposal: {
1180
1618
  toProtoMsg(message: MarketForcedSettlementProposal): MarketForcedSettlementProposalProtoMsg;
1181
1619
  registerTypeUrl(): void;
1182
1620
  };
1621
+ /**
1622
+ * @name UpdateDenomDecimalsProposal
1623
+ * @package injective.exchange.v1beta1
1624
+ * @see proto type: injective.exchange.v1beta1.UpdateDenomDecimalsProposal
1625
+ */
1183
1626
  export declare const UpdateDenomDecimalsProposal: {
1184
1627
  typeUrl: string;
1185
1628
  aminoType: string;
@@ -1197,6 +1640,11 @@ export declare const UpdateDenomDecimalsProposal: {
1197
1640
  toProtoMsg(message: UpdateDenomDecimalsProposal): UpdateDenomDecimalsProposalProtoMsg;
1198
1641
  registerTypeUrl(): void;
1199
1642
  };
1643
+ /**
1644
+ * @name BinaryOptionsMarketParamUpdateProposal
1645
+ * @package injective.exchange.v1beta1
1646
+ * @see proto type: injective.exchange.v1beta1.BinaryOptionsMarketParamUpdateProposal
1647
+ */
1200
1648
  export declare const BinaryOptionsMarketParamUpdateProposal: {
1201
1649
  typeUrl: string;
1202
1650
  aminoType: string;
@@ -1214,6 +1662,11 @@ export declare const BinaryOptionsMarketParamUpdateProposal: {
1214
1662
  toProtoMsg(message: BinaryOptionsMarketParamUpdateProposal): BinaryOptionsMarketParamUpdateProposalProtoMsg;
1215
1663
  registerTypeUrl(): void;
1216
1664
  };
1665
+ /**
1666
+ * @name ProviderOracleParams
1667
+ * @package injective.exchange.v1beta1
1668
+ * @see proto type: injective.exchange.v1beta1.ProviderOracleParams
1669
+ */
1217
1670
  export declare const ProviderOracleParams: {
1218
1671
  typeUrl: string;
1219
1672
  is(o: any): o is ProviderOracleParams;
@@ -1229,6 +1682,11 @@ export declare const ProviderOracleParams: {
1229
1682
  toProtoMsg(message: ProviderOracleParams): ProviderOracleParamsProtoMsg;
1230
1683
  registerTypeUrl(): void;
1231
1684
  };
1685
+ /**
1686
+ * @name OracleParams
1687
+ * @package injective.exchange.v1beta1
1688
+ * @see proto type: injective.exchange.v1beta1.OracleParams
1689
+ */
1232
1690
  export declare const OracleParams: {
1233
1691
  typeUrl: string;
1234
1692
  is(o: any): o is OracleParams;
@@ -1244,6 +1702,11 @@ export declare const OracleParams: {
1244
1702
  toProtoMsg(message: OracleParams): OracleParamsProtoMsg;
1245
1703
  registerTypeUrl(): void;
1246
1704
  };
1705
+ /**
1706
+ * @name TradingRewardCampaignLaunchProposal
1707
+ * @package injective.exchange.v1beta1
1708
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignLaunchProposal
1709
+ */
1247
1710
  export declare const TradingRewardCampaignLaunchProposal: {
1248
1711
  typeUrl: string;
1249
1712
  aminoType: string;
@@ -1261,6 +1724,11 @@ export declare const TradingRewardCampaignLaunchProposal: {
1261
1724
  toProtoMsg(message: TradingRewardCampaignLaunchProposal): TradingRewardCampaignLaunchProposalProtoMsg;
1262
1725
  registerTypeUrl(): void;
1263
1726
  };
1727
+ /**
1728
+ * @name TradingRewardCampaignUpdateProposal
1729
+ * @package injective.exchange.v1beta1
1730
+ * @see proto type: injective.exchange.v1beta1.TradingRewardCampaignUpdateProposal
1731
+ */
1264
1732
  export declare const TradingRewardCampaignUpdateProposal: {
1265
1733
  typeUrl: string;
1266
1734
  aminoType: string;
@@ -1278,6 +1746,11 @@ export declare const TradingRewardCampaignUpdateProposal: {
1278
1746
  toProtoMsg(message: TradingRewardCampaignUpdateProposal): TradingRewardCampaignUpdateProposalProtoMsg;
1279
1747
  registerTypeUrl(): void;
1280
1748
  };
1749
+ /**
1750
+ * @name RewardPointUpdate
1751
+ * @package injective.exchange.v1beta1
1752
+ * @see proto type: injective.exchange.v1beta1.RewardPointUpdate
1753
+ */
1281
1754
  export declare const RewardPointUpdate: {
1282
1755
  typeUrl: string;
1283
1756
  is(o: any): o is RewardPointUpdate;
@@ -1293,6 +1766,11 @@ export declare const RewardPointUpdate: {
1293
1766
  toProtoMsg(message: RewardPointUpdate): RewardPointUpdateProtoMsg;
1294
1767
  registerTypeUrl(): void;
1295
1768
  };
1769
+ /**
1770
+ * @name TradingRewardPendingPointsUpdateProposal
1771
+ * @package injective.exchange.v1beta1
1772
+ * @see proto type: injective.exchange.v1beta1.TradingRewardPendingPointsUpdateProposal
1773
+ */
1296
1774
  export declare const TradingRewardPendingPointsUpdateProposal: {
1297
1775
  typeUrl: string;
1298
1776
  aminoType: string;
@@ -1310,6 +1788,11 @@ export declare const TradingRewardPendingPointsUpdateProposal: {
1310
1788
  toProtoMsg(message: TradingRewardPendingPointsUpdateProposal): TradingRewardPendingPointsUpdateProposalProtoMsg;
1311
1789
  registerTypeUrl(): void;
1312
1790
  };
1791
+ /**
1792
+ * @name FeeDiscountProposal
1793
+ * @package injective.exchange.v1beta1
1794
+ * @see proto type: injective.exchange.v1beta1.FeeDiscountProposal
1795
+ */
1313
1796
  export declare const FeeDiscountProposal: {
1314
1797
  typeUrl: string;
1315
1798
  aminoType: string;
@@ -1327,6 +1810,11 @@ export declare const FeeDiscountProposal: {
1327
1810
  toProtoMsg(message: FeeDiscountProposal): FeeDiscountProposalProtoMsg;
1328
1811
  registerTypeUrl(): void;
1329
1812
  };
1813
+ /**
1814
+ * @name BatchCommunityPoolSpendProposal
1815
+ * @package injective.exchange.v1beta1
1816
+ * @see proto type: injective.exchange.v1beta1.BatchCommunityPoolSpendProposal
1817
+ */
1330
1818
  export declare const BatchCommunityPoolSpendProposal: {
1331
1819
  typeUrl: string;
1332
1820
  aminoType: string;
@@ -1344,6 +1832,13 @@ export declare const BatchCommunityPoolSpendProposal: {
1344
1832
  toProtoMsg(message: BatchCommunityPoolSpendProposal): BatchCommunityPoolSpendProposalProtoMsg;
1345
1833
  registerTypeUrl(): void;
1346
1834
  };
1835
+ /**
1836
+ * AtomicMarketOrderFeeMultiplierScheduleProposal defines a SDK message for
1837
+ * proposing new atomic take fee multipliers for specified markets
1838
+ * @name AtomicMarketOrderFeeMultiplierScheduleProposal
1839
+ * @package injective.exchange.v1beta1
1840
+ * @see proto type: injective.exchange.v1beta1.AtomicMarketOrderFeeMultiplierScheduleProposal
1841
+ */
1347
1842
  export declare const AtomicMarketOrderFeeMultiplierScheduleProposal: {
1348
1843
  typeUrl: string;
1349
1844
  aminoType: string;