decentralcardgame-cardchain-client-ts 0.0.1

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 (1540) hide show
  1. package/DecentralCardGame.cardchain.cardchain/index.js +5 -0
  2. package/DecentralCardGame.cardchain.cardchain/index.ts +6 -0
  3. package/DecentralCardGame.cardchain.cardchain/module.ts +1456 -0
  4. package/DecentralCardGame.cardchain.cardchain/registry.js +83 -0
  5. package/DecentralCardGame.cardchain.cardchain/registry.ts +87 -0
  6. package/DecentralCardGame.cardchain.cardchain/rest.js +396 -0
  7. package/DecentralCardGame.cardchain.cardchain/rest.ts +946 -0
  8. package/DecentralCardGame.cardchain.cardchain/types/cardchain/card.js +491 -0
  9. package/DecentralCardGame.cardchain.cardchain/types/cardchain/card.ts +556 -0
  10. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.js +497 -0
  11. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.ts +562 -0
  12. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.js +365 -0
  13. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.ts +416 -0
  14. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.js +93 -0
  15. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.ts +124 -0
  16. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.js +102 -0
  17. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.ts +134 -0
  18. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.js +356 -0
  19. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.ts +415 -0
  20. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.js +241 -0
  21. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.ts +267 -0
  22. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.js +88 -0
  23. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.ts +115 -0
  24. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.js +210 -0
  25. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.ts +255 -0
  26. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.js +67 -0
  27. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.ts +92 -0
  28. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.js +73 -0
  29. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.ts +102 -0
  30. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.js +275 -0
  31. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.ts +324 -0
  32. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.js +2186 -0
  33. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.ts +2617 -0
  34. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.js +85 -0
  35. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.ts +111 -0
  36. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.js +148 -0
  37. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.ts +183 -0
  38. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.js +93 -0
  39. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.ts +124 -0
  40. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.js +4136 -0
  41. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.ts +5125 -0
  42. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.js +554 -0
  43. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.ts +625 -0
  44. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.js +84 -0
  45. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.ts +114 -0
  46. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.js +127 -0
  47. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.ts +161 -0
  48. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.js +148 -0
  49. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.ts +182 -0
  50. package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection.js +365 -0
  51. package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection.ts +416 -0
  52. package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection_proposal.js +93 -0
  53. package/DecentralCardGame.cardchain.cardchain/types/cardchain/collection_proposal.ts +124 -0
  54. package/DecentralCardGame.cardchain.cardchain/types/cardchain/copyright_proposal.js +102 -0
  55. package/DecentralCardGame.cardchain.cardchain/types/cardchain/copyright_proposal.ts +134 -0
  56. package/DecentralCardGame.cardchain.cardchain/types/cardchain/council.js +350 -0
  57. package/DecentralCardGame.cardchain.cardchain/types/cardchain/council.ts +409 -0
  58. package/DecentralCardGame.cardchain.cardchain/types/cardchain/genesis.js +241 -0
  59. package/DecentralCardGame.cardchain.cardchain/types/cardchain/genesis.ts +267 -0
  60. package/DecentralCardGame.cardchain.cardchain/types/cardchain/image.js +88 -0
  61. package/DecentralCardGame.cardchain.cardchain/types/cardchain/image.ts +115 -0
  62. package/DecentralCardGame.cardchain.cardchain/types/cardchain/match.js +210 -0
  63. package/DecentralCardGame.cardchain.cardchain/types/cardchain/match.ts +255 -0
  64. package/DecentralCardGame.cardchain.cardchain/types/cardchain/match_reporter_proposal.js +67 -0
  65. package/DecentralCardGame.cardchain.cardchain/types/cardchain/match_reporter_proposal.ts +92 -0
  66. package/DecentralCardGame.cardchain.cardchain/types/cardchain/num.js +73 -0
  67. package/DecentralCardGame.cardchain.cardchain/types/cardchain/num.ts +102 -0
  68. package/DecentralCardGame.cardchain.cardchain/types/cardchain/params.js +255 -0
  69. package/DecentralCardGame.cardchain.cardchain/types/cardchain/params.ts +324 -0
  70. package/DecentralCardGame.cardchain.cardchain/types/cardchain/query.js +1970 -0
  71. package/DecentralCardGame.cardchain.cardchain/types/cardchain/query.ts +2366 -0
  72. package/DecentralCardGame.cardchain.cardchain/types/cardchain/running_average.js +85 -0
  73. package/DecentralCardGame.cardchain.cardchain/types/cardchain/running_average.ts +111 -0
  74. package/DecentralCardGame.cardchain.cardchain/types/cardchain/sell_offer.js +148 -0
  75. package/DecentralCardGame.cardchain.cardchain/types/cardchain/sell_offer.ts +183 -0
  76. package/DecentralCardGame.cardchain.cardchain/types/cardchain/server.js +93 -0
  77. package/DecentralCardGame.cardchain.cardchain/types/cardchain/server.ts +124 -0
  78. package/DecentralCardGame.cardchain.cardchain/types/cardchain/tx.ts +5125 -0
  79. package/DecentralCardGame.cardchain.cardchain/types/cardchain/user.js +496 -0
  80. package/DecentralCardGame.cardchain.cardchain/types/cardchain/user.ts +556 -0
  81. package/DecentralCardGame.cardchain.cardchain/types/cardchain/vote_right.js +84 -0
  82. package/DecentralCardGame.cardchain.cardchain/types/cardchain/vote_right.ts +114 -0
  83. package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_result.js +127 -0
  84. package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_result.ts +161 -0
  85. package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_results.js +148 -0
  86. package/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_results.ts +182 -0
  87. package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  88. package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  89. package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.js +192 -0
  90. package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.ts +261 -0
  91. package/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.js +171 -0
  92. package/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.ts +247 -0
  93. package/DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.js +2 -0
  94. package/DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.ts +2 -0
  95. package/DecentralCardGame.cardchain.cardchain/types/google/api/annotations.js +2 -0
  96. package/DecentralCardGame.cardchain.cardchain/types/google/api/annotations.ts +2 -0
  97. package/DecentralCardGame.cardchain.cardchain/types/google/api/http.js +260 -0
  98. package/DecentralCardGame.cardchain.cardchain/types/google/api/http.ts +589 -0
  99. package/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.js +2830 -0
  100. package/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.ts +3753 -0
  101. package/DecentralCardGame.cardchain.cardchain/types.js +21 -0
  102. package/DecentralCardGame.cardchain.cardchain/types.ts +45 -0
  103. package/client.js +135 -0
  104. package/client.ts +170 -0
  105. package/cosmos.auth.v1beta1/index.js +5 -0
  106. package/cosmos.auth.v1beta1/index.ts +6 -0
  107. package/cosmos.auth.v1beta1/module.js +62 -0
  108. package/cosmos.auth.v1beta1/module.ts +102 -0
  109. package/cosmos.auth.v1beta1/registry.js +2 -0
  110. package/cosmos.auth.v1beta1/registry.ts +7 -0
  111. package/cosmos.auth.v1beta1/rest.js +213 -0
  112. package/cosmos.auth.v1beta1/rest.ts +641 -0
  113. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
  114. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.ts +324 -0
  115. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.js +67 -0
  116. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.ts +95 -0
  117. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.js +868 -0
  118. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.ts +1212 -0
  119. package/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  120. package/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  121. package/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  122. package/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  123. package/cosmos.auth.v1beta1/types/gogoproto/gogo.js +2 -0
  124. package/cosmos.auth.v1beta1/types/gogoproto/gogo.ts +2 -0
  125. package/cosmos.auth.v1beta1/types/google/api/annotations.js +2 -0
  126. package/cosmos.auth.v1beta1/types/google/api/annotations.ts +2 -0
  127. package/cosmos.auth.v1beta1/types/google/api/http.js +260 -0
  128. package/cosmos.auth.v1beta1/types/google/api/http.ts +589 -0
  129. package/cosmos.auth.v1beta1/types/google/protobuf/any.js +99 -0
  130. package/cosmos.auth.v1beta1/types/google/protobuf/any.ts +240 -0
  131. package/cosmos.auth.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  132. package/cosmos.auth.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  133. package/cosmos.auth.v1beta1/types.js +4 -0
  134. package/cosmos.auth.v1beta1/types.ts +11 -0
  135. package/cosmos.authz.v1beta1/index.js +5 -0
  136. package/cosmos.authz.v1beta1/index.ts +6 -0
  137. package/cosmos.authz.v1beta1/module.js +140 -0
  138. package/cosmos.authz.v1beta1/module.ts +207 -0
  139. package/cosmos.authz.v1beta1/registry.js +9 -0
  140. package/cosmos.authz.v1beta1/registry.ts +13 -0
  141. package/cosmos.authz.v1beta1/rest.js +131 -0
  142. package/cosmos.authz.v1beta1/rest.ts +604 -0
  143. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.js +244 -0
  144. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.ts +325 -0
  145. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.js +128 -0
  146. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.ts +175 -0
  147. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.js +54 -0
  148. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.ts +78 -0
  149. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.js +394 -0
  150. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.ts +516 -0
  151. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.js +362 -0
  152. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.ts +493 -0
  153. package/cosmos.authz.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +773 -0
  154. package/cosmos.authz.v1beta1/types/cosmos/base/abci/v1beta1/abci.ts +989 -0
  155. package/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  156. package/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  157. package/cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  158. package/cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  159. package/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  160. package/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  161. package/cosmos.authz.v1beta1/types/gogoproto/gogo.js +2 -0
  162. package/cosmos.authz.v1beta1/types/gogoproto/gogo.ts +2 -0
  163. package/cosmos.authz.v1beta1/types/google/api/annotations.js +2 -0
  164. package/cosmos.authz.v1beta1/types/google/api/annotations.ts +2 -0
  165. package/cosmos.authz.v1beta1/types/google/api/http.js +260 -0
  166. package/cosmos.authz.v1beta1/types/google/api/http.ts +589 -0
  167. package/cosmos.authz.v1beta1/types/google/protobuf/any.js +99 -0
  168. package/cosmos.authz.v1beta1/types/google/protobuf/any.ts +240 -0
  169. package/cosmos.authz.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  170. package/cosmos.authz.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  171. package/cosmos.authz.v1beta1/types/google/protobuf/duration.js +84 -0
  172. package/cosmos.authz.v1beta1/types/google/protobuf/duration.ts +187 -0
  173. package/cosmos.authz.v1beta1/types/google/protobuf/timestamp.js +84 -0
  174. package/cosmos.authz.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  175. package/cosmos.authz.v1beta1/types/tendermint/abci/types.js +3447 -0
  176. package/cosmos.authz.v1beta1/types/tendermint/abci/types.ts +4107 -0
  177. package/cosmos.authz.v1beta1/types/tendermint/crypto/keys.js +100 -0
  178. package/cosmos.authz.v1beta1/types/tendermint/crypto/keys.ts +129 -0
  179. package/cosmos.authz.v1beta1/types/tendermint/crypto/proof.js +356 -0
  180. package/cosmos.authz.v1beta1/types/tendermint/crypto/proof.ts +439 -0
  181. package/cosmos.authz.v1beta1/types/tendermint/types/params.js +378 -0
  182. package/cosmos.authz.v1beta1/types/tendermint/types/params.ts +514 -0
  183. package/cosmos.authz.v1beta1/types/tendermint/types/types.js +1207 -0
  184. package/cosmos.authz.v1beta1/types/tendermint/types/types.ts +1452 -0
  185. package/cosmos.authz.v1beta1/types/tendermint/types/validator.js +254 -0
  186. package/cosmos.authz.v1beta1/types/tendermint/types/validator.ts +308 -0
  187. package/cosmos.authz.v1beta1/types/tendermint/version/types.js +133 -0
  188. package/cosmos.authz.v1beta1/types/tendermint/version/types.ts +184 -0
  189. package/cosmos.authz.v1beta1/types.js +7 -0
  190. package/cosmos.authz.v1beta1/types.ts +17 -0
  191. package/cosmos.bank.v1beta1/index.js +5 -0
  192. package/cosmos.bank.v1beta1/index.ts +6 -0
  193. package/cosmos.bank.v1beta1/module.js +125 -0
  194. package/cosmos.bank.v1beta1/module.ts +182 -0
  195. package/cosmos.bank.v1beta1/registry.js +7 -0
  196. package/cosmos.bank.v1beta1/registry.ts +11 -0
  197. package/cosmos.bank.v1beta1/rest.js +222 -0
  198. package/cosmos.bank.v1beta1/rest.ts +656 -0
  199. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.js +50 -0
  200. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.ts +77 -0
  201. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.js +455 -0
  202. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.ts +604 -0
  203. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.js +154 -0
  204. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.ts +203 -0
  205. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.js +1014 -0
  206. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.ts +1366 -0
  207. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.js +219 -0
  208. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.ts +289 -0
  209. package/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  210. package/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  211. package/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  212. package/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  213. package/cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  214. package/cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  215. package/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  216. package/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  217. package/cosmos.bank.v1beta1/types/gogoproto/gogo.js +2 -0
  218. package/cosmos.bank.v1beta1/types/gogoproto/gogo.ts +2 -0
  219. package/cosmos.bank.v1beta1/types/google/api/annotations.js +2 -0
  220. package/cosmos.bank.v1beta1/types/google/api/annotations.ts +2 -0
  221. package/cosmos.bank.v1beta1/types/google/api/http.js +260 -0
  222. package/cosmos.bank.v1beta1/types/google/api/http.ts +589 -0
  223. package/cosmos.bank.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  224. package/cosmos.bank.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  225. package/cosmos.bank.v1beta1/types.js +11 -0
  226. package/cosmos.bank.v1beta1/types.ts +25 -0
  227. package/cosmos.base.tendermint.v1beta1/index.js +5 -0
  228. package/cosmos.base.tendermint.v1beta1/index.ts +6 -0
  229. package/cosmos.base.tendermint.v1beta1/module.js +70 -0
  230. package/cosmos.base.tendermint.v1beta1/module.ts +110 -0
  231. package/cosmos.base.tendermint.v1beta1/registry.js +2 -0
  232. package/cosmos.base.tendermint.v1beta1/registry.ts +7 -0
  233. package/cosmos.base.tendermint.v1beta1/rest.js +209 -0
  234. package/cosmos.base.tendermint.v1beta1/rest.ts +1147 -0
  235. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  236. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  237. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.js +1281 -0
  238. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.ts +1646 -0
  239. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.js +350 -0
  240. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.ts +442 -0
  241. package/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  242. package/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  243. package/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.js +2 -0
  244. package/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.ts +2 -0
  245. package/cosmos.base.tendermint.v1beta1/types/google/api/annotations.js +2 -0
  246. package/cosmos.base.tendermint.v1beta1/types/google/api/annotations.ts +2 -0
  247. package/cosmos.base.tendermint.v1beta1/types/google/api/http.js +260 -0
  248. package/cosmos.base.tendermint.v1beta1/types/google/api/http.ts +589 -0
  249. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.js +99 -0
  250. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.ts +240 -0
  251. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  252. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  253. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.js +84 -0
  254. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  255. package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.js +100 -0
  256. package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.ts +129 -0
  257. package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.js +356 -0
  258. package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.ts +439 -0
  259. package/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.js +352 -0
  260. package/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.ts +423 -0
  261. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.js +86 -0
  262. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.ts +112 -0
  263. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.js +343 -0
  264. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.ts +412 -0
  265. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.js +1207 -0
  266. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.ts +1452 -0
  267. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.js +254 -0
  268. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.ts +308 -0
  269. package/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.js +133 -0
  270. package/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.ts +184 -0
  271. package/cosmos.base.tendermint.v1beta1/types.js +8 -0
  272. package/cosmos.base.tendermint.v1beta1/types.ts +19 -0
  273. package/cosmos.crisis.v1beta1/index.js +5 -0
  274. package/cosmos.crisis.v1beta1/index.ts +6 -0
  275. package/cosmos.crisis.v1beta1/module.js +81 -0
  276. package/cosmos.crisis.v1beta1/module.ts +129 -0
  277. package/cosmos.crisis.v1beta1/registry.js +5 -0
  278. package/cosmos.crisis.v1beta1/registry.ts +9 -0
  279. package/cosmos.crisis.v1beta1/rest.js +83 -0
  280. package/cosmos.crisis.v1beta1/rest.ts +152 -0
  281. package/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  282. package/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  283. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.js +51 -0
  284. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.ts +79 -0
  285. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.js +111 -0
  286. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.ts +159 -0
  287. package/cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  288. package/cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  289. package/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  290. package/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  291. package/cosmos.crisis.v1beta1/types/gogoproto/gogo.js +2 -0
  292. package/cosmos.crisis.v1beta1/types/gogoproto/gogo.ts +2 -0
  293. package/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  294. package/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  295. package/cosmos.crisis.v1beta1/types.js +1 -0
  296. package/cosmos.crisis.v1beta1/types.ts +5 -0
  297. package/cosmos.distribution.v1beta1/index.js +5 -0
  298. package/cosmos.distribution.v1beta1/index.ts +6 -0
  299. package/cosmos.distribution.v1beta1/module.js +189 -0
  300. package/cosmos.distribution.v1beta1/module.ts +266 -0
  301. package/cosmos.distribution.v1beta1/registry.js +11 -0
  302. package/cosmos.distribution.v1beta1/registry.ts +15 -0
  303. package/cosmos.distribution.v1beta1/rest.js +214 -0
  304. package/cosmos.distribution.v1beta1/rest.ts +557 -0
  305. package/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  306. package/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  307. package/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  308. package/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  309. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.js +737 -0
  310. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.ts +945 -0
  311. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.js +656 -0
  312. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.ts +849 -0
  313. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.js +926 -0
  314. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.ts +1289 -0
  315. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.js +396 -0
  316. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.ts +550 -0
  317. package/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  318. package/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  319. package/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  320. package/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  321. package/cosmos.distribution.v1beta1/types/gogoproto/gogo.js +2 -0
  322. package/cosmos.distribution.v1beta1/types/gogoproto/gogo.ts +2 -0
  323. package/cosmos.distribution.v1beta1/types/google/api/annotations.js +2 -0
  324. package/cosmos.distribution.v1beta1/types/google/api/annotations.ts +2 -0
  325. package/cosmos.distribution.v1beta1/types/google/api/http.js +260 -0
  326. package/cosmos.distribution.v1beta1/types/google/api/http.ts +589 -0
  327. package/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  328. package/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  329. package/cosmos.distribution.v1beta1/types.js +20 -0
  330. package/cosmos.distribution.v1beta1/types.ts +43 -0
  331. package/cosmos.evidence.v1beta1/index.js +5 -0
  332. package/cosmos.evidence.v1beta1/index.ts +6 -0
  333. package/cosmos.evidence.v1beta1/module.js +84 -0
  334. package/cosmos.evidence.v1beta1/module.ts +131 -0
  335. package/cosmos.evidence.v1beta1/registry.js +5 -0
  336. package/cosmos.evidence.v1beta1/registry.ts +9 -0
  337. package/cosmos.evidence.v1beta1/rest.js +115 -0
  338. package/cosmos.evidence.v1beta1/rest.ts +402 -0
  339. package/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  340. package/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  341. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.js +124 -0
  342. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.ts +161 -0
  343. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.js +50 -0
  344. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.ts +73 -0
  345. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.js +254 -0
  346. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.ts +343 -0
  347. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.js +154 -0
  348. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.ts +213 -0
  349. package/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  350. package/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  351. package/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  352. package/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  353. package/cosmos.evidence.v1beta1/types/gogoproto/gogo.js +2 -0
  354. package/cosmos.evidence.v1beta1/types/gogoproto/gogo.ts +2 -0
  355. package/cosmos.evidence.v1beta1/types/google/api/annotations.js +2 -0
  356. package/cosmos.evidence.v1beta1/types/google/api/annotations.ts +2 -0
  357. package/cosmos.evidence.v1beta1/types/google/api/http.js +260 -0
  358. package/cosmos.evidence.v1beta1/types/google/api/http.ts +589 -0
  359. package/cosmos.evidence.v1beta1/types/google/protobuf/any.js +99 -0
  360. package/cosmos.evidence.v1beta1/types/google/protobuf/any.ts +240 -0
  361. package/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  362. package/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  363. package/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.js +84 -0
  364. package/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  365. package/cosmos.evidence.v1beta1/types.js +2 -0
  366. package/cosmos.evidence.v1beta1/types.ts +7 -0
  367. package/cosmos.feegrant.v1beta1/index.js +5 -0
  368. package/cosmos.feegrant.v1beta1/index.ts +6 -0
  369. package/cosmos.feegrant.v1beta1/module.js +113 -0
  370. package/cosmos.feegrant.v1beta1/module.ts +170 -0
  371. package/cosmos.feegrant.v1beta1/registry.js +7 -0
  372. package/cosmos.feegrant.v1beta1/registry.ts +11 -0
  373. package/cosmos.feegrant.v1beta1/rest.js +130 -0
  374. package/cosmos.feegrant.v1beta1/rest.ts +452 -0
  375. package/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  376. package/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  377. package/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  378. package/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  379. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.js +307 -0
  380. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.ts +409 -0
  381. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.js +52 -0
  382. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.ts +76 -0
  383. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.js +357 -0
  384. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.ts +484 -0
  385. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.js +205 -0
  386. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.ts +294 -0
  387. package/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  388. package/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  389. package/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  390. package/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  391. package/cosmos.feegrant.v1beta1/types/gogoproto/gogo.js +2 -0
  392. package/cosmos.feegrant.v1beta1/types/gogoproto/gogo.ts +2 -0
  393. package/cosmos.feegrant.v1beta1/types/google/api/annotations.js +2 -0
  394. package/cosmos.feegrant.v1beta1/types/google/api/annotations.ts +2 -0
  395. package/cosmos.feegrant.v1beta1/types/google/api/http.js +260 -0
  396. package/cosmos.feegrant.v1beta1/types/google/api/http.ts +589 -0
  397. package/cosmos.feegrant.v1beta1/types/google/protobuf/any.js +99 -0
  398. package/cosmos.feegrant.v1beta1/types/google/protobuf/any.ts +240 -0
  399. package/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  400. package/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  401. package/cosmos.feegrant.v1beta1/types/google/protobuf/duration.js +84 -0
  402. package/cosmos.feegrant.v1beta1/types/google/protobuf/duration.ts +187 -0
  403. package/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.js +84 -0
  404. package/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  405. package/cosmos.feegrant.v1beta1/types.js +5 -0
  406. package/cosmos.feegrant.v1beta1/types.ts +13 -0
  407. package/cosmos.gov.v1/index.js +5 -0
  408. package/cosmos.gov.v1/index.ts +6 -0
  409. package/cosmos.gov.v1/module.js +167 -0
  410. package/cosmos.gov.v1/module.ts +244 -0
  411. package/cosmos.gov.v1/registry.js +11 -0
  412. package/cosmos.gov.v1/registry.ts +15 -0
  413. package/cosmos.gov.v1/rest.js +242 -0
  414. package/cosmos.gov.v1/rest.ts +798 -0
  415. package/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  416. package/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  417. package/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.js +192 -0
  418. package/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.ts +261 -0
  419. package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.js +162 -0
  420. package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.ts +208 -0
  421. package/cosmos.gov.v1/types/cosmos/gov/v1/gov.js +766 -0
  422. package/cosmos.gov.v1/types/cosmos/gov/v1/gov.ts +925 -0
  423. package/cosmos.gov.v1/types/cosmos/gov/v1/query.js +917 -0
  424. package/cosmos.gov.v1/types/cosmos/gov/v1/query.ts +1202 -0
  425. package/cosmos.gov.v1/types/cosmos/gov/v1/tx.js +590 -0
  426. package/cosmos.gov.v1/types/cosmos/gov/v1/tx.ts +763 -0
  427. package/cosmos.gov.v1/types/cosmos/msg/v1/msg.js +2 -0
  428. package/cosmos.gov.v1/types/cosmos/msg/v1/msg.ts +2 -0
  429. package/cosmos.gov.v1/types/cosmos_proto/cosmos.js +171 -0
  430. package/cosmos.gov.v1/types/cosmos_proto/cosmos.ts +247 -0
  431. package/cosmos.gov.v1/types/gogoproto/gogo.js +2 -0
  432. package/cosmos.gov.v1/types/gogoproto/gogo.ts +2 -0
  433. package/cosmos.gov.v1/types/google/api/annotations.js +2 -0
  434. package/cosmos.gov.v1/types/google/api/annotations.ts +2 -0
  435. package/cosmos.gov.v1/types/google/api/http.js +260 -0
  436. package/cosmos.gov.v1/types/google/api/http.ts +589 -0
  437. package/cosmos.gov.v1/types/google/protobuf/any.js +99 -0
  438. package/cosmos.gov.v1/types/google/protobuf/any.ts +240 -0
  439. package/cosmos.gov.v1/types/google/protobuf/descriptor.js +2830 -0
  440. package/cosmos.gov.v1/types/google/protobuf/descriptor.ts +3753 -0
  441. package/cosmos.gov.v1/types/google/protobuf/duration.js +84 -0
  442. package/cosmos.gov.v1/types/google/protobuf/duration.ts +187 -0
  443. package/cosmos.gov.v1/types/google/protobuf/timestamp.js +84 -0
  444. package/cosmos.gov.v1/types/google/protobuf/timestamp.ts +216 -0
  445. package/cosmos.gov.v1/types.js +9 -0
  446. package/cosmos.gov.v1/types.ts +21 -0
  447. package/cosmos.gov.v1beta1/index.js +5 -0
  448. package/cosmos.gov.v1beta1/index.ts +6 -0
  449. package/cosmos.gov.v1beta1/module.js +169 -0
  450. package/cosmos.gov.v1beta1/module.ts +246 -0
  451. package/cosmos.gov.v1beta1/registry.js +11 -0
  452. package/cosmos.gov.v1beta1/registry.ts +15 -0
  453. package/cosmos.gov.v1beta1/rest.js +242 -0
  454. package/cosmos.gov.v1beta1/rest.ts +864 -0
  455. package/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  456. package/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  457. package/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  458. package/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  459. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.js +162 -0
  460. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.ts +206 -0
  461. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.js +832 -0
  462. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.ts +1015 -0
  463. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.js +917 -0
  464. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.ts +1200 -0
  465. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.js +467 -0
  466. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.ts +612 -0
  467. package/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  468. package/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  469. package/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  470. package/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  471. package/cosmos.gov.v1beta1/types/gogoproto/gogo.js +2 -0
  472. package/cosmos.gov.v1beta1/types/gogoproto/gogo.ts +2 -0
  473. package/cosmos.gov.v1beta1/types/google/api/annotations.js +2 -0
  474. package/cosmos.gov.v1beta1/types/google/api/annotations.ts +2 -0
  475. package/cosmos.gov.v1beta1/types/google/api/http.js +260 -0
  476. package/cosmos.gov.v1beta1/types/google/api/http.ts +589 -0
  477. package/cosmos.gov.v1beta1/types/google/protobuf/any.js +99 -0
  478. package/cosmos.gov.v1beta1/types/google/protobuf/any.ts +240 -0
  479. package/cosmos.gov.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  480. package/cosmos.gov.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  481. package/cosmos.gov.v1beta1/types/google/protobuf/duration.js +84 -0
  482. package/cosmos.gov.v1beta1/types/google/protobuf/duration.ts +187 -0
  483. package/cosmos.gov.v1beta1/types/google/protobuf/timestamp.js +84 -0
  484. package/cosmos.gov.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  485. package/cosmos.gov.v1beta1/types.js +10 -0
  486. package/cosmos.gov.v1beta1/types.ts +23 -0
  487. package/cosmos.group.v1/index.js +5 -0
  488. package/cosmos.group.v1/index.ts +6 -0
  489. package/cosmos.group.v1/module.js +421 -0
  490. package/cosmos.group.v1/module.ts +598 -0
  491. package/cosmos.group.v1/registry.js +31 -0
  492. package/cosmos.group.v1/registry.ts +35 -0
  493. package/cosmos.group.v1/rest.js +351 -0
  494. package/cosmos.group.v1/rest.ts +1162 -0
  495. package/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  496. package/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  497. package/cosmos.group.v1/types/cosmos/group/v1/events.js +433 -0
  498. package/cosmos.group.v1/types/cosmos/group/v1/events.ts +568 -0
  499. package/cosmos.group.v1/types/cosmos/group/v1/genesis.js +177 -0
  500. package/cosmos.group.v1/types/cosmos/group/v1/genesis.ts +228 -0
  501. package/cosmos.group.v1/types/cosmos/group/v1/query.js +1468 -0
  502. package/cosmos.group.v1/types/cosmos/group/v1/query.ts +1897 -0
  503. package/cosmos.group.v1/types/cosmos/group/v1/tx.js +1621 -0
  504. package/cosmos.group.v1/types/cosmos/group/v1/tx.ts +2113 -0
  505. package/cosmos.group.v1/types/cosmos/group/v1/types.js +1105 -0
  506. package/cosmos.group.v1/types/cosmos/group/v1/types.ts +1422 -0
  507. package/cosmos.group.v1/types/cosmos/msg/v1/msg.js +2 -0
  508. package/cosmos.group.v1/types/cosmos/msg/v1/msg.ts +2 -0
  509. package/cosmos.group.v1/types/cosmos_proto/cosmos.js +171 -0
  510. package/cosmos.group.v1/types/cosmos_proto/cosmos.ts +247 -0
  511. package/cosmos.group.v1/types/gogoproto/gogo.js +2 -0
  512. package/cosmos.group.v1/types/gogoproto/gogo.ts +2 -0
  513. package/cosmos.group.v1/types/google/api/annotations.js +2 -0
  514. package/cosmos.group.v1/types/google/api/annotations.ts +2 -0
  515. package/cosmos.group.v1/types/google/api/http.js +260 -0
  516. package/cosmos.group.v1/types/google/api/http.ts +589 -0
  517. package/cosmos.group.v1/types/google/protobuf/any.js +99 -0
  518. package/cosmos.group.v1/types/google/protobuf/any.ts +240 -0
  519. package/cosmos.group.v1/types/google/protobuf/descriptor.js +2830 -0
  520. package/cosmos.group.v1/types/google/protobuf/descriptor.ts +3753 -0
  521. package/cosmos.group.v1/types/google/protobuf/duration.js +84 -0
  522. package/cosmos.group.v1/types/google/protobuf/duration.ts +187 -0
  523. package/cosmos.group.v1/types/google/protobuf/timestamp.js +84 -0
  524. package/cosmos.group.v1/types/google/protobuf/timestamp.ts +216 -0
  525. package/cosmos.group.v1/types.js +21 -0
  526. package/cosmos.group.v1/types.ts +45 -0
  527. package/cosmos.mint.v1beta1/index.js +5 -0
  528. package/cosmos.mint.v1beta1/index.ts +6 -0
  529. package/cosmos.mint.v1beta1/module.js +60 -0
  530. package/cosmos.mint.v1beta1/module.ts +100 -0
  531. package/cosmos.mint.v1beta1/registry.js +2 -0
  532. package/cosmos.mint.v1beta1/registry.ts +7 -0
  533. package/cosmos.mint.v1beta1/rest.js +128 -0
  534. package/cosmos.mint.v1beta1/rest.ts +253 -0
  535. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.js +63 -0
  536. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.ts +92 -0
  537. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.js +179 -0
  538. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.ts +234 -0
  539. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.js +298 -0
  540. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.ts +412 -0
  541. package/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  542. package/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  543. package/cosmos.mint.v1beta1/types/gogoproto/gogo.js +2 -0
  544. package/cosmos.mint.v1beta1/types/gogoproto/gogo.ts +2 -0
  545. package/cosmos.mint.v1beta1/types/google/api/annotations.js +2 -0
  546. package/cosmos.mint.v1beta1/types/google/api/annotations.ts +2 -0
  547. package/cosmos.mint.v1beta1/types/google/api/http.js +260 -0
  548. package/cosmos.mint.v1beta1/types/google/api/http.ts +589 -0
  549. package/cosmos.mint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  550. package/cosmos.mint.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  551. package/cosmos.mint.v1beta1/types.js +3 -0
  552. package/cosmos.mint.v1beta1/types.ts +9 -0
  553. package/cosmos.nft.v1beta1/index.js +5 -0
  554. package/cosmos.nft.v1beta1/index.ts +6 -0
  555. package/cosmos.nft.v1beta1/module.js +68 -0
  556. package/cosmos.nft.v1beta1/module.ts +108 -0
  557. package/cosmos.nft.v1beta1/registry.js +2 -0
  558. package/cosmos.nft.v1beta1/registry.ts +7 -0
  559. package/cosmos.nft.v1beta1/rest.js +187 -0
  560. package/cosmos.nft.v1beta1/rest.ts +685 -0
  561. package/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  562. package/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  563. package/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  564. package/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  565. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.js +198 -0
  566. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.ts +251 -0
  567. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.js +126 -0
  568. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.ts +163 -0
  569. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.js +183 -0
  570. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.ts +240 -0
  571. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.js +752 -0
  572. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.ts +964 -0
  573. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.js +120 -0
  574. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.ts +173 -0
  575. package/cosmos.nft.v1beta1/types/google/api/annotations.js +2 -0
  576. package/cosmos.nft.v1beta1/types/google/api/annotations.ts +2 -0
  577. package/cosmos.nft.v1beta1/types/google/api/http.js +260 -0
  578. package/cosmos.nft.v1beta1/types/google/api/http.ts +589 -0
  579. package/cosmos.nft.v1beta1/types/google/protobuf/any.js +99 -0
  580. package/cosmos.nft.v1beta1/types/google/protobuf/any.ts +240 -0
  581. package/cosmos.nft.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  582. package/cosmos.nft.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  583. package/cosmos.nft.v1beta1/types.js +7 -0
  584. package/cosmos.nft.v1beta1/types.ts +17 -0
  585. package/cosmos.params.v1beta1/index.js +5 -0
  586. package/cosmos.params.v1beta1/index.ts +6 -0
  587. package/cosmos.params.v1beta1/module.js +62 -0
  588. package/cosmos.params.v1beta1/module.ts +102 -0
  589. package/cosmos.params.v1beta1/registry.js +2 -0
  590. package/cosmos.params.v1beta1/registry.ts +7 -0
  591. package/cosmos.params.v1beta1/rest.js +116 -0
  592. package/cosmos.params.v1beta1/rest.ts +220 -0
  593. package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.js +133 -0
  594. package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.ts +174 -0
  595. package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.js +257 -0
  596. package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.ts +364 -0
  597. package/cosmos.params.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  598. package/cosmos.params.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  599. package/cosmos.params.v1beta1/types/gogoproto/gogo.js +2 -0
  600. package/cosmos.params.v1beta1/types/gogoproto/gogo.ts +2 -0
  601. package/cosmos.params.v1beta1/types/google/api/annotations.js +2 -0
  602. package/cosmos.params.v1beta1/types/google/api/annotations.ts +2 -0
  603. package/cosmos.params.v1beta1/types/google/api/http.js +260 -0
  604. package/cosmos.params.v1beta1/types/google/api/http.ts +589 -0
  605. package/cosmos.params.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  606. package/cosmos.params.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  607. package/cosmos.params.v1beta1/types.js +4 -0
  608. package/cosmos.params.v1beta1/types.ts +11 -0
  609. package/cosmos.slashing.v1beta1/index.js +5 -0
  610. package/cosmos.slashing.v1beta1/index.ts +6 -0
  611. package/cosmos.slashing.v1beta1/module.js +92 -0
  612. package/cosmos.slashing.v1beta1/module.ts +139 -0
  613. package/cosmos.slashing.v1beta1/registry.js +5 -0
  614. package/cosmos.slashing.v1beta1/registry.ts +9 -0
  615. package/cosmos.slashing.v1beta1/rest.js +129 -0
  616. package/cosmos.slashing.v1beta1/rest.ts +368 -0
  617. package/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  618. package/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  619. package/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  620. package/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  621. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.js +279 -0
  622. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.ts +364 -0
  623. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.js +300 -0
  624. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.ts +411 -0
  625. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.js +275 -0
  626. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.ts +352 -0
  627. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.js +91 -0
  628. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.ts +141 -0
  629. package/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  630. package/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  631. package/cosmos.slashing.v1beta1/types/gogoproto/gogo.js +2 -0
  632. package/cosmos.slashing.v1beta1/types/gogoproto/gogo.ts +2 -0
  633. package/cosmos.slashing.v1beta1/types/google/api/annotations.js +2 -0
  634. package/cosmos.slashing.v1beta1/types/google/api/annotations.ts +2 -0
  635. package/cosmos.slashing.v1beta1/types/google/api/http.js +260 -0
  636. package/cosmos.slashing.v1beta1/types/google/api/http.ts +589 -0
  637. package/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  638. package/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  639. package/cosmos.slashing.v1beta1/types/google/protobuf/duration.js +84 -0
  640. package/cosmos.slashing.v1beta1/types/google/protobuf/duration.ts +187 -0
  641. package/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.js +84 -0
  642. package/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  643. package/cosmos.slashing.v1beta1/types.js +6 -0
  644. package/cosmos.slashing.v1beta1/types.ts +15 -0
  645. package/cosmos.staking.v1beta1/index.js +5 -0
  646. package/cosmos.staking.v1beta1/index.ts +6 -0
  647. package/cosmos.staking.v1beta1/module.js +243 -0
  648. package/cosmos.staking.v1beta1/module.ts +340 -0
  649. package/cosmos.staking.v1beta1/registry.js +15 -0
  650. package/cosmos.staking.v1beta1/registry.ts +19 -0
  651. package/cosmos.staking.v1beta1/rest.js +308 -0
  652. package/cosmos.staking.v1beta1/rest.ts +1239 -0
  653. package/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  654. package/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  655. package/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  656. package/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  657. package/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  658. package/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  659. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.js +184 -0
  660. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.ts +245 -0
  661. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.js +259 -0
  662. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.ts +322 -0
  663. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.js +1568 -0
  664. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.ts +2109 -0
  665. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.js +1436 -0
  666. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.ts +1829 -0
  667. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.js +768 -0
  668. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.ts +1005 -0
  669. package/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  670. package/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  671. package/cosmos.staking.v1beta1/types/gogoproto/gogo.js +2 -0
  672. package/cosmos.staking.v1beta1/types/gogoproto/gogo.ts +2 -0
  673. package/cosmos.staking.v1beta1/types/google/api/annotations.js +2 -0
  674. package/cosmos.staking.v1beta1/types/google/api/annotations.ts +2 -0
  675. package/cosmos.staking.v1beta1/types/google/api/http.js +260 -0
  676. package/cosmos.staking.v1beta1/types/google/api/http.ts +589 -0
  677. package/cosmos.staking.v1beta1/types/google/protobuf/any.js +99 -0
  678. package/cosmos.staking.v1beta1/types/google/protobuf/any.ts +240 -0
  679. package/cosmos.staking.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  680. package/cosmos.staking.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  681. package/cosmos.staking.v1beta1/types/google/protobuf/duration.js +84 -0
  682. package/cosmos.staking.v1beta1/types/google/protobuf/duration.ts +187 -0
  683. package/cosmos.staking.v1beta1/types/google/protobuf/timestamp.js +84 -0
  684. package/cosmos.staking.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  685. package/cosmos.staking.v1beta1/types/tendermint/crypto/keys.js +100 -0
  686. package/cosmos.staking.v1beta1/types/tendermint/crypto/keys.ts +129 -0
  687. package/cosmos.staking.v1beta1/types/tendermint/crypto/proof.js +356 -0
  688. package/cosmos.staking.v1beta1/types/tendermint/crypto/proof.ts +439 -0
  689. package/cosmos.staking.v1beta1/types/tendermint/types/types.js +1207 -0
  690. package/cosmos.staking.v1beta1/types/tendermint/types/types.ts +1452 -0
  691. package/cosmos.staking.v1beta1/types/tendermint/types/validator.js +254 -0
  692. package/cosmos.staking.v1beta1/types/tendermint/types/validator.ts +308 -0
  693. package/cosmos.staking.v1beta1/types/tendermint/version/types.js +133 -0
  694. package/cosmos.staking.v1beta1/types/tendermint/version/types.ts +184 -0
  695. package/cosmos.staking.v1beta1/types.js +24 -0
  696. package/cosmos.staking.v1beta1/types.ts +51 -0
  697. package/cosmos.tx.v1beta1/index.js +5 -0
  698. package/cosmos.tx.v1beta1/index.ts +6 -0
  699. package/cosmos.tx.v1beta1/module.js +82 -0
  700. package/cosmos.tx.v1beta1/module.ts +122 -0
  701. package/cosmos.tx.v1beta1/registry.js +2 -0
  702. package/cosmos.tx.v1beta1/registry.ts +7 -0
  703. package/cosmos.tx.v1beta1/rest.js +256 -0
  704. package/cosmos.tx.v1beta1/rest.ts +1372 -0
  705. package/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +803 -0
  706. package/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.ts +1040 -0
  707. package/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  708. package/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  709. package/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  710. package/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  711. package/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.js +147 -0
  712. package/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.ts +195 -0
  713. package/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.js +449 -0
  714. package/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.ts +556 -0
  715. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.js +802 -0
  716. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.ts +1057 -0
  717. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.js +959 -0
  718. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.ts +1355 -0
  719. package/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  720. package/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  721. package/cosmos.tx.v1beta1/types/gogoproto/gogo.js +2 -0
  722. package/cosmos.tx.v1beta1/types/gogoproto/gogo.ts +2 -0
  723. package/cosmos.tx.v1beta1/types/google/api/annotations.js +2 -0
  724. package/cosmos.tx.v1beta1/types/google/api/annotations.ts +2 -0
  725. package/cosmos.tx.v1beta1/types/google/api/http.js +260 -0
  726. package/cosmos.tx.v1beta1/types/google/api/http.ts +589 -0
  727. package/cosmos.tx.v1beta1/types/google/protobuf/any.js +99 -0
  728. package/cosmos.tx.v1beta1/types/google/protobuf/any.ts +240 -0
  729. package/cosmos.tx.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  730. package/cosmos.tx.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  731. package/cosmos.tx.v1beta1/types/google/protobuf/duration.js +84 -0
  732. package/cosmos.tx.v1beta1/types/google/protobuf/duration.ts +187 -0
  733. package/cosmos.tx.v1beta1/types/google/protobuf/timestamp.js +84 -0
  734. package/cosmos.tx.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  735. package/cosmos.tx.v1beta1/types/tendermint/abci/types.js +3486 -0
  736. package/cosmos.tx.v1beta1/types/tendermint/abci/types.ts +4154 -0
  737. package/cosmos.tx.v1beta1/types/tendermint/crypto/keys.js +100 -0
  738. package/cosmos.tx.v1beta1/types/tendermint/crypto/keys.ts +129 -0
  739. package/cosmos.tx.v1beta1/types/tendermint/crypto/proof.js +356 -0
  740. package/cosmos.tx.v1beta1/types/tendermint/crypto/proof.ts +439 -0
  741. package/cosmos.tx.v1beta1/types/tendermint/types/block.js +86 -0
  742. package/cosmos.tx.v1beta1/types/tendermint/types/block.ts +112 -0
  743. package/cosmos.tx.v1beta1/types/tendermint/types/evidence.js +343 -0
  744. package/cosmos.tx.v1beta1/types/tendermint/types/evidence.ts +412 -0
  745. package/cosmos.tx.v1beta1/types/tendermint/types/params.js +378 -0
  746. package/cosmos.tx.v1beta1/types/tendermint/types/params.ts +514 -0
  747. package/cosmos.tx.v1beta1/types/tendermint/types/types.js +1207 -0
  748. package/cosmos.tx.v1beta1/types/tendermint/types/types.ts +1452 -0
  749. package/cosmos.tx.v1beta1/types/tendermint/types/validator.js +254 -0
  750. package/cosmos.tx.v1beta1/types/tendermint/types/validator.ts +308 -0
  751. package/cosmos.tx.v1beta1/types/tendermint/version/types.js +133 -0
  752. package/cosmos.tx.v1beta1/types/tendermint/version/types.ts +184 -0
  753. package/cosmos.tx.v1beta1/types.js +14 -0
  754. package/cosmos.tx.v1beta1/types.ts +31 -0
  755. package/cosmos.upgrade.v1beta1/index.js +5 -0
  756. package/cosmos.upgrade.v1beta1/index.ts +6 -0
  757. package/cosmos.upgrade.v1beta1/module.js +113 -0
  758. package/cosmos.upgrade.v1beta1/module.ts +170 -0
  759. package/cosmos.upgrade.v1beta1/registry.js +7 -0
  760. package/cosmos.upgrade.v1beta1/registry.ts +11 -0
  761. package/cosmos.upgrade.v1beta1/rest.js +162 -0
  762. package/cosmos.upgrade.v1beta1/rest.ts +468 -0
  763. package/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  764. package/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  765. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.js +501 -0
  766. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.ts +728 -0
  767. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.js +183 -0
  768. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.ts +284 -0
  769. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  770. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
  771. package/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  772. package/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  773. package/cosmos.upgrade.v1beta1/types/gogoproto/gogo.js +2 -0
  774. package/cosmos.upgrade.v1beta1/types/gogoproto/gogo.ts +2 -0
  775. package/cosmos.upgrade.v1beta1/types/google/api/annotations.js +2 -0
  776. package/cosmos.upgrade.v1beta1/types/google/api/annotations.ts +2 -0
  777. package/cosmos.upgrade.v1beta1/types/google/api/http.js +260 -0
  778. package/cosmos.upgrade.v1beta1/types/google/api/http.ts +589 -0
  779. package/cosmos.upgrade.v1beta1/types/google/protobuf/any.js +99 -0
  780. package/cosmos.upgrade.v1beta1/types/google/protobuf/any.ts +240 -0
  781. package/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  782. package/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  783. package/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.js +84 -0
  784. package/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.ts +216 -0
  785. package/cosmos.upgrade.v1beta1/types.js +5 -0
  786. package/cosmos.upgrade.v1beta1/types.ts +13 -0
  787. package/cosmos.vesting.v1beta1/index.js +5 -0
  788. package/cosmos.vesting.v1beta1/index.ts +6 -0
  789. package/cosmos.vesting.v1beta1/module.js +140 -0
  790. package/cosmos.vesting.v1beta1/module.ts +207 -0
  791. package/cosmos.vesting.v1beta1/registry.js +9 -0
  792. package/cosmos.vesting.v1beta1/registry.ts +13 -0
  793. package/cosmos.vesting.v1beta1/rest.js +83 -0
  794. package/cosmos.vesting.v1beta1/rest.ts +297 -0
  795. package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
  796. package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.ts +324 -0
  797. package/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  798. package/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.ts +261 -0
  799. package/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  800. package/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.ts +2 -0
  801. package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.js +383 -0
  802. package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.ts +540 -0
  803. package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.js +422 -0
  804. package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.ts +529 -0
  805. package/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  806. package/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  807. package/cosmos.vesting.v1beta1/types/gogoproto/gogo.js +2 -0
  808. package/cosmos.vesting.v1beta1/types/gogoproto/gogo.ts +2 -0
  809. package/cosmos.vesting.v1beta1/types/google/protobuf/any.js +99 -0
  810. package/cosmos.vesting.v1beta1/types/google/protobuf/any.ts +240 -0
  811. package/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  812. package/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.ts +3753 -0
  813. package/cosmos.vesting.v1beta1/types.js +7 -0
  814. package/cosmos.vesting.v1beta1/types.ts +17 -0
  815. package/env.js +1 -0
  816. package/env.ts +7 -0
  817. package/helpers.js +11 -0
  818. package/helpers.ts +32 -0
  819. package/ibc.applications.interchain_accounts.controller.v1/index.js +5 -0
  820. package/ibc.applications.interchain_accounts.controller.v1/index.ts +6 -0
  821. package/ibc.applications.interchain_accounts.controller.v1/module.js +58 -0
  822. package/ibc.applications.interchain_accounts.controller.v1/module.ts +98 -0
  823. package/ibc.applications.interchain_accounts.controller.v1/registry.js +2 -0
  824. package/ibc.applications.interchain_accounts.controller.v1/registry.ts +7 -0
  825. package/ibc.applications.interchain_accounts.controller.v1/rest.js +114 -0
  826. package/ibc.applications.interchain_accounts.controller.v1/rest.ts +203 -0
  827. package/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.js +2 -0
  828. package/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.ts +2 -0
  829. package/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.js +2 -0
  830. package/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.ts +2 -0
  831. package/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.js +260 -0
  832. package/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.ts +589 -0
  833. package/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.js +2830 -0
  834. package/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.ts +3753 -0
  835. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.js +47 -0
  836. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.ts +75 -0
  837. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.js +193 -0
  838. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.ts +274 -0
  839. package/ibc.applications.interchain_accounts.controller.v1/types.js +2 -0
  840. package/ibc.applications.interchain_accounts.controller.v1/types.ts +7 -0
  841. package/ibc.applications.interchain_accounts.host.v1/index.js +5 -0
  842. package/ibc.applications.interchain_accounts.host.v1/index.ts +6 -0
  843. package/ibc.applications.interchain_accounts.host.v1/module.js +58 -0
  844. package/ibc.applications.interchain_accounts.host.v1/module.ts +98 -0
  845. package/ibc.applications.interchain_accounts.host.v1/registry.js +2 -0
  846. package/ibc.applications.interchain_accounts.host.v1/registry.ts +7 -0
  847. package/ibc.applications.interchain_accounts.host.v1/rest.js +100 -0
  848. package/ibc.applications.interchain_accounts.host.v1/rest.ts +183 -0
  849. package/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.js +2 -0
  850. package/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.ts +2 -0
  851. package/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.js +2 -0
  852. package/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.ts +2 -0
  853. package/ibc.applications.interchain_accounts.host.v1/types/google/api/http.js +260 -0
  854. package/ibc.applications.interchain_accounts.host.v1/types/google/api/http.ts +589 -0
  855. package/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.js +2830 -0
  856. package/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.ts +3753 -0
  857. package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.js +63 -0
  858. package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.ts +92 -0
  859. package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.js +94 -0
  860. package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.ts +141 -0
  861. package/ibc.applications.interchain_accounts.host.v1/types.js +2 -0
  862. package/ibc.applications.interchain_accounts.host.v1/types.ts +7 -0
  863. package/ibc.applications.transfer.v1/index.js +5 -0
  864. package/ibc.applications.transfer.v1/index.ts +6 -0
  865. package/ibc.applications.transfer.v1/module.js +86 -0
  866. package/ibc.applications.transfer.v1/module.ts +133 -0
  867. package/ibc.applications.transfer.v1/registry.js +5 -0
  868. package/ibc.applications.transfer.v1/registry.ts +9 -0
  869. package/ibc.applications.transfer.v1/rest.js +157 -0
  870. package/ibc.applications.transfer.v1/rest.ts +538 -0
  871. package/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  872. package/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  873. package/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.js +192 -0
  874. package/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.ts +261 -0
  875. package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  876. package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
  877. package/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.js +171 -0
  878. package/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.ts +247 -0
  879. package/ibc.applications.transfer.v1/types/gogoproto/gogo.js +2 -0
  880. package/ibc.applications.transfer.v1/types/gogoproto/gogo.ts +2 -0
  881. package/ibc.applications.transfer.v1/types/google/api/annotations.js +2 -0
  882. package/ibc.applications.transfer.v1/types/google/api/annotations.ts +2 -0
  883. package/ibc.applications.transfer.v1/types/google/api/http.js +260 -0
  884. package/ibc.applications.transfer.v1/types/google/api/http.ts +589 -0
  885. package/ibc.applications.transfer.v1/types/google/protobuf/any.js +99 -0
  886. package/ibc.applications.transfer.v1/types/google/protobuf/any.ts +240 -0
  887. package/ibc.applications.transfer.v1/types/google/protobuf/descriptor.js +2830 -0
  888. package/ibc.applications.transfer.v1/types/google/protobuf/descriptor.ts +3753 -0
  889. package/ibc.applications.transfer.v1/types/google/protobuf/timestamp.js +84 -0
  890. package/ibc.applications.transfer.v1/types/google/protobuf/timestamp.ts +216 -0
  891. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.js +75 -0
  892. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.ts +100 -0
  893. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.js +483 -0
  894. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.ts +659 -0
  895. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.js +110 -0
  896. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.ts +168 -0
  897. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.js +186 -0
  898. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.ts +265 -0
  899. package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.js +448 -0
  900. package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.ts +608 -0
  901. package/ibc.applications.transfer.v1/types.js +3 -0
  902. package/ibc.applications.transfer.v1/types.ts +9 -0
  903. package/ibc.core.channel.v1/index.js +5 -0
  904. package/ibc.core.channel.v1/index.ts +6 -0
  905. package/ibc.core.channel.v1/module.js +72 -0
  906. package/ibc.core.channel.v1/module.ts +112 -0
  907. package/ibc.core.channel.v1/registry.js +2 -0
  908. package/ibc.core.channel.v1/registry.ts +7 -0
  909. package/ibc.core.channel.v1/rest.js +323 -0
  910. package/ibc.core.channel.v1/rest.ts +1375 -0
  911. package/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  912. package/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  913. package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  914. package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
  915. package/ibc.core.channel.v1/types/cosmos_proto/cosmos.js +171 -0
  916. package/ibc.core.channel.v1/types/cosmos_proto/cosmos.ts +247 -0
  917. package/ibc.core.channel.v1/types/gogoproto/gogo.js +2 -0
  918. package/ibc.core.channel.v1/types/gogoproto/gogo.ts +2 -0
  919. package/ibc.core.channel.v1/types/google/api/annotations.js +2 -0
  920. package/ibc.core.channel.v1/types/google/api/annotations.ts +2 -0
  921. package/ibc.core.channel.v1/types/google/api/http.js +260 -0
  922. package/ibc.core.channel.v1/types/google/api/http.ts +589 -0
  923. package/ibc.core.channel.v1/types/google/protobuf/any.js +99 -0
  924. package/ibc.core.channel.v1/types/google/protobuf/any.ts +240 -0
  925. package/ibc.core.channel.v1/types/google/protobuf/descriptor.js +2830 -0
  926. package/ibc.core.channel.v1/types/google/protobuf/descriptor.ts +3753 -0
  927. package/ibc.core.channel.v1/types/google/protobuf/timestamp.js +84 -0
  928. package/ibc.core.channel.v1/types/google/protobuf/timestamp.ts +216 -0
  929. package/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.js +714 -0
  930. package/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.ts +905 -0
  931. package/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.js +254 -0
  932. package/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.ts +301 -0
  933. package/ibc.core.channel.v1/types/ibc/core/channel/v1/query.js +1866 -0
  934. package/ibc.core.channel.v1/types/ibc/core/channel/v1/query.ts +2472 -0
  935. package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.js +1425 -0
  936. package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.ts +1784 -0
  937. package/ibc.core.channel.v1/types/ibc/core/client/v1/client.js +448 -0
  938. package/ibc.core.channel.v1/types/ibc/core/client/v1/client.ts +608 -0
  939. package/ibc.core.channel.v1/types.js +9 -0
  940. package/ibc.core.channel.v1/types.ts +21 -0
  941. package/ibc.core.client.v1/index.js +5 -0
  942. package/ibc.core.client.v1/index.ts +6 -0
  943. package/ibc.core.client.v1/module.js +74 -0
  944. package/ibc.core.client.v1/module.ts +114 -0
  945. package/ibc.core.client.v1/registry.js +2 -0
  946. package/ibc.core.client.v1/registry.ts +7 -0
  947. package/ibc.core.client.v1/rest.js +218 -0
  948. package/ibc.core.client.v1/rest.ts +1084 -0
  949. package/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  950. package/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  951. package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  952. package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
  953. package/ibc.core.client.v1/types/cosmos_proto/cosmos.js +171 -0
  954. package/ibc.core.client.v1/types/cosmos_proto/cosmos.ts +247 -0
  955. package/ibc.core.client.v1/types/gogoproto/gogo.js +2 -0
  956. package/ibc.core.client.v1/types/gogoproto/gogo.ts +2 -0
  957. package/ibc.core.client.v1/types/google/api/annotations.js +2 -0
  958. package/ibc.core.client.v1/types/google/api/annotations.ts +2 -0
  959. package/ibc.core.client.v1/types/google/api/http.js +260 -0
  960. package/ibc.core.client.v1/types/google/api/http.ts +589 -0
  961. package/ibc.core.client.v1/types/google/protobuf/any.js +99 -0
  962. package/ibc.core.client.v1/types/google/protobuf/any.ts +240 -0
  963. package/ibc.core.client.v1/types/google/protobuf/descriptor.js +2830 -0
  964. package/ibc.core.client.v1/types/google/protobuf/descriptor.ts +3753 -0
  965. package/ibc.core.client.v1/types/google/protobuf/timestamp.js +84 -0
  966. package/ibc.core.client.v1/types/google/protobuf/timestamp.ts +216 -0
  967. package/ibc.core.client.v1/types/ibc/core/client/v1/client.js +448 -0
  968. package/ibc.core.client.v1/types/ibc/core/client/v1/client.ts +608 -0
  969. package/ibc.core.client.v1/types/ibc/core/client/v1/genesis.js +287 -0
  970. package/ibc.core.client.v1/types/ibc/core/client/v1/genesis.ts +357 -0
  971. package/ibc.core.client.v1/types/ibc/core/client/v1/query.js +1026 -0
  972. package/ibc.core.client.v1/types/ibc/core/client/v1/query.ts +1390 -0
  973. package/ibc.core.client.v1/types/ibc/core/client/v1/tx.js +509 -0
  974. package/ibc.core.client.v1/types/ibc/core/client/v1/tx.ts +691 -0
  975. package/ibc.core.client.v1/types.js +10 -0
  976. package/ibc.core.client.v1/types.ts +23 -0
  977. package/ibc.core.connection.v1/index.js +5 -0
  978. package/ibc.core.connection.v1/index.ts +6 -0
  979. package/ibc.core.connection.v1/module.js +70 -0
  980. package/ibc.core.connection.v1/module.ts +110 -0
  981. package/ibc.core.connection.v1/registry.js +2 -0
  982. package/ibc.core.connection.v1/registry.ts +7 -0
  983. package/ibc.core.connection.v1/rest.js +177 -0
  984. package/ibc.core.connection.v1/rest.ts +852 -0
  985. package/ibc.core.connection.v1/types/confio/proofs.js +1120 -0
  986. package/ibc.core.connection.v1/types/confio/proofs.ts +1402 -0
  987. package/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  988. package/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  989. package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  990. package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +429 -0
  991. package/ibc.core.connection.v1/types/cosmos_proto/cosmos.js +171 -0
  992. package/ibc.core.connection.v1/types/cosmos_proto/cosmos.ts +247 -0
  993. package/ibc.core.connection.v1/types/gogoproto/gogo.js +2 -0
  994. package/ibc.core.connection.v1/types/gogoproto/gogo.ts +2 -0
  995. package/ibc.core.connection.v1/types/google/api/annotations.js +2 -0
  996. package/ibc.core.connection.v1/types/google/api/annotations.ts +2 -0
  997. package/ibc.core.connection.v1/types/google/api/http.js +260 -0
  998. package/ibc.core.connection.v1/types/google/api/http.ts +589 -0
  999. package/ibc.core.connection.v1/types/google/protobuf/any.js +99 -0
  1000. package/ibc.core.connection.v1/types/google/protobuf/any.ts +240 -0
  1001. package/ibc.core.connection.v1/types/google/protobuf/descriptor.js +2830 -0
  1002. package/ibc.core.connection.v1/types/google/protobuf/descriptor.ts +3753 -0
  1003. package/ibc.core.connection.v1/types/google/protobuf/timestamp.js +84 -0
  1004. package/ibc.core.connection.v1/types/google/protobuf/timestamp.ts +216 -0
  1005. package/ibc.core.connection.v1/types/ibc/core/client/v1/client.js +448 -0
  1006. package/ibc.core.connection.v1/types/ibc/core/client/v1/client.ts +608 -0
  1007. package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.js +223 -0
  1008. package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.ts +299 -0
  1009. package/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.js +537 -0
  1010. package/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.ts +698 -0
  1011. package/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.js +120 -0
  1012. package/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.ts +152 -0
  1013. package/ibc.core.connection.v1/types/ibc/core/connection/v1/query.js +684 -0
  1014. package/ibc.core.connection.v1/types/ibc/core/connection/v1/query.ts +932 -0
  1015. package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.js +705 -0
  1016. package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.ts +908 -0
  1017. package/ibc.core.connection.v1/types/proofs.js +1126 -0
  1018. package/ibc.core.connection.v1/types/proofs.ts +1408 -0
  1019. package/ibc.core.connection.v1/types.js +8 -0
  1020. package/ibc.core.connection.v1/types.ts +19 -0
  1021. package/index.js +62 -0
  1022. package/index.ts +71 -0
  1023. package/lib/DecentralCardGame.cardchain.cardchain/index.js +5 -0
  1024. package/lib/DecentralCardGame.cardchain.cardchain/module.js +1019 -0
  1025. package/lib/DecentralCardGame.cardchain.cardchain/registry.js +83 -0
  1026. package/lib/DecentralCardGame.cardchain.cardchain/rest.js +396 -0
  1027. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/card.js +491 -0
  1028. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.js +497 -0
  1029. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.js +365 -0
  1030. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.js +93 -0
  1031. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.js +102 -0
  1032. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.js +356 -0
  1033. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.js +241 -0
  1034. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.js +88 -0
  1035. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.js +210 -0
  1036. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.js +67 -0
  1037. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.js +73 -0
  1038. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.js +275 -0
  1039. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.js +2186 -0
  1040. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.js +85 -0
  1041. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.js +148 -0
  1042. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.js +93 -0
  1043. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.js +4136 -0
  1044. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.js +554 -0
  1045. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.js +84 -0
  1046. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.js +127 -0
  1047. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.js +148 -0
  1048. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/collection.js +365 -0
  1049. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/collection_proposal.js +93 -0
  1050. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/copyright_proposal.js +102 -0
  1051. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/council.js +350 -0
  1052. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/genesis.js +241 -0
  1053. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/image.js +88 -0
  1054. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/match.js +210 -0
  1055. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/match_reporter_proposal.js +67 -0
  1056. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/num.js +73 -0
  1057. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/params.js +275 -0
  1058. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/query.js +1970 -0
  1059. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/running_average.js +85 -0
  1060. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/sell_offer.js +148 -0
  1061. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/server.js +93 -0
  1062. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/tx.js +4137 -0
  1063. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/user.js +496 -0
  1064. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/vote_right.js +84 -0
  1065. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_result.js +127 -0
  1066. package/lib/DecentralCardGame.cardchain.cardchain/types/cardchain/voting_results.js +148 -0
  1067. package/lib/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1068. package/lib/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.js +192 -0
  1069. package/lib/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.js +171 -0
  1070. package/lib/DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.js +2 -0
  1071. package/lib/DecentralCardGame.cardchain.cardchain/types/google/api/annotations.js +2 -0
  1072. package/lib/DecentralCardGame.cardchain.cardchain/types/google/api/http.js +260 -0
  1073. package/lib/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.js +2830 -0
  1074. package/lib/DecentralCardGame.cardchain.cardchain/types.js +21 -0
  1075. package/lib/client.js +135 -0
  1076. package/lib/cosmos.auth.v1beta1/index.js +5 -0
  1077. package/lib/cosmos.auth.v1beta1/module.js +62 -0
  1078. package/lib/cosmos.auth.v1beta1/registry.js +2 -0
  1079. package/lib/cosmos.auth.v1beta1/rest.js +213 -0
  1080. package/lib/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
  1081. package/lib/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.js +67 -0
  1082. package/lib/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.js +868 -0
  1083. package/lib/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1084. package/lib/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1085. package/lib/cosmos.auth.v1beta1/types/gogoproto/gogo.js +2 -0
  1086. package/lib/cosmos.auth.v1beta1/types/google/api/annotations.js +2 -0
  1087. package/lib/cosmos.auth.v1beta1/types/google/api/http.js +260 -0
  1088. package/lib/cosmos.auth.v1beta1/types/google/protobuf/any.js +99 -0
  1089. package/lib/cosmos.auth.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1090. package/lib/cosmos.auth.v1beta1/types.js +4 -0
  1091. package/lib/cosmos.authz.v1beta1/index.js +5 -0
  1092. package/lib/cosmos.authz.v1beta1/module.js +140 -0
  1093. package/lib/cosmos.authz.v1beta1/registry.js +9 -0
  1094. package/lib/cosmos.authz.v1beta1/rest.js +131 -0
  1095. package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.js +244 -0
  1096. package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.js +128 -0
  1097. package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.js +54 -0
  1098. package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.js +394 -0
  1099. package/lib/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.js +362 -0
  1100. package/lib/cosmos.authz.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +773 -0
  1101. package/lib/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1102. package/lib/cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1103. package/lib/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1104. package/lib/cosmos.authz.v1beta1/types/gogoproto/gogo.js +2 -0
  1105. package/lib/cosmos.authz.v1beta1/types/google/api/annotations.js +2 -0
  1106. package/lib/cosmos.authz.v1beta1/types/google/api/http.js +260 -0
  1107. package/lib/cosmos.authz.v1beta1/types/google/protobuf/any.js +99 -0
  1108. package/lib/cosmos.authz.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1109. package/lib/cosmos.authz.v1beta1/types/google/protobuf/duration.js +84 -0
  1110. package/lib/cosmos.authz.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1111. package/lib/cosmos.authz.v1beta1/types/tendermint/abci/types.js +3447 -0
  1112. package/lib/cosmos.authz.v1beta1/types/tendermint/crypto/keys.js +100 -0
  1113. package/lib/cosmos.authz.v1beta1/types/tendermint/crypto/proof.js +356 -0
  1114. package/lib/cosmos.authz.v1beta1/types/tendermint/types/params.js +378 -0
  1115. package/lib/cosmos.authz.v1beta1/types/tendermint/types/types.js +1207 -0
  1116. package/lib/cosmos.authz.v1beta1/types/tendermint/types/validator.js +254 -0
  1117. package/lib/cosmos.authz.v1beta1/types/tendermint/version/types.js +133 -0
  1118. package/lib/cosmos.authz.v1beta1/types.js +7 -0
  1119. package/lib/cosmos.bank.v1beta1/index.js +5 -0
  1120. package/lib/cosmos.bank.v1beta1/module.js +125 -0
  1121. package/lib/cosmos.bank.v1beta1/registry.js +7 -0
  1122. package/lib/cosmos.bank.v1beta1/rest.js +222 -0
  1123. package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.js +50 -0
  1124. package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.js +455 -0
  1125. package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.js +154 -0
  1126. package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.js +1014 -0
  1127. package/lib/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.js +219 -0
  1128. package/lib/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1129. package/lib/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1130. package/lib/cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1131. package/lib/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1132. package/lib/cosmos.bank.v1beta1/types/gogoproto/gogo.js +2 -0
  1133. package/lib/cosmos.bank.v1beta1/types/google/api/annotations.js +2 -0
  1134. package/lib/cosmos.bank.v1beta1/types/google/api/http.js +260 -0
  1135. package/lib/cosmos.bank.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1136. package/lib/cosmos.bank.v1beta1/types.js +11 -0
  1137. package/lib/cosmos.base.tendermint.v1beta1/index.js +5 -0
  1138. package/lib/cosmos.base.tendermint.v1beta1/module.js +70 -0
  1139. package/lib/cosmos.base.tendermint.v1beta1/registry.js +2 -0
  1140. package/lib/cosmos.base.tendermint.v1beta1/rest.js +209 -0
  1141. package/lib/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1142. package/lib/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.js +1281 -0
  1143. package/lib/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.js +350 -0
  1144. package/lib/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1145. package/lib/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.js +2 -0
  1146. package/lib/cosmos.base.tendermint.v1beta1/types/google/api/annotations.js +2 -0
  1147. package/lib/cosmos.base.tendermint.v1beta1/types/google/api/http.js +260 -0
  1148. package/lib/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.js +99 -0
  1149. package/lib/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1150. package/lib/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1151. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.js +100 -0
  1152. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.js +356 -0
  1153. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.js +352 -0
  1154. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.js +86 -0
  1155. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.js +343 -0
  1156. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.js +1207 -0
  1157. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.js +254 -0
  1158. package/lib/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.js +133 -0
  1159. package/lib/cosmos.base.tendermint.v1beta1/types.js +8 -0
  1160. package/lib/cosmos.crisis.v1beta1/index.js +5 -0
  1161. package/lib/cosmos.crisis.v1beta1/module.js +81 -0
  1162. package/lib/cosmos.crisis.v1beta1/registry.js +5 -0
  1163. package/lib/cosmos.crisis.v1beta1/rest.js +83 -0
  1164. package/lib/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1165. package/lib/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.js +51 -0
  1166. package/lib/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.js +111 -0
  1167. package/lib/cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1168. package/lib/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1169. package/lib/cosmos.crisis.v1beta1/types/gogoproto/gogo.js +2 -0
  1170. package/lib/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1171. package/lib/cosmos.crisis.v1beta1/types.js +1 -0
  1172. package/lib/cosmos.distribution.v1beta1/index.js +5 -0
  1173. package/lib/cosmos.distribution.v1beta1/module.js +189 -0
  1174. package/lib/cosmos.distribution.v1beta1/registry.js +11 -0
  1175. package/lib/cosmos.distribution.v1beta1/rest.js +214 -0
  1176. package/lib/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1177. package/lib/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1178. package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.js +737 -0
  1179. package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.js +656 -0
  1180. package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.js +926 -0
  1181. package/lib/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.js +396 -0
  1182. package/lib/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1183. package/lib/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1184. package/lib/cosmos.distribution.v1beta1/types/gogoproto/gogo.js +2 -0
  1185. package/lib/cosmos.distribution.v1beta1/types/google/api/annotations.js +2 -0
  1186. package/lib/cosmos.distribution.v1beta1/types/google/api/http.js +260 -0
  1187. package/lib/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1188. package/lib/cosmos.distribution.v1beta1/types.js +20 -0
  1189. package/lib/cosmos.evidence.v1beta1/index.js +5 -0
  1190. package/lib/cosmos.evidence.v1beta1/module.js +84 -0
  1191. package/lib/cosmos.evidence.v1beta1/registry.js +5 -0
  1192. package/lib/cosmos.evidence.v1beta1/rest.js +115 -0
  1193. package/lib/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1194. package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.js +124 -0
  1195. package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.js +50 -0
  1196. package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.js +254 -0
  1197. package/lib/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.js +154 -0
  1198. package/lib/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1199. package/lib/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1200. package/lib/cosmos.evidence.v1beta1/types/gogoproto/gogo.js +2 -0
  1201. package/lib/cosmos.evidence.v1beta1/types/google/api/annotations.js +2 -0
  1202. package/lib/cosmos.evidence.v1beta1/types/google/api/http.js +260 -0
  1203. package/lib/cosmos.evidence.v1beta1/types/google/protobuf/any.js +99 -0
  1204. package/lib/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1205. package/lib/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1206. package/lib/cosmos.evidence.v1beta1/types.js +2 -0
  1207. package/lib/cosmos.feegrant.v1beta1/index.js +5 -0
  1208. package/lib/cosmos.feegrant.v1beta1/module.js +113 -0
  1209. package/lib/cosmos.feegrant.v1beta1/registry.js +7 -0
  1210. package/lib/cosmos.feegrant.v1beta1/rest.js +130 -0
  1211. package/lib/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1212. package/lib/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1213. package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.js +307 -0
  1214. package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.js +52 -0
  1215. package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.js +357 -0
  1216. package/lib/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.js +205 -0
  1217. package/lib/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1218. package/lib/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1219. package/lib/cosmos.feegrant.v1beta1/types/gogoproto/gogo.js +2 -0
  1220. package/lib/cosmos.feegrant.v1beta1/types/google/api/annotations.js +2 -0
  1221. package/lib/cosmos.feegrant.v1beta1/types/google/api/http.js +260 -0
  1222. package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/any.js +99 -0
  1223. package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1224. package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/duration.js +84 -0
  1225. package/lib/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1226. package/lib/cosmos.feegrant.v1beta1/types.js +5 -0
  1227. package/lib/cosmos.gov.v1/index.js +5 -0
  1228. package/lib/cosmos.gov.v1/module.js +167 -0
  1229. package/lib/cosmos.gov.v1/registry.js +11 -0
  1230. package/lib/cosmos.gov.v1/rest.js +242 -0
  1231. package/lib/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1232. package/lib/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.js +192 -0
  1233. package/lib/cosmos.gov.v1/types/cosmos/gov/v1/genesis.js +162 -0
  1234. package/lib/cosmos.gov.v1/types/cosmos/gov/v1/gov.js +766 -0
  1235. package/lib/cosmos.gov.v1/types/cosmos/gov/v1/query.js +917 -0
  1236. package/lib/cosmos.gov.v1/types/cosmos/gov/v1/tx.js +590 -0
  1237. package/lib/cosmos.gov.v1/types/cosmos/msg/v1/msg.js +2 -0
  1238. package/lib/cosmos.gov.v1/types/cosmos_proto/cosmos.js +171 -0
  1239. package/lib/cosmos.gov.v1/types/gogoproto/gogo.js +2 -0
  1240. package/lib/cosmos.gov.v1/types/google/api/annotations.js +2 -0
  1241. package/lib/cosmos.gov.v1/types/google/api/http.js +260 -0
  1242. package/lib/cosmos.gov.v1/types/google/protobuf/any.js +99 -0
  1243. package/lib/cosmos.gov.v1/types/google/protobuf/descriptor.js +2830 -0
  1244. package/lib/cosmos.gov.v1/types/google/protobuf/duration.js +84 -0
  1245. package/lib/cosmos.gov.v1/types/google/protobuf/timestamp.js +84 -0
  1246. package/lib/cosmos.gov.v1/types.js +9 -0
  1247. package/lib/cosmos.gov.v1beta1/index.js +5 -0
  1248. package/lib/cosmos.gov.v1beta1/module.js +169 -0
  1249. package/lib/cosmos.gov.v1beta1/registry.js +11 -0
  1250. package/lib/cosmos.gov.v1beta1/rest.js +242 -0
  1251. package/lib/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1252. package/lib/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1253. package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.js +162 -0
  1254. package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.js +832 -0
  1255. package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.js +917 -0
  1256. package/lib/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.js +467 -0
  1257. package/lib/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1258. package/lib/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1259. package/lib/cosmos.gov.v1beta1/types/gogoproto/gogo.js +2 -0
  1260. package/lib/cosmos.gov.v1beta1/types/google/api/annotations.js +2 -0
  1261. package/lib/cosmos.gov.v1beta1/types/google/api/http.js +260 -0
  1262. package/lib/cosmos.gov.v1beta1/types/google/protobuf/any.js +99 -0
  1263. package/lib/cosmos.gov.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1264. package/lib/cosmos.gov.v1beta1/types/google/protobuf/duration.js +84 -0
  1265. package/lib/cosmos.gov.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1266. package/lib/cosmos.gov.v1beta1/types.js +10 -0
  1267. package/lib/cosmos.group.v1/index.js +5 -0
  1268. package/lib/cosmos.group.v1/module.js +421 -0
  1269. package/lib/cosmos.group.v1/registry.js +31 -0
  1270. package/lib/cosmos.group.v1/rest.js +351 -0
  1271. package/lib/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1272. package/lib/cosmos.group.v1/types/cosmos/group/v1/events.js +433 -0
  1273. package/lib/cosmos.group.v1/types/cosmos/group/v1/genesis.js +177 -0
  1274. package/lib/cosmos.group.v1/types/cosmos/group/v1/query.js +1468 -0
  1275. package/lib/cosmos.group.v1/types/cosmos/group/v1/tx.js +1621 -0
  1276. package/lib/cosmos.group.v1/types/cosmos/group/v1/types.js +1105 -0
  1277. package/lib/cosmos.group.v1/types/cosmos/msg/v1/msg.js +2 -0
  1278. package/lib/cosmos.group.v1/types/cosmos_proto/cosmos.js +171 -0
  1279. package/lib/cosmos.group.v1/types/gogoproto/gogo.js +2 -0
  1280. package/lib/cosmos.group.v1/types/google/api/annotations.js +2 -0
  1281. package/lib/cosmos.group.v1/types/google/api/http.js +260 -0
  1282. package/lib/cosmos.group.v1/types/google/protobuf/any.js +99 -0
  1283. package/lib/cosmos.group.v1/types/google/protobuf/descriptor.js +2830 -0
  1284. package/lib/cosmos.group.v1/types/google/protobuf/duration.js +84 -0
  1285. package/lib/cosmos.group.v1/types/google/protobuf/timestamp.js +84 -0
  1286. package/lib/cosmos.group.v1/types.js +21 -0
  1287. package/lib/cosmos.mint.v1beta1/index.js +5 -0
  1288. package/lib/cosmos.mint.v1beta1/module.js +60 -0
  1289. package/lib/cosmos.mint.v1beta1/registry.js +2 -0
  1290. package/lib/cosmos.mint.v1beta1/rest.js +128 -0
  1291. package/lib/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.js +63 -0
  1292. package/lib/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.js +179 -0
  1293. package/lib/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.js +298 -0
  1294. package/lib/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1295. package/lib/cosmos.mint.v1beta1/types/gogoproto/gogo.js +2 -0
  1296. package/lib/cosmos.mint.v1beta1/types/google/api/annotations.js +2 -0
  1297. package/lib/cosmos.mint.v1beta1/types/google/api/http.js +260 -0
  1298. package/lib/cosmos.mint.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1299. package/lib/cosmos.mint.v1beta1/types.js +3 -0
  1300. package/lib/cosmos.nft.v1beta1/index.js +5 -0
  1301. package/lib/cosmos.nft.v1beta1/module.js +68 -0
  1302. package/lib/cosmos.nft.v1beta1/registry.js +2 -0
  1303. package/lib/cosmos.nft.v1beta1/rest.js +187 -0
  1304. package/lib/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1305. package/lib/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1306. package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.js +198 -0
  1307. package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.js +126 -0
  1308. package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.js +183 -0
  1309. package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.js +752 -0
  1310. package/lib/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.js +120 -0
  1311. package/lib/cosmos.nft.v1beta1/types/google/api/annotations.js +2 -0
  1312. package/lib/cosmos.nft.v1beta1/types/google/api/http.js +260 -0
  1313. package/lib/cosmos.nft.v1beta1/types/google/protobuf/any.js +99 -0
  1314. package/lib/cosmos.nft.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1315. package/lib/cosmos.nft.v1beta1/types.js +7 -0
  1316. package/lib/cosmos.params.v1beta1/index.js +5 -0
  1317. package/lib/cosmos.params.v1beta1/module.js +62 -0
  1318. package/lib/cosmos.params.v1beta1/registry.js +2 -0
  1319. package/lib/cosmos.params.v1beta1/rest.js +116 -0
  1320. package/lib/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.js +133 -0
  1321. package/lib/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.js +257 -0
  1322. package/lib/cosmos.params.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1323. package/lib/cosmos.params.v1beta1/types/gogoproto/gogo.js +2 -0
  1324. package/lib/cosmos.params.v1beta1/types/google/api/annotations.js +2 -0
  1325. package/lib/cosmos.params.v1beta1/types/google/api/http.js +260 -0
  1326. package/lib/cosmos.params.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1327. package/lib/cosmos.params.v1beta1/types.js +4 -0
  1328. package/lib/cosmos.slashing.v1beta1/index.js +5 -0
  1329. package/lib/cosmos.slashing.v1beta1/module.js +92 -0
  1330. package/lib/cosmos.slashing.v1beta1/registry.js +5 -0
  1331. package/lib/cosmos.slashing.v1beta1/rest.js +129 -0
  1332. package/lib/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1333. package/lib/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1334. package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.js +279 -0
  1335. package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.js +300 -0
  1336. package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.js +275 -0
  1337. package/lib/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.js +91 -0
  1338. package/lib/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1339. package/lib/cosmos.slashing.v1beta1/types/gogoproto/gogo.js +2 -0
  1340. package/lib/cosmos.slashing.v1beta1/types/google/api/annotations.js +2 -0
  1341. package/lib/cosmos.slashing.v1beta1/types/google/api/http.js +260 -0
  1342. package/lib/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1343. package/lib/cosmos.slashing.v1beta1/types/google/protobuf/duration.js +84 -0
  1344. package/lib/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1345. package/lib/cosmos.slashing.v1beta1/types.js +6 -0
  1346. package/lib/cosmos.staking.v1beta1/index.js +5 -0
  1347. package/lib/cosmos.staking.v1beta1/module.js +243 -0
  1348. package/lib/cosmos.staking.v1beta1/registry.js +15 -0
  1349. package/lib/cosmos.staking.v1beta1/rest.js +308 -0
  1350. package/lib/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1351. package/lib/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1352. package/lib/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1353. package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.js +184 -0
  1354. package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.js +259 -0
  1355. package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.js +1568 -0
  1356. package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.js +1436 -0
  1357. package/lib/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.js +768 -0
  1358. package/lib/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1359. package/lib/cosmos.staking.v1beta1/types/gogoproto/gogo.js +2 -0
  1360. package/lib/cosmos.staking.v1beta1/types/google/api/annotations.js +2 -0
  1361. package/lib/cosmos.staking.v1beta1/types/google/api/http.js +260 -0
  1362. package/lib/cosmos.staking.v1beta1/types/google/protobuf/any.js +99 -0
  1363. package/lib/cosmos.staking.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1364. package/lib/cosmos.staking.v1beta1/types/google/protobuf/duration.js +84 -0
  1365. package/lib/cosmos.staking.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1366. package/lib/cosmos.staking.v1beta1/types/tendermint/crypto/keys.js +100 -0
  1367. package/lib/cosmos.staking.v1beta1/types/tendermint/crypto/proof.js +356 -0
  1368. package/lib/cosmos.staking.v1beta1/types/tendermint/types/types.js +1207 -0
  1369. package/lib/cosmos.staking.v1beta1/types/tendermint/types/validator.js +254 -0
  1370. package/lib/cosmos.staking.v1beta1/types/tendermint/version/types.js +133 -0
  1371. package/lib/cosmos.staking.v1beta1/types.js +24 -0
  1372. package/lib/cosmos.tx.v1beta1/index.js +5 -0
  1373. package/lib/cosmos.tx.v1beta1/module.js +82 -0
  1374. package/lib/cosmos.tx.v1beta1/registry.js +2 -0
  1375. package/lib/cosmos.tx.v1beta1/rest.js +256 -0
  1376. package/lib/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +803 -0
  1377. package/lib/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1378. package/lib/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1379. package/lib/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.js +147 -0
  1380. package/lib/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.js +449 -0
  1381. package/lib/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.js +802 -0
  1382. package/lib/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.js +959 -0
  1383. package/lib/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1384. package/lib/cosmos.tx.v1beta1/types/gogoproto/gogo.js +2 -0
  1385. package/lib/cosmos.tx.v1beta1/types/google/api/annotations.js +2 -0
  1386. package/lib/cosmos.tx.v1beta1/types/google/api/http.js +260 -0
  1387. package/lib/cosmos.tx.v1beta1/types/google/protobuf/any.js +99 -0
  1388. package/lib/cosmos.tx.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1389. package/lib/cosmos.tx.v1beta1/types/google/protobuf/duration.js +84 -0
  1390. package/lib/cosmos.tx.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1391. package/lib/cosmos.tx.v1beta1/types/tendermint/abci/types.js +3486 -0
  1392. package/lib/cosmos.tx.v1beta1/types/tendermint/crypto/keys.js +100 -0
  1393. package/lib/cosmos.tx.v1beta1/types/tendermint/crypto/proof.js +356 -0
  1394. package/lib/cosmos.tx.v1beta1/types/tendermint/types/block.js +86 -0
  1395. package/lib/cosmos.tx.v1beta1/types/tendermint/types/evidence.js +343 -0
  1396. package/lib/cosmos.tx.v1beta1/types/tendermint/types/params.js +378 -0
  1397. package/lib/cosmos.tx.v1beta1/types/tendermint/types/types.js +1207 -0
  1398. package/lib/cosmos.tx.v1beta1/types/tendermint/types/validator.js +254 -0
  1399. package/lib/cosmos.tx.v1beta1/types/tendermint/version/types.js +133 -0
  1400. package/lib/cosmos.tx.v1beta1/types.js +14 -0
  1401. package/lib/cosmos.upgrade.v1beta1/index.js +5 -0
  1402. package/lib/cosmos.upgrade.v1beta1/module.js +113 -0
  1403. package/lib/cosmos.upgrade.v1beta1/registry.js +7 -0
  1404. package/lib/cosmos.upgrade.v1beta1/rest.js +162 -0
  1405. package/lib/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1406. package/lib/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.js +501 -0
  1407. package/lib/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.js +183 -0
  1408. package/lib/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  1409. package/lib/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1410. package/lib/cosmos.upgrade.v1beta1/types/gogoproto/gogo.js +2 -0
  1411. package/lib/cosmos.upgrade.v1beta1/types/google/api/annotations.js +2 -0
  1412. package/lib/cosmos.upgrade.v1beta1/types/google/api/http.js +260 -0
  1413. package/lib/cosmos.upgrade.v1beta1/types/google/protobuf/any.js +99 -0
  1414. package/lib/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1415. package/lib/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.js +84 -0
  1416. package/lib/cosmos.upgrade.v1beta1/types.js +5 -0
  1417. package/lib/cosmos.vesting.v1beta1/index.js +5 -0
  1418. package/lib/cosmos.vesting.v1beta1/module.js +140 -0
  1419. package/lib/cosmos.vesting.v1beta1/registry.js +9 -0
  1420. package/lib/cosmos.vesting.v1beta1/rest.js +83 -0
  1421. package/lib/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.js +260 -0
  1422. package/lib/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.js +192 -0
  1423. package/lib/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.js +2 -0
  1424. package/lib/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.js +383 -0
  1425. package/lib/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.js +422 -0
  1426. package/lib/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.js +171 -0
  1427. package/lib/cosmos.vesting.v1beta1/types/gogoproto/gogo.js +2 -0
  1428. package/lib/cosmos.vesting.v1beta1/types/google/protobuf/any.js +99 -0
  1429. package/lib/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.js +2830 -0
  1430. package/lib/cosmos.vesting.v1beta1/types.js +7 -0
  1431. package/lib/env.js +1 -0
  1432. package/lib/helpers.js +11 -0
  1433. package/lib/ibc.applications.interchain_accounts.controller.v1/index.js +5 -0
  1434. package/lib/ibc.applications.interchain_accounts.controller.v1/module.js +58 -0
  1435. package/lib/ibc.applications.interchain_accounts.controller.v1/registry.js +2 -0
  1436. package/lib/ibc.applications.interchain_accounts.controller.v1/rest.js +114 -0
  1437. package/lib/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.js +2 -0
  1438. package/lib/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.js +2 -0
  1439. package/lib/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.js +260 -0
  1440. package/lib/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.js +2830 -0
  1441. package/lib/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.js +47 -0
  1442. package/lib/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.js +193 -0
  1443. package/lib/ibc.applications.interchain_accounts.controller.v1/types.js +2 -0
  1444. package/lib/ibc.applications.interchain_accounts.host.v1/index.js +5 -0
  1445. package/lib/ibc.applications.interchain_accounts.host.v1/module.js +58 -0
  1446. package/lib/ibc.applications.interchain_accounts.host.v1/registry.js +2 -0
  1447. package/lib/ibc.applications.interchain_accounts.host.v1/rest.js +100 -0
  1448. package/lib/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.js +2 -0
  1449. package/lib/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.js +2 -0
  1450. package/lib/ibc.applications.interchain_accounts.host.v1/types/google/api/http.js +260 -0
  1451. package/lib/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.js +2830 -0
  1452. package/lib/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.js +63 -0
  1453. package/lib/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.js +94 -0
  1454. package/lib/ibc.applications.interchain_accounts.host.v1/types.js +2 -0
  1455. package/lib/ibc.applications.transfer.v1/index.js +5 -0
  1456. package/lib/ibc.applications.transfer.v1/module.js +86 -0
  1457. package/lib/ibc.applications.transfer.v1/registry.js +5 -0
  1458. package/lib/ibc.applications.transfer.v1/rest.js +157 -0
  1459. package/lib/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1460. package/lib/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.js +192 -0
  1461. package/lib/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  1462. package/lib/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.js +171 -0
  1463. package/lib/ibc.applications.transfer.v1/types/gogoproto/gogo.js +2 -0
  1464. package/lib/ibc.applications.transfer.v1/types/google/api/annotations.js +2 -0
  1465. package/lib/ibc.applications.transfer.v1/types/google/api/http.js +260 -0
  1466. package/lib/ibc.applications.transfer.v1/types/google/protobuf/any.js +99 -0
  1467. package/lib/ibc.applications.transfer.v1/types/google/protobuf/descriptor.js +2830 -0
  1468. package/lib/ibc.applications.transfer.v1/types/google/protobuf/timestamp.js +84 -0
  1469. package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.js +75 -0
  1470. package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.js +483 -0
  1471. package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.js +110 -0
  1472. package/lib/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.js +186 -0
  1473. package/lib/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.js +448 -0
  1474. package/lib/ibc.applications.transfer.v1/types.js +3 -0
  1475. package/lib/ibc.core.channel.v1/index.js +5 -0
  1476. package/lib/ibc.core.channel.v1/module.js +72 -0
  1477. package/lib/ibc.core.channel.v1/registry.js +2 -0
  1478. package/lib/ibc.core.channel.v1/rest.js +323 -0
  1479. package/lib/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1480. package/lib/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  1481. package/lib/ibc.core.channel.v1/types/cosmos_proto/cosmos.js +171 -0
  1482. package/lib/ibc.core.channel.v1/types/gogoproto/gogo.js +2 -0
  1483. package/lib/ibc.core.channel.v1/types/google/api/annotations.js +2 -0
  1484. package/lib/ibc.core.channel.v1/types/google/api/http.js +260 -0
  1485. package/lib/ibc.core.channel.v1/types/google/protobuf/any.js +99 -0
  1486. package/lib/ibc.core.channel.v1/types/google/protobuf/descriptor.js +2830 -0
  1487. package/lib/ibc.core.channel.v1/types/google/protobuf/timestamp.js +84 -0
  1488. package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.js +714 -0
  1489. package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.js +254 -0
  1490. package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/query.js +1866 -0
  1491. package/lib/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.js +1425 -0
  1492. package/lib/ibc.core.channel.v1/types/ibc/core/client/v1/client.js +448 -0
  1493. package/lib/ibc.core.channel.v1/types.js +9 -0
  1494. package/lib/ibc.core.client.v1/index.js +5 -0
  1495. package/lib/ibc.core.client.v1/module.js +74 -0
  1496. package/lib/ibc.core.client.v1/registry.js +2 -0
  1497. package/lib/ibc.core.client.v1/rest.js +218 -0
  1498. package/lib/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1499. package/lib/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  1500. package/lib/ibc.core.client.v1/types/cosmos_proto/cosmos.js +171 -0
  1501. package/lib/ibc.core.client.v1/types/gogoproto/gogo.js +2 -0
  1502. package/lib/ibc.core.client.v1/types/google/api/annotations.js +2 -0
  1503. package/lib/ibc.core.client.v1/types/google/api/http.js +260 -0
  1504. package/lib/ibc.core.client.v1/types/google/protobuf/any.js +99 -0
  1505. package/lib/ibc.core.client.v1/types/google/protobuf/descriptor.js +2830 -0
  1506. package/lib/ibc.core.client.v1/types/google/protobuf/timestamp.js +84 -0
  1507. package/lib/ibc.core.client.v1/types/ibc/core/client/v1/client.js +448 -0
  1508. package/lib/ibc.core.client.v1/types/ibc/core/client/v1/genesis.js +287 -0
  1509. package/lib/ibc.core.client.v1/types/ibc/core/client/v1/query.js +1026 -0
  1510. package/lib/ibc.core.client.v1/types/ibc/core/client/v1/tx.js +509 -0
  1511. package/lib/ibc.core.client.v1/types.js +10 -0
  1512. package/lib/ibc.core.connection.v1/index.js +5 -0
  1513. package/lib/ibc.core.connection.v1/module.js +70 -0
  1514. package/lib/ibc.core.connection.v1/registry.js +2 -0
  1515. package/lib/ibc.core.connection.v1/rest.js +177 -0
  1516. package/lib/ibc.core.connection.v1/types/confio/proofs.js +1120 -0
  1517. package/lib/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  1518. package/lib/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.js +302 -0
  1519. package/lib/ibc.core.connection.v1/types/cosmos_proto/cosmos.js +171 -0
  1520. package/lib/ibc.core.connection.v1/types/gogoproto/gogo.js +2 -0
  1521. package/lib/ibc.core.connection.v1/types/google/api/annotations.js +2 -0
  1522. package/lib/ibc.core.connection.v1/types/google/api/http.js +260 -0
  1523. package/lib/ibc.core.connection.v1/types/google/protobuf/any.js +99 -0
  1524. package/lib/ibc.core.connection.v1/types/google/protobuf/descriptor.js +2830 -0
  1525. package/lib/ibc.core.connection.v1/types/google/protobuf/timestamp.js +84 -0
  1526. package/lib/ibc.core.connection.v1/types/ibc/core/client/v1/client.js +448 -0
  1527. package/lib/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.js +223 -0
  1528. package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.js +537 -0
  1529. package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.js +120 -0
  1530. package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/query.js +684 -0
  1531. package/lib/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.js +705 -0
  1532. package/lib/ibc.core.connection.v1/types/proofs.js +1126 -0
  1533. package/lib/ibc.core.connection.v1/types.js +8 -0
  1534. package/lib/index.js +62 -0
  1535. package/lib/modules.js +1 -0
  1536. package/modules.js +1 -0
  1537. package/modules.ts +5 -0
  1538. package/package.json +29 -0
  1539. package/tsconfig.json +12 -0
  1540. package/types.d.ts +21 -0
