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
@@ -3,97 +3,182 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.updateContractLabel = exports.storeAndMigrateContract = exports.addCodeUploadParamsAddresses = exports.removeCodeUploadParamsAddresses = exports.storeAndInstantiateContract = exports.unpinCodes = exports.pinCodes = exports.sudoContract = exports.updateParams = exports.updateInstantiateConfig = exports.clearAdmin = exports.updateAdmin = exports.migrateContract = exports.executeContract = exports.instantiateContract2 = exports.instantiateContract = exports.storeCode = void 0;
4
4
  const helper_func_types_1 = require("../../../helper-func-types");
5
5
  const tx_1 = require("./tx");
6
- /* StoreCode to submit Wasm code to the system */
6
+ /**
7
+ * StoreCode to submit Wasm code to the system
8
+ * @name storeCode
9
+ * @package cosmwasm.wasm.v1
10
+ * @see proto service: cosmwasm.wasm.v1.StoreCode
11
+ */
7
12
  exports.storeCode = (0, helper_func_types_1.buildTx)({
8
13
  msg: tx_1.MsgStoreCode
9
14
  });
10
- /* InstantiateContract creates a new smart contract instance for the given
11
- code id. */
15
+ /**
16
+ * InstantiateContract creates a new smart contract instance for the given
17
+ * code id.
18
+ * @name instantiateContract
19
+ * @package cosmwasm.wasm.v1
20
+ * @see proto service: cosmwasm.wasm.v1.InstantiateContract
21
+ */
12
22
  exports.instantiateContract = (0, helper_func_types_1.buildTx)({
13
23
  msg: tx_1.MsgInstantiateContract
14
24
  });
15
- /* InstantiateContract2 creates a new smart contract instance for the given
16
- code id with a predictable address */
25
+ /**
26
+ * InstantiateContract2 creates a new smart contract instance for the given
27
+ * code id with a predictable address
28
+ * @name instantiateContract2
29
+ * @package cosmwasm.wasm.v1
30
+ * @see proto service: cosmwasm.wasm.v1.InstantiateContract2
31
+ */
17
32
  exports.instantiateContract2 = (0, helper_func_types_1.buildTx)({
18
33
  msg: tx_1.MsgInstantiateContract2
19
34
  });
20
- /* Execute submits the given message data to a smart contract */
35
+ /**
36
+ * Execute submits the given message data to a smart contract
37
+ * @name executeContract
38
+ * @package cosmwasm.wasm.v1
39
+ * @see proto service: cosmwasm.wasm.v1.ExecuteContract
40
+ */
21
41
  exports.executeContract = (0, helper_func_types_1.buildTx)({
22
42
  msg: tx_1.MsgExecuteContract
23
43
  });
24
- /* Migrate runs a code upgrade/ downgrade for a smart contract */
44
+ /**
45
+ * Migrate runs a code upgrade/ downgrade for a smart contract
46
+ * @name migrateContract
47
+ * @package cosmwasm.wasm.v1
48
+ * @see proto service: cosmwasm.wasm.v1.MigrateContract
49
+ */
25
50
  exports.migrateContract = (0, helper_func_types_1.buildTx)({
26
51
  msg: tx_1.MsgMigrateContract
27
52
  });
28
- /* UpdateAdmin sets a new admin for a smart contract */
53
+ /**
54
+ * UpdateAdmin sets a new admin for a smart contract
55
+ * @name updateAdmin
56
+ * @package cosmwasm.wasm.v1
57
+ * @see proto service: cosmwasm.wasm.v1.UpdateAdmin
58
+ */
29
59
  exports.updateAdmin = (0, helper_func_types_1.buildTx)({
30
60
  msg: tx_1.MsgUpdateAdmin
31
61
  });
