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
@@ -4,9 +4,14 @@ import { DeepPartial } from "../../../helpers";
4
4
  /**
5
5
  * GenericAuthorization gives the grantee unrestricted permissions to execute
6
6
  * the provided method on behalf of the granter's account.
7
+ * @name GenericAuthorization
8
+ * @package cosmos.authz.v1beta1
9
+ * @see proto type: cosmos.authz.v1beta1.GenericAuthorization
7
10
  */
8
11
  export interface GenericAuthorization {
9
- /** Msg, identified by it's type URL, to grant unrestricted permissions to execute */
12
+ /**
13
+ * Msg, identified by it's type URL, to grant unrestricted permissions to execute
14
+ */
10
15
  msg: string;
11
16
  }
12
17
  export interface GenericAuthorizationProtoMsg {
@@ -16,9 +21,14 @@ export interface GenericAuthorizationProtoMsg {
16
21
  /**
17
22
  * GenericAuthorization gives the grantee unrestricted permissions to execute
18
23
  * the provided method on behalf of the granter's account.
24
+ * @name GenericAuthorizationAmino
25
+ * @package cosmos.authz.v1beta1
26
+ * @see proto type: cosmos.authz.v1beta1.GenericAuthorization
19
27
  */
20
28
  export interface GenericAuthorizationAmino {
21
- /** Msg, identified by it's type URL, to grant unrestricted permissions to execute */
29
+ /**
30
+ * Msg, identified by it's type URL, to grant unrestricted permissions to execute
31
+ */
22
32
  msg: string;
23
33
  }
24
34
  export interface GenericAuthorizationAminoMsg {
@@ -28,6 +38,9 @@ export interface GenericAuthorizationAminoMsg {
28
38
  /**
29
39
  * Grant gives permissions to execute
30
40
  * the provide method with expiration time.
41
+ * @name Grant
42
+ * @package cosmos.authz.v1beta1
43
+ * @see proto type: cosmos.authz.v1beta1.Grant
31
44
  */
32
45
  export interface Grant {
33
46
  authorization?: GenericAuthorization | Any | undefined;
@@ -48,6 +61,9 @@ export type GrantEncoded = Omit<Grant, "authorization"> & {
48
61
  /**
49
62
  * Grant gives permissions to execute
50
63
  * the provide method with expiration time.
64
+ * @name GrantAmino
65
+ * @package cosmos.authz.v1beta1
66
+ * @see proto type: cosmos.authz.v1beta1.Grant
51
67
  */
52
68
  export interface GrantAmino {
53
69
  authorization?: AnyAmino;
@@ -65,6 +81,9 @@ export interface GrantAminoMsg {
65
81
  /**
66
82
  * GrantAuthorization extends a grant with both the addresses of the grantee and granter.
67
83
  * It is used in genesis.proto and query.proto
84
+ * @name GrantAuthorization
85
+ * @package cosmos.authz.v1beta1
86
+ * @see proto type: cosmos.authz.v1beta1.GrantAuthorization
68
87
  */
69
88
  export interface GrantAuthorization {
70
89
  granter: string;
@@ -82,6 +101,9 @@ export type GrantAuthorizationEncoded = Omit<GrantAuthorization, "authorization"
82
101
  /**
83
102
  * GrantAuthorization extends a grant with both the addresses of the grantee and granter.
84
103
  * It is used in genesis.proto and query.proto
104
+ * @name GrantAuthorizationAmino
105
+ * @package cosmos.authz.v1beta1
106
+ * @see proto type: cosmos.authz.v1beta1.GrantAuthorization
85
107
  */
86
108
  export interface GrantAuthorizationAmino {
87
109
  granter: string;
@@ -93,24 +115,45 @@ export interface GrantAuthorizationAminoMsg {
93
115
  type: "cosmos-sdk/GrantAuthorization";
94
116
  value: GrantAuthorizationAmino;
95
117
  }
96
- /** GrantQueueItem contains the list of TypeURL of a sdk.Msg. */
118
+ /**
119
+ * GrantQueueItem contains the list of TypeURL of a sdk.Msg.
120
+ * @name GrantQueueItem
121
+ * @package cosmos.authz.v1beta1
122
+ * @see proto type: cosmos.authz.v1beta1.GrantQueueItem
123
+ */
97
124
  export interface GrantQueueItem {
98
- /** msg_type_urls contains the list of TypeURL of a sdk.Msg. */
125
+ /**
126
+ * msg_type_urls contains the list of TypeURL of a sdk.Msg.
127
+ */
99
128
  msgTypeUrls: string[];
100
129
  }
101
130
  export interface GrantQueueItemProtoMsg {
102
131
  typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem";
103
132
  value: Uint8Array;
104
133
  }
105
- /** GrantQueueItem contains the list of TypeURL of a sdk.Msg. */
134
+ /**
135
+ * GrantQueueItem contains the list of TypeURL of a sdk.Msg.
136
+ * @name GrantQueueItemAmino
137
+ * @package cosmos.authz.v1beta1
138
+ * @see proto type: cosmos.authz.v1beta1.GrantQueueItem
139
+ */
106
140
  export interface GrantQueueItemAmino {
107
- /** msg_type_urls contains the list of TypeURL of a sdk.Msg. */
141
+ /**
142
+ * msg_type_urls contains the list of TypeURL of a sdk.Msg.
143
+ */
108
144
  msg_type_urls: string[];
109
145
  }
110
146
  export interface GrantQueueItemAminoMsg {
111
147
  type: "cosmos-sdk/GrantQueueItem";
112
148
  value: GrantQueueItemAmino;
113
149
  }
150
+ /**
151
+ * GenericAuthorization gives the grantee unrestricted permissions to execute
152
+ * the provided method on behalf of the granter's account.
153
+ * @name GenericAuthorization
154
+ * @package cosmos.authz.v1beta1
155
+ * @see proto type: cosmos.authz.v1beta1.GenericAuthorization
156
+ */
114
157
  export declare const GenericAuthorization: {
115
158
  typeUrl: string;
116
159
  aminoType: string;
@@ -128,6 +171,13 @@ export declare const GenericAuthorization: {
128
171
  toProtoMsg(message: GenericAuthorization): GenericAuthorizationProtoMsg;
129
172
  registerTypeUrl(): void;
130
173
  };
174
+ /**
175
+ * Grant gives permissions to execute
176
+ * the provide method with expiration time.
177
+ * @name Grant
178
+ * @package cosmos.authz.v1beta1
179
+ * @see proto type: cosmos.authz.v1beta1.Grant
180
+ */
131
181
  export declare const Grant: {
132
182
  typeUrl: string;
133
183
  aminoType: string;
@@ -145,6 +195,13 @@ export declare const Grant: {
145
195
  toProtoMsg(message: Grant): GrantProtoMsg;
146
196
  registerTypeUrl(): void;
147
197
  };
198
+ /**
199
+ * GrantAuthorization extends a grant with both the addresses of the grantee and granter.
200
+ * It is used in genesis.proto and query.proto
201
+ * @name GrantAuthorization
202
+ * @package cosmos.authz.v1beta1
203
+ * @see proto type: cosmos.authz.v1beta1.GrantAuthorization
204
+ */
148
205
  export declare const GrantAuthorization: {
149
206
  typeUrl: string;
150
207
  aminoType: string;
@@ -162,6 +219,12 @@ export declare const GrantAuthorization: {
162
219
  toProtoMsg(message: GrantAuthorization): GrantAuthorizationProtoMsg;
163
220
  registerTypeUrl(): void;
164
221
  };
222
+ /**
223
+ * GrantQueueItem contains the list of TypeURL of a sdk.Msg.
224
+ * @name GrantQueueItem
225
+ * @package cosmos.authz.v1beta1
226
+ * @see proto type: cosmos.authz.v1beta1.GrantQueueItem
227
+ */
165
228
  export declare const GrantQueueItem: {
166
229
  typeUrl: string;
167
230
  aminoType: string;
@@ -11,6 +11,13 @@ function createBaseGenericAuthorization() {
11
11
  msg: ""
12
12
  };
13
13
  }
14
+ /**
15
+ * GenericAuthorization gives the grantee unrestricted permissions to execute
16
+ * the provided method on behalf of the granter's account.
17
+ * @name GenericAuthorization
18
+ * @package cosmos.authz.v1beta1
19
+ * @see proto type: cosmos.authz.v1beta1.GenericAuthorization
20
+ */
14
21
  exports.GenericAuthorization = {
15
22
  typeUrl: "/cosmos.authz.v1beta1.GenericAuthorization",
16
23
  aminoType: "cosmos-sdk/GenericAuthorization",
@@ -95,6 +102,13 @@ function createBaseGrant() {
95
102
  expiration: undefined
96
103
  };
97
104
  }
105
+ /**
106
+ * Grant gives permissions to execute
107
+ * the provide method with expiration time.
108
+ * @name Grant
109
+ * @package cosmos.authz.v1beta1
110
+ * @see proto type: cosmos.authz.v1beta1.Grant
111
+ */
98
112
  exports.Grant = {
99
113
  typeUrl: "/cosmos.authz.v1beta1.Grant",
100
114
  aminoType: "cosmos-sdk/Grant",
@@ -191,6 +205,13 @@ function createBaseGrantAuthorization() {
191
205
  expiration: undefined
192
206
  };
193
207
  }
208
+ /**
209
+ * GrantAuthorization extends a grant with both the addresses of the grantee and granter.
210
+ * It is used in genesis.proto and query.proto
211
+ * @name GrantAuthorization
212
+ * @package cosmos.authz.v1beta1
213
+ * @see proto type: cosmos.authz.v1beta1.GrantAuthorization
214
+ */
194
215
  exports.GrantAuthorization = {
195
216
  typeUrl: "/cosmos.authz.v1beta1.GrantAuthorization",
196
217
  aminoType: "cosmos-sdk/GrantAuthorization",
@@ -306,6 +327,12 @@ function createBaseGrantQueueItem() {
306
327
  msgTypeUrls: []
307
328
  };
308
329
  }
330
+ /**
331
+ * GrantQueueItem contains the list of TypeURL of a sdk.Msg.
332
+ * @name GrantQueueItem
333
+ * @package cosmos.authz.v1beta1
334
+ * @see proto type: cosmos.authz.v1beta1.GrantQueueItem
335
+ */
309
336
  exports.GrantQueueItem = {
310
337
  typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem",
311
338
  aminoType: "cosmos-sdk/GrantQueueItem",
@@ -5,6 +5,9 @@ import { DeepPartial } from "../../../helpers";
5
5
  /**
6
6
  * MsgGrant is a request type for Grant method. It declares authorization to the grantee
7
7
  * on behalf of the granter with the provided expiration time.
8
+ * @name MsgGrant
9
+ * @package cosmos.authz.v1beta1
10
+ * @see proto type: cosmos.authz.v1beta1.MsgGrant
8
11
  */
9
12
  export interface MsgGrant {
10
13
  granter: string;
@@ -18,6 +21,9 @@ export interface MsgGrantProtoMsg {
18
21
  /**
19
22
  * MsgGrant is a request type for Grant method. It declares authorization to the grantee
20
23
  * on behalf of the granter with the provided expiration time.
24
+ * @name MsgGrantAmino
25
+ * @package cosmos.authz.v1beta1
26
+ * @see proto type: cosmos.authz.v1beta1.MsgGrant
21
27
  */
22
28
  export interface MsgGrantAmino {
23
29
  granter: string;
@@ -28,14 +34,24 @@ export interface MsgGrantAminoMsg {
28
34
  type: "cosmos-sdk/MsgGrant";
29
35
  value: MsgGrantAmino;
30
36
  }
31
- /** MsgGrantResponse defines the Msg/MsgGrant response type. */
37
+ /**
38
+ * MsgGrantResponse defines the Msg/MsgGrant response type.
39
+ * @name MsgGrantResponse
40
+ * @package cosmos.authz.v1beta1
41
+ * @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
42
+ */
32
43
  export interface MsgGrantResponse {
33
44
  }
34
45
  export interface MsgGrantResponseProtoMsg {
35
46
  typeUrl: "/cosmos.authz.v1beta1.MsgGrantResponse";
36
47
  value: Uint8Array;
37
48
  }
38
- /** MsgGrantResponse defines the Msg/MsgGrant response type. */
49
+ /**
50
+ * MsgGrantResponse defines the Msg/MsgGrant response type.
51
+ * @name MsgGrantResponseAmino
52
+ * @package cosmos.authz.v1beta1
53
+ * @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
54
+ */
39
55
  export interface MsgGrantResponseAmino {
40
56
  }
41
57
  export interface MsgGrantResponseAminoMsg {
@@ -46,6 +62,9 @@ export interface MsgGrantResponseAminoMsg {
46
62
  * MsgExec attempts to execute the provided messages using
47
63
  * authorizations granted to the grantee. Each message should have only
48
64
  * one signer corresponding to the granter of the authorization.
65
+ * @name MsgExec
66
+ * @package cosmos.authz.v1beta1
67
+ * @see proto type: cosmos.authz.v1beta1.MsgExec
49
68
  */
50
69
  export interface MsgExec {
51
70
  grantee: string;
@@ -72,6 +91,9 @@ export type MsgExecEncoded = Omit<MsgExec, "msgs"> & {
72
91
  * MsgExec attempts to execute the provided messages using
73
92
  * authorizations granted to the grantee. Each message should have only
74
93
  * one signer corresponding to the granter of the authorization.
94
+ * @name MsgExecAmino
95
+ * @package cosmos.authz.v1beta1
96
+ * @see proto type: cosmos.authz.v1beta1.MsgExec
75
97
  */
76
98
  export interface MsgExecAmino {
77
99
  grantee: string;
@@ -86,7 +108,12 @@ export interface MsgExecAminoMsg {
86
108
  type: "cosmos-sdk/MsgExec";
87
109
  value: MsgExecAmino;
88
110
  }
89
- /** MsgExecResponse defines the Msg/MsgExecResponse response type. */
111
+ /**
112
+ * MsgExecResponse defines the Msg/MsgExecResponse response type.
113
+ * @name MsgExecResponse
114
+ * @package cosmos.authz.v1beta1
115
+ * @see proto type: cosmos.authz.v1beta1.MsgExecResponse
116
+ */
90
117
  export interface MsgExecResponse {
91
118
  results: Uint8Array[];
92
119
  }
@@ -94,7 +121,12 @@ export interface MsgExecResponseProtoMsg {
94
121
  typeUrl: "/cosmos.authz.v1beta1.MsgExecResponse";
95
122
  value: Uint8Array;
96
123
  }
97
- /** MsgExecResponse defines the Msg/MsgExecResponse response type. */
124
+ /**
125
+ * MsgExecResponse defines the Msg/MsgExecResponse response type.
126
+ * @name MsgExecResponseAmino
127
+ * @package cosmos.authz.v1beta1
128
+ * @see proto type: cosmos.authz.v1beta1.MsgExecResponse
129
+ */
98
130
  export interface MsgExecResponseAmino {
99
131
  results: string[];
100
132
  }
@@ -105,6 +137,9 @@ export interface MsgExecResponseAminoMsg {
105
137
  /**
106
138
  * MsgRevoke revokes any authorization with the provided sdk.Msg type on the
107
139
  * granter's account with that has been granted to the grantee.
140
+ * @name MsgRevoke
141
+ * @package cosmos.authz.v1beta1
142
+ * @see proto type: cosmos.authz.v1beta1.MsgRevoke
108
143
  */
109
144
  export interface MsgRevoke {
110
145
  granter: string;
@@ -118,6 +153,9 @@ export interface MsgRevokeProtoMsg {
118
153
  /**
119
154
  * MsgRevoke revokes any authorization with the provided sdk.Msg type on the
120
155
  * granter's account with that has been granted to the grantee.
156
+ * @name MsgRevokeAmino
157
+ * @package cosmos.authz.v1beta1
158
+ * @see proto type: cosmos.authz.v1beta1.MsgRevoke
121
159
  */
122
160
  export interface MsgRevokeAmino {
123
161
  granter: string;
@@ -128,20 +166,37 @@ export interface MsgRevokeAminoMsg {
128
166
  type: "cosmos-sdk/MsgRevoke";
129
167
  value: MsgRevokeAmino;
130
168
  }
131
- /** MsgRevokeResponse defines the Msg/MsgRevokeResponse response type. */
169
+ /**
170
+ * MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
171
+ * @name MsgRevokeResponse
172
+ * @package cosmos.authz.v1beta1
173
+ * @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
174
+ */
132
175
  export interface MsgRevokeResponse {
133
176
  }
134
177
  export interface MsgRevokeResponseProtoMsg {
135
178
  typeUrl: "/cosmos.authz.v1beta1.MsgRevokeResponse";
136
179
  value: Uint8Array;
137
180
  }
138
- /** MsgRevokeResponse defines the Msg/MsgRevokeResponse response type. */
181
+ /**
182
+ * MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
183
+ * @name MsgRevokeResponseAmino
184
+ * @package cosmos.authz.v1beta1
185
+ * @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
186
+ */
139
187
  export interface MsgRevokeResponseAmino {
140
188
  }
141
189
  export interface MsgRevokeResponseAminoMsg {
142
190
  type: "cosmos-sdk/MsgRevokeResponse";
143
191
  value: MsgRevokeResponseAmino;
144
192
  }
193
+ /**
194
+ * MsgGrant is a request type for Grant method. It declares authorization to the grantee
195
+ * on behalf of the granter with the provided expiration time.
196
+ * @name MsgGrant
197
+ * @package cosmos.authz.v1beta1
198
+ * @see proto type: cosmos.authz.v1beta1.MsgGrant
199
+ */
145
200
  export declare const MsgGrant: {
146
201
  typeUrl: string;
147
202
  aminoType: string;
@@ -159,6 +214,12 @@ export declare const MsgGrant: {
159
214
  toProtoMsg(message: MsgGrant): MsgGrantProtoMsg;
160
215
  registerTypeUrl(): void;
161
216
  };
217
+ /**
218
+ * MsgGrantResponse defines the Msg/MsgGrant response type.
219
+ * @name MsgGrantResponse
220
+ * @package cosmos.authz.v1beta1
221
+ * @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
222
+ */
162
223
  export declare const MsgGrantResponse: {
163
224
  typeUrl: string;
164
225
  aminoType: string;
@@ -176,6 +237,14 @@ export declare const MsgGrantResponse: {
176
237
  toProtoMsg(message: MsgGrantResponse): MsgGrantResponseProtoMsg;
177
238
  registerTypeUrl(): void;
178
239
  };
240
+ /**
241
+ * MsgExec attempts to execute the provided messages using
242
+ * authorizations granted to the grantee. Each message should have only
243
+ * one signer corresponding to the granter of the authorization.
244
+ * @name MsgExec
245
+ * @package cosmos.authz.v1beta1
246
+ * @see proto type: cosmos.authz.v1beta1.MsgExec
247
+ */
179
248
  export declare const MsgExec: {
180
249
  typeUrl: string;
181
250
  aminoType: string;
@@ -193,6 +262,12 @@ export declare const MsgExec: {
193
262
  toProtoMsg(message: MsgExec): MsgExecProtoMsg;
194
263
  registerTypeUrl(): void;
195
264
  };
265
+ /**
266
+ * MsgExecResponse defines the Msg/MsgExecResponse response type.
267
+ * @name MsgExecResponse
268
+ * @package cosmos.authz.v1beta1
269
+ * @see proto type: cosmos.authz.v1beta1.MsgExecResponse
270
+ */
196
271
  export declare const MsgExecResponse: {
197
272
  typeUrl: string;
198
273
  aminoType: string;
@@ -210,6 +285,13 @@ export declare const MsgExecResponse: {
210
285
  toProtoMsg(message: MsgExecResponse): MsgExecResponseProtoMsg;
211
286
  registerTypeUrl(): void;
212
287
  };
288
+ /**
289
+ * MsgRevoke revokes any authorization with the provided sdk.Msg type on the
290
+ * granter's account with that has been granted to the grantee.
291
+ * @name MsgRevoke
292
+ * @package cosmos.authz.v1beta1
293
+ * @see proto type: cosmos.authz.v1beta1.MsgRevoke
294
+ */
213
295
  export declare const MsgRevoke: {
214
296
  typeUrl: string;
215
297
  aminoType: string;
@@ -227,6 +309,12 @@ export declare const MsgRevoke: {
227
309
  toProtoMsg(message: MsgRevoke): MsgRevokeProtoMsg;
228
310
  registerTypeUrl(): void;
229
311
  };
312
+ /**
313
+ * MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
314
+ * @name MsgRevokeResponse
315
+ * @package cosmos.authz.v1beta1
316
+ * @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
317
+ */
230
318
  export declare const MsgRevokeResponse: {
231
319
  typeUrl: string;
232
320
  aminoType: string;
@@ -13,6 +13,13 @@ function createBaseMsgGrant() {
13
13
  grant: authz_1.Grant.fromPartial({})
14
14
  };
15
15
  }
16
+ /**
17
+ * MsgGrant is a request type for Grant method. It declares authorization to the grantee
18
+ * on behalf of the granter with the provided expiration time.
19
+ * @name MsgGrant
20
+ * @package cosmos.authz.v1beta1
21
+ * @see proto type: cosmos.authz.v1beta1.MsgGrant
22
+ */
16
23
  exports.MsgGrant = {
17
24
  typeUrl: "/cosmos.authz.v1beta1.MsgGrant",
18
25
  aminoType: "cosmos-sdk/MsgGrant",
@@ -115,6 +122,12 @@ exports.MsgGrant = {
115
122
  function createBaseMsgGrantResponse() {
116
123
  return {};
117
124
  }
125
+ /**
126
+ * MsgGrantResponse defines the Msg/MsgGrant response type.
127
+ * @name MsgGrantResponse
128
+ * @package cosmos.authz.v1beta1
129
+ * @see proto type: cosmos.authz.v1beta1.MsgGrantResponse
130
+ */
118
131
  exports.MsgGrantResponse = {
119
132
  typeUrl: "/cosmos.authz.v1beta1.MsgGrantResponse",
120
133
  aminoType: "cosmos-sdk/MsgGrantResponse",
@@ -182,6 +195,14 @@ function createBaseMsgExec() {
182
195
  msgs: []
183
196
  };
184
197
  }
198
+ /**
199
+ * MsgExec attempts to execute the provided messages using
200
+ * authorizations granted to the grantee. Each message should have only
201
+ * one signer corresponding to the granter of the authorization.
202
+ * @name MsgExec
203
+ * @package cosmos.authz.v1beta1
204
+ * @see proto type: cosmos.authz.v1beta1.MsgExec
205
+ */
185
206
  exports.MsgExec = {
186
207
  typeUrl: "/cosmos.authz.v1beta1.MsgExec",
187
208
  aminoType: "cosmos-sdk/MsgExec",
@@ -273,6 +294,12 @@ function createBaseMsgExecResponse() {
273
294
  results: []
274
295
  };
275
296
  }
297
+ /**
298
+ * MsgExecResponse defines the Msg/MsgExecResponse response type.
299
+ * @name MsgExecResponse
300
+ * @package cosmos.authz.v1beta1
301
+ * @see proto type: cosmos.authz.v1beta1.MsgExecResponse
302
+ */
276
303
  exports.MsgExecResponse = {
277
304
  typeUrl: "/cosmos.authz.v1beta1.MsgExecResponse",
278
305
  aminoType: "cosmos-sdk/MsgExecResponse",
@@ -355,6 +382,13 @@ function createBaseMsgRevoke() {
355
382
  msgTypeUrl: ""
356
383
  };
357
384
  }
385
+ /**
386
+ * MsgRevoke revokes any authorization with the provided sdk.Msg type on the
387
+ * granter's account with that has been granted to the grantee.
388
+ * @name MsgRevoke
389
+ * @package cosmos.authz.v1beta1
390
+ * @see proto type: cosmos.authz.v1beta1.MsgRevoke
391
+ */
358
392
  exports.MsgRevoke = {
359
393
  typeUrl: "/cosmos.authz.v1beta1.MsgRevoke",
360
394
  aminoType: "cosmos-sdk/MsgRevoke",
@@ -452,6 +486,12 @@ exports.MsgRevoke = {
452
486
  function createBaseMsgRevokeResponse() {
453
487
  return {};
454
488
  }
489
+ /**
490
+ * MsgRevokeResponse defines the Msg/MsgRevokeResponse response type.
491
+ * @name MsgRevokeResponse
492
+ * @package cosmos.authz.v1beta1
493
+ * @see proto type: cosmos.authz.v1beta1.MsgRevokeResponse
494
+ */
455
495
  exports.MsgRevokeResponse = {
456
496
  typeUrl: "/cosmos.authz.v1beta1.MsgRevokeResponse",
457
497
  aminoType: "cosmos-sdk/MsgRevokeResponse",
@@ -1,4 +1,28 @@
1
1
  import { MsgGrant, MsgExec, MsgRevoke } from "./tx";
2
+ /**
3
+ * Grant grants the provided authorization to the grantee on the granter's
4
+ * account with the provided expiration time. If there is already a grant
5
+ * for the given (granter, grantee, Authorization) triple, then the grant
6
+ * will be overwritten.
7
+ * @name grant
8
+ * @package cosmos.authz.v1beta1
9
+ * @see proto service: cosmos.authz.v1beta1.Grant
10
+ */
2
11
  export declare const grant: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgGrant | MsgGrant[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
12
+ /**
13
+ * Exec attempts to execute the provided messages using
14
+ * authorizations granted to the grantee. Each message should have only
15
+ * one signer corresponding to the granter of the authorization.
16
+ * @name exec
17
+ * @package cosmos.authz.v1beta1
18
+ * @see proto service: cosmos.authz.v1beta1.Exec
19
+ */
3
20
  export declare const exec: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExec | MsgExec[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
21
+ /**
22
+ * Revoke revokes any authorization corresponding to the provided method name on the
23
+ * granter's account that has been granted to the grantee.
24
+ * @name revoke
25
+ * @package cosmos.authz.v1beta1
26
+ * @see proto service: cosmos.authz.v1beta1.Revoke
27
+ */
4
28
  export declare const revoke: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRevoke | MsgRevoke[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
@@ -3,21 +3,36 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.revoke = exports.exec = exports.grant = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const tx_1 = require("./tx");
6
- /* Grant grants the provided authorization to the grantee on the granter's
7
- account with the provided expiration time. If there is already a grant
8
- for the given (granter, grantee, Authorization) triple, then the grant
9
- will be overwritten. */
6
+ /**
7
+ * Grant grants the provided authorization to the grantee on the granter's
8
+ * account with the provided expiration time. If there is already a grant
9
+ * for the given (granter, grantee, Authorization) triple, then the grant
10
+ * will be overwritten.
11
+ * @name grant
12
+ * @package cosmos.authz.v1beta1
13
+ * @see proto service: cosmos.authz.v1beta1.Grant
14
+ */
10
15
  exports.grant = (0, helper_func_types_1.buildTx)({
11
16
  msg: tx_1.MsgGrant
12
17
  });
13
- /* Exec attempts to execute the provided messages using
14
- authorizations granted to the grantee. Each message should have only
15
- one signer corresponding to the granter of the authorization. */
18
+ /**
19
+ * Exec attempts to execute the provided messages using
20
+ * authorizations granted to the grantee. Each message should have only
21
+ * one signer corresponding to the granter of the authorization.
22
+ * @name exec
23
+ * @package cosmos.authz.v1beta1
24
+ * @see proto service: cosmos.authz.v1beta1.Exec
25
+ */
16
26
  exports.exec = (0, helper_func_types_1.buildTx)({
17
27
  msg: tx_1.MsgExec
18
28
  });
19
- /* Revoke revokes any authorization corresponding to the provided method name on the
20
- granter's account that has been granted to the grantee. */
29
+ /**
30
+ * Revoke revokes any authorization corresponding to the provided method name on the
31
+ * granter's account that has been granted to the grantee.
32
+ * @name revoke
33
+ * @package cosmos.authz.v1beta1
34
+ * @see proto service: cosmos.authz.v1beta1.Revoke
35
+ */
21
36
  exports.revoke = (0, helper_func_types_1.buildTx)({
22
37
  msg: tx_1.MsgRevoke
23
38
  });