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
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
6
6
  /**
7
7
  * QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
8
8
  * RPC method.
9
+ * @name QueryInsuranceParamsRequest
10
+ * @package injective.insurance.v1beta1
11
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
9
12
  */
10
13
  export interface QueryInsuranceParamsRequest {
11
14
  }
@@ -16,6 +19,9 @@ export interface QueryInsuranceParamsRequestProtoMsg {
16
19
  /**
17
20
  * QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
18
21
  * RPC method.
22
+ * @name QueryInsuranceParamsRequestAmino
23
+ * @package injective.insurance.v1beta1
24
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
19
25
  */
20
26
  export interface QueryInsuranceParamsRequestAmino {
21
27
  }
@@ -26,6 +32,9 @@ export interface QueryInsuranceParamsRequestAminoMsg {
26
32
  /**
27
33
  * QueryInsuranceParamsRequest is the response type for the
28
34
  * Query/InsuranceParams RPC method.
35
+ * @name QueryInsuranceParamsResponse
36
+ * @package injective.insurance.v1beta1
37
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
29
38
  */
30
39
  export interface QueryInsuranceParamsResponse {
31
40
  params: Params;
@@ -37,6 +46,9 @@ export interface QueryInsuranceParamsResponseProtoMsg {
37
46
  /**
38
47
  * QueryInsuranceParamsRequest is the response type for the
39
48
  * Query/InsuranceParams RPC method.
49
+ * @name QueryInsuranceParamsResponseAmino
50
+ * @package injective.insurance.v1beta1
51
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
40
52
  */
41
53
  export interface QueryInsuranceParamsResponseAmino {
42
54
  params: ParamsAmino;
@@ -48,9 +60,14 @@ export interface QueryInsuranceParamsResponseAminoMsg {
48
60
  /**
49
61
  * QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
50
62
  * RPC method.
63
+ * @name QueryInsuranceFundRequest
64
+ * @package injective.insurance.v1beta1
65
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
51
66
  */
52
67
  export interface QueryInsuranceFundRequest {
53
- /** Market ID for the market */
68
+ /**
69
+ * Market ID for the market
70
+ */
54
71
  marketId: string;
55
72
  }
56
73
  export interface QueryInsuranceFundRequestProtoMsg {
@@ -60,9 +77,14 @@ export interface QueryInsuranceFundRequestProtoMsg {
60
77
  /**
61
78
  * QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
62
79
  * RPC method.
80
+ * @name QueryInsuranceFundRequestAmino
81
+ * @package injective.insurance.v1beta1
82
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
63
83
  */
64
84
  export interface QueryInsuranceFundRequestAmino {
65
- /** Market ID for the market */
85
+ /**
86
+ * Market ID for the market
87
+ */
66
88
  market_id: string;
67
89
  }
68
90
  export interface QueryInsuranceFundRequestAminoMsg {
@@ -72,6 +94,9 @@ export interface QueryInsuranceFundRequestAminoMsg {
72
94
  /**
73
95
  * QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
74
96
  * RPC method.
97
+ * @name QueryInsuranceFundResponse
98
+ * @package injective.insurance.v1beta1
99
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
75
100
  */
76
101
  export interface QueryInsuranceFundResponse {
77
102
  fund?: InsuranceFund;
@@ -83,6 +108,9 @@ export interface QueryInsuranceFundResponseProtoMsg {
83
108
  /**
84
109
  * QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
85
110
  * RPC method.
111
+ * @name QueryInsuranceFundResponseAmino
112
+ * @package injective.insurance.v1beta1
113
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
86
114
  */
87
115
  export interface QueryInsuranceFundResponseAmino {
88
116
  fund?: InsuranceFundAmino;
@@ -94,6 +122,9 @@ export interface QueryInsuranceFundResponseAminoMsg {
94
122
  /**
95
123
  * QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
96
124
  * RPC method.
125
+ * @name QueryInsuranceFundsRequest
126
+ * @package injective.insurance.v1beta1
127
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
97
128
  */
98
129
  export interface QueryInsuranceFundsRequest {
99
130
  }
@@ -104,6 +135,9 @@ export interface QueryInsuranceFundsRequestProtoMsg {
104
135
  /**
105
136
  * QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
106
137
  * RPC method.
138
+ * @name QueryInsuranceFundsRequestAmino
139
+ * @package injective.insurance.v1beta1
140
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
107
141
  */
108
142
  export interface QueryInsuranceFundsRequestAmino {
109
143
  }
@@ -114,6 +148,9 @@ export interface QueryInsuranceFundsRequestAminoMsg {
114
148
  /**
115
149
  * QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
116
150
  * RPC method.
151
+ * @name QueryInsuranceFundsResponse
152
+ * @package injective.insurance.v1beta1
153
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
117
154
  */
118
155
  export interface QueryInsuranceFundsResponse {
119
156
  funds: InsuranceFund[];
@@ -125,6 +162,9 @@ export interface QueryInsuranceFundsResponseProtoMsg {
125
162
  /**
126
163
  * QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
127
164
  * RPC method.
165
+ * @name QueryInsuranceFundsResponseAmino
166
+ * @package injective.insurance.v1beta1
167
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
128
168
  */
129
169
  export interface QueryInsuranceFundsResponseAmino {
130
170
  funds: InsuranceFundAmino[];
@@ -136,6 +176,9 @@ export interface QueryInsuranceFundsResponseAminoMsg {
136
176
  /**
137
177
  * QueryEstimatedRedemptionsRequest is the request type for the
138
178
  * Query/EstimatedRedemptions RPC method.
179
+ * @name QueryEstimatedRedemptionsRequest
180
+ * @package injective.insurance.v1beta1
181
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
139
182
  */
140
183
  export interface QueryEstimatedRedemptionsRequest {
141
184
  marketId: string;
@@ -148,6 +191,9 @@ export interface QueryEstimatedRedemptionsRequestProtoMsg {
148
191
  /**
149
192
  * QueryEstimatedRedemptionsRequest is the request type for the
150
193
  * Query/EstimatedRedemptions RPC method.
194
+ * @name QueryEstimatedRedemptionsRequestAmino
195
+ * @package injective.insurance.v1beta1
196
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
151
197
  */
152
198
  export interface QueryEstimatedRedemptionsRequestAmino {
153
199
  marketId: string;
@@ -160,6 +206,9 @@ export interface QueryEstimatedRedemptionsRequestAminoMsg {
160
206
  /**
161
207
  * QueryEstimatedRedemptionsResponse is the response type for the
162
208
  * Query/EstimatedRedemptions RPC method.
209
+ * @name QueryEstimatedRedemptionsResponse
210
+ * @package injective.insurance.v1beta1
211
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
163
212
  */
164
213
  export interface QueryEstimatedRedemptionsResponse {
165
214
  amount: Coin[];
@@ -171,6 +220,9 @@ export interface QueryEstimatedRedemptionsResponseProtoMsg {
171
220
  /**
172
221
  * QueryEstimatedRedemptionsResponse is the response type for the
173
222
  * Query/EstimatedRedemptions RPC method.
223
+ * @name QueryEstimatedRedemptionsResponseAmino
224
+ * @package injective.insurance.v1beta1
225
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
174
226
  */
175
227
  export interface QueryEstimatedRedemptionsResponseAmino {
176
228
  amount: CoinAmino[];
@@ -182,6 +234,9 @@ export interface QueryEstimatedRedemptionsResponseAminoMsg {
182
234
  /**
183
235
  * QueryPendingRedemptionsRequest is the request type for the
184
236
  * Query/PendingRedemptions RPC method.
237
+ * @name QueryPendingRedemptionsRequest
238
+ * @package injective.insurance.v1beta1
239
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
185
240
  */
186
241
  export interface QueryPendingRedemptionsRequest {
187
242
  marketId: string;
@@ -194,6 +249,9 @@ export interface QueryPendingRedemptionsRequestProtoMsg {
194
249
  /**
195
250
  * QueryPendingRedemptionsRequest is the request type for the
196
251
  * Query/PendingRedemptions RPC method.
252
+ * @name QueryPendingRedemptionsRequestAmino
253
+ * @package injective.insurance.v1beta1
254
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
197
255
  */
198
256
  export interface QueryPendingRedemptionsRequestAmino {
199
257
  marketId: string;
@@ -206,6 +264,9 @@ export interface QueryPendingRedemptionsRequestAminoMsg {
206
264
  /**
207
265
  * QueryPendingRedemptionsResponse is the response type for the
208
266
  * Query/PendingRedemptions RPC method.
267
+ * @name QueryPendingRedemptionsResponse
268
+ * @package injective.insurance.v1beta1
269
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
209
270
  */
210
271
  export interface QueryPendingRedemptionsResponse {
211
272
  amount: Coin[];
@@ -217,6 +278,9 @@ export interface QueryPendingRedemptionsResponseProtoMsg {
217
278
  /**
218
279
  * QueryPendingRedemptionsResponse is the response type for the
219
280
  * Query/PendingRedemptions RPC method.
281
+ * @name QueryPendingRedemptionsResponseAmino
282
+ * @package injective.insurance.v1beta1
283
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
220
284
  */
221
285
  export interface QueryPendingRedemptionsResponseAmino {
222
286
  amount: CoinAmino[];
@@ -228,6 +292,9 @@ export interface QueryPendingRedemptionsResponseAminoMsg {
228
292
  /**
229
293
  * QueryModuleStateRequest is the request type for the
230
294
  * Query/InsuranceModuleState RPC method.
295
+ * @name QueryModuleStateRequest
296
+ * @package injective.insurance.v1beta1
297
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
231
298
  */
232
299
  export interface QueryModuleStateRequest {
233
300
  }
@@ -238,6 +305,9 @@ export interface QueryModuleStateRequestProtoMsg {
238
305
  /**
239
306
  * QueryModuleStateRequest is the request type for the
240
307
  * Query/InsuranceModuleState RPC method.
308
+ * @name QueryModuleStateRequestAmino
309
+ * @package injective.insurance.v1beta1
310
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
241
311
  */
242
312
  export interface QueryModuleStateRequestAmino {
243
313
  }
@@ -248,6 +318,9 @@ export interface QueryModuleStateRequestAminoMsg {
248
318
  /**
249
319
  * QueryModuleStateResponse is the response type for the
250
320
  * Query/InsuranceModuleState RPC method.
321
+ * @name QueryModuleStateResponse
322
+ * @package injective.insurance.v1beta1
323
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
251
324
  */
252
325
  export interface QueryModuleStateResponse {
253
326
  state?: GenesisState;
@@ -259,6 +332,9 @@ export interface QueryModuleStateResponseProtoMsg {
259
332
  /**
260
333
  * QueryModuleStateResponse is the response type for the
261
334
  * Query/InsuranceModuleState RPC method.
335
+ * @name QueryModuleStateResponseAmino
336
+ * @package injective.insurance.v1beta1
337
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
262
338
  */
263
339
  export interface QueryModuleStateResponseAmino {
264
340
  state?: GenesisStateAmino;
@@ -267,6 +343,13 @@ export interface QueryModuleStateResponseAminoMsg {
267
343
  type: "/injective.insurance.v1beta1.QueryModuleStateResponse";
268
344
  value: QueryModuleStateResponseAmino;
269
345
  }
346
+ /**
347
+ * QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
348
+ * RPC method.
349
+ * @name QueryInsuranceParamsRequest
350
+ * @package injective.insurance.v1beta1
351
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
352
+ */
270
353
  export declare const QueryInsuranceParamsRequest: {
271
354
  typeUrl: string;
272
355
  is(o: any): o is QueryInsuranceParamsRequest;
@@ -282,6 +365,13 @@ export declare const QueryInsuranceParamsRequest: {
282
365
  toProtoMsg(message: QueryInsuranceParamsRequest): QueryInsuranceParamsRequestProtoMsg;
283
366
  registerTypeUrl(): void;
284
367
  };
368
+ /**
369
+ * QueryInsuranceParamsRequest is the response type for the
370
+ * Query/InsuranceParams RPC method.
371
+ * @name QueryInsuranceParamsResponse
372
+ * @package injective.insurance.v1beta1
373
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
374
+ */
285
375
  export declare const QueryInsuranceParamsResponse: {
286
376
  typeUrl: string;
287
377
  is(o: any): o is QueryInsuranceParamsResponse;
@@ -297,6 +387,13 @@ export declare const QueryInsuranceParamsResponse: {
297
387
  toProtoMsg(message: QueryInsuranceParamsResponse): QueryInsuranceParamsResponseProtoMsg;
298
388
  registerTypeUrl(): void;
299
389
  };
390
+ /**
391
+ * QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
392
+ * RPC method.
393
+ * @name QueryInsuranceFundRequest
394
+ * @package injective.insurance.v1beta1
395
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
396
+ */
300
397
  export declare const QueryInsuranceFundRequest: {
301
398
  typeUrl: string;
302
399
  is(o: any): o is QueryInsuranceFundRequest;
@@ -312,6 +409,13 @@ export declare const QueryInsuranceFundRequest: {
312
409
  toProtoMsg(message: QueryInsuranceFundRequest): QueryInsuranceFundRequestProtoMsg;
313
410
  registerTypeUrl(): void;
314
411
  };
412
+ /**
413
+ * QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
414
+ * RPC method.
415
+ * @name QueryInsuranceFundResponse
416
+ * @package injective.insurance.v1beta1
417
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
418
+ */
315
419
  export declare const QueryInsuranceFundResponse: {
316
420
  typeUrl: string;
317
421
  is(o: any): o is QueryInsuranceFundResponse;
@@ -327,6 +431,13 @@ export declare const QueryInsuranceFundResponse: {
327
431
  toProtoMsg(message: QueryInsuranceFundResponse): QueryInsuranceFundResponseProtoMsg;
328
432
  registerTypeUrl(): void;
329
433
  };
434
+ /**
435
+ * QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
436
+ * RPC method.
437
+ * @name QueryInsuranceFundsRequest
438
+ * @package injective.insurance.v1beta1
439
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
440
+ */
330
441
  export declare const QueryInsuranceFundsRequest: {
331
442
  typeUrl: string;
332
443
  is(o: any): o is QueryInsuranceFundsRequest;
@@ -342,6 +453,13 @@ export declare const QueryInsuranceFundsRequest: {
342
453
  toProtoMsg(message: QueryInsuranceFundsRequest): QueryInsuranceFundsRequestProtoMsg;
343
454
  registerTypeUrl(): void;
344
455
  };
456
+ /**
457
+ * QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
458
+ * RPC method.
459
+ * @name QueryInsuranceFundsResponse
460
+ * @package injective.insurance.v1beta1
461
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
462
+ */
345
463
  export declare const QueryInsuranceFundsResponse: {
346
464
  typeUrl: string;
347
465
  is(o: any): o is QueryInsuranceFundsResponse;
@@ -357,6 +475,13 @@ export declare const QueryInsuranceFundsResponse: {
357
475
  toProtoMsg(message: QueryInsuranceFundsResponse): QueryInsuranceFundsResponseProtoMsg;
358
476
  registerTypeUrl(): void;
359
477
  };
478
+ /**
479
+ * QueryEstimatedRedemptionsRequest is the request type for the
480
+ * Query/EstimatedRedemptions RPC method.
481
+ * @name QueryEstimatedRedemptionsRequest
482
+ * @package injective.insurance.v1beta1
483
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
484
+ */
360
485
  export declare const QueryEstimatedRedemptionsRequest: {
361
486
  typeUrl: string;
362
487
  is(o: any): o is QueryEstimatedRedemptionsRequest;
@@ -372,6 +497,13 @@ export declare const QueryEstimatedRedemptionsRequest: {
372
497
  toProtoMsg(message: QueryEstimatedRedemptionsRequest): QueryEstimatedRedemptionsRequestProtoMsg;
373
498
  registerTypeUrl(): void;
374
499
  };
500
+ /**
501
+ * QueryEstimatedRedemptionsResponse is the response type for the
502
+ * Query/EstimatedRedemptions RPC method.
503
+ * @name QueryEstimatedRedemptionsResponse
504
+ * @package injective.insurance.v1beta1
505
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
506
+ */
375
507
  export declare const QueryEstimatedRedemptionsResponse: {
376
508
  typeUrl: string;
377
509
  is(o: any): o is QueryEstimatedRedemptionsResponse;
@@ -387,6 +519,13 @@ export declare const QueryEstimatedRedemptionsResponse: {
387
519
  toProtoMsg(message: QueryEstimatedRedemptionsResponse): QueryEstimatedRedemptionsResponseProtoMsg;
388
520
  registerTypeUrl(): void;
389
521
  };
522
+ /**
523
+ * QueryPendingRedemptionsRequest is the request type for the
524
+ * Query/PendingRedemptions RPC method.
525
+ * @name QueryPendingRedemptionsRequest
526
+ * @package injective.insurance.v1beta1
527
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
528
+ */
390
529
  export declare const QueryPendingRedemptionsRequest: {
391
530
  typeUrl: string;
392
531
  is(o: any): o is QueryPendingRedemptionsRequest;
@@ -402,6 +541,13 @@ export declare const QueryPendingRedemptionsRequest: {
402
541
  toProtoMsg(message: QueryPendingRedemptionsRequest): QueryPendingRedemptionsRequestProtoMsg;
403
542
  registerTypeUrl(): void;
404
543
  };
544
+ /**
545
+ * QueryPendingRedemptionsResponse is the response type for the
546
+ * Query/PendingRedemptions RPC method.
547
+ * @name QueryPendingRedemptionsResponse
548
+ * @package injective.insurance.v1beta1
549
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
550
+ */
405
551
  export declare const QueryPendingRedemptionsResponse: {
406
552
  typeUrl: string;
407
553
  is(o: any): o is QueryPendingRedemptionsResponse;
@@ -417,6 +563,13 @@ export declare const QueryPendingRedemptionsResponse: {
417
563
  toProtoMsg(message: QueryPendingRedemptionsResponse): QueryPendingRedemptionsResponseProtoMsg;
418
564
  registerTypeUrl(): void;
419
565
  };
566
+ /**
567
+ * QueryModuleStateRequest is the request type for the
568
+ * Query/InsuranceModuleState RPC method.
569
+ * @name QueryModuleStateRequest
570
+ * @package injective.insurance.v1beta1
571
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
572
+ */
420
573
  export declare const QueryModuleStateRequest: {
421
574
  typeUrl: string;
422
575
  is(o: any): o is QueryModuleStateRequest;
@@ -432,6 +585,13 @@ export declare const QueryModuleStateRequest: {
432
585
  toProtoMsg(message: QueryModuleStateRequest): QueryModuleStateRequestProtoMsg;
433
586
  registerTypeUrl(): void;
434
587
  };
588
+ /**
589
+ * QueryModuleStateResponse is the response type for the
590
+ * Query/InsuranceModuleState RPC method.
591
+ * @name QueryModuleStateResponse
592
+ * @package injective.insurance.v1beta1
593
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
594
+ */
435
595
  export declare const QueryModuleStateResponse: {
436
596
  typeUrl: string;
437
597
  is(o: any): o is QueryModuleStateResponse;
@@ -9,6 +9,13 @@ const registry_1 = require("../../../registry");
9
9
  function createBaseQueryInsuranceParamsRequest() {
10
10
  return {};
11
11
  }
12
+ /**
13
+ * QueryInsuranceParamsRequest is the request type for the Query/InsuranceParams
14
+ * RPC method.
15
+ * @name QueryInsuranceParamsRequest
16
+ * @package injective.insurance.v1beta1
17
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsRequest
18
+ */
12
19
  exports.QueryInsuranceParamsRequest = {
13
20
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsRequest",
14
21
  is(o) {
@@ -68,6 +75,13 @@ function createBaseQueryInsuranceParamsResponse() {
68
75
  params: insurance_1.Params.fromPartial({})
69
76
  };
70
77
  }
78
+ /**
79
+ * QueryInsuranceParamsRequest is the response type for the
80
+ * Query/InsuranceParams RPC method.
81
+ * @name QueryInsuranceParamsResponse
82
+ * @package injective.insurance.v1beta1
83
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceParamsResponse
84
+ */
71
85
  exports.QueryInsuranceParamsResponse = {
72
86
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceParamsResponse",
73
87
  is(o) {
@@ -143,6 +157,13 @@ function createBaseQueryInsuranceFundRequest() {
143
157
  marketId: ""
144
158
  };
145
159
  }
160
+ /**
161
+ * QueryInsuranceFundRequest is the request type for the Query/InsuranceFunds
162
+ * RPC method.
163
+ * @name QueryInsuranceFundRequest
164
+ * @package injective.insurance.v1beta1
165
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundRequest
166
+ */
146
167
  exports.QueryInsuranceFundRequest = {
147
168
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundRequest",
148
169
  is(o) {
@@ -213,6 +234,13 @@ function createBaseQueryInsuranceFundResponse() {
213
234
  fund: undefined
214
235
  };
215
236
  }
237
+ /**
238
+ * QueryInsuranceFundResponse is the response type for the Query/InsuranceFund
239
+ * RPC method.
240
+ * @name QueryInsuranceFundResponse
241
+ * @package injective.insurance.v1beta1
242
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundResponse
243
+ */
216
244
  exports.QueryInsuranceFundResponse = {
217
245
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundResponse",
218
246
  is(o) {
@@ -286,6 +314,13 @@ exports.QueryInsuranceFundResponse = {
286
314
  function createBaseQueryInsuranceFundsRequest() {
287
315
  return {};
288
316
  }
317
+ /**
318
+ * QueryInsuranceFundsRequest is the request type for the Query/InsuranceFunds
319
+ * RPC method.
320
+ * @name QueryInsuranceFundsRequest
321
+ * @package injective.insurance.v1beta1
322
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsRequest
323
+ */
289
324
  exports.QueryInsuranceFundsRequest = {
290
325
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsRequest",
291
326
  is(o) {
@@ -345,6 +380,13 @@ function createBaseQueryInsuranceFundsResponse() {
345
380
  funds: []
346
381
  };
347
382
  }
383
+ /**
384
+ * QueryInsuranceFundsResponse is the response type for the Query/InsuranceFunds
385
+ * RPC method.
386
+ * @name QueryInsuranceFundsResponse
387
+ * @package injective.insurance.v1beta1
388
+ * @see proto type: injective.insurance.v1beta1.QueryInsuranceFundsResponse
389
+ */
348
390
  exports.QueryInsuranceFundsResponse = {
349
391
  typeUrl: "/injective.insurance.v1beta1.QueryInsuranceFundsResponse",
350
392
  is(o) {
@@ -424,6 +466,13 @@ function createBaseQueryEstimatedRedemptionsRequest() {
424
466
  address: ""
425
467
  };
426
468
  }
469
+ /**
470
+ * QueryEstimatedRedemptionsRequest is the request type for the
471
+ * Query/EstimatedRedemptions RPC method.
472
+ * @name QueryEstimatedRedemptionsRequest
473
+ * @package injective.insurance.v1beta1
474
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest
475
+ */
427
476
  exports.QueryEstimatedRedemptionsRequest = {
428
477
  typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsRequest",
429
478
  is(o) {
@@ -505,6 +554,13 @@ function createBaseQueryEstimatedRedemptionsResponse() {
505
554
  amount: []
506
555
  };
507
556
  }
557
+ /**
558
+ * QueryEstimatedRedemptionsResponse is the response type for the
559
+ * Query/EstimatedRedemptions RPC method.
560
+ * @name QueryEstimatedRedemptionsResponse
561
+ * @package injective.insurance.v1beta1
562
+ * @see proto type: injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse
563
+ */
508
564
  exports.QueryEstimatedRedemptionsResponse = {
509
565
  typeUrl: "/injective.insurance.v1beta1.QueryEstimatedRedemptionsResponse",
510
566
  is(o) {
@@ -584,6 +640,13 @@ function createBaseQueryPendingRedemptionsRequest() {
584
640
  address: ""
585
641
  };
586
642
  }
643
+ /**
644
+ * QueryPendingRedemptionsRequest is the request type for the
645
+ * Query/PendingRedemptions RPC method.
646
+ * @name QueryPendingRedemptionsRequest
647
+ * @package injective.insurance.v1beta1
648
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsRequest
649
+ */
587
650
  exports.QueryPendingRedemptionsRequest = {
588
651
  typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsRequest",
589
652
  is(o) {
@@ -665,6 +728,13 @@ function createBaseQueryPendingRedemptionsResponse() {
665
728
  amount: []
666
729
  };
667
730
  }
731
+ /**
732
+ * QueryPendingRedemptionsResponse is the response type for the
733
+ * Query/PendingRedemptions RPC method.
734
+ * @name QueryPendingRedemptionsResponse
735
+ * @package injective.insurance.v1beta1
736
+ * @see proto type: injective.insurance.v1beta1.QueryPendingRedemptionsResponse
737
+ */
668
738
  exports.QueryPendingRedemptionsResponse = {
669
739
  typeUrl: "/injective.insurance.v1beta1.QueryPendingRedemptionsResponse",
670
740
  is(o) {
@@ -741,6 +811,13 @@ exports.QueryPendingRedemptionsResponse = {
741
811
  function createBaseQueryModuleStateRequest() {
742
812
  return {};
743
813
  }
814
+ /**
815
+ * QueryModuleStateRequest is the request type for the
816
+ * Query/InsuranceModuleState RPC method.
817
+ * @name QueryModuleStateRequest
818
+ * @package injective.insurance.v1beta1
819
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateRequest
820
+ */
744
821
  exports.QueryModuleStateRequest = {
745
822
  typeUrl: "/injective.insurance.v1beta1.QueryModuleStateRequest",
746
823
  is(o) {
@@ -800,6 +877,13 @@ function createBaseQueryModuleStateResponse() {
800
877
  state: undefined
801
878
  };
802
879
  }
880
+ /**
881
+ * QueryModuleStateResponse is the response type for the
882
+ * Query/InsuranceModuleState RPC method.
883
+ * @name QueryModuleStateResponse
884
+ * @package injective.insurance.v1beta1
885
+ * @see proto type: injective.insurance.v1beta1.QueryModuleStateResponse
886
+ */
803
887
  exports.QueryModuleStateResponse = {
804
888
  typeUrl: "/injective.insurance.v1beta1.QueryModuleStateResponse",
805
889
  is(o) {
@@ -1,7 +1,44 @@
1
1
  import { QueryInsuranceParamsRequest, QueryInsuranceParamsResponse, QueryInsuranceFundRequest, QueryInsuranceFundResponse, QueryInsuranceFundsRequest, QueryInsuranceFundsResponse, QueryEstimatedRedemptionsRequest, QueryEstimatedRedemptionsResponse, QueryPendingRedemptionsRequest, QueryPendingRedemptionsResponse, QueryModuleStateRequest, QueryModuleStateResponse } from "./query";
2
+ /**
3
+ * Retrieves insurance params
4
+ * @name getInsuranceParams
5
+ * @package injective.insurance.v1beta1
6
+ * @see proto service: injective.insurance.v1beta1.InsuranceParams
7
+ */
2
8
  export declare const getInsuranceParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInsuranceParamsRequest) => Promise<QueryInsuranceParamsResponse>;
9
+ /**
10
+ * Retrieves individual insurance fund information from market id
11
+ * @name getInsuranceFund
12
+ * @package injective.insurance.v1beta1
13
+ * @see proto service: injective.insurance.v1beta1.InsuranceFund
14
+ */
3
15
  export declare const getInsuranceFund: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInsuranceFundRequest) => Promise<QueryInsuranceFundResponse>;
16
+ /**
17
+ * Retrieves all insurance funds
18
+ * @name getInsuranceFunds
19
+ * @package injective.insurance.v1beta1
20
+ * @see proto service: injective.insurance.v1beta1.InsuranceFunds
21
+ */
4
22
  export declare const getInsuranceFunds: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryInsuranceFundsRequest) => Promise<QueryInsuranceFundsResponse>;
23
+ /**
24
+ * Retrives the value of insurance fund share token at current price (not
25
+ * pending redemption)
26
+ * @name getEstimatedRedemptions
27
+ * @package injective.insurance.v1beta1
28
+ * @see proto service: injective.insurance.v1beta1.EstimatedRedemptions
29
+ */
5
30
  export declare const getEstimatedRedemptions: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryEstimatedRedemptionsRequest) => Promise<QueryEstimatedRedemptionsResponse>;
31
+ /**
32
+ * Retrieves pending redemptions' share token at current price
33
+ * @name getPendingRedemptions
34
+ * @package injective.insurance.v1beta1
35
+ * @see proto service: injective.insurance.v1beta1.PendingRedemptions
36
+ */
6
37
  export declare const getPendingRedemptions: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryPendingRedemptionsRequest) => Promise<QueryPendingRedemptionsResponse>;
38
+ /**
39
+ * Retrieves the entire insurance module's state
40
+ * @name getInsuranceModuleState
41
+ * @package injective.insurance.v1beta1
42
+ * @see proto service: injective.insurance.v1beta1.InsuranceModuleState
43
+ */
7
44
  export declare const getInsuranceModuleState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryModuleStateRequest) => Promise<QueryModuleStateResponse>;