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
@@ -1,160 +1,335 @@
1
1
  import { buildTx } from "../../../helper-func-types";
2
2
  import { MsgDeposit, MsgWithdraw, MsgInstantSpotMarketLaunch, MsgInstantPerpetualMarketLaunch, MsgInstantExpiryFuturesMarketLaunch, MsgCreateSpotLimitOrder, MsgBatchCreateSpotLimitOrders, MsgCreateSpotMarketOrder, MsgCancelSpotOrder, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgPrivilegedExecuteContract, MsgCreateDerivativeLimitOrder, MsgBatchCreateDerivativeLimitOrders, MsgCreateDerivativeMarketOrder, MsgCancelDerivativeOrder, MsgBatchCancelDerivativeOrders, MsgInstantBinaryOptionsMarketLaunch, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCancelBinaryOptionsOrder, MsgBatchCancelBinaryOptionsOrders, MsgSubaccountTransfer, MsgExternalTransfer, MsgLiquidatePosition, MsgEmergencySettleMarket, MsgIncreasePositionMargin, MsgDecreasePositionMargin, MsgRewardsOptOut, MsgAdminUpdateBinaryOptionsMarket, MsgUpdateParams, MsgUpdateSpotMarket, MsgUpdateDerivativeMarket, MsgAuthorizeStakeGrants, MsgActivateStakeGrant } from "./tx";
3
- /* Deposit defines a method for transferring coins from the sender's bank
4
- balance into the subaccount's exchange deposits */
3
+ /**
4
+ * Deposit defines a method for transferring coins from the sender's bank
5
+ * balance into the subaccount's exchange deposits
6
+ * @name deposit
7
+ * @package injective.exchange.v1beta1
8
+ * @see proto service: injective.exchange.v1beta1.Deposit
9
+ */
5
10
  export const deposit = buildTx({
6
11
  msg: MsgDeposit
7
12
  });
8
- /* Withdraw defines a method for withdrawing coins from a subaccount's
9
- deposits to the user's bank balance */
13
+ /**
14
+ * Withdraw defines a method for withdrawing coins from a subaccount's
15
+ * deposits to the user's bank balance
16
+ * @name withdraw
17
+ * @package injective.exchange.v1beta1
18
+ * @see proto service: injective.exchange.v1beta1.Withdraw
19
+ */
10
20
  export const withdraw = buildTx({
11
21
  msg: MsgWithdraw
12
22
  });
13
- /* InstantSpotMarketLaunch defines method for creating a spot market by paying
14
- listing fee without governance */
23
+ /**
24
+ * InstantSpotMarketLaunch defines method for creating a spot market by paying
25
+ * listing fee without governance
26
+ * @name instantSpotMarketLaunch
27
+ * @package injective.exchange.v1beta1
28
+ * @see proto service: injective.exchange.v1beta1.InstantSpotMarketLaunch
29
+ */
15
30
  export const instantSpotMarketLaunch = buildTx({
16
31
  msg: MsgInstantSpotMarketLaunch
17
32
  });
18
- /* InstantPerpetualMarketLaunch defines a method for creating a new perpetual
19
- futures market by paying listing fee without governance */
33
+ /**
34
+ * InstantPerpetualMarketLaunch defines a method for creating a new perpetual
35
+ * futures market by paying listing fee without governance
36
+ * @name instantPerpetualMarketLaunch
37
+ * @package injective.exchange.v1beta1
38
+ * @see proto service: injective.exchange.v1beta1.InstantPerpetualMarketLaunch
39
+ */
20
40
  export const instantPerpetualMarketLaunch = buildTx({
21
41
  msg: MsgInstantPerpetualMarketLaunch
22
42
  });
