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
@@ -5,12 +5,17 @@ import { DeepPartial } from "../../../helpers";
5
5
  /**
6
6
  * MsgCreateVestingAccount defines a message that enables creating a vesting
7
7
  * account.
8
+ * @name MsgCreateVestingAccount
9
+ * @package cosmos.vesting.v1beta1
10
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
8
11
  */
9
12
  export interface MsgCreateVestingAccount {
10
13
  fromAddress: string;
11
14
  toAddress: string;
12
15
  amount: Coin[];
13
- /** end of vesting as unix time (in seconds). */
16
+ /**
17
+ * end of vesting as unix time (in seconds).
18
+ */
14
19
  endTime: bigint;
15
20
  delayed: boolean;
16
21
  }
@@ -21,12 +26,17 @@ export interface MsgCreateVestingAccountProtoMsg {
21
26
  /**
22
27
  * MsgCreateVestingAccount defines a message that enables creating a vesting
23
28
  * account.
29
+ * @name MsgCreateVestingAccountAmino
30
+ * @package cosmos.vesting.v1beta1
31
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
24
32
  */
25
33
  export interface MsgCreateVestingAccountAmino {
26
34
  from_address: string;
27
35
  to_address: string;
28
36
  amount: CoinAmino[];
29
- /** end of vesting as unix time (in seconds). */
37
+ /**
38
+ * end of vesting as unix time (in seconds).
39
+ */
30
40
  end_time: string;
31
41
  delayed: boolean;
32
42
  }
@@ -34,14 +44,24 @@ export interface MsgCreateVestingAccountAminoMsg {
34
44
  type: "cosmos-sdk/MsgCreateVestingAccount";
35
45
  value: MsgCreateVestingAccountAmino;
36
46
  }
37
- /** MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. */
47
+ /**
48
+ * MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
49
+ * @name MsgCreateVestingAccountResponse
50
+ * @package cosmos.vesting.v1beta1
51
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
52
+ */
38
53
  export interface MsgCreateVestingAccountResponse {
39
54
  }
40
55
  export interface MsgCreateVestingAccountResponseProtoMsg {
41
56
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse";
42
57
  value: Uint8Array;
43
58
  }
44
- /** MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type. */
59
+ /**
60
+ * MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
61
+ * @name MsgCreateVestingAccountResponseAmino
62
+ * @package cosmos.vesting.v1beta1
63
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
64
+ */
45
65
  export interface MsgCreateVestingAccountResponseAmino {
46
66
  }
47
67
  export interface MsgCreateVestingAccountResponseAminoMsg {
@@ -53,6 +73,9 @@ export interface MsgCreateVestingAccountResponseAminoMsg {
53
73
  * locked account.
54
74
  *
55
75
  * Since: cosmos-sdk 0.46
76
+ * @name MsgCreatePermanentLockedAccount
77
+ * @package cosmos.vesting.v1beta1
78
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
56
79
  */
57
80
  export interface MsgCreatePermanentLockedAccount {
58
81
  fromAddress: string;
@@ -68,6 +91,9 @@ export interface MsgCreatePermanentLockedAccountProtoMsg {
68
91
  * locked account.
69
92
  *
70
93
  * Since: cosmos-sdk 0.46
94
+ * @name MsgCreatePermanentLockedAccountAmino
95
+ * @package cosmos.vesting.v1beta1
96
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
71
97
  */
72
98
  export interface MsgCreatePermanentLockedAccountAmino {
73
99
  from_address: string;
@@ -82,6 +108,9 @@ export interface MsgCreatePermanentLockedAccountAminoMsg {
82
108
  * MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
83
109
  *
84
110
  * Since: cosmos-sdk 0.46
111
+ * @name MsgCreatePermanentLockedAccountResponse
112
+ * @package cosmos.vesting.v1beta1
113
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
85
114
  */
86
115
  export interface MsgCreatePermanentLockedAccountResponse {
87
116
  }
@@ -93,6 +122,9 @@ export interface MsgCreatePermanentLockedAccountResponseProtoMsg {
93
122
  * MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
94
123
  *
95
124
  * Since: cosmos-sdk 0.46
125
+ * @name MsgCreatePermanentLockedAccountResponseAmino
126
+ * @package cosmos.vesting.v1beta1
127
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
96
128
  */
97
129
  export interface MsgCreatePermanentLockedAccountResponseAmino {
98
130
  }
@@ -105,11 +137,16 @@ export interface MsgCreatePermanentLockedAccountResponseAminoMsg {
105
137
  * account.
106
138
  *
107
139
  * Since: cosmos-sdk 0.46
140
+ * @name MsgCreatePeriodicVestingAccount
141
+ * @package cosmos.vesting.v1beta1
142
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
108
143
  */
109
144
  export interface MsgCreatePeriodicVestingAccount {
110
145
  fromAddress: string;
111
146
  toAddress: string;
112
- /** start of vesting as unix time (in seconds). */
147
+ /**
148
+ * start of vesting as unix time (in seconds).
149
+ */
113
150
  startTime: bigint;
114
151
  vestingPeriods: Period[];
115
152
  }
@@ -122,11 +159,16 @@ export interface MsgCreatePeriodicVestingAccountProtoMsg {
122
159
  * account.
123
160
  *
124
161
  * Since: cosmos-sdk 0.46
162
+ * @name MsgCreatePeriodicVestingAccountAmino
163
+ * @package cosmos.vesting.v1beta1
164
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
125
165
  */
126
166
  export interface MsgCreatePeriodicVestingAccountAmino {
127
167
  from_address: string;
128
168
  to_address: string;
129
- /** start of vesting as unix time (in seconds). */
169
+ /**
170
+ * start of vesting as unix time (in seconds).
171
+ */
130
172
  start_time: string;
131
173
  vesting_periods: PeriodAmino[];
132
174
  }
@@ -139,6 +181,9 @@ export interface MsgCreatePeriodicVestingAccountAminoMsg {
139
181
  * response type.
140
182
  *
141
183
  * Since: cosmos-sdk 0.46
184
+ * @name MsgCreatePeriodicVestingAccountResponse
185
+ * @package cosmos.vesting.v1beta1
186
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
142
187
  */
143
188
  export interface MsgCreatePeriodicVestingAccountResponse {
144
189
  }
@@ -151,6 +196,9 @@ export interface MsgCreatePeriodicVestingAccountResponseProtoMsg {
151
196
  * response type.
152
197
  *
153
198
  * Since: cosmos-sdk 0.46
199
+ * @name MsgCreatePeriodicVestingAccountResponseAmino
200
+ * @package cosmos.vesting.v1beta1
201
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
154
202
  */
155
203
  export interface MsgCreatePeriodicVestingAccountResponseAmino {
156
204
  }
@@ -158,6 +206,13 @@ export interface MsgCreatePeriodicVestingAccountResponseAminoMsg {
158
206
  type: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse";
159
207
  value: MsgCreatePeriodicVestingAccountResponseAmino;
160
208
  }
209
+ /**
210
+ * MsgCreateVestingAccount defines a message that enables creating a vesting
211
+ * account.
212
+ * @name MsgCreateVestingAccount
213
+ * @package cosmos.vesting.v1beta1
214
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
215
+ */
161
216
  export declare const MsgCreateVestingAccount: {
162
217
  typeUrl: string;
163
218
  aminoType: string;
@@ -175,6 +230,12 @@ export declare const MsgCreateVestingAccount: {
175
230
  toProtoMsg(message: MsgCreateVestingAccount): MsgCreateVestingAccountProtoMsg;
176
231
  registerTypeUrl(): void;
177
232
  };
233
+ /**
234
+ * MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
235
+ * @name MsgCreateVestingAccountResponse
236
+ * @package cosmos.vesting.v1beta1
237
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
238
+ */
178
239
  export declare const MsgCreateVestingAccountResponse: {
179
240
  typeUrl: string;
180
241
  aminoType: string;
@@ -192,6 +253,15 @@ export declare const MsgCreateVestingAccountResponse: {
192
253
  toProtoMsg(message: MsgCreateVestingAccountResponse): MsgCreateVestingAccountResponseProtoMsg;
193
254
  registerTypeUrl(): void;
194
255
  };
256
+ /**
257
+ * MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
258
+ * locked account.
259
+ *
260
+ * Since: cosmos-sdk 0.46
261
+ * @name MsgCreatePermanentLockedAccount
262
+ * @package cosmos.vesting.v1beta1
263
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
264
+ */
195
265
  export declare const MsgCreatePermanentLockedAccount: {
196
266
  typeUrl: string;
197
267
  aminoType: string;
@@ -209,6 +279,14 @@ export declare const MsgCreatePermanentLockedAccount: {
209
279
  toProtoMsg(message: MsgCreatePermanentLockedAccount): MsgCreatePermanentLockedAccountProtoMsg;
210
280
  registerTypeUrl(): void;
211
281
  };
282
+ /**
283
+ * MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
284
+ *
285
+ * Since: cosmos-sdk 0.46
286
+ * @name MsgCreatePermanentLockedAccountResponse
287
+ * @package cosmos.vesting.v1beta1
288
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
289
+ */
212
290
  export declare const MsgCreatePermanentLockedAccountResponse: {
213
291
  typeUrl: string;
214
292
  aminoType: string;
@@ -226,6 +304,15 @@ export declare const MsgCreatePermanentLockedAccountResponse: {
226
304
  toProtoMsg(message: MsgCreatePermanentLockedAccountResponse): MsgCreatePermanentLockedAccountResponseProtoMsg;
227
305
  registerTypeUrl(): void;
228
306
  };
307
+ /**
308
+ * MsgCreateVestingAccount defines a message that enables creating a vesting
309
+ * account.
310
+ *
311
+ * Since: cosmos-sdk 0.46
312
+ * @name MsgCreatePeriodicVestingAccount
313
+ * @package cosmos.vesting.v1beta1
314
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
315
+ */
229
316
  export declare const MsgCreatePeriodicVestingAccount: {
230
317
  typeUrl: string;
231
318
  aminoType: string;
@@ -243,6 +330,15 @@ export declare const MsgCreatePeriodicVestingAccount: {
243
330
  toProtoMsg(message: MsgCreatePeriodicVestingAccount): MsgCreatePeriodicVestingAccountProtoMsg;
244
331
  registerTypeUrl(): void;
245
332
  };
333
+ /**
334
+ * MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
335
+ * response type.
336
+ *
337
+ * Since: cosmos-sdk 0.46
338
+ * @name MsgCreatePeriodicVestingAccountResponse
339
+ * @package cosmos.vesting.v1beta1
340
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
341
+ */
246
342
  export declare const MsgCreatePeriodicVestingAccountResponse: {
247
343
  typeUrl: string;
248
344
  aminoType: string;
@@ -14,6 +14,13 @@ function createBaseMsgCreateVestingAccount() {
14
14
  delayed: false
15
15
  };
16
16
  }
17
+ /**
18
+ * MsgCreateVestingAccount defines a message that enables creating a vesting
19
+ * account.
20
+ * @name MsgCreateVestingAccount
21
+ * @package cosmos.vesting.v1beta1
22
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccount
23
+ */
17
24
  exports.MsgCreateVestingAccount = {
18
25
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccount",
19
26
  aminoType: "cosmos-sdk/MsgCreateVestingAccount",
@@ -141,6 +148,12 @@ exports.MsgCreateVestingAccount = {
141
148
  function createBaseMsgCreateVestingAccountResponse() {
142
149
  return {};
143
150
  }
151
+ /**
152
+ * MsgCreateVestingAccountResponse defines the Msg/CreateVestingAccount response type.
153
+ * @name MsgCreateVestingAccountResponse
154
+ * @package cosmos.vesting.v1beta1
155
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse
156
+ */
144
157
  exports.MsgCreateVestingAccountResponse = {
145
158
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreateVestingAccountResponse",
146
159
  aminoType: "cosmos-sdk/MsgCreateVestingAccountResponse",
@@ -209,6 +222,15 @@ function createBaseMsgCreatePermanentLockedAccount() {
209
222
  amount: []
210
223
  };
211
224
  }
225
+ /**
226
+ * MsgCreatePermanentLockedAccount defines a message that enables creating a permanent
227
+ * locked account.
228
+ *
229
+ * Since: cosmos-sdk 0.46
230
+ * @name MsgCreatePermanentLockedAccount
231
+ * @package cosmos.vesting.v1beta1
232
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount
233
+ */
212
234
  exports.MsgCreatePermanentLockedAccount = {
213
235
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccount",
214
236
  aminoType: "cosmos-sdk/MsgCreatePermLockedAccount",
@@ -314,6 +336,14 @@ exports.MsgCreatePermanentLockedAccount = {
314
336
  function createBaseMsgCreatePermanentLockedAccountResponse() {
315
337
  return {};
316
338
  }
339
+ /**
340
+ * MsgCreatePermanentLockedAccountResponse defines the Msg/CreatePermanentLockedAccount response type.
341
+ *
342
+ * Since: cosmos-sdk 0.46
343
+ * @name MsgCreatePermanentLockedAccountResponse
344
+ * @package cosmos.vesting.v1beta1
345
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse
346
+ */
317
347
  exports.MsgCreatePermanentLockedAccountResponse = {
318
348
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePermanentLockedAccountResponse",
319
349
  aminoType: "cosmos-sdk/MsgCreatePermanentLockedAccountResponse",
@@ -383,6 +413,15 @@ function createBaseMsgCreatePeriodicVestingAccount() {
383
413
  vestingPeriods: []
384
414
  };
385
415
  }
416
+ /**
417
+ * MsgCreateVestingAccount defines a message that enables creating a vesting
418
+ * account.
419
+ *
420
+ * Since: cosmos-sdk 0.46
421
+ * @name MsgCreatePeriodicVestingAccount
422
+ * @package cosmos.vesting.v1beta1
423
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount
424
+ */
386
425
  exports.MsgCreatePeriodicVestingAccount = {
387
426
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccount",
388
427
  aminoType: "cosmos-sdk/MsgCreatePeriodVestAccount",
@@ -499,6 +538,15 @@ exports.MsgCreatePeriodicVestingAccount = {
499
538
  function createBaseMsgCreatePeriodicVestingAccountResponse() {
500
539
  return {};
501
540
  }
541
+ /**
542
+ * MsgCreateVestingAccountResponse defines the Msg/CreatePeriodicVestingAccount
543
+ * response type.
544
+ *
545
+ * Since: cosmos-sdk 0.46
546
+ * @name MsgCreatePeriodicVestingAccountResponse
547
+ * @package cosmos.vesting.v1beta1
548
+ * @see proto type: cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse
549
+ */
502
550
  exports.MsgCreatePeriodicVestingAccountResponse = {
503
551
  typeUrl: "/cosmos.vesting.v1beta1.MsgCreatePeriodicVestingAccountResponse",
504
552
  aminoType: "cosmos-sdk/MsgCreatePeriodicVestingAccountResponse",
@@ -1,4 +1,29 @@
1
1
  import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx";
2
+ /**
3
+ * CreateVestingAccount defines a method that enables creating a vesting
4
+ * account.
5
+ * @name createVestingAccount
6
+ * @package cosmos.vesting.v1beta1
7
+ * @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
8
+ */
2
9
  export declare const createVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateVestingAccount | MsgCreateVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
10
+ /**
11
+ * CreatePermanentLockedAccount defines a method that enables creating a permanent
12
+ * locked account.
13
+ *
14
+ * Since: cosmos-sdk 0.46
15
+ * @name createPermanentLockedAccount
16
+ * @package cosmos.vesting.v1beta1
17
+ * @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
18
+ */
3
19
  export declare const createPermanentLockedAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePermanentLockedAccount | MsgCreatePermanentLockedAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
20
+ /**
21
+ * CreatePeriodicVestingAccount defines a method that enables creating a
22
+ * periodic vesting account.
23
+ *
24
+ * Since: cosmos-sdk 0.46
25
+ * @name createPeriodicVestingAccount
26
+ * @package cosmos.vesting.v1beta1
27
+ * @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
28
+ */
4
29
  export declare const createPeriodicVestingAccount: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreatePeriodicVestingAccount | MsgCreatePeriodicVestingAccount[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -3,22 +3,37 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.createPeriodicVestingAccount = exports.createPermanentLockedAccount = exports.createVestingAccount = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const tx_1 = require("./tx");
6
- /* CreateVestingAccount defines a method that enables creating a vesting
7
- account. */
6
+ /**
7
+ * CreateVestingAccount defines a method that enables creating a vesting
8
+ * account.
9
+ * @name createVestingAccount
10
+ * @package cosmos.vesting.v1beta1
11
+ * @see proto service: cosmos.vesting.v1beta1.CreateVestingAccount
12
+ */
8
13
  exports.createVestingAccount = (0, helper_func_types_1.buildTx)({
9
14
  msg: tx_1.MsgCreateVestingAccount
10
15
  });
11
- /* CreatePermanentLockedAccount defines a method that enables creating a permanent
12
- locked account.
13
-
14
- Since: cosmos-sdk 0.46 */
16
+ /**
17
+ * CreatePermanentLockedAccount defines a method that enables creating a permanent
18
+ * locked account.
19
+ *
20
+ * Since: cosmos-sdk 0.46
21
+ * @name createPermanentLockedAccount
22
+ * @package cosmos.vesting.v1beta1
23
+ * @see proto service: cosmos.vesting.v1beta1.CreatePermanentLockedAccount
24
+ */
15
25
  exports.createPermanentLockedAccount = (0, helper_func_types_1.buildTx)({
16
26
  msg: tx_1.MsgCreatePermanentLockedAccount
17
27
  });
18
- /* CreatePeriodicVestingAccount defines a method that enables creating a
19
- periodic vesting account.
20
-
21
- Since: cosmos-sdk 0.46 */
28
+ /**
29
+ * CreatePeriodicVestingAccount defines a method that enables creating a
30
+ * periodic vesting account.
31
+ *
32
+ * Since: cosmos-sdk 0.46
33
+ * @name createPeriodicVestingAccount
34
+ * @package cosmos.vesting.v1beta1
35
+ * @see proto service: cosmos.vesting.v1beta1.CreatePeriodicVestingAccount
36
+ */
22
37
  exports.createPeriodicVestingAccount = (0, helper_func_types_1.buildTx)({
23
38
  msg: tx_1.MsgCreatePeriodicVestingAccount
24
39
  });
@@ -5,13 +5,18 @@ import { DeepPartial } from "../../../helpers";
5
5
  /**
6
6
  * BaseVestingAccount implements the VestingAccount interface. It contains all
7
7
  * the necessary fields needed for any vesting account implementation.
8
+ * @name BaseVestingAccount
9
+ * @package cosmos.vesting.v1beta1
10
+ * @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
8
11
  */
9
12
  export interface BaseVestingAccount {
10
13
  baseAccount?: BaseAccount;
11
14
  originalVesting: Coin[];
12
15
  delegatedFree: Coin[];
13
16
  delegatedVesting: Coin[];
14
- /** Vesting end time, as unix timestamp (in seconds). */
17
+ /**
18
+ * Vesting end time, as unix timestamp (in seconds).
19
+ */
15
20
  endTime: bigint;
16
21
  }
17
22
  export interface BaseVestingAccountProtoMsg {
@@ -21,13 +26,18 @@ export interface BaseVestingAccountProtoMsg {
21
26
  /**
22
27
  * BaseVestingAccount implements the VestingAccount interface. It contains all
23
28
  * the necessary fields needed for any vesting account implementation.
29
+ * @name BaseVestingAccountAmino
30
+ * @package cosmos.vesting.v1beta1
31
+ * @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
24
32
  */
25
33
  export interface BaseVestingAccountAmino {
26
34
  base_account?: BaseAccountAmino;
27
35
  original_vesting: CoinAmino[];
28
36
  delegated_free: CoinAmino[];
29
37
  delegated_vesting: CoinAmino[];
30
- /** Vesting end time, as unix timestamp (in seconds). */
38
+ /**
39
+ * Vesting end time, as unix timestamp (in seconds).
40
+ */
31
41
  end_time: string;
32
42
  }
33
43
  export interface BaseVestingAccountAminoMsg {
@@ -37,10 +47,15 @@ export interface BaseVestingAccountAminoMsg {
37
47
  /**
38
48
  * ContinuousVestingAccount implements the VestingAccount interface. It
39
49
  * continuously vests by unlocking coins linearly with respect to time.
50
+ * @name ContinuousVestingAccount
51
+ * @package cosmos.vesting.v1beta1
52
+ * @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
40
53
  */
41
54
  export interface ContinuousVestingAccount {
42
55
  baseVestingAccount?: BaseVestingAccount;
43
- /** Vesting start time, as unix timestamp (in seconds). */
56
+ /**
57
+ * Vesting start time, as unix timestamp (in seconds).
58
+ */
44
59
  startTime: bigint;
45
60
  }
46
61
  export interface ContinuousVestingAccountProtoMsg {
@@ -50,10 +65,15 @@ export interface ContinuousVestingAccountProtoMsg {
50
65
  /**
51
66
  * ContinuousVestingAccount implements the VestingAccount interface. It
52
67
  * continuously vests by unlocking coins linearly with respect to time.
68
+ * @name ContinuousVestingAccountAmino
69
+ * @package cosmos.vesting.v1beta1
70
+ * @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
53
71
  */
54
72
  export interface ContinuousVestingAccountAmino {
55
73
  base_vesting_account?: BaseVestingAccountAmino;
56
- /** Vesting start time, as unix timestamp (in seconds). */
74
+ /**
75
+ * Vesting start time, as unix timestamp (in seconds).
76
+ */
57
77
  start_time: string;
58
78
  }
59
79
  export interface ContinuousVestingAccountAminoMsg {
@@ -64,6 +84,9 @@ export interface ContinuousVestingAccountAminoMsg {
64
84
  * DelayedVestingAccount implements the VestingAccount interface. It vests all
65
85
  * coins after a specific time, but non prior. In other words, it keeps them
66
86
  * locked until a specified time.
87
+ * @name DelayedVestingAccount
88
+ * @package cosmos.vesting.v1beta1
89
+ * @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
67
90
  */
68
91
  export interface DelayedVestingAccount {
69
92
  baseVestingAccount?: BaseVestingAccount;
@@ -76,6 +99,9 @@ export interface DelayedVestingAccountProtoMsg {
76
99
  * DelayedVestingAccount implements the VestingAccount interface. It vests all
77
100
  * coins after a specific time, but non prior. In other words, it keeps them
78
101
  * locked until a specified time.
102
+ * @name DelayedVestingAccountAmino
103
+ * @package cosmos.vesting.v1beta1
104
+ * @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
79
105
  */
80
106
  export interface DelayedVestingAccountAmino {
81
107
  base_vesting_account?: BaseVestingAccountAmino;
@@ -84,9 +110,16 @@ export interface DelayedVestingAccountAminoMsg {
84
110
  type: "cosmos-sdk/DelayedVestingAccount";
85
111
  value: DelayedVestingAccountAmino;
86
112
  }
87
- /** Period defines a length of time and amount of coins that will vest. */
113
+ /**
114
+ * Period defines a length of time and amount of coins that will vest.
115
+ * @name Period
116
+ * @package cosmos.vesting.v1beta1
117
+ * @see proto type: cosmos.vesting.v1beta1.Period
118
+ */
88
119
  export interface Period {
89
- /** Period duration in seconds. */
120
+ /**
121
+ * Period duration in seconds.
122
+ */
90
123
  length: bigint;
91
124
  amount: Coin[];
92
125
  }
@@ -94,9 +127,16 @@ export interface PeriodProtoMsg {
94
127
  typeUrl: "/cosmos.vesting.v1beta1.Period";
95
128
  value: Uint8Array;
96
129
  }
97
- /** Period defines a length of time and amount of coins that will vest. */
130
+ /**
131
+ * Period defines a length of time and amount of coins that will vest.
132
+ * @name PeriodAmino
133
+ * @package cosmos.vesting.v1beta1
134
+ * @see proto type: cosmos.vesting.v1beta1.Period
135
+ */
98
136
  export interface PeriodAmino {
99
- /** Period duration in seconds. */
137
+ /**
138
+ * Period duration in seconds.
139
+ */
100
140
  length: string;
101
141
  amount: CoinAmino[];
102
142
  }
@@ -107,6 +147,9 @@ export interface PeriodAminoMsg {
107
147
  /**
108
148
  * PeriodicVestingAccount implements the VestingAccount interface. It
109
149
  * periodically vests by unlocking coins during each specified period.
150
+ * @name PeriodicVestingAccount
151
+ * @package cosmos.vesting.v1beta1
152
+ * @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
110
153
  */
111
154
  export interface PeriodicVestingAccount {
112
155
  baseVestingAccount?: BaseVestingAccount;
@@ -120,6 +163,9 @@ export interface PeriodicVestingAccountProtoMsg {
120
163
  /**
121
164
  * PeriodicVestingAccount implements the VestingAccount interface. It
122
165
  * periodically vests by unlocking coins during each specified period.
166
+ * @name PeriodicVestingAccountAmino
167
+ * @package cosmos.vesting.v1beta1
168
+ * @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
123
169
  */
124
170
  export interface PeriodicVestingAccountAmino {
125
171
  base_vesting_account?: BaseVestingAccountAmino;
@@ -136,6 +182,9 @@ export interface PeriodicVestingAccountAminoMsg {
136
182
  * still be used for delegating and for governance votes even while locked.
137
183
  *
138
184
  * Since: cosmos-sdk 0.43
185
+ * @name PermanentLockedAccount
186
+ * @package cosmos.vesting.v1beta1
187
+ * @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
139
188
  */
140
189
  export interface PermanentLockedAccount {
141
190
  baseVestingAccount?: BaseVestingAccount;
@@ -150,6 +199,9 @@ export interface PermanentLockedAccountProtoMsg {
150
199
  * still be used for delegating and for governance votes even while locked.
151
200
  *
152
201
  * Since: cosmos-sdk 0.43
202
+ * @name PermanentLockedAccountAmino
203
+ * @package cosmos.vesting.v1beta1
204
+ * @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
153
205
  */
154
206
  export interface PermanentLockedAccountAmino {
155
207
  base_vesting_account?: BaseVestingAccountAmino;
@@ -158,6 +210,13 @@ export interface PermanentLockedAccountAminoMsg {
158
210
  type: "cosmos-sdk/PermanentLockedAccount";
159
211
  value: PermanentLockedAccountAmino;
160
212
  }
213
+ /**
214
+ * BaseVestingAccount implements the VestingAccount interface. It contains all
215
+ * the necessary fields needed for any vesting account implementation.
216
+ * @name BaseVestingAccount
217
+ * @package cosmos.vesting.v1beta1
218
+ * @see proto type: cosmos.vesting.v1beta1.BaseVestingAccount
219
+ */
161
220
  export declare const BaseVestingAccount: {
162
221
  typeUrl: string;
163
222
  aminoType: string;
@@ -175,6 +234,13 @@ export declare const BaseVestingAccount: {
175
234
  toProtoMsg(message: BaseVestingAccount): BaseVestingAccountProtoMsg;
176
235
  registerTypeUrl(): void;
177
236
  };
237
+ /**
238
+ * ContinuousVestingAccount implements the VestingAccount interface. It
239
+ * continuously vests by unlocking coins linearly with respect to time.
240
+ * @name ContinuousVestingAccount
241
+ * @package cosmos.vesting.v1beta1
242
+ * @see proto type: cosmos.vesting.v1beta1.ContinuousVestingAccount
243
+ */
178
244
  export declare const ContinuousVestingAccount: {
179
245
  typeUrl: string;
180
246
  aminoType: string;
@@ -192,6 +258,14 @@ export declare const ContinuousVestingAccount: {
192
258
  toProtoMsg(message: ContinuousVestingAccount): ContinuousVestingAccountProtoMsg;
193
259
  registerTypeUrl(): void;
194
260
  };
261
+ /**
262
+ * DelayedVestingAccount implements the VestingAccount interface. It vests all
263
+ * coins after a specific time, but non prior. In other words, it keeps them
264
+ * locked until a specified time.
265
+ * @name DelayedVestingAccount
266
+ * @package cosmos.vesting.v1beta1
267
+ * @see proto type: cosmos.vesting.v1beta1.DelayedVestingAccount
268
+ */
195
269
  export declare const DelayedVestingAccount: {
196
270
  typeUrl: string;
197
271
  aminoType: string;
@@ -209,6 +283,12 @@ export declare const DelayedVestingAccount: {
209
283
  toProtoMsg(message: DelayedVestingAccount): DelayedVestingAccountProtoMsg;
210
284
  registerTypeUrl(): void;
211
285
  };
286
+ /**
287
+ * Period defines a length of time and amount of coins that will vest.
288
+ * @name Period
289
+ * @package cosmos.vesting.v1beta1
290
+ * @see proto type: cosmos.vesting.v1beta1.Period
291
+ */
212
292
  export declare const Period: {
213
293
  typeUrl: string;
214
294
  aminoType: string;
@@ -226,6 +306,13 @@ export declare const Period: {
226
306
  toProtoMsg(message: Period): PeriodProtoMsg;
227
307
  registerTypeUrl(): void;
228
308
  };
309
+ /**
310
+ * PeriodicVestingAccount implements the VestingAccount interface. It
311
+ * periodically vests by unlocking coins during each specified period.
312
+ * @name PeriodicVestingAccount
313
+ * @package cosmos.vesting.v1beta1
314
+ * @see proto type: cosmos.vesting.v1beta1.PeriodicVestingAccount
315
+ */
229
316
  export declare const PeriodicVestingAccount: {
230
317
  typeUrl: string;
231
318
  aminoType: string;
@@ -243,6 +330,16 @@ export declare const PeriodicVestingAccount: {
243
330
  toProtoMsg(message: PeriodicVestingAccount): PeriodicVestingAccountProtoMsg;
244
331
  registerTypeUrl(): void;
245
332
  };
333
+ /**
334
+ * PermanentLockedAccount implements the VestingAccount interface. It does
335
+ * not ever release coins, locking them indefinitely. Coins in this account can
336
+ * still be used for delegating and for governance votes even while locked.
337
+ *
338
+ * Since: cosmos-sdk 0.43
339
+ * @name PermanentLockedAccount
340
+ * @package cosmos.vesting.v1beta1
341
+ * @see proto type: cosmos.vesting.v1beta1.PermanentLockedAccount
342
+ */
246
343
  export declare const PermanentLockedAccount: {
247
344
  typeUrl: string;
248
345
  aminoType: string;