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
@@ -18,6 +18,9 @@ import { DeepPartial } from "../../../helpers";
18
18
  * ETH_ADDRESS
19
19
  * This is a hex encoded 0x Ethereum public key that will be used by this
20
20
  * validator on Ethereum
21
+ * @name MsgSetOrchestratorAddresses
22
+ * @package injective.peggy.v1
23
+ * @see proto type: injective.peggy.v1.MsgSetOrchestratorAddresses
21
24
  */
22
25
  export interface MsgSetOrchestratorAddresses {
23
26
  sender: string;
@@ -42,6 +45,9 @@ export interface MsgSetOrchestratorAddressesProtoMsg {
42
45
  * ETH_ADDRESS
43
46
  * This is a hex encoded 0x Ethereum public key that will be used by this
44
47
  * validator on Ethereum
48
+ * @name MsgSetOrchestratorAddressesAmino
49
+ * @package injective.peggy.v1
50
+ * @see proto type: injective.peggy.v1.MsgSetOrchestratorAddresses
45
51
  */
46
52
  export interface MsgSetOrchestratorAddressesAmino {
47
53
  sender: string;
@@ -52,12 +58,22 @@ export interface MsgSetOrchestratorAddressesAminoMsg {
52
58
  type: "peggy/MsgSetOrchestratorAddresses";
53
59
  value: MsgSetOrchestratorAddressesAmino;
54
60
  }
61
+ /**
62
+ * @name MsgSetOrchestratorAddressesResponse
63
+ * @package injective.peggy.v1
64
+ * @see proto type: injective.peggy.v1.MsgSetOrchestratorAddressesResponse
65
+ */
55
66
  export interface MsgSetOrchestratorAddressesResponse {
56
67
  }
57
68
  export interface MsgSetOrchestratorAddressesResponseProtoMsg {
58
69
  typeUrl: "/injective.peggy.v1.MsgSetOrchestratorAddressesResponse";
59
70
  value: Uint8Array;
60
71
  }
72
+ /**
73
+ * @name MsgSetOrchestratorAddressesResponseAmino
74
+ * @package injective.peggy.v1
75
+ * @see proto type: injective.peggy.v1.MsgSetOrchestratorAddressesResponse
76
+ */
61
77
  export interface MsgSetOrchestratorAddressesResponseAmino {
62
78
  }
63
79
  export interface MsgSetOrchestratorAddressesResponseAminoMsg {
@@ -80,6 +96,9 @@ export interface MsgSetOrchestratorAddressesResponseAminoMsg {
80
96
  * signatures it is then possible for anyone to view these signatures in the
81
97
  * chain store and submit them to Ethereum to update the validator set
82
98
  * -------------
99
+ * @name MsgValsetConfirm
100
+ * @package injective.peggy.v1
101
+ * @see proto type: injective.peggy.v1.MsgValsetConfirm
83
102
  */
84
103
  export interface MsgValsetConfirm {
85
104
  nonce: bigint;
@@ -107,6 +126,9 @@ export interface MsgValsetConfirmProtoMsg {
107
126
  * signatures it is then possible for anyone to view these signatures in the
108
127
  * chain store and submit them to Ethereum to update the validator set
109
128
  * -------------
129
+ * @name MsgValsetConfirmAmino
130
+ * @package injective.peggy.v1
131
+ * @see proto type: injective.peggy.v1.MsgValsetConfirm
110
132
  */
111
133
  export interface MsgValsetConfirmAmino {
112
134
  nonce: string;
@@ -118,12 +140,22 @@ export interface MsgValsetConfirmAminoMsg {
118
140
  type: "peggy/MsgValsetConfirm";
119
141
  value: MsgValsetConfirmAmino;
120
142
  }
143
+ /**
144
+ * @name MsgValsetConfirmResponse
145
+ * @package injective.peggy.v1
146
+ * @see proto type: injective.peggy.v1.MsgValsetConfirmResponse
147
+ */
121
148
  export interface MsgValsetConfirmResponse {
122
149
  }
123
150
  export interface MsgValsetConfirmResponseProtoMsg {
124
151
  typeUrl: "/injective.peggy.v1.MsgValsetConfirmResponse";
125
152
  value: Uint8Array;
126
153
  }
154
+ /**
155
+ * @name MsgValsetConfirmResponseAmino
156
+ * @package injective.peggy.v1
157
+ * @see proto type: injective.peggy.v1.MsgValsetConfirmResponse
158
+ */
127
159
  export interface MsgValsetConfirmResponseAmino {
128
160
  }
129
161
  export interface MsgValsetConfirmResponseAminoMsg {
@@ -143,6 +175,9 @@ export interface MsgValsetConfirmResponseAminoMsg {
143
175
  * the fee paid for the bridge, distinct from the fee paid to the chain to
144
176
  * actually send this message in the first place. So a successful send has
145
177
  * two layers of fees for the user
178
+ * @name MsgSendToEth
179
+ * @package injective.peggy.v1
180
+ * @see proto type: injective.peggy.v1.MsgSendToEth
146
181
  */
147
182
  export interface MsgSendToEth {
148
183
  sender: string;
@@ -167,6 +202,9 @@ export interface MsgSendToEthProtoMsg {
167
202
  * the fee paid for the bridge, distinct from the fee paid to the chain to
168
203
  * actually send this message in the first place. So a successful send has
169
204
  * two layers of fees for the user
205
+ * @name MsgSendToEthAmino
206
+ * @package injective.peggy.v1
207
+ * @see proto type: injective.peggy.v1.MsgSendToEth
170
208
  */
171
209
  export interface MsgSendToEthAmino {
172
210
  sender: string;
@@ -178,12 +216,22 @@ export interface MsgSendToEthAminoMsg {
178
216
  type: "peggy/MsgSendToEth";
179
217
  value: MsgSendToEthAmino;
180
218
  }
219
+ /**
220
+ * @name MsgSendToEthResponse
221
+ * @package injective.peggy.v1
222
+ * @see proto type: injective.peggy.v1.MsgSendToEthResponse
223
+ */
181
224
  export interface MsgSendToEthResponse {
182
225
  }
183
226
  export interface MsgSendToEthResponseProtoMsg {
184
227
  typeUrl: "/injective.peggy.v1.MsgSendToEthResponse";
185
228
  value: Uint8Array;
186
229
  }
230
+ /**
231
+ * @name MsgSendToEthResponseAmino
232
+ * @package injective.peggy.v1
233
+ * @see proto type: injective.peggy.v1.MsgSendToEthResponse
234
+ */
187
235
  export interface MsgSendToEthResponseAmino {
188
236
  }
189
237
  export interface MsgSendToEthResponseAminoMsg {
@@ -200,6 +248,9 @@ export interface MsgSendToEthResponseAminoMsg {
200
248
  * batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer
201
249
  * can finally submit the batch
202
250
  * -------------
251
+ * @name MsgRequestBatch
252
+ * @package injective.peggy.v1
253
+ * @see proto type: injective.peggy.v1.MsgRequestBatch
203
254
  */
204
255
  export interface MsgRequestBatch {
205
256
  orchestrator: string;
@@ -219,6 +270,9 @@ export interface MsgRequestBatchProtoMsg {
219
270
  * batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer
220
271
  * can finally submit the batch
221
272
  * -------------
273
+ * @name MsgRequestBatchAmino
274
+ * @package injective.peggy.v1
275
+ * @see proto type: injective.peggy.v1.MsgRequestBatch
222
276
  */
223
277
  export interface MsgRequestBatchAmino {
224
278
  orchestrator: string;
@@ -228,12 +282,22 @@ export interface MsgRequestBatchAminoMsg {
228
282
  type: "peggy/MsgRequestBatch";
229
283
  value: MsgRequestBatchAmino;
230
284
  }
285
+ /**
286
+ * @name MsgRequestBatchResponse
287
+ * @package injective.peggy.v1
288
+ * @see proto type: injective.peggy.v1.MsgRequestBatchResponse
289
+ */
231
290
  export interface MsgRequestBatchResponse {
232
291
  }
233
292
  export interface MsgRequestBatchResponseProtoMsg {
234
293
  typeUrl: "/injective.peggy.v1.MsgRequestBatchResponse";
235
294
  value: Uint8Array;
236
295
  }
296
+ /**
297
+ * @name MsgRequestBatchResponseAmino
298
+ * @package injective.peggy.v1
299
+ * @see proto type: injective.peggy.v1.MsgRequestBatchResponse
300
+ */
237
301
  export interface MsgRequestBatchResponseAmino {
238
302
  }
239
303
  export interface MsgRequestBatchResponseAminoMsg {
@@ -249,6 +313,9 @@ export interface MsgRequestBatchResponseAminoMsg {
249
313
  * (TODO determine this without nondeterminism) This message includes the batch
250
314
  * as well as an Ethereum signature over this batch by the validator
251
315
  * -------------
316
+ * @name MsgConfirmBatch
317
+ * @package injective.peggy.v1
318
+ * @see proto type: injective.peggy.v1.MsgConfirmBatch
252
319
  */
253
320
  export interface MsgConfirmBatch {
254
321
  nonce: bigint;
@@ -270,6 +337,9 @@ export interface MsgConfirmBatchProtoMsg {
270
337
  * (TODO determine this without nondeterminism) This message includes the batch
271
338
  * as well as an Ethereum signature over this batch by the validator
272
339
  * -------------
340
+ * @name MsgConfirmBatchAmino
341
+ * @package injective.peggy.v1
342
+ * @see proto type: injective.peggy.v1.MsgConfirmBatch
273
343
  */
274
344
  export interface MsgConfirmBatchAmino {
275
345
  nonce: string;
@@ -282,12 +352,22 @@ export interface MsgConfirmBatchAminoMsg {
282
352
  type: "peggy/MsgConfirmBatch";
283
353
  value: MsgConfirmBatchAmino;
284
354
  }
355
+ /**
356
+ * @name MsgConfirmBatchResponse
357
+ * @package injective.peggy.v1
358
+ * @see proto type: injective.peggy.v1.MsgConfirmBatchResponse
359
+ */
285
360
  export interface MsgConfirmBatchResponse {
286
361
  }
287
362
  export interface MsgConfirmBatchResponseProtoMsg {
288
363
  typeUrl: "/injective.peggy.v1.MsgConfirmBatchResponse";
289
364
  value: Uint8Array;
290
365
  }
366
+ /**
367
+ * @name MsgConfirmBatchResponseAmino
368
+ * @package injective.peggy.v1
369
+ * @see proto type: injective.peggy.v1.MsgConfirmBatchResponse
370
+ */
291
371
  export interface MsgConfirmBatchResponseAmino {
292
372
  }
293
373
  export interface MsgConfirmBatchResponseAminoMsg {
@@ -300,6 +380,9 @@ export interface MsgConfirmBatchResponseAminoMsg {
300
380
  * claimed to have seen the deposit enter the ethereum blockchain coins are
301
381
  * issued to the Cosmos address in question
302
382
  * -------------
383
+ * @name MsgDepositClaim
384
+ * @package injective.peggy.v1
385
+ * @see proto type: injective.peggy.v1.MsgDepositClaim
303
386
  */
304
387
  export interface MsgDepositClaim {
305
388
  eventNonce: bigint;
@@ -321,6 +404,9 @@ export interface MsgDepositClaimProtoMsg {
321
404
  * claimed to have seen the deposit enter the ethereum blockchain coins are
322
405
  * issued to the Cosmos address in question
323
406
  * -------------
407
+ * @name MsgDepositClaimAmino
408
+ * @package injective.peggy.v1
409
+ * @see proto type: injective.peggy.v1.MsgDepositClaim
324
410
  */
325
411
  export interface MsgDepositClaimAmino {
326
412
  event_nonce: string;
@@ -336,12 +422,22 @@ export interface MsgDepositClaimAminoMsg {
336
422
  type: "peggy/MsgDepositClaim";
337
423
  value: MsgDepositClaimAmino;
338
424
  }
425
+ /**
426
+ * @name MsgDepositClaimResponse
427
+ * @package injective.peggy.v1
428
+ * @see proto type: injective.peggy.v1.MsgDepositClaimResponse
429
+ */
339
430
  export interface MsgDepositClaimResponse {
340
431
  }
341
432
  export interface MsgDepositClaimResponseProtoMsg {
342
433
  typeUrl: "/injective.peggy.v1.MsgDepositClaimResponse";
343
434
  value: Uint8Array;
344
435
  }
436
+ /**
437
+ * @name MsgDepositClaimResponseAmino
438
+ * @package injective.peggy.v1
439
+ * @see proto type: injective.peggy.v1.MsgDepositClaimResponse
440
+ */
345
441
  export interface MsgDepositClaimResponseAmino {
346
442
  }
347
443
  export interface MsgDepositClaimResponseAminoMsg {
@@ -351,6 +447,9 @@ export interface MsgDepositClaimResponseAminoMsg {
351
447
  /**
352
448
  * WithdrawClaim claims that a batch of withdrawal
353
449
  * operations on the bridge contract was executed.
450
+ * @name MsgWithdrawClaim
451
+ * @package injective.peggy.v1
452
+ * @see proto type: injective.peggy.v1.MsgWithdrawClaim
354
453
  */
355
454
  export interface MsgWithdrawClaim {
356
455
  eventNonce: bigint;
@@ -366,6 +465,9 @@ export interface MsgWithdrawClaimProtoMsg {
366
465
  /**
367
466
  * WithdrawClaim claims that a batch of withdrawal
368
467
  * operations on the bridge contract was executed.
468
+ * @name MsgWithdrawClaimAmino
469
+ * @package injective.peggy.v1
470
+ * @see proto type: injective.peggy.v1.MsgWithdrawClaim
369
471
  */
370
472
  export interface MsgWithdrawClaimAmino {
371
473
  event_nonce: string;
@@ -378,12 +480,22 @@ export interface MsgWithdrawClaimAminoMsg {
378
480
  type: "peggy/MsgWithdrawClaim";
379
481
  value: MsgWithdrawClaimAmino;
380
482
  }
483
+ /**
484
+ * @name MsgWithdrawClaimResponse
485
+ * @package injective.peggy.v1
486
+ * @see proto type: injective.peggy.v1.MsgWithdrawClaimResponse
487
+ */
381
488
  export interface MsgWithdrawClaimResponse {
382
489
  }
383
490
  export interface MsgWithdrawClaimResponseProtoMsg {
384
491
  typeUrl: "/injective.peggy.v1.MsgWithdrawClaimResponse";
385
492
  value: Uint8Array;
386
493
  }
494
+ /**
495
+ * @name MsgWithdrawClaimResponseAmino
496
+ * @package injective.peggy.v1
497
+ * @see proto type: injective.peggy.v1.MsgWithdrawClaimResponse
498
+ */
387
499
  export interface MsgWithdrawClaimResponseAmino {
388
500
  }
389
501
  export interface MsgWithdrawClaimResponseAminoMsg {
@@ -394,6 +506,9 @@ export interface MsgWithdrawClaimResponseAminoMsg {
394
506
  * ERC20DeployedClaim allows the Cosmos module
395
507
  * to learn about an ERC20 that someone deployed
396
508
  * to represent a Cosmos asset
509
+ * @name MsgERC20DeployedClaim
510
+ * @package injective.peggy.v1
511
+ * @see proto type: injective.peggy.v1.MsgERC20DeployedClaim
397
512
  */
398
513
  export interface MsgERC20DeployedClaim {
399
514
  eventNonce: bigint;
@@ -413,6 +528,9 @@ export interface MsgERC20DeployedClaimProtoMsg {
413
528
  * ERC20DeployedClaim allows the Cosmos module
414
529
  * to learn about an ERC20 that someone deployed
415
530
  * to represent a Cosmos asset
531
+ * @name MsgERC20DeployedClaimAmino
532
+ * @package injective.peggy.v1
533
+ * @see proto type: injective.peggy.v1.MsgERC20DeployedClaim
416
534
  */
417
535
  export interface MsgERC20DeployedClaimAmino {
418
536
  event_nonce: string;
@@ -428,12 +546,22 @@ export interface MsgERC20DeployedClaimAminoMsg {
428
546
  type: "peggy/MsgERC20DeployedClaim";
429
547
  value: MsgERC20DeployedClaimAmino;
430
548
  }
549
+ /**
550
+ * @name MsgERC20DeployedClaimResponse
551
+ * @package injective.peggy.v1
552
+ * @see proto type: injective.peggy.v1.MsgERC20DeployedClaimResponse
553
+ */
431
554
  export interface MsgERC20DeployedClaimResponse {
432
555
  }
433
556
  export interface MsgERC20DeployedClaimResponseProtoMsg {
434
557
  typeUrl: "/injective.peggy.v1.MsgERC20DeployedClaimResponse";
435
558
  value: Uint8Array;
436
559
  }
560
+ /**
561
+ * @name MsgERC20DeployedClaimResponseAmino
562
+ * @package injective.peggy.v1
563
+ * @see proto type: injective.peggy.v1.MsgERC20DeployedClaimResponse
564
+ */
437
565
  export interface MsgERC20DeployedClaimResponseAmino {
438
566
  }
439
567
  export interface MsgERC20DeployedClaimResponseAminoMsg {
@@ -444,6 +572,9 @@ export interface MsgERC20DeployedClaimResponseAminoMsg {
444
572
  * This call allows the sender (and only the sender)
445
573
  * to cancel a given MsgSendToEth and recieve a refund
446
574
  * of the tokens
575
+ * @name MsgCancelSendToEth
576
+ * @package injective.peggy.v1
577
+ * @see proto type: injective.peggy.v1.MsgCancelSendToEth
447
578
  */
448
579
  export interface MsgCancelSendToEth {
449
580
  transactionId: bigint;
@@ -457,6 +588,9 @@ export interface MsgCancelSendToEthProtoMsg {
457
588
  * This call allows the sender (and only the sender)
458
589
  * to cancel a given MsgSendToEth and recieve a refund
459
590
  * of the tokens
591
+ * @name MsgCancelSendToEthAmino
592
+ * @package injective.peggy.v1
593
+ * @see proto type: injective.peggy.v1.MsgCancelSendToEth
460
594
  */
461
595
  export interface MsgCancelSendToEthAmino {
462
596
  transaction_id: string;
@@ -466,12 +600,22 @@ export interface MsgCancelSendToEthAminoMsg {
466
600
  type: "peggy/MsgCancelSendToEth";
467
601
  value: MsgCancelSendToEthAmino;
468
602
  }
603
+ /**
604
+ * @name MsgCancelSendToEthResponse
605
+ * @package injective.peggy.v1
606
+ * @see proto type: injective.peggy.v1.MsgCancelSendToEthResponse
607
+ */
469
608
  export interface MsgCancelSendToEthResponse {
470
609
  }
471
610
  export interface MsgCancelSendToEthResponseProtoMsg {
472
611
  typeUrl: "/injective.peggy.v1.MsgCancelSendToEthResponse";
473
612
  value: Uint8Array;
474
613
  }
614
+ /**
615
+ * @name MsgCancelSendToEthResponseAmino
616
+ * @package injective.peggy.v1
617
+ * @see proto type: injective.peggy.v1.MsgCancelSendToEthResponse
618
+ */
475
619
  export interface MsgCancelSendToEthResponseAmino {
476
620
  }
477
621
  export interface MsgCancelSendToEthResponseAminoMsg {
@@ -482,6 +626,9 @@ export interface MsgCancelSendToEthResponseAminoMsg {
482
626
  * This call allows anyone to submit evidence that a
483
627
  * validator has signed a valset, batch, or logic call that never
484
628
  * existed. Subject contains the batch, valset, or logic call.
629
+ * @name MsgSubmitBadSignatureEvidence
630
+ * @package injective.peggy.v1
631
+ * @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidence
485
632
  */
486
633
  export interface MsgSubmitBadSignatureEvidence {
487
634
  subject?: Any;
@@ -496,6 +643,9 @@ export interface MsgSubmitBadSignatureEvidenceProtoMsg {
496
643
  * This call allows anyone to submit evidence that a
497
644
  * validator has signed a valset, batch, or logic call that never
498
645
  * existed. Subject contains the batch, valset, or logic call.
646
+ * @name MsgSubmitBadSignatureEvidenceAmino
647
+ * @package injective.peggy.v1
648
+ * @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidence
499
649
  */
500
650
  export interface MsgSubmitBadSignatureEvidenceAmino {
501
651
  subject?: AnyAmino;
@@ -506,12 +656,22 @@ export interface MsgSubmitBadSignatureEvidenceAminoMsg {
506
656
  type: "peggy/MsgSubmitBadSignatureEvidence";
507
657
  value: MsgSubmitBadSignatureEvidenceAmino;
508
658
  }
659
+ /**
660
+ * @name MsgSubmitBadSignatureEvidenceResponse
661
+ * @package injective.peggy.v1
662
+ * @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse
663
+ */
509
664
  export interface MsgSubmitBadSignatureEvidenceResponse {
510
665
  }
511
666
  export interface MsgSubmitBadSignatureEvidenceResponseProtoMsg {
512
667
  typeUrl: "/injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse";
513
668
  value: Uint8Array;
514
669
  }
670
+ /**
671
+ * @name MsgSubmitBadSignatureEvidenceResponseAmino
672
+ * @package injective.peggy.v1
673
+ * @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse
674
+ */
515
675
  export interface MsgSubmitBadSignatureEvidenceResponseAmino {
516
676
  }
517
677
  export interface MsgSubmitBadSignatureEvidenceResponseAminoMsg {
@@ -521,6 +681,9 @@ export interface MsgSubmitBadSignatureEvidenceResponseAminoMsg {
521
681
  /**
522
682
  * This informs the Cosmos module that a validator
523
683
  * set has been updated.
684
+ * @name MsgValsetUpdatedClaim
685
+ * @package injective.peggy.v1
686
+ * @see proto type: injective.peggy.v1.MsgValsetUpdatedClaim
524
687
  */
525
688
  export interface MsgValsetUpdatedClaim {
526
689
  eventNonce: bigint;
@@ -538,6 +701,9 @@ export interface MsgValsetUpdatedClaimProtoMsg {
538
701
  /**
539
702
  * This informs the Cosmos module that a validator
540
703
  * set has been updated.
704
+ * @name MsgValsetUpdatedClaimAmino
705
+ * @package injective.peggy.v1
706
+ * @see proto type: injective.peggy.v1.MsgValsetUpdatedClaim
541
707
  */
542
708
  export interface MsgValsetUpdatedClaimAmino {
543
709
  event_nonce: string;
@@ -552,20 +718,37 @@ export interface MsgValsetUpdatedClaimAminoMsg {
552
718
  type: "peggy/MsgValsetUpdatedClaim";
553
719
  value: MsgValsetUpdatedClaimAmino;
554
720
  }
721
+ /**
722
+ * @name MsgValsetUpdatedClaimResponse
723
+ * @package injective.peggy.v1
724
+ * @see proto type: injective.peggy.v1.MsgValsetUpdatedClaimResponse
725
+ */
555
726
  export interface MsgValsetUpdatedClaimResponse {
556
727
  }
557
728
  export interface MsgValsetUpdatedClaimResponseProtoMsg {
558
729
  typeUrl: "/injective.peggy.v1.MsgValsetUpdatedClaimResponse";
559
730
  value: Uint8Array;
560
731
  }
732
+ /**
733
+ * @name MsgValsetUpdatedClaimResponseAmino
734
+ * @package injective.peggy.v1
735
+ * @see proto type: injective.peggy.v1.MsgValsetUpdatedClaimResponse
736
+ */
561
737
  export interface MsgValsetUpdatedClaimResponseAmino {
562
738
  }
563
739
  export interface MsgValsetUpdatedClaimResponseAminoMsg {
564
740
  type: "/injective.peggy.v1.MsgValsetUpdatedClaimResponse";
565
741
  value: MsgValsetUpdatedClaimResponseAmino;
566
742
  }
743
+ /**
744
+ * @name MsgUpdateParams
745
+ * @package injective.peggy.v1
746
+ * @see proto type: injective.peggy.v1.MsgUpdateParams
747
+ */
567
748
  export interface MsgUpdateParams {
568
- /** authority is the address of the governance account. */
749
+ /**
750
+ * authority is the address of the governance account.
751
+ */
569
752
  authority: string;
570
753
  /**
571
754
  * params defines the peggy parameters to update.
@@ -578,8 +761,15 @@ export interface MsgUpdateParamsProtoMsg {
578
761
  typeUrl: "/injective.peggy.v1.MsgUpdateParams";
579
762
  value: Uint8Array;
580
763
  }
764
+ /**
765
+ * @name MsgUpdateParamsAmino
766
+ * @package injective.peggy.v1
767
+ * @see proto type: injective.peggy.v1.MsgUpdateParams
768
+ */
581
769
  export interface MsgUpdateParamsAmino {
582
- /** authority is the address of the governance account. */
770
+ /**
771
+ * authority is the address of the governance account.
772
+ */
583
773
  authority: string;
584
774
  /**
585
775
  * params defines the peggy parameters to update.
@@ -592,12 +782,22 @@ export interface MsgUpdateParamsAminoMsg {
592
782
  type: "peggy/MsgUpdateParams";
593
783
  value: MsgUpdateParamsAmino;
594
784
  }
785
+ /**
786
+ * @name MsgUpdateParamsResponse
787
+ * @package injective.peggy.v1
788
+ * @see proto type: injective.peggy.v1.MsgUpdateParamsResponse
789
+ */
595
790
  export interface MsgUpdateParamsResponse {
596
791
  }
597
792
  export interface MsgUpdateParamsResponseProtoMsg {
598
793
  typeUrl: "/injective.peggy.v1.MsgUpdateParamsResponse";
599
794
  value: Uint8Array;
600
795
  }
796
+ /**
797
+ * @name MsgUpdateParamsResponseAmino
798
+ * @package injective.peggy.v1
799
+ * @see proto type: injective.peggy.v1.MsgUpdateParamsResponse
800
+ */
601
801
  export interface MsgUpdateParamsResponseAmino {
602
802
  }
603
803
  export interface MsgUpdateParamsResponseAminoMsg {
@@ -607,11 +807,18 @@ export interface MsgUpdateParamsResponseAminoMsg {
607
807
  /**
608
808
  * MsgBlacklistEthereumAddresses defines the message used to add Ethereum
609
809
  * addresses to peggy blacklist.
810
+ * @name MsgBlacklistEthereumAddresses
811
+ * @package injective.peggy.v1
812
+ * @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddresses
610
813
  */
611
814
  export interface MsgBlacklistEthereumAddresses {
612
- /** signer address */
815
+ /**
816
+ * signer address
817
+ */
613
818
  signer: string;
614
- /** Ethereum addresses to include in the blacklist */
819
+ /**
820
+ * Ethereum addresses to include in the blacklist
821
+ */
615
822
  blacklistAddresses: string[];
616
823
  }
617
824
  export interface MsgBlacklistEthereumAddressesProtoMsg {
@@ -621,11 +828,18 @@ export interface MsgBlacklistEthereumAddressesProtoMsg {
621
828
  /**
622
829
  * MsgBlacklistEthereumAddresses defines the message used to add Ethereum
623
830
  * addresses to peggy blacklist.
831
+ * @name MsgBlacklistEthereumAddressesAmino
832
+ * @package injective.peggy.v1
833
+ * @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddresses
624
834
  */
625
835
  export interface MsgBlacklistEthereumAddressesAmino {
626
- /** signer address */
836
+ /**
837
+ * signer address
838
+ */
627
839
  signer: string;
628
- /** Ethereum addresses to include in the blacklist */
840
+ /**
841
+ * Ethereum addresses to include in the blacklist
842
+ */
629
843
  blacklist_addresses: string[];
630
844
  }
631
845
  export interface MsgBlacklistEthereumAddressesAminoMsg {
@@ -635,6 +849,9 @@ export interface MsgBlacklistEthereumAddressesAminoMsg {
635
849
  /**
636
850
  * MsgBlacklistEthereumAddressesResponse defines the
637
851
  * MsgBlacklistEthereumAddresses response type.
852
+ * @name MsgBlacklistEthereumAddressesResponse
853
+ * @package injective.peggy.v1
854
+ * @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddressesResponse
638
855
  */
639
856
  export interface MsgBlacklistEthereumAddressesResponse {
640
857
  }
@@ -645,6 +862,9 @@ export interface MsgBlacklistEthereumAddressesResponseProtoMsg {
645
862
  /**
646
863
  * MsgBlacklistEthereumAddressesResponse defines the
647
864
  * MsgBlacklistEthereumAddresses response type.
865
+ * @name MsgBlacklistEthereumAddressesResponseAmino
866
+ * @package injective.peggy.v1
867
+ * @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddressesResponse
648
868
  */
649
869
  export interface MsgBlacklistEthereumAddressesResponseAmino {
650
870
  }
@@ -655,11 +875,18 @@ export interface MsgBlacklistEthereumAddressesResponseAminoMsg {
655
875
  /**
656
876
  * MsgRevokeEthereumBlacklist defines the message used to remove Ethereum
657
877
  * addresses from peggy blacklist.
878
+ * @name MsgRevokeEthereumBlacklist
879
+ * @package injective.peggy.v1
880
+ * @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklist
658
881
  */
659
882
  export interface MsgRevokeEthereumBlacklist {
660
- /** signer address */
883
+ /**
884
+ * signer address
885
+ */
661
886
  signer: string;
662
- /** Ethereum addresses to include in the blacklist */
887
+ /**
888
+ * Ethereum addresses to include in the blacklist
889
+ */
663
890
  blacklistAddresses: string[];
664
891
  }
665
892
  export interface MsgRevokeEthereumBlacklistProtoMsg {
@@ -669,11 +896,18 @@ export interface MsgRevokeEthereumBlacklistProtoMsg {
669
896
  /**
670
897
  * MsgRevokeEthereumBlacklist defines the message used to remove Ethereum
671
898
  * addresses from peggy blacklist.
899
+ * @name MsgRevokeEthereumBlacklistAmino
900
+ * @package injective.peggy.v1
901
+ * @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklist
672
902
  */
673
903
  export interface MsgRevokeEthereumBlacklistAmino {
674
- /** signer address */
904
+ /**
905
+ * signer address
906
+ */
675
907
  signer: string;
676
- /** Ethereum addresses to include in the blacklist */
908
+ /**
909
+ * Ethereum addresses to include in the blacklist
910
+ */
677
911
  blacklist_addresses: string[];
678
912
  }
679
913
  export interface MsgRevokeEthereumBlacklistAminoMsg {
@@ -683,6 +917,9 @@ export interface MsgRevokeEthereumBlacklistAminoMsg {
683
917
  /**
684
918
  * MsgRevokeEthereumBlacklistResponse defines the MsgRevokeEthereumBlacklist
685
919
  * response type.
920
+ * @name MsgRevokeEthereumBlacklistResponse
921
+ * @package injective.peggy.v1
922
+ * @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklistResponse
686
923
  */
687
924
  export interface MsgRevokeEthereumBlacklistResponse {
688
925
  }
@@ -693,6 +930,9 @@ export interface MsgRevokeEthereumBlacklistResponseProtoMsg {
693
930
  /**
694
931
  * MsgRevokeEthereumBlacklistResponse defines the MsgRevokeEthereumBlacklist
695
932
  * response type.
933
+ * @name MsgRevokeEthereumBlacklistResponseAmino
934
+ * @package injective.peggy.v1
935
+ * @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklistResponse
696
936
  */
697
937
  export interface MsgRevokeEthereumBlacklistResponseAmino {
698
938
  }
@@ -700,6 +940,24 @@ export interface MsgRevokeEthereumBlacklistResponseAminoMsg {
700
940
  type: "/injective.peggy.v1.MsgRevokeEthereumBlacklistResponse";
701
941
  value: MsgRevokeEthereumBlacklistResponseAmino;
702
942
  }
943
+ /**
944
+ * MsgSetOrchestratorAddresses
945
+ * this message allows validators to delegate their voting responsibilities
946
+ * to a given key. This key is then used as an optional authentication method
947
+ * for sigining oracle claims
948
+ * VALIDATOR
949
+ * The validator field is a cosmosvaloper1... string (i.e. sdk.ValAddress)
950
+ * that references a validator in the active set
951
+ * ORCHESTRATOR
952
+ * The orchestrator field is a cosmos1... string (i.e. sdk.AccAddress) that
953
+ * references the key that is being delegated to
954
+ * ETH_ADDRESS
955
+ * This is a hex encoded 0x Ethereum public key that will be used by this
956
+ * validator on Ethereum
957
+ * @name MsgSetOrchestratorAddresses
958
+ * @package injective.peggy.v1
959
+ * @see proto type: injective.peggy.v1.MsgSetOrchestratorAddresses
960
+ */
703
961
  export declare const MsgSetOrchestratorAddresses: {
704
962
  typeUrl: string;
705
963
  aminoType: string;
@@ -717,6 +975,11 @@ export declare const MsgSetOrchestratorAddresses: {
717
975
  toProtoMsg(message: MsgSetOrchestratorAddresses): MsgSetOrchestratorAddressesProtoMsg;
718
976
  registerTypeUrl(): void;
719
977
  };
978
+ /**
979
+ * @name MsgSetOrchestratorAddressesResponse
980
+ * @package injective.peggy.v1
981
+ * @see proto type: injective.peggy.v1.MsgSetOrchestratorAddressesResponse
982
+ */
720
983
  export declare const MsgSetOrchestratorAddressesResponse: {
721
984
  typeUrl: string;
722
985
  is(o: any): o is MsgSetOrchestratorAddressesResponse;
@@ -732,6 +995,26 @@ export declare const MsgSetOrchestratorAddressesResponse: {
732
995
  toProtoMsg(message: MsgSetOrchestratorAddressesResponse): MsgSetOrchestratorAddressesResponseProtoMsg;
733
996
  registerTypeUrl(): void;
734
997
  };
998
+ /**
999
+ * MsgValsetConfirm
1000
+ * this is the message sent by the validators when they wish to submit their
1001
+ * signatures over the validator set at a given block height. A validator must
1002
+ * first call MsgSetEthAddress to set their Ethereum address to be used for
1003
+ * signing. Then someone (anyone) must make a ValsetRequest the request is
1004
+ * essentially a messaging mechanism to determine which block all validators
1005
+ * should submit signatures over. Finally validators sign the validator set,
1006
+ * powers, and Ethereum addresses of the entire validator set at the height of a
1007
+ * ValsetRequest and submit that signature with this message.
1008
+ *
1009
+ * If a sufficient number of validators (66% of voting power) (A) have set
1010
+ * Ethereum addresses and (B) submit ValsetConfirm messages with their
1011
+ * signatures it is then possible for anyone to view these signatures in the
1012
+ * chain store and submit them to Ethereum to update the validator set
1013
+ * -------------
1014
+ * @name MsgValsetConfirm
1015
+ * @package injective.peggy.v1
1016
+ * @see proto type: injective.peggy.v1.MsgValsetConfirm
1017
+ */
735
1018
  export declare const MsgValsetConfirm: {
736
1019
  typeUrl: string;
737
1020
  aminoType: string;
@@ -749,6 +1032,11 @@ export declare const MsgValsetConfirm: {
749
1032
  toProtoMsg(message: MsgValsetConfirm): MsgValsetConfirmProtoMsg;
750
1033
  registerTypeUrl(): void;
751
1034
  };
1035
+ /**
1036
+ * @name MsgValsetConfirmResponse
1037
+ * @package injective.peggy.v1
1038
+ * @see proto type: injective.peggy.v1.MsgValsetConfirmResponse
1039
+ */
752
1040
  export declare const MsgValsetConfirmResponse: {
753
1041
  typeUrl: string;
754
1042
  is(o: any): o is MsgValsetConfirmResponse;
@@ -764,6 +1052,23 @@ export declare const MsgValsetConfirmResponse: {
764
1052
  toProtoMsg(message: MsgValsetConfirmResponse): MsgValsetConfirmResponseProtoMsg;
765
1053
  registerTypeUrl(): void;
766
1054
  };
1055
+ /**
1056
+ * MsgSendToEth
1057
+ * This is the message that a user calls when they want to bridge an asset
1058
+ * it will later be removed when it is included in a batch and successfully
1059
+ * submitted tokens are removed from the users balance immediately
1060
+ * -------------
1061
+ * AMOUNT:
1062
+ * the coin to send across the bridge, note the restriction that this is a
1063
+ * single coin not a set of coins that is normal in other Cosmos messages
1064
+ * FEE:
1065
+ * the fee paid for the bridge, distinct from the fee paid to the chain to
1066
+ * actually send this message in the first place. So a successful send has
1067
+ * two layers of fees for the user
1068
+ * @name MsgSendToEth
1069
+ * @package injective.peggy.v1
1070
+ * @see proto type: injective.peggy.v1.MsgSendToEth
1071
+ */
767
1072
  export declare const MsgSendToEth: {
768
1073
  typeUrl: string;
769
1074
  aminoType: string;
@@ -781,6 +1086,11 @@ export declare const MsgSendToEth: {
781
1086
  toProtoMsg(message: MsgSendToEth): MsgSendToEthProtoMsg;
782
1087
  registerTypeUrl(): void;
783
1088
  };
1089
+ /**
1090
+ * @name MsgSendToEthResponse
1091
+ * @package injective.peggy.v1
1092
+ * @see proto type: injective.peggy.v1.MsgSendToEthResponse
1093
+ */
784
1094
  export declare const MsgSendToEthResponse: {
785
1095
  typeUrl: string;
786
1096
  is(o: any): o is MsgSendToEthResponse;
@@ -796,6 +1106,20 @@ export declare const MsgSendToEthResponse: {
796
1106
  toProtoMsg(message: MsgSendToEthResponse): MsgSendToEthResponseProtoMsg;
797
1107
  registerTypeUrl(): void;
798
1108
  };
1109
+ /**
1110
+ * MsgRequestBatch
1111
+ * this is a message anyone can send that requests a batch of transactions to
1112
+ * send across the bridge be created for whatever block height this message is
1113
+ * included in. This acts as a coordination point, the handler for this message
1114
+ * looks at the AddToOutgoingPool tx's in the store and generates a batch, also
1115
+ * available in the store tied to this message. The validators then grab this
1116
+ * batch, sign it, submit the signatures with a MsgConfirmBatch before a relayer
1117
+ * can finally submit the batch
1118
+ * -------------
1119
+ * @name MsgRequestBatch
1120
+ * @package injective.peggy.v1
1121
+ * @see proto type: injective.peggy.v1.MsgRequestBatch
1122
+ */
799
1123
  export declare const MsgRequestBatch: {
800
1124
  typeUrl: string;
801
1125
  aminoType: string;
@@ -813,6 +1137,11 @@ export declare const MsgRequestBatch: {
813
1137
  toProtoMsg(message: MsgRequestBatch): MsgRequestBatchProtoMsg;
814
1138
  registerTypeUrl(): void;
815
1139
  };
1140
+ /**
1141
+ * @name MsgRequestBatchResponse
1142
+ * @package injective.peggy.v1
1143
+ * @see proto type: injective.peggy.v1.MsgRequestBatchResponse
1144
+ */
816
1145
  export declare const MsgRequestBatchResponse: {
817
1146
  typeUrl: string;
818
1147
  is(o: any): o is MsgRequestBatchResponse;
@@ -828,6 +1157,19 @@ export declare const MsgRequestBatchResponse: {
828
1157
  toProtoMsg(message: MsgRequestBatchResponse): MsgRequestBatchResponseProtoMsg;
829
1158
  registerTypeUrl(): void;
830
1159
  };
1160
+ /**
1161
+ * MsgConfirmBatch
1162
+ * When validators observe a MsgRequestBatch they form a batch by ordering
1163
+ * transactions currently in the txqueue in order of highest to lowest fee,
1164
+ * cutting off when the batch either reaches a hardcoded maximum size (to be
1165
+ * decided, probably around 100) or when transactions stop being profitable
1166
+ * (TODO determine this without nondeterminism) This message includes the batch
1167
+ * as well as an Ethereum signature over this batch by the validator
1168
+ * -------------
1169
+ * @name MsgConfirmBatch
1170
+ * @package injective.peggy.v1
1171
+ * @see proto type: injective.peggy.v1.MsgConfirmBatch
1172
+ */
831
1173
  export declare const MsgConfirmBatch: {
832
1174
  typeUrl: string;
833
1175
  aminoType: string;
@@ -845,6 +1187,11 @@ export declare const MsgConfirmBatch: {
845
1187
  toProtoMsg(message: MsgConfirmBatch): MsgConfirmBatchProtoMsg;
846
1188
  registerTypeUrl(): void;
847
1189
  };
1190
+ /**
1191
+ * @name MsgConfirmBatchResponse
1192
+ * @package injective.peggy.v1
1193
+ * @see proto type: injective.peggy.v1.MsgConfirmBatchResponse
1194
+ */
848
1195
  export declare const MsgConfirmBatchResponse: {
849
1196
  typeUrl: string;
850
1197
  is(o: any): o is MsgConfirmBatchResponse;
@@ -860,6 +1207,16 @@ export declare const MsgConfirmBatchResponse: {
860
1207
  toProtoMsg(message: MsgConfirmBatchResponse): MsgConfirmBatchResponseProtoMsg;
861
1208
  registerTypeUrl(): void;
862
1209
  };
1210
+ /**
1211
+ * EthereumBridgeDepositClaim
1212
+ * When more than 66% of the active validator set has
1213
+ * claimed to have seen the deposit enter the ethereum blockchain coins are
1214
+ * issued to the Cosmos address in question
1215
+ * -------------
1216
+ * @name MsgDepositClaim
1217
+ * @package injective.peggy.v1
1218
+ * @see proto type: injective.peggy.v1.MsgDepositClaim
1219
+ */
863
1220
  export declare const MsgDepositClaim: {
864
1221
  typeUrl: string;
865
1222
  aminoType: string;
@@ -877,6 +1234,11 @@ export declare const MsgDepositClaim: {
877
1234
  toProtoMsg(message: MsgDepositClaim): MsgDepositClaimProtoMsg;
878
1235
  registerTypeUrl(): void;
879
1236
  };
1237
+ /**
1238
+ * @name MsgDepositClaimResponse
1239
+ * @package injective.peggy.v1
1240
+ * @see proto type: injective.peggy.v1.MsgDepositClaimResponse
1241
+ */
880
1242
  export declare const MsgDepositClaimResponse: {
881
1243
  typeUrl: string;
882
1244
  is(o: any): o is MsgDepositClaimResponse;
@@ -892,6 +1254,13 @@ export declare const MsgDepositClaimResponse: {
892
1254
  toProtoMsg(message: MsgDepositClaimResponse): MsgDepositClaimResponseProtoMsg;
893
1255
  registerTypeUrl(): void;
894
1256
  };
1257
+ /**
1258
+ * WithdrawClaim claims that a batch of withdrawal
1259
+ * operations on the bridge contract was executed.
1260
+ * @name MsgWithdrawClaim
1261
+ * @package injective.peggy.v1
1262
+ * @see proto type: injective.peggy.v1.MsgWithdrawClaim
1263
+ */
895
1264
  export declare const MsgWithdrawClaim: {
896
1265
  typeUrl: string;
897
1266
  aminoType: string;
@@ -909,6 +1278,11 @@ export declare const MsgWithdrawClaim: {
909
1278
  toProtoMsg(message: MsgWithdrawClaim): MsgWithdrawClaimProtoMsg;
910
1279
  registerTypeUrl(): void;
911
1280
  };
1281
+ /**
1282
+ * @name MsgWithdrawClaimResponse
1283
+ * @package injective.peggy.v1
1284
+ * @see proto type: injective.peggy.v1.MsgWithdrawClaimResponse
1285
+ */
912
1286
  export declare const MsgWithdrawClaimResponse: {
913
1287
  typeUrl: string;
914
1288
  is(o: any): o is MsgWithdrawClaimResponse;
@@ -924,6 +1298,14 @@ export declare const MsgWithdrawClaimResponse: {
924
1298
  toProtoMsg(message: MsgWithdrawClaimResponse): MsgWithdrawClaimResponseProtoMsg;
925
1299
  registerTypeUrl(): void;
926
1300
  };
1301
+ /**
1302
+ * ERC20DeployedClaim allows the Cosmos module
1303
+ * to learn about an ERC20 that someone deployed
1304
+ * to represent a Cosmos asset
1305
+ * @name MsgERC20DeployedClaim
1306
+ * @package injective.peggy.v1
1307
+ * @see proto type: injective.peggy.v1.MsgERC20DeployedClaim
1308
+ */
927
1309
  export declare const MsgERC20DeployedClaim: {
928
1310
  typeUrl: string;
929
1311
  aminoType: string;
@@ -941,6 +1323,11 @@ export declare const MsgERC20DeployedClaim: {
941
1323
  toProtoMsg(message: MsgERC20DeployedClaim): MsgERC20DeployedClaimProtoMsg;
942
1324
  registerTypeUrl(): void;
943
1325
  };
1326
+ /**
1327
+ * @name MsgERC20DeployedClaimResponse
1328
+ * @package injective.peggy.v1
1329
+ * @see proto type: injective.peggy.v1.MsgERC20DeployedClaimResponse
1330
+ */
944
1331
  export declare const MsgERC20DeployedClaimResponse: {
945
1332
  typeUrl: string;
946
1333
  is(o: any): o is MsgERC20DeployedClaimResponse;
@@ -956,6 +1343,14 @@ export declare const MsgERC20DeployedClaimResponse: {
956
1343
  toProtoMsg(message: MsgERC20DeployedClaimResponse): MsgERC20DeployedClaimResponseProtoMsg;
957
1344
  registerTypeUrl(): void;
958
1345
  };
1346
+ /**
1347
+ * This call allows the sender (and only the sender)
1348
+ * to cancel a given MsgSendToEth and recieve a refund
1349
+ * of the tokens
1350
+ * @name MsgCancelSendToEth
1351
+ * @package injective.peggy.v1
1352
+ * @see proto type: injective.peggy.v1.MsgCancelSendToEth
1353
+ */
959
1354
  export declare const MsgCancelSendToEth: {
960
1355
  typeUrl: string;
961
1356
  aminoType: string;
@@ -973,6 +1368,11 @@ export declare const MsgCancelSendToEth: {
973
1368
  toProtoMsg(message: MsgCancelSendToEth): MsgCancelSendToEthProtoMsg;
974
1369
  registerTypeUrl(): void;
975
1370
  };
1371
+ /**
1372
+ * @name MsgCancelSendToEthResponse
1373
+ * @package injective.peggy.v1
1374
+ * @see proto type: injective.peggy.v1.MsgCancelSendToEthResponse
1375
+ */
976
1376
  export declare const MsgCancelSendToEthResponse: {
977
1377
  typeUrl: string;
978
1378
  is(o: any): o is MsgCancelSendToEthResponse;
@@ -988,6 +1388,14 @@ export declare const MsgCancelSendToEthResponse: {
988
1388
  toProtoMsg(message: MsgCancelSendToEthResponse): MsgCancelSendToEthResponseProtoMsg;
989
1389
  registerTypeUrl(): void;
990
1390
  };
1391
+ /**
1392
+ * This call allows anyone to submit evidence that a
1393
+ * validator has signed a valset, batch, or logic call that never
1394
+ * existed. Subject contains the batch, valset, or logic call.
1395
+ * @name MsgSubmitBadSignatureEvidence
1396
+ * @package injective.peggy.v1
1397
+ * @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidence
1398
+ */
991
1399
  export declare const MsgSubmitBadSignatureEvidence: {
992
1400
  typeUrl: string;
993
1401
  aminoType: string;
@@ -1005,6 +1413,11 @@ export declare const MsgSubmitBadSignatureEvidence: {
1005
1413
  toProtoMsg(message: MsgSubmitBadSignatureEvidence): MsgSubmitBadSignatureEvidenceProtoMsg;
1006
1414
  registerTypeUrl(): void;
1007
1415
  };
1416
+ /**
1417
+ * @name MsgSubmitBadSignatureEvidenceResponse
1418
+ * @package injective.peggy.v1
1419
+ * @see proto type: injective.peggy.v1.MsgSubmitBadSignatureEvidenceResponse
1420
+ */
1008
1421
  export declare const MsgSubmitBadSignatureEvidenceResponse: {
1009
1422
  typeUrl: string;
1010
1423
  is(o: any): o is MsgSubmitBadSignatureEvidenceResponse;
@@ -1020,6 +1433,13 @@ export declare const MsgSubmitBadSignatureEvidenceResponse: {
1020
1433
  toProtoMsg(message: MsgSubmitBadSignatureEvidenceResponse): MsgSubmitBadSignatureEvidenceResponseProtoMsg;
1021
1434
  registerTypeUrl(): void;
1022
1435
  };
1436
+ /**
1437
+ * This informs the Cosmos module that a validator
1438
+ * set has been updated.
1439
+ * @name MsgValsetUpdatedClaim
1440
+ * @package injective.peggy.v1
1441
+ * @see proto type: injective.peggy.v1.MsgValsetUpdatedClaim
1442
+ */
1023
1443
  export declare const MsgValsetUpdatedClaim: {
1024
1444
  typeUrl: string;
1025
1445
  aminoType: string;
@@ -1037,6 +1457,11 @@ export declare const MsgValsetUpdatedClaim: {
1037
1457
  toProtoMsg(message: MsgValsetUpdatedClaim): MsgValsetUpdatedClaimProtoMsg;
1038
1458
  registerTypeUrl(): void;
1039
1459
  };
1460
+ /**
1461
+ * @name MsgValsetUpdatedClaimResponse
1462
+ * @package injective.peggy.v1
1463
+ * @see proto type: injective.peggy.v1.MsgValsetUpdatedClaimResponse
1464
+ */
1040
1465
  export declare const MsgValsetUpdatedClaimResponse: {
1041
1466
  typeUrl: string;
1042
1467
  is(o: any): o is MsgValsetUpdatedClaimResponse;
@@ -1052,6 +1477,11 @@ export declare const MsgValsetUpdatedClaimResponse: {
1052
1477
  toProtoMsg(message: MsgValsetUpdatedClaimResponse): MsgValsetUpdatedClaimResponseProtoMsg;
1053
1478
  registerTypeUrl(): void;
1054
1479
  };
1480
+ /**
1481
+ * @name MsgUpdateParams
1482
+ * @package injective.peggy.v1
1483
+ * @see proto type: injective.peggy.v1.MsgUpdateParams
1484
+ */
1055
1485
  export declare const MsgUpdateParams: {
1056
1486
  typeUrl: string;
1057
1487
  aminoType: string;
@@ -1069,6 +1499,11 @@ export declare const MsgUpdateParams: {
1069
1499
  toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
1070
1500
  registerTypeUrl(): void;
1071
1501
  };
1502
+ /**
1503
+ * @name MsgUpdateParamsResponse
1504
+ * @package injective.peggy.v1
1505
+ * @see proto type: injective.peggy.v1.MsgUpdateParamsResponse
1506
+ */
1072
1507
  export declare const MsgUpdateParamsResponse: {
1073
1508
  typeUrl: string;
1074
1509
  is(o: any): o is MsgUpdateParamsResponse;
@@ -1084,6 +1519,13 @@ export declare const MsgUpdateParamsResponse: {
1084
1519
  toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
1085
1520
  registerTypeUrl(): void;
1086
1521
  };
1522
+ /**
1523
+ * MsgBlacklistEthereumAddresses defines the message used to add Ethereum
1524
+ * addresses to peggy blacklist.
1525
+ * @name MsgBlacklistEthereumAddresses
1526
+ * @package injective.peggy.v1
1527
+ * @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddresses
1528
+ */
1087
1529
  export declare const MsgBlacklistEthereumAddresses: {
1088
1530
  typeUrl: string;
1089
1531
  aminoType: string;
@@ -1101,6 +1543,13 @@ export declare const MsgBlacklistEthereumAddresses: {
1101
1543
  toProtoMsg(message: MsgBlacklistEthereumAddresses): MsgBlacklistEthereumAddressesProtoMsg;
1102
1544
  registerTypeUrl(): void;
1103
1545
  };
1546
+ /**
1547
+ * MsgBlacklistEthereumAddressesResponse defines the
1548
+ * MsgBlacklistEthereumAddresses response type.
1549
+ * @name MsgBlacklistEthereumAddressesResponse
1550
+ * @package injective.peggy.v1
1551
+ * @see proto type: injective.peggy.v1.MsgBlacklistEthereumAddressesResponse
1552
+ */
1104
1553
  export declare const MsgBlacklistEthereumAddressesResponse: {
1105
1554
  typeUrl: string;
1106
1555
  is(o: any): o is MsgBlacklistEthereumAddressesResponse;
@@ -1116,6 +1565,13 @@ export declare const MsgBlacklistEthereumAddressesResponse: {
1116
1565
  toProtoMsg(message: MsgBlacklistEthereumAddressesResponse): MsgBlacklistEthereumAddressesResponseProtoMsg;
1117
1566
  registerTypeUrl(): void;
1118
1567
  };
1568
+ /**
1569
+ * MsgRevokeEthereumBlacklist defines the message used to remove Ethereum
1570
+ * addresses from peggy blacklist.
1571
+ * @name MsgRevokeEthereumBlacklist
1572
+ * @package injective.peggy.v1
1573
+ * @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklist
1574
+ */
1119
1575
  export declare const MsgRevokeEthereumBlacklist: {
1120
1576
  typeUrl: string;
1121
1577
  aminoType: string;
@@ -1133,6 +1589,13 @@ export declare const MsgRevokeEthereumBlacklist: {
1133
1589
  toProtoMsg(message: MsgRevokeEthereumBlacklist): MsgRevokeEthereumBlacklistProtoMsg;
1134
1590
  registerTypeUrl(): void;
1135
1591
  };
1592
+ /**
1593
+ * MsgRevokeEthereumBlacklistResponse defines the MsgRevokeEthereumBlacklist
1594
+ * response type.
1595
+ * @name MsgRevokeEthereumBlacklistResponse
1596
+ * @package injective.peggy.v1
1597
+ * @see proto type: injective.peggy.v1.MsgRevokeEthereumBlacklistResponse
1598
+ */
1136
1599
  export declare const MsgRevokeEthereumBlacklistResponse: {
1137
1600
  typeUrl: string;
1138
1601
  is(o: any): o is MsgRevokeEthereumBlacklistResponse;