23
- /* InstantExpiryFuturesMarketLaunch defines a method for creating a new expiry
24
- futures market by paying listing fee without governance */
43
+ /**
44
+ * InstantExpiryFuturesMarketLaunch defines a method for creating a new expiry
45
+ * futures market by paying listing fee without governance
46
+ * @name instantExpiryFuturesMarketLaunch
47
+ * @package injective.exchange.v1beta1
48
+ * @see proto service: injective.exchange.v1beta1.InstantExpiryFuturesMarketLaunch
49
+ */
25
50
  export const instantExpiryFuturesMarketLaunch = buildTx({
26
51
  msg: MsgInstantExpiryFuturesMarketLaunch
27
52
  });
28
- /* CreateSpotLimitOrder defines a method for creating a new spot limit order. */
53
+ /**
54
+ * CreateSpotLimitOrder defines a method for creating a new spot limit order.
55
+ * @name createSpotLimitOrder
56
+ * @package injective.exchange.v1beta1
57
+ * @see proto service: injective.exchange.v1beta1.CreateSpotLimitOrder
58
+ */
29
59
  export const createSpotLimitOrder = buildTx({
30
60
  msg: MsgCreateSpotLimitOrder
31
61
  });
32
- /* BatchCreateSpotLimitOrder defines a method for creating a new batch of spot
33
- limit orders. */
62
+ /**
63
+ * BatchCreateSpotLimitOrder defines a method for creating a new batch of spot
64
+ * limit orders.
65
+ * @name batchCreateSpotLimitOrders
66
+ * @package injective.exchange.v1beta1
67
+ * @see proto service: injective.exchange.v1beta1.BatchCreateSpotLimitOrders
68
+ */
34
69
  export const batchCreateSpotLimitOrders = buildTx({
35
70
  msg: MsgBatchCreateSpotLimitOrders
36
71
  });
37
- /* CreateSpotMarketOrder defines a method for creating a new spot market
38
- order. */
72
+ /**
73
+ * CreateSpotMarketOrder defines a method for creating a new spot market
74
+ * order.
75
+ * @name createSpotMarketOrder
76
+ * @package injective.exchange.v1beta1
77
+ * @see proto service: injective.exchange.v1beta1.CreateSpotMarketOrder
78
+ */
39
79
  export const createSpotMarketOrder = buildTx({
40
80
  msg: MsgCreateSpotMarketOrder
41
81
  });
42
- /* MsgCancelSpotOrder defines a method for cancelling a spot order. */
82
+ /**
83
+ * MsgCancelSpotOrder defines a method for cancelling a spot order.
84
+ * @name cancelSpotOrder
85
+ * @package injective.exchange.v1beta1
86
+ * @see proto service: injective.exchange.v1beta1.CancelSpotOrder
87
+ */
43
88
  export const cancelSpotOrder = buildTx({
44
89
  msg: MsgCancelSpotOrder
45
90
  });
46
- /* BatchCancelSpotOrders defines a method for cancelling a batch of spot
47
- orders in a given market. */
91
+ /**
92
+ * BatchCancelSpotOrders defines a method for cancelling a batch of spot
93
+ * orders in a given market.
94
+ * @name batchCancelSpotOrders
95
+ * @package injective.exchange.v1beta1
96
+ * @see proto service: injective.exchange.v1beta1.BatchCancelSpotOrders
97
+ */
48
98
  export const batchCancelSpotOrders = buildTx({
49
99
  msg: MsgBatchCancelSpotOrders
50
100
  });
51
- /* BatchUpdateOrders defines a method for updating a batch of orders. */
101
+ /**
102
+ * BatchUpdateOrders defines a method for updating a batch of orders.
103
+ * @name batchUpdateOrders
104
+ * @package injective.exchange.v1beta1
105
+ * @see proto service: injective.exchange.v1beta1.BatchUpdateOrders
106
+ */
52
107
  export const batchUpdateOrders = buildTx({
53
108
  msg: MsgBatchUpdateOrders
54
109
  });