@@ -0,0 +1,2109 @@
1
+ /* eslint-disable */
2
+ import Long from "long";
3
+ import _m0 from "protobufjs/minimal";
4
+ import { PageRequest, PageResponse } from "../../base/query/v1beta1/pagination";
5
+ import {
6
+ DelegationResponse,
7
+ HistoricalInfo,
8
+ Params,
9
+ Pool,
10
+ RedelegationResponse,
11
+ UnbondingDelegation,
12
+ Validator,
13
+ } from "./staking";
14
+
15
+ export const protobufPackage = "cosmos.staking.v1beta1";
16
+
17
+ /** QueryValidatorsRequest is request type for Query/Validators RPC method. */
18
+ export interface QueryValidatorsRequest {
19
+ /** status enables to query for validators matching a given status. */
20
+ status: string;
21
+ /** pagination defines an optional pagination for the request. */
22
+ pagination: PageRequest | undefined;
23
+ }
24
+
25
+ /** QueryValidatorsResponse is response type for the Query/Validators RPC method */
26
+ export interface QueryValidatorsResponse {
27
+ /** validators contains all the queried validators. */
28
+ validators: Validator[];
29
+ /** pagination defines the pagination in the response. */
30
+ pagination: PageResponse | undefined;
31
+ }
32
+
33
+ /** QueryValidatorRequest is response type for the Query/Validator RPC method */
34
+ export interface QueryValidatorRequest {
35
+ /** validator_addr defines the validator address to query for. */
36
+ validatorAddr: string;
37
+ }
38
+
39
+ /** QueryValidatorResponse is response type for the Query/Validator RPC method */
40
+ export interface QueryValidatorResponse {
41
+ /** validator defines the validator info. */
42
+ validator: Validator | undefined;
43
+ }
44
+
45
+ /**
46
+ * QueryValidatorDelegationsRequest is request type for the
47
+ * Query/ValidatorDelegations RPC method
48
+ */
49
+ export interface QueryValidatorDelegationsRequest {
50
+ /** validator_addr defines the validator address to query for. */
51
+ validatorAddr: string;
52
+ /** pagination defines an optional pagination for the request. */
53
+ pagination: PageRequest | undefined;
54
+ }
55
+
56
+ /**
57
+ * QueryValidatorDelegationsResponse is response type for the
58
+ * Query/ValidatorDelegations RPC method
59
+ */
60
+ export interface QueryValidatorDelegationsResponse {
61
+ delegationResponses: DelegationResponse[];
62
+ /** pagination defines the pagination in the response. */
63
+ pagination: PageResponse | undefined;
64
+ }
65
+
66
+ /**
67
+ * QueryValidatorUnbondingDelegationsRequest is required type for the
68
+ * Query/ValidatorUnbondingDelegations RPC method
69
+ */
70
+ export interface QueryValidatorUnbondingDelegationsRequest {
71
+ /** validator_addr defines the validator address to query for. */
72
+ validatorAddr: string;
73
+ /** pagination defines an optional pagination for the request. */
74
+ pagination: PageRequest | undefined;
75
+ }
76
+
77
+ /**
78
+ * QueryValidatorUnbondingDelegationsResponse is response type for the
79
+ * Query/ValidatorUnbondingDelegations RPC method.
80
+ */
81
+ export interface QueryValidatorUnbondingDelegationsResponse {
82
+ unbondingResponses: UnbondingDelegation[];
83
+ /** pagination defines the pagination in the response. */
84
+ pagination: PageResponse | undefined;
85
+ }
86
+
87
+ /** QueryDelegationRequest is request type for the Query/Delegation RPC method. */
88
+ export interface QueryDelegationRequest {
89
+ /** delegator_addr defines the delegator address to query for. */
90
+ delegatorAddr: string;
91
+ /** validator_addr defines the validator address to query for. */
92
+ validatorAddr: string;
93
+ }
94
+
95
+ /** QueryDelegationResponse is response type for the Query/Delegation RPC method. */
96
+ export interface QueryDelegationResponse {
97
+ /** delegation_responses defines the delegation info of a delegation. */
98
+ delegationResponse: DelegationResponse | undefined;
99
+ }
100
+
101
+ /**
102
+ * QueryUnbondingDelegationRequest is request type for the
103
+ * Query/UnbondingDelegation RPC method.
104
+ */
105
+ export interface QueryUnbondingDelegationRequest {
106
+ /** delegator_addr defines the delegator address to query for. */
107
+ delegatorAddr: string;
108
+ /** validator_addr defines the validator address to query for. */
109
+ validatorAddr: string;
110
+ }
111
+
112
+ /**
113
+ * QueryDelegationResponse is response type for the Query/UnbondingDelegation
114
+ * RPC method.
115
+ */
116
+ export interface QueryUnbondingDelegationResponse {
117
+ /** unbond defines the unbonding information of a delegation. */
118
+ unbond: UnbondingDelegation | undefined;
119
+ }
120
+
121
+ /**
122
+ * QueryDelegatorDelegationsRequest is request type for the
123
+ * Query/DelegatorDelegations RPC method.
124
+ */
125
+ export interface QueryDelegatorDelegationsRequest {
126
+ /** delegator_addr defines the delegator address to query for. */
127
+ delegatorAddr: string;
128
+ /** pagination defines an optional pagination for the request. */
129
+ pagination: PageRequest | undefined;
130
+ }
131
+
132
+ /**
133
+ * QueryDelegatorDelegationsResponse is response type for the
134
+ * Query/DelegatorDelegations RPC method.
135
+ */
136
+ export interface QueryDelegatorDelegationsResponse {
137
+ /** delegation_responses defines all the delegations' info of a delegator. */
138
+ delegationResponses: DelegationResponse[];
139
+ /** pagination defines the pagination in the response. */
140
+ pagination: PageResponse | undefined;
141
+ }
142
+
143
+ /**
144
+ * QueryDelegatorUnbondingDelegationsRequest is request type for the
145
+ * Query/DelegatorUnbondingDelegations RPC method.
146
+ */
147
+ export interface QueryDelegatorUnbondingDelegationsRequest {
148
+ /** delegator_addr defines the delegator address to query for. */
149
+ delegatorAddr: string;
150
+ /** pagination defines an optional pagination for the request. */
151
+ pagination: PageRequest | undefined;
152
+ }
153
+
154
+ /**
155
+ * QueryUnbondingDelegatorDelegationsResponse is response type for the
156
+ * Query/UnbondingDelegatorDelegations RPC method.
157
+ */
158
+ export interface QueryDelegatorUnbondingDelegationsResponse {
159
+ unbondingResponses: UnbondingDelegation[];
160
+ /** pagination defines the pagination in the response. */
161
+ pagination: PageResponse | undefined;
162
+ }
163
+
164
+ /**
165
+ * QueryRedelegationsRequest is request type for the Query/Redelegations RPC
166
+ * method.
167
+ */
168
+ export interface QueryRedelegationsRequest {
169
+ /** delegator_addr defines the delegator address to query for. */
170
+ delegatorAddr: string;
171
+ /** src_validator_addr defines the validator address to redelegate from. */
172
+ srcValidatorAddr: string;
173
+ /** dst_validator_addr defines the validator address to redelegate to. */
174
+ dstValidatorAddr: string;
175
+ /** pagination defines an optional pagination for the request. */
176
+ pagination: PageRequest | undefined;
177
+ }
178
+
179
+ /**
180
+ * QueryRedelegationsResponse is response type for the Query/Redelegations RPC
181
+ * method.
182
+ */
183
+ export interface QueryRedelegationsResponse {
184
+ redelegationResponses: RedelegationResponse[];
185
+ /** pagination defines the pagination in the response. */
186
+ pagination: PageResponse | undefined;
187
+ }
188
+
189
+ /**
190
+ * QueryDelegatorValidatorsRequest is request type for the
191
+ * Query/DelegatorValidators RPC method.
192
+ */
193
+ export interface QueryDelegatorValidatorsRequest {
194
+ /** delegator_addr defines the delegator address to query for. */
195
+ delegatorAddr: string;
196
+ /** pagination defines an optional pagination for the request. */
197
+ pagination: PageRequest | undefined;
198
+ }
199
+
200
+ /**
201
+ * QueryDelegatorValidatorsResponse is response type for the
202
+ * Query/DelegatorValidators RPC method.
203
+ */
204
+ export interface QueryDelegatorValidatorsResponse {
205
+ /** validators defines the validators' info of a delegator. */
206
+ validators: Validator[];
207
+ /** pagination defines the pagination in the response. */
208
+ pagination: PageResponse | undefined;
209
+ }
210
+
211
+ /**
212
+ * QueryDelegatorValidatorRequest is request type for the
213
+ * Query/DelegatorValidator RPC method.
214
+ */
215
+ export interface QueryDelegatorValidatorRequest {
216
+ /** delegator_addr defines the delegator address to query for. */
217
+ delegatorAddr: string;
218
+ /** validator_addr defines the validator address to query for. */
219
+ validatorAddr: string;
220
+ }
221
+
222
+ /**
223
+ * QueryDelegatorValidatorResponse response type for the
224
+ * Query/DelegatorValidator RPC method.
225
+ */
226
+ export interface QueryDelegatorValidatorResponse {
227
+ /** validator defines the validator info. */
228
+ validator: Validator | undefined;
229
+ }
230
+
231
+ /**
232
+ * QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
233
+ * method.
234
+ */
235
+ export interface QueryHistoricalInfoRequest {
236
+ /** height defines at which height to query the historical info. */
237
+ height: number;
238
+ }
239
+
240
+ /**
241
+ * QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
242
+ * method.
243
+ */
244
+ export interface QueryHistoricalInfoResponse {
245
+ /** hist defines the historical info at the given height. */
246
+ hist: HistoricalInfo | undefined;
247
+ }
248
+
249
+ /** QueryPoolRequest is request type for the Query/Pool RPC method. */
250
+ export interface QueryPoolRequest {
251
+ }
252
+
253
+ /** QueryPoolResponse is response type for the Query/Pool RPC method. */
254
+ export interface QueryPoolResponse {
255
+ /** pool defines the pool info. */
256
+ pool: Pool | undefined;
257
+ }
258
+
259
+ /** QueryParamsRequest is request type for the Query/Params RPC method. */
260
+ export interface QueryParamsRequest {
261
+ }
262
+
263
+ /** QueryParamsResponse is response type for the Query/Params RPC method. */
264
+ export interface QueryParamsResponse {
265
+ /** params holds all the parameters of this module. */
266
+ params: Params | undefined;
267
+ }
268
+
269
+ function createBaseQueryValidatorsRequest(): QueryValidatorsRequest {
270
+ return { status: "", pagination: undefined };
271
+ }
272
+
273
+ export const QueryValidatorsRequest = {
274
+ encode(message: QueryValidatorsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
275
+ if (message.status !== "") {
276
+ writer.uint32(10).string(message.status);
277
+ }
278
+ if (message.pagination !== undefined) {
279
+ PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
280
+ }
281
+ return writer;
282
+ },
283
+
284
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorsRequest {
285
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
286
+ let end = length === undefined ? reader.len : reader.pos + length;
287
+ const message = createBaseQueryValidatorsRequest();
288
+ while (reader.pos < end) {
289
+ const tag = reader.uint32();
290
+ switch (tag >>> 3) {
291
+ case 1:
292
+ message.status = reader.string();
293
+ break;
294
+ case 2:
295
+ message.pagination = PageRequest.decode(reader, reader.uint32());
296
+ break;
297
+ default:
298
+ reader.skipType(tag & 7);
299
+ break;
300
+ }
301
+ }
302
+ return message;
303
+ },
304
+
305
+ fromJSON(object: any): QueryValidatorsRequest {
306
+ return {
307
+ status: isSet(object.status) ? String(object.status) : "",
308
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
309
+ };
310
+ },
311
+
312
+ toJSON(message: QueryValidatorsRequest): unknown {
313
+ const obj: any = {};
314
+ message.status !== undefined && (obj.status = message.status);
315
+ message.pagination !== undefined
316
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
317
+ return obj;
318
+ },
319
+
320
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorsRequest>, I>>(object: I): QueryValidatorsRequest {
321
+ const message = createBaseQueryValidatorsRequest();
322
+ message.status = object.status ?? "";
323
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
324
+ ? PageRequest.fromPartial(object.pagination)
325
+ : undefined;
326
+ return message;
327
+ },
328
+ };
329
+
330
+ function createBaseQueryValidatorsResponse(): QueryValidatorsResponse {
331
+ return { validators: [], pagination: undefined };
332
+ }
333
+
334
+ export const QueryValidatorsResponse = {
335
+ encode(message: QueryValidatorsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
336
+ for (const v of message.validators) {
337
+ Validator.encode(v!, writer.uint32(10).fork()).ldelim();
338
+ }
339
+ if (message.pagination !== undefined) {
340
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
341
+ }
342
+ return writer;
343
+ },
344
+
345
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorsResponse {
346
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
347
+ let end = length === undefined ? reader.len : reader.pos + length;
348
+ const message = createBaseQueryValidatorsResponse();
349
+ while (reader.pos < end) {
350
+ const tag = reader.uint32();
351
+ switch (tag >>> 3) {
352
+ case 1:
353
+ message.validators.push(Validator.decode(reader, reader.uint32()));
354
+ break;
355
+ case 2:
356
+ message.pagination = PageResponse.decode(reader, reader.uint32());
357
+ break;
358
+ default:
359
+ reader.skipType(tag & 7);
360
+ break;
361
+ }
362
+ }
363
+ return message;
364
+ },
365
+
366
+ fromJSON(object: any): QueryValidatorsResponse {
367
+ return {
368
+ validators: Array.isArray(object?.validators) ? object.validators.map((e: any) => Validator.fromJSON(e)) : [],
369
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
370
+ };
371
+ },
372
+
373
+ toJSON(message: QueryValidatorsResponse): unknown {
374
+ const obj: any = {};
375
+ if (message.validators) {
376
+ obj.validators = message.validators.map((e) => e ? Validator.toJSON(e) : undefined);
377
+ } else {
378
+ obj.validators = [];
379
+ }
380
+ message.pagination !== undefined
381
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
382
+ return obj;
383
+ },
384
+
385
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorsResponse>, I>>(object: I): QueryValidatorsResponse {
386
+ const message = createBaseQueryValidatorsResponse();
387
+ message.validators = object.validators?.map((e) => Validator.fromPartial(e)) || [];
388
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
389
+ ? PageResponse.fromPartial(object.pagination)
390
+ : undefined;
391
+ return message;
392
+ },
393
+ };
394
+
395
+ function createBaseQueryValidatorRequest(): QueryValidatorRequest {
396
+ return { validatorAddr: "" };
397
+ }
398
+
399
+ export const QueryValidatorRequest = {
400
+ encode(message: QueryValidatorRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
401
+ if (message.validatorAddr !== "") {
402
+ writer.uint32(10).string(message.validatorAddr);
403
+ }
404
+ return writer;
405
+ },
406
+
407
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorRequest {
408
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
409
+ let end = length === undefined ? reader.len : reader.pos + length;
410
+ const message = createBaseQueryValidatorRequest();
411
+ while (reader.pos < end) {
412
+ const tag = reader.uint32();
413
+ switch (tag >>> 3) {
414
+ case 1:
415
+ message.validatorAddr = reader.string();
416
+ break;
417
+ default:
418
+ reader.skipType(tag & 7);
419
+ break;
420
+ }
421
+ }
422
+ return message;
423
+ },
424
+
425
+ fromJSON(object: any): QueryValidatorRequest {
426
+ return { validatorAddr: isSet(object.validatorAddr) ? String(object.validatorAddr) : "" };
427
+ },
428
+
429
+ toJSON(message: QueryValidatorRequest): unknown {
430
+ const obj: any = {};
431
+ message.validatorAddr !== undefined && (obj.validatorAddr = message.validatorAddr);
432
+ return obj;
433
+ },
434
+
435
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorRequest>, I>>(object: I): QueryValidatorRequest {
436
+ const message = createBaseQueryValidatorRequest();
437
+ message.validatorAddr = object.validatorAddr ?? "";
438
+ return message;
439
+ },
440
+ };
441
+
442
+ function createBaseQueryValidatorResponse(): QueryValidatorResponse {
443
+ return { validator: undefined };
444
+ }
445
+
446
+ export const QueryValidatorResponse = {
447
+ encode(message: QueryValidatorResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
448
+ if (message.validator !== undefined) {
449
+ Validator.encode(message.validator, writer.uint32(10).fork()).ldelim();
450
+ }
451
+ return writer;
452
+ },
453
+
454
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorResponse {
455
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
456
+ let end = length === undefined ? reader.len : reader.pos + length;
457
+ const message = createBaseQueryValidatorResponse();
458
+ while (reader.pos < end) {
459
+ const tag = reader.uint32();
460
+ switch (tag >>> 3) {
461
+ case 1:
462
+ message.validator = Validator.decode(reader, reader.uint32());
463
+ break;
464
+ default:
465
+ reader.skipType(tag & 7);
466
+ break;
467
+ }
468
+ }
469
+ return message;
470
+ },
471
+
472
+ fromJSON(object: any): QueryValidatorResponse {
473
+ return { validator: isSet(object.validator) ? Validator.fromJSON(object.validator) : undefined };
474
+ },
475
+
476
+ toJSON(message: QueryValidatorResponse): unknown {
477
+ const obj: any = {};
478
+ message.validator !== undefined
479
+ && (obj.validator = message.validator ? Validator.toJSON(message.validator) : undefined);
480
+ return obj;
481
+ },
482
+
483
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorResponse>, I>>(object: I): QueryValidatorResponse {
484
+ const message = createBaseQueryValidatorResponse();
485
+ message.validator = (object.validator !== undefined && object.validator !== null)
486
+ ? Validator.fromPartial(object.validator)
487
+ : undefined;
488
+ return message;
489
+ },
490
+ };
491
+
492
+ function createBaseQueryValidatorDelegationsRequest(): QueryValidatorDelegationsRequest {
493
+ return { validatorAddr: "", pagination: undefined };
494
+ }
495
+
496
+ export const QueryValidatorDelegationsRequest = {
497
+ encode(message: QueryValidatorDelegationsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
498
+ if (message.validatorAddr !== "") {
499
+ writer.uint32(10).string(message.validatorAddr);
500
+ }
501
+ if (message.pagination !== undefined) {
502
+ PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
503
+ }
504
+ return writer;
505
+ },
506
+
507
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDelegationsRequest {
508
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
509
+ let end = length === undefined ? reader.len : reader.pos + length;
510
+ const message = createBaseQueryValidatorDelegationsRequest();
511
+ while (reader.pos < end) {
512
+ const tag = reader.uint32();
513
+ switch (tag >>> 3) {
514
+ case 1:
515
+ message.validatorAddr = reader.string();
516
+ break;
517
+ case 2:
518
+ message.pagination = PageRequest.decode(reader, reader.uint32());
519
+ break;
520
+ default:
521
+ reader.skipType(tag & 7);
522
+ break;
523
+ }
524
+ }
525
+ return message;
526
+ },
527
+
528
+ fromJSON(object: any): QueryValidatorDelegationsRequest {
529
+ return {
530
+ validatorAddr: isSet(object.validatorAddr) ? String(object.validatorAddr) : "",
531
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
532
+ };
533
+ },
534
+
535
+ toJSON(message: QueryValidatorDelegationsRequest): unknown {
536
+ const obj: any = {};
537
+ message.validatorAddr !== undefined && (obj.validatorAddr = message.validatorAddr);
538
+ message.pagination !== undefined
539
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
540
+ return obj;
541
+ },
542
+
543
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorDelegationsRequest>, I>>(
544
+ object: I,
545
+ ): QueryValidatorDelegationsRequest {
546
+ const message = createBaseQueryValidatorDelegationsRequest();
547
+ message.validatorAddr = object.validatorAddr ?? "";
548
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
549
+ ? PageRequest.fromPartial(object.pagination)
550
+ : undefined;
551
+ return message;
552
+ },
553
+ };
554
+
555
+ function createBaseQueryValidatorDelegationsResponse(): QueryValidatorDelegationsResponse {
556
+ return { delegationResponses: [], pagination: undefined };
557
+ }
558
+
559
+ export const QueryValidatorDelegationsResponse = {
560
+ encode(message: QueryValidatorDelegationsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
561
+ for (const v of message.delegationResponses) {
562
+ DelegationResponse.encode(v!, writer.uint32(10).fork()).ldelim();
563
+ }
564
+ if (message.pagination !== undefined) {
565
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
566
+ }
567
+ return writer;
568
+ },
569
+
570
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDelegationsResponse {
571
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
572
+ let end = length === undefined ? reader.len : reader.pos + length;
573
+ const message = createBaseQueryValidatorDelegationsResponse();
574
+ while (reader.pos < end) {
575
+ const tag = reader.uint32();
576
+ switch (tag >>> 3) {
577
+ case 1:
578
+ message.delegationResponses.push(DelegationResponse.decode(reader, reader.uint32()));
579
+ break;
580
+ case 2:
581
+ message.pagination = PageResponse.decode(reader, reader.uint32());
582
+ break;
583
+ default:
584
+ reader.skipType(tag & 7);
585
+ break;
586
+ }
587
+ }
588
+ return message;
589
+ },
590
+
591
+ fromJSON(object: any): QueryValidatorDelegationsResponse {
592
+ return {
593
+ delegationResponses: Array.isArray(object?.delegationResponses)
594
+ ? object.delegationResponses.map((e: any) => DelegationResponse.fromJSON(e))
595
+ : [],
596
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
597
+ };
598
+ },
599
+
600
+ toJSON(message: QueryValidatorDelegationsResponse): unknown {
601
+ const obj: any = {};
602
+ if (message.delegationResponses) {
603
+ obj.delegationResponses = message.delegationResponses.map((e) => e ? DelegationResponse.toJSON(e) : undefined);
604
+ } else {
605
+ obj.delegationResponses = [];
606
+ }
607
+ message.pagination !== undefined
608
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
609
+ return obj;
610
+ },
611
+
612
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorDelegationsResponse>, I>>(
613
+ object: I,
614
+ ): QueryValidatorDelegationsResponse {
615
+ const message = createBaseQueryValidatorDelegationsResponse();
616
+ message.delegationResponses = object.delegationResponses?.map((e) => DelegationResponse.fromPartial(e)) || [];
617
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
618
+ ? PageResponse.fromPartial(object.pagination)
619
+ : undefined;
620
+ return message;
621
+ },
622
+ };
623
+
624
+ function createBaseQueryValidatorUnbondingDelegationsRequest(): QueryValidatorUnbondingDelegationsRequest {
625
+ return { validatorAddr: "", pagination: undefined };
626
+ }
627
+
628
+ export const QueryValidatorUnbondingDelegationsRequest = {
629
+ encode(message: QueryValidatorUnbondingDelegationsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
630
+ if (message.validatorAddr !== "") {
631
+ writer.uint32(10).string(message.validatorAddr);
632
+ }
633
+ if (message.pagination !== undefined) {
634
+ PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
635
+ }
636
+ return writer;
637
+ },
638
+
639
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsRequest {
640
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
641
+ let end = length === undefined ? reader.len : reader.pos + length;
642
+ const message = createBaseQueryValidatorUnbondingDelegationsRequest();
643
+ while (reader.pos < end) {
644
+ const tag = reader.uint32();
645
+ switch (tag >>> 3) {
646
+ case 1:
647
+ message.validatorAddr = reader.string();
648
+ break;
649
+ case 2:
650
+ message.pagination = PageRequest.decode(reader, reader.uint32());
651
+ break;
652
+ default:
653
+ reader.skipType(tag & 7);
654
+ break;
655
+ }
656
+ }
657
+ return message;
658
+ },
659
+
660
+ fromJSON(object: any): QueryValidatorUnbondingDelegationsRequest {
661
+ return {
662
+ validatorAddr: isSet(object.validatorAddr) ? String(object.validatorAddr) : "",
663
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
664
+ };
665
+ },
666
+
667
+ toJSON(message: QueryValidatorUnbondingDelegationsRequest): unknown {
668
+ const obj: any = {};
669
+ message.validatorAddr !== undefined && (obj.validatorAddr = message.validatorAddr);
670
+ message.pagination !== undefined
671
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
672
+ return obj;
673
+ },
674
+
675
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorUnbondingDelegationsRequest>, I>>(
676
+ object: I,
677
+ ): QueryValidatorUnbondingDelegationsRequest {
678
+ const message = createBaseQueryValidatorUnbondingDelegationsRequest();
679
+ message.validatorAddr = object.validatorAddr ?? "";
680
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
681
+ ? PageRequest.fromPartial(object.pagination)
682
+ : undefined;
683
+ return message;
684
+ },
685
+ };
686
+
687
+ function createBaseQueryValidatorUnbondingDelegationsResponse(): QueryValidatorUnbondingDelegationsResponse {
688
+ return { unbondingResponses: [], pagination: undefined };
689
+ }
690
+
691
+ export const QueryValidatorUnbondingDelegationsResponse = {
692
+ encode(message: QueryValidatorUnbondingDelegationsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
693
+ for (const v of message.unbondingResponses) {
694
+ UnbondingDelegation.encode(v!, writer.uint32(10).fork()).ldelim();
695
+ }
696
+ if (message.pagination !== undefined) {
697
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
698
+ }
699
+ return writer;
700
+ },
701
+
702
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorUnbondingDelegationsResponse {
703
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
704
+ let end = length === undefined ? reader.len : reader.pos + length;
705
+ const message = createBaseQueryValidatorUnbondingDelegationsResponse();
706
+ while (reader.pos < end) {
707
+ const tag = reader.uint32();
708
+ switch (tag >>> 3) {
709
+ case 1:
710
+ message.unbondingResponses.push(UnbondingDelegation.decode(reader, reader.uint32()));
711
+ break;
712
+ case 2:
713
+ message.pagination = PageResponse.decode(reader, reader.uint32());
714
+ break;
715
+ default:
716
+ reader.skipType(tag & 7);
717
+ break;
718
+ }
719
+ }
720
+ return message;
721
+ },
722
+
723
+ fromJSON(object: any): QueryValidatorUnbondingDelegationsResponse {
724
+ return {
725
+ unbondingResponses: Array.isArray(object?.unbondingResponses)
726
+ ? object.unbondingResponses.map((e: any) => UnbondingDelegation.fromJSON(e))
727
+ : [],
728
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
729
+ };
730
+ },
731
+
732
+ toJSON(message: QueryValidatorUnbondingDelegationsResponse): unknown {
733
+ const obj: any = {};
734
+ if (message.unbondingResponses) {
735
+ obj.unbondingResponses = message.unbondingResponses.map((e) => e ? UnbondingDelegation.toJSON(e) : undefined);
736
+ } else {
737
+ obj.unbondingResponses = [];
738
+ }
739
+ message.pagination !== undefined
740
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
741
+ return obj;
742
+ },
743
+
744
+ fromPartial<I extends Exact<DeepPartial<QueryValidatorUnbondingDelegationsResponse>, I>>(
745
+ object: I,
746
+ ): QueryValidatorUnbondingDelegationsResponse {
747
+ const message = createBaseQueryValidatorUnbondingDelegationsResponse();
748
+ message.unbondingResponses = object.unbondingResponses?.map((e) => UnbondingDelegation.fromPartial(e)) || [];
749
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
750
+ ? PageResponse.fromPartial(object.pagination)
751
+ : undefined;
752
+ return message;
753
+ },
754
+ };
755
+
756
+ function createBaseQueryDelegationRequest(): QueryDelegationRequest {
757
+ return { delegatorAddr: "", validatorAddr: "" };
758
+ }
759
+
760
+ export const QueryDelegationRequest = {
761
+ encode(message: QueryDelegationRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
762
+ if (message.delegatorAddr !== "") {
763
+ writer.uint32(10).string(message.delegatorAddr);
764
+ }
765
+ if (message.validatorAddr !== "") {
766
+ writer.uint32(18).string(message.validatorAddr);
767
+ }
768
+ return writer;
769
+ },
770
+
771
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationRequest {
772
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
773
+ let end = length === undefined ? reader.len : reader.pos + length;
774
+ const message = createBaseQueryDelegationRequest();
775
+ while (reader.pos < end) {
776
+ const tag = reader.uint32();
777
+ switch (tag >>> 3) {
778
+ case 1:
779
+ message.delegatorAddr = reader.string();
780
+ break;
781
+ case 2:
782
+ message.validatorAddr = reader.string();
783
+ break;
784
+ default:
785
+ reader.skipType(tag & 7);
786
+ break;
787
+ }
788
+ }
789
+ return message;
790
+ },
791
+
792
+ fromJSON(object: any): QueryDelegationRequest {
793
+ return {
794
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
795
+ validatorAddr: isSet(object.validatorAddr) ? String(object.validatorAddr) : "",
796
+ };
797
+ },
798
+
799
+ toJSON(message: QueryDelegationRequest): unknown {
800
+ const obj: any = {};
801
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
802
+ message.validatorAddr !== undefined && (obj.validatorAddr = message.validatorAddr);
803
+ return obj;
804
+ },
805
+
806
+ fromPartial<I extends Exact<DeepPartial<QueryDelegationRequest>, I>>(object: I): QueryDelegationRequest {
807
+ const message = createBaseQueryDelegationRequest();
808
+ message.delegatorAddr = object.delegatorAddr ?? "";
809
+ message.validatorAddr = object.validatorAddr ?? "";
810
+ return message;
811
+ },
812
+ };
813
+
814
+ function createBaseQueryDelegationResponse(): QueryDelegationResponse {
815
+ return { delegationResponse: undefined };
816
+ }
817
+
818
+ export const QueryDelegationResponse = {
819
+ encode(message: QueryDelegationResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
820
+ if (message.delegationResponse !== undefined) {
821
+ DelegationResponse.encode(message.delegationResponse, writer.uint32(10).fork()).ldelim();
822
+ }
823
+ return writer;
824
+ },
825
+
826
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegationResponse {
827
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
828
+ let end = length === undefined ? reader.len : reader.pos + length;
829
+ const message = createBaseQueryDelegationResponse();
830
+ while (reader.pos < end) {
831
+ const tag = reader.uint32();
832
+ switch (tag >>> 3) {
833
+ case 1:
834
+ message.delegationResponse = DelegationResponse.decode(reader, reader.uint32());
835
+ break;
836
+ default:
837
+ reader.skipType(tag & 7);
838
+ break;
839
+ }
840
+ }
841
+ return message;
842
+ },
843
+
844
+ fromJSON(object: any): QueryDelegationResponse {
845
+ return {
846
+ delegationResponse: isSet(object.delegationResponse)
847
+ ? DelegationResponse.fromJSON(object.delegationResponse)
848
+ : undefined,
849
+ };
850
+ },
851
+
852
+ toJSON(message: QueryDelegationResponse): unknown {
853
+ const obj: any = {};
854
+ message.delegationResponse !== undefined && (obj.delegationResponse = message.delegationResponse
855
+ ? DelegationResponse.toJSON(message.delegationResponse)
856
+ : undefined);
857
+ return obj;
858
+ },
859
+
860
+ fromPartial<I extends Exact<DeepPartial<QueryDelegationResponse>, I>>(object: I): QueryDelegationResponse {
861
+ const message = createBaseQueryDelegationResponse();
862
+ message.delegationResponse = (object.delegationResponse !== undefined && object.delegationResponse !== null)
863
+ ? DelegationResponse.fromPartial(object.delegationResponse)
864
+ : undefined;
865
+ return message;
866
+ },
867
+ };
868
+
869
+ function createBaseQueryUnbondingDelegationRequest(): QueryUnbondingDelegationRequest {
870
+ return { delegatorAddr: "", validatorAddr: "" };
871
+ }
872
+
873
+ export const QueryUnbondingDelegationRequest = {
874
+ encode(message: QueryUnbondingDelegationRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
875
+ if (message.delegatorAddr !== "") {
876
+ writer.uint32(10).string(message.delegatorAddr);
877
+ }
878
+ if (message.validatorAddr !== "") {
879
+ writer.uint32(18).string(message.validatorAddr);
880
+ }
881
+ return writer;
882
+ },
883
+
884
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryUnbondingDelegationRequest {
885
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
886
+ let end = length === undefined ? reader.len : reader.pos + length;
887
+ const message = createBaseQueryUnbondingDelegationRequest();
888
+ while (reader.pos < end) {
889
+ const tag = reader.uint32();
890
+ switch (tag >>> 3) {
891
+ case 1:
892
+ message.delegatorAddr = reader.string();
893
+ break;
894
+ case 2:
895
+ message.validatorAddr = reader.string();
896
+ break;
897
+ default:
898
+ reader.skipType(tag & 7);
899
+ break;
900
+ }
901
+ }
902
+ return message;
903
+ },
904
+
905
+ fromJSON(object: any): QueryUnbondingDelegationRequest {
906
+ return {
907
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
908
+ validatorAddr: isSet(object.validatorAddr) ? String(object.validatorAddr) : "",
909
+ };
910
+ },
911
+
912
+ toJSON(message: QueryUnbondingDelegationRequest): unknown {
913
+ const obj: any = {};
914
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
915
+ message.validatorAddr !== undefined && (obj.validatorAddr = message.validatorAddr);
916
+ return obj;
917
+ },
918
+
919
+ fromPartial<I extends Exact<DeepPartial<QueryUnbondingDelegationRequest>, I>>(
920
+ object: I,
921
+ ): QueryUnbondingDelegationRequest {
922
+ const message = createBaseQueryUnbondingDelegationRequest();
923
+ message.delegatorAddr = object.delegatorAddr ?? "";
924
+ message.validatorAddr = object.validatorAddr ?? "";
925
+ return message;
926
+ },
927
+ };
928
+
929
+ function createBaseQueryUnbondingDelegationResponse(): QueryUnbondingDelegationResponse {
930
+ return { unbond: undefined };
931
+ }
932
+
933
+ export const QueryUnbondingDelegationResponse = {
934
+ encode(message: QueryUnbondingDelegationResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
935
+ if (message.unbond !== undefined) {
936
+ UnbondingDelegation.encode(message.unbond, writer.uint32(10).fork()).ldelim();
937
+ }
938
+ return writer;
939
+ },
940
+
941
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryUnbondingDelegationResponse {
942
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
943
+ let end = length === undefined ? reader.len : reader.pos + length;
944
+ const message = createBaseQueryUnbondingDelegationResponse();
945
+ while (reader.pos < end) {
946
+ const tag = reader.uint32();
947
+ switch (tag >>> 3) {
948
+ case 1:
949
+ message.unbond = UnbondingDelegation.decode(reader, reader.uint32());
950
+ break;
951
+ default:
952
+ reader.skipType(tag & 7);
953
+ break;
954
+ }
955
+ }
956
+ return message;
957
+ },
958
+
959
+ fromJSON(object: any): QueryUnbondingDelegationResponse {
960
+ return { unbond: isSet(object.unbond) ? UnbondingDelegation.fromJSON(object.unbond) : undefined };
961
+ },
962
+
963
+ toJSON(message: QueryUnbondingDelegationResponse): unknown {
964
+ const obj: any = {};
965
+ message.unbond !== undefined
966
+ && (obj.unbond = message.unbond ? UnbondingDelegation.toJSON(message.unbond) : undefined);
967
+ return obj;
968
+ },
969
+
970
+ fromPartial<I extends Exact<DeepPartial<QueryUnbondingDelegationResponse>, I>>(
971
+ object: I,
972
+ ): QueryUnbondingDelegationResponse {
973
+ const message = createBaseQueryUnbondingDelegationResponse();
974
+ message.unbond = (object.unbond !== undefined && object.unbond !== null)
975
+ ? UnbondingDelegation.fromPartial(object.unbond)
976
+ : undefined;
977
+ return message;
978
+ },
979
+ };
980
+
981
+ function createBaseQueryDelegatorDelegationsRequest(): QueryDelegatorDelegationsRequest {
982
+ return { delegatorAddr: "", pagination: undefined };
983
+ }
984
+
985
+ export const QueryDelegatorDelegationsRequest = {
986
+ encode(message: QueryDelegatorDelegationsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
987
+ if (message.delegatorAddr !== "") {
988
+ writer.uint32(10).string(message.delegatorAddr);
989
+ }
990
+ if (message.pagination !== undefined) {
991
+ PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
992
+ }
993
+ return writer;
994
+ },
995
+
996
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorDelegationsRequest {
997
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
998
+ let end = length === undefined ? reader.len : reader.pos + length;
999
+ const message = createBaseQueryDelegatorDelegationsRequest();
1000
+ while (reader.pos < end) {
1001
+ const tag = reader.uint32();
1002
+ switch (tag >>> 3) {
1003
+ case 1:
1004
+ message.delegatorAddr = reader.string();
1005
+ break;
1006
+ case 2:
1007
+ message.pagination = PageRequest.decode(reader, reader.uint32());
1008
+ break;
1009
+ default:
1010
+ reader.skipType(tag & 7);
1011
+ break;
1012
+ }
1013
+ }
1014
+ return message;
1015
+ },
1016
+
1017
+ fromJSON(object: any): QueryDelegatorDelegationsRequest {
1018
+ return {
1019
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
1020
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
1021
+ };
1022
+ },
1023
+
1024
+ toJSON(message: QueryDelegatorDelegationsRequest): unknown {
1025
+ const obj: any = {};
1026
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
1027
+ message.pagination !== undefined
1028
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
1029
+ return obj;
1030
+ },
1031
+
1032
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorDelegationsRequest>, I>>(
1033
+ object: I,
1034
+ ): QueryDelegatorDelegationsRequest {
1035
+ const message = createBaseQueryDelegatorDelegationsRequest();
1036
+ message.delegatorAddr = object.delegatorAddr ?? "";
1037
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1038
+ ? PageRequest.fromPartial(object.pagination)
1039
+ : undefined;
1040
+ return message;
1041
+ },
1042
+ };
1043
+
1044
+ function createBaseQueryDelegatorDelegationsResponse(): QueryDelegatorDelegationsResponse {
1045
+ return { delegationResponses: [], pagination: undefined };
1046
+ }
1047
+
1048
+ export const QueryDelegatorDelegationsResponse = {
1049
+ encode(message: QueryDelegatorDelegationsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1050
+ for (const v of message.delegationResponses) {
1051
+ DelegationResponse.encode(v!, writer.uint32(10).fork()).ldelim();
1052
+ }
1053
+ if (message.pagination !== undefined) {
1054
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
1055
+ }
1056
+ return writer;
1057
+ },
1058
+
1059
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorDelegationsResponse {
1060
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1061
+ let end = length === undefined ? reader.len : reader.pos + length;
1062
+ const message = createBaseQueryDelegatorDelegationsResponse();
1063
+ while (reader.pos < end) {
1064
+ const tag = reader.uint32();
1065
+ switch (tag >>> 3) {
1066
+ case 1:
1067
+ message.delegationResponses.push(DelegationResponse.decode(reader, reader.uint32()));
1068
+ break;
1069
+ case 2:
1070
+ message.pagination = PageResponse.decode(reader, reader.uint32());
1071
+ break;
1072
+ default:
1073
+ reader.skipType(tag & 7);
1074
+ break;
1075
+ }
1076
+ }
1077
+ return message;
1078
+ },
1079
+
1080
+ fromJSON(object: any): QueryDelegatorDelegationsResponse {
1081
+ return {
1082
+ delegationResponses: Array.isArray(object?.delegationResponses)
1083
+ ? object.delegationResponses.map((e: any) => DelegationResponse.fromJSON(e))
1084
+ : [],
1085
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
1086
+ };
1087
+ },
1088
+
1089
+ toJSON(message: QueryDelegatorDelegationsResponse): unknown {
1090
+ const obj: any = {};
1091
+ if (message.delegationResponses) {
1092
+ obj.delegationResponses = message.delegationResponses.map((e) => e ? DelegationResponse.toJSON(e) : undefined);
1093
+ } else {
1094
+ obj.delegationResponses = [];
1095
+ }
1096
+ message.pagination !== undefined
1097
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
1098
+ return obj;
1099
+ },
1100
+
1101
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorDelegationsResponse>, I>>(
1102
+ object: I,
1103
+ ): QueryDelegatorDelegationsResponse {
1104
+ const message = createBaseQueryDelegatorDelegationsResponse();
1105
+ message.delegationResponses = object.delegationResponses?.map((e) => DelegationResponse.fromPartial(e)) || [];
1106
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1107
+ ? PageResponse.fromPartial(object.pagination)
1108
+ : undefined;
1109
+ return message;
1110
+ },
1111
+ };
1112
+
1113
+ function createBaseQueryDelegatorUnbondingDelegationsRequest(): QueryDelegatorUnbondingDelegationsRequest {
1114
+ return { delegatorAddr: "", pagination: undefined };
1115
+ }
1116
+
1117
+ export const QueryDelegatorUnbondingDelegationsRequest = {
1118
+ encode(message: QueryDelegatorUnbondingDelegationsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1119
+ if (message.delegatorAddr !== "") {
1120
+ writer.uint32(10).string(message.delegatorAddr);
1121
+ }
1122
+ if (message.pagination !== undefined) {
1123
+ PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
1124
+ }
1125
+ return writer;
1126
+ },
1127
+
1128
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsRequest {
1129
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1130
+ let end = length === undefined ? reader.len : reader.pos + length;
1131
+ const message = createBaseQueryDelegatorUnbondingDelegationsRequest();
1132
+ while (reader.pos < end) {
1133
+ const tag = reader.uint32();
1134
+ switch (tag >>> 3) {
1135
+ case 1:
1136
+ message.delegatorAddr = reader.string();
1137
+ break;
1138
+ case 2:
1139
+ message.pagination = PageRequest.decode(reader, reader.uint32());
1140
+ break;
1141
+ default:
1142
+ reader.skipType(tag & 7);
1143
+ break;
1144
+ }
1145
+ }
1146
+ return message;
1147
+ },
1148
+
1149
+ fromJSON(object: any): QueryDelegatorUnbondingDelegationsRequest {
1150
+ return {
1151
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
1152
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
1153
+ };
1154
+ },
1155
+
1156
+ toJSON(message: QueryDelegatorUnbondingDelegationsRequest): unknown {
1157
+ const obj: any = {};
1158
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
1159
+ message.pagination !== undefined
1160
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
1161
+ return obj;
1162
+ },
1163
+
1164
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorUnbondingDelegationsRequest>, I>>(
1165
+ object: I,
1166
+ ): QueryDelegatorUnbondingDelegationsRequest {
1167
+ const message = createBaseQueryDelegatorUnbondingDelegationsRequest();
1168
+ message.delegatorAddr = object.delegatorAddr ?? "";
1169
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1170
+ ? PageRequest.fromPartial(object.pagination)
1171
+ : undefined;
1172
+ return message;
1173
+ },
1174
+ };
1175
+
1176
+ function createBaseQueryDelegatorUnbondingDelegationsResponse(): QueryDelegatorUnbondingDelegationsResponse {
1177
+ return { unbondingResponses: [], pagination: undefined };
1178
+ }
1179
+
1180
+ export const QueryDelegatorUnbondingDelegationsResponse = {
1181
+ encode(message: QueryDelegatorUnbondingDelegationsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1182
+ for (const v of message.unbondingResponses) {
1183
+ UnbondingDelegation.encode(v!, writer.uint32(10).fork()).ldelim();
1184
+ }
1185
+ if (message.pagination !== undefined) {
1186
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
1187
+ }
1188
+ return writer;
1189
+ },
1190
+
1191
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorUnbondingDelegationsResponse {
1192
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1193
+ let end = length === undefined ? reader.len : reader.pos + length;
1194
+ const message = createBaseQueryDelegatorUnbondingDelegationsResponse();
1195
+ while (reader.pos < end) {
1196
+ const tag = reader.uint32();
1197
+ switch (tag >>> 3) {
1198
+ case 1:
1199
+ message.unbondingResponses.push(UnbondingDelegation.decode(reader, reader.uint32()));
1200
+ break;
1201
+ case 2:
1202
+ message.pagination = PageResponse.decode(reader, reader.uint32());
1203
+ break;
1204
+ default:
1205
+ reader.skipType(tag & 7);
1206
+ break;
1207
+ }
1208
+ }
1209
+ return message;
1210
+ },
1211
+
1212
+ fromJSON(object: any): QueryDelegatorUnbondingDelegationsResponse {
1213
+ return {
1214
+ unbondingResponses: Array.isArray(object?.unbondingResponses)
1215
+ ? object.unbondingResponses.map((e: any) => UnbondingDelegation.fromJSON(e))
1216
+ : [],
1217
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
1218
+ };
1219
+ },
1220
+
1221
+ toJSON(message: QueryDelegatorUnbondingDelegationsResponse): unknown {
1222
+ const obj: any = {};
1223
+ if (message.unbondingResponses) {
1224
+ obj.unbondingResponses = message.unbondingResponses.map((e) => e ? UnbondingDelegation.toJSON(e) : undefined);
1225
+ } else {
1226
+ obj.unbondingResponses = [];
1227
+ }
1228
+ message.pagination !== undefined
1229
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
1230
+ return obj;
1231
+ },
1232
+
1233
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorUnbondingDelegationsResponse>, I>>(
1234
+ object: I,
1235
+ ): QueryDelegatorUnbondingDelegationsResponse {
1236
+ const message = createBaseQueryDelegatorUnbondingDelegationsResponse();
1237
+ message.unbondingResponses = object.unbondingResponses?.map((e) => UnbondingDelegation.fromPartial(e)) || [];
1238
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1239
+ ? PageResponse.fromPartial(object.pagination)
1240
+ : undefined;
1241
+ return message;
1242
+ },
1243
+ };
1244
+
1245
+ function createBaseQueryRedelegationsRequest(): QueryRedelegationsRequest {
1246
+ return { delegatorAddr: "", srcValidatorAddr: "", dstValidatorAddr: "", pagination: undefined };
1247
+ }
1248
+
1249
+ export const QueryRedelegationsRequest = {
1250
+ encode(message: QueryRedelegationsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1251
+ if (message.delegatorAddr !== "") {
1252
+ writer.uint32(10).string(message.delegatorAddr);
1253
+ }
1254
+ if (message.srcValidatorAddr !== "") {
1255
+ writer.uint32(18).string(message.srcValidatorAddr);
1256
+ }
1257
+ if (message.dstValidatorAddr !== "") {
1258
+ writer.uint32(26).string(message.dstValidatorAddr);
1259
+ }
1260
+ if (message.pagination !== undefined) {
1261
+ PageRequest.encode(message.pagination, writer.uint32(34).fork()).ldelim();
1262
+ }
1263
+ return writer;
1264
+ },
1265
+
1266
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryRedelegationsRequest {
1267
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1268
+ let end = length === undefined ? reader.len : reader.pos + length;
1269
+ const message = createBaseQueryRedelegationsRequest();
1270
+ while (reader.pos < end) {
1271
+ const tag = reader.uint32();
1272
+ switch (tag >>> 3) {
1273
+ case 1:
1274
+ message.delegatorAddr = reader.string();
1275
+ break;
1276
+ case 2:
1277
+ message.srcValidatorAddr = reader.string();
1278
+ break;
1279
+ case 3:
1280
+ message.dstValidatorAddr = reader.string();
1281
+ break;
1282
+ case 4:
1283
+ message.pagination = PageRequest.decode(reader, reader.uint32());
1284
+ break;
1285
+ default:
1286
+ reader.skipType(tag & 7);
1287
+ break;
1288
+ }
1289
+ }
1290
+ return message;
1291
+ },
1292
+
1293
+ fromJSON(object: any): QueryRedelegationsRequest {
1294
+ return {
1295
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
1296
+ srcValidatorAddr: isSet(object.srcValidatorAddr) ? String(object.srcValidatorAddr) : "",
1297
+ dstValidatorAddr: isSet(object.dstValidatorAddr) ? String(object.dstValidatorAddr) : "",
1298
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
1299
+ };
1300
+ },
1301
+
1302
+ toJSON(message: QueryRedelegationsRequest): unknown {
1303
+ const obj: any = {};
1304
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
1305
+ message.srcValidatorAddr !== undefined && (obj.srcValidatorAddr = message.srcValidatorAddr);
1306
+ message.dstValidatorAddr !== undefined && (obj.dstValidatorAddr = message.dstValidatorAddr);
1307
+ message.pagination !== undefined
1308
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
1309
+ return obj;
1310
+ },
1311
+
1312
+ fromPartial<I extends Exact<DeepPartial<QueryRedelegationsRequest>, I>>(object: I): QueryRedelegationsRequest {
1313
+ const message = createBaseQueryRedelegationsRequest();
1314
+ message.delegatorAddr = object.delegatorAddr ?? "";
1315
+ message.srcValidatorAddr = object.srcValidatorAddr ?? "";
1316
+ message.dstValidatorAddr = object.dstValidatorAddr ?? "";
1317
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1318
+ ? PageRequest.fromPartial(object.pagination)
1319
+ : undefined;
1320
+ return message;
1321
+ },
1322
+ };
1323
+
1324
+ function createBaseQueryRedelegationsResponse(): QueryRedelegationsResponse {
1325
+ return { redelegationResponses: [], pagination: undefined };
1326
+ }
1327
+
1328
+ export const QueryRedelegationsResponse = {
1329
+ encode(message: QueryRedelegationsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1330
+ for (const v of message.redelegationResponses) {
1331
+ RedelegationResponse.encode(v!, writer.uint32(10).fork()).ldelim();
1332
+ }
1333
+ if (message.pagination !== undefined) {
1334
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
1335
+ }
1336
+ return writer;
1337
+ },
1338
+
1339
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryRedelegationsResponse {
1340
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1341
+ let end = length === undefined ? reader.len : reader.pos + length;
1342
+ const message = createBaseQueryRedelegationsResponse();
1343
+ while (reader.pos < end) {
1344
+ const tag = reader.uint32();
1345
+ switch (tag >>> 3) {
1346
+ case 1:
1347
+ message.redelegationResponses.push(RedelegationResponse.decode(reader, reader.uint32()));
1348
+ break;
1349
+ case 2:
1350
+ message.pagination = PageResponse.decode(reader, reader.uint32());
1351
+ break;
1352
+ default:
1353
+ reader.skipType(tag & 7);
1354
+ break;
1355
+ }
1356
+ }
1357
+ return message;
1358
+ },
1359
+
1360
+ fromJSON(object: any): QueryRedelegationsResponse {
1361
+ return {
1362
+ redelegationResponses: Array.isArray(object?.redelegationResponses)
1363
+ ? object.redelegationResponses.map((e: any) => RedelegationResponse.fromJSON(e))
1364
+ : [],
1365
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
1366
+ };
1367
+ },
1368
+
1369
+ toJSON(message: QueryRedelegationsResponse): unknown {
1370
+ const obj: any = {};
1371
+ if (message.redelegationResponses) {
1372
+ obj.redelegationResponses = message.redelegationResponses.map((e) =>
1373
+ e ? RedelegationResponse.toJSON(e) : undefined
1374
+ );
1375
+ } else {
1376
+ obj.redelegationResponses = [];
1377
+ }
1378
+ message.pagination !== undefined
1379
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
1380
+ return obj;
1381
+ },
1382
+
1383
+ fromPartial<I extends Exact<DeepPartial<QueryRedelegationsResponse>, I>>(object: I): QueryRedelegationsResponse {
1384
+ const message = createBaseQueryRedelegationsResponse();
1385
+ message.redelegationResponses = object.redelegationResponses?.map((e) => RedelegationResponse.fromPartial(e)) || [];
1386
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1387
+ ? PageResponse.fromPartial(object.pagination)
1388
+ : undefined;
1389
+ return message;
1390
+ },
1391
+ };
1392
+
1393
+ function createBaseQueryDelegatorValidatorsRequest(): QueryDelegatorValidatorsRequest {
1394
+ return { delegatorAddr: "", pagination: undefined };
1395
+ }
1396
+
1397
+ export const QueryDelegatorValidatorsRequest = {
1398
+ encode(message: QueryDelegatorValidatorsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1399
+ if (message.delegatorAddr !== "") {
1400
+ writer.uint32(10).string(message.delegatorAddr);
1401
+ }
1402
+ if (message.pagination !== undefined) {
1403
+ PageRequest.encode(message.pagination, writer.uint32(18).fork()).ldelim();
1404
+ }
1405
+ return writer;
1406
+ },
1407
+
1408
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsRequest {
1409
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1410
+ let end = length === undefined ? reader.len : reader.pos + length;
1411
+ const message = createBaseQueryDelegatorValidatorsRequest();
1412
+ while (reader.pos < end) {
1413
+ const tag = reader.uint32();
1414
+ switch (tag >>> 3) {
1415
+ case 1:
1416
+ message.delegatorAddr = reader.string();
1417
+ break;
1418
+ case 2:
1419
+ message.pagination = PageRequest.decode(reader, reader.uint32());
1420
+ break;
1421
+ default:
1422
+ reader.skipType(tag & 7);
1423
+ break;
1424
+ }
1425
+ }
1426
+ return message;
1427
+ },
1428
+
1429
+ fromJSON(object: any): QueryDelegatorValidatorsRequest {
1430
+ return {
1431
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
1432
+ pagination: isSet(object.pagination) ? PageRequest.fromJSON(object.pagination) : undefined,
1433
+ };
1434
+ },
1435
+
1436
+ toJSON(message: QueryDelegatorValidatorsRequest): unknown {
1437
+ const obj: any = {};
1438
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
1439
+ message.pagination !== undefined
1440
+ && (obj.pagination = message.pagination ? PageRequest.toJSON(message.pagination) : undefined);
1441
+ return obj;
1442
+ },
1443
+
1444
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorValidatorsRequest>, I>>(
1445
+ object: I,
1446
+ ): QueryDelegatorValidatorsRequest {
1447
+ const message = createBaseQueryDelegatorValidatorsRequest();
1448
+ message.delegatorAddr = object.delegatorAddr ?? "";
1449
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1450
+ ? PageRequest.fromPartial(object.pagination)
1451
+ : undefined;
1452
+ return message;
1453
+ },
1454
+ };
1455
+
1456
+ function createBaseQueryDelegatorValidatorsResponse(): QueryDelegatorValidatorsResponse {
1457
+ return { validators: [], pagination: undefined };
1458
+ }
1459
+
1460
+ export const QueryDelegatorValidatorsResponse = {
1461
+ encode(message: QueryDelegatorValidatorsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1462
+ for (const v of message.validators) {
1463
+ Validator.encode(v!, writer.uint32(10).fork()).ldelim();
1464
+ }
1465
+ if (message.pagination !== undefined) {
1466
+ PageResponse.encode(message.pagination, writer.uint32(18).fork()).ldelim();
1467
+ }
1468
+ return writer;
1469
+ },
1470
+
1471
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorsResponse {
1472
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1473
+ let end = length === undefined ? reader.len : reader.pos + length;
1474
+ const message = createBaseQueryDelegatorValidatorsResponse();
1475
+ while (reader.pos < end) {
1476
+ const tag = reader.uint32();
1477
+ switch (tag >>> 3) {
1478
+ case 1:
1479
+ message.validators.push(Validator.decode(reader, reader.uint32()));
1480
+ break;
1481
+ case 2:
1482
+ message.pagination = PageResponse.decode(reader, reader.uint32());
1483
+ break;
1484
+ default:
1485
+ reader.skipType(tag & 7);
1486
+ break;
1487
+ }
1488
+ }
1489
+ return message;
1490
+ },
1491
+
1492
+ fromJSON(object: any): QueryDelegatorValidatorsResponse {
1493
+ return {
1494
+ validators: Array.isArray(object?.validators) ? object.validators.map((e: any) => Validator.fromJSON(e)) : [],
1495
+ pagination: isSet(object.pagination) ? PageResponse.fromJSON(object.pagination) : undefined,
1496
+ };
1497
+ },
1498
+
1499
+ toJSON(message: QueryDelegatorValidatorsResponse): unknown {
1500
+ const obj: any = {};
1501
+ if (message.validators) {
1502
+ obj.validators = message.validators.map((e) => e ? Validator.toJSON(e) : undefined);
1503
+ } else {
1504
+ obj.validators = [];
1505
+ }
1506
+ message.pagination !== undefined
1507
+ && (obj.pagination = message.pagination ? PageResponse.toJSON(message.pagination) : undefined);
1508
+ return obj;
1509
+ },
1510
+
1511
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorValidatorsResponse>, I>>(
1512
+ object: I,
1513
+ ): QueryDelegatorValidatorsResponse {
1514
+ const message = createBaseQueryDelegatorValidatorsResponse();
1515
+ message.validators = object.validators?.map((e) => Validator.fromPartial(e)) || [];
1516
+ message.pagination = (object.pagination !== undefined && object.pagination !== null)
1517
+ ? PageResponse.fromPartial(object.pagination)
1518
+ : undefined;
1519
+ return message;
1520
+ },
1521
+ };
1522
+
1523
+ function createBaseQueryDelegatorValidatorRequest(): QueryDelegatorValidatorRequest {
1524
+ return { delegatorAddr: "", validatorAddr: "" };
1525
+ }
1526
+
1527
+ export const QueryDelegatorValidatorRequest = {
1528
+ encode(message: QueryDelegatorValidatorRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1529
+ if (message.delegatorAddr !== "") {
1530
+ writer.uint32(10).string(message.delegatorAddr);
1531
+ }
1532
+ if (message.validatorAddr !== "") {
1533
+ writer.uint32(18).string(message.validatorAddr);
1534
+ }
1535
+ return writer;
1536
+ },
1537
+
1538
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorRequest {
1539
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1540
+ let end = length === undefined ? reader.len : reader.pos + length;
1541
+ const message = createBaseQueryDelegatorValidatorRequest();
1542
+ while (reader.pos < end) {
1543
+ const tag = reader.uint32();
1544
+ switch (tag >>> 3) {
1545
+ case 1:
1546
+ message.delegatorAddr = reader.string();
1547
+ break;
1548
+ case 2:
1549
+ message.validatorAddr = reader.string();
1550
+ break;
1551
+ default:
1552
+ reader.skipType(tag & 7);
1553
+ break;
1554
+ }
1555
+ }
1556
+ return message;
1557
+ },
1558
+
1559
+ fromJSON(object: any): QueryDelegatorValidatorRequest {
1560
+ return {
1561
+ delegatorAddr: isSet(object.delegatorAddr) ? String(object.delegatorAddr) : "",
1562
+ validatorAddr: isSet(object.validatorAddr) ? String(object.validatorAddr) : "",
1563
+ };
1564
+ },
1565
+
1566
+ toJSON(message: QueryDelegatorValidatorRequest): unknown {
1567
+ const obj: any = {};
1568
+ message.delegatorAddr !== undefined && (obj.delegatorAddr = message.delegatorAddr);
1569
+ message.validatorAddr !== undefined && (obj.validatorAddr = message.validatorAddr);
1570
+ return obj;
1571
+ },
1572
+
1573
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorValidatorRequest>, I>>(
1574
+ object: I,
1575
+ ): QueryDelegatorValidatorRequest {
1576
+ const message = createBaseQueryDelegatorValidatorRequest();
1577
+ message.delegatorAddr = object.delegatorAddr ?? "";
1578
+ message.validatorAddr = object.validatorAddr ?? "";
1579
+ return message;
1580
+ },
1581
+ };
1582
+
1583
+ function createBaseQueryDelegatorValidatorResponse(): QueryDelegatorValidatorResponse {
1584
+ return { validator: undefined };
1585
+ }
1586
+
1587
+ export const QueryDelegatorValidatorResponse = {
1588
+ encode(message: QueryDelegatorValidatorResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1589
+ if (message.validator !== undefined) {
1590
+ Validator.encode(message.validator, writer.uint32(10).fork()).ldelim();
1591
+ }
1592
+ return writer;
1593
+ },
1594
+
1595
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryDelegatorValidatorResponse {
1596
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1597
+ let end = length === undefined ? reader.len : reader.pos + length;
1598
+ const message = createBaseQueryDelegatorValidatorResponse();
1599
+ while (reader.pos < end) {
1600
+ const tag = reader.uint32();
1601
+ switch (tag >>> 3) {
1602
+ case 1:
1603
+ message.validator = Validator.decode(reader, reader.uint32());
1604
+ break;
1605
+ default:
1606
+ reader.skipType(tag & 7);
1607
+ break;
1608
+ }
1609
+ }
1610
+ return message;
1611
+ },
1612
+
1613
+ fromJSON(object: any): QueryDelegatorValidatorResponse {
1614
+ return { validator: isSet(object.validator) ? Validator.fromJSON(object.validator) : undefined };
1615
+ },
1616
+
1617
+ toJSON(message: QueryDelegatorValidatorResponse): unknown {
1618
+ const obj: any = {};
1619
+ message.validator !== undefined
1620
+ && (obj.validator = message.validator ? Validator.toJSON(message.validator) : undefined);
1621
+ return obj;
1622
+ },
1623
+
1624
+ fromPartial<I extends Exact<DeepPartial<QueryDelegatorValidatorResponse>, I>>(
1625
+ object: I,
1626
+ ): QueryDelegatorValidatorResponse {
1627
+ const message = createBaseQueryDelegatorValidatorResponse();
1628
+ message.validator = (object.validator !== undefined && object.validator !== null)
1629
+ ? Validator.fromPartial(object.validator)
1630
+ : undefined;
1631
+ return message;
1632
+ },
1633
+ };
1634
+
1635
+ function createBaseQueryHistoricalInfoRequest(): QueryHistoricalInfoRequest {
1636
+ return { height: 0 };
1637
+ }
1638
+
1639
+ export const QueryHistoricalInfoRequest = {
1640
+ encode(message: QueryHistoricalInfoRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1641
+ if (message.height !== 0) {
1642
+ writer.uint32(8).int64(message.height);
1643
+ }
1644
+ return writer;
1645
+ },
1646
+
1647
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryHistoricalInfoRequest {
1648
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1649
+ let end = length === undefined ? reader.len : reader.pos + length;
1650
+ const message = createBaseQueryHistoricalInfoRequest();
1651
+ while (reader.pos < end) {
1652
+ const tag = reader.uint32();
1653
+ switch (tag >>> 3) {
1654
+ case 1:
1655
+ message.height = longToNumber(reader.int64() as Long);
1656
+ break;
1657
+ default:
1658
+ reader.skipType(tag & 7);
1659
+ break;
1660
+ }
1661
+ }
1662
+ return message;
1663
+ },
1664
+
1665
+ fromJSON(object: any): QueryHistoricalInfoRequest {
1666
+ return { height: isSet(object.height) ? Number(object.height) : 0 };
1667
+ },
1668
+
1669
+ toJSON(message: QueryHistoricalInfoRequest): unknown {
1670
+ const obj: any = {};
1671
+ message.height !== undefined && (obj.height = Math.round(message.height));
1672
+ return obj;
1673
+ },
1674
+
1675
+ fromPartial<I extends Exact<DeepPartial<QueryHistoricalInfoRequest>, I>>(object: I): QueryHistoricalInfoRequest {
1676
+ const message = createBaseQueryHistoricalInfoRequest();
1677
+ message.height = object.height ?? 0;
1678
+ return message;
1679
+ },
1680
+ };
1681
+
1682
+ function createBaseQueryHistoricalInfoResponse(): QueryHistoricalInfoResponse {
1683
+ return { hist: undefined };
1684
+ }
1685
+
1686
+ export const QueryHistoricalInfoResponse = {
1687
+ encode(message: QueryHistoricalInfoResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1688
+ if (message.hist !== undefined) {
1689
+ HistoricalInfo.encode(message.hist, writer.uint32(10).fork()).ldelim();
1690
+ }
1691
+ return writer;
1692
+ },
1693
+
1694
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryHistoricalInfoResponse {
1695
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1696
+ let end = length === undefined ? reader.len : reader.pos + length;
1697
+ const message = createBaseQueryHistoricalInfoResponse();
1698
+ while (reader.pos < end) {
1699
+ const tag = reader.uint32();
1700
+ switch (tag >>> 3) {
1701
+ case 1:
1702
+ message.hist = HistoricalInfo.decode(reader, reader.uint32());
1703
+ break;
1704
+ default:
1705
+ reader.skipType(tag & 7);
1706
+ break;
1707
+ }
1708
+ }
1709
+ return message;
1710
+ },
1711
+
1712
+ fromJSON(object: any): QueryHistoricalInfoResponse {
1713
+ return { hist: isSet(object.hist) ? HistoricalInfo.fromJSON(object.hist) : undefined };
1714
+ },
1715
+
1716
+ toJSON(message: QueryHistoricalInfoResponse): unknown {
1717
+ const obj: any = {};
1718
+ message.hist !== undefined && (obj.hist = message.hist ? HistoricalInfo.toJSON(message.hist) : undefined);
1719
+ return obj;
1720
+ },
1721
+
1722
+ fromPartial<I extends Exact<DeepPartial<QueryHistoricalInfoResponse>, I>>(object: I): QueryHistoricalInfoResponse {
1723
+ const message = createBaseQueryHistoricalInfoResponse();
1724
+ message.hist = (object.hist !== undefined && object.hist !== null)
1725
+ ? HistoricalInfo.fromPartial(object.hist)
1726
+ : undefined;
1727
+ return message;
1728
+ },
1729
+ };
1730
+
1731
+ function createBaseQueryPoolRequest(): QueryPoolRequest {
1732
+ return {};
1733
+ }
1734
+
1735
+ export const QueryPoolRequest = {
1736
+ encode(_: QueryPoolRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1737
+ return writer;
1738
+ },
1739
+
1740
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryPoolRequest {
1741
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1742
+ let end = length === undefined ? reader.len : reader.pos + length;
1743
+ const message = createBaseQueryPoolRequest();
1744
+ while (reader.pos < end) {
1745
+ const tag = reader.uint32();
1746
+ switch (tag >>> 3) {
1747
+ default:
1748
+ reader.skipType(tag & 7);
1749
+ break;
1750
+ }
1751
+ }
1752
+ return message;
1753
+ },
1754
+
1755
+ fromJSON(_: any): QueryPoolRequest {
1756
+ return {};
1757
+ },
1758
+
1759
+ toJSON(_: QueryPoolRequest): unknown {
1760
+ const obj: any = {};
1761
+ return obj;
1762
+ },
1763
+
1764
+ fromPartial<I extends Exact<DeepPartial<QueryPoolRequest>, I>>(_: I): QueryPoolRequest {
1765
+ const message = createBaseQueryPoolRequest();
1766
+ return message;
1767
+ },
1768
+ };
1769
+
1770
+ function createBaseQueryPoolResponse(): QueryPoolResponse {
1771
+ return { pool: undefined };
1772
+ }
1773
+
1774
+ export const QueryPoolResponse = {
1775
+ encode(message: QueryPoolResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1776
+ if (message.pool !== undefined) {
1777
+ Pool.encode(message.pool, writer.uint32(10).fork()).ldelim();
1778
+ }
1779
+ return writer;
1780
+ },
1781
+
1782
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryPoolResponse {
1783
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1784
+ let end = length === undefined ? reader.len : reader.pos + length;
1785
+ const message = createBaseQueryPoolResponse();
1786
+ while (reader.pos < end) {
1787
+ const tag = reader.uint32();
1788
+ switch (tag >>> 3) {
1789
+ case 1:
1790
+ message.pool = Pool.decode(reader, reader.uint32());
1791
+ break;
1792
+ default:
1793
+ reader.skipType(tag & 7);
1794
+ break;
1795
+ }
1796
+ }
1797
+ return message;
1798
+ },
1799
+
1800
+ fromJSON(object: any): QueryPoolResponse {
1801
+ return { pool: isSet(object.pool) ? Pool.fromJSON(object.pool) : undefined };
1802
+ },
1803
+
1804
+ toJSON(message: QueryPoolResponse): unknown {
1805
+ const obj: any = {};
1806
+ message.pool !== undefined && (obj.pool = message.pool ? Pool.toJSON(message.pool) : undefined);
1807
+ return obj;
1808
+ },
1809
+
1810
+ fromPartial<I extends Exact<DeepPartial<QueryPoolResponse>, I>>(object: I): QueryPoolResponse {
1811
+ const message = createBaseQueryPoolResponse();
1812
+ message.pool = (object.pool !== undefined && object.pool !== null) ? Pool.fromPartial(object.pool) : undefined;
1813
+ return message;
1814
+ },
1815
+ };
1816
+
1817
+ function createBaseQueryParamsRequest(): QueryParamsRequest {
1818
+ return {};
1819
+ }
1820
+
1821
+ export const QueryParamsRequest = {
1822
+ encode(_: QueryParamsRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1823
+ return writer;
1824
+ },
1825
+
1826
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsRequest {
1827
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1828
+ let end = length === undefined ? reader.len : reader.pos + length;
1829
+ const message = createBaseQueryParamsRequest();
1830
+ while (reader.pos < end) {
1831
+ const tag = reader.uint32();
1832
+ switch (tag >>> 3) {
1833
+ default:
1834
+ reader.skipType(tag & 7);
1835
+ break;
1836
+ }
1837
+ }
1838
+ return message;
1839
+ },
1840
+
1841
+ fromJSON(_: any): QueryParamsRequest {
1842
+ return {};
1843
+ },
1844
+
1845
+ toJSON(_: QueryParamsRequest): unknown {
1846
+ const obj: any = {};
1847
+ return obj;
1848
+ },
1849
+
1850
+ fromPartial<I extends Exact<DeepPartial<QueryParamsRequest>, I>>(_: I): QueryParamsRequest {
1851
+ const message = createBaseQueryParamsRequest();
1852
+ return message;
1853
+ },
1854
+ };
1855
+
1856
+ function createBaseQueryParamsResponse(): QueryParamsResponse {
1857
+ return { params: undefined };
1858
+ }
1859
+
1860
+ export const QueryParamsResponse = {
1861
+ encode(message: QueryParamsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
1862
+ if (message.params !== undefined) {
1863
+ Params.encode(message.params, writer.uint32(10).fork()).ldelim();
1864
+ }
1865
+ return writer;
1866
+ },
1867
+
1868
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryParamsResponse {
1869
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
1870
+ let end = length === undefined ? reader.len : reader.pos + length;
1871
+ const message = createBaseQueryParamsResponse();
1872
+ while (reader.pos < end) {
1873
+ const tag = reader.uint32();
1874
+ switch (tag >>> 3) {
1875
+ case 1:
1876
+ message.params = Params.decode(reader, reader.uint32());
1877
+ break;
1878
+ default:
1879
+ reader.skipType(tag & 7);
1880
+ break;
1881
+ }
1882
+ }
1883
+ return message;
1884
+ },
1885
+
1886
+ fromJSON(object: any): QueryParamsResponse {
1887
+ return { params: isSet(object.params) ? Params.fromJSON(object.params) : undefined };
1888
+ },
1889
+
1890
+ toJSON(message: QueryParamsResponse): unknown {
1891
+ const obj: any = {};
1892
+ message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined);
1893
+ return obj;
1894
+ },
1895
+
1896
+ fromPartial<I extends Exact<DeepPartial<QueryParamsResponse>, I>>(object: I): QueryParamsResponse {
1897
+ const message = createBaseQueryParamsResponse();
1898
+ message.params = (object.params !== undefined && object.params !== null)
1899
+ ? Params.fromPartial(object.params)
1900
+ : undefined;
1901
+ return message;
1902
+ },
1903
+ };
1904
+
1905
+ /** Query defines the gRPC querier service. */
1906
+ export interface Query {
1907
+ /** Validators queries all validators that match the given status. */
1908
+ Validators(request: QueryValidatorsRequest): Promise<QueryValidatorsResponse>;
1909
+ /** Validator queries validator info for given validator address. */
1910
+ Validator(request: QueryValidatorRequest): Promise<QueryValidatorResponse>;
1911
+ /** ValidatorDelegations queries delegate info for given validator. */
1912
+ ValidatorDelegations(request: QueryValidatorDelegationsRequest): Promise<QueryValidatorDelegationsResponse>;
1913
+ /** ValidatorUnbondingDelegations queries unbonding delegations of a validator. */
1914
+ ValidatorUnbondingDelegations(
1915
+ request: QueryValidatorUnbondingDelegationsRequest,
1916
+ ): Promise<QueryValidatorUnbondingDelegationsResponse>;
1917
+ /** Delegation queries delegate info for given validator delegator pair. */
1918
+ Delegation(request: QueryDelegationRequest): Promise<QueryDelegationResponse>;
1919
+ /**
1920
+ * UnbondingDelegation queries unbonding info for given validator delegator
1921
+ * pair.
1922
+ */
1923
+ UnbondingDelegation(request: QueryUnbondingDelegationRequest): Promise<QueryUnbondingDelegationResponse>;
1924
+ /** DelegatorDelegations queries all delegations of a given delegator address. */
1925
+ DelegatorDelegations(request: QueryDelegatorDelegationsRequest): Promise<QueryDelegatorDelegationsResponse>;
1926
+ /**
1927
+ * DelegatorUnbondingDelegations queries all unbonding delegations of a given
1928
+ * delegator address.
1929
+ */
1930
+ DelegatorUnbondingDelegations(
1931
+ request: QueryDelegatorUnbondingDelegationsRequest,
1932
+ ): Promise<QueryDelegatorUnbondingDelegationsResponse>;
1933
+ /** Redelegations queries redelegations of given address. */
1934
+ Redelegations(request: QueryRedelegationsRequest): Promise<QueryRedelegationsResponse>;
1935
+ /**
1936
+ * DelegatorValidators queries all validators info for given delegator
1937
+ * address.
1938
+ */
1939
+ DelegatorValidators(request: QueryDelegatorValidatorsRequest): Promise<QueryDelegatorValidatorsResponse>;
1940
+ /**
1941
+ * DelegatorValidator queries validator info for given delegator validator
1942
+ * pair.
1943
+ */
1944
+ DelegatorValidator(request: QueryDelegatorValidatorRequest): Promise<QueryDelegatorValidatorResponse>;
1945
+ /** HistoricalInfo queries the historical info for given height. */
1946
+ HistoricalInfo(request: QueryHistoricalInfoRequest): Promise<QueryHistoricalInfoResponse>;
1947
+ /** Pool queries the pool info. */
1948
+ Pool(request: QueryPoolRequest): Promise<QueryPoolResponse>;
1949
+ /** Parameters queries the staking parameters. */
1950
+ Params(request: QueryParamsRequest): Promise<QueryParamsResponse>;
1951
+ }
1952
+
1953
+ export class QueryClientImpl implements Query {
1954
+ private readonly rpc: Rpc;
1955
+ constructor(rpc: Rpc) {
1956
+ this.rpc = rpc;
1957
+ this.Validators = this.Validators.bind(this);
1958
+ this.Validator = this.Validator.bind(this);
1959
+ this.ValidatorDelegations = this.ValidatorDelegations.bind(this);
1960
+ this.ValidatorUnbondingDelegations = this.ValidatorUnbondingDelegations.bind(this);
1961
+ this.Delegation = this.Delegation.bind(this);
1962
+ this.UnbondingDelegation = this.UnbondingDelegation.bind(this);
1963
+ this.DelegatorDelegations = this.DelegatorDelegations.bind(this);
1964
+ this.DelegatorUnbondingDelegations = this.DelegatorUnbondingDelegations.bind(this);
1965
+ this.Redelegations = this.Redelegations.bind(this);
1966
+ this.DelegatorValidators = this.DelegatorValidators.bind(this);
1967
+ this.DelegatorValidator = this.DelegatorValidator.bind(this);
1968
+ this.HistoricalInfo = this.HistoricalInfo.bind(this);
1969
+ this.Pool = this.Pool.bind(this);
1970
+ this.Params = this.Params.bind(this);
1971
+ }
1972
+ Validators(request: QueryValidatorsRequest): Promise<QueryValidatorsResponse> {
1973
+ const data = QueryValidatorsRequest.encode(request).finish();
1974
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "Validators", data);
1975
+ return promise.then((data) => QueryValidatorsResponse.decode(new _m0.Reader(data)));
1976
+ }
1977
+
1978
+ Validator(request: QueryValidatorRequest): Promise<QueryValidatorResponse> {
1979
+ const data = QueryValidatorRequest.encode(request).finish();
1980
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "Validator", data);
1981
+ return promise.then((data) => QueryValidatorResponse.decode(new _m0.Reader(data)));
1982
+ }
1983
+
1984
+ ValidatorDelegations(request: QueryValidatorDelegationsRequest): Promise<QueryValidatorDelegationsResponse> {
1985
+ const data = QueryValidatorDelegationsRequest.encode(request).finish();
1986
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "ValidatorDelegations", data);
1987
+ return promise.then((data) => QueryValidatorDelegationsResponse.decode(new _m0.Reader(data)));
1988
+ }
1989
+
1990
+ ValidatorUnbondingDelegations(
1991
+ request: QueryValidatorUnbondingDelegationsRequest,
1992
+ ): Promise<QueryValidatorUnbondingDelegationsResponse> {
1993
+ const data = QueryValidatorUnbondingDelegationsRequest.encode(request).finish();
1994
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "ValidatorUnbondingDelegations", data);
1995
+ return promise.then((data) => QueryValidatorUnbondingDelegationsResponse.decode(new _m0.Reader(data)));
1996
+ }
1997
+
1998
+ Delegation(request: QueryDelegationRequest): Promise<QueryDelegationResponse> {
1999
+ const data = QueryDelegationRequest.encode(request).finish();
2000
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "Delegation", data);
2001
+ return promise.then((data) => QueryDelegationResponse.decode(new _m0.Reader(data)));
2002
+ }
2003
+
2004
+ UnbondingDelegation(request: QueryUnbondingDelegationRequest): Promise<QueryUnbondingDelegationResponse> {
2005
+ const data = QueryUnbondingDelegationRequest.encode(request).finish();
2006
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "UnbondingDelegation", data);
2007
+ return promise.then((data) => QueryUnbondingDelegationResponse.decode(new _m0.Reader(data)));
2008
+ }
2009
+
2010
+ DelegatorDelegations(request: QueryDelegatorDelegationsRequest): Promise<QueryDelegatorDelegationsResponse> {
2011
+ const data = QueryDelegatorDelegationsRequest.encode(request).finish();
2012
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "DelegatorDelegations", data);
2013
+ return promise.then((data) => QueryDelegatorDelegationsResponse.decode(new _m0.Reader(data)));
2014
+ }
2015
+
2016
+ DelegatorUnbondingDelegations(
2017
+ request: QueryDelegatorUnbondingDelegationsRequest,
2018
+ ): Promise<QueryDelegatorUnbondingDelegationsResponse> {
2019
+ const data = QueryDelegatorUnbondingDelegationsRequest.encode(request).finish();
2020
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "DelegatorUnbondingDelegations", data);
2021
+ return promise.then((data) => QueryDelegatorUnbondingDelegationsResponse.decode(new _m0.Reader(data)));
2022
+ }
2023
+
2024
+ Redelegations(request: QueryRedelegationsRequest): Promise<QueryRedelegationsResponse> {
2025
+ const data = QueryRedelegationsRequest.encode(request).finish();
2026
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "Redelegations", data);
2027
+ return promise.then((data) => QueryRedelegationsResponse.decode(new _m0.Reader(data)));
2028
+ }
2029
+
2030
+ DelegatorValidators(request: QueryDelegatorValidatorsRequest): Promise<QueryDelegatorValidatorsResponse> {
2031
+ const data = QueryDelegatorValidatorsRequest.encode(request).finish();
2032
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "DelegatorValidators", data);
2033
+ return promise.then((data) => QueryDelegatorValidatorsResponse.decode(new _m0.Reader(data)));
2034
+ }
2035
+
2036
+ DelegatorValidator(request: QueryDelegatorValidatorRequest): Promise<QueryDelegatorValidatorResponse> {
2037
+ const data = QueryDelegatorValidatorRequest.encode(request).finish();
2038
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "DelegatorValidator", data);
2039
+ return promise.then((data) => QueryDelegatorValidatorResponse.decode(new _m0.Reader(data)));
2040
+ }
2041
+
2042
+ HistoricalInfo(request: QueryHistoricalInfoRequest): Promise<QueryHistoricalInfoResponse> {
2043
+ const data = QueryHistoricalInfoRequest.encode(request).finish();
2044
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "HistoricalInfo", data);
2045
+ return promise.then((data) => QueryHistoricalInfoResponse.decode(new _m0.Reader(data)));
2046
+ }
2047
+
2048
+ Pool(request: QueryPoolRequest): Promise<QueryPoolResponse> {
2049
+ const data = QueryPoolRequest.encode(request).finish();
2050
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "Pool", data);
2051
+ return promise.then((data) => QueryPoolResponse.decode(new _m0.Reader(data)));
2052
+ }
2053
+
2054
+ Params(request: QueryParamsRequest): Promise<QueryParamsResponse> {
2055
+ const data = QueryParamsRequest.encode(request).finish();
2056
+ const promise = this.rpc.request("cosmos.staking.v1beta1.Query", "Params", data);
2057
+ return promise.then((data) => QueryParamsResponse.decode(new _m0.Reader(data)));
2058
+ }
2059
+ }
2060
+
2061
+ interface Rpc {
2062
+ request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
2063
+ }
2064
+
2065
+ declare var self: any | undefined;
2066
+ declare var window: any | undefined;
2067
+ declare var global: any | undefined;
2068
+ var globalThis: any = (() => {
2069
+ if (typeof globalThis !== "undefined") {
2070
+ return globalThis;
2071
+ }
2072
+ if (typeof self !== "undefined") {
2073
+ return self;
2074
+ }
2075
+ if (typeof window !== "undefined") {
2076
+ return window;
2077
+ }
2078
+ if (typeof global !== "undefined") {
2079
+ return global;
2080
+ }
2081
+ throw "Unable to locate global object";
2082
+ })();
2083
+
2084
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
2085
+
2086
+ export type DeepPartial<T> = T extends Builtin ? T
2087
+ : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
2088
+ : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }
2089
+ : Partial<T>;
2090
+
2091
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
2092
+ export type Exact<P, I extends P> = P extends Builtin ? P
2093
+ : P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never };
2094
+
2095
+ function longToNumber(long: Long): number {
2096
+ if (long.gt(Number.MAX_SAFE_INTEGER)) {
2097
+ throw new globalThis.Error("Value is larger than Number.MAX_SAFE_INTEGER");
2098
+ }
2099
+ return long.toNumber();
2100
+ }
2101
+
2102
+ if (_m0.util.Long !== Long) {
2103
+ _m0.util.Long = Long as any;
2104
+ _m0.configure();
2105
+ }
2106
+
2107
+ function isSet(value: any): boolean {
2108
+ return value !== null && value !== undefined;
2109
+ }