@xpla/xplajs 1.7.0-beta.0

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 (727) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +32 -0
  3. package/package.json +32 -0
  4. package/src/amino/amino.d.ts +1 -0
  5. package/src/amino/amino.js +2 -0
  6. package/src/amino/amino.ts +1 -0
  7. package/src/binary.d.ts +130 -0
  8. package/src/binary.js +370 -0
  9. package/src/binary.ts +534 -0
  10. package/src/cosmos/app/runtime/v1alpha1/module.ts +423 -0
  11. package/src/cosmos/app/runtime/v2/module.ts +589 -0
  12. package/src/cosmos/app/v1alpha1/config.ts +422 -0
  13. package/src/cosmos/app/v1alpha1/module.ts +461 -0
  14. package/src/cosmos/app/v1alpha1/query.rpc.Query.ts +30 -0
  15. package/src/cosmos/app/v1alpha1/query.rpc.func.ts +9 -0
  16. package/src/cosmos/app/v1alpha1/query.ts +177 -0
  17. package/src/cosmos/auth/module/v1/module.ts +253 -0
  18. package/src/cosmos/auth/v1beta1/accounts.ts +226 -0
  19. package/src/cosmos/auth/v1beta1/auth.d.ts +177 -0
  20. package/src/cosmos/auth/v1beta1/auth.js +445 -0
  21. package/src/cosmos/auth/v1beta1/auth.ts +550 -0
  22. package/src/cosmos/auth/v1beta1/genesis.ts +119 -0
  23. package/src/cosmos/auth/v1beta1/query.d.ts +810 -0
  24. package/src/cosmos/auth/v1beta1/query.js +1561 -0
  25. package/src/cosmos/auth/v1beta1/query.lcd.ts +94 -0
  26. package/src/cosmos/auth/v1beta1/query.rpc.Query.ts +179 -0
  27. package/src/cosmos/auth/v1beta1/query.rpc.func.d.ts +12 -0
  28. package/src/cosmos/auth/v1beta1/query.rpc.func.js +85 -0
  29. package/src/cosmos/auth/v1beta1/query.rpc.func.ts +72 -0
  30. package/src/cosmos/auth/v1beta1/query.ts +2034 -0
  31. package/src/cosmos/auth/v1beta1/tx.amino.ts +8 -0
  32. package/src/cosmos/auth/v1beta1/tx.registry.ts +3 -0
  33. package/src/cosmos/auth/v1beta1/tx.rpc.func.ts +9 -0
  34. package/src/cosmos/auth/v1beta1/tx.rpc.msg.ts +31 -0
  35. package/src/cosmos/auth/v1beta1/tx.ts +219 -0
  36. package/src/cosmos/authz/module/v1/module.ts +80 -0
  37. package/src/cosmos/authz/v1beta1/authz.d.ts +177 -0
  38. package/src/cosmos/authz/v1beta1/authz.js +371 -0
  39. package/src/cosmos/authz/v1beta1/authz.ts +481 -0
  40. package/src/cosmos/authz/v1beta1/event.ts +259 -0
  41. package/src/cosmos/authz/v1beta1/genesis.ts +100 -0
  42. package/src/cosmos/authz/v1beta1/query.lcd.ts +59 -0
  43. package/src/cosmos/authz/v1beta1/query.rpc.Query.ts +64 -0
  44. package/src/cosmos/authz/v1beta1/query.rpc.func.ts +23 -0
  45. package/src/cosmos/authz/v1beta1/query.ts +707 -0
  46. package/src/cosmos/authz/v1beta1/tx.amino.ts +18 -0
  47. package/src/cosmos/authz/v1beta1/tx.d.ts +240 -0
  48. package/src/cosmos/authz/v1beta1/tx.js +516 -0
  49. package/src/cosmos/authz/v1beta1/tx.registry.ts +3 -0
  50. package/src/cosmos/authz/v1beta1/tx.rpc.func.d.ts +5 -0
  51. package/src/cosmos/authz/v1beta1/tx.rpc.func.js +27 -0
  52. package/src/cosmos/authz/v1beta1/tx.rpc.func.ts +21 -0
  53. package/src/cosmos/authz/v1beta1/tx.rpc.msg.ts +57 -0
  54. package/src/cosmos/authz/v1beta1/tx.ts +647 -0
  55. package/src/cosmos/autocli/v1/options.ts +1145 -0
  56. package/src/cosmos/autocli/v1/query.rpc.Query.ts +31 -0
  57. package/src/cosmos/autocli/v1/query.rpc.func.ts +9 -0
  58. package/src/cosmos/autocli/v1/query.ts +288 -0
  59. package/src/cosmos/bank/module/v1/module.ts +153 -0
  60. package/src/cosmos/bank/v1beta1/authz.ts +138 -0
  61. package/src/cosmos/bank/v1beta1/bank.d.ts +371 -0
  62. package/src/cosmos/bank/v1beta1/bank.js +726 -0
  63. package/src/cosmos/bank/v1beta1/bank.ts +974 -0
  64. package/src/cosmos/bank/v1beta1/genesis.ts +307 -0
  65. package/src/cosmos/bank/v1beta1/query.d.ts +1159 -0
  66. package/src/cosmos/bank/v1beta1/query.js +2317 -0
  67. package/src/cosmos/bank/v1beta1/query.lcd.ts +194 -0
  68. package/src/cosmos/bank/v1beta1/query.rpc.Query.ts +258 -0
  69. package/src/cosmos/bank/v1beta1/query.rpc.func.d.ts +15 -0
  70. package/src/cosmos/bank/v1beta1/query.rpc.func.js +109 -0
  71. package/src/cosmos/bank/v1beta1/query.rpc.func.ts +93 -0
  72. package/src/cosmos/bank/v1beta1/query.ts +3027 -0
  73. package/src/cosmos/bank/v1beta1/tx.amino.ts +23 -0
  74. package/src/cosmos/bank/v1beta1/tx.d.ts +342 -0
  75. package/src/cosmos/bank/v1beta1/tx.js +666 -0
  76. package/src/cosmos/bank/v1beta1/tx.registry.ts +3 -0
  77. package/src/cosmos/bank/v1beta1/tx.rpc.func.d.ts +6 -0
  78. package/src/cosmos/bank/v1beta1/tx.rpc.func.js +34 -0
  79. package/src/cosmos/bank/v1beta1/tx.rpc.func.ts +27 -0
  80. package/src/cosmos/bank/v1beta1/tx.rpc.msg.ts +67 -0
  81. package/src/cosmos/bank/v1beta1/tx.ts +861 -0
  82. package/src/cosmos/base/abci/v1beta1/abci.d.ts +599 -0
  83. package/src/cosmos/base/abci/v1beta1/abci.js +1293 -0
  84. package/src/cosmos/base/abci/v1beta1/abci.ts +1698 -0
  85. package/src/cosmos/base/grpc/v2/service.rpc.Service.ts +41 -0
  86. package/src/cosmos/base/grpc/v2/service.rpc.func.ts +16 -0
  87. package/src/cosmos/base/grpc/v2/service.ts +473 -0
  88. package/src/cosmos/base/node/v1beta1/query.lcd.ts +22 -0
  89. package/src/cosmos/base/node/v1beta1/query.rpc.Service.ts +41 -0
  90. package/src/cosmos/base/node/v1beta1/query.rpc.func.ts +16 -0
  91. package/src/cosmos/base/node/v1beta1/query.ts +454 -0
  92. package/src/cosmos/base/query/v1beta1/pagination.d.ts +176 -0
  93. package/src/cosmos/base/query/v1beta1/pagination.js +222 -0
  94. package/src/cosmos/base/query/v1beta1/pagination.ts +361 -0
  95. package/src/cosmos/base/reflection/v1beta1/reflection.rpc.func.ts +16 -0
  96. package/src/cosmos/base/reflection/v1beta1/reflection.ts +382 -0
  97. package/src/cosmos/base/reflection/v2alpha1/reflection.rpc.func.ts +44 -0
  98. package/src/cosmos/base/reflection/v2alpha1/reflection.ts +2727 -0
  99. package/src/cosmos/base/tendermint/v1beta1/query.lcd.ts +81 -0
  100. package/src/cosmos/base/tendermint/v1beta1/query.rpc.Service.ts +108 -0
  101. package/src/cosmos/base/tendermint/v1beta1/query.rpc.func.ts +51 -0
  102. package/src/cosmos/base/tendermint/v1beta1/query.ts +2302 -0
  103. package/src/cosmos/base/tendermint/v1beta1/types.ts +455 -0
  104. package/src/cosmos/base/v1beta1/coin.d.ts +166 -0
  105. package/src/cosmos/base/v1beta1/coin.js +341 -0
  106. package/src/cosmos/base/v1beta1/coin.ts +439 -0
  107. package/src/cosmos/circuit/module/v1/module.ts +99 -0
  108. package/src/cosmos/circuit/v1/query.lcd.ts +36 -0
  109. package/src/cosmos/circuit/v1/query.rpc.Query.ts +54 -0
  110. package/src/cosmos/circuit/v1/query.rpc.func.ts +23 -0
  111. package/src/cosmos/circuit/v1/query.ts +574 -0
  112. package/src/cosmos/circuit/v1/tx.amino.ts +18 -0
  113. package/src/cosmos/circuit/v1/tx.registry.ts +3 -0
  114. package/src/cosmos/circuit/v1/tx.rpc.func.ts +21 -0
  115. package/src/cosmos/circuit/v1/tx.rpc.msg.ts +47 -0
  116. package/src/cosmos/circuit/v1/tx.ts +676 -0
  117. package/src/cosmos/circuit/v1/types.ts +413 -0
  118. package/src/cosmos/consensus/module/v1/module.ts +99 -0
  119. package/src/cosmos/consensus/v1/query.lcd.ts +17 -0
  120. package/src/cosmos/consensus/v1/query.rpc.Query.ts +30 -0
  121. package/src/cosmos/consensus/v1/query.rpc.func.ts +9 -0
  122. package/src/cosmos/consensus/v1/query.ts +185 -0
  123. package/src/cosmos/consensus/v1/tx.amino.ts +8 -0
  124. package/src/cosmos/consensus/v1/tx.registry.ts +3 -0
  125. package/src/cosmos/consensus/v1/tx.rpc.func.ts +9 -0
  126. package/src/cosmos/consensus/v1/tx.rpc.msg.ts +31 -0
  127. package/src/cosmos/consensus/v1/tx.ts +255 -0
  128. package/src/cosmos/crisis/module/v1/module.ts +115 -0
  129. package/src/cosmos/crisis/v1beta1/genesis.ts +106 -0
  130. package/src/cosmos/crisis/v1beta1/tx.amino.ts +13 -0
  131. package/src/cosmos/crisis/v1beta1/tx.registry.ts +3 -0
  132. package/src/cosmos/crisis/v1beta1/tx.rpc.func.ts +15 -0
  133. package/src/cosmos/crisis/v1beta1/tx.rpc.msg.ts +39 -0
  134. package/src/cosmos/crisis/v1beta1/tx.ts +416 -0
  135. package/src/cosmos/crypto/ed25519/keys.d.ts +84 -0
  136. package/src/cosmos/crypto/ed25519/keys.js +162 -0
  137. package/src/cosmos/crypto/ed25519/keys.ts +209 -0
  138. package/src/cosmos/crypto/hd/v1/hd.ts +169 -0
  139. package/src/cosmos/crypto/keyring/v1/record.ts +529 -0
  140. package/src/cosmos/crypto/multisig/keys.ts +122 -0
  141. package/src/cosmos/crypto/multisig/v1beta1/multisig.d.ts +86 -0
  142. package/src/cosmos/crypto/multisig/v1beta1/multisig.js +177 -0
  143. package/src/cosmos/crypto/multisig/v1beta1/multisig.ts +225 -0
  144. package/src/cosmos/crypto/secp256k1/keys.d.ts +78 -0
  145. package/src/cosmos/crypto/secp256k1/keys.js +162 -0
  146. package/src/cosmos/crypto/secp256k1/keys.ts +203 -0
  147. package/src/cosmos/crypto/secp256r1/keys.d.ts +76 -0
  148. package/src/cosmos/crypto/secp256r1/keys.js +162 -0
  149. package/src/cosmos/crypto/secp256r1/keys.ts +201 -0
  150. package/src/cosmos/distribution/module/v1/module.ts +113 -0
  151. package/src/cosmos/distribution/v1beta1/distribution.d.ts +541 -0
  152. package/src/cosmos/distribution/v1beta1/distribution.js +1158 -0
  153. package/src/cosmos/distribution/v1beta1/distribution.ts +1494 -0
  154. package/src/cosmos/distribution/v1beta1/genesis.ts +1129 -0
  155. package/src/cosmos/distribution/v1beta1/query.lcd.ts +76 -0
  156. package/src/cosmos/distribution/v1beta1/query.rpc.Query.ts +133 -0
  157. package/src/cosmos/distribution/v1beta1/query.rpc.func.ts +72 -0
  158. package/src/cosmos/distribution/v1beta1/query.ts +2126 -0
  159. package/src/cosmos/distribution/v1beta1/tx.amino.ts +38 -0
  160. package/src/cosmos/distribution/v1beta1/tx.d.ts +578 -0
  161. package/src/cosmos/distribution/v1beta1/tx.js +1145 -0
  162. package/src/cosmos/distribution/v1beta1/tx.registry.ts +3 -0
  163. package/src/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +9 -0
  164. package/src/cosmos/distribution/v1beta1/tx.rpc.func.js +55 -0
  165. package/src/cosmos/distribution/v1beta1/tx.rpc.func.ts +45 -0
  166. package/src/cosmos/distribution/v1beta1/tx.rpc.msg.ts +115 -0
  167. package/src/cosmos/distribution/v1beta1/tx.ts +1478 -0
  168. package/src/cosmos/evidence/module/v1/module.ts +80 -0
  169. package/src/cosmos/evidence/v1beta1/evidence.ts +154 -0
  170. package/src/cosmos/evidence/v1beta1/genesis.ts +102 -0
  171. package/src/cosmos/evidence/v1beta1/query.lcd.ts +37 -0
  172. package/src/cosmos/evidence/v1beta1/query.rpc.Query.ts +43 -0
  173. package/src/cosmos/evidence/v1beta1/query.rpc.func.ts +16 -0
  174. package/src/cosmos/evidence/v1beta1/query.ts +451 -0
  175. package/src/cosmos/evidence/v1beta1/tx.amino.ts +8 -0
  176. package/src/cosmos/evidence/v1beta1/tx.registry.ts +3 -0
  177. package/src/cosmos/evidence/v1beta1/tx.rpc.func.ts +9 -0
  178. package/src/cosmos/evidence/v1beta1/tx.rpc.msg.ts +27 -0
  179. package/src/cosmos/evidence/v1beta1/tx.ts +221 -0
  180. package/src/cosmos/feegrant/module/v1/module.ts +80 -0
  181. package/src/cosmos/feegrant/v1beta1/feegrant.ts +573 -0
  182. package/src/cosmos/feegrant/v1beta1/genesis.ts +100 -0
  183. package/src/cosmos/feegrant/v1beta1/query.lcd.ts +42 -0
  184. package/src/cosmos/feegrant/v1beta1/query.rpc.Query.ts +58 -0
  185. package/src/cosmos/feegrant/v1beta1/query.rpc.func.ts +23 -0
  186. package/src/cosmos/feegrant/v1beta1/query.ts +677 -0
  187. package/src/cosmos/feegrant/v1beta1/tx.amino.ts +18 -0
  188. package/src/cosmos/feegrant/v1beta1/tx.d.ts +232 -0
  189. package/src/cosmos/feegrant/v1beta1/tx.js +471 -0
  190. package/src/cosmos/feegrant/v1beta1/tx.registry.ts +3 -0
  191. package/src/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +5 -0
  192. package/src/cosmos/feegrant/v1beta1/tx.rpc.func.js +27 -0
  193. package/src/cosmos/feegrant/v1beta1/tx.rpc.func.ts +21 -0
  194. package/src/cosmos/feegrant/v1beta1/tx.rpc.msg.ts +53 -0
  195. package/src/cosmos/feegrant/v1beta1/tx.ts +597 -0
  196. package/src/cosmos/genutil/module/v1/module.ts +80 -0
  197. package/src/cosmos/genutil/v1beta1/genesis.ts +101 -0
  198. package/src/cosmos/gov/module/v1/module.ts +121 -0
  199. package/src/cosmos/gov/v1/genesis.ts +280 -0
  200. package/src/cosmos/gov/v1/gov.d.ts +696 -0
  201. package/src/cosmos/gov/v1/gov.js +1363 -0
  202. package/src/cosmos/gov/v1/gov.ts +1843 -0
  203. package/src/cosmos/gov/v1/query.lcd.ts +85 -0
  204. package/src/cosmos/gov/v1/query.rpc.Query.ts +118 -0
  205. package/src/cosmos/gov/v1/query.rpc.func.ts +65 -0
  206. package/src/cosmos/gov/v1/query.ts +1970 -0
  207. package/src/cosmos/gov/v1/tx.amino.ts +38 -0
  208. package/src/cosmos/gov/v1/tx.d.ts +624 -0
  209. package/src/cosmos/gov/v1/tx.js +1277 -0
  210. package/src/cosmos/gov/v1/tx.registry.ts +3 -0
  211. package/src/cosmos/gov/v1/tx.rpc.func.d.ts +9 -0
  212. package/src/cosmos/gov/v1/tx.rpc.func.js +55 -0
  213. package/src/cosmos/gov/v1/tx.rpc.func.ts +45 -0
  214. package/src/cosmos/gov/v1/tx.rpc.msg.ts +89 -0
  215. package/src/cosmos/gov/v1/tx.ts +1657 -0
  216. package/src/cosmos/gov/v1beta1/genesis.ts +202 -0
  217. package/src/cosmos/gov/v1beta1/gov.d.ts +522 -0
  218. package/src/cosmos/gov/v1beta1/gov.js +1114 -0
  219. package/src/cosmos/gov/v1beta1/gov.ts +1425 -0
  220. package/src/cosmos/gov/v1beta1/query.d.ts +606 -0
  221. package/src/cosmos/gov/v1beta1/query.js +1409 -0
  222. package/src/cosmos/gov/v1beta1/query.lcd.ts +80 -0
  223. package/src/cosmos/gov/v1beta1/query.rpc.Query.ts +107 -0
  224. package/src/cosmos/gov/v1beta1/query.rpc.func.d.ts +10 -0
  225. package/src/cosmos/gov/v1beta1/query.rpc.func.js +69 -0
  226. package/src/cosmos/gov/v1beta1/query.rpc.func.ts +58 -0
  227. package/src/cosmos/gov/v1beta1/query.ts +1749 -0
  228. package/src/cosmos/gov/v1beta1/tx.amino.ts +23 -0
  229. package/src/cosmos/gov/v1beta1/tx.d.ts +325 -0
  230. package/src/cosmos/gov/v1beta1/tx.js +699 -0
  231. package/src/cosmos/gov/v1beta1/tx.registry.ts +3 -0
  232. package/src/cosmos/gov/v1beta1/tx.rpc.func.d.ts +6 -0
  233. package/src/cosmos/gov/v1beta1/tx.rpc.func.js +34 -0
  234. package/src/cosmos/gov/v1beta1/tx.rpc.func.ts +27 -0
  235. package/src/cosmos/gov/v1beta1/tx.rpc.msg.ts +53 -0
  236. package/src/cosmos/gov/v1beta1/tx.ts +881 -0
  237. package/src/cosmos/group/module/v1/module.ts +128 -0
  238. package/src/cosmos/group/v1/events.ts +1044 -0
  239. package/src/cosmos/group/v1/genesis.ts +240 -0
  240. package/src/cosmos/group/v1/query.lcd.ts +145 -0
  241. package/src/cosmos/group/v1/query.rpc.Query.ts +191 -0
  242. package/src/cosmos/group/v1/query.rpc.func.ts +100 -0
  243. package/src/cosmos/group/v1/query.ts +3015 -0
  244. package/src/cosmos/group/v1/tx.amino.ts +73 -0
  245. package/src/cosmos/group/v1/tx.d.ts +1140 -0
  246. package/src/cosmos/group/v1/tx.js +2567 -0
  247. package/src/cosmos/group/v1/tx.registry.ts +3 -0
  248. package/src/cosmos/group/v1/tx.rpc.func.d.ts +16 -0
  249. package/src/cosmos/group/v1/tx.rpc.func.js +104 -0
  250. package/src/cosmos/group/v1/tx.rpc.func.ts +87 -0
  251. package/src/cosmos/group/v1/tx.rpc.msg.ts +127 -0
  252. package/src/cosmos/group/v1/tx.ts +3207 -0
  253. package/src/cosmos/group/v1/types.d.ts +799 -0
  254. package/src/cosmos/group/v1/types.js +1542 -0
  255. package/src/cosmos/group/v1/types.ts +2081 -0
  256. package/src/cosmos/ics23/v1/proofs.d.ts +730 -0
  257. package/src/cosmos/ics23/v1/proofs.js +1605 -0
  258. package/src/cosmos/ics23/v1/proofs.ts +2060 -0
  259. package/src/cosmos/mint/module/v1/module.ts +113 -0
  260. package/src/cosmos/mint/v1beta1/genesis.ts +116 -0
  261. package/src/cosmos/mint/v1beta1/mint.ts +291 -0
  262. package/src/cosmos/mint/v1beta1/query.lcd.ts +27 -0
  263. package/src/cosmos/mint/v1beta1/query.rpc.Query.ts +52 -0
  264. package/src/cosmos/mint/v1beta1/query.rpc.func.ts +23 -0
  265. package/src/cosmos/mint/v1beta1/query.ts +541 -0
  266. package/src/cosmos/mint/v1beta1/tx.amino.ts +8 -0
  267. package/src/cosmos/mint/v1beta1/tx.registry.ts +3 -0
  268. package/src/cosmos/mint/v1beta1/tx.rpc.func.ts +9 -0
  269. package/src/cosmos/mint/v1beta1/tx.rpc.msg.ts +31 -0
  270. package/src/cosmos/mint/v1beta1/tx.ts +219 -0
  271. package/src/cosmos/msg/textual/v1/textual.ts +1 -0
  272. package/src/cosmos/msg/v1/msg.d.ts +1 -0
  273. package/src/cosmos/msg/v1/msg.js +2 -0
  274. package/src/cosmos/msg/v1/msg.ts +1 -0
  275. package/src/cosmos/nft/module/v1/module.ts +80 -0
  276. package/src/cosmos/nft/v1beta1/event.ts +403 -0
  277. package/src/cosmos/nft/v1beta1/genesis.ts +234 -0
  278. package/src/cosmos/nft/v1beta1/nft.ts +356 -0
  279. package/src/cosmos/nft/v1beta1/query.lcd.ts +69 -0
  280. package/src/cosmos/nft/v1beta1/query.rpc.Query.ts +102 -0
  281. package/src/cosmos/nft/v1beta1/query.rpc.func.ts +51 -0
  282. package/src/cosmos/nft/v1beta1/query.ts +1465 -0
  283. package/src/cosmos/nft/v1beta1/tx.amino.ts +8 -0
  284. package/src/cosmos/nft/v1beta1/tx.registry.ts +3 -0
  285. package/src/cosmos/nft/v1beta1/tx.rpc.func.ts +9 -0
  286. package/src/cosmos/nft/v1beta1/tx.rpc.msg.ts +23 -0
  287. package/src/cosmos/nft/v1beta1/tx.ts +224 -0
  288. package/src/cosmos/orm/module/v1alpha1/module.ts +88 -0
  289. package/src/cosmos/orm/query/v1alpha1/query.rpc.Query.ts +41 -0
  290. package/src/cosmos/orm/query/v1alpha1/query.rpc.func.ts +16 -0
  291. package/src/cosmos/orm/query/v1alpha1/query.ts +993 -0
  292. package/src/cosmos/orm/v1/orm.ts +589 -0
  293. package/src/cosmos/orm/v1alpha1/schema.ts +325 -0
  294. package/src/cosmos/params/module/v1/module.ts +80 -0
  295. package/src/cosmos/params/v1beta1/params.ts +255 -0
  296. package/src/cosmos/params/v1beta1/query.lcd.ts +34 -0
  297. package/src/cosmos/params/v1beta1/query.rpc.Query.ts +51 -0
  298. package/src/cosmos/params/v1beta1/query.rpc.func.ts +16 -0
  299. package/src/cosmos/params/v1beta1/query.ts +525 -0
  300. package/src/cosmos/query/v1/query.d.ts +1 -0
  301. package/src/cosmos/query/v1/query.js +2 -0
  302. package/src/cosmos/query/v1/query.ts +1 -0
  303. package/src/cosmos/reflection/v1/reflection.rpc.func.ts +9 -0
  304. package/src/cosmos/reflection/v1/reflection.ts +179 -0
  305. package/src/cosmos/rpc.query.ts +29 -0
  306. package/src/cosmos/rpc.tx.ts +34 -0
  307. package/src/cosmos/slashing/module/v1/module.ts +99 -0
  308. package/src/cosmos/slashing/v1beta1/genesis.ts +492 -0
  309. package/src/cosmos/slashing/v1beta1/query.lcd.ts +36 -0
  310. package/src/cosmos/slashing/v1beta1/query.rpc.Query.ts +54 -0
  311. package/src/cosmos/slashing/v1beta1/query.rpc.func.ts +23 -0
  312. package/src/cosmos/slashing/v1beta1/query.ts +598 -0
  313. package/src/cosmos/slashing/v1beta1/slashing.ts +357 -0
  314. package/src/cosmos/slashing/v1beta1/tx.amino.ts +13 -0
  315. package/src/cosmos/slashing/v1beta1/tx.registry.ts +3 -0
  316. package/src/cosmos/slashing/v1beta1/tx.rpc.func.ts +15 -0
  317. package/src/cosmos/slashing/v1beta1/tx.rpc.msg.ts +45 -0
  318. package/src/cosmos/slashing/v1beta1/tx.ts +390 -0
  319. package/src/cosmos/staking/module/v1/module.ts +157 -0
  320. package/src/cosmos/staking/v1beta1/authz.ts +323 -0
  321. package/src/cosmos/staking/v1beta1/genesis.ts +346 -0
  322. package/src/cosmos/staking/v1beta1/query.d.ts +1124 -0
  323. package/src/cosmos/staking/v1beta1/query.js +2414 -0
  324. package/src/cosmos/staking/v1beta1/query.lcd.ts +159 -0
  325. package/src/cosmos/staking/v1beta1/query.rpc.Query.ts +241 -0
  326. package/src/cosmos/staking/v1beta1/query.rpc.func.d.ts +16 -0
  327. package/src/cosmos/staking/v1beta1/query.rpc.func.js +117 -0
  328. package/src/cosmos/staking/v1beta1/query.rpc.func.ts +100 -0
  329. package/src/cosmos/staking/v1beta1/query.ts +3073 -0
  330. package/src/cosmos/staking/v1beta1/staking.d.ts +1024 -0
  331. package/src/cosmos/staking/v1beta1/staking.js +2371 -0
  332. package/src/cosmos/staking/v1beta1/staking.ts +3005 -0
  333. package/src/cosmos/staking/v1beta1/tx.amino.ts +38 -0
  334. package/src/cosmos/staking/v1beta1/tx.d.ts +590 -0
  335. package/src/cosmos/staking/v1beta1/tx.js +1290 -0
  336. package/src/cosmos/staking/v1beta1/tx.registry.ts +3 -0
  337. package/src/cosmos/staking/v1beta1/tx.rpc.func.d.ts +9 -0
  338. package/src/cosmos/staking/v1beta1/tx.rpc.func.js +55 -0
  339. package/src/cosmos/staking/v1beta1/tx.rpc.func.ts +45 -0
  340. package/src/cosmos/staking/v1beta1/tx.rpc.msg.ts +97 -0
  341. package/src/cosmos/staking/v1beta1/tx.ts +1638 -0
  342. package/src/cosmos/store/internal/kv/v1beta1/kv.ts +207 -0
  343. package/src/cosmos/store/snapshots/v1/snapshot.ts +863 -0
  344. package/src/cosmos/store/snapshots/v2/snapshot.ts +823 -0
  345. package/src/cosmos/store/streaming/abci/grpc.ts +393 -0
  346. package/src/cosmos/store/v1beta1/commit_info.ts +362 -0
  347. package/src/cosmos/store/v1beta1/listening.ts +286 -0
  348. package/src/cosmos/streaming/v1/grpc.ts +985 -0
  349. package/src/cosmos/tx/config/v1/config.ts +127 -0
  350. package/src/cosmos/tx/signing/v1beta1/signing.d.ts +270 -0
  351. package/src/cosmos/tx/signing/v1beta1/signing.js +570 -0
  352. package/src/cosmos/tx/signing/v1beta1/signing.ts +688 -0
  353. package/src/cosmos/tx/v1beta1/service.d.ts +916 -0
  354. package/src/cosmos/tx/v1beta1/service.js +1729 -0
  355. package/src/cosmos/tx/v1beta1/service.lcd.ts +57 -0
  356. package/src/cosmos/tx/v1beta1/service.rpc.Service.ts +148 -0
  357. package/src/cosmos/tx/v1beta1/service.rpc.func.d.ts +11 -0
  358. package/src/cosmos/tx/v1beta1/service.rpc.func.js +77 -0
  359. package/src/cosmos/tx/v1beta1/service.rpc.func.ts +65 -0
  360. package/src/cosmos/tx/v1beta1/service.ts +2294 -0
  361. package/src/cosmos/tx/v1beta1/tx.d.ts +856 -0
  362. package/src/cosmos/tx/v1beta1/tx.js +1398 -0
  363. package/src/cosmos/tx/v1beta1/tx.ts +2029 -0
  364. package/src/cosmos/upgrade/module/v1/module.ts +99 -0
  365. package/src/cosmos/upgrade/v1beta1/query.lcd.ts +52 -0
  366. package/src/cosmos/upgrade/v1beta1/query.rpc.Query.ts +98 -0
  367. package/src/cosmos/upgrade/v1beta1/query.rpc.func.ts +37 -0
  368. package/src/cosmos/upgrade/v1beta1/query.ts +1016 -0
  369. package/src/cosmos/upgrade/v1beta1/tx.amino.ts +13 -0
  370. package/src/cosmos/upgrade/v1beta1/tx.registry.ts +3 -0
  371. package/src/cosmos/upgrade/v1beta1/tx.rpc.func.ts +15 -0
  372. package/src/cosmos/upgrade/v1beta1/tx.rpc.msg.ts +45 -0
  373. package/src/cosmos/upgrade/v1beta1/tx.ts +398 -0
  374. package/src/cosmos/upgrade/v1beta1/upgrade.d.ts +245 -0
  375. package/src/cosmos/upgrade/v1beta1/upgrade.js +416 -0
  376. package/src/cosmos/upgrade/v1beta1/upgrade.ts +591 -0
  377. package/src/cosmos/validate/module/v1/module.ts +80 -0
  378. package/src/cosmos/vesting/module/v1/module.ts +80 -0
  379. package/src/cosmos/vesting/v1beta1/tx.amino.ts +18 -0
  380. package/src/cosmos/vesting/v1beta1/tx.d.ts +256 -0
  381. package/src/cosmos/vesting/v1beta1/tx.js +553 -0
  382. package/src/cosmos/vesting/v1beta1/tx.registry.ts +3 -0
  383. package/src/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +5 -0
  384. package/src/cosmos/vesting/v1beta1/tx.rpc.func.js +27 -0
  385. package/src/cosmos/vesting/v1beta1/tx.rpc.func.ts +21 -0
  386. package/src/cosmos/vesting/v1beta1/tx.rpc.msg.ts +59 -0
  387. package/src/cosmos/vesting/v1beta1/tx.ts +698 -0
  388. package/src/cosmos/vesting/v1beta1/vesting.d.ts +256 -0
  389. package/src/cosmos/vesting/v1beta1/vesting.js +586 -0
  390. package/src/cosmos/vesting/v1beta1/vesting.ts +735 -0
  391. package/src/cosmos_proto/cosmos.d.ts +153 -0
  392. package/src/cosmos_proto/cosmos.js +234 -0
  393. package/src/cosmos_proto/cosmos.ts +341 -0
  394. package/src/cosmwasm/wasm/v1/authz.ts +1231 -0
  395. package/src/cosmwasm/wasm/v1/genesis.ts +532 -0
  396. package/src/cosmwasm/wasm/v1/ibc.ts +355 -0
  397. package/src/cosmwasm/wasm/v1/proposal_legacy.ts +2432 -0
  398. package/src/cosmwasm/wasm/v1/query.lcd.ts +108 -0
  399. package/src/cosmwasm/wasm/v1/query.rpc.Query.ts +144 -0
  400. package/src/cosmwasm/wasm/v1/query.rpc.func.ts +79 -0
  401. package/src/cosmwasm/wasm/v1/query.ts +2560 -0
  402. package/src/cosmwasm/wasm/v1/tx.amino.ts +88 -0
  403. package/src/cosmwasm/wasm/v1/tx.registry.ts +3 -0
  404. package/src/cosmwasm/wasm/v1/tx.rpc.func.ts +105 -0
  405. package/src/cosmwasm/wasm/v1/tx.rpc.msg.ts +225 -0
  406. package/src/cosmwasm/wasm/v1/tx.ts +4191 -0
  407. package/src/cosmwasm/wasm/v1/types.ts +1120 -0
  408. package/src/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +80 -0
  409. package/src/ethermint/crypto/v1/ethsecp256k1/keys.js +146 -0
  410. package/src/ethermint/crypto/v1/ethsecp256k1/keys.ts +193 -0
  411. package/src/ethermint/evm/v1/events.d.ts +162 -0
  412. package/src/ethermint/evm/v1/events.js +384 -0
  413. package/src/ethermint/evm/v1/events.ts +485 -0
  414. package/src/ethermint/evm/v1/evm.d.ts +530 -0
  415. package/src/ethermint/evm/v1/evm.js +1184 -0
  416. package/src/ethermint/evm/v1/evm.ts +1590 -0
  417. package/src/ethermint/evm/v1/genesis.d.ts +87 -0
  418. package/src/ethermint/evm/v1/genesis.js +188 -0
  419. package/src/ethermint/evm/v1/genesis.ts +240 -0
  420. package/src/ethermint/evm/v1/query.d.ts +913 -0
  421. package/src/ethermint/evm/v1/query.js +1973 -0
  422. package/src/ethermint/evm/v1/query.lcd.ts +157 -0
  423. package/src/ethermint/evm/v1/query.rpc.Query.ts +164 -0
  424. package/src/ethermint/evm/v1/query.rpc.func.d.ts +15 -0
  425. package/src/ethermint/evm/v1/query.rpc.func.js +102 -0
  426. package/src/ethermint/evm/v1/query.rpc.func.ts +87 -0
  427. package/src/ethermint/evm/v1/query.ts +2535 -0
  428. package/src/ethermint/evm/v1/tx.amino.ts +13 -0
  429. package/src/ethermint/evm/v1/tx.d.ts +452 -0
  430. package/src/ethermint/evm/v1/tx.js +1011 -0
  431. package/src/ethermint/evm/v1/tx.registry.ts +3 -0
  432. package/src/ethermint/evm/v1/tx.rpc.func.d.ts +4 -0
  433. package/src/ethermint/evm/v1/tx.rpc.func.js +20 -0
  434. package/src/ethermint/evm/v1/tx.rpc.func.ts +15 -0
  435. package/src/ethermint/evm/v1/tx.rpc.msg.ts +35 -0
  436. package/src/ethermint/evm/v1/tx.ts +1333 -0
  437. package/src/ethermint/feemarket/v1/events.d.ts +70 -0
  438. package/src/ethermint/feemarket/v1/events.js +157 -0
  439. package/src/ethermint/feemarket/v1/events.ts +195 -0
  440. package/src/ethermint/feemarket/v1/feemarket.d.ts +78 -0
  441. package/src/ethermint/feemarket/v1/feemarket.js +155 -0
  442. package/src/ethermint/feemarket/v1/feemarket.ts +213 -0
  443. package/src/ethermint/feemarket/v1/genesis.d.ts +45 -0
  444. package/src/ethermint/feemarket/v1/genesis.js +88 -0
  445. package/src/ethermint/feemarket/v1/genesis.ts +114 -0
  446. package/src/ethermint/feemarket/v1/query.d.ts +195 -0
  447. package/src/ethermint/feemarket/v1/query.js +387 -0
  448. package/src/ethermint/feemarket/v1/query.lcd.ts +27 -0
  449. package/src/ethermint/feemarket/v1/query.rpc.Query.ts +52 -0
  450. package/src/ethermint/feemarket/v1/query.rpc.func.d.ts +5 -0
  451. package/src/ethermint/feemarket/v1/query.rpc.func.js +29 -0
  452. package/src/ethermint/feemarket/v1/query.rpc.func.ts +23 -0
  453. package/src/ethermint/feemarket/v1/query.ts +487 -0
  454. package/src/ethermint/feemarket/v1/tx.amino.ts +8 -0
  455. package/src/ethermint/feemarket/v1/tx.d.ts +81 -0
  456. package/src/ethermint/feemarket/v1/tx.js +153 -0
  457. package/src/ethermint/feemarket/v1/tx.registry.ts +3 -0
  458. package/src/ethermint/feemarket/v1/tx.rpc.func.d.ts +3 -0
  459. package/src/ethermint/feemarket/v1/tx.rpc.func.js +13 -0
  460. package/src/ethermint/feemarket/v1/tx.rpc.func.ts +9 -0
  461. package/src/ethermint/feemarket/v1/tx.rpc.msg.ts +27 -0
  462. package/src/ethermint/feemarket/v1/tx.ts +197 -0
  463. package/src/ethermint/types/v1/account.d.ts +45 -0
  464. package/src/ethermint/types/v1/account.js +88 -0
  465. package/src/ethermint/types/v1/account.ts +114 -0
  466. package/src/ethermint/types/v1/dynamic_fee.d.ts +34 -0
  467. package/src/ethermint/types/v1/dynamic_fee.js +75 -0
  468. package/src/ethermint/types/v1/dynamic_fee.ts +91 -0
  469. package/src/ethermint/types/v1/indexer.d.ts +76 -0
  470. package/src/ethermint/types/v1/indexer.js +147 -0
  471. package/src/ethermint/types/v1/indexer.ts +205 -0
  472. package/src/ethermint/types/v1/web3.d.ts +66 -0
  473. package/src/ethermint/types/v1/web3.js +100 -0
  474. package/src/ethermint/types/v1/web3.ts +147 -0
  475. package/src/extern.d.ts +10 -0
  476. package/src/extern.js +36 -0
  477. package/src/extern.ts +38 -0
  478. package/src/gogoproto/gogo.d.ts +1 -0
  479. package/src/gogoproto/gogo.js +2 -0
  480. package/src/gogoproto/gogo.ts +1 -0
  481. package/src/google/api/annotations.d.ts +1 -0
  482. package/src/google/api/annotations.js +2 -0
  483. package/src/google/api/annotations.ts +1 -0
  484. package/src/google/api/http.d.ts +764 -0
  485. package/src/google/api/http.js +353 -0
  486. package/src/google/api/http.ts +1069 -0
  487. package/src/google/protobuf/any.d.ts +268 -0
  488. package/src/google/protobuf/any.js +81 -0
  489. package/src/google/protobuf/any.ts +331 -0
  490. package/src/google/protobuf/descriptor.d.ts +2919 -0
  491. package/src/google/protobuf/descriptor.js +5100 -0
  492. package/src/google/protobuf/descriptor.ts +7177 -0
  493. package/src/google/protobuf/duration.d.ts +162 -0
  494. package/src/google/protobuf/duration.js +81 -0
  495. package/src/google/protobuf/duration.ts +225 -0
  496. package/src/google/protobuf/timestamp.d.ts +222 -0
  497. package/src/google/protobuf/timestamp.js +78 -0
  498. package/src/google/protobuf/timestamp.ts +281 -0
  499. package/src/helper-func-types.d.ts +117 -0
  500. package/src/helper-func-types.js +55 -0
  501. package/src/helper-func-types.ts +191 -0
  502. package/src/helpers.d.ts +82 -0
  503. package/src/helpers.js +143 -0
  504. package/src/helpers.ts +259 -0
  505. package/src/ibc/applications/fee/v1/ack.ts +131 -0
  506. package/src/ibc/applications/fee/v1/fee.ts +481 -0
  507. package/src/ibc/applications/fee/v1/genesis.ts +661 -0
  508. package/src/ibc/applications/fee/v1/metadata.ts +121 -0
  509. package/src/ibc/applications/fee/v1/query.lcd.ts +117 -0
  510. package/src/ibc/applications/fee/v1/query.rpc.Query.ts +129 -0
  511. package/src/ibc/applications/fee/v1/query.rpc.func.ts +72 -0
  512. package/src/ibc/applications/fee/v1/query.ts +2134 -0
  513. package/src/ibc/applications/fee/v1/tx.amino.ts +23 -0
  514. package/src/ibc/applications/fee/v1/tx.registry.ts +3 -0
  515. package/src/ibc/applications/fee/v1/tx.rpc.func.ts +27 -0
  516. package/src/ibc/applications/fee/v1/tx.rpc.msg.ts +83 -0
  517. package/src/ibc/applications/fee/v1/tx.ts +889 -0
  518. package/src/ibc/applications/interchain_accounts/controller/v1/controller.ts +105 -0
  519. package/src/ibc/applications/interchain_accounts/controller/v1/query.lcd.ts +22 -0
  520. package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.ts +41 -0
  521. package/src/ibc/applications/interchain_accounts/controller/v1/query.rpc.func.ts +16 -0
  522. package/src/ibc/applications/interchain_accounts/controller/v1/query.ts +379 -0
  523. package/src/ibc/applications/interchain_accounts/controller/v1/tx.amino.ts +18 -0
  524. package/src/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +3 -0
  525. package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.func.ts +21 -0
  526. package/src/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.ts +39 -0
  527. package/src/ibc/applications/interchain_accounts/controller/v1/tx.ts +685 -0
  528. package/src/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +661 -0
  529. package/src/ibc/applications/interchain_accounts/host/v1/host.ts +253 -0
  530. package/src/ibc/applications/interchain_accounts/host/v1/query.lcd.ts +17 -0
  531. package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.ts +30 -0
  532. package/src/ibc/applications/interchain_accounts/host/v1/query.rpc.func.ts +9 -0
  533. package/src/ibc/applications/interchain_accounts/host/v1/query.ts +177 -0
  534. package/src/ibc/applications/interchain_accounts/host/v1/tx.amino.ts +13 -0
  535. package/src/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +3 -0
  536. package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.func.ts +15 -0
  537. package/src/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.ts +31 -0
  538. package/src/ibc/applications/interchain_accounts/host/v1/tx.ts +429 -0
  539. package/src/ibc/applications/interchain_accounts/v1/account.ts +112 -0
  540. package/src/ibc/applications/interchain_accounts/v1/metadata.ts +191 -0
  541. package/src/ibc/applications/interchain_accounts/v1/packet.ts +259 -0
  542. package/src/ibc/applications/transfer/v1/authz.ts +280 -0
  543. package/src/ibc/applications/transfer/v1/genesis.ts +153 -0
  544. package/src/ibc/applications/transfer/v1/query.lcd.ts +69 -0
  545. package/src/ibc/applications/transfer/v1/query.rpc.Query.ts +87 -0
  546. package/src/ibc/applications/transfer/v1/query.rpc.func.ts +44 -0
  547. package/src/ibc/applications/transfer/v1/query.ts +1205 -0
  548. package/src/ibc/applications/transfer/v1/transfer.d.ts +112 -0
  549. package/src/ibc/applications/transfer/v1/transfer.js +185 -0
  550. package/src/ibc/applications/transfer/v1/transfer.ts +261 -0
  551. package/src/ibc/applications/transfer/v1/tx.amino.ts +13 -0
  552. package/src/ibc/applications/transfer/v1/tx.d.ts +202 -0
  553. package/src/ibc/applications/transfer/v1/tx.js +402 -0
  554. package/src/ibc/applications/transfer/v1/tx.registry.ts +3 -0
  555. package/src/ibc/applications/transfer/v1/tx.rpc.func.d.ts +4 -0
  556. package/src/ibc/applications/transfer/v1/tx.rpc.func.js +20 -0
  557. package/src/ibc/applications/transfer/v1/tx.rpc.func.ts +15 -0
  558. package/src/ibc/applications/transfer/v1/tx.rpc.msg.ts +31 -0
  559. package/src/ibc/applications/transfer/v1/tx.ts +532 -0
  560. package/src/ibc/applications/transfer/v2/packet.ts +171 -0
  561. package/src/ibc/core/channel/v1/channel.d.ts +547 -0
  562. package/src/ibc/core/channel/v1/channel.js +1167 -0
  563. package/src/ibc/core/channel/v1/channel.ts +1510 -0
  564. package/src/ibc/core/channel/v1/genesis.ts +354 -0
  565. package/src/ibc/core/channel/v1/query.lcd.ts +135 -0
  566. package/src/ibc/core/channel/v1/query.rpc.Query.ts +240 -0
  567. package/src/ibc/core/channel/v1/query.rpc.func.ts +121 -0
  568. package/src/ibc/core/channel/v1/query.ts +4354 -0
  569. package/src/ibc/core/channel/v1/tx.amino.ts +98 -0
  570. package/src/ibc/core/channel/v1/tx.d.ts +1490 -0
  571. package/src/ibc/core/channel/v1/tx.js +4027 -0
  572. package/src/ibc/core/channel/v1/tx.registry.ts +3 -0
  573. package/src/ibc/core/channel/v1/tx.rpc.func.d.ts +21 -0
  574. package/src/ibc/core/channel/v1/tx.rpc.func.js +139 -0
  575. package/src/ibc/core/channel/v1/tx.rpc.func.ts +117 -0
  576. package/src/ibc/core/channel/v1/tx.rpc.msg.ts +171 -0
  577. package/src/ibc/core/channel/v1/tx.ts +4866 -0
  578. package/src/ibc/core/channel/v1/upgrade.d.ts +139 -0
  579. package/src/ibc/core/channel/v1/upgrade.js +304 -0
  580. package/src/ibc/core/channel/v1/upgrade.ts +388 -0
  581. package/src/ibc/core/client/v1/client.d.ts +372 -0
  582. package/src/ibc/core/client/v1/client.js +675 -0
  583. package/src/ibc/core/client/v1/client.ts +927 -0
  584. package/src/ibc/core/client/v1/genesis.ts +426 -0
  585. package/src/ibc/core/client/v1/query.lcd.ts +86 -0
  586. package/src/ibc/core/client/v1/query.rpc.Query.ts +139 -0
  587. package/src/ibc/core/client/v1/query.rpc.func.ts +72 -0
  588. package/src/ibc/core/client/v1/query.ts +2280 -0
  589. package/src/ibc/core/client/v1/tx.amino.ts +38 -0
  590. package/src/ibc/core/client/v1/tx.d.ts +587 -0
  591. package/src/ibc/core/client/v1/tx.js +1202 -0
  592. package/src/ibc/core/client/v1/tx.registry.ts +3 -0
  593. package/src/ibc/core/client/v1/tx.rpc.func.d.ts +9 -0
  594. package/src/ibc/core/client/v1/tx.rpc.func.js +55 -0
  595. package/src/ibc/core/client/v1/tx.rpc.func.ts +45 -0
  596. package/src/ibc/core/client/v1/tx.rpc.msg.ts +71 -0
  597. package/src/ibc/core/client/v1/tx.ts +1543 -0
  598. package/src/ibc/core/commitment/v1/commitment.d.ts +165 -0
  599. package/src/ibc/core/commitment/v1/commitment.js +325 -0
  600. package/src/ibc/core/commitment/v1/commitment.ts +418 -0
  601. package/src/ibc/core/connection/v1/connection.d.ts +376 -0
  602. package/src/ibc/core/connection/v1/connection.js +781 -0
  603. package/src/ibc/core/connection/v1/connection.ts +1010 -0
  604. package/src/ibc/core/connection/v1/genesis.ts +146 -0
  605. package/src/ibc/core/connection/v1/query.lcd.ts +54 -0
  606. package/src/ibc/core/connection/v1/query.rpc.Query.ts +99 -0
  607. package/src/ibc/core/connection/v1/query.rpc.func.ts +44 -0
  608. package/src/ibc/core/connection/v1/query.ts +1408 -0
  609. package/src/ibc/core/connection/v1/tx.amino.ts +28 -0
  610. package/src/ibc/core/connection/v1/tx.d.ts +457 -0
  611. package/src/ibc/core/connection/v1/tx.js +1087 -0
  612. package/src/ibc/core/connection/v1/tx.registry.ts +3 -0
  613. package/src/ibc/core/connection/v1/tx.rpc.func.d.ts +7 -0
  614. package/src/ibc/core/connection/v1/tx.rpc.func.js +41 -0
  615. package/src/ibc/core/connection/v1/tx.rpc.func.ts +33 -0
  616. package/src/ibc/core/connection/v1/tx.rpc.msg.ts +63 -0
  617. package/src/ibc/core/connection/v1/tx.ts +1365 -0
  618. package/src/ibc/core/types/v1/genesis.ts +137 -0
  619. package/src/ibc/lightclients/localhost/v2/localhost.ts +100 -0
  620. package/src/ibc/lightclients/solomachine/v2/solomachine.ts +2103 -0
  621. package/src/ibc/lightclients/solomachine/v3/solomachine.ts +1070 -0
  622. package/src/ibc/lightclients/tendermint/v1/tendermint.ts +838 -0
  623. package/src/ibc/lightclients/wasm/v1/genesis.ts +197 -0
  624. package/src/ibc/lightclients/wasm/v1/query.lcd.ts +31 -0
  625. package/src/ibc/lightclients/wasm/v1/query.rpc.Query.ts +43 -0
  626. package/src/ibc/lightclients/wasm/v1/query.rpc.func.ts +16 -0
  627. package/src/ibc/lightclients/wasm/v1/query.ts +404 -0
  628. package/src/ibc/lightclients/wasm/v1/tx.amino.ts +18 -0
  629. package/src/ibc/lightclients/wasm/v1/tx.registry.ts +3 -0
  630. package/src/ibc/lightclients/wasm/v1/tx.rpc.func.ts +21 -0
  631. package/src/ibc/lightclients/wasm/v1/tx.rpc.msg.ts +39 -0
  632. package/src/ibc/lightclients/wasm/v1/tx.ts +621 -0
  633. package/src/ibc/lightclients/wasm/v1/wasm.ts +438 -0
  634. package/src/registry.d.ts +33 -0
  635. package/src/registry.js +158 -0
  636. package/src/registry.ts +218 -0
  637. package/src/tendermint/abci/types.d.ts +1843 -0
  638. package/src/tendermint/abci/types.js +5233 -0
  639. package/src/tendermint/abci/types.ts +6283 -0
  640. package/src/tendermint/crypto/keys.d.ts +34 -0
  641. package/src/tendermint/crypto/keys.js +88 -0
  642. package/src/tendermint/crypto/keys.ts +103 -0
  643. package/src/tendermint/crypto/proof.d.ts +174 -0
  644. package/src/tendermint/crypto/proof.js +458 -0
  645. package/src/tendermint/crypto/proof.ts +555 -0
  646. package/src/tendermint/p2p/types.ts +507 -0
  647. package/src/tendermint/types/block.d.ts +38 -0
  648. package/src/tendermint/types/block.js +113 -0
  649. package/src/tendermint/types/block.ts +131 -0
  650. package/src/tendermint/types/evidence.d.ts +138 -0
  651. package/src/tendermint/types/evidence.js +403 -0
  652. package/src/tendermint/types/evidence.ts +476 -0
  653. package/src/tendermint/types/params.d.ts +323 -0
  654. package/src/tendermint/types/params.js +595 -0
  655. package/src/tendermint/types/params.ts +814 -0
  656. package/src/tendermint/types/types.d.ts +640 -0
  657. package/src/tendermint/types/types.js +1754 -0
  658. package/src/tendermint/types/types.ts +2157 -0
  659. package/src/tendermint/types/validator.d.ts +113 -0
  660. package/src/tendermint/types/validator.js +342 -0
  661. package/src/tendermint/types/validator.ts +389 -0
  662. package/src/tendermint/version/types.d.ts +82 -0
  663. package/src/tendermint/version/types.js +169 -0
  664. package/src/tendermint/version/types.ts +219 -0
  665. package/src/types.d.ts +124 -0
  666. package/src/types.js +7 -0
  667. package/src/types.ts +155 -0
  668. package/src/utf8.d.ts +27 -0
  669. package/src/utf8.js +140 -0
  670. package/src/utf8.ts +148 -0
  671. package/src/varint.d.ts +105 -0
  672. package/src/varint.js +425 -0
  673. package/src/varint.ts +488 -0
  674. package/src/xpla/lcd.ts +180 -0
  675. package/src/xpla/reward/v1beta1/genesis.d.ts +35 -0
  676. package/src/xpla/reward/v1beta1/genesis.js +76 -0
  677. package/src/xpla/reward/v1beta1/genesis.ts +92 -0
  678. package/src/xpla/reward/v1beta1/query.d.ts +136 -0
  679. package/src/xpla/reward/v1beta1/query.js +264 -0
  680. package/src/xpla/reward/v1beta1/query.lcd.ts +22 -0
  681. package/src/xpla/reward/v1beta1/query.rpc.Query.ts +41 -0
  682. package/src/xpla/reward/v1beta1/query.rpc.func.d.ts +4 -0
  683. package/src/xpla/reward/v1beta1/query.rpc.func.js +21 -0
  684. package/src/xpla/reward/v1beta1/query.rpc.func.ts +16 -0
  685. package/src/xpla/reward/v1beta1/query.ts +333 -0
  686. package/src/xpla/reward/v1beta1/reward.d.ts +42 -0
  687. package/src/xpla/reward/v1beta1/reward.js +131 -0
  688. package/src/xpla/reward/v1beta1/reward.ts +153 -0
  689. package/src/xpla/reward/v1beta1/tx.amino.ts +13 -0
  690. package/src/xpla/reward/v1beta1/tx.d.ts +158 -0
  691. package/src/xpla/reward/v1beta1/tx.js +304 -0
  692. package/src/xpla/reward/v1beta1/tx.registry.ts +3 -0
  693. package/src/xpla/reward/v1beta1/tx.rpc.func.d.ts +4 -0
  694. package/src/xpla/reward/v1beta1/tx.rpc.func.js +20 -0
  695. package/src/xpla/reward/v1beta1/tx.rpc.func.ts +15 -0
  696. package/src/xpla/reward/v1beta1/tx.rpc.msg.ts +41 -0
  697. package/src/xpla/reward/v1beta1/tx.ts +391 -0
  698. package/src/xpla/rpc.query.ts +129 -0
  699. package/src/xpla/rpc.tx.ts +6 -0
  700. package/src/xpla/volunteer/v1beta1/genesis.d.ts +33 -0
  701. package/src/xpla/volunteer/v1beta1/genesis.js +79 -0
  702. package/src/xpla/volunteer/v1beta1/genesis.ts +92 -0
  703. package/src/xpla/volunteer/v1beta1/proposal.d.ts +183 -0
  704. package/src/xpla/volunteer/v1beta1/proposal.js +537 -0
  705. package/src/xpla/volunteer/v1beta1/proposal.ts +649 -0
  706. package/src/xpla/volunteer/v1beta1/query.d.ts +60 -0
  707. package/src/xpla/volunteer/v1beta1/query.js +135 -0
  708. package/src/xpla/volunteer/v1beta1/query.lcd.ts +17 -0
  709. package/src/xpla/volunteer/v1beta1/query.rpc.Query.ts +30 -0
  710. package/src/xpla/volunteer/v1beta1/query.rpc.func.d.ts +3 -0
  711. package/src/xpla/volunteer/v1beta1/query.rpc.func.js +13 -0
  712. package/src/xpla/volunteer/v1beta1/query.rpc.func.ts +9 -0
  713. package/src/xpla/volunteer/v1beta1/query.ts +160 -0
  714. package/src/xpla/volunteer/v1beta1/tx.amino.ts +13 -0
  715. package/src/xpla/volunteer/v1beta1/tx.d.ts +168 -0
  716. package/src/xpla/volunteer/v1beta1/tx.js +351 -0
  717. package/src/xpla/volunteer/v1beta1/tx.registry.ts +3 -0
  718. package/src/xpla/volunteer/v1beta1/tx.rpc.func.d.ts +4 -0
  719. package/src/xpla/volunteer/v1beta1/tx.rpc.func.js +20 -0
  720. package/src/xpla/volunteer/v1beta1/tx.rpc.func.ts +15 -0
  721. package/src/xpla/volunteer/v1beta1/tx.rpc.msg.ts +35 -0
  722. package/src/xpla/volunteer/v1beta1/tx.ts +448 -0
  723. package/src/xpla/volunteer/v1beta1/volunteervalidator.d.ts +38 -0
  724. package/src/xpla/volunteer/v1beta1/volunteervalidator.js +87 -0
  725. package/src/xpla/volunteer/v1beta1/volunteervalidator.ts +107 -0
  726. package/tsconfig.esm.json +10 -0
  727. package/tsconfig.json +10 -0