55
- /* PrivilegedExecuteContract defines a method for executing a Cosmwasm
56
- contract from the exchange module with privileged capabilities. */
110
+ /**
111
+ * PrivilegedExecuteContract defines a method for executing a Cosmwasm
112
+ * contract from the exchange module with privileged capabilities.
113
+ * @name privilegedExecuteContract
114
+ * @package injective.exchange.v1beta1
115
+ * @see proto service: injective.exchange.v1beta1.PrivilegedExecuteContract
116
+ */
57
117
  export const privilegedExecuteContract = buildTx({
58
118
  msg: MsgPrivilegedExecuteContract
59
119
  });
60
- /* CreateDerivativeLimitOrder defines a method for creating a new derivative
61
- limit order. */
120
+ /**
121
+ * CreateDerivativeLimitOrder defines a method for creating a new derivative
122
+ * limit order.
123
+ * @name createDerivativeLimitOrder
124
+ * @package injective.exchange.v1beta1
125
+ * @see proto service: injective.exchange.v1beta1.CreateDerivativeLimitOrder
126
+ */
62
127
  export const createDerivativeLimitOrder = buildTx({
63
128
  msg: MsgCreateDerivativeLimitOrder
64
129
  });
65
- /* BatchCreateDerivativeLimitOrders defines a method for creating a new batch
66
- of derivative limit orders. */
130
+ /**
131
+ * BatchCreateDerivativeLimitOrders defines a method for creating a new batch
132
+ * of derivative limit orders.
133
+ * @name batchCreateDerivativeLimitOrders
134
+ * @package injective.exchange.v1beta1
135
+ * @see proto service: injective.exchange.v1beta1.BatchCreateDerivativeLimitOrders
136
+ */
67
137
  export const batchCreateDerivativeLimitOrders = buildTx({
68
138
  msg: MsgBatchCreateDerivativeLimitOrders
69
139
  });
70
- /* MsgCreateDerivativeLimitOrder defines a method for creating a new
71
- derivative market order. */
140
+ /**
141
+ * MsgCreateDerivativeLimitOrder defines a method for creating a new
142
+ * derivative market order.
143
+ * @name createDerivativeMarketOrder
144
+ * @package injective.exchange.v1beta1
145
+ * @see proto service: injective.exchange.v1beta1.CreateDerivativeMarketOrder
146
+ */
72
147
  export const createDerivativeMarketOrder = buildTx({
73
148
  msg: MsgCreateDerivativeMarketOrder
74
149
  });
75
- /* MsgCancelDerivativeOrder defines a method for cancelling a derivative
76
- order. */
150
+ /**
151
+ * MsgCancelDerivativeOrder defines a method for cancelling a derivative
152
+ * order.
153
+ * @name cancelDerivativeOrder
154
+ * @package injective.exchange.v1beta1
155
+ * @see proto service: injective.exchange.v1beta1.CancelDerivativeOrder
156
+ */
77
157
  export const cancelDerivativeOrder = buildTx({
78
158
  msg: MsgCancelDerivativeOrder
79
159
  });
80
- /* MsgBatchCancelDerivativeOrders defines a method for cancelling a batch of
81
- derivative limit orders. */
160
+ /**
161
+ * MsgBatchCancelDerivativeOrders defines a method for cancelling a batch of
162
+ * derivative limit orders.
163
+ * @name batchCancelDerivativeOrders
164
+ * @package injective.exchange.v1beta1
165
+ * @see proto service: injective.exchange.v1beta1.BatchCancelDerivativeOrders
166
+ */
82
167
  export const batchCancelDerivativeOrders = buildTx({
83
168
  msg: MsgBatchCancelDerivativeOrders
84
169
  });
85
- /* InstantBinaryOptionsMarketLaunch defines method for creating a binary
86
- options market by paying listing fee without governance */
170
+ /**
171
+ * InstantBinaryOptionsMarketLaunch defines method for creating a binary
172
+ * options market by paying listing fee without governance
173
+ * @name instantBinaryOptionsMarketLaunch
174
+ * @package injective.exchange.v1beta1
175
+ * @see proto service: injective.exchange.v1beta1.InstantBinaryOptionsMarketLaunch
176
+ */
87
177
  export const instantBinaryOptionsMarketLaunch = buildTx({
88
178
  msg: MsgInstantBinaryOptionsMarketLaunch
89
179
  });