32
- /* ClearAdmin removes any admin stored for a smart contract */
62
+ /**
63
+ * ClearAdmin removes any admin stored for a smart contract
64
+ * @name clearAdmin
65
+ * @package cosmwasm.wasm.v1
66
+ * @see proto service: cosmwasm.wasm.v1.ClearAdmin
67
+ */
33
68
  exports.clearAdmin = (0, helper_func_types_1.buildTx)({
34
69
  msg: tx_1.MsgClearAdmin
35
70
  });
36
- /* UpdateInstantiateConfig updates instantiate config for a smart contract */
71
+ /**
72
+ * UpdateInstantiateConfig updates instantiate config for a smart contract
73
+ * @name updateInstantiateConfig
74
+ * @package cosmwasm.wasm.v1
75
+ * @see proto service: cosmwasm.wasm.v1.UpdateInstantiateConfig
76
+ */
37
77
  exports.updateInstantiateConfig = (0, helper_func_types_1.buildTx)({
38
78
  msg: tx_1.MsgUpdateInstantiateConfig
39
79
  });
40
- /* UpdateParams defines a governance operation for updating the x/wasm
41
- module parameters. The authority is defined in the keeper.
42
-
43
- Since: 0.40 */
80
+ /**
81
+ * UpdateParams defines a governance operation for updating the x/wasm
82
+ * module parameters. The authority is defined in the keeper.
83
+ *
84
+ * Since: 0.40
85
+ * @name updateParams
86
+ * @package cosmwasm.wasm.v1
87
+ * @see proto service: cosmwasm.wasm.v1.UpdateParams
88
+ */
44
89
  exports.updateParams = (0, helper_func_types_1.buildTx)({
45
90
  msg: tx_1.MsgUpdateParams
46
91
  });
47
- /* SudoContract defines a governance operation for calling sudo
48
- on a contract. The authority is defined in the keeper.
49
-
50
- Since: 0.40 */
92
+ /**
93
+ * SudoContract defines a governance operation for calling sudo
94
+ * on a contract. The authority is defined in the keeper.
95
+ *
96
+ * Since: 0.40
97
+ * @name sudoContract
98
+ * @package cosmwasm.wasm.v1
99
+ * @see proto service: cosmwasm.wasm.v1.SudoContract
100
+ */
51
101
  exports.sudoContract = (0, helper_func_types_1.buildTx)({
52
102
  msg: tx_1.MsgSudoContract
53
103
  });
54
- /* PinCodes defines a governance operation for pinning a set of
55
- code ids in the wasmvm cache. The authority is defined in the keeper.
56
-
57
- Since: 0.40 */
104
+ /**
105
+ * PinCodes defines a governance operation for pinning a set of
106
+ * code ids in the wasmvm cache. The authority is defined in the keeper.
107
+ *
108
+ * Since: 0.40
109
+ * @name pinCodes
110
+ * @package cosmwasm.wasm.v1
111
+ * @see proto service: cosmwasm.wasm.v1.PinCodes
112
+ */
58
113
  exports.pinCodes = (0, helper_func_types_1.buildTx)({
59
114
  msg: tx_1.MsgPinCodes
60
115
  });
61
- /* UnpinCodes defines a governance operation for unpinning a set of
62
- code ids in the wasmvm cache. The authority is defined in the keeper.
63
-
64
- Since: 0.40 */
116
+ /**
117
+ * UnpinCodes defines a governance operation for unpinning a set of
118
+ * code ids in the wasmvm cache. The authority is defined in the keeper.
119
+ *
120
+ * Since: 0.40
121
+ * @name unpinCodes
122
+ * @package cosmwasm.wasm.v1
123
+ * @see proto service: cosmwasm.wasm.v1.UnpinCodes
124
+ */
65
125
  exports.unpinCodes = (0, helper_func_types_1.buildTx)({
66
126
  msg: tx_1.MsgUnpinCodes
67
127
  });
