@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,856 @@
1
+ import { Any, AnyAmino } from "../../../google/protobuf/any";
2
+ import { SignMode } from "../signing/v1beta1/signing";
3
+ import { CompactBitArray, CompactBitArrayAmino } from "../../crypto/multisig/v1beta1/multisig";
4
+ import { Coin, CoinAmino } from "../../base/v1beta1/coin";
5
+ import { BinaryReader, BinaryWriter } from "../../../binary";
6
+ import { DeepPartial } from "../../../helpers";
7
+ /** Tx is the standard type used for broadcasting transactions. */
8
+ export interface Tx {
9
+ /** body is the processable content of the transaction */
10
+ body?: TxBody;
11
+ /**
12
+ * auth_info is the authorization related content of the transaction,
13
+ * specifically signers, signer modes and fee
14
+ */
15
+ authInfo?: AuthInfo;
16
+ /**
17
+ * signatures is a list of signatures that matches the length and order of
18
+ * AuthInfo's signer_infos to allow connecting signature meta information like
19
+ * public key and signing mode by position.
20
+ */
21
+ signatures: Uint8Array[];
22
+ }
23
+ export interface TxProtoMsg {
24
+ typeUrl: "/cosmos.tx.v1beta1.Tx";
25
+ value: Uint8Array;
26
+ }
27
+ /** Tx is the standard type used for broadcasting transactions. */
28
+ export interface TxAmino {
29
+ /** body is the processable content of the transaction */
30
+ body?: TxBodyAmino;
31
+ /**
32
+ * auth_info is the authorization related content of the transaction,
33
+ * specifically signers, signer modes and fee
34
+ */
35
+ auth_info?: AuthInfoAmino;
36
+ /**
37
+ * signatures is a list of signatures that matches the length and order of
38
+ * AuthInfo's signer_infos to allow connecting signature meta information like
39
+ * public key and signing mode by position.
40
+ */
41
+ signatures: string[];
42
+ }
43
+ export interface TxAminoMsg {
44
+ type: "cosmos-sdk/Tx";
45
+ value: TxAmino;
46
+ }
47
+ /**
48
+ * TxRaw is a variant of Tx that pins the signer's exact binary representation
49
+ * of body and auth_info. This is used for signing, broadcasting and
50
+ * verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and
51
+ * the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used
52
+ * as the transaction ID.
53
+ */
54
+ export interface TxRaw {
55
+ /**
56
+ * body_bytes is a protobuf serialization of a TxBody that matches the
57
+ * representation in SignDoc.
58
+ */
59
+ bodyBytes: Uint8Array;
60
+ /**
61
+ * auth_info_bytes is a protobuf serialization of an AuthInfo that matches the
62
+ * representation in SignDoc.
63
+ */
64
+ authInfoBytes: Uint8Array;
65
+ /**
66
+ * signatures is a list of signatures that matches the length and order of
67
+ * AuthInfo's signer_infos to allow connecting signature meta information like
68
+ * public key and signing mode by position.
69
+ */
70
+ signatures: Uint8Array[];
71
+ }
72
+ export interface TxRawProtoMsg {
73
+ typeUrl: "/cosmos.tx.v1beta1.TxRaw";
74
+ value: Uint8Array;
75
+ }
76
+ /**
77
+ * TxRaw is a variant of Tx that pins the signer's exact binary representation
78
+ * of body and auth_info. This is used for signing, broadcasting and
79
+ * verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and
80
+ * the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used
81
+ * as the transaction ID.
82
+ */
83
+ export interface TxRawAmino {
84
+ /**
85
+ * body_bytes is a protobuf serialization of a TxBody that matches the
86
+ * representation in SignDoc.
87
+ */
88
+ body_bytes: string;
89
+ /**
90
+ * auth_info_bytes is a protobuf serialization of an AuthInfo that matches the
91
+ * representation in SignDoc.
92
+ */
93
+ auth_info_bytes: string;
94
+ /**
95
+ * signatures is a list of signatures that matches the length and order of
96
+ * AuthInfo's signer_infos to allow connecting signature meta information like
97
+ * public key and signing mode by position.
98
+ */
99
+ signatures: string[];
100
+ }
101
+ export interface TxRawAminoMsg {
102
+ type: "cosmos-sdk/TxRaw";
103
+ value: TxRawAmino;
104
+ }
105
+ /** SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT. */
106
+ export interface SignDoc {
107
+ /**
108
+ * body_bytes is protobuf serialization of a TxBody that matches the
109
+ * representation in TxRaw.
110
+ */
111
+ bodyBytes: Uint8Array;
112
+ /**
113
+ * auth_info_bytes is a protobuf serialization of an AuthInfo that matches the
114
+ * representation in TxRaw.
115
+ */
116
+ authInfoBytes: Uint8Array;
117
+ /**
118
+ * chain_id is the unique identifier of the chain this transaction targets.
119
+ * It prevents signed transactions from being used on another chain by an
120
+ * attacker
121
+ */
122
+ chainId: string;
123
+ /** account_number is the account number of the account in state */
124
+ accountNumber: bigint;
125
+ }
126
+ export interface SignDocProtoMsg {
127
+ typeUrl: "/cosmos.tx.v1beta1.SignDoc";
128
+ value: Uint8Array;
129
+ }
130
+ /** SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT. */
131
+ export interface SignDocAmino {
132
+ /**
133
+ * body_bytes is protobuf serialization of a TxBody that matches the
134
+ * representation in TxRaw.
135
+ */
136
+ body_bytes: string;
137
+ /**
138
+ * auth_info_bytes is a protobuf serialization of an AuthInfo that matches the
139
+ * representation in TxRaw.
140
+ */
141
+ auth_info_bytes: string;
142
+ /**
143
+ * chain_id is the unique identifier of the chain this transaction targets.
144
+ * It prevents signed transactions from being used on another chain by an
145
+ * attacker
146
+ */
147
+ chain_id: string;
148
+ /** account_number is the account number of the account in state */
149
+ account_number: string;
150
+ }
151
+ export interface SignDocAminoMsg {
152
+ type: "cosmos-sdk/SignDoc";
153
+ value: SignDocAmino;
154
+ }
155
+ /**
156
+ * SignDocDirectAux is the type used for generating sign bytes for
157
+ * SIGN_MODE_DIRECT_AUX.
158
+ *
159
+ * Since: cosmos-sdk 0.46
160
+ */
161
+ export interface SignDocDirectAux {
162
+ /**
163
+ * body_bytes is protobuf serialization of a TxBody that matches the
164
+ * representation in TxRaw.
165
+ */
166
+ bodyBytes: Uint8Array;
167
+ /** public_key is the public key of the signing account. */
168
+ publicKey?: Any;
169
+ /**
170
+ * chain_id is the identifier of the chain this transaction targets.
171
+ * It prevents signed transactions from being used on another chain by an
172
+ * attacker.
173
+ */
174
+ chainId: string;
175
+ /** account_number is the account number of the account in state. */
176
+ accountNumber: bigint;
177
+ /** sequence is the sequence number of the signing account. */
178
+ sequence: bigint;
179
+ /** tips have been depreacted and should not be used */
180
+ /** @deprecated */
181
+ tip?: Tip;
182
+ }
183
+ export interface SignDocDirectAuxProtoMsg {
184
+ typeUrl: "/cosmos.tx.v1beta1.SignDocDirectAux";
185
+ value: Uint8Array;
186
+ }
187
+ /**
188
+ * SignDocDirectAux is the type used for generating sign bytes for
189
+ * SIGN_MODE_DIRECT_AUX.
190
+ *
191
+ * Since: cosmos-sdk 0.46
192
+ */
193
+ export interface SignDocDirectAuxAmino {
194
+ /**
195
+ * body_bytes is protobuf serialization of a TxBody that matches the
196
+ * representation in TxRaw.
197
+ */
198
+ body_bytes: string;
199
+ /** public_key is the public key of the signing account. */
200
+ public_key?: AnyAmino;
201
+ /**
202
+ * chain_id is the identifier of the chain this transaction targets.
203
+ * It prevents signed transactions from being used on another chain by an
204
+ * attacker.
205
+ */
206
+ chain_id: string;
207
+ /** account_number is the account number of the account in state. */
208
+ account_number: string;
209
+ /** sequence is the sequence number of the signing account. */
210
+ sequence: string;
211
+ /** tips have been depreacted and should not be used */
212
+ /** @deprecated */
213
+ tip?: TipAmino;
214
+ }
215
+ export interface SignDocDirectAuxAminoMsg {
216
+ type: "cosmos-sdk/SignDocDirectAux";
217
+ value: SignDocDirectAuxAmino;
218
+ }
219
+ /** TxBody is the body of a transaction that all signers sign over. */
220
+ export interface TxBody {
221
+ /**
222
+ * messages is a list of messages to be executed. The required signers of
223
+ * those messages define the number and order of elements in AuthInfo's
224
+ * signer_infos and Tx's signatures. Each required signer address is added to
225
+ * the list only the first time it occurs.
226
+ * By convention, the first required signer (usually from the first message)
227
+ * is referred to as the primary signer and pays the fee for the whole
228
+ * transaction.
229
+ */
230
+ messages: Any[];
231
+ /**
232
+ * memo is any arbitrary note/comment to be added to the transaction.
233
+ * WARNING: in clients, any publicly exposed text should not be called memo,
234
+ * but should be called `note` instead (see https://github.com/cosmos/cosmos-sdk/issues/9122).
235
+ */
236
+ memo: string;
237
+ /**
238
+ * timeout is the block height after which this transaction will not
239
+ * be processed by the chain
240
+ */
241
+ timeoutHeight: bigint;
242
+ /**
243
+ * extension_options are arbitrary options that can be added by chains
244
+ * when the default options are not sufficient. If any of these are present
245
+ * and can't be handled, the transaction will be rejected
246
+ */
247
+ extensionOptions: Any[];
248
+ /**
249
+ * extension_options are arbitrary options that can be added by chains
250
+ * when the default options are not sufficient. If any of these are present
251
+ * and can't be handled, they will be ignored
252
+ */
253
+ nonCriticalExtensionOptions: Any[];
254
+ }
255
+ export interface TxBodyProtoMsg {
256
+ typeUrl: "/cosmos.tx.v1beta1.TxBody";
257
+ value: Uint8Array;
258
+ }
259
+ /** TxBody is the body of a transaction that all signers sign over. */
260
+ export interface TxBodyAmino {
261
+ /**
262
+ * messages is a list of messages to be executed. The required signers of
263
+ * those messages define the number and order of elements in AuthInfo's
264
+ * signer_infos and Tx's signatures. Each required signer address is added to
265
+ * the list only the first time it occurs.
266
+ * By convention, the first required signer (usually from the first message)
267
+ * is referred to as the primary signer and pays the fee for the whole
268
+ * transaction.
269
+ */
270
+ messages: AnyAmino[];
271
+ /**
272
+ * memo is any arbitrary note/comment to be added to the transaction.
273
+ * WARNING: in clients, any publicly exposed text should not be called memo,
274
+ * but should be called `note` instead (see https://github.com/cosmos/cosmos-sdk/issues/9122).
275
+ */
276
+ memo: string;
277
+ /**
278
+ * timeout is the block height after which this transaction will not
279
+ * be processed by the chain
280
+ */
281
+ timeout_height: string;
282
+ /**
283
+ * extension_options are arbitrary options that can be added by chains
284
+ * when the default options are not sufficient. If any of these are present
285
+ * and can't be handled, the transaction will be rejected
286
+ */
287
+ extension_options: AnyAmino[];
288
+ /**
289
+ * extension_options are arbitrary options that can be added by chains
290
+ * when the default options are not sufficient. If any of these are present
291
+ * and can't be handled, they will be ignored
292
+ */
293
+ non_critical_extension_options: AnyAmino[];
294
+ }
295
+ export interface TxBodyAminoMsg {
296
+ type: "cosmos-sdk/TxBody";
297
+ value: TxBodyAmino;
298
+ }
299
+ /**
300
+ * AuthInfo describes the fee and signer modes that are used to sign a
301
+ * transaction.
302
+ */
303
+ export interface AuthInfo {
304
+ /**
305
+ * signer_infos defines the signing modes for the required signers. The number
306
+ * and order of elements must match the required signers from TxBody's
307
+ * messages. The first element is the primary signer and the one which pays
308
+ * the fee.
309
+ */
310
+ signerInfos: SignerInfo[];
311
+ /**
312
+ * Fee is the fee and gas limit for the transaction. The first signer is the
313
+ * primary signer and the one which pays the fee. The fee can be calculated
314
+ * based on the cost of evaluating the body and doing signature verification
315
+ * of the signers. This can be estimated via simulation.
316
+ */
317
+ fee?: Fee;
318
+ /**
319
+ * Tip is the optional tip used for transactions fees paid in another denom.
320
+ *
321
+ * This field is ignored if the chain didn't enable tips, i.e. didn't add the
322
+ * `TipDecorator` in its posthandler.
323
+ *
324
+ * Since: cosmos-sdk 0.46
325
+ */
326
+ /** @deprecated */
327
+ tip?: Tip;
328
+ }
329
+ export interface AuthInfoProtoMsg {
330
+ typeUrl: "/cosmos.tx.v1beta1.AuthInfo";
331
+ value: Uint8Array;
332
+ }
333
+ /**
334
+ * AuthInfo describes the fee and signer modes that are used to sign a
335
+ * transaction.
336
+ */
337
+ export interface AuthInfoAmino {
338
+ /**
339
+ * signer_infos defines the signing modes for the required signers. The number
340
+ * and order of elements must match the required signers from TxBody's
341
+ * messages. The first element is the primary signer and the one which pays
342
+ * the fee.
343
+ */
344
+ signer_infos: SignerInfoAmino[];
345
+ /**
346
+ * Fee is the fee and gas limit for the transaction. The first signer is the
347
+ * primary signer and the one which pays the fee. The fee can be calculated
348
+ * based on the cost of evaluating the body and doing signature verification
349
+ * of the signers. This can be estimated via simulation.
350
+ */
351
+ fee?: FeeAmino;
352
+ /**
353
+ * Tip is the optional tip used for transactions fees paid in another denom.
354
+ *
355
+ * This field is ignored if the chain didn't enable tips, i.e. didn't add the
356
+ * `TipDecorator` in its posthandler.
357
+ *
358
+ * Since: cosmos-sdk 0.46
359
+ */
360
+ /** @deprecated */
361
+ tip?: TipAmino;
362
+ }
363
+ export interface AuthInfoAminoMsg {
364
+ type: "cosmos-sdk/AuthInfo";
365
+ value: AuthInfoAmino;
366
+ }
367
+ /**
368
+ * SignerInfo describes the public key and signing mode of a single top-level
369
+ * signer.
370
+ */
371
+ export interface SignerInfo {
372
+ /**
373
+ * public_key is the public key of the signer. It is optional for accounts
374
+ * that already exist in state. If unset, the verifier can use the required \
375
+ * signer address for this position and lookup the public key.
376
+ */
377
+ publicKey?: Any;
378
+ /**
379
+ * mode_info describes the signing mode of the signer and is a nested
380
+ * structure to support nested multisig pubkey's
381
+ */
382
+ modeInfo?: ModeInfo;
383
+ /**
384
+ * sequence is the sequence of the account, which describes the
385
+ * number of committed transactions signed by a given address. It is used to
386
+ * prevent replay attacks.
387
+ */
388
+ sequence: bigint;
389
+ }
390
+ export interface SignerInfoProtoMsg {
391
+ typeUrl: "/cosmos.tx.v1beta1.SignerInfo";
392
+ value: Uint8Array;
393
+ }
394
+ /**
395
+ * SignerInfo describes the public key and signing mode of a single top-level
396
+ * signer.
397
+ */
398
+ export interface SignerInfoAmino {
399
+ /**
400
+ * public_key is the public key of the signer. It is optional for accounts
401
+ * that already exist in state. If unset, the verifier can use the required \
402
+ * signer address for this position and lookup the public key.
403
+ */
404
+ public_key?: AnyAmino;
405
+ /**
406
+ * mode_info describes the signing mode of the signer and is a nested
407
+ * structure to support nested multisig pubkey's
408
+ */
409
+ mode_info?: ModeInfoAmino;
410
+ /**
411
+ * sequence is the sequence of the account, which describes the
412
+ * number of committed transactions signed by a given address. It is used to
413
+ * prevent replay attacks.
414
+ */
415
+ sequence: string;
416
+ }
417
+ export interface SignerInfoAminoMsg {
418
+ type: "cosmos-sdk/SignerInfo";
419
+ value: SignerInfoAmino;
420
+ }
421
+ /** ModeInfo describes the signing mode of a single or nested multisig signer. */
422
+ export interface ModeInfo {
423
+ /** single represents a single signer */
424
+ single?: ModeInfo_Single;
425
+ /** multi represents a nested multisig signer */
426
+ multi?: ModeInfo_Multi;
427
+ }
428
+ export interface ModeInfoProtoMsg {
429
+ typeUrl: "/cosmos.tx.v1beta1.ModeInfo";
430
+ value: Uint8Array;
431
+ }
432
+ /** ModeInfo describes the signing mode of a single or nested multisig signer. */
433
+ export interface ModeInfoAmino {
434
+ /** single represents a single signer */
435
+ single?: ModeInfo_SingleAmino;
436
+ /** multi represents a nested multisig signer */
437
+ multi?: ModeInfo_MultiAmino;
438
+ }
439
+ export interface ModeInfoAminoMsg {
440
+ type: "cosmos-sdk/ModeInfo";
441
+ value: ModeInfoAmino;
442
+ }
443
+ /**
444
+ * Single is the mode info for a single signer. It is structured as a message
445
+ * to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the
446
+ * future
447
+ */
448
+ export interface ModeInfo_Single {
449
+ /** mode is the signing mode of the single signer */
450
+ mode: SignMode;
451
+ }
452
+ export interface ModeInfo_SingleProtoMsg {
453
+ typeUrl: "/cosmos.tx.v1beta1.Single";
454
+ value: Uint8Array;
455
+ }
456
+ /**
457
+ * Single is the mode info for a single signer. It is structured as a message
458
+ * to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the
459
+ * future
460
+ */
461
+ export interface ModeInfo_SingleAmino {
462
+ /** mode is the signing mode of the single signer */
463
+ mode: SignMode;
464
+ }
465
+ export interface ModeInfo_SingleAminoMsg {
466
+ type: "cosmos-sdk/Single";
467
+ value: ModeInfo_SingleAmino;
468
+ }
469
+ /** Multi is the mode info for a multisig public key */
470
+ export interface ModeInfo_Multi {
471
+ /** bitarray specifies which keys within the multisig are signing */
472
+ bitarray?: CompactBitArray;
473
+ /**
474
+ * mode_infos is the corresponding modes of the signers of the multisig
475
+ * which could include nested multisig public keys
476
+ */
477
+ modeInfos: ModeInfo[];
478
+ }
479
+ export interface ModeInfo_MultiProtoMsg {
480
+ typeUrl: "/cosmos.tx.v1beta1.Multi";
481
+ value: Uint8Array;
482
+ }
483
+ /** Multi is the mode info for a multisig public key */
484
+ export interface ModeInfo_MultiAmino {
485
+ /** bitarray specifies which keys within the multisig are signing */
486
+ bitarray?: CompactBitArrayAmino;
487
+ /**
488
+ * mode_infos is the corresponding modes of the signers of the multisig
489
+ * which could include nested multisig public keys
490
+ */
491
+ mode_infos: ModeInfoAmino[];
492
+ }
493
+ export interface ModeInfo_MultiAminoMsg {
494
+ type: "cosmos-sdk/Multi";
495
+ value: ModeInfo_MultiAmino;
496
+ }
497
+ /**
498
+ * Fee includes the amount of coins paid in fees and the maximum
499
+ * gas to be used by the transaction. The ratio yields an effective "gasprice",
500
+ * which must be above some miminum to be accepted into the mempool.
501
+ */
502
+ export interface Fee {
503
+ /** amount is the amount of coins to be paid as a fee */
504
+ amount: Coin[];
505
+ /**
506
+ * gas_limit is the maximum gas that can be used in transaction processing
507
+ * before an out of gas error occurs
508
+ */
509
+ gasLimit: bigint;
510
+ /**
511
+ * if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees.
512
+ * the payer must be a tx signer (and thus have signed this field in AuthInfo).
513
+ * setting this field does *not* change the ordering of required signers for the transaction.
514
+ */
515
+ payer: string;
516
+ /**
517
+ * if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used
518
+ * to pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does
519
+ * not support fee grants, this will fail
520
+ */
521
+ granter: string;
522
+ }
523
+ export interface FeeProtoMsg {
524
+ typeUrl: "/cosmos.tx.v1beta1.Fee";
525
+ value: Uint8Array;
526
+ }
527
+ /**
528
+ * Fee includes the amount of coins paid in fees and the maximum
529
+ * gas to be used by the transaction. The ratio yields an effective "gasprice",
530
+ * which must be above some miminum to be accepted into the mempool.
531
+ */
532
+ export interface FeeAmino {
533
+ /** amount is the amount of coins to be paid as a fee */
534
+ amount: CoinAmino[];
535
+ /**
536
+ * gas_limit is the maximum gas that can be used in transaction processing
537
+ * before an out of gas error occurs
538
+ */
539
+ gas_limit: string;
540
+ /**
541
+ * if unset, the first signer is responsible for paying the fees. If set, the specified account must pay the fees.
542
+ * the payer must be a tx signer (and thus have signed this field in AuthInfo).
543
+ * setting this field does *not* change the ordering of required signers for the transaction.
544
+ */
545
+ payer: string;
546
+ /**
547
+ * if set, the fee payer (either the first signer or the value of the payer field) requests that a fee grant be used
548
+ * to pay fees instead of the fee payer's own balance. If an appropriate fee grant does not exist or the chain does
549
+ * not support fee grants, this will fail
550
+ */
551
+ granter: string;
552
+ }
553
+ export interface FeeAminoMsg {
554
+ type: "cosmos-sdk/Fee";
555
+ value: FeeAmino;
556
+ }
557
+ /**
558
+ * Tip is the tip used for meta-transactions.
559
+ *
560
+ * Since: cosmos-sdk 0.46
561
+ */
562
+ /** @deprecated */
563
+ export interface Tip {
564
+ /** amount is the amount of the tip */
565
+ amount: Coin[];
566
+ /** tipper is the address of the account paying for the tip */
567
+ tipper: string;
568
+ }
569
+ export interface TipProtoMsg {
570
+ typeUrl: "/cosmos.tx.v1beta1.Tip";
571
+ value: Uint8Array;
572
+ }
573
+ /**
574
+ * Tip is the tip used for meta-transactions.
575
+ *
576
+ * Since: cosmos-sdk 0.46
577
+ */
578
+ /** @deprecated */
579
+ export interface TipAmino {
580
+ /** amount is the amount of the tip */
581
+ amount: CoinAmino[];
582
+ /** tipper is the address of the account paying for the tip */
583
+ tipper: string;
584
+ }
585
+ export interface TipAminoMsg {
586
+ type: "cosmos-sdk/Tip";
587
+ value: TipAmino;
588
+ }
589
+ /**
590
+ * AuxSignerData is the intermediary format that an auxiliary signer (e.g. a
591
+ * tipper) builds and sends to the fee payer (who will build and broadcast the
592
+ * actual tx). AuxSignerData is not a valid tx in itself, and will be rejected
593
+ * by the node if sent directly as-is.
594
+ *
595
+ * Since: cosmos-sdk 0.46
596
+ */
597
+ export interface AuxSignerData {
598
+ /**
599
+ * address is the bech32-encoded address of the auxiliary signer. If using
600
+ * AuxSignerData across different chains, the bech32 prefix of the target
601
+ * chain (where the final transaction is broadcasted) should be used.
602
+ */
603
+ address: string;
604
+ /**
605
+ * sign_doc is the SIGN_MODE_DIRECT_AUX sign doc that the auxiliary signer
606
+ * signs. Note: we use the same sign doc even if we're signing with
607
+ * LEGACY_AMINO_JSON.
608
+ */
609
+ signDoc?: SignDocDirectAux;
610
+ /** mode is the signing mode of the single signer. */
611
+ mode: SignMode;
612
+ /** sig is the signature of the sign doc. */
613
+ sig: Uint8Array;
614
+ }
615
+ export interface AuxSignerDataProtoMsg {
616
+ typeUrl: "/cosmos.tx.v1beta1.AuxSignerData";
617
+ value: Uint8Array;
618
+ }
619
+ /**
620
+ * AuxSignerData is the intermediary format that an auxiliary signer (e.g. a
621
+ * tipper) builds and sends to the fee payer (who will build and broadcast the
622
+ * actual tx). AuxSignerData is not a valid tx in itself, and will be rejected
623
+ * by the node if sent directly as-is.
624
+ *
625
+ * Since: cosmos-sdk 0.46
626
+ */
627
+ export interface AuxSignerDataAmino {
628
+ /**
629
+ * address is the bech32-encoded address of the auxiliary signer. If using
630
+ * AuxSignerData across different chains, the bech32 prefix of the target
631
+ * chain (where the final transaction is broadcasted) should be used.
632
+ */
633
+ address: string;
634
+ /**
635
+ * sign_doc is the SIGN_MODE_DIRECT_AUX sign doc that the auxiliary signer
636
+ * signs. Note: we use the same sign doc even if we're signing with
637
+ * LEGACY_AMINO_JSON.
638
+ */
639
+ sign_doc?: SignDocDirectAuxAmino;
640
+ /** mode is the signing mode of the single signer. */
641
+ mode: SignMode;
642
+ /** sig is the signature of the sign doc. */
643
+ sig: string;
644
+ }
645
+ export interface AuxSignerDataAminoMsg {
646
+ type: "cosmos-sdk/AuxSignerData";
647
+ value: AuxSignerDataAmino;
648
+ }
649
+ export declare const Tx: {
650
+ typeUrl: string;
651
+ aminoType: string;
652
+ is(o: any): o is Tx;
653
+ isAmino(o: any): o is TxAmino;
654
+ encode(message: Tx, writer?: BinaryWriter): BinaryWriter;
655
+ decode(input: BinaryReader | Uint8Array, length?: number): Tx;
656
+ fromPartial(object: DeepPartial<Tx>): Tx;
657
+ fromAmino(object: TxAmino): Tx;
658
+ toAmino(message: Tx): TxAmino;
659
+ fromAminoMsg(object: TxAminoMsg): Tx;
660
+ toAminoMsg(message: Tx): TxAminoMsg;
661
+ fromProtoMsg(message: TxProtoMsg): Tx;
662
+ toProto(message: Tx): Uint8Array;
663
+ toProtoMsg(message: Tx): TxProtoMsg;
664
+ };
665
+ export declare const TxRaw: {
666
+ typeUrl: string;
667
+ aminoType: string;
668
+ is(o: any): o is TxRaw;
669
+ isAmino(o: any): o is TxRawAmino;
670
+ encode(message: TxRaw, writer?: BinaryWriter): BinaryWriter;
671
+ decode(input: BinaryReader | Uint8Array, length?: number): TxRaw;
672
+ fromPartial(object: DeepPartial<TxRaw>): TxRaw;
673
+ fromAmino(object: TxRawAmino): TxRaw;
674
+ toAmino(message: TxRaw): TxRawAmino;
675
+ fromAminoMsg(object: TxRawAminoMsg): TxRaw;
676
+ toAminoMsg(message: TxRaw): TxRawAminoMsg;
677
+ fromProtoMsg(message: TxRawProtoMsg): TxRaw;
678
+ toProto(message: TxRaw): Uint8Array;
679
+ toProtoMsg(message: TxRaw): TxRawProtoMsg;
680
+ };
681
+ export declare const SignDoc: {
682
+ typeUrl: string;
683
+ aminoType: string;
684
+ is(o: any): o is SignDoc;
685
+ isAmino(o: any): o is SignDocAmino;
686
+ encode(message: SignDoc, writer?: BinaryWriter): BinaryWriter;
687
+ decode(input: BinaryReader | Uint8Array, length?: number): SignDoc;
688
+ fromPartial(object: DeepPartial<SignDoc>): SignDoc;
689
+ fromAmino(object: SignDocAmino): SignDoc;
690
+ toAmino(message: SignDoc): SignDocAmino;
691
+ fromAminoMsg(object: SignDocAminoMsg): SignDoc;
692
+ toAminoMsg(message: SignDoc): SignDocAminoMsg;
693
+ fromProtoMsg(message: SignDocProtoMsg): SignDoc;
694
+ toProto(message: SignDoc): Uint8Array;
695
+ toProtoMsg(message: SignDoc): SignDocProtoMsg;
696
+ };
697
+ export declare const SignDocDirectAux: {
698
+ typeUrl: string;
699
+ aminoType: string;
700
+ is(o: any): o is SignDocDirectAux;
701
+ isAmino(o: any): o is SignDocDirectAuxAmino;
702
+ encode(message: SignDocDirectAux, writer?: BinaryWriter): BinaryWriter;
703
+ decode(input: BinaryReader | Uint8Array, length?: number): SignDocDirectAux;
704
+ fromPartial(object: DeepPartial<SignDocDirectAux>): SignDocDirectAux;
705
+ fromAmino(object: SignDocDirectAuxAmino): SignDocDirectAux;
706
+ toAmino(message: SignDocDirectAux): SignDocDirectAuxAmino;
707
+ fromAminoMsg(object: SignDocDirectAuxAminoMsg): SignDocDirectAux;
708
+ toAminoMsg(message: SignDocDirectAux): SignDocDirectAuxAminoMsg;
709
+ fromProtoMsg(message: SignDocDirectAuxProtoMsg): SignDocDirectAux;
710
+ toProto(message: SignDocDirectAux): Uint8Array;
711
+ toProtoMsg(message: SignDocDirectAux): SignDocDirectAuxProtoMsg;
712
+ };
713
+ export declare const TxBody: {
714
+ typeUrl: string;
715
+ aminoType: string;
716
+ is(o: any): o is TxBody;
717
+ isAmino(o: any): o is TxBodyAmino;
718
+ encode(message: TxBody, writer?: BinaryWriter): BinaryWriter;
719
+ decode(input: BinaryReader | Uint8Array, length?: number): TxBody;
720
+ fromPartial(object: DeepPartial<TxBody>): TxBody;
721
+ fromAmino(object: TxBodyAmino): TxBody;
722
+ toAmino(message: TxBody): TxBodyAmino;
723
+ fromAminoMsg(object: TxBodyAminoMsg): TxBody;
724
+ toAminoMsg(message: TxBody): TxBodyAminoMsg;
725
+ fromProtoMsg(message: TxBodyProtoMsg): TxBody;
726
+ toProto(message: TxBody): Uint8Array;
727
+ toProtoMsg(message: TxBody): TxBodyProtoMsg;
728
+ };
729
+ export declare const AuthInfo: {
730
+ typeUrl: string;
731
+ aminoType: string;
732
+ is(o: any): o is AuthInfo;
733
+ isAmino(o: any): o is AuthInfoAmino;
734
+ encode(message: AuthInfo, writer?: BinaryWriter): BinaryWriter;
735
+ decode(input: BinaryReader | Uint8Array, length?: number): AuthInfo;
736
+ fromPartial(object: DeepPartial<AuthInfo>): AuthInfo;
737
+ fromAmino(object: AuthInfoAmino): AuthInfo;
738
+ toAmino(message: AuthInfo): AuthInfoAmino;
739
+ fromAminoMsg(object: AuthInfoAminoMsg): AuthInfo;
740
+ toAminoMsg(message: AuthInfo): AuthInfoAminoMsg;
741
+ fromProtoMsg(message: AuthInfoProtoMsg): AuthInfo;
742
+ toProto(message: AuthInfo): Uint8Array;
743
+ toProtoMsg(message: AuthInfo): AuthInfoProtoMsg;
744
+ };
745
+ export declare const SignerInfo: {
746
+ typeUrl: string;
747
+ aminoType: string;
748
+ is(o: any): o is SignerInfo;
749
+ isAmino(o: any): o is SignerInfoAmino;
750
+ encode(message: SignerInfo, writer?: BinaryWriter): BinaryWriter;
751
+ decode(input: BinaryReader | Uint8Array, length?: number): SignerInfo;
752
+ fromPartial(object: DeepPartial<SignerInfo>): SignerInfo;
753
+ fromAmino(object: SignerInfoAmino): SignerInfo;
754
+ toAmino(message: SignerInfo): SignerInfoAmino;
755
+ fromAminoMsg(object: SignerInfoAminoMsg): SignerInfo;
756
+ toAminoMsg(message: SignerInfo): SignerInfoAminoMsg;
757
+ fromProtoMsg(message: SignerInfoProtoMsg): SignerInfo;
758
+ toProto(message: SignerInfo): Uint8Array;
759
+ toProtoMsg(message: SignerInfo): SignerInfoProtoMsg;
760
+ };
761
+ export declare const ModeInfo: {
762
+ typeUrl: string;
763
+ aminoType: string;
764
+ is(o: any): o is ModeInfo;
765
+ isAmino(o: any): o is ModeInfoAmino;
766
+ encode(message: ModeInfo, writer?: BinaryWriter): BinaryWriter;
767
+ decode(input: BinaryReader | Uint8Array, length?: number): ModeInfo;
768
+ fromPartial(object: DeepPartial<ModeInfo>): ModeInfo;
769
+ fromAmino(object: ModeInfoAmino): ModeInfo;
770
+ toAmino(message: ModeInfo): ModeInfoAmino;
771
+ fromAminoMsg(object: ModeInfoAminoMsg): ModeInfo;
772
+ toAminoMsg(message: ModeInfo): ModeInfoAminoMsg;
773
+ fromProtoMsg(message: ModeInfoProtoMsg): ModeInfo;
774
+ toProto(message: ModeInfo): Uint8Array;
775
+ toProtoMsg(message: ModeInfo): ModeInfoProtoMsg;
776
+ };
777
+ export declare const ModeInfo_Single: {
778
+ typeUrl: string;
779
+ aminoType: string;
780
+ is(o: any): o is ModeInfo_Single;
781
+ isAmino(o: any): o is ModeInfo_SingleAmino;
782
+ encode(message: ModeInfo_Single, writer?: BinaryWriter): BinaryWriter;
783
+ decode(input: BinaryReader | Uint8Array, length?: number): ModeInfo_Single;
784
+ fromPartial(object: DeepPartial<ModeInfo_Single>): ModeInfo_Single;
785
+ fromAmino(object: ModeInfo_SingleAmino): ModeInfo_Single;
786
+ toAmino(message: ModeInfo_Single): ModeInfo_SingleAmino;
787
+ fromAminoMsg(object: ModeInfo_SingleAminoMsg): ModeInfo_Single;
788
+ toAminoMsg(message: ModeInfo_Single): ModeInfo_SingleAminoMsg;
789
+ fromProtoMsg(message: ModeInfo_SingleProtoMsg): ModeInfo_Single;
790
+ toProto(message: ModeInfo_Single): Uint8Array;
791
+ toProtoMsg(message: ModeInfo_Single): ModeInfo_SingleProtoMsg;
792
+ };
793
+ export declare const ModeInfo_Multi: {
794
+ typeUrl: string;
795
+ aminoType: string;
796
+ is(o: any): o is ModeInfo_Multi;
797
+ isAmino(o: any): o is ModeInfo_MultiAmino;
798
+ encode(message: ModeInfo_Multi, writer?: BinaryWriter): BinaryWriter;
799
+ decode(input: BinaryReader | Uint8Array, length?: number): ModeInfo_Multi;
800
+ fromPartial(object: DeepPartial<ModeInfo_Multi>): ModeInfo_Multi;
801
+ fromAmino(object: ModeInfo_MultiAmino): ModeInfo_Multi;
802
+ toAmino(message: ModeInfo_Multi): ModeInfo_MultiAmino;
803
+ fromAminoMsg(object: ModeInfo_MultiAminoMsg): ModeInfo_Multi;
804
+ toAminoMsg(message: ModeInfo_Multi): ModeInfo_MultiAminoMsg;
805
+ fromProtoMsg(message: ModeInfo_MultiProtoMsg): ModeInfo_Multi;
806
+ toProto(message: ModeInfo_Multi): Uint8Array;
807
+ toProtoMsg(message: ModeInfo_Multi): ModeInfo_MultiProtoMsg;
808
+ };
809
+ export declare const Fee: {
810
+ typeUrl: string;
811
+ aminoType: string;
812
+ is(o: any): o is Fee;
813
+ isAmino(o: any): o is FeeAmino;
814
+ encode(message: Fee, writer?: BinaryWriter): BinaryWriter;
815
+ decode(input: BinaryReader | Uint8Array, length?: number): Fee;
816
+ fromPartial(object: DeepPartial<Fee>): Fee;
817
+ fromAmino(object: FeeAmino): Fee;
818
+ toAmino(message: Fee): FeeAmino;
819
+ fromAminoMsg(object: FeeAminoMsg): Fee;
820
+ toAminoMsg(message: Fee): FeeAminoMsg;
821
+ fromProtoMsg(message: FeeProtoMsg): Fee;
822
+ toProto(message: Fee): Uint8Array;
823
+ toProtoMsg(message: Fee): FeeProtoMsg;
824
+ };
825
+ export declare const Tip: {
826
+ typeUrl: string;
827
+ aminoType: string;
828
+ is(o: any): o is Tip;
829
+ isAmino(o: any): o is TipAmino;
830
+ encode(message: Tip, writer?: BinaryWriter): BinaryWriter;
831
+ decode(input: BinaryReader | Uint8Array, length?: number): Tip;
832
+ fromPartial(object: DeepPartial<Tip>): Tip;
833
+ fromAmino(object: TipAmino): Tip;
834
+ toAmino(message: Tip): TipAmino;
835
+ fromAminoMsg(object: TipAminoMsg): Tip;
836
+ toAminoMsg(message: Tip): TipAminoMsg;
837
+ fromProtoMsg(message: TipProtoMsg): Tip;
838
+ toProto(message: Tip): Uint8Array;
839
+ toProtoMsg(message: Tip): TipProtoMsg;
840
+ };
841
+ export declare const AuxSignerData: {
842
+ typeUrl: string;
843
+ aminoType: string;
844
+ is(o: any): o is AuxSignerData;
845
+ isAmino(o: any): o is AuxSignerDataAmino;
846
+ encode(message: AuxSignerData, writer?: BinaryWriter): BinaryWriter;
847
+ decode(input: BinaryReader | Uint8Array, length?: number): AuxSignerData;
848
+ fromPartial(object: DeepPartial<AuxSignerData>): AuxSignerData;
849
+ fromAmino(object: AuxSignerDataAmino): AuxSignerData;
850
+ toAmino(message: AuxSignerData): AuxSignerDataAmino;
851
+ fromAminoMsg(object: AuxSignerDataAminoMsg): AuxSignerData;
852
+ toAminoMsg(message: AuxSignerData): AuxSignerDataAminoMsg;
853
+ fromProtoMsg(message: AuxSignerDataProtoMsg): AuxSignerData;
854
+ toProto(message: AuxSignerData): Uint8Array;
855
+ toProtoMsg(message: AuxSignerData): AuxSignerDataProtoMsg;
856
+ };