90
- /* CreateBinaryOptionsLimitOrder defines a method for creating a new binary
91
- options limit order. */
180
+ /**
181
+ * CreateBinaryOptionsLimitOrder defines a method for creating a new binary
182
+ * options limit order.
183
+ * @name createBinaryOptionsLimitOrder
184
+ * @package injective.exchange.v1beta1
185
+ * @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsLimitOrder
186
+ */
92
187
  export const createBinaryOptionsLimitOrder = buildTx({
93
188
  msg: MsgCreateBinaryOptionsLimitOrder
94
189
  });
95
- /* CreateBinaryOptionsMarketOrder defines a method for creating a new binary
96
- options market order. */
190
+ /**
191
+ * CreateBinaryOptionsMarketOrder defines a method for creating a new binary
192
+ * options market order.
193
+ * @name createBinaryOptionsMarketOrder
194
+ * @package injective.exchange.v1beta1
195
+ * @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsMarketOrder
196
+ */
97
197
  export const createBinaryOptionsMarketOrder = buildTx({
98
198
  msg: MsgCreateBinaryOptionsMarketOrder
99
199
  });
100
- /* MsgCancelBinaryOptionsOrder defines a method for cancelling a binary
101
- options order. */
200
+ /**
201
+ * MsgCancelBinaryOptionsOrder defines a method for cancelling a binary
202
+ * options order.
203
+ * @name cancelBinaryOptionsOrder
204
+ * @package injective.exchange.v1beta1
205
+ * @see proto service: injective.exchange.v1beta1.CancelBinaryOptionsOrder
206
+ */
102
207
  export const cancelBinaryOptionsOrder = buildTx({
103
208
  msg: MsgCancelBinaryOptionsOrder
104
209
  });
105
- /* BatchCancelBinaryOptionsOrders defines a method for cancelling a batch of
106
- binary options limit orders. */
210
+ /**
211
+ * BatchCancelBinaryOptionsOrders defines a method for cancelling a batch of
212
+ * binary options limit orders.
213
+ * @name batchCancelBinaryOptionsOrders
214
+ * @package injective.exchange.v1beta1
215
+ * @see proto service: injective.exchange.v1beta1.BatchCancelBinaryOptionsOrders
216
+ */
107
217
  export const batchCancelBinaryOptionsOrders = buildTx({
108
218
  msg: MsgBatchCancelBinaryOptionsOrders
109
219
  });
110
- /* SubaccountTransfer defines a method for transfer between subaccounts */
220
+ /**
221
+ * SubaccountTransfer defines a method for transfer between subaccounts
222
+ * @name subaccountTransfer
223
+ * @package injective.exchange.v1beta1
224
+ * @see proto service: injective.exchange.v1beta1.SubaccountTransfer
225
+ */
111
226
  export const subaccountTransfer = buildTx({
112
227
  msg: MsgSubaccountTransfer
113
228
  });
114
- /* ExternalTransfer defines a method for transfer between external accounts */
229
+ /**
230
+ * ExternalTransfer defines a method for transfer between external accounts
231
+ * @name externalTransfer
232
+ * @package injective.exchange.v1beta1
233
+ * @see proto service: injective.exchange.v1beta1.ExternalTransfer
234
+ */
115
235
  export const externalTransfer = buildTx({
116
236
  msg: MsgExternalTransfer
117
237
  });
118
- /* LiquidatePosition defines a method for liquidating a position */
238
+ /**
239
+ * LiquidatePosition defines a method for liquidating a position
240
+ * @name liquidatePosition
241
+ * @package injective.exchange.v1beta1
242
+ * @see proto service: injective.exchange.v1beta1.LiquidatePosition
243
+ */
119
244
  export const liquidatePosition = buildTx({
120
245
  msg: MsgLiquidatePosition
121
246
  });