68
- /* StoreAndInstantiateContract defines a governance operation for storing
69
- and instantiating the contract. The authority is defined in the keeper.
70
-
71
- Since: 0.40 */
128
+ /**
129
+ * StoreAndInstantiateContract defines a governance operation for storing
130
+ * and instantiating the contract. The authority is defined in the keeper.
131
+ *
132
+ * Since: 0.40
133
+ * @name storeAndInstantiateContract
134
+ * @package cosmwasm.wasm.v1
135
+ * @see proto service: cosmwasm.wasm.v1.StoreAndInstantiateContract
136
+ */
72
137
  exports.storeAndInstantiateContract = (0, helper_func_types_1.buildTx)({
73
138
  msg: tx_1.MsgStoreAndInstantiateContract
74
139
  });
75
- /* RemoveCodeUploadParamsAddresses defines a governance operation for
76
- removing addresses from code upload params.
77
- The authority is defined in the keeper. */
140
+ /**
141
+ * RemoveCodeUploadParamsAddresses defines a governance operation for
142
+ * removing addresses from code upload params.
143
+ * The authority is defined in the keeper.
144
+ * @name removeCodeUploadParamsAddresses
145
+ * @package cosmwasm.wasm.v1
146
+ * @see proto service: cosmwasm.wasm.v1.RemoveCodeUploadParamsAddresses
147
+ */
78
148
  exports.removeCodeUploadParamsAddresses = (0, helper_func_types_1.buildTx)({
79
149
  msg: tx_1.MsgRemoveCodeUploadParamsAddresses
80
150
  });
81
- /* AddCodeUploadParamsAddresses defines a governance operation for
82
- adding addresses to code upload params.
83
- The authority is defined in the keeper. */
151
+ /**
152
+ * AddCodeUploadParamsAddresses defines a governance operation for
153
+ * adding addresses to code upload params.
154
+ * The authority is defined in the keeper.
155
+ * @name addCodeUploadParamsAddresses
156
+ * @package cosmwasm.wasm.v1
157
+ * @see proto service: cosmwasm.wasm.v1.AddCodeUploadParamsAddresses
158
+ */
84
159
  exports.addCodeUploadParamsAddresses = (0, helper_func_types_1.buildTx)({
85
160
  msg: tx_1.MsgAddCodeUploadParamsAddresses
86
161
  });
87
- /* StoreAndMigrateContract defines a governance operation for storing
88
- and migrating the contract. The authority is defined in the keeper.
89
-
90
- Since: 0.42 */
162
+ /**
163
+ * StoreAndMigrateContract defines a governance operation for storing
164
+ * and migrating the contract. The authority is defined in the keeper.
165
+ *
166
+ * Since: 0.42
167
+ * @name storeAndMigrateContract
168
+ * @package cosmwasm.wasm.v1
169
+ * @see proto service: cosmwasm.wasm.v1.StoreAndMigrateContract
170
+ */
91
171
  exports.storeAndMigrateContract = (0, helper_func_types_1.buildTx)({
92
172
  msg: tx_1.MsgStoreAndMigrateContract
93
173
  });
94
- /* UpdateContractLabel sets a new label for a smart contract
95
-
96
- Since: 0.43 */
174
+ /**
175
+ * UpdateContractLabel sets a new label for a smart contract
176
+ *
177
+ * Since: 0.43
178
+ * @name updateContractLabel
179
+ * @package cosmwasm.wasm.v1
180
+ * @see proto service: cosmwasm.wasm.v1.UpdateContractLabel
181
+ */
97
182
  exports.updateContractLabel = (0, helper_func_types_1.buildTx)({
98
183
  msg: tx_1.MsgUpdateContractLabel
99
184
  });