@@ -0,0 +1,730 @@
1
+ import { BinaryReader, BinaryWriter } from "../../../binary";
2
+ import { DeepPartial } from "../../../helpers";
3
+ export declare enum HashOp {
4
+ /** NO_HASH - NO_HASH is the default if no data passed. Note this is an illegal argument some places. */
5
+ NO_HASH = 0,
6
+ SHA256 = 1,
7
+ SHA512 = 2,
8
+ KECCAK256 = 3,
9
+ RIPEMD160 = 4,
10
+ /** BITCOIN - ripemd160(sha256(x)) */
11
+ BITCOIN = 5,
12
+ SHA512_256 = 6,
13
+ BLAKE2B_512 = 7,
14
+ BLAKE2S_256 = 8,
15
+ BLAKE3 = 9,
16
+ UNRECOGNIZED = -1
17
+ }
18
+ export declare const HashOpAmino: typeof HashOp;
19
+ export declare function hashOpFromJSON(object: any): HashOp;
20
+ export declare function hashOpToJSON(object: HashOp): string;
21
+ /**
22
+ * LengthOp defines how to process the key and value of the LeafOp
23
+ * to include length information. After encoding the length with the given
24
+ * algorithm, the length will be prepended to the key and value bytes.
25
+ * (Each one with it's own encoded length)
26
+ */
27
+ export declare enum LengthOp {
28
+ /** NO_PREFIX - NO_PREFIX don't include any length info */
29
+ NO_PREFIX = 0,
30
+ /** VAR_PROTO - VAR_PROTO uses protobuf (and go-amino) varint encoding of the length */
31
+ VAR_PROTO = 1,
32
+ /** VAR_RLP - VAR_RLP uses rlp int encoding of the length */
33
+ VAR_RLP = 2,
34
+ /** FIXED32_BIG - FIXED32_BIG uses big-endian encoding of the length as a 32 bit integer */
35
+ FIXED32_BIG = 3,
36
+ /** FIXED32_LITTLE - FIXED32_LITTLE uses little-endian encoding of the length as a 32 bit integer */
37
+ FIXED32_LITTLE = 4,
38
+ /** FIXED64_BIG - FIXED64_BIG uses big-endian encoding of the length as a 64 bit integer */
39
+ FIXED64_BIG = 5,
40
+ /** FIXED64_LITTLE - FIXED64_LITTLE uses little-endian encoding of the length as a 64 bit integer */
41
+ FIXED64_LITTLE = 6,
42
+ /** REQUIRE_32_BYTES - REQUIRE_32_BYTES is like NONE, but will fail if the input is not exactly 32 bytes (sha256 output) */
43
+ REQUIRE_32_BYTES = 7,
44
+ /** REQUIRE_64_BYTES - REQUIRE_64_BYTES is like NONE, but will fail if the input is not exactly 64 bytes (sha512 output) */
45
+ REQUIRE_64_BYTES = 8,
46
+ UNRECOGNIZED = -1
47
+ }
48
+ export declare const LengthOpAmino: typeof LengthOp;
49
+ export declare function lengthOpFromJSON(object: any): LengthOp;
50
+ export declare function lengthOpToJSON(object: LengthOp): string;
51
+ /**
52
+ * ExistenceProof takes a key and a value and a set of steps to perform on it.
53
+ * The result of peforming all these steps will provide a "root hash", which can
54
+ * be compared to the value in a header.
55
+ *
56
+ * Since it is computationally infeasible to produce a hash collission for any of the used
57
+ * cryptographic hash functions, if someone can provide a series of operations to transform
58
+ * a given key and value into a root hash that matches some trusted root, these key and values
59
+ * must be in the referenced merkle tree.
60
+ *
61
+ * The only possible issue is maliablity in LeafOp, such as providing extra prefix data,
62
+ * which should be controlled by a spec. Eg. with lengthOp as NONE,
63
+ * prefix = FOO, key = BAR, value = CHOICE
64
+ * and
65
+ * prefix = F, key = OOBAR, value = CHOICE
66
+ * would produce the same value.
67
+ *
68
+ * With LengthOp this is tricker but not impossible. Which is why the "leafPrefixEqual" field
69
+ * in the ProofSpec is valuable to prevent this mutability. And why all trees should
70
+ * length-prefix the data before hashing it.
71
+ */
72
+ export interface ExistenceProof {
73
+ key: Uint8Array;
74
+ value: Uint8Array;
75
+ leaf?: LeafOp;
76
+ path: InnerOp[];
77
+ }
78
+ export interface ExistenceProofProtoMsg {
79
+ typeUrl: "/cosmos.ics23.v1.ExistenceProof";
80
+ value: Uint8Array;
81
+ }
82
+ /**
83
+ * ExistenceProof takes a key and a value and a set of steps to perform on it.
84
+ * The result of peforming all these steps will provide a "root hash", which can
85
+ * be compared to the value in a header.
86
+ *
87
+ * Since it is computationally infeasible to produce a hash collission for any of the used
88
+ * cryptographic hash functions, if someone can provide a series of operations to transform
89
+ * a given key and value into a root hash that matches some trusted root, these key and values
90
+ * must be in the referenced merkle tree.
91
+ *
92
+ * The only possible issue is maliablity in LeafOp, such as providing extra prefix data,
93
+ * which should be controlled by a spec. Eg. with lengthOp as NONE,
94
+ * prefix = FOO, key = BAR, value = CHOICE
95
+ * and
96
+ * prefix = F, key = OOBAR, value = CHOICE
97
+ * would produce the same value.
98
+ *
99
+ * With LengthOp this is tricker but not impossible. Which is why the "leafPrefixEqual" field
100
+ * in the ProofSpec is valuable to prevent this mutability. And why all trees should
101
+ * length-prefix the data before hashing it.
102
+ */
103
+ export interface ExistenceProofAmino {
104
+ key: string;
105
+ value: string;
106
+ leaf?: LeafOpAmino;
107
+ path: InnerOpAmino[];
108
+ }
109
+ export interface ExistenceProofAminoMsg {
110
+ type: "cosmos-sdk/ExistenceProof";
111
+ value: ExistenceProofAmino;
112
+ }
113
+ /**
114
+ * NonExistenceProof takes a proof of two neighbors, one left of the desired key,
115
+ * one right of the desired key. If both proofs are valid AND they are neighbors,
116
+ * then there is no valid proof for the given key.
117
+ */
118
+ export interface NonExistenceProof {
119
+ /** TODO: remove this as unnecessary??? we prove a range */
120
+ key: Uint8Array;
121
+ left?: ExistenceProof;
122
+ right?: ExistenceProof;
123
+ }
124
+ export interface NonExistenceProofProtoMsg {
125
+ typeUrl: "/cosmos.ics23.v1.NonExistenceProof";
126
+ value: Uint8Array;
127
+ }
128
+ /**
129
+ * NonExistenceProof takes a proof of two neighbors, one left of the desired key,
130
+ * one right of the desired key. If both proofs are valid AND they are neighbors,
131
+ * then there is no valid proof for the given key.
132
+ */
133
+ export interface NonExistenceProofAmino {
134
+ /** TODO: remove this as unnecessary??? we prove a range */
135
+ key: string;
136
+ left?: ExistenceProofAmino;
137
+ right?: ExistenceProofAmino;
138
+ }
139
+ export interface NonExistenceProofAminoMsg {
140
+ type: "cosmos-sdk/NonExistenceProof";
141
+ value: NonExistenceProofAmino;
142
+ }
143
+ /** CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages */
144
+ export interface CommitmentProof {
145
+ exist?: ExistenceProof;
146
+ nonexist?: NonExistenceProof;
147
+ batch?: BatchProof;
148
+ compressed?: CompressedBatchProof;
149
+ }
150
+ export interface CommitmentProofProtoMsg {
151
+ typeUrl: "/cosmos.ics23.v1.CommitmentProof";
152
+ value: Uint8Array;
153
+ }
154
+ /** CommitmentProof is either an ExistenceProof or a NonExistenceProof, or a Batch of such messages */
155
+ export interface CommitmentProofAmino {
156
+ exist?: ExistenceProofAmino;
157
+ nonexist?: NonExistenceProofAmino;
158
+ batch?: BatchProofAmino;
159
+ compressed?: CompressedBatchProofAmino;
160
+ }
161
+ export interface CommitmentProofAminoMsg {
162
+ type: "cosmos-sdk/CommitmentProof";
163
+ value: CommitmentProofAmino;
164
+ }
165
+ /**
166
+ * LeafOp represents the raw key-value data we wish to prove, and
167
+ * must be flexible to represent the internal transformation from
168
+ * the original key-value pairs into the basis hash, for many existing
169
+ * merkle trees.
170
+ *
171
+ * key and value are passed in. So that the signature of this operation is:
172
+ * leafOp(key, value) -> output
173
+ *
174
+ * To process this, first prehash the keys and values if needed (ANY means no hash in this case):
175
+ * hkey = prehashKey(key)
176
+ * hvalue = prehashValue(value)
177
+ *
178
+ * Then combine the bytes, and hash it
179
+ * output = hash(prefix || length(hkey) || hkey || length(hvalue) || hvalue)
180
+ */
181
+ export interface LeafOp {
182
+ hash: HashOp;
183
+ prehashKey: HashOp;
184
+ prehashValue: HashOp;
185
+ length: LengthOp;
186
+ /**
187
+ * prefix is a fixed bytes that may optionally be included at the beginning to differentiate
188
+ * a leaf node from an inner node.
189
+ */
190
+ prefix: Uint8Array;
191
+ }
192
+ export interface LeafOpProtoMsg {
193
+ typeUrl: "/cosmos.ics23.v1.LeafOp";
194
+ value: Uint8Array;
195
+ }
196
+ /**
197
+ * LeafOp represents the raw key-value data we wish to prove, and
198
+ * must be flexible to represent the internal transformation from
199
+ * the original key-value pairs into the basis hash, for many existing
200
+ * merkle trees.
201
+ *
202
+ * key and value are passed in. So that the signature of this operation is:
203
+ * leafOp(key, value) -> output
204
+ *
205
+ * To process this, first prehash the keys and values if needed (ANY means no hash in this case):
206
+ * hkey = prehashKey(key)
207
+ * hvalue = prehashValue(value)
208
+ *
209
+ * Then combine the bytes, and hash it
210
+ * output = hash(prefix || length(hkey) || hkey || length(hvalue) || hvalue)
211
+ */
212
+ export interface LeafOpAmino {
213
+ hash: HashOp;
214
+ prehash_key: HashOp;
215
+ prehash_value: HashOp;
216
+ length: LengthOp;
217
+ /**
218
+ * prefix is a fixed bytes that may optionally be included at the beginning to differentiate
219
+ * a leaf node from an inner node.
220
+ */
221
+ prefix: string;
222
+ }
223
+ export interface LeafOpAminoMsg {
224
+ type: "cosmos-sdk/LeafOp";
225
+ value: LeafOpAmino;
226
+ }
227
+ /**
228
+ * InnerOp represents a merkle-proof step that is not a leaf.
229
+ * It represents concatenating two children and hashing them to provide the next result.
230
+ *
231
+ * The result of the previous step is passed in, so the signature of this op is:
232
+ * innerOp(child) -> output
233
+ *
234
+ * The result of applying InnerOp should be:
235
+ * output = op.hash(op.prefix || child || op.suffix)
236
+ *
237
+ * where the || operator is concatenation of binary data,
238
+ * and child is the result of hashing all the tree below this step.
239
+ *
240
+ * Any special data, like prepending child with the length, or prepending the entire operation with
241
+ * some value to differentiate from leaf nodes, should be included in prefix and suffix.
242
+ * If either of prefix or suffix is empty, we just treat it as an empty string
243
+ */
244
+ export interface InnerOp {
245
+ hash: HashOp;
246
+ prefix: Uint8Array;
247
+ suffix: Uint8Array;
248
+ }
249
+ export interface InnerOpProtoMsg {
250
+ typeUrl: "/cosmos.ics23.v1.InnerOp";
251
+ value: Uint8Array;
252
+ }
253
+ /**
254
+ * InnerOp represents a merkle-proof step that is not a leaf.
255
+ * It represents concatenating two children and hashing them to provide the next result.
256
+ *
257
+ * The result of the previous step is passed in, so the signature of this op is:
258
+ * innerOp(child) -> output
259
+ *
260
+ * The result of applying InnerOp should be:
261
+ * output = op.hash(op.prefix || child || op.suffix)
262
+ *
263
+ * where the || operator is concatenation of binary data,
264
+ * and child is the result of hashing all the tree below this step.
265
+ *
266
+ * Any special data, like prepending child with the length, or prepending the entire operation with
267
+ * some value to differentiate from leaf nodes, should be included in prefix and suffix.
268
+ * If either of prefix or suffix is empty, we just treat it as an empty string
269
+ */
270
+ export interface InnerOpAmino {
271
+ hash: HashOp;
272
+ prefix: string;
273
+ suffix: string;
274
+ }
275
+ export interface InnerOpAminoMsg {
276
+ type: "cosmos-sdk/InnerOp";
277
+ value: InnerOpAmino;
278
+ }
279
+ /**
280
+ * ProofSpec defines what the expected parameters are for a given proof type.
281
+ * This can be stored in the client and used to validate any incoming proofs.
282
+ *
283
+ * verify(ProofSpec, Proof) -> Proof | Error
284
+ *
285
+ * As demonstrated in tests, if we don't fix the algorithm used to calculate the
286
+ * LeafHash for a given tree, there are many possible key-value pairs that can
287
+ * generate a given hash (by interpretting the preimage differently).
288
+ * We need this for proper security, requires client knows a priori what
289
+ * tree format server uses. But not in code, rather a configuration object.
290
+ */
291
+ export interface ProofSpec {
292
+ /**
293
+ * any field in the ExistenceProof must be the same as in this spec.
294
+ * except Prefix, which is just the first bytes of prefix (spec can be longer)
295
+ */
296
+ leafSpec?: LeafOp;
297
+ innerSpec?: InnerSpec;
298
+ /**
299
+ * max_depth (if > 0) is the maximum number of InnerOps allowed (mainly for fixed-depth tries)
300
+ * the max_depth is interpreted as 128 if set to 0
301
+ */
302
+ maxDepth: number;
303
+ /** min_depth (if > 0) is the minimum number of InnerOps allowed (mainly for fixed-depth tries) */
304
+ minDepth: number;
305
+ /**
306
+ * prehash_key_before_comparison is a flag that indicates whether to use the
307
+ * prehash_key specified by LeafOp to compare lexical ordering of keys for
308
+ * non-existence proofs.
309
+ */
310
+ prehashKeyBeforeComparison: boolean;
311
+ }
312
+ export interface ProofSpecProtoMsg {
313
+ typeUrl: "/cosmos.ics23.v1.ProofSpec";
314
+ value: Uint8Array;
315
+ }
316
+ /**
317
+ * ProofSpec defines what the expected parameters are for a given proof type.
318
+ * This can be stored in the client and used to validate any incoming proofs.
319
+ *
320
+ * verify(ProofSpec, Proof) -> Proof | Error
321
+ *
322
+ * As demonstrated in tests, if we don't fix the algorithm used to calculate the
323
+ * LeafHash for a given tree, there are many possible key-value pairs that can
324
+ * generate a given hash (by interpretting the preimage differently).
325
+ * We need this for proper security, requires client knows a priori what
326
+ * tree format server uses. But not in code, rather a configuration object.
327
+ */
328
+ export interface ProofSpecAmino {
329
+ /**
330
+ * any field in the ExistenceProof must be the same as in this spec.
331
+ * except Prefix, which is just the first bytes of prefix (spec can be longer)
332
+ */
333
+ leaf_spec?: LeafOpAmino;
334
+ inner_spec?: InnerSpecAmino;
335
+ /**
336
+ * max_depth (if > 0) is the maximum number of InnerOps allowed (mainly for fixed-depth tries)
337
+ * the max_depth is interpreted as 128 if set to 0
338
+ */
339
+ max_depth: number;
340
+ /** min_depth (if > 0) is the minimum number of InnerOps allowed (mainly for fixed-depth tries) */
341
+ min_depth: number;
342
+ /**
343
+ * prehash_key_before_comparison is a flag that indicates whether to use the
344
+ * prehash_key specified by LeafOp to compare lexical ordering of keys for
345
+ * non-existence proofs.
346
+ */
347
+ prehash_key_before_comparison: boolean;
348
+ }
349
+ export interface ProofSpecAminoMsg {
350
+ type: "cosmos-sdk/ProofSpec";
351
+ value: ProofSpecAmino;
352
+ }
353
+ /**
354
+ * InnerSpec contains all store-specific structure info to determine if two proofs from a
355
+ * given store are neighbors.
356
+ *
357
+ * This enables:
358
+ *
359
+ * isLeftMost(spec: InnerSpec, op: InnerOp)
360
+ * isRightMost(spec: InnerSpec, op: InnerOp)
361
+ * isLeftNeighbor(spec: InnerSpec, left: InnerOp, right: InnerOp)
362
+ */
363
+ export interface InnerSpec {
364
+ /**
365
+ * Child order is the ordering of the children node, must count from 0
366
+ * iavl tree is [0, 1] (left then right)
367
+ * merk is [0, 2, 1] (left, right, here)
368
+ */
369
+ childOrder: number[];
370
+ childSize: number;
371
+ minPrefixLength: number;
372
+ /** the max prefix length must be less than the minimum prefix length + child size */
373
+ maxPrefixLength: number;
374
+ /** empty child is the prehash image that is used when one child is nil (eg. 20 bytes of 0) */
375
+ emptyChild: Uint8Array;
376
+ /** hash is the algorithm that must be used for each InnerOp */
377
+ hash: HashOp;
378
+ }
379
+ export interface InnerSpecProtoMsg {
380
+ typeUrl: "/cosmos.ics23.v1.InnerSpec";
381
+ value: Uint8Array;
382
+ }
383
+ /**
384
+ * InnerSpec contains all store-specific structure info to determine if two proofs from a
385
+ * given store are neighbors.
386
+ *
387
+ * This enables:
388
+ *
389
+ * isLeftMost(spec: InnerSpec, op: InnerOp)
390
+ * isRightMost(spec: InnerSpec, op: InnerOp)
391
+ * isLeftNeighbor(spec: InnerSpec, left: InnerOp, right: InnerOp)
392
+ */
393
+ export interface InnerSpecAmino {
394
+ /**
395
+ * Child order is the ordering of the children node, must count from 0
396
+ * iavl tree is [0, 1] (left then right)
397
+ * merk is [0, 2, 1] (left, right, here)
398
+ */
399
+ child_order: number[];
400
+ child_size: number;
401
+ min_prefix_length: number;
402
+ /** the max prefix length must be less than the minimum prefix length + child size */
403
+ max_prefix_length: number;
404
+ /** empty child is the prehash image that is used when one child is nil (eg. 20 bytes of 0) */
405
+ empty_child: string;
406
+ /** hash is the algorithm that must be used for each InnerOp */
407
+ hash: HashOp;
408
+ }
409
+ export interface InnerSpecAminoMsg {
410
+ type: "cosmos-sdk/InnerSpec";
411
+ value: InnerSpecAmino;
412
+ }
413
+ /** BatchProof is a group of multiple proof types than can be compressed */
414
+ export interface BatchProof {
415
+ entries: BatchEntry[];
416
+ }
417
+ export interface BatchProofProtoMsg {
418
+ typeUrl: "/cosmos.ics23.v1.BatchProof";
419
+ value: Uint8Array;
420
+ }
421
+ /** BatchProof is a group of multiple proof types than can be compressed */
422
+ export interface BatchProofAmino {
423
+ entries: BatchEntryAmino[];
424
+ }
425
+ export interface BatchProofAminoMsg {
426
+ type: "cosmos-sdk/BatchProof";
427
+ value: BatchProofAmino;
428
+ }
429
+ /** Use BatchEntry not CommitmentProof, to avoid recursion */
430
+ export interface BatchEntry {
431
+ exist?: ExistenceProof;
432
+ nonexist?: NonExistenceProof;
433
+ }
434
+ export interface BatchEntryProtoMsg {
435
+ typeUrl: "/cosmos.ics23.v1.BatchEntry";
436
+ value: Uint8Array;
437
+ }
438
+ /** Use BatchEntry not CommitmentProof, to avoid recursion */
439
+ export interface BatchEntryAmino {
440
+ exist?: ExistenceProofAmino;
441
+ nonexist?: NonExistenceProofAmino;
442
+ }
443
+ export interface BatchEntryAminoMsg {
444
+ type: "cosmos-sdk/BatchEntry";
445
+ value: BatchEntryAmino;
446
+ }
447
+ export interface CompressedBatchProof {
448
+ entries: CompressedBatchEntry[];
449
+ lookupInners: InnerOp[];
450
+ }
451
+ export interface CompressedBatchProofProtoMsg {
452
+ typeUrl: "/cosmos.ics23.v1.CompressedBatchProof";
453
+ value: Uint8Array;
454
+ }
455
+ export interface CompressedBatchProofAmino {
456
+ entries: CompressedBatchEntryAmino[];
457
+ lookup_inners: InnerOpAmino[];
458
+ }
459
+ export interface CompressedBatchProofAminoMsg {
460
+ type: "cosmos-sdk/CompressedBatchProof";
461
+ value: CompressedBatchProofAmino;
462
+ }
463
+ /** Use BatchEntry not CommitmentProof, to avoid recursion */
464
+ export interface CompressedBatchEntry {
465
+ exist?: CompressedExistenceProof;
466
+ nonexist?: CompressedNonExistenceProof;
467
+ }
468
+ export interface CompressedBatchEntryProtoMsg {
469
+ typeUrl: "/cosmos.ics23.v1.CompressedBatchEntry";
470
+ value: Uint8Array;
471
+ }
472
+ /** Use BatchEntry not CommitmentProof, to avoid recursion */
473
+ export interface CompressedBatchEntryAmino {
474
+ exist?: CompressedExistenceProofAmino;
475
+ nonexist?: CompressedNonExistenceProofAmino;
476
+ }
477
+ export interface CompressedBatchEntryAminoMsg {
478
+ type: "cosmos-sdk/CompressedBatchEntry";
479
+ value: CompressedBatchEntryAmino;
480
+ }
481
+ export interface CompressedExistenceProof {
482
+ key: Uint8Array;
483
+ value: Uint8Array;
484
+ leaf?: LeafOp;
485
+ /** these are indexes into the lookup_inners table in CompressedBatchProof */
486
+ path: number[];
487
+ }
488
+ export interface CompressedExistenceProofProtoMsg {
489
+ typeUrl: "/cosmos.ics23.v1.CompressedExistenceProof";
490
+ value: Uint8Array;
491
+ }
492
+ export interface CompressedExistenceProofAmino {
493
+ key: string;
494
+ value: string;
495
+ leaf?: LeafOpAmino;
496
+ /** these are indexes into the lookup_inners table in CompressedBatchProof */
497
+ path: number[];
498
+ }
499
+ export interface CompressedExistenceProofAminoMsg {
500
+ type: "cosmos-sdk/CompressedExistenceProof";
501
+ value: CompressedExistenceProofAmino;
502
+ }
503
+ export interface CompressedNonExistenceProof {
504
+ /** TODO: remove this as unnecessary??? we prove a range */
505
+ key: Uint8Array;
506
+ left?: CompressedExistenceProof;
507
+ right?: CompressedExistenceProof;
508
+ }
509
+ export interface CompressedNonExistenceProofProtoMsg {
510
+ typeUrl: "/cosmos.ics23.v1.CompressedNonExistenceProof";
511
+ value: Uint8Array;
512
+ }
513
+ export interface CompressedNonExistenceProofAmino {
514
+ /** TODO: remove this as unnecessary??? we prove a range */
515
+ key: string;
516
+ left?: CompressedExistenceProofAmino;
517
+ right?: CompressedExistenceProofAmino;
518
+ }
519
+ export interface CompressedNonExistenceProofAminoMsg {
520
+ type: "cosmos-sdk/CompressedNonExistenceProof";
521
+ value: CompressedNonExistenceProofAmino;
522
+ }
523
+ export declare const ExistenceProof: {
524
+ typeUrl: string;
525
+ aminoType: string;
526
+ is(o: any): o is ExistenceProof;
527
+ isAmino(o: any): o is ExistenceProofAmino;
528
+ encode(message: ExistenceProof, writer?: BinaryWriter): BinaryWriter;
529
+ decode(input: BinaryReader | Uint8Array, length?: number): ExistenceProof;
530
+ fromPartial(object: DeepPartial<ExistenceProof>): ExistenceProof;
531
+ fromAmino(object: ExistenceProofAmino): ExistenceProof;
532
+ toAmino(message: ExistenceProof): ExistenceProofAmino;
533
+ fromAminoMsg(object: ExistenceProofAminoMsg): ExistenceProof;
534
+ toAminoMsg(message: ExistenceProof): ExistenceProofAminoMsg;
535
+ fromProtoMsg(message: ExistenceProofProtoMsg): ExistenceProof;
536
+ toProto(message: ExistenceProof): Uint8Array;
537
+ toProtoMsg(message: ExistenceProof): ExistenceProofProtoMsg;
538
+ };
539
+ export declare const NonExistenceProof: {
540
+ typeUrl: string;
541
+ aminoType: string;
542
+ is(o: any): o is NonExistenceProof;
543
+ isAmino(o: any): o is NonExistenceProofAmino;
544
+ encode(message: NonExistenceProof, writer?: BinaryWriter): BinaryWriter;
545
+ decode(input: BinaryReader | Uint8Array, length?: number): NonExistenceProof;
546
+ fromPartial(object: DeepPartial<NonExistenceProof>): NonExistenceProof;
547
+ fromAmino(object: NonExistenceProofAmino): NonExistenceProof;
548
+ toAmino(message: NonExistenceProof): NonExistenceProofAmino;
549
+ fromAminoMsg(object: NonExistenceProofAminoMsg): NonExistenceProof;
550
+ toAminoMsg(message: NonExistenceProof): NonExistenceProofAminoMsg;
551
+ fromProtoMsg(message: NonExistenceProofProtoMsg): NonExistenceProof;
552
+ toProto(message: NonExistenceProof): Uint8Array;
553
+ toProtoMsg(message: NonExistenceProof): NonExistenceProofProtoMsg;
554
+ };
555
+ export declare const CommitmentProof: {
556
+ typeUrl: string;
557
+ aminoType: string;
558
+ is(o: any): o is CommitmentProof;
559
+ isAmino(o: any): o is CommitmentProofAmino;
560
+ encode(message: CommitmentProof, writer?: BinaryWriter): BinaryWriter;
561
+ decode(input: BinaryReader | Uint8Array, length?: number): CommitmentProof;
562
+ fromPartial(object: DeepPartial<CommitmentProof>): CommitmentProof;
563
+ fromAmino(object: CommitmentProofAmino): CommitmentProof;
564
+ toAmino(message: CommitmentProof): CommitmentProofAmino;
565
+ fromAminoMsg(object: CommitmentProofAminoMsg): CommitmentProof;
566
+ toAminoMsg(message: CommitmentProof): CommitmentProofAminoMsg;
567
+ fromProtoMsg(message: CommitmentProofProtoMsg): CommitmentProof;
568
+ toProto(message: CommitmentProof): Uint8Array;
569
+ toProtoMsg(message: CommitmentProof): CommitmentProofProtoMsg;
570
+ };
571
+ export declare const LeafOp: {
572
+ typeUrl: string;
573
+ aminoType: string;
574
+ is(o: any): o is LeafOp;
575
+ isAmino(o: any): o is LeafOpAmino;
576
+ encode(message: LeafOp, writer?: BinaryWriter): BinaryWriter;
577
+ decode(input: BinaryReader | Uint8Array, length?: number): LeafOp;
578
+ fromPartial(object: DeepPartial<LeafOp>): LeafOp;
579
+ fromAmino(object: LeafOpAmino): LeafOp;
580
+ toAmino(message: LeafOp): LeafOpAmino;
581
+ fromAminoMsg(object: LeafOpAminoMsg): LeafOp;
582
+ toAminoMsg(message: LeafOp): LeafOpAminoMsg;
583
+ fromProtoMsg(message: LeafOpProtoMsg): LeafOp;
584
+ toProto(message: LeafOp): Uint8Array;
585
+ toProtoMsg(message: LeafOp): LeafOpProtoMsg;
586
+ };
587
+ export declare const InnerOp: {
588
+ typeUrl: string;
589
+ aminoType: string;
590
+ is(o: any): o is InnerOp;
591
+ isAmino(o: any): o is InnerOpAmino;
592
+ encode(message: InnerOp, writer?: BinaryWriter): BinaryWriter;
593
+ decode(input: BinaryReader | Uint8Array, length?: number): InnerOp;
594
+ fromPartial(object: DeepPartial<InnerOp>): InnerOp;
595
+ fromAmino(object: InnerOpAmino): InnerOp;
596
+ toAmino(message: InnerOp): InnerOpAmino;
597
+ fromAminoMsg(object: InnerOpAminoMsg): InnerOp;
598
+ toAminoMsg(message: InnerOp): InnerOpAminoMsg;
599
+ fromProtoMsg(message: InnerOpProtoMsg): InnerOp;
600
+ toProto(message: InnerOp): Uint8Array;
601
+ toProtoMsg(message: InnerOp): InnerOpProtoMsg;
602
+ };
603
+ export declare const ProofSpec: {
604
+ typeUrl: string;
605
+ aminoType: string;
606
+ is(o: any): o is ProofSpec;
607
+ isAmino(o: any): o is ProofSpecAmino;
608
+ encode(message: ProofSpec, writer?: BinaryWriter): BinaryWriter;
609
+ decode(input: BinaryReader | Uint8Array, length?: number): ProofSpec;
610
+ fromPartial(object: DeepPartial<ProofSpec>): ProofSpec;
611
+ fromAmino(object: ProofSpecAmino): ProofSpec;
612
+ toAmino(message: ProofSpec): ProofSpecAmino;
613
+ fromAminoMsg(object: ProofSpecAminoMsg): ProofSpec;
614
+ toAminoMsg(message: ProofSpec): ProofSpecAminoMsg;
615
+ fromProtoMsg(message: ProofSpecProtoMsg): ProofSpec;
616
+ toProto(message: ProofSpec): Uint8Array;
617
+ toProtoMsg(message: ProofSpec): ProofSpecProtoMsg;
618
+ };
619
+ export declare const InnerSpec: {
620
+ typeUrl: string;
621
+ aminoType: string;
622
+ is(o: any): o is InnerSpec;
623
+ isAmino(o: any): o is InnerSpecAmino;
624
+ encode(message: InnerSpec, writer?: BinaryWriter): BinaryWriter;
625
+ decode(input: BinaryReader | Uint8Array, length?: number): InnerSpec;
626
+ fromPartial(object: DeepPartial<InnerSpec>): InnerSpec;
627
+ fromAmino(object: InnerSpecAmino): InnerSpec;
628
+ toAmino(message: InnerSpec): InnerSpecAmino;
629
+ fromAminoMsg(object: InnerSpecAminoMsg): InnerSpec;
630
+ toAminoMsg(message: InnerSpec): InnerSpecAminoMsg;
631
+ fromProtoMsg(message: InnerSpecProtoMsg): InnerSpec;
632
+ toProto(message: InnerSpec): Uint8Array;
633
+ toProtoMsg(message: InnerSpec): InnerSpecProtoMsg;
634
+ };
635
+ export declare const BatchProof: {
636
+ typeUrl: string;
637
+ aminoType: string;
638
+ is(o: any): o is BatchProof;
639
+ isAmino(o: any): o is BatchProofAmino;
640
+ encode(message: BatchProof, writer?: BinaryWriter): BinaryWriter;
641
+ decode(input: BinaryReader | Uint8Array, length?: number): BatchProof;
642
+ fromPartial(object: DeepPartial<BatchProof>): BatchProof;
643
+ fromAmino(object: BatchProofAmino): BatchProof;
644
+ toAmino(message: BatchProof): BatchProofAmino;
645
+ fromAminoMsg(object: BatchProofAminoMsg): BatchProof;
646
+ toAminoMsg(message: BatchProof): BatchProofAminoMsg;
647
+ fromProtoMsg(message: BatchProofProtoMsg): BatchProof;
648
+ toProto(message: BatchProof): Uint8Array;
649
+ toProtoMsg(message: BatchProof): BatchProofProtoMsg;
650
+ };
651
+ export declare const BatchEntry: {
652
+ typeUrl: string;
653
+ aminoType: string;
654
+ is(o: any): o is BatchEntry;
655
+ isAmino(o: any): o is BatchEntryAmino;
656
+ encode(message: BatchEntry, writer?: BinaryWriter): BinaryWriter;
657
+ decode(input: BinaryReader | Uint8Array, length?: number): BatchEntry;
658
+ fromPartial(object: DeepPartial<BatchEntry>): BatchEntry;
659
+ fromAmino(object: BatchEntryAmino): BatchEntry;
660
+ toAmino(message: BatchEntry): BatchEntryAmino;
661
+ fromAminoMsg(object: BatchEntryAminoMsg): BatchEntry;
662
+ toAminoMsg(message: BatchEntry): BatchEntryAminoMsg;
663
+ fromProtoMsg(message: BatchEntryProtoMsg): BatchEntry;
664
+ toProto(message: BatchEntry): Uint8Array;
665
+ toProtoMsg(message: BatchEntry): BatchEntryProtoMsg;
666
+ };
667
+ export declare const CompressedBatchProof: {
668
+ typeUrl: string;
669
+ aminoType: string;
670
+ is(o: any): o is CompressedBatchProof;
671
+ isAmino(o: any): o is CompressedBatchProofAmino;
672
+ encode(message: CompressedBatchProof, writer?: BinaryWriter): BinaryWriter;
673
+ decode(input: BinaryReader | Uint8Array, length?: number): CompressedBatchProof;
674
+ fromPartial(object: DeepPartial<CompressedBatchProof>): CompressedBatchProof;
675
+ fromAmino(object: CompressedBatchProofAmino): CompressedBatchProof;
676
+ toAmino(message: CompressedBatchProof): CompressedBatchProofAmino;
677
+ fromAminoMsg(object: CompressedBatchProofAminoMsg): CompressedBatchProof;
678
+ toAminoMsg(message: CompressedBatchProof): CompressedBatchProofAminoMsg;
679
+ fromProtoMsg(message: CompressedBatchProofProtoMsg): CompressedBatchProof;
680
+ toProto(message: CompressedBatchProof): Uint8Array;
681
+ toProtoMsg(message: CompressedBatchProof): CompressedBatchProofProtoMsg;
682
+ };
683
+ export declare const CompressedBatchEntry: {
684
+ typeUrl: string;
685
+ aminoType: string;
686
+ is(o: any): o is CompressedBatchEntry;
687
+ isAmino(o: any): o is CompressedBatchEntryAmino;
688
+ encode(message: CompressedBatchEntry, writer?: BinaryWriter): BinaryWriter;
689
+ decode(input: BinaryReader | Uint8Array, length?: number): CompressedBatchEntry;
690
+ fromPartial(object: DeepPartial<CompressedBatchEntry>): CompressedBatchEntry;
691
+ fromAmino(object: CompressedBatchEntryAmino): CompressedBatchEntry;
692
+ toAmino(message: CompressedBatchEntry): CompressedBatchEntryAmino;
693
+ fromAminoMsg(object: CompressedBatchEntryAminoMsg): CompressedBatchEntry;
694
+ toAminoMsg(message: CompressedBatchEntry): CompressedBatchEntryAminoMsg;
695
+ fromProtoMsg(message: CompressedBatchEntryProtoMsg): CompressedBatchEntry;
696
+ toProto(message: CompressedBatchEntry): Uint8Array;
697
+ toProtoMsg(message: CompressedBatchEntry): CompressedBatchEntryProtoMsg;
698
+ };
699
+ export declare const CompressedExistenceProof: {
700
+ typeUrl: string;
701
+ aminoType: string;
702
+ is(o: any): o is CompressedExistenceProof;
703
+ isAmino(o: any): o is CompressedExistenceProofAmino;
704
+ encode(message: CompressedExistenceProof, writer?: BinaryWriter): BinaryWriter;
705
+ decode(input: BinaryReader | Uint8Array, length?: number): CompressedExistenceProof;
706
+ fromPartial(object: DeepPartial<CompressedExistenceProof>): CompressedExistenceProof;
707
+ fromAmino(object: CompressedExistenceProofAmino): CompressedExistenceProof;
708
+ toAmino(message: CompressedExistenceProof): CompressedExistenceProofAmino;
709
+ fromAminoMsg(object: CompressedExistenceProofAminoMsg): CompressedExistenceProof;
710
+ toAminoMsg(message: CompressedExistenceProof): CompressedExistenceProofAminoMsg;
711
+ fromProtoMsg(message: CompressedExistenceProofProtoMsg): CompressedExistenceProof;
712
+ toProto(message: CompressedExistenceProof): Uint8Array;
713
+ toProtoMsg(message: CompressedExistenceProof): CompressedExistenceProofProtoMsg;
714
+ };
715
+ export declare const CompressedNonExistenceProof: {
716
+ typeUrl: string;
717
+ aminoType: string;
718
+ is(o: any): o is CompressedNonExistenceProof;
719
+ isAmino(o: any): o is CompressedNonExistenceProofAmino;
720
+ encode(message: CompressedNonExistenceProof, writer?: BinaryWriter): BinaryWriter;
721
+ decode(input: BinaryReader | Uint8Array, length?: number): CompressedNonExistenceProof;
722
+ fromPartial(object: DeepPartial<CompressedNonExistenceProof>): CompressedNonExistenceProof;
723
+ fromAmino(object: CompressedNonExistenceProofAmino): CompressedNonExistenceProof;
724
+ toAmino(message: CompressedNonExistenceProof): CompressedNonExistenceProofAmino;
725
+ fromAminoMsg(object: CompressedNonExistenceProofAminoMsg): CompressedNonExistenceProof;
726
+ toAminoMsg(message: CompressedNonExistenceProof): CompressedNonExistenceProofAminoMsg;
727
+ fromProtoMsg(message: CompressedNonExistenceProofProtoMsg): CompressedNonExistenceProof;
728
+ toProto(message: CompressedNonExistenceProof): Uint8Array;
729
+ toProtoMsg(message: CompressedNonExistenceProof): CompressedNonExistenceProofProtoMsg;
730
+ };