122
- /* EmergencySettleMarket defines a method for emergency settling a market */
247
+ /**
248
+ * EmergencySettleMarket defines a method for emergency settling a market
249
+ * @name emergencySettleMarket
250
+ * @package injective.exchange.v1beta1
251
+ * @see proto service: injective.exchange.v1beta1.EmergencySettleMarket
252
+ */
123
253
  export const emergencySettleMarket = buildTx({
124
254
  msg: MsgEmergencySettleMarket
125
255
  });
126
- /* IncreasePositionMargin defines a method for increasing margin of a position */
256
+ /**
257
+ * IncreasePositionMargin defines a method for increasing margin of a position
258
+ * @name increasePositionMargin
259
+ * @package injective.exchange.v1beta1
260
+ * @see proto service: injective.exchange.v1beta1.IncreasePositionMargin
261
+ */
127
262
  export const increasePositionMargin = buildTx({
128
263
  msg: MsgIncreasePositionMargin
129
264
  });
130
- /* DecreasePositionMargin defines a method for decreasing margin of a position */
265
+ /**
266
+ * DecreasePositionMargin defines a method for decreasing margin of a position
267
+ * @name decreasePositionMargin
268
+ * @package injective.exchange.v1beta1
269
+ * @see proto service: injective.exchange.v1beta1.DecreasePositionMargin
270
+ */
131
271
  export const decreasePositionMargin = buildTx({
132
272
  msg: MsgDecreasePositionMargin
133
273
  });
134
- /* RewardsOptOut defines a method for opting out of rewards */
274
+ /**
275
+ * RewardsOptOut defines a method for opting out of rewards
276
+ * @name rewardsOptOut
277
+ * @package injective.exchange.v1beta1
278
+ * @see proto service: injective.exchange.v1beta1.RewardsOptOut
279
+ */
135
280
  export const rewardsOptOut = buildTx({
136
281
  msg: MsgRewardsOptOut
137
282
  });
138
- /* AdminUpdateBinaryOptionsMarket defines method for updating a binary options
139
- market by admin */
283
+ /**
284
+ * AdminUpdateBinaryOptionsMarket defines method for updating a binary options
285
+ * market by admin
286
+ * @name adminUpdateBinaryOptionsMarket
287
+ * @package injective.exchange.v1beta1
288
+ * @see proto service: injective.exchange.v1beta1.AdminUpdateBinaryOptionsMarket
289
+ */
140
290
  export const adminUpdateBinaryOptionsMarket = buildTx({
141
291
  msg: MsgAdminUpdateBinaryOptionsMarket
142
292
  });
293
+ /**
294
+ * @name updateParams
295
+ * @package injective.exchange.v1beta1
296
+ * @see proto service: injective.exchange.v1beta1.UpdateParams
297
+ */
143
298
  export const updateParams = buildTx({
144
299
  msg: MsgUpdateParams
145
300
  });
146
- /* UpdateSpotMarket modifies certain spot market fields (admin only) */
301
+ /**
302
+ * UpdateSpotMarket modifies certain spot market fields (admin only)
303
+ * @name updateSpotMarket
304
+ * @package injective.exchange.v1beta1
305
+ * @see proto service: injective.exchange.v1beta1.UpdateSpotMarket
306
+ */
147
307
  export const updateSpotMarket = buildTx({
148
308
  msg: MsgUpdateSpotMarket
149
309
  });
150
- /* UpdateDerivativeMarket modifies certain derivative market fields (admin
151
- only) */
310
+ /**
311
+ * UpdateDerivativeMarket modifies certain derivative market fields (admin
312
+ * only)
313
+ * @name updateDerivativeMarket
314
+ * @package injective.exchange.v1beta1
315
+ * @see proto service: injective.exchange.v1beta1.UpdateDerivativeMarket
316
+ */
152
317
  export const updateDerivativeMarket = buildTx({
153
318
  msg: MsgUpdateDerivativeMarket
154
319
  });
320
+ /**
321
+ * @name authorizeStakeGrants
322
+ * @package injective.exchange.v1beta1
323
+ * @see proto service: injective.exchange.v1beta1.AuthorizeStakeGrants
324
+ */
155
325
  export const authorizeStakeGrants = buildTx({
156
326
  msg: MsgAuthorizeStakeGrants
157
327
  });