@@ -31,7 +31,12 @@ export declare enum ContractCodeHistoryOperationType {
31
31
  export declare const ContractCodeHistoryOperationTypeAmino: typeof ContractCodeHistoryOperationType;
32
32
  export declare function contractCodeHistoryOperationTypeFromJSON(object: any): ContractCodeHistoryOperationType;
33
33
  export declare function contractCodeHistoryOperationTypeToJSON(object: ContractCodeHistoryOperationType): string;
34
- /** AccessTypeParam */
34
+ /**
35
+ * AccessTypeParam
36
+ * @name AccessTypeParam
37
+ * @package cosmwasm.wasm.v1
38
+ * @see proto type: cosmwasm.wasm.v1.AccessTypeParam
39
+ */
35
40
  export interface AccessTypeParam {
36
41
  value: AccessType;
37
42
  }
@@ -39,7 +44,12 @@ export interface AccessTypeParamProtoMsg {
39
44
  typeUrl: "/cosmwasm.wasm.v1.AccessTypeParam";
40
45
  value: Uint8Array;
41
46
  }
42
- /** AccessTypeParam */
47
+ /**
48
+ * AccessTypeParam
49
+ * @name AccessTypeParamAmino
50
+ * @package cosmwasm.wasm.v1
51
+ * @see proto type: cosmwasm.wasm.v1.AccessTypeParam
52
+ */
43
53
  export interface AccessTypeParamAmino {
44
54
  value: AccessType;
45
55
  }
@@ -47,7 +57,12 @@ export interface AccessTypeParamAminoMsg {
47
57
  type: "wasm/AccessTypeParam";
48
58
  value: AccessTypeParamAmino;
49
59
  }
50
- /** AccessConfig access control type. */
60
+ /**
61
+ * AccessConfig access control type.
62
+ * @name AccessConfig
63
+ * @package cosmwasm.wasm.v1
64
+ * @see proto type: cosmwasm.wasm.v1.AccessConfig
65
+ */
51
66
  export interface AccessConfig {
52
67
  permission: AccessType;
53
68
  addresses: string[];
@@ -56,7 +71,12 @@ export interface AccessConfigProtoMsg {
56
71
  typeUrl: "/cosmwasm.wasm.v1.AccessConfig";
57
72
  value: Uint8Array;
58
73
  }
59
- /** AccessConfig access control type. */
74
+ /**
75
+ * AccessConfig access control type.
76
+ * @name AccessConfigAmino
77
+ * @package cosmwasm.wasm.v1
78
+ * @see proto type: cosmwasm.wasm.v1.AccessConfig
79
+ */
60
80
  export interface AccessConfigAmino {
61
81
  permission: AccessType;
62
82
  addresses: string[];
@@ -65,7 +85,12 @@ export interface AccessConfigAminoMsg {
65
85
  type: "wasm/AccessConfig";
66
86
  value: AccessConfigAmino;
67
87
  }
68
- /** Params defines the set of wasm parameters. */
88
+ /**
89
+ * Params defines the set of wasm parameters.
90
+ * @name Params
91
+ * @package cosmwasm.wasm.v1
92
+ * @see proto type: cosmwasm.wasm.v1.Params
93
+ */
69
94
  export interface Params {
70
95
  codeUploadAccess: AccessConfig;
71
96
  instantiateDefaultPermission: AccessType;
@@ -74,7 +99,12 @@ export interface ParamsProtoMsg {
74
99
  typeUrl: "/cosmwasm.wasm.v1.Params";
75
100
  value: Uint8Array;
76
101
  }
77
- /** Params defines the set of wasm parameters. */
102
+ /**
103
+ * Params defines the set of wasm parameters.
104
+ * @name ParamsAmino
105
+ * @package cosmwasm.wasm.v1
106
+ * @see proto type: cosmwasm.wasm.v1.Params
107
+ */
78
108
  export interface ParamsAmino {
79
109
  code_upload_access: AccessConfigAmino;
80
110
  instantiate_default_permission: AccessType;
@@ -83,43 +113,80 @@ export interface ParamsAminoMsg {
83
113
  type: "wasm/Params";
84
114
  value: ParamsAmino;
85
115
  }
86
- /** CodeInfo is data for the uploaded contract WASM code */
116
+ /**
117
+ * CodeInfo is data for the uploaded contract WASM code
118
+ * @name CodeInfo
119
+ * @package cosmwasm.wasm.v1
120
+ * @see proto type: cosmwasm.wasm.v1.CodeInfo
121
+ */
87
122
  export interface CodeInfo {
88
- /** CodeHash is the unique identifier created by wasmvm */
123
+ /**
124
+ * CodeHash is the unique identifier created by wasmvm
125
+ */
89
126
  codeHash: Uint8Array;
90
- /** Creator address who initially stored the code */
127
+ /**
128
+ * Creator address who initially stored the code
129
+ */
91
130
  creator: string;
92
- /** InstantiateConfig access control to apply on contract creation, optional */
131
+ /**
132
+ * InstantiateConfig access control to apply on contract creation, optional
133
+ */
93
134
  instantiateConfig: AccessConfig;
94
135
  }
95
136
  export interface CodeInfoProtoMsg {
96
137
  typeUrl: "/cosmwasm.wasm.v1.CodeInfo";
97
138
  value: Uint8Array;
98
139
  }
99
- /** CodeInfo is data for the uploaded contract WASM code */
140
+ /**
141
+ * CodeInfo is data for the uploaded contract WASM code
142
+ * @name CodeInfoAmino
143
+ * @package cosmwasm.wasm.v1
144
+ * @see proto type: cosmwasm.wasm.v1.CodeInfo
145
+ */
100
146
  export interface CodeInfoAmino {
101
- /** CodeHash is the unique identifier created by wasmvm */
147
+ /**
148
+ * CodeHash is the unique identifier created by wasmvm
149
+ */
102
150
  code_hash: string;
103
- /** Creator address who initially stored the code */
151
+ /**
152
+ * Creator address who initially stored the code
153
+ */
104
154
  creator: string;
105
- /** InstantiateConfig access control to apply on contract creation, optional */
155
+ /**
156
+ * InstantiateConfig access control to apply on contract creation, optional
157
+ */
106
158
  instantiate_config: AccessConfigAmino;
107
159
  }
108
160
  export interface CodeInfoAminoMsg {
109
161
  type: "wasm/CodeInfo";
110
162
  value: CodeInfoAmino;
111
163
  }
112
- /** ContractInfo stores a WASM contract instance */
164
+ /**
165
+ * ContractInfo stores a WASM contract instance
166
+ * @name ContractInfo
167
+ * @package cosmwasm.wasm.v1
168
+ * @see proto type: cosmwasm.wasm.v1.ContractInfo
169
+ */
113
170
  export interface ContractInfo {
114
- /** CodeID is the reference to the stored Wasm code */
171
+ /**
172
+ * CodeID is the reference to the stored Wasm code
173
+ */
115
174
  codeId: bigint;
116
- /** Creator address who initially instantiated the contract */
175
+ /**
176
+ * Creator address who initially instantiated the contract
177
+ */
117
178
  creator: string;
118
- /** Admin is an optional address that can execute migrations */
179
+ /**
180
+ * Admin is an optional address that can execute migrations
181
+ */
119
182
  admin: string;
120
- /** Label is optional metadata to be stored with a contract instance. */
183
+ /**
184
+ * Label is optional metadata to be stored with a contract instance.
185
+ */
121
186
  label: string;
122
- /** Created Tx position when the contract was instantiated. */
187
+ /**
188
+ * Created Tx position when the contract was instantiated.
189
+ */
123
190
  created?: AbsoluteTxPosition;
124
191
  ibcPortId: string;
125
192
  /**
@@ -139,17 +206,32 @@ export type ContractInfoEncoded = Omit<ContractInfo, "extension"> & {
139
206
  */
140
207
  extension?: AnyProtoMsg | undefined;
141
208
  };
142
- /** ContractInfo stores a WASM contract instance */
209
+ /**
210
+ * ContractInfo stores a WASM contract instance
211
+ * @name ContractInfoAmino
212
+ * @package cosmwasm.wasm.v1
213
+ * @see proto type: cosmwasm.wasm.v1.ContractInfo
214
+ */
143
215
  export interface ContractInfoAmino {
144
- /** CodeID is the reference to the stored Wasm code */
216
+ /**
217
+ * CodeID is the reference to the stored Wasm code
218
+ */
145
219
  code_id: string;
146
- /** Creator address who initially instantiated the contract */
220
+ /**
221
+ * Creator address who initially instantiated the contract
222
+ */
147
223
  creator: string;
148
- /** Admin is an optional address that can execute migrations */
224
+ /**
225
+ * Admin is an optional address that can execute migrations
226
+ */
149
227
  admin: string;
150
- /** Label is optional metadata to be stored with a contract instance. */
228
+ /**
229
+ * Label is optional metadata to be stored with a contract instance.
230
+ */
151
231
  label: string;
152
- /** Created Tx position when the contract was instantiated. */
232
+ /**
233
+ * Created Tx position when the contract was instantiated.
234
+ */
153
235
  created?: AbsoluteTxPositionAmino;
154
236
  ibc_port_id: string;
155
237
  /**
@@ -162,12 +244,21 @@ export interface ContractInfoAminoMsg {
162
244
  type: "wasm/ContractInfo";
163
245
  value: ContractInfoAmino;
164
246
  }
165
- /** ContractCodeHistoryEntry metadata to a contract. */
247
+ /**
248
+ * ContractCodeHistoryEntry metadata to a contract.
249
+ * @name ContractCodeHistoryEntry
250
+ * @package cosmwasm.wasm.v1
251
+ * @see proto type: cosmwasm.wasm.v1.ContractCodeHistoryEntry
252
+ */
166
253
  export interface ContractCodeHistoryEntry {
167
254
  operation: ContractCodeHistoryOperationType;
168
- /** CodeID is the reference to the stored WASM code */
255
+ /**
256
+ * CodeID is the reference to the stored WASM code
257
+ */
169
258
  codeId: bigint;
170
- /** Updated Tx position when the operation was executed. */
259
+ /**
260
+ * Updated Tx position when the operation was executed.
261
+ */
171
262
  updated?: AbsoluteTxPosition;
172
263
  msg: Uint8Array;
173
264
  }
@@ -175,12 +266,21 @@ export interface ContractCodeHistoryEntryProtoMsg {
175
266
  typeUrl: "/cosmwasm.wasm.v1.ContractCodeHistoryEntry";
176
267
  value: Uint8Array;
177
268
  }
178
- /** ContractCodeHistoryEntry metadata to a contract. */
269
+ /**
270
+ * ContractCodeHistoryEntry metadata to a contract.
271
+ * @name ContractCodeHistoryEntryAmino
272
+ * @package cosmwasm.wasm.v1
273
+ * @see proto type: cosmwasm.wasm.v1.ContractCodeHistoryEntry
274
+ */
179
275
  export interface ContractCodeHistoryEntryAmino {
180
276
  operation: ContractCodeHistoryOperationType;
181
- /** CodeID is the reference to the stored WASM code */
277
+ /**
278
+ * CodeID is the reference to the stored WASM code
279
+ */
182
280
  code_id: string;
183
- /** Updated Tx position when the operation was executed. */
281
+ /**
282
+ * Updated Tx position when the operation was executed.
283
+ */
184
284
  updated?: AbsoluteTxPositionAmino;
185
285
  msg: any;
186
286
  }
@@ -191,9 +291,14 @@ export interface ContractCodeHistoryEntryAminoMsg {
191
291
  /**
192
292
  * AbsoluteTxPosition is a unique transaction position that allows for global
193
293
  * ordering of transactions.
294
+ * @name AbsoluteTxPosition
295
+ * @package cosmwasm.wasm.v1
296
+ * @see proto type: cosmwasm.wasm.v1.AbsoluteTxPosition
194
297
  */
195
298
  export interface AbsoluteTxPosition {
196
- /** BlockHeight is the block the contract was created at */
299
+ /**
300
+ * BlockHeight is the block the contract was created at
301
+ */
197
302
  blockHeight: bigint;
198
303
  /**
199
304
  * TxIndex is a monotonic counter within the block (actual transaction index,
@@ -208,9 +313,14 @@ export interface AbsoluteTxPositionProtoMsg {
208
313
  /**
209
314
  * AbsoluteTxPosition is a unique transaction position that allows for global
210
315
  * ordering of transactions.
316
+ * @name AbsoluteTxPositionAmino
317
+ * @package cosmwasm.wasm.v1
318
+ * @see proto type: cosmwasm.wasm.v1.AbsoluteTxPosition
211
319
  */
212
320
  export interface AbsoluteTxPositionAmino {
213
- /** BlockHeight is the block the contract was created at */
321
+ /**
322
+ * BlockHeight is the block the contract was created at
323
+ */
214
324
  block_height: string;
215
325
  /**
216
326
  * TxIndex is a monotonic counter within the block (actual transaction index,
@@ -222,28 +332,52 @@ export interface AbsoluteTxPositionAminoMsg {
222
332
  type: "wasm/AbsoluteTxPosition";
223
333
  value: AbsoluteTxPositionAmino;
224
334
  }
225
- /** Model is a struct that holds a KV pair */
335
+ /**
336
+ * Model is a struct that holds a KV pair
337
+ * @name Model
338
+ * @package cosmwasm.wasm.v1
339
+ * @see proto type: cosmwasm.wasm.v1.Model
340
+ */
226
341
  export interface Model {
227
- /** hex-encode key to read it better (this is often ascii) */
342
+ /**
343
+ * hex-encode key to read it better (this is often ascii)
344
+ */
228
345
  key: Uint8Array;
229
- /** base64-encode raw value */
346
+ /**
347
+ * base64-encode raw value
348
+ */
230
349
  value: Uint8Array;
231
350
  }
232
351
  export interface ModelProtoMsg {
233
352
  typeUrl: "/cosmwasm.wasm.v1.Model";
234
353
  value: Uint8Array;
235
354
  }
236
- /** Model is a struct that holds a KV pair */
355
+ /**
356
+ * Model is a struct that holds a KV pair
357
+ * @name ModelAmino
358
+ * @package cosmwasm.wasm.v1
359
+ * @see proto type: cosmwasm.wasm.v1.Model
360
+ */
237
361
  export interface ModelAmino {
238
- /** hex-encode key to read it better (this is often ascii) */
362
+ /**
363
+ * hex-encode key to read it better (this is often ascii)
364
+ */
239
365
  key: string;
240
- /** base64-encode raw value */
366
+ /**
367
+ * base64-encode raw value
368
+ */
241
369
  value: string;
242
370
  }
243
371
  export interface ModelAminoMsg {
244
372
  type: "wasm/Model";
245
373
  value: ModelAmino;
246
374
  }
375
+ /**
376
+ * AccessTypeParam
377
+ * @name AccessTypeParam
378
+ * @package cosmwasm.wasm.v1
379
+ * @see proto type: cosmwasm.wasm.v1.AccessTypeParam
380
+ */
247
381
  export declare const AccessTypeParam: {
248
382
  typeUrl: string;
249
383
  aminoType: string;
@@ -261,6 +395,12 @@ export declare const AccessTypeParam: {
261
395
  toProtoMsg(message: AccessTypeParam): AccessTypeParamProtoMsg;
262
396
  registerTypeUrl(): void;
263
397
  };
398
+ /**
399
+ * AccessConfig access control type.
400
+ * @name AccessConfig
401
+ * @package cosmwasm.wasm.v1
402
+ * @see proto type: cosmwasm.wasm.v1.AccessConfig
403
+ */
264
404
  export declare const AccessConfig: {
265
405
  typeUrl: string;
266
406
  aminoType: string;
@@ -278,6 +418,12 @@ export declare const AccessConfig: {
278
418
  toProtoMsg(message: AccessConfig): AccessConfigProtoMsg;
279
419
  registerTypeUrl(): void;
280
420
  };
421
+ /**
422
+ * Params defines the set of wasm parameters.
423
+ * @name Params
424
+ * @package cosmwasm.wasm.v1
425
+ * @see proto type: cosmwasm.wasm.v1.Params
426
+ */
281
427
  export declare const Params: {
282
428
  typeUrl: string;
283
429
  aminoType: string;
@@ -295,6 +441,12 @@ export declare const Params: {
295
441
  toProtoMsg(message: Params): ParamsProtoMsg;
296
442
  registerTypeUrl(): void;
297
443
  };
444
+ /**
445
+ * CodeInfo is data for the uploaded contract WASM code
446
+ * @name CodeInfo
447
+ * @package cosmwasm.wasm.v1
448
+ * @see proto type: cosmwasm.wasm.v1.CodeInfo
449
+ */
298
450
  export declare const CodeInfo: {
299
451
  typeUrl: string;
300
452
  aminoType: string;
@@ -312,6 +464,12 @@ export declare const CodeInfo: {
312
464
  toProtoMsg(message: CodeInfo): CodeInfoProtoMsg;
313
465
  registerTypeUrl(): void;
314
466
  };
467
+ /**
468
+ * ContractInfo stores a WASM contract instance
469
+ * @name ContractInfo
470
+ * @package cosmwasm.wasm.v1
471
+ * @see proto type: cosmwasm.wasm.v1.ContractInfo
472
+ */
315
473
  export declare const ContractInfo: {
316
474
  typeUrl: string;
317
475
  aminoType: string;
@@ -329,6 +487,12 @@ export declare const ContractInfo: {
329
487
  toProtoMsg(message: ContractInfo): ContractInfoProtoMsg;
330
488
  registerTypeUrl(): void;
331
489
  };
490
+ /**
491
+ * ContractCodeHistoryEntry metadata to a contract.
492
+ * @name ContractCodeHistoryEntry
493
+ * @package cosmwasm.wasm.v1
494
+ * @see proto type: cosmwasm.wasm.v1.ContractCodeHistoryEntry
495
+ */
332
496
  export declare const ContractCodeHistoryEntry: {
333
497
  typeUrl: string;
334
498
  aminoType: string;
@@ -346,6 +510,13 @@ export declare const ContractCodeHistoryEntry: {
346
510
  toProtoMsg(message: ContractCodeHistoryEntry): ContractCodeHistoryEntryProtoMsg;
347
511
  registerTypeUrl(): void;
348
512
  };
513
+ /**
514
+ * AbsoluteTxPosition is a unique transaction position that allows for global
515
+ * ordering of transactions.
516
+ * @name AbsoluteTxPosition
517
+ * @package cosmwasm.wasm.v1
518
+ * @see proto type: cosmwasm.wasm.v1.AbsoluteTxPosition
519
+ */
349
520
  export declare const AbsoluteTxPosition: {
350
521
  typeUrl: string;
351
522
  aminoType: string;
@@ -363,6 +534,12 @@ export declare const AbsoluteTxPosition: {
363
534
  toProtoMsg(message: AbsoluteTxPosition): AbsoluteTxPositionProtoMsg;
364
535
  registerTypeUrl(): void;
365
536
  };
537
+ /**
538
+ * Model is a struct that holds a KV pair
539
+ * @name Model
540
+ * @package cosmwasm.wasm.v1
541
+ * @see proto type: cosmwasm.wasm.v1.Model
542
+ */
366
543
  export declare const Model: {
367
544
  typeUrl: string;
368
545
  aminoType: string;