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
@@ -1,32 +1,61 @@
1
1
  import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
2
2
  import { BinaryReader, BinaryWriter } from "../../../binary";
3
3
  import { DeepPartial } from "../../../helpers";
4
+ /**
5
+ * @name Params
6
+ * @package injective.ocr.v1beta1
7
+ * @see proto type: injective.ocr.v1beta1.Params
8
+ */
4
9
  export interface Params {
5
- /** Native denom for LINK coin in the bank keeper */
10
+ /**
11
+ * Native denom for LINK coin in the bank keeper
12
+ */
6
13
  linkDenom: string;
7
- /** The block number interval at which payouts are made */
14
+ /**
15
+ * The block number interval at which payouts are made
16
+ */
8
17
  payoutBlockInterval: bigint;
9
- /** The admin for the OCR module */
18
+ /**
19
+ * The admin for the OCR module
20
+ */
10
21
  moduleAdmin: string;
11
22
  }
12
23
  export interface ParamsProtoMsg {
13
24
  typeUrl: "/injective.ocr.v1beta1.Params";
14
25
  value: Uint8Array;
15
26
  }
27
+ /**
28
+ * @name ParamsAmino
29
+ * @package injective.ocr.v1beta1
30
+ * @see proto type: injective.ocr.v1beta1.Params
31
+ */
16
32
  export interface ParamsAmino {
17
- /** Native denom for LINK coin in the bank keeper */
33
+ /**
34
+ * Native denom for LINK coin in the bank keeper
35
+ */
18
36
  link_denom: string;
19
- /** The block number interval at which payouts are made */
37
+ /**
38
+ * The block number interval at which payouts are made
39
+ */
20
40
  payout_block_interval: string;
21
- /** The admin for the OCR module */
41
+ /**
42
+ * The admin for the OCR module
43
+ */
22
44
  module_admin: string;
23
45
  }
24
46
  export interface ParamsAminoMsg {
25
47
  type: "ocr/Params";
26
48
  value: ParamsAmino;
27
49
  }
50
+ /**
51
+ * @name FeedConfig
52
+ * @package injective.ocr.v1beta1
53
+ * @see proto type: injective.ocr.v1beta1.FeedConfig
54
+ */
28
55
  export interface FeedConfig {
29
- /** signers ith element is address ith oracle uses to sign a report */
56
+ /**
57
+ * signers ith element is address ith oracle uses to sign a report
58
+ */
30
59
  signers: string[];
31
60
  /**
32
61
  * transmitters ith element is address ith oracle uses to transmit a report
@@ -38,7 +67,9 @@ export interface FeedConfig {
38
67
  * while still working correctly
39
68
  */
40
69
  f: number;
41
- /** onchain_config serialized data with reporting plugin params on chain. */
70
+ /**
71
+ * onchain_config serialized data with reporting plugin params on chain.
72
+ */
42
73
  onchainConfig: Uint8Array;
43
74
  /**
44
75
  * offchain_config_version version of the serialization format used for
@@ -50,15 +81,24 @@ export interface FeedConfig {
50
81
  * operation
51
82
  */
52
83
  offchainConfig: Uint8Array;
53
- /** feed-specific params for the Cosmos module. */
84
+ /**
85
+ * feed-specific params for the Cosmos module.
86
+ */
54
87
  moduleParams?: ModuleParams;
55
88
  }
56
89
  export interface FeedConfigProtoMsg {
57
90
  typeUrl: "/injective.ocr.v1beta1.FeedConfig";
58
91
  value: Uint8Array;
59
92
  }
93
+ /**
94
+ * @name FeedConfigAmino
95
+ * @package injective.ocr.v1beta1
96
+ * @see proto type: injective.ocr.v1beta1.FeedConfig
97
+ */
60
98
  export interface FeedConfigAmino {
61
- /** signers ith element is address ith oracle uses to sign a report */
99
+ /**
100
+ * signers ith element is address ith oracle uses to sign a report
101
+ */
62
102
  signers: string[];
63
103
  /**
64
104
  * transmitters ith element is address ith oracle uses to transmit a report
@@ -70,7 +110,9 @@ export interface FeedConfigAmino {
70
110
  * while still working correctly
71
111
  */
72
112
  f: number;
73
- /** onchain_config serialized data with reporting plugin params on chain. */
113
+ /**
114
+ * onchain_config serialized data with reporting plugin params on chain.
115
+ */
74
116
  onchain_config: string;
75
117
  /**
76
118
  * offchain_config_version version of the serialization format used for
@@ -82,13 +124,20 @@ export interface FeedConfigAmino {
82
124
  * operation
83
125
  */
84
126
  offchain_config: string;
85
- /** feed-specific params for the Cosmos module. */
127
+ /**
128
+ * feed-specific params for the Cosmos module.
129
+ */
86
130
  module_params?: ModuleParamsAmino;
87
131
  }
88
132
  export interface FeedConfigAminoMsg {
89
133
  type: "/injective.ocr.v1beta1.FeedConfig";
90
134
  value: FeedConfigAmino;
91
135
  }