328
+ /**
329
+ * @name activateStakeGrant
330
+ * @package injective.exchange.v1beta1
331
+ * @see proto service: injective.exchange.v1beta1.ActivateStakeGrant
332
+ */
158
333
  export const activateStakeGrant = buildTx({
159
334
  msg: MsgActivateStakeGrant
160
335
  });
@@ -7,6 +7,11 @@ function createBaseEventInsuranceFundUpdate() {
7
7
  fund: undefined
8
8
  };
9
9
  }
10
+ /**
11
+ * @name EventInsuranceFundUpdate
12
+ * @package injective.insurance.v1beta1
13
+ * @see proto type: injective.insurance.v1beta1.EventInsuranceFundUpdate
14
+ */
10
15
  export const EventInsuranceFundUpdate = {
11
16
  typeUrl: "/injective.insurance.v1beta1.EventInsuranceFundUpdate",
12
17
  is(o) {
@@ -82,6 +87,11 @@ function createBaseEventRequestRedemption() {
82
87
  schedule: undefined
83
88
  };
84
89
  }
90
+ /**
91
+ * @name EventRequestRedemption
92
+ * @package injective.insurance.v1beta1
93
+ * @see proto type: injective.insurance.v1beta1.EventRequestRedemption
94
+ */
85
95
  export const EventRequestRedemption = {
86
96
  typeUrl: "/injective.insurance.v1beta1.EventRequestRedemption",
87
97
  is(o) {
@@ -158,6 +168,11 @@ function createBaseEventWithdrawRedemption() {
158
168
  redeemCoin: Coin.fromPartial({})
159
169
  };
160
170
  }
171
+ /**
172
+ * @name EventWithdrawRedemption
173
+ * @package injective.insurance.v1beta1
174
+ * @see proto type: injective.insurance.v1beta1.EventWithdrawRedemption
175
+ */
161
176
  export const EventWithdrawRedemption = {
162
177
  typeUrl: "/injective.insurance.v1beta1.EventWithdrawRedemption",
163
178
  is(o) {
@@ -248,6 +263,11 @@ function createBaseEventUnderwrite() {
248
263
  shares: Coin.fromPartial({})
249
264
  };
250
265
  }
266
+ /**
267
+ * @name EventUnderwrite
268
+ * @package injective.insurance.v1beta1
269
+ * @see proto type: injective.insurance.v1beta1.EventUnderwrite
270
+ */
251
271
  export const EventUnderwrite = {
252
272
  typeUrl: "/injective.insurance.v1beta1.EventUnderwrite",
253
273
  is(o) {
@@ -358,6 +378,11 @@ function createBaseEventInsuranceWithdraw() {
358
378
  withdrawal: Coin.fromPartial({})
359
379
  };
360
380
  }
381
+ /**
382
+ * @name EventInsuranceWithdraw
383
+ * @package injective.insurance.v1beta1
384
+ * @see proto type: injective.insurance.v1beta1.EventInsuranceWithdraw
385
+ */
361
386
  export const EventInsuranceWithdraw = {
362
387
  typeUrl: "/injective.insurance.v1beta1.EventInsuranceWithdraw",
363
388
  is(o) {
@@ -10,6 +10,12 @@ function createBaseGenesisState() {
10
10
  nextRedemptionScheduleId: BigInt(0)
11
11
  };
12
12
  }
13
+ /**
14
+ * GenesisState defines the insurance module's genesis state.
15
+ * @name GenesisState
16
+ * @package injective.insurance.v1beta1
17
+ * @see proto type: injective.insurance.v1beta1.GenesisState
18
+ */
13
19
  export const GenesisState = {
14
20
  typeUrl: "/injective.insurance.v1beta1.GenesisState",
15
21
  is(o) {
@@ -9,6 +9,11 @@ function createBaseParams() {
9
9
  defaultRedemptionNoticePeriodDuration: Duration.fromPartial({})
10
10
  };
11
11
  }
12
+ /**
13
+ * @name Params
14
+ * @package injective.insurance.v1beta1
15
+ * @see proto type: injective.insurance.v1beta1.Params
16
+ */
12
17
  export const Params = {
13
18
  typeUrl: "/injective.insurance.v1beta1.Params",
14
19
  aminoType: "insurance/Params",
@@ -96,6 +101,11 @@ function createBaseInsuranceFund() {
96
101
  expiry: BigInt(0)
97
102
  };
98
103
  }
104
+ /**
105
+ * @name InsuranceFund
106
+ * @package injective.insurance.v1beta1
107
+ * @see proto type: injective.insurance.v1beta1.InsuranceFund
108
+ */
99
109
  export const InsuranceFund = {
100
110
  typeUrl: "/injective.insurance.v1beta1.InsuranceFund",
101
111
  is(o) {
@@ -280,6 +290,11 @@ function createBaseRedemptionSchedule() {
280
290
  redemptionAmount: Coin.fromPartial({})
281
291
  };
282
292
  }
293
+ /**
294
+ * @name RedemptionSchedule
295
+ * @package injective.insurance.v1beta1
296
+ * @see proto type: injective.insurance.v1beta1.RedemptionSchedule
297
+ */
283
298
  export const RedemptionSchedule = {
284
299
  typeUrl: "/injective.insurance.v1beta1.RedemptionSchedule",
285
300
  is(o) {
@@ -6,6 +6,13 @@ import { GlobalDecoderRegistry } from "../../../registry";
6
6
  function createBaseQueryInsuranceParamsRequest() {
7
7
  return {};
8
8
  }
9
+ /**
10
+ * QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
11
+ * RPC method.
12
+ * @name QueryInsuranceParamsRequest
13
+ * @package injective.insurance.v1beta1
14
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
15
+ */
9
16
  export const QueryInsuranceParamsRequest = {
10
17
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsRequest",
11
18
  is(o) {
@@ -65,6 +72,13 @@ function createBaseQueryInsuranceParamsResponse() {
65
72
  params: Params.fromPartial({})
66
73
  };
67
74
  }
75
+ /**
76
+ * QueryInsuranceParamsRequest is the response type for the
77
+ * Query/InsuranceParams RPC method.
78
+ * @name QueryInsuranceParamsResponse
79
+ * @package injective.insurance.v1beta1
80
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
81
+ */
68
82
  export const QueryInsuranceParamsResponse = {
69
83
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsResponse",
70
84
  is(o) {
@@ -140,6 +154,13 @@ function createBaseQueryInsuranceFundRequest() {
140
154
  marketId: ""
141
155
  };
142
156
  }
157
+ /**
158
+ * QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
159
+ * RPC method.
160
+ * @name QueryInsuranceFundRequest
161
+ * @package injective.insurance.v1beta1
162
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
163
+ */
143
164
  export const QueryInsuranceFundRequest = {
144
165
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundRequest",
145
166
  is(o) {
@@ -210,6 +231,13 @@ function createBaseQueryInsuranceFundResponse() {
210
231
  fund: undefined
211
232
  };
212
233
  }
234
+ /**
235
+ * QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
236
+ * RPC method.
237
+ * @name QueryInsuranceFundResponse
238
+ * @package injective.insurance.v1beta1
239
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
240
+ */
213
241
  export const QueryInsuranceFundResponse = {
214
242
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundResponse",
215
243
  is(o) {
@@ -283,6 +311,13 @@ export const QueryInsuranceFundResponse = {
283
311
  function createBaseQueryInsuranceFundsRequest() {
284
312
  return {};
285
313
  }
314
+ /**
315
+ * QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
316
+ * RPC method.
317
+ * @name QueryInsuranceFundsRequest
318
+ * @package injective.insurance.v1beta1
319
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
320
+ */
286
321
  export const QueryInsuranceFundsRequest = {
287
322
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsRequest",
288
323
  is(o) {
@@ -342,6 +377,13 @@ function createBaseQueryInsuranceFundsResponse() {
342
377
  funds: []
343
378
  };
344
379
  }
380
+ /**
381
+ * QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
382
+ * RPC method.
383
+ * @name QueryInsuranceFundsResponse
384
+ * @package injective.insurance.v1beta1
385
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
386
+ */
345
387
  export const QueryInsuranceFundsResponse = {
346
388
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsResponse",
347
389
  is(o) {
@@ -421,6 +463,13 @@ function createBaseQueryEstimatedRedemptionsRequest() {
421
463
  address: ""
422
464
  };
423
465
  }
466
+ /**
467
+ * QueryEstimatedRedemptionsRequest is the request type for the
468
+ * Query/EstimatedRedemptions RPC method.
469
+ * @name QueryEstimatedRedemptionsRequest
470
+ * @package injective.insurance.v1beta1
471
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
472
+ */
424
473
  export const QueryEstimatedRedemptionsRequest = {
425
474
  typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest",
426
475
  is(o) {
@@ -502,6 +551,13 @@ function createBaseQueryEstimatedRedemptionsResponse() {
502
551
  amount: []
503
552
  };
504
553
  }
554
+ /**
555
+ * QueryEstimatedRedemptionsResponse is the response type for the
556
+ * Query/EstimatedRedemptions RPC method.
557
+ * @name QueryEstimatedRedemptionsResponse
558
+ * @package injective.insurance.v1beta1
559
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
560
+ */
505
561
  export const QueryEstimatedRedemptionsResponse = {
506
562
  typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse",
507
563
  is(o) {
@@ -581,6 +637,13 @@ function createBaseQueryPendingRedemptionsRequest() {
581
637
  address: ""
582
638
  };
583
639
  }
640
+ /**
641
+ * QueryPendingRedemptionsRequest is the request type for the
642
+ * Query/PendingRedemptions RPC method.
643
+ * @name QueryPendingRedemptionsRequest
644
+ * @package injective.insurance.v1beta1
645
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
646
+ */
584
647
  export const QueryPendingRedemptionsRequest = {
585
648
  typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsRequest",
586
649
  is(o) {
@@ -662,6 +725,13 @@ function createBaseQueryPendingRedemptionsResponse() {
662
725
  amount: []
663
726
  };
664
727
  }
728
+ /**
729
+ * QueryPendingRedemptionsResponse is the response type for the
730
+ * Query/PendingRedemptions RPC method.
731
+ * @name QueryPendingRedemptionsResponse
732
+ * @package injective.insurance.v1beta1
733
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
734
+ */
665
735
  export const QueryPendingRedemptionsResponse = {
666
736
  typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsResponse",
667
737
  is(o) {
@@ -738,6 +808,13 @@ export const QueryPendingRedemptionsResponse = {
738
808
  function createBaseQueryModuleStateRequest() {
739
809
  return {};
740
810
  }
811
+ /**
812
+ * QueryModuleStateRequest is the request type for the
813
+ * Query/InsuranceModuleState RPC method.
814
+ * @name QueryModuleStateRequest
815
+ * @package injective.insurance.v1beta1
816
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
817
+ */
741
818
  export const QueryModuleStateRequest = {
742
819
  typeUrl: "/injective.insurance.v1beta1.QueryModuleStateRequest",
743
820
  is(o) {
@@ -797,6 +874,13 @@ function createBaseQueryModuleStateResponse() {
797
874
  state: undefined
798
875
  };
799
876
  }
877
+ /**
878
+ * QueryModuleStateResponse is the response type for the
879
+ * Query/InsuranceModuleState RPC method.
880
+ * @name QueryModuleStateResponse
881
+ * @package injective.insurance.v1beta1
882
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
883
+ */
800
884
  export const QueryModuleStateResponse = {
801
885
  typeUrl: "/injective.insurance.v1beta1.QueryModuleStateResponse",
802
886
  is(o) {