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
@@ -301,6 +301,11 @@ function createBaseRequest() {
301
301
  finalizeBlock: undefined
302
302
  };
303
303
  }
304
+ /**
305
+ * @name Request
306
+ * @package tendermint.abci
307
+ * @see proto type: tendermint.abci.Request
308
+ */
304
309
  export const Request = {
305
310
  typeUrl: "/tendermint.abci.Request",
306
311
  is(o) {
@@ -556,6 +561,11 @@ function createBaseRequestEcho() {
556
561
  message: ""
557
562
  };
558
563
  }
564
+ /**
565
+ * @name RequestEcho
566
+ * @package tendermint.abci
567
+ * @see proto type: tendermint.abci.RequestEcho
568
+ */
559
569
  export const RequestEcho = {
560
570
  typeUrl: "/tendermint.abci.RequestEcho",
561
571
  is(o) {
@@ -624,6 +634,11 @@ export const RequestEcho = {
624
634
  function createBaseRequestFlush() {
625
635
  return {};
626
636
  }
637
+ /**
638
+ * @name RequestFlush
639
+ * @package tendermint.abci
640
+ * @see proto type: tendermint.abci.RequestFlush
641
+ */
627
642
  export const RequestFlush = {
628
643
  typeUrl: "/tendermint.abci.RequestFlush",
629
644
  is(o) {
@@ -686,6 +701,11 @@ function createBaseRequestInfo() {
686
701
  abciVersion: ""
687
702
  };
688
703
  }
704
+ /**
705
+ * @name RequestInfo
706
+ * @package tendermint.abci
707
+ * @see proto type: tendermint.abci.RequestInfo
708
+ */
689
709
  export const RequestInfo = {
690
710
  typeUrl: "/tendermint.abci.RequestInfo",
691
711
  is(o) {
@@ -794,6 +814,11 @@ function createBaseRequestInitChain() {
794
814
  initialHeight: BigInt(0)
795
815
  };
796
816
  }
817
+ /**
818
+ * @name RequestInitChain
819
+ * @package tendermint.abci
820
+ * @see proto type: tendermint.abci.RequestInitChain
821
+ */
797
822
  export const RequestInitChain = {
798
823
  typeUrl: "/tendermint.abci.RequestInitChain",
799
824
  is(o) {
@@ -931,6 +956,11 @@ function createBaseRequestQuery() {
931
956
  prove: false
932
957
  };
933
958
  }
959
+ /**
960
+ * @name RequestQuery
961
+ * @package tendermint.abci
962
+ * @see proto type: tendermint.abci.RequestQuery
963
+ */
934
964
  export const RequestQuery = {
935
965
  typeUrl: "/tendermint.abci.RequestQuery",
936
966
  is(o) {
@@ -1035,6 +1065,11 @@ function createBaseRequestCheckTx() {
1035
1065
  type: 0
1036
1066
  };
1037
1067
  }
1068
+ /**
1069
+ * @name RequestCheckTx
1070
+ * @package tendermint.abci
1071
+ * @see proto type: tendermint.abci.RequestCheckTx
1072
+ */
1038
1073
  export const RequestCheckTx = {
1039
1074
  typeUrl: "/tendermint.abci.RequestCheckTx",
1040
1075
  is(o) {
@@ -1114,6 +1149,11 @@ export const RequestCheckTx = {
1114
1149
  function createBaseRequestCommit() {
1115
1150
  return {};
1116
1151
  }
1152
+ /**
1153
+ * @name RequestCommit
1154
+ * @package tendermint.abci
1155
+ * @see proto type: tendermint.abci.RequestCommit
1156
+ */
1117
1157
  export const RequestCommit = {
1118
1158
  typeUrl: "/tendermint.abci.RequestCommit",
1119
1159
  is(o) {
@@ -1171,6 +1211,12 @@ export const RequestCommit = {
1171
1211
  function createBaseRequestListSnapshots() {
1172
1212
  return {};
1173
1213
  }
1214
+ /**
1215
+ * lists available snapshots
1216
+ * @name RequestListSnapshots
1217
+ * @package tendermint.abci
1218
+ * @see proto type: tendermint.abci.RequestListSnapshots
1219
+ */
1174
1220
  export const RequestListSnapshots = {
1175
1221
  typeUrl: "/tendermint.abci.RequestListSnapshots",
1176
1222
  is(o) {
@@ -1231,6 +1277,12 @@ function createBaseRequestOfferSnapshot() {
1231
1277
  appHash: new Uint8Array()
1232
1278
  };
1233
1279
  }
1280
+ /**
1281
+ * offers a snapshot to the application
1282
+ * @name RequestOfferSnapshot
1283
+ * @package tendermint.abci
1284
+ * @see proto type: tendermint.abci.RequestOfferSnapshot
1285
+ */
1234
1286
  export const RequestOfferSnapshot = {
1235
1287
  typeUrl: "/tendermint.abci.RequestOfferSnapshot",
1236
1288
  is(o) {
@@ -1319,6 +1371,12 @@ function createBaseRequestLoadSnapshotChunk() {
1319
1371
  chunk: 0
1320
1372
  };
1321
1373
  }
1374
+ /**
1375
+ * loads a snapshot chunk
1376
+ * @name RequestLoadSnapshotChunk
1377
+ * @package tendermint.abci
1378
+ * @see proto type: tendermint.abci.RequestLoadSnapshotChunk
1379
+ */
1322
1380
  export const RequestLoadSnapshotChunk = {
1323
1381
  typeUrl: "/tendermint.abci.RequestLoadSnapshotChunk",
1324
1382
  is(o) {
@@ -1413,6 +1471,12 @@ function createBaseRequestApplySnapshotChunk() {
1413
1471
  sender: ""
1414
1472
  };
1415
1473
  }
1474
+ /**
1475
+ * Applies a snapshot chunk
1476
+ * @name RequestApplySnapshotChunk
1477
+ * @package tendermint.abci
1478
+ * @see proto type: tendermint.abci.RequestApplySnapshotChunk
1479
+ */
1416
1480
  export const RequestApplySnapshotChunk = {
1417
1481
  typeUrl: "/tendermint.abci.RequestApplySnapshotChunk",
1418
1482
  is(o) {
@@ -1512,6 +1576,11 @@ function createBaseRequestPrepareProposal() {
1512
1576
  proposerAddress: new Uint8Array()
1513
1577
  };
1514
1578
  }
1579
+ /**
1580
+ * @name RequestPrepareProposal
1581
+ * @package tendermint.abci
1582
+ * @see proto type: tendermint.abci.RequestPrepareProposal
1583
+ */
1515
1584
  export const RequestPrepareProposal = {
1516
1585
  typeUrl: "/tendermint.abci.RequestPrepareProposal",
1517
1586
  is(o) {
@@ -1678,6 +1747,11 @@ function createBaseRequestProcessProposal() {
1678
1747
  proposerAddress: new Uint8Array()
1679
1748
  };
1680
1749
  }
1750
+ /**
1751
+ * @name RequestProcessProposal
1752
+ * @package tendermint.abci
1753
+ * @see proto type: tendermint.abci.RequestProcessProposal
1754
+ */
1681
1755
  export const RequestProcessProposal = {
1682
1756
  typeUrl: "/tendermint.abci.RequestProcessProposal",
1683
1757
  is(o) {
@@ -1844,6 +1918,12 @@ function createBaseRequestExtendVote() {
1844
1918
  proposerAddress: new Uint8Array()
1845
1919
  };
1846
1920
  }
1921
+ /**
1922
+ * Extends a vote with application-injected data
1923
+ * @name RequestExtendVote
1924
+ * @package tendermint.abci
1925
+ * @see proto type: tendermint.abci.RequestExtendVote
1926
+ */
1847
1927
  export const RequestExtendVote = {
1848
1928
  typeUrl: "/tendermint.abci.RequestExtendVote",
1849
1929
  is(o) {
@@ -2006,6 +2086,12 @@ function createBaseRequestVerifyVoteExtension() {
2006
2086
  voteExtension: new Uint8Array()
2007
2087
  };
2008
2088
  }
2089
+ /**
2090
+ * Verify the vote extension
2091
+ * @name RequestVerifyVoteExtension
2092
+ * @package tendermint.abci
2093
+ * @see proto type: tendermint.abci.RequestVerifyVoteExtension
2094
+ */
2009
2095
  export const RequestVerifyVoteExtension = {
2010
2096
  typeUrl: "/tendermint.abci.RequestVerifyVoteExtension",
2011
2097
  is(o) {
@@ -2116,6 +2202,11 @@ function createBaseRequestFinalizeBlock() {
2116
2202
  proposerAddress: new Uint8Array()
2117
2203
  };
2118
2204
  }
2205
+ /**
2206
+ * @name RequestFinalizeBlock
2207
+ * @package tendermint.abci
2208
+ * @see proto type: tendermint.abci.RequestFinalizeBlock
2209
+ */
2119
2210
  export const RequestFinalizeBlock = {
2120
2211
  typeUrl: "/tendermint.abci.RequestFinalizeBlock",
2121
2212
  is(o) {
@@ -2291,6 +2382,11 @@ function createBaseResponse() {
2291
2382
  finalizeBlock: undefined
2292
2383
  };
2293
2384
  }
2385
+ /**
2386
+ * @name Response
2387
+ * @package tendermint.abci
2388
+ * @see proto type: tendermint.abci.Response
2389
+ */
2294
2390
  export const Response = {
2295
2391
  typeUrl: "/tendermint.abci.Response",
2296
2392
  is(o) {
@@ -2558,6 +2654,12 @@ function createBaseResponseException() {
2558
2654
  error: ""
2559
2655
  };
2560
2656
  }
2657
+ /**
2658
+ * nondeterministic
2659
+ * @name ResponseException
2660
+ * @package tendermint.abci
2661
+ * @see proto type: tendermint.abci.ResponseException
2662
+ */
2561
2663
  export const ResponseException = {
2562
2664
  typeUrl: "/tendermint.abci.ResponseException",
2563
2665
  is(o) {
@@ -2628,6 +2730,11 @@ function createBaseResponseEcho() {
2628
2730
  message: ""
2629
2731
  };
2630
2732
  }
2733
+ /**
2734
+ * @name ResponseEcho
2735
+ * @package tendermint.abci
2736
+ * @see proto type: tendermint.abci.ResponseEcho
2737
+ */
2631
2738
  export const ResponseEcho = {
2632
2739
  typeUrl: "/tendermint.abci.ResponseEcho",
2633
2740
  is(o) {
@@ -2696,6 +2803,11 @@ export const ResponseEcho = {
2696
2803
  function createBaseResponseFlush() {
2697
2804
  return {};
2698
2805
  }
2806
+ /**
2807
+ * @name ResponseFlush
2808
+ * @package tendermint.abci
2809
+ * @see proto type: tendermint.abci.ResponseFlush
2810
+ */
2699
2811
  export const ResponseFlush = {
2700
2812
  typeUrl: "/tendermint.abci.ResponseFlush",
2701
2813
  is(o) {
@@ -2759,6 +2871,11 @@ function createBaseResponseInfo() {
2759
2871
  lastBlockAppHash: new Uint8Array()
2760
2872
  };
2761
2873
  }
2874
+ /**
2875
+ * @name ResponseInfo
2876
+ * @package tendermint.abci
2877
+ * @see proto type: tendermint.abci.ResponseInfo
2878
+ */
2762
2879
  export const ResponseInfo = {
2763
2880
  typeUrl: "/tendermint.abci.ResponseInfo",
2764
2881
  is(o) {
@@ -2875,6 +2992,11 @@ function createBaseResponseInitChain() {
2875
2992
  appHash: new Uint8Array()
2876
2993
  };
2877
2994
  }
2995
+ /**
2996
+ * @name ResponseInitChain
2997
+ * @package tendermint.abci
2998
+ * @see proto type: tendermint.abci.ResponseInitChain
2999
+ */
2878
3000
  export const ResponseInitChain = {
2879
3001
  typeUrl: "/tendermint.abci.ResponseInitChain",
2880
3002
  is(o) {
@@ -2984,6 +3106,11 @@ function createBaseResponseQuery() {
2984
3106
  codespace: ""
2985
3107
  };
2986
3108
  }
3109
+ /**
3110
+ * @name ResponseQuery
3111
+ * @package tendermint.abci
3112
+ * @see proto type: tendermint.abci.ResponseQuery
3113
+ */
2987
3114
  export const ResponseQuery = {
2988
3115
  typeUrl: "/tendermint.abci.ResponseQuery",
2989
3116
  is(o) {
@@ -3154,6 +3281,11 @@ function createBaseResponseCheckTx() {
3154
3281
  codespace: ""
3155
3282
  };
3156
3283
  }
3284
+ /**
3285
+ * @name ResponseCheckTx
3286
+ * @package tendermint.abci
3287
+ * @see proto type: tendermint.abci.ResponseCheckTx
3288
+ */
3157
3289
  export const ResponseCheckTx = {
3158
3290
  typeUrl: "/tendermint.abci.ResponseCheckTx",
3159
3291
  is(o) {
@@ -3309,6 +3441,11 @@ function createBaseResponseCommit() {
3309
3441
  retainHeight: BigInt(0)
3310
3442
  };
3311
3443
  }
3444
+ /**
3445
+ * @name ResponseCommit
3446
+ * @package tendermint.abci
3447
+ * @see proto type: tendermint.abci.ResponseCommit
3448
+ */
3312
3449
  export const ResponseCommit = {
3313
3450
  typeUrl: "/tendermint.abci.ResponseCommit",
3314
3451
  is(o) {
@@ -3379,6 +3516,11 @@ function createBaseResponseListSnapshots() {
3379
3516
  snapshots: []
3380
3517
  };
3381
3518
  }
3519
+ /**
3520
+ * @name ResponseListSnapshots
3521
+ * @package tendermint.abci
3522
+ * @see proto type: tendermint.abci.ResponseListSnapshots
3523
+ */
3382
3524
  export const ResponseListSnapshots = {
3383
3525
  typeUrl: "/tendermint.abci.ResponseListSnapshots",
3384
3526
  is(o) {
@@ -3457,6 +3599,11 @@ function createBaseResponseOfferSnapshot() {
3457
3599
  result: 0
3458
3600
  };
3459
3601
  }
3602
+ /**
3603
+ * @name ResponseOfferSnapshot
3604
+ * @package tendermint.abci
3605
+ * @see proto type: tendermint.abci.ResponseOfferSnapshot
3606
+ */
3460
3607
  export const ResponseOfferSnapshot = {
3461
3608
  typeUrl: "/tendermint.abci.ResponseOfferSnapshot",
3462
3609
  is(o) {
@@ -3527,6 +3674,11 @@ function createBaseResponseLoadSnapshotChunk() {
3527
3674
  chunk: new Uint8Array()
3528
3675
  };
3529
3676
  }
3677
+ /**
3678
+ * @name ResponseLoadSnapshotChunk
3679
+ * @package tendermint.abci
3680
+ * @see proto type: tendermint.abci.ResponseLoadSnapshotChunk
3681
+ */
3530
3682
  export const ResponseLoadSnapshotChunk = {
3531
3683
  typeUrl: "/tendermint.abci.ResponseLoadSnapshotChunk",
3532
3684
  is(o) {
@@ -3599,6 +3751,11 @@ function createBaseResponseApplySnapshotChunk() {
3599
3751
  rejectSenders: []
3600
3752
  };
3601
3753
  }
3754
+ /**
3755
+ * @name ResponseApplySnapshotChunk
3756
+ * @package tendermint.abci
3757
+ * @see proto type: tendermint.abci.ResponseApplySnapshotChunk
3758
+ */
3602
3759
  export const ResponseApplySnapshotChunk = {
3603
3760
  typeUrl: "/tendermint.abci.ResponseApplySnapshotChunk",
3604
3761
  is(o) {
@@ -3707,6 +3864,11 @@ function createBaseResponsePrepareProposal() {
3707
3864
  txs: []
3708
3865
  };
3709
3866
  }
3867
+ /**
3868
+ * @name ResponsePrepareProposal
3869
+ * @package tendermint.abci
3870
+ * @see proto type: tendermint.abci.ResponsePrepareProposal
3871
+ */
3710
3872
  export const ResponsePrepareProposal = {
3711
3873
  typeUrl: "/tendermint.abci.ResponsePrepareProposal",
3712
3874
  is(o) {
@@ -3780,6 +3942,11 @@ function createBaseResponseProcessProposal() {
3780
3942
  status: 0
3781
3943
  };
3782
3944
  }
3945
+ /**
3946
+ * @name ResponseProcessProposal
3947
+ * @package tendermint.abci
3948
+ * @see proto type: tendermint.abci.ResponseProcessProposal
3949
+ */
3783
3950
  export const ResponseProcessProposal = {
3784
3951
  typeUrl: "/tendermint.abci.ResponseProcessProposal",
3785
3952
  is(o) {
@@ -3850,6 +4017,11 @@ function createBaseResponseExtendVote() {
3850
4017
  voteExtension: new Uint8Array()
3851
4018
  };
3852
4019
  }
4020
+ /**
4021
+ * @name ResponseExtendVote
4022
+ * @package tendermint.abci
4023
+ * @see proto type: tendermint.abci.ResponseExtendVote
4024
+ */
3853
4025
  export const ResponseExtendVote = {
3854
4026
  typeUrl: "/tendermint.abci.ResponseExtendVote",
3855
4027
  is(o) {
@@ -3920,6 +4092,11 @@ function createBaseResponseVerifyVoteExtension() {
3920
4092
  status: 0
3921
4093
  };
3922
4094
  }
4095
+ /**
4096
+ * @name ResponseVerifyVoteExtension
4097
+ * @package tendermint.abci
4098
+ * @see proto type: tendermint.abci.ResponseVerifyVoteExtension
4099
+ */
3923
4100
  export const ResponseVerifyVoteExtension = {
3924
4101
  typeUrl: "/tendermint.abci.ResponseVerifyVoteExtension",
3925
4102
  is(o) {
@@ -3994,6 +4171,11 @@ function createBaseResponseFinalizeBlock() {
3994
4171
  appHash: new Uint8Array()
3995
4172
  };
3996
4173
  }
4174
+ /**
4175
+ * @name ResponseFinalizeBlock
4176
+ * @package tendermint.abci
4177
+ * @see proto type: tendermint.abci.ResponseFinalizeBlock
4178
+ */
3997
4179
  export const ResponseFinalizeBlock = {
3998
4180
  typeUrl: "/tendermint.abci.ResponseFinalizeBlock",
3999
4181
  is(o) {
@@ -4126,6 +4308,11 @@ function createBaseCommitInfo() {
4126
4308
  votes: []
4127
4309
  };
4128
4310
  }
4311
+ /**
4312
+ * @name CommitInfo
4313
+ * @package tendermint.abci
4314
+ * @see proto type: tendermint.abci.CommitInfo
4315
+ */
4129
4316
  export const CommitInfo = {
4130
4317
  typeUrl: "/tendermint.abci.CommitInfo",
4131
4318
  is(o) {
@@ -4216,6 +4403,14 @@ function createBaseExtendedCommitInfo() {
4216
4403
  votes: []
4217
4404
  };
4218
4405
  }
4406
+ /**
4407
+ * ExtendedCommitInfo is similar to CommitInfo except that it is only used in
4408
+ * the PrepareProposal request such that CometBFT can provide vote extensions
4409
+ * to the application.
4410
+ * @name ExtendedCommitInfo
4411
+ * @package tendermint.abci
4412
+ * @see proto type: tendermint.abci.ExtendedCommitInfo
4413
+ */
4219
4414
  export const ExtendedCommitInfo = {
4220
4415
  typeUrl: "/tendermint.abci.ExtendedCommitInfo",
4221
4416
  is(o) {
@@ -4306,6 +4501,14 @@ function createBaseEvent() {
4306
4501
  attributes: []
4307
4502
  };
4308
4503
  }
4504
+ /**
4505
+ * Event allows application developers to attach additional information to
4506
+ * ResponseFinalizeBlock and ResponseCheckTx.
4507
+ * Later, transactions may be queried using these events.
4508
+ * @name Event
4509
+ * @package tendermint.abci
4510
+ * @see proto type: tendermint.abci.Event
4511
+ */
4309
4512
  export const Event = {
4310
4513
  typeUrl: "/tendermint.abci.Event",
4311
4514
  is(o) {
@@ -4397,6 +4600,12 @@ function createBaseEventAttribute() {
4397
4600
  index: false
4398
4601
  };
4399
4602
  }
4603
+ /**
4604
+ * EventAttribute is a single key-value pair, associated with an event.
4605
+ * @name EventAttribute
4606
+ * @package tendermint.abci
4607
+ * @see proto type: tendermint.abci.EventAttribute
4608
+ */
4400
4609
  export const EventAttribute = {
4401
4610
  typeUrl: "/tendermint.abci.EventAttribute",
4402
4611
  is(o) {
@@ -4496,6 +4705,14 @@ function createBaseExecTxResult() {
4496
4705
  codespace: ""
4497
4706
  };
4498
4707
  }
4708
+ /**
4709
+ * ExecTxResult contains results of executing one individual transaction.
4710
+ *
4711
+ * * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
4712
+ * @name ExecTxResult
4713
+ * @package tendermint.abci
4714
+ * @see proto type: tendermint.abci.ExecTxResult
4715
+ */
4499
4716
  export const ExecTxResult = {
4500
4717
  typeUrl: "/tendermint.abci.ExecTxResult",
4501
4718
  is(o) {
@@ -4654,6 +4871,14 @@ function createBaseTxResult() {
4654
4871
  result: ExecTxResult.fromPartial({})
4655
4872
  };
4656
4873
  }
4874
+ /**
4875
+ * TxResult contains results of executing the transaction.
4876
+ *
4877
+ * One usage is indexing transaction results.
4878
+ * @name TxResult
4879
+ * @package tendermint.abci
4880
+ * @see proto type: tendermint.abci.TxResult
4881
+ */
4657
4882
  export const TxResult = {
4658
4883
  typeUrl: "/tendermint.abci.TxResult",
4659
4884
  is(o) {
@@ -4763,6 +4988,11 @@ function createBaseValidator() {
4763
4988
  power: BigInt(0)
4764
4989
  };
4765
4990
  }
4991
+ /**
4992
+ * @name Validator
4993
+ * @package tendermint.abci
4994
+ * @see proto type: tendermint.abci.Validator
4995
+ */
4766
4996
  export const Validator = {
4767
4997
  typeUrl: "/tendermint.abci.Validator",
4768
4998
  is(o) {
@@ -4845,6 +5075,11 @@ function createBaseValidatorUpdate() {
4845
5075
  power: BigInt(0)
4846
5076
  };
4847
5077
  }
5078
+ /**
5079
+ * @name ValidatorUpdate
5080
+ * @package tendermint.abci
5081
+ * @see proto type: tendermint.abci.ValidatorUpdate
5082
+ */
4848
5083
  export const ValidatorUpdate = {
4849
5084
  typeUrl: "/tendermint.abci.ValidatorUpdate",
4850
5085
  is(o) {
@@ -4932,6 +5167,11 @@ function createBaseVoteInfo() {
4932
5167
  blockIdFlag: 0
4933
5168
  };
4934
5169
  }
5170
+ /**
5171
+ * @name VoteInfo
5172
+ * @package tendermint.abci
5173
+ * @see proto type: tendermint.abci.VoteInfo
5174
+ */
4935
5175
  export const VoteInfo = {
4936
5176
  typeUrl: "/tendermint.abci.VoteInfo",
4937
5177
  is(o) {
@@ -5021,6 +5261,11 @@ function createBaseExtendedVoteInfo() {
5021
5261
  blockIdFlag: 0
5022
5262
  };
5023
5263
  }
5264
+ /**
5265
+ * @name ExtendedVoteInfo
5266
+ * @package tendermint.abci
5267
+ * @see proto type: tendermint.abci.ExtendedVoteInfo
5268
+ */
5024
5269
  export const ExtendedVoteInfo = {
5025
5270
  typeUrl: "/tendermint.abci.ExtendedVoteInfo",
5026
5271
  is(o) {
@@ -5133,6 +5378,11 @@ function createBaseMisbehavior() {
5133
5378
  totalVotingPower: BigInt(0)
5134
5379
  };
5135
5380
  }
5381
+ /**
5382
+ * @name Misbehavior
5383
+ * @package tendermint.abci
5384
+ * @see proto type: tendermint.abci.Misbehavior
5385
+ */
5136
5386
  export const Misbehavior = {
5137
5387
  typeUrl: "/tendermint.abci.Misbehavior",
5138
5388
  is(o) {
@@ -5256,6 +5506,11 @@ function createBaseSnapshot() {
5256
5506
  metadata: new Uint8Array()
5257
5507
  };
5258
5508
  }
5509
+ /**
5510
+ * @name Snapshot
5511
+ * @package tendermint.abci
5512
+ * @see proto type: tendermint.abci.Snapshot
5513
+ */
5259
5514
  export const Snapshot = {
5260
5515
  typeUrl: "/tendermint.abci.Snapshot",
5261
5516
  is(o) {
@@ -6,6 +6,12 @@ function createBasePublicKey() {
6
6
  secp256k1: undefined
7
7
  };
8
8
  }
9
+ /**
10
+ * PublicKey defines the keys available for use with Validators
11
+ * @name PublicKey
12
+ * @package tendermint.crypto
13
+ * @see proto type: tendermint.crypto.PublicKey
14
+ */
9
15
  export const PublicKey = {
10
16
  typeUrl: "/tendermint.crypto.PublicKey",
11
17
  is(o) {
@@ -9,6 +9,11 @@ function createBaseProof() {
9
9
  aunts: []
10
10
  };
11
11
  }
12
+ /**
13
+ * @name Proof
14
+ * @package tendermint.crypto
15
+ * @see proto type: tendermint.crypto.Proof
16
+ */
12
17
  export const Proof = {
13
18
  typeUrl: "/tendermint.crypto.Proof",
14
19
  is(o) {
@@ -116,6 +121,11 @@ function createBaseValueOp() {
116
121
  proof: undefined
117
122
  };
118
123
  }
124
+ /**
125
+ * @name ValueOp
126
+ * @package tendermint.crypto
127
+ * @see proto type: tendermint.crypto.ValueOp
128
+ */
119
129
  export const ValueOp = {
120
130
  typeUrl: "/tendermint.crypto.ValueOp",
121
131
  is(o) {
@@ -204,6 +214,11 @@ function createBaseDominoOp() {
204
214
  output: ""
205
215
  };
206
216
  }
217
+ /**
218
+ * @name DominoOp
219
+ * @package tendermint.crypto
220
+ * @see proto type: tendermint.crypto.DominoOp
221
+ */
207
222
  export const DominoOp = {
208
223
  typeUrl: "/tendermint.crypto.DominoOp",
209
224
  is(o) {
@@ -298,6 +313,14 @@ function createBaseProofOp() {
298
313
  data: new Uint8Array()
299
314
  };
300
315
  }
316
+ /**
317
+ * ProofOp defines an operation used for calculating Merkle root
318
+ * The data could be arbitrary format, providing nessecary data
319
+ * for example neighbouring node hash
320
+ * @name ProofOp
321
+ * @package tendermint.crypto
322
+ * @see proto type: tendermint.crypto.ProofOp
323
+ */
301
324
  export const ProofOp = {
302
325
  typeUrl: "/tendermint.crypto.ProofOp",
303
326
  is(o) {
@@ -390,6 +413,12 @@ function createBaseProofOps() {
390
413
  ops: []
391
414
  };
392
415
  }
416
+ /**
417
+ * ProofOps is Merkle proof defined by the list of ProofOps
418
+ * @name ProofOps
419
+ * @package tendermint.crypto
420
+ * @see proto type: tendermint.crypto.ProofOps
421
+ */
393
422
  export const ProofOps = {
394
423
  typeUrl: "/tendermint.crypto.ProofOps",
395
424
  is(o) {
@@ -10,6 +10,11 @@ function createBaseBlock() {
10
10
  lastCommit: undefined
11
11
  };
12
12
  }
13
+ /**
14
+ * @name Block
15
+ * @package tendermint.types
16
+ * @see proto type: tendermint.types.Block
17
+ */
13
18
  export const Block = {
14
19
  typeUrl: "/tendermint.types.Block",
15
20
  is(o) {
@@ -10,6 +10,11 @@ function createBaseEvidence() {
10
10
  lightClientAttackEvidence: undefined
11
11
  };
12
12
  }
13
+ /**
14
+ * @name Evidence
15
+ * @package tendermint.types
16
+ * @see proto type: tendermint.types.Evidence
17
+ */
13
18
  export const Evidence = {
14
19
  typeUrl: "/tendermint.types.Evidence",
15
20
  is(o) {
@@ -101,6 +106,12 @@ function createBaseDuplicateVoteEvidence() {
101
106
  timestamp: new Date()
102
107
  };
103
108
  }
109
+ /**
110
+ * DuplicateVoteEvidence contains evidence of a validator signed two conflicting votes.
111
+ * @name DuplicateVoteEvidence
112
+ * @package tendermint.types
113
+ * @see proto type: tendermint.types.DuplicateVoteEvidence
114
+ */
104
115
  export const DuplicateVoteEvidence = {
105
116
  typeUrl: "/tendermint.types.DuplicateVoteEvidence",
106
117
  is(o) {
@@ -224,6 +235,12 @@ function createBaseLightClientAttackEvidence() {
224
235
  timestamp: new Date()
225
236
  };
226
237
  }
238
+ /**
239
+ * LightClientAttackEvidence contains evidence of a set of validators attempting to mislead a light client.
240
+ * @name LightClientAttackEvidence
241
+ * @package tendermint.types
242
+ * @see proto type: tendermint.types.LightClientAttackEvidence
243
+ */
227
244
  export const LightClientAttackEvidence = {
228
245
  typeUrl: "/tendermint.types.LightClientAttackEvidence",
229
246
  is(o) {
@@ -347,6 +364,11 @@ function createBaseEvidenceList() {
347
364
  evidence: []
348
365
  };
349
366
  }
367
+ /**
368
+ * @name EvidenceList
369
+ * @package tendermint.types
370
+ * @see proto type: tendermint.types.EvidenceList
371
+ */
350
372
  export const EvidenceList = {
351
373
  typeUrl: "/tendermint.types.EvidenceList",
352
374
  is(o) {