136
+ /**
137
+ * @name FeedConfigInfo
138
+ * @package injective.ocr.v1beta1
139
+ * @see proto type: injective.ocr.v1beta1.FeedConfigInfo
140
+ */
92
141
  export interface FeedConfigInfo {
93
142
  latestConfigDigest: Uint8Array;
94
143
  f: number;
@@ -104,6 +153,11 @@ export interface FeedConfigInfoProtoMsg {
104
153
  typeUrl: "/injective.ocr.v1beta1.FeedConfigInfo";
105
154
  value: Uint8Array;
106
155
  }
156
+ /**
157
+ * @name FeedConfigInfoAmino
158
+ * @package injective.ocr.v1beta1
159
+ * @see proto type: injective.ocr.v1beta1.FeedConfigInfo
160
+ */
107
161
  export interface FeedConfigInfoAmino {
108
162
  latest_config_digest: string;
109
163
  f: number;
@@ -119,71 +173,124 @@ export interface FeedConfigInfoAminoMsg {
119
173
  type: "/injective.ocr.v1beta1.FeedConfigInfo";
120
174
  value: FeedConfigInfoAmino;
121
175
  }
176
+ /**
177
+ * @name ModuleParams
178
+ * @package injective.ocr.v1beta1
179
+ * @see proto type: injective.ocr.v1beta1.ModuleParams
180
+ */
122
181
  export interface ModuleParams {
123
- /** feed_id is an unique ID for the target of this config */
182
+ /**
183
+ * feed_id is an unique ID for the target of this config
184
+ */
124
185
  feedId: string;
125
- /** lowest answer the median of a report is allowed to be */
186
+ /**
187
+ * lowest answer the median of a report is allowed to be
188
+ */
126
189
  minAnswer: string;
127
- /** highest answer the median of a report is allowed to be */
190
+ /**
191
+ * highest answer the median of a report is allowed to be
192
+ */
128
193
  maxAnswer: string;
129
- /** Fixed LINK reward for each observer */
194
+ /**
195
+ * Fixed LINK reward for each observer
196
+ */
130
197
  linkPerObservation: string;
131
- /** Fixed LINK reward for transmitter */
198
+ /**
199
+ * Fixed LINK reward for transmitter
200
+ */
132
201
  linkPerTransmission: string;
133
- /** Native denom for LINK coin in the bank keeper */
202
+ /**
203
+ * Native denom for LINK coin in the bank keeper
204
+ */
134
205
  linkDenom: string;
135
- /** Enables unique reports */
206
+ /**
207
+ * Enables unique reports
208
+ */
136
209
  uniqueReports: boolean;
137
210
  /**
138
211
  * short human-readable description of observable this feed's answers pertain
139
212
  * to
140
213
  */
141
214
  description: string;
142
- /** feed administrator */
215
+ /**
216
+ * feed administrator
217
+ */
143
218
  feedAdmin: string;
144
- /** feed billing administrator */
219
+ /**
220
+ * feed billing administrator
221
+ */
145
222
  billingAdmin: string;
146
223
  }
147
224
  export interface ModuleParamsProtoMsg {
148
225
  typeUrl: "/injective.ocr.v1beta1.ModuleParams";
149
226
  value: Uint8Array;
150
227
  }
228
+ /**
229
+ * @name ModuleParamsAmino
230
+ * @package injective.ocr.v1beta1
231
+ * @see proto type: injective.ocr.v1beta1.ModuleParams
232
+ */
151
233
  export interface ModuleParamsAmino {
152
- /** feed_id is an unique ID for the target of this config */
234
+ /**
235
+ * feed_id is an unique ID for the target of this config
236
+ */
153
237
  feed_id: string;
154
- /** lowest answer the median of a report is allowed to be */
238
+ /**
239
+ * lowest answer the median of a report is allowed to be
240
+ */
155
241
  min_answer: string;
156
- /** highest answer the median of a report is allowed to be */
242
+ /**
243
+ * highest answer the median of a report is allowed to be
244
+ */
157
245
  max_answer: string;
158
- /** Fixed LINK reward for each observer */
246
+ /**
247
+ * Fixed LINK reward for each observer
248
+ */
159
249
  link_per_observation: string;
160
- /** Fixed LINK reward for transmitter */
250
+ /**
251
+ * Fixed LINK reward for transmitter
252
+ */
161
253
  link_per_transmission: string;
162
- /** Native denom for LINK coin in the bank keeper */
254
+ /**
255
+ * Native denom for LINK coin in the bank keeper
256
+ */
163
257
  link_denom: string;
164
- /** Enables unique reports */
258
+ /**
259
+ * Enables unique reports
260
+ */
165
261
  unique_reports: boolean;
166
262
  /**
167
263
  * short human-readable description of observable this feed's answers pertain
168
264
  * to
169
265
  */
170
266
  description: string;
171
- /** feed administrator */
267
+ /**
268
+ * feed administrator
269
+ */
172
270
  feed_admin: string;
173
- /** feed billing administrator */
271
+ /**
272
+ * feed billing administrator
273
+ */
174
274
  billing_admin: string;
175
275
  }
176
276
  export interface ModuleParamsAminoMsg {
177
277
  type: "/injective.ocr.v1beta1.ModuleParams";
178
278
  value: ModuleParamsAmino;
179
279
  }
280
+ /**
281
+ * @name ContractConfig
282
+ * @package injective.ocr.v1beta1
283
+ * @see proto type: injective.ocr.v1beta1.ContractConfig
284
+ */
180
285
  export interface ContractConfig {
181
286
  /**
182
287
  * config_count ordinal number of this config setting among all config
183
288
  * settings
184
289
  */
185
290
  configCount: bigint;
186
- /** signers ith element is address ith oracle uses to sign a report */
291
+ /**
292
+ * signers ith element is address ith oracle uses to sign a report
293
+ */
187
294
  signers: string[];
188
295
  /**
189
296
  * transmitters ith element is address ith oracle uses to transmit a report
@@ -195,7 +302,9 @@ export interface ContractConfig {
195
302
  * while still working correctly
196
303
  */
197
304
  f: number;
198
- /** onchain_config serialized data with reporting plugin params on chain. */
305
+ /**
306
+ * onchain_config serialized data with reporting plugin params on chain.
307
+ */
199
308
  onchainConfig: Uint8Array;
200
309
  /**
201
310
  * offchain_config_version version of the serialization format used for
@@ -212,13 +321,20 @@ export interface ContractConfigProtoMsg {
212
321
  typeUrl: "/injective.ocr.v1beta1.ContractConfig";
213
322
  value: Uint8Array;
214
323
  }
324
+ /**
325
+ * @name ContractConfigAmino
326
+ * @package injective.ocr.v1beta1
327
+ * @see proto type: injective.ocr.v1beta1.ContractConfig
328
+ */
215
329
  export interface ContractConfigAmino {
216
330
  /**
217
331
  * config_count ordinal number of this config setting among all config
218
332
  * settings
219
333
  */
220
334
  config_count: string;
221
- /** signers ith element is address ith oracle uses to sign a report */
335
+ /**
336
+ * signers ith element is address ith oracle uses to sign a report
337
+ */
222
338
  signers: string[];
223
339
  /**
224
340
  * transmitters ith element is address ith oracle uses to transmit a report
@@ -230,7 +346,9 @@ export interface ContractConfigAmino {
230
346
  * while still working correctly
231
347
  */
232
348
  f: number;
233
- /** onchain_config serialized data with reporting plugin params on chain. */
349
+ /**
350
+ * onchain_config serialized data with reporting plugin params on chain.
351
+ */
234
352
  onchain_config: string;
235
353
  /**
236
354
  * offchain_config_version version of the serialization format used for
@@ -247,6 +365,11 @@ export interface ContractConfigAminoMsg {
247
365
  type: "/injective.ocr.v1beta1.ContractConfig";
248
366
  value: ContractConfigAmino;
249
367
  }
368
+ /**
369
+ * @name SetConfigProposal
370
+ * @package injective.ocr.v1beta1
371
+ * @see proto type: injective.ocr.v1beta1.SetConfigProposal
372
+ */
250
373
  export interface SetConfigProposal {
251
374
  title: string;
252
375
  description: string;
@@ -256,6 +379,11 @@ export interface SetConfigProposalProtoMsg {
256
379
  typeUrl: "/injective.ocr.v1beta1.SetConfigProposal";
257
380
  value: Uint8Array;
258
381
  }
382
+ /**
383
+ * @name SetConfigProposalAmino
384
+ * @package injective.ocr.v1beta1
385
+ * @see proto type: injective.ocr.v1beta1.SetConfigProposal
386
+ */
259
387
  export interface SetConfigProposalAmino {
260
388
  title: string;
261
389
  description: string;
@@ -265,15 +393,24 @@ export interface SetConfigProposalAminoMsg {
265
393
  type: "ocr/SetConfigProposal";
266
394
  value: SetConfigProposalAmino;
267
395
  }
396
+ /**
397
+ * @name FeedProperties
398
+ * @package injective.ocr.v1beta1
399
+ * @see proto type: injective.ocr.v1beta1.FeedProperties
400
+ */
268
401
  export interface FeedProperties {
269
- /** feed_id is an unique ID for the target of this config */
402
+ /**
403
+ * feed_id is an unique ID for the target of this config
404
+ */
270
405
  feedId: string;
271
406
  /**
272
407
  * f maximum number of faulty/dishonest oracles the protocol can tolerate
273
408
  * while still working correctly
274
409
  */
275
410
  f: number;
276
- /** onchain_config serialized data with reporting plugin params on chain. */
411
+ /**
412
+ * onchain_config serialized data with reporting plugin params on chain.
413
+ */
277
414
  onchainConfig: Uint8Array;
278
415
  /**
279
416
  * offchain_config_version version of the serialization format used for
@@ -285,15 +422,25 @@ export interface FeedProperties {
285
422
  * operation
286
423
  */
287
424
  offchainConfig: Uint8Array;
288
- /** lowest answer the median of a report is allowed to be */
425
+ /**
426
+ * lowest answer the median of a report is allowed to be
427
+ */
289
428
  minAnswer: string;
290
- /** highest answer the median of a report is allowed to be */
429
+ /**
430
+ * highest answer the median of a report is allowed to be
431
+ */
291
432
  maxAnswer: string;
292
- /** Fixed LINK reward for each observer */
433
+ /**
434
+ * Fixed LINK reward for each observer
435
+ */
293
436
  linkPerObservation: string;
294
- /** Fixed LINK reward for transmitter */
437
+ /**
438
+ * Fixed LINK reward for transmitter
439
+ */
295
440
  linkPerTransmission: string;
296
- /** Enables unique reports */
441
+ /**
442
+ * Enables unique reports
443
+ */
297
444
  uniqueReports: boolean;
298
445
  /**
299
446
  * short human-readable description of observable this feed's answers pertain
@@ -305,15 +452,24 @@ export interface FeedPropertiesProtoMsg {
305
452
  typeUrl: "/injective.ocr.v1beta1.FeedProperties";
306
453
  value: Uint8Array;
307
454
  }
455
+ /**
456
+ * @name FeedPropertiesAmino
457
+ * @package injective.ocr.v1beta1
458
+ * @see proto type: injective.ocr.v1beta1.FeedProperties
459
+ */
308
460
  export interface FeedPropertiesAmino {
309
- /** feed_id is an unique ID for the target of this config */
461
+ /**
462
+ * feed_id is an unique ID for the target of this config
463
+ */
310
464
  feed_id: string;
311
465
  /**
312
466
  * f maximum number of faulty/dishonest oracles the protocol can tolerate
313
467
  * while still working correctly
314
468
  */
315
469
  f: number;
316
- /** onchain_config serialized data with reporting plugin params on chain. */
470
+ /**
471
+ * onchain_config serialized data with reporting plugin params on chain.
472
+ */
317
473
  onchain_config: string;
318
474
  /**
319
475
  * offchain_config_version version of the serialization format used for
@@ -325,15 +481,25 @@ export interface FeedPropertiesAmino {
325
481
  * operation
326
482
  */
327
483
  offchain_config: string;
328
- /** lowest answer the median of a report is allowed to be */
484
+ /**
485
+ * lowest answer the median of a report is allowed to be
486
+ */
329
487
  min_answer: string;
330
- /** highest answer the median of a report is allowed to be */
488
+ /**
489
+ * highest answer the median of a report is allowed to be
490
+ */
331
491
  max_answer: string;
332
- /** Fixed LINK reward for each observer */
492
+ /**
493
+ * Fixed LINK reward for each observer
494
+ */
333
495
  link_per_observation: string;
334
- /** Fixed LINK reward for transmitter */
496
+ /**
497
+ * Fixed LINK reward for transmitter
498
+ */
335
499
  link_per_transmission: string;
336
- /** Enables unique reports */
500
+ /**
501
+ * Enables unique reports
502
+ */
337
503
  unique_reports: boolean;
338
504
  /**
339
505
  * short human-readable description of observable this feed's answers pertain
@@ -345,44 +511,71 @@ export interface FeedPropertiesAminoMsg {
345
511
  type: "/injective.ocr.v1beta1.FeedProperties";
346
512
  value: FeedPropertiesAmino;
347
513
  }
514
+ /**
515
+ * @name SetBatchConfigProposal
516
+ * @package injective.ocr.v1beta1
517
+ * @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
518
+ */
348
519
  export interface SetBatchConfigProposal {
349
520
  title: string;
350
521
  description: string;
351
- /** signers ith element is address ith oracle uses to sign a report */
522
+ /**
523
+ * signers ith element is address ith oracle uses to sign a report
524
+ */
352
525
  signers: string[];
353
526
  /**
354
527
  * transmitters ith element is address ith oracle uses to transmit a report
355
528
  * via the transmit method
356
529
  */
357
530
  transmitters: string[];
358
- /** Native denom for LINK coin in the bank keeper */
531
+ /**
532
+ * Native denom for LINK coin in the bank keeper
533
+ */
359
534
  linkDenom: string;
360
- /** feed properties */
535
+ /**
536
+ * feed properties
537
+ */
361
538
  feedProperties: FeedProperties[];
362
539
  }
363
540
  export interface SetBatchConfigProposalProtoMsg {
364
541
  typeUrl: "/injective.ocr.v1beta1.SetBatchConfigProposal";
365
542
  value: Uint8Array;
366
543
  }
544
+ /**
545
+ * @name SetBatchConfigProposalAmino
546
+ * @package injective.ocr.v1beta1
547
+ * @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
548
+ */
367
549
  export interface SetBatchConfigProposalAmino {
368
550
  title: string;
369
551
  description: string;
370
- /** signers ith element is address ith oracle uses to sign a report */
552
+ /**
553
+ * signers ith element is address ith oracle uses to sign a report
554
+ */
371
555
  signers: string[];
372
556
  /**
373
557
  * transmitters ith element is address ith oracle uses to transmit a report
374
558
  * via the transmit method
375
559
  */
376
560
  transmitters: string[];
377
- /** Native denom for LINK coin in the bank keeper */
561
+ /**
562
+ * Native denom for LINK coin in the bank keeper
563
+ */
378
564
  link_denom: string;
379
- /** feed properties */
565
+ /**
566
+ * feed properties
567
+ */
380
568
  feed_properties: FeedPropertiesAmino[];
381
569
  }
382
570
  export interface SetBatchConfigProposalAminoMsg {
383
571
  type: "ocr/SetBatchConfigProposal";
384
572
  value: SetBatchConfigProposalAmino;
385
573
  }
574
+ /**
575
+ * @name OracleObservationsCounts
576
+ * @package injective.ocr.v1beta1
577
+ * @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
578
+ */
386
579
  export interface OracleObservationsCounts {
387
580
  counts: number[];
388
581
  }
@@ -390,6 +583,11 @@ export interface OracleObservationsCountsProtoMsg {
390
583
  typeUrl: "/injective.ocr.v1beta1.OracleObservationsCounts";
391
584
  value: Uint8Array;
392
585
  }
586
+ /**
587
+ * @name OracleObservationsCountsAmino
588
+ * @package injective.ocr.v1beta1
589
+ * @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
590
+ */
393
591
  export interface OracleObservationsCountsAmino {
394
592
  counts: number[];
395
593
  }
@@ -397,7 +595,12 @@ export interface OracleObservationsCountsAminoMsg {
397
595
  type: "/injective.ocr.v1beta1.OracleObservationsCounts";
398
596
  value: OracleObservationsCountsAmino;
399
597
  }
400
- /** LINK-INJ-denominated reimbursements for gas used by transmitters. */
598
+ /**
599
+ * LINK-INJ-denominated reimbursements for gas used by transmitters.
600
+ * @name GasReimbursements
601
+ * @package injective.ocr.v1beta1
602
+ * @see proto type: injective.ocr.v1beta1.GasReimbursements
603
+ */
401
604
  export interface GasReimbursements {
402
605
  reimbursements: Coin[];
403
606
  }
@@ -405,7 +608,12 @@ export interface GasReimbursementsProtoMsg {
405
608
  typeUrl: "/injective.ocr.v1beta1.GasReimbursements";
406
609
  value: Uint8Array;
407
610
  }
408
- /** LINK-INJ-denominated reimbursements for gas used by transmitters. */
611
+ /**
612
+ * LINK-INJ-denominated reimbursements for gas used by transmitters.
613
+ * @name GasReimbursementsAmino
614
+ * @package injective.ocr.v1beta1
615
+ * @see proto type: injective.ocr.v1beta1.GasReimbursements
616
+ */
409
617
  export interface GasReimbursementsAmino {
410
618
  reimbursements: CoinAmino[];
411
619
  }
@@ -413,6 +621,11 @@ export interface GasReimbursementsAminoMsg {
413
621
  type: "/injective.ocr.v1beta1.GasReimbursements";
414
622
  value: GasReimbursementsAmino;
415
623
  }
624
+ /**
625
+ * @name Payee
626
+ * @package injective.ocr.v1beta1
627
+ * @see proto type: injective.ocr.v1beta1.Payee
628
+ */
416
629
  export interface Payee {
417
630
  transmitterAddr: string;
418
631
  paymentAddr: string;
@@ -421,6 +634,11 @@ export interface PayeeProtoMsg {
421
634
  typeUrl: "/injective.ocr.v1beta1.Payee";
422
635
  value: Uint8Array;
423
636
  }
637
+ /**
638
+ * @name PayeeAmino
639
+ * @package injective.ocr.v1beta1
640
+ * @see proto type: injective.ocr.v1beta1.Payee
641
+ */
424
642
  export interface PayeeAmino {
425
643
  transmitter_addr: string;
426
644
  payment_addr: string;
@@ -432,12 +650,19 @@ export interface PayeeAminoMsg {
432
650
  /**
433
651
  * Transmission records the median answer from the transmit transaction at
434
652
  * time timestamp
653
+ * @name Transmission
654
+ * @package injective.ocr.v1beta1
655
+ * @see proto type: injective.ocr.v1beta1.Transmission
435
656
  */
436
657
  export interface Transmission {
437
658
  answer: string;
438
- /** when were observations made offchain */
659
+ /**
660
+ * when were observations made offchain
661
+ */
439
662
  observationsTimestamp: bigint;
440
- /** when was report received onchain */
663
+ /**
664
+ * when was report received onchain
665
+ */
441
666
  transmissionTimestamp: bigint;
442
667
  }
443
668
  export interface TransmissionProtoMsg {
@@ -447,18 +672,30 @@ export interface TransmissionProtoMsg {
447
672
  /**
448
673
  * Transmission records the median answer from the transmit transaction at
449
674
  * time timestamp
675
+ * @name TransmissionAmino
676
+ * @package injective.ocr.v1beta1
677
+ * @see proto type: injective.ocr.v1beta1.Transmission
450
678
  */
451
679
  export interface TransmissionAmino {
452
680
  answer: string;
453
- /** when were observations made offchain */
681
+ /**
682
+ * when were observations made offchain
683
+ */
454
684
  observations_timestamp: string;
455
- /** when was report received onchain */
685
+ /**
686
+ * when was report received onchain
687
+ */
456
688
  transmission_timestamp: string;
457
689
  }
458
690
  export interface TransmissionAminoMsg {
459
691
  type: "/injective.ocr.v1beta1.Transmission";
460
692
  value: TransmissionAmino;
461
693
  }
694
+ /**
695
+ * @name EpochAndRound
696
+ * @package injective.ocr.v1beta1
697
+ * @see proto type: injective.ocr.v1beta1.EpochAndRound
698
+ */
462
699
  export interface EpochAndRound {
463
700
  epoch: bigint;
464
701
  round: bigint;
@@ -467,6 +704,11 @@ export interface EpochAndRoundProtoMsg {
467
704
  typeUrl: "/injective.ocr.v1beta1.EpochAndRound";
468
705
  value: Uint8Array;
469
706
  }
707
+ /**
708
+ * @name EpochAndRoundAmino
709
+ * @package injective.ocr.v1beta1
710
+ * @see proto type: injective.ocr.v1beta1.EpochAndRound
711
+ */
470
712
  export interface EpochAndRoundAmino {
471
713
  epoch: string;
472
714
  round: string;
@@ -475,9 +717,16 @@ export interface EpochAndRoundAminoMsg {
475
717
  type: "/injective.ocr.v1beta1.EpochAndRound";
476
718
  value: EpochAndRoundAmino;
477
719
  }
720
+ /**
721
+ * @name Report
722
+ * @package injective.ocr.v1beta1
723
+ * @see proto type: injective.ocr.v1beta1.Report
724
+ */
478
725
  export interface Report {
479
726
  observationsTimestamp: bigint;
480
- /** ith element is the index of the ith observer */
727
+ /**
728
+ * ith element is the index of the ith observer
729
+ */
481
730
  observers: Uint8Array;
482
731
  observations: string[];
483
732
  }
@@ -485,9 +734,16 @@ export interface ReportProtoMsg {
485
734
  typeUrl: "/injective.ocr.v1beta1.Report";
486
735
  value: Uint8Array;
487
736
  }
737
+ /**
738
+ * @name ReportAmino
739
+ * @package injective.ocr.v1beta1
740
+ * @see proto type: injective.ocr.v1beta1.Report
741
+ */
488
742
  export interface ReportAmino {
489
743
  observations_timestamp: string;
490
- /** ith element is the index of the ith observer */
744
+ /**
745
+ * ith element is the index of the ith observer
746
+ */
491
747
  observers: string;
492
748
  observations: string[];
493
749
  }
@@ -495,30 +751,49 @@ export interface ReportAminoMsg {
495
751
  type: "/injective.ocr.v1beta1.Report";
496
752
  value: ReportAmino;
497
753
  }
754
+ /**
755
+ * @name ReportToSign
756
+ * @package injective.ocr.v1beta1
757
+ * @see proto type: injective.ocr.v1beta1.ReportToSign
758
+ */
498
759
  export interface ReportToSign {
499
760
  configDigest: Uint8Array;
500
761
  epoch: bigint;
501
762
  round: bigint;
502
763
  extraHash: Uint8Array;
503
- /** Opaque report */
764
+ /**
765
+ * Opaque report
766
+ */
504
767
  report: Uint8Array;
505
768
  }
506
769
  export interface ReportToSignProtoMsg {
507
770
  typeUrl: "/injective.ocr.v1beta1.ReportToSign";
508
771
  value: Uint8Array;
509
772
  }
773
+ /**
774
+ * @name ReportToSignAmino
775
+ * @package injective.ocr.v1beta1
776
+ * @see proto type: injective.ocr.v1beta1.ReportToSign
777
+ */
510
778
  export interface ReportToSignAmino {
511
779
  config_digest: string;
512
780
  epoch: string;
513
781
  round: string;
514
782
  extra_hash: string;
515
- /** Opaque report */
783
+ /**
784
+ * Opaque report
785
+ */
516
786
  report: string;
517
787
  }
518
788
  export interface ReportToSignAminoMsg {
519
789
  type: "/injective.ocr.v1beta1.ReportToSign";
520
790
  value: ReportToSignAmino;
521
791
  }
792
+ /**
793
+ * @name EventOraclePaid
794
+ * @package injective.ocr.v1beta1
795
+ * @see proto type: injective.ocr.v1beta1.EventOraclePaid
796
+ */
522
797
  export interface EventOraclePaid {
523
798
  transmitterAddr: string;
524
799
  payeeAddr: string;
@@ -528,6 +803,11 @@ export interface EventOraclePaidProtoMsg {
528
803
  typeUrl: "/injective.ocr.v1beta1.EventOraclePaid";
529
804
  value: Uint8Array;
530
805
  }
806
+ /**
807
+ * @name EventOraclePaidAmino
808
+ * @package injective.ocr.v1beta1
809
+ * @see proto type: injective.ocr.v1beta1.EventOraclePaid
810
+ */
531
811
  export interface EventOraclePaidAmino {
532
812
  transmitter_addr: string;
533
813
  payee_addr: string;
@@ -537,6 +817,11 @@ export interface EventOraclePaidAminoMsg {
537
817
  type: "/injective.ocr.v1beta1.EventOraclePaid";
538
818
  value: EventOraclePaidAmino;
539
819
  }
820
+ /**
821
+ * @name EventAnswerUpdated
822
+ * @package injective.ocr.v1beta1
823
+ * @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
824
+ */
540
825
  export interface EventAnswerUpdated {
541
826
  current: string;
542
827
  roundId: string;
@@ -546,6 +831,11 @@ export interface EventAnswerUpdatedProtoMsg {
546
831
  typeUrl: "/injective.ocr.v1beta1.EventAnswerUpdated";
547
832
  value: Uint8Array;
548
833
  }
834
+ /**
835
+ * @name EventAnswerUpdatedAmino
836
+ * @package injective.ocr.v1beta1
837
+ * @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
838
+ */
549
839
  export interface EventAnswerUpdatedAmino {
550
840
  current: string;
551
841
  round_id: string;
@@ -555,9 +845,16 @@ export interface EventAnswerUpdatedAminoMsg {
555
845
  type: "/injective.ocr.v1beta1.EventAnswerUpdated";
556
846
  value: EventAnswerUpdatedAmino;
557
847
  }
848
+ /**
849
+ * @name EventNewRound
850
+ * @package injective.ocr.v1beta1
851
+ * @see proto type: injective.ocr.v1beta1.EventNewRound
852
+ */
558
853
  export interface EventNewRound {
559
854
  roundId: string;
560
- /** address of starter */
855
+ /**
856
+ * address of starter
857
+ */
561
858
  startedBy: string;
562
859
  startedAt: Date;
563
860
  }
@@ -565,9 +862,16 @@ export interface EventNewRoundProtoMsg {
565
862
  typeUrl: "/injective.ocr.v1beta1.EventNewRound";
566
863
  value: Uint8Array;
567
864
  }
865
+ /**
866
+ * @name EventNewRoundAmino
867
+ * @package injective.ocr.v1beta1
868
+ * @see proto type: injective.ocr.v1beta1.EventNewRound
869
+ */
568
870
  export interface EventNewRoundAmino {
569
871
  round_id: string;
570
- /** address of starter */
872
+ /**
873
+ * address of starter
874
+ */
571
875
  started_by: string;
572
876
  started_at: string;
573
877
  }
@@ -575,6 +879,11 @@ export interface EventNewRoundAminoMsg {
575
879
  type: "/injective.ocr.v1beta1.EventNewRound";
576
880
  value: EventNewRoundAmino;
577
881
  }
882
+ /**
883
+ * @name EventTransmitted
884
+ * @package injective.ocr.v1beta1
885
+ * @see proto type: injective.ocr.v1beta1.EventTransmitted
886
+ */
578
887
  export interface EventTransmitted {
579
888
  configDigest: Uint8Array;
580
889
  epoch: bigint;
@@ -583,6 +892,11 @@ export interface EventTransmittedProtoMsg {
583
892
  typeUrl: "/injective.ocr.v1beta1.EventTransmitted";
584
893
  value: Uint8Array;
585
894
  }
895
+ /**
896
+ * @name EventTransmittedAmino
897
+ * @package injective.ocr.v1beta1
898
+ * @see proto type: injective.ocr.v1beta1.EventTransmitted
899
+ */
586
900
  export interface EventTransmittedAmino {
587
901
  config_digest: string;
588
902
  epoch: string;
@@ -591,6 +905,11 @@ export interface EventTransmittedAminoMsg {
591
905
  type: "/injective.ocr.v1beta1.EventTransmitted";
592
906
  value: EventTransmittedAmino;
593
907
  }
908
+ /**
909
+ * @name EventNewTransmission
910
+ * @package injective.ocr.v1beta1
911
+ * @see proto type: injective.ocr.v1beta1.EventNewTransmission
912
+ */
594
913
  export interface EventNewTransmission {
595
914
  feedId: string;
596
915
  aggregatorRoundId: number;
@@ -606,6 +925,11 @@ export interface EventNewTransmissionProtoMsg {
606
925
  typeUrl: "/injective.ocr.v1beta1.EventNewTransmission";
607
926
  value: Uint8Array;
608
927
  }
928
+ /**
929
+ * @name EventNewTransmissionAmino
930
+ * @package injective.ocr.v1beta1
931
+ * @see proto type: injective.ocr.v1beta1.EventNewTransmission
932
+ */
609
933
  export interface EventNewTransmissionAmino {
610
934
  feed_id: string;
611
935
  aggregator_round_id: number;
@@ -621,8 +945,15 @@ export interface EventNewTransmissionAminoMsg {
621
945
  type: "/injective.ocr.v1beta1.EventNewTransmission";
622
946
  value: EventNewTransmissionAmino;
623
947
  }
948
+ /**
949
+ * @name EventConfigSet
950
+ * @package injective.ocr.v1beta1
951
+ * @see proto type: injective.ocr.v1beta1.EventConfigSet
952
+ */
624
953
  export interface EventConfigSet {
625
- /** hash of the config */
954
+ /**
955
+ * hash of the config
956
+ */
626
957
  configDigest: Uint8Array;
627
958
  /**
628
959
  * previous_config_block_number block in which the previous config was set, to
@@ -636,8 +967,15 @@ export interface EventConfigSetProtoMsg {
636
967
  typeUrl: "/injective.ocr.v1beta1.EventConfigSet";
637
968
  value: Uint8Array;
638
969
  }
970
+ /**
971
+ * @name EventConfigSetAmino
972
+ * @package injective.ocr.v1beta1
973
+ * @see proto type: injective.ocr.v1beta1.EventConfigSet
974
+ */
639
975
  export interface EventConfigSetAmino {
640
- /** hash of the config */
976
+ /**
977
+ * hash of the config
978
+ */
641
979
  config_digest: string;
642
980
  /**
643
981
  * previous_config_block_number block in which the previous config was set, to
@@ -651,6 +989,11 @@ export interface EventConfigSetAminoMsg {
651
989
  type: "/injective.ocr.v1beta1.EventConfigSet";
652
990
  value: EventConfigSetAmino;
653
991
  }
992
+ /**
993
+ * @name Params
994
+ * @package injective.ocr.v1beta1
995
+ * @see proto type: injective.ocr.v1beta1.Params
996
+ */
654
997
  export declare const Params: {
655
998
  typeUrl: string;
656
999
  aminoType: string;
@@ -668,6 +1011,11 @@ export declare const Params: {
668
1011
  toProtoMsg(message: Params): ParamsProtoMsg;
669
1012
  registerTypeUrl(): void;
670
1013
  };
1014
+ /**
1015
+ * @name FeedConfig
1016
+ * @package injective.ocr.v1beta1
1017
+ * @see proto type: injective.ocr.v1beta1.FeedConfig
1018
+ */
671
1019
  export declare const FeedConfig: {
672
1020
  typeUrl: string;
673
1021
  is(o: any): o is FeedConfig;
@@ -683,6 +1031,11 @@ export declare const FeedConfig: {
683
1031
  toProtoMsg(message: FeedConfig): FeedConfigProtoMsg;
684
1032
  registerTypeUrl(): void;
685
1033
  };
1034
+ /**
1035
+ * @name FeedConfigInfo
1036
+ * @package injective.ocr.v1beta1
1037
+ * @see proto type: injective.ocr.v1beta1.FeedConfigInfo
1038
+ */
686
1039
  export declare const FeedConfigInfo: {
687
1040
  typeUrl: string;
688
1041
  is(o: any): o is FeedConfigInfo;
@@ -698,6 +1051,11 @@ export declare const FeedConfigInfo: {
698
1051
  toProtoMsg(message: FeedConfigInfo): FeedConfigInfoProtoMsg;
699
1052
  registerTypeUrl(): void;
700
1053
  };
1054
+ /**
1055
+ * @name ModuleParams
1056
+ * @package injective.ocr.v1beta1
1057
+ * @see proto type: injective.ocr.v1beta1.ModuleParams
1058
+ */
701
1059
  export declare const ModuleParams: {
702
1060
  typeUrl: string;
703
1061
  is(o: any): o is ModuleParams;
@@ -713,6 +1071,11 @@ export declare const ModuleParams: {
713
1071
  toProtoMsg(message: ModuleParams): ModuleParamsProtoMsg;
714
1072
  registerTypeUrl(): void;
715
1073
  };
1074
+ /**
1075
+ * @name ContractConfig
1076
+ * @package injective.ocr.v1beta1
1077
+ * @see proto type: injective.ocr.v1beta1.ContractConfig
1078
+ */
716
1079
  export declare const ContractConfig: {
717
1080
  typeUrl: string;
718
1081
  is(o: any): o is ContractConfig;
@@ -728,6 +1091,11 @@ export declare const ContractConfig: {
728
1091
  toProtoMsg(message: ContractConfig): ContractConfigProtoMsg;
729
1092
  registerTypeUrl(): void;
730
1093
  };
1094
+ /**
1095
+ * @name SetConfigProposal
1096
+ * @package injective.ocr.v1beta1
1097
+ * @see proto type: injective.ocr.v1beta1.SetConfigProposal
1098
+ */
731
1099
  export declare const SetConfigProposal: {
732
1100
  typeUrl: string;
733
1101
  aminoType: string;
@@ -745,6 +1113,11 @@ export declare const SetConfigProposal: {
745
1113
  toProtoMsg(message: SetConfigProposal): SetConfigProposalProtoMsg;
746
1114
  registerTypeUrl(): void;
747
1115
  };
1116
+ /**
1117
+ * @name FeedProperties
1118
+ * @package injective.ocr.v1beta1
1119
+ * @see proto type: injective.ocr.v1beta1.FeedProperties
1120
+ */
748
1121
  export declare const FeedProperties: {
749
1122
  typeUrl: string;
750
1123
  is(o: any): o is FeedProperties;
@@ -760,6 +1133,11 @@ export declare const FeedProperties: {
760
1133
  toProtoMsg(message: FeedProperties): FeedPropertiesProtoMsg;
761
1134
  registerTypeUrl(): void;
762
1135
  };
1136
+ /**
1137
+ * @name SetBatchConfigProposal
1138
+ * @package injective.ocr.v1beta1
1139
+ * @see proto type: injective.ocr.v1beta1.SetBatchConfigProposal
1140
+ */
763
1141
  export declare const SetBatchConfigProposal: {
764
1142
  typeUrl: string;
765
1143
  aminoType: string;
@@ -777,6 +1155,11 @@ export declare const SetBatchConfigProposal: {
777
1155
  toProtoMsg(message: SetBatchConfigProposal): SetBatchConfigProposalProtoMsg;
778
1156
  registerTypeUrl(): void;
779
1157
  };
1158
+ /**
1159
+ * @name OracleObservationsCounts
1160
+ * @package injective.ocr.v1beta1
1161
+ * @see proto type: injective.ocr.v1beta1.OracleObservationsCounts
1162
+ */
780
1163
  export declare const OracleObservationsCounts: {
781
1164
  typeUrl: string;
782
1165
  is(o: any): o is OracleObservationsCounts;
@@ -792,6 +1175,12 @@ export declare const OracleObservationsCounts: {
792
1175
  toProtoMsg(message: OracleObservationsCounts): OracleObservationsCountsProtoMsg;
793
1176
  registerTypeUrl(): void;
794
1177
  };
1178
+ /**
1179
+ * LINK-INJ-denominated reimbursements for gas used by transmitters.
1180
+ * @name GasReimbursements
1181
+ * @package injective.ocr.v1beta1
1182
+ * @see proto type: injective.ocr.v1beta1.GasReimbursements
1183
+ */
795
1184
  export declare const GasReimbursements: {
796
1185
  typeUrl: string;
797
1186
  is(o: any): o is GasReimbursements;
@@ -807,6 +1196,11 @@ export declare const GasReimbursements: {
807
1196
  toProtoMsg(message: GasReimbursements): GasReimbursementsProtoMsg;
808
1197
  registerTypeUrl(): void;
809
1198
  };
1199
+ /**
1200
+ * @name Payee
1201
+ * @package injective.ocr.v1beta1
1202
+ * @see proto type: injective.ocr.v1beta1.Payee
1203
+ */
810
1204
  export declare const Payee: {
811
1205
  typeUrl: string;
812
1206
  is(o: any): o is Payee;
@@ -822,6 +1216,13 @@ export declare const Payee: {
822
1216
  toProtoMsg(message: Payee): PayeeProtoMsg;
823
1217
  registerTypeUrl(): void;
824
1218
  };
1219
+ /**
1220
+ * Transmission records the median answer from the transmit transaction at
1221
+ * time timestamp
1222
+ * @name Transmission
1223
+ * @package injective.ocr.v1beta1
1224
+ * @see proto type: injective.ocr.v1beta1.Transmission
1225
+ */
825
1226
  export declare const Transmission: {
826
1227
  typeUrl: string;
827
1228
  is(o: any): o is Transmission;
@@ -837,6 +1238,11 @@ export declare const Transmission: {
837
1238
  toProtoMsg(message: Transmission): TransmissionProtoMsg;
838
1239
  registerTypeUrl(): void;
839
1240
  };
1241
+ /**
1242
+ * @name EpochAndRound
1243
+ * @package injective.ocr.v1beta1
1244
+ * @see proto type: injective.ocr.v1beta1.EpochAndRound
1245
+ */
840
1246
  export declare const EpochAndRound: {
841
1247
  typeUrl: string;
842
1248
  is(o: any): o is EpochAndRound;
@@ -852,6 +1258,11 @@ export declare const EpochAndRound: {
852
1258
  toProtoMsg(message: EpochAndRound): EpochAndRoundProtoMsg;
853
1259
  registerTypeUrl(): void;
854
1260
  };
1261
+ /**
1262
+ * @name Report
1263
+ * @package injective.ocr.v1beta1
1264
+ * @see proto type: injective.ocr.v1beta1.Report
1265
+ */
855
1266
  export declare const Report: {
856
1267
  typeUrl: string;
857
1268
  is(o: any): o is Report;
@@ -867,6 +1278,11 @@ export declare const Report: {
867
1278
  toProtoMsg(message: Report): ReportProtoMsg;
868
1279
  registerTypeUrl(): void;
869
1280
  };
1281
+ /**
1282
+ * @name ReportToSign
1283
+ * @package injective.ocr.v1beta1
1284
+ * @see proto type: injective.ocr.v1beta1.ReportToSign
1285
+ */
870
1286
  export declare const ReportToSign: {
871
1287
  typeUrl: string;
872
1288
  is(o: any): o is ReportToSign;
@@ -882,6 +1298,11 @@ export declare const ReportToSign: {
882
1298
  toProtoMsg(message: ReportToSign): ReportToSignProtoMsg;
883
1299
  registerTypeUrl(): void;
884
1300
  };
1301
+ /**
1302
+ * @name EventOraclePaid
1303
+ * @package injective.ocr.v1beta1
1304
+ * @see proto type: injective.ocr.v1beta1.EventOraclePaid
1305
+ */
885
1306
  export declare const EventOraclePaid: {
886
1307
  typeUrl: string;
887
1308
  is(o: any): o is EventOraclePaid;
@@ -897,6 +1318,11 @@ export declare const EventOraclePaid: {
897
1318
  toProtoMsg(message: EventOraclePaid): EventOraclePaidProtoMsg;
898
1319
  registerTypeUrl(): void;
899
1320
  };
1321
+ /**
1322
+ * @name EventAnswerUpdated
1323
+ * @package injective.ocr.v1beta1
1324
+ * @see proto type: injective.ocr.v1beta1.EventAnswerUpdated
1325
+ */
900
1326
  export declare const EventAnswerUpdated: {
901
1327
  typeUrl: string;
902
1328
  is(o: any): o is EventAnswerUpdated;
@@ -912,6 +1338,11 @@ export declare const EventAnswerUpdated: {
912
1338
  toProtoMsg(message: EventAnswerUpdated): EventAnswerUpdatedProtoMsg;
913
1339
  registerTypeUrl(): void;
914
1340
  };
1341
+ /**
1342
+ * @name EventNewRound
1343
+ * @package injective.ocr.v1beta1
1344
+ * @see proto type: injective.ocr.v1beta1.EventNewRound
1345
+ */
915
1346
  export declare const EventNewRound: {
916
1347
  typeUrl: string;
917
1348
  is(o: any): o is EventNewRound;
@@ -927,6 +1358,11 @@ export declare const EventNewRound: {
927
1358
  toProtoMsg(message: EventNewRound): EventNewRoundProtoMsg;
928
1359
  registerTypeUrl(): void;
929
1360
  };
1361
+ /**
1362
+ * @name EventTransmitted
1363
+ * @package injective.ocr.v1beta1
1364
+ * @see proto type: injective.ocr.v1beta1.EventTransmitted
1365
+ */
930
1366
  export declare const EventTransmitted: {
931
1367
  typeUrl: string;
932
1368
  is(o: any): o is EventTransmitted;
@@ -942,6 +1378,11 @@ export declare const EventTransmitted: {
942
1378
  toProtoMsg(message: EventTransmitted): EventTransmittedProtoMsg;
943
1379
  registerTypeUrl(): void;
944
1380
  };
1381
+ /**
1382
+ * @name EventNewTransmission
1383
+ * @package injective.ocr.v1beta1
1384
+ * @see proto type: injective.ocr.v1beta1.EventNewTransmission
1385
+ */
945
1386
  export declare const EventNewTransmission: {
946
1387
  typeUrl: string;
947
1388
  is(o: any): o is EventNewTransmission;
@@ -957,6 +1398,11 @@ export declare const EventNewTransmission: {
957
1398
  toProtoMsg(message: EventNewTransmission): EventNewTransmissionProtoMsg;
958
1399
  registerTypeUrl(): void;
959
1400
  };
1401
+ /**
1402
+ * @name EventConfigSet
1403
+ * @package injective.ocr.v1beta1
1404
+ * @see proto type: injective.ocr.v1beta1.EventConfigSet
1405
+ */
960
1406
  export declare const EventConfigSet: {
961
1407
  typeUrl: string;
962
1408
  is(o: any): o is EventConfigSet;