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,1019 @@
1
+ // Generated by Ignite ignite.com/cli
2
+ import { SigningStargateClient } from "@cosmjs/stargate";
3
+ import { Registry } from "@cosmjs/proto-signing";
4
+ import { msgTypes } from './registry';
5
+ import { Api } from "./rest";
6
+ import { MsgSubmitMatchReporterProposal } from "./types/cardchain/tx";
7
+ import { MsgRewokeCouncilRegistration } from "./types/cardchain/tx";
8
+ import { MsgAddStoryToCollection } from "./types/cardchain/tx";
9
+ import { MsgCreateCouncil } from "./types/cardchain/tx";
10
+ import { MsgCreateSellOffer } from "./types/cardchain/tx";
11
+ import { MsgSetUserBiography } from "./types/cardchain/tx";
12
+ import { MsgRemoveCardFromCollection } from "./types/cardchain/tx";
13
+ import { MsgBuyCard } from "./types/cardchain/tx";
14
+ import { MsgSetUserWebsite } from "./types/cardchain/tx";
15
+ import { MsgDonateToCard } from "./types/cardchain/tx";
16
+ import { MsgCommitCouncilResponse } from "./types/cardchain/tx";
17
+ import { MsgReportMatch } from "./types/cardchain/tx";
18
+ import { MsgChangeArtist } from "./types/cardchain/tx";
19
+ import { MsgCreateuser } from "./types/cardchain/tx";
20
+ import { MsgBuyCardScheme } from "./types/cardchain/tx";
21
+ import { MsgOpenBoosterPack } from "./types/cardchain/tx";
22
+ import { MsgSetProfileCard } from "./types/cardchain/tx";
23
+ import { MsgFinalizeCollection } from "./types/cardchain/tx";
24
+ import { MsgRemoveSellOffer } from "./types/cardchain/tx";
25
+ import { MsgSetCollectionStoryWriter } from "./types/cardchain/tx";
26
+ import { MsgApointMatchReporter } from "./types/cardchain/tx";
27
+ import { MsgSaveCardContent } from "./types/cardchain/tx";
28
+ import { MsgRevealCouncilResponse } from "./types/cardchain/tx";
29
+ import { MsgSetCollectionArtist } from "./types/cardchain/tx";
30
+ import { MsgRegisterForCouncil } from "./types/cardchain/tx";
31
+ import { MsgSetCardRarity } from "./types/cardchain/tx";
32
+ import { MsgAddArtwork } from "./types/cardchain/tx";
33
+ import { MsgSubmitCollectionProposal } from "./types/cardchain/tx";
34
+ import { MsgTransferBoosterPack } from "./types/cardchain/tx";
35
+ import { MsgVoteCard } from "./types/cardchain/tx";
36
+ import { MsgRemoveContributorFromCollection } from "./types/cardchain/tx";
37
+ import { MsgConfirmMatch } from "./types/cardchain/tx";
38
+ import { MsgCreateCollection } from "./types/cardchain/tx";
39
+ import { MsgAddContributorToCollection } from "./types/cardchain/tx";
40
+ import { MsgRestartCouncil } from "./types/cardchain/tx";
41
+ import { MsgSubmitCopyrightProposal } from "./types/cardchain/tx";
42
+ import { MsgAddCardToCollection } from "./types/cardchain/tx";
43
+ import { MsgAddArtworkToCollection } from "./types/cardchain/tx";
44
+ import { MsgBuyCollection } from "./types/cardchain/tx";
45
+ import { MsgTransferCard } from "./types/cardchain/tx";
46
+ import { Card as typeCard } from "./types";
47
+ import { Collection as typeCollection } from "./types";
48
+ import { CollectionProposal as typeCollectionProposal } from "./types";
49
+ import { CopyrightProposal as typeCopyrightProposal } from "./types";
50
+ import { WrapClearResponse as typeWrapClearResponse } from "./types";
51
+ import { WrapHashResponse as typeWrapHashResponse } from "./types";
52
+ import { Image as typeImage } from "./types";
53
+ import { MatchPlayer as typeMatchPlayer } from "./types";
54
+ import { MatchReporterProposal as typeMatchReporterProposal } from "./types";
55
+ import { Num as typeNum } from "./types";
56
+ import { Params as typeParams } from "./types";
57
+ import { IgnoreMatches as typeIgnoreMatches } from "./types";
58
+ import { IgnoreSellOffers as typeIgnoreSellOffers } from "./types";
59
+ import { QueryQServerResponse as typeQueryQServerResponse } from "./types";
60
+ import { RunningAverage as typeRunningAverage } from "./types";
61
+ import { BoosterPack as typeBoosterPack } from "./types";
62
+ import { AirDrops as typeAirDrops } from "./types";
63
+ import { VoteRight as typeVoteRight } from "./types";
64
+ import { VotingResult as typeVotingResult } from "./types";
65
+ import { VotingResults as typeVotingResults } from "./types";
66
+ export { MsgSubmitMatchReporterProposal, MsgRewokeCouncilRegistration, MsgAddStoryToCollection, MsgCreateCouncil, MsgCreateSellOffer, MsgSetUserBiography, MsgRemoveCardFromCollection, MsgBuyCard, MsgSetUserWebsite, MsgDonateToCard, MsgCommitCouncilResponse, MsgReportMatch, MsgChangeArtist, MsgCreateuser, MsgBuyCardScheme, MsgOpenBoosterPack, MsgSetProfileCard, MsgFinalizeCollection, MsgRemoveSellOffer, MsgSetCollectionStoryWriter, MsgApointMatchReporter, MsgSaveCardContent, MsgRevealCouncilResponse, MsgSetCollectionArtist, MsgRegisterForCouncil, MsgSetCardRarity, MsgAddArtwork, MsgSubmitCollectionProposal, MsgTransferBoosterPack, MsgVoteCard, MsgRemoveContributorFromCollection, MsgConfirmMatch, MsgCreateCollection, MsgAddContributorToCollection, MsgRestartCouncil, MsgSubmitCopyrightProposal, MsgAddCardToCollection, MsgAddArtworkToCollection, MsgBuyCollection, MsgTransferCard };
67
+ export const registry = new Registry(msgTypes);
68
+ function getStructure(template) {
69
+ const structure = { fields: [] };
70
+ for (let [key, value] of Object.entries(template)) {
71
+ let field = { name: key, type: typeof value };
72
+ structure.fields.push(field);
73
+ }
74
+ return structure;
75
+ }
76
+ const defaultFee = {
77
+ amount: [],
78
+ gas: "200000",
79
+ };
80
+ export const txClient = ({ signer, prefix, addr } = { addr: "http://localhost:26657", prefix: "cosmos" }) => {
81
+ return {
82
+ async sendMsgSubmitMatchReporterProposal({ value, fee, memo }) {
83
+ if (!signer) {
84
+ throw new Error('TxClient:sendMsgSubmitMatchReporterProposal: Unable to sign Tx. Signer is not present.');
85
+ }
86
+ try {
87
+ const { address } = (await signer.getAccounts())[0];
88
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
89
+ let msg = this.msgSubmitMatchReporterProposal({ value: MsgSubmitMatchReporterProposal.fromPartial(value) });
90
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
91
+ }
92
+ catch (e) {
93
+ throw new Error('TxClient:sendMsgSubmitMatchReporterProposal: Could not broadcast Tx: ' + e.message);
94
+ }
95
+ },
96
+ async sendMsgRewokeCouncilRegistration({ value, fee, memo }) {
97
+ if (!signer) {
98
+ throw new Error('TxClient:sendMsgRewokeCouncilRegistration: Unable to sign Tx. Signer is not present.');
99
+ }
100
+ try {
101
+ const { address } = (await signer.getAccounts())[0];
102
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
103
+ let msg = this.msgRewokeCouncilRegistration({ value: MsgRewokeCouncilRegistration.fromPartial(value) });
104
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
105
+ }
106
+ catch (e) {
107
+ throw new Error('TxClient:sendMsgRewokeCouncilRegistration: Could not broadcast Tx: ' + e.message);
108
+ }
109
+ },
110
+ async sendMsgAddStoryToCollection({ value, fee, memo }) {
111
+ if (!signer) {
112
+ throw new Error('TxClient:sendMsgAddStoryToCollection: Unable to sign Tx. Signer is not present.');
113
+ }
114
+ try {
115
+ const { address } = (await signer.getAccounts())[0];
116
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
117
+ let msg = this.msgAddStoryToCollection({ value: MsgAddStoryToCollection.fromPartial(value) });
118
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
119
+ }
120
+ catch (e) {
121
+ throw new Error('TxClient:sendMsgAddStoryToCollection: Could not broadcast Tx: ' + e.message);
122
+ }
123
+ },
124
+ async sendMsgCreateCouncil({ value, fee, memo }) {
125
+ if (!signer) {
126
+ throw new Error('TxClient:sendMsgCreateCouncil: Unable to sign Tx. Signer is not present.');
127
+ }
128
+ try {
129
+ const { address } = (await signer.getAccounts())[0];
130
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
131
+ let msg = this.msgCreateCouncil({ value: MsgCreateCouncil.fromPartial(value) });
132
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
133
+ }
134
+ catch (e) {
135
+ throw new Error('TxClient:sendMsgCreateCouncil: Could not broadcast Tx: ' + e.message);
136
+ }
137
+ },
138
+ async sendMsgCreateSellOffer({ value, fee, memo }) {
139
+ if (!signer) {
140
+ throw new Error('TxClient:sendMsgCreateSellOffer: Unable to sign Tx. Signer is not present.');
141
+ }
142
+ try {
143
+ const { address } = (await signer.getAccounts())[0];
144
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
145
+ let msg = this.msgCreateSellOffer({ value: MsgCreateSellOffer.fromPartial(value) });
146
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
147
+ }
148
+ catch (e) {
149
+ throw new Error('TxClient:sendMsgCreateSellOffer: Could not broadcast Tx: ' + e.message);
150
+ }
151
+ },
152
+ async sendMsgSetUserBiography({ value, fee, memo }) {
153
+ if (!signer) {
154
+ throw new Error('TxClient:sendMsgSetUserBiography: Unable to sign Tx. Signer is not present.');
155
+ }
156
+ try {
157
+ const { address } = (await signer.getAccounts())[0];
158
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
159
+ let msg = this.msgSetUserBiography({ value: MsgSetUserBiography.fromPartial(value) });
160
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
161
+ }
162
+ catch (e) {
163
+ throw new Error('TxClient:sendMsgSetUserBiography: Could not broadcast Tx: ' + e.message);
164
+ }
165
+ },
166
+ async sendMsgRemoveCardFromCollection({ value, fee, memo }) {
167
+ if (!signer) {
168
+ throw new Error('TxClient:sendMsgRemoveCardFromCollection: Unable to sign Tx. Signer is not present.');
169
+ }
170
+ try {
171
+ const { address } = (await signer.getAccounts())[0];
172
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
173
+ let msg = this.msgRemoveCardFromCollection({ value: MsgRemoveCardFromCollection.fromPartial(value) });
174
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
175
+ }
176
+ catch (e) {
177
+ throw new Error('TxClient:sendMsgRemoveCardFromCollection: Could not broadcast Tx: ' + e.message);
178
+ }
179
+ },
180
+ async sendMsgBuyCard({ value, fee, memo }) {
181
+ if (!signer) {
182
+ throw new Error('TxClient:sendMsgBuyCard: Unable to sign Tx. Signer is not present.');
183
+ }
184
+ try {
185
+ const { address } = (await signer.getAccounts())[0];
186
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
187
+ let msg = this.msgBuyCard({ value: MsgBuyCard.fromPartial(value) });
188
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
189
+ }
190
+ catch (e) {
191
+ throw new Error('TxClient:sendMsgBuyCard: Could not broadcast Tx: ' + e.message);
192
+ }
193
+ },
194
+ async sendMsgSetUserWebsite({ value, fee, memo }) {
195
+ if (!signer) {
196
+ throw new Error('TxClient:sendMsgSetUserWebsite: Unable to sign Tx. Signer is not present.');
197
+ }
198
+ try {
199
+ const { address } = (await signer.getAccounts())[0];
200
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
201
+ let msg = this.msgSetUserWebsite({ value: MsgSetUserWebsite.fromPartial(value) });
202
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
203
+ }
204
+ catch (e) {
205
+ throw new Error('TxClient:sendMsgSetUserWebsite: Could not broadcast Tx: ' + e.message);
206
+ }
207
+ },
208
+ async sendMsgDonateToCard({ value, fee, memo }) {
209
+ if (!signer) {
210
+ throw new Error('TxClient:sendMsgDonateToCard: Unable to sign Tx. Signer is not present.');
211
+ }
212
+ try {
213
+ const { address } = (await signer.getAccounts())[0];
214
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
215
+ let msg = this.msgDonateToCard({ value: MsgDonateToCard.fromPartial(value) });
216
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
217
+ }
218
+ catch (e) {
219
+ throw new Error('TxClient:sendMsgDonateToCard: Could not broadcast Tx: ' + e.message);
220
+ }
221
+ },
222
+ async sendMsgCommitCouncilResponse({ value, fee, memo }) {
223
+ if (!signer) {
224
+ throw new Error('TxClient:sendMsgCommitCouncilResponse: Unable to sign Tx. Signer is not present.');
225
+ }
226
+ try {
227
+ const { address } = (await signer.getAccounts())[0];
228
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
229
+ let msg = this.msgCommitCouncilResponse({ value: MsgCommitCouncilResponse.fromPartial(value) });
230
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
231
+ }
232
+ catch (e) {
233
+ throw new Error('TxClient:sendMsgCommitCouncilResponse: Could not broadcast Tx: ' + e.message);
234
+ }
235
+ },
236
+ async sendMsgReportMatch({ value, fee, memo }) {
237
+ if (!signer) {
238
+ throw new Error('TxClient:sendMsgReportMatch: Unable to sign Tx. Signer is not present.');
239
+ }
240
+ try {
241
+ const { address } = (await signer.getAccounts())[0];
242
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
243
+ let msg = this.msgReportMatch({ value: MsgReportMatch.fromPartial(value) });
244
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
245
+ }
246
+ catch (e) {
247
+ throw new Error('TxClient:sendMsgReportMatch: Could not broadcast Tx: ' + e.message);
248
+ }
249
+ },
250
+ async sendMsgChangeArtist({ value, fee, memo }) {
251
+ if (!signer) {
252
+ throw new Error('TxClient:sendMsgChangeArtist: Unable to sign Tx. Signer is not present.');
253
+ }
254
+ try {
255
+ const { address } = (await signer.getAccounts())[0];
256
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
257
+ let msg = this.msgChangeArtist({ value: MsgChangeArtist.fromPartial(value) });
258
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
259
+ }
260
+ catch (e) {
261
+ throw new Error('TxClient:sendMsgChangeArtist: Could not broadcast Tx: ' + e.message);
262
+ }
263
+ },
264
+ async sendMsgCreateuser({ value, fee, memo }) {
265
+ if (!signer) {
266
+ throw new Error('TxClient:sendMsgCreateuser: Unable to sign Tx. Signer is not present.');
267
+ }
268
+ try {
269
+ const { address } = (await signer.getAccounts())[0];
270
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
271
+ let msg = this.msgCreateuser({ value: MsgCreateuser.fromPartial(value) });
272
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
273
+ }
274
+ catch (e) {
275
+ throw new Error('TxClient:sendMsgCreateuser: Could not broadcast Tx: ' + e.message);
276
+ }
277
+ },
278
+ async sendMsgBuyCardScheme({ value, fee, memo }) {
279
+ if (!signer) {
280
+ throw new Error('TxClient:sendMsgBuyCardScheme: Unable to sign Tx. Signer is not present.');
281
+ }
282
+ try {
283
+ const { address } = (await signer.getAccounts())[0];
284
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
285
+ let msg = this.msgBuyCardScheme({ value: MsgBuyCardScheme.fromPartial(value) });
286
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
287
+ }
288
+ catch (e) {
289
+ throw new Error('TxClient:sendMsgBuyCardScheme: Could not broadcast Tx: ' + e.message);
290
+ }
291
+ },
292
+ async sendMsgOpenBoosterPack({ value, fee, memo }) {
293
+ if (!signer) {
294
+ throw new Error('TxClient:sendMsgOpenBoosterPack: Unable to sign Tx. Signer is not present.');
295
+ }
296
+ try {
297
+ const { address } = (await signer.getAccounts())[0];
298
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
299
+ let msg = this.msgOpenBoosterPack({ value: MsgOpenBoosterPack.fromPartial(value) });
300
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
301
+ }
302
+ catch (e) {
303
+ throw new Error('TxClient:sendMsgOpenBoosterPack: Could not broadcast Tx: ' + e.message);
304
+ }
305
+ },
306
+ async sendMsgSetProfileCard({ value, fee, memo }) {
307
+ if (!signer) {
308
+ throw new Error('TxClient:sendMsgSetProfileCard: Unable to sign Tx. Signer is not present.');
309
+ }
310
+ try {
311
+ const { address } = (await signer.getAccounts())[0];
312
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
313
+ let msg = this.msgSetProfileCard({ value: MsgSetProfileCard.fromPartial(value) });
314
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
315
+ }
316
+ catch (e) {
317
+ throw new Error('TxClient:sendMsgSetProfileCard: Could not broadcast Tx: ' + e.message);
318
+ }
319
+ },
320
+ async sendMsgFinalizeCollection({ value, fee, memo }) {
321
+ if (!signer) {
322
+ throw new Error('TxClient:sendMsgFinalizeCollection: Unable to sign Tx. Signer is not present.');
323
+ }
324
+ try {
325
+ const { address } = (await signer.getAccounts())[0];
326
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
327
+ let msg = this.msgFinalizeCollection({ value: MsgFinalizeCollection.fromPartial(value) });
328
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
329
+ }
330
+ catch (e) {
331
+ throw new Error('TxClient:sendMsgFinalizeCollection: Could not broadcast Tx: ' + e.message);
332
+ }
333
+ },
334
+ async sendMsgRemoveSellOffer({ value, fee, memo }) {
335
+ if (!signer) {
336
+ throw new Error('TxClient:sendMsgRemoveSellOffer: Unable to sign Tx. Signer is not present.');
337
+ }
338
+ try {
339
+ const { address } = (await signer.getAccounts())[0];
340
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
341
+ let msg = this.msgRemoveSellOffer({ value: MsgRemoveSellOffer.fromPartial(value) });
342
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
343
+ }
344
+ catch (e) {
345
+ throw new Error('TxClient:sendMsgRemoveSellOffer: Could not broadcast Tx: ' + e.message);
346
+ }
347
+ },
348
+ async sendMsgSetCollectionStoryWriter({ value, fee, memo }) {
349
+ if (!signer) {
350
+ throw new Error('TxClient:sendMsgSetCollectionStoryWriter: Unable to sign Tx. Signer is not present.');
351
+ }
352
+ try {
353
+ const { address } = (await signer.getAccounts())[0];
354
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
355
+ let msg = this.msgSetCollectionStoryWriter({ value: MsgSetCollectionStoryWriter.fromPartial(value) });
356
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
357
+ }
358
+ catch (e) {
359
+ throw new Error('TxClient:sendMsgSetCollectionStoryWriter: Could not broadcast Tx: ' + e.message);
360
+ }
361
+ },
362
+ async sendMsgApointMatchReporter({ value, fee, memo }) {
363
+ if (!signer) {
364
+ throw new Error('TxClient:sendMsgApointMatchReporter: Unable to sign Tx. Signer is not present.');
365
+ }
366
+ try {
367
+ const { address } = (await signer.getAccounts())[0];
368
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
369
+ let msg = this.msgApointMatchReporter({ value: MsgApointMatchReporter.fromPartial(value) });
370
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
371
+ }
372
+ catch (e) {
373
+ throw new Error('TxClient:sendMsgApointMatchReporter: Could not broadcast Tx: ' + e.message);
374
+ }
375
+ },
376
+ async sendMsgSaveCardContent({ value, fee, memo }) {
377
+ if (!signer) {
378
+ throw new Error('TxClient:sendMsgSaveCardContent: Unable to sign Tx. Signer is not present.');
379
+ }
380
+ try {
381
+ const { address } = (await signer.getAccounts())[0];
382
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
383
+ let msg = this.msgSaveCardContent({ value: MsgSaveCardContent.fromPartial(value) });
384
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
385
+ }
386
+ catch (e) {
387
+ throw new Error('TxClient:sendMsgSaveCardContent: Could not broadcast Tx: ' + e.message);
388
+ }
389
+ },
390
+ async sendMsgRevealCouncilResponse({ value, fee, memo }) {
391
+ if (!signer) {
392
+ throw new Error('TxClient:sendMsgRevealCouncilResponse: Unable to sign Tx. Signer is not present.');
393
+ }
394
+ try {
395
+ const { address } = (await signer.getAccounts())[0];
396
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
397
+ let msg = this.msgRevealCouncilResponse({ value: MsgRevealCouncilResponse.fromPartial(value) });
398
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
399
+ }
400
+ catch (e) {
401
+ throw new Error('TxClient:sendMsgRevealCouncilResponse: Could not broadcast Tx: ' + e.message);
402
+ }
403
+ },
404
+ async sendMsgSetCollectionArtist({ value, fee, memo }) {
405
+ if (!signer) {
406
+ throw new Error('TxClient:sendMsgSetCollectionArtist: Unable to sign Tx. Signer is not present.');
407
+ }
408
+ try {
409
+ const { address } = (await signer.getAccounts())[0];
410
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
411
+ let msg = this.msgSetCollectionArtist({ value: MsgSetCollectionArtist.fromPartial(value) });
412
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
413
+ }
414
+ catch (e) {
415
+ throw new Error('TxClient:sendMsgSetCollectionArtist: Could not broadcast Tx: ' + e.message);
416
+ }
417
+ },
418
+ async sendMsgRegisterForCouncil({ value, fee, memo }) {
419
+ if (!signer) {
420
+ throw new Error('TxClient:sendMsgRegisterForCouncil: Unable to sign Tx. Signer is not present.');
421
+ }
422
+ try {
423
+ const { address } = (await signer.getAccounts())[0];
424
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
425
+ let msg = this.msgRegisterForCouncil({ value: MsgRegisterForCouncil.fromPartial(value) });
426
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
427
+ }
428
+ catch (e) {
429
+ throw new Error('TxClient:sendMsgRegisterForCouncil: Could not broadcast Tx: ' + e.message);
430
+ }
431
+ },
432
+ async sendMsgSetCardRarity({ value, fee, memo }) {
433
+ if (!signer) {
434
+ throw new Error('TxClient:sendMsgSetCardRarity: Unable to sign Tx. Signer is not present.');
435
+ }
436
+ try {
437
+ const { address } = (await signer.getAccounts())[0];
438
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
439
+ let msg = this.msgSetCardRarity({ value: MsgSetCardRarity.fromPartial(value) });
440
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
441
+ }
442
+ catch (e) {
443
+ throw new Error('TxClient:sendMsgSetCardRarity: Could not broadcast Tx: ' + e.message);
444
+ }
445
+ },
446
+ async sendMsgAddArtwork({ value, fee, memo }) {
447
+ if (!signer) {
448
+ throw new Error('TxClient:sendMsgAddArtwork: Unable to sign Tx. Signer is not present.');
449
+ }
450
+ try {
451
+ const { address } = (await signer.getAccounts())[0];
452
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
453
+ let msg = this.msgAddArtwork({ value: MsgAddArtwork.fromPartial(value) });
454
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
455
+ }
456
+ catch (e) {
457
+ throw new Error('TxClient:sendMsgAddArtwork: Could not broadcast Tx: ' + e.message);
458
+ }
459
+ },
460
+ async sendMsgSubmitCollectionProposal({ value, fee, memo }) {
461
+ if (!signer) {
462
+ throw new Error('TxClient:sendMsgSubmitCollectionProposal: Unable to sign Tx. Signer is not present.');
463
+ }
464
+ try {
465
+ const { address } = (await signer.getAccounts())[0];
466
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
467
+ let msg = this.msgSubmitCollectionProposal({ value: MsgSubmitCollectionProposal.fromPartial(value) });
468
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
469
+ }
470
+ catch (e) {
471
+ throw new Error('TxClient:sendMsgSubmitCollectionProposal: Could not broadcast Tx: ' + e.message);
472
+ }
473
+ },
474
+ async sendMsgTransferBoosterPack({ value, fee, memo }) {
475
+ if (!signer) {
476
+ throw new Error('TxClient:sendMsgTransferBoosterPack: Unable to sign Tx. Signer is not present.');
477
+ }
478
+ try {
479
+ const { address } = (await signer.getAccounts())[0];
480
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
481
+ let msg = this.msgTransferBoosterPack({ value: MsgTransferBoosterPack.fromPartial(value) });
482
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
483
+ }
484
+ catch (e) {
485
+ throw new Error('TxClient:sendMsgTransferBoosterPack: Could not broadcast Tx: ' + e.message);
486
+ }
487
+ },
488
+ async sendMsgVoteCard({ value, fee, memo }) {
489
+ if (!signer) {
490
+ throw new Error('TxClient:sendMsgVoteCard: Unable to sign Tx. Signer is not present.');
491
+ }
492
+ try {
493
+ const { address } = (await signer.getAccounts())[0];
494
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
495
+ let msg = this.msgVoteCard({ value: MsgVoteCard.fromPartial(value) });
496
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
497
+ }
498
+ catch (e) {
499
+ throw new Error('TxClient:sendMsgVoteCard: Could not broadcast Tx: ' + e.message);
500
+ }
501
+ },
502
+ async sendMsgRemoveContributorFromCollection({ value, fee, memo }) {
503
+ if (!signer) {
504
+ throw new Error('TxClient:sendMsgRemoveContributorFromCollection: Unable to sign Tx. Signer is not present.');
505
+ }
506
+ try {
507
+ const { address } = (await signer.getAccounts())[0];
508
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
509
+ let msg = this.msgRemoveContributorFromCollection({ value: MsgRemoveContributorFromCollection.fromPartial(value) });
510
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
511
+ }
512
+ catch (e) {
513
+ throw new Error('TxClient:sendMsgRemoveContributorFromCollection: Could not broadcast Tx: ' + e.message);
514
+ }
515
+ },
516
+ async sendMsgConfirmMatch({ value, fee, memo }) {
517
+ if (!signer) {
518
+ throw new Error('TxClient:sendMsgConfirmMatch: Unable to sign Tx. Signer is not present.');
519
+ }
520
+ try {
521
+ const { address } = (await signer.getAccounts())[0];
522
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
523
+ let msg = this.msgConfirmMatch({ value: MsgConfirmMatch.fromPartial(value) });
524
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
525
+ }
526
+ catch (e) {
527
+ throw new Error('TxClient:sendMsgConfirmMatch: Could not broadcast Tx: ' + e.message);
528
+ }
529
+ },
530
+ async sendMsgCreateCollection({ value, fee, memo }) {
531
+ if (!signer) {
532
+ throw new Error('TxClient:sendMsgCreateCollection: Unable to sign Tx. Signer is not present.');
533
+ }
534
+ try {
535
+ const { address } = (await signer.getAccounts())[0];
536
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
537
+ let msg = this.msgCreateCollection({ value: MsgCreateCollection.fromPartial(value) });
538
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
539
+ }
540
+ catch (e) {
541
+ throw new Error('TxClient:sendMsgCreateCollection: Could not broadcast Tx: ' + e.message);
542
+ }
543
+ },
544
+ async sendMsgAddContributorToCollection({ value, fee, memo }) {
545
+ if (!signer) {
546
+ throw new Error('TxClient:sendMsgAddContributorToCollection: Unable to sign Tx. Signer is not present.');
547
+ }
548
+ try {
549
+ const { address } = (await signer.getAccounts())[0];
550
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
551
+ let msg = this.msgAddContributorToCollection({ value: MsgAddContributorToCollection.fromPartial(value) });
552
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
553
+ }
554
+ catch (e) {
555
+ throw new Error('TxClient:sendMsgAddContributorToCollection: Could not broadcast Tx: ' + e.message);
556
+ }
557
+ },
558
+ async sendMsgRestartCouncil({ value, fee, memo }) {
559
+ if (!signer) {
560
+ throw new Error('TxClient:sendMsgRestartCouncil: Unable to sign Tx. Signer is not present.');
561
+ }
562
+ try {
563
+ const { address } = (await signer.getAccounts())[0];
564
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
565
+ let msg = this.msgRestartCouncil({ value: MsgRestartCouncil.fromPartial(value) });
566
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
567
+ }
568
+ catch (e) {
569
+ throw new Error('TxClient:sendMsgRestartCouncil: Could not broadcast Tx: ' + e.message);
570
+ }
571
+ },
572
+ async sendMsgSubmitCopyrightProposal({ value, fee, memo }) {
573
+ if (!signer) {
574
+ throw new Error('TxClient:sendMsgSubmitCopyrightProposal: Unable to sign Tx. Signer is not present.');
575
+ }
576
+ try {
577
+ const { address } = (await signer.getAccounts())[0];
578
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
579
+ let msg = this.msgSubmitCopyrightProposal({ value: MsgSubmitCopyrightProposal.fromPartial(value) });
580
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
581
+ }
582
+ catch (e) {
583
+ throw new Error('TxClient:sendMsgSubmitCopyrightProposal: Could not broadcast Tx: ' + e.message);
584
+ }
585
+ },
586
+ async sendMsgAddCardToCollection({ value, fee, memo }) {
587
+ if (!signer) {
588
+ throw new Error('TxClient:sendMsgAddCardToCollection: Unable to sign Tx. Signer is not present.');
589
+ }
590
+ try {
591
+ const { address } = (await signer.getAccounts())[0];
592
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
593
+ let msg = this.msgAddCardToCollection({ value: MsgAddCardToCollection.fromPartial(value) });
594
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
595
+ }
596
+ catch (e) {
597
+ throw new Error('TxClient:sendMsgAddCardToCollection: Could not broadcast Tx: ' + e.message);
598
+ }
599
+ },
600
+ async sendMsgAddArtworkToCollection({ value, fee, memo }) {
601
+ if (!signer) {
602
+ throw new Error('TxClient:sendMsgAddArtworkToCollection: Unable to sign Tx. Signer is not present.');
603
+ }
604
+ try {
605
+ const { address } = (await signer.getAccounts())[0];
606
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
607
+ let msg = this.msgAddArtworkToCollection({ value: MsgAddArtworkToCollection.fromPartial(value) });
608
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
609
+ }
610
+ catch (e) {
611
+ throw new Error('TxClient:sendMsgAddArtworkToCollection: Could not broadcast Tx: ' + e.message);
612
+ }
613
+ },
614
+ async sendMsgBuyCollection({ value, fee, memo }) {
615
+ if (!signer) {
616
+ throw new Error('TxClient:sendMsgBuyCollection: Unable to sign Tx. Signer is not present.');
617
+ }
618
+ try {
619
+ const { address } = (await signer.getAccounts())[0];
620
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
621
+ let msg = this.msgBuyCollection({ value: MsgBuyCollection.fromPartial(value) });
622
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
623
+ }
624
+ catch (e) {
625
+ throw new Error('TxClient:sendMsgBuyCollection: Could not broadcast Tx: ' + e.message);
626
+ }
627
+ },
628
+ async sendMsgTransferCard({ value, fee, memo }) {
629
+ if (!signer) {
630
+ throw new Error('TxClient:sendMsgTransferCard: Unable to sign Tx. Signer is not present.');
631
+ }
632
+ try {
633
+ const { address } = (await signer.getAccounts())[0];
634
+ const signingClient = await SigningStargateClient.connectWithSigner(addr, signer, { registry, prefix });
635
+ let msg = this.msgTransferCard({ value: MsgTransferCard.fromPartial(value) });
636
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo);
637
+ }
638
+ catch (e) {
639
+ throw new Error('TxClient:sendMsgTransferCard: Could not broadcast Tx: ' + e.message);
640
+ }
641
+ },
642
+ msgSubmitMatchReporterProposal({ value }) {
643
+ try {
644
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSubmitMatchReporterProposal", value: MsgSubmitMatchReporterProposal.fromPartial(value) };
645
+ }
646
+ catch (e) {
647
+ throw new Error('TxClient:MsgSubmitMatchReporterProposal: Could not create message: ' + e.message);
648
+ }
649
+ },
650
+ msgRewokeCouncilRegistration({ value }) {
651
+ try {
652
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRewokeCouncilRegistration", value: MsgRewokeCouncilRegistration.fromPartial(value) };
653
+ }
654
+ catch (e) {
655
+ throw new Error('TxClient:MsgRewokeCouncilRegistration: Could not create message: ' + e.message);
656
+ }
657
+ },
658
+ msgAddStoryToCollection({ value }) {
659
+ try {
660
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddStoryToCollection", value: MsgAddStoryToCollection.fromPartial(value) };
661
+ }
662
+ catch (e) {
663
+ throw new Error('TxClient:MsgAddStoryToCollection: Could not create message: ' + e.message);
664
+ }
665
+ },
666
+ msgCreateCouncil({ value }) {
667
+ try {
668
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateCouncil", value: MsgCreateCouncil.fromPartial(value) };
669
+ }
670
+ catch (e) {
671
+ throw new Error('TxClient:MsgCreateCouncil: Could not create message: ' + e.message);
672
+ }
673
+ },
674
+ msgCreateSellOffer({ value }) {
675
+ try {
676
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateSellOffer", value: MsgCreateSellOffer.fromPartial(value) };
677
+ }
678
+ catch (e) {
679
+ throw new Error('TxClient:MsgCreateSellOffer: Could not create message: ' + e.message);
680
+ }
681
+ },
682
+ msgSetUserBiography({ value }) {
683
+ try {
684
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetUserBiography", value: MsgSetUserBiography.fromPartial(value) };
685
+ }
686
+ catch (e) {
687
+ throw new Error('TxClient:MsgSetUserBiography: Could not create message: ' + e.message);
688
+ }
689
+ },
690
+ msgRemoveCardFromCollection({ value }) {
691
+ try {
692
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRemoveCardFromCollection", value: MsgRemoveCardFromCollection.fromPartial(value) };
693
+ }
694
+ catch (e) {
695
+ throw new Error('TxClient:MsgRemoveCardFromCollection: Could not create message: ' + e.message);
696
+ }
697
+ },
698
+ msgBuyCard({ value }) {
699
+ try {
700
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgBuyCard", value: MsgBuyCard.fromPartial(value) };
701
+ }
702
+ catch (e) {
703
+ throw new Error('TxClient:MsgBuyCard: Could not create message: ' + e.message);
704
+ }
705
+ },
706
+ msgSetUserWebsite({ value }) {
707
+ try {
708
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetUserWebsite", value: MsgSetUserWebsite.fromPartial(value) };
709
+ }
710
+ catch (e) {
711
+ throw new Error('TxClient:MsgSetUserWebsite: Could not create message: ' + e.message);
712
+ }
713
+ },
714
+ msgDonateToCard({ value }) {
715
+ try {
716
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgDonateToCard", value: MsgDonateToCard.fromPartial(value) };
717
+ }
718
+ catch (e) {
719
+ throw new Error('TxClient:MsgDonateToCard: Could not create message: ' + e.message);
720
+ }
721
+ },
722
+ msgCommitCouncilResponse({ value }) {
723
+ try {
724
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCommitCouncilResponse", value: MsgCommitCouncilResponse.fromPartial(value) };
725
+ }
726
+ catch (e) {
727
+ throw new Error('TxClient:MsgCommitCouncilResponse: Could not create message: ' + e.message);
728
+ }
729
+ },
730
+ msgReportMatch({ value }) {
731
+ try {
732
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgReportMatch", value: MsgReportMatch.fromPartial(value) };
733
+ }
734
+ catch (e) {
735
+ throw new Error('TxClient:MsgReportMatch: Could not create message: ' + e.message);
736
+ }
737
+ },
738
+ msgChangeArtist({ value }) {
739
+ try {
740
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgChangeArtist", value: MsgChangeArtist.fromPartial(value) };
741
+ }
742
+ catch (e) {
743
+ throw new Error('TxClient:MsgChangeArtist: Could not create message: ' + e.message);
744
+ }
745
+ },
746
+ msgCreateuser({ value }) {
747
+ try {
748
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateuser", value: MsgCreateuser.fromPartial(value) };
749
+ }
750
+ catch (e) {
751
+ throw new Error('TxClient:MsgCreateuser: Could not create message: ' + e.message);
752
+ }
753
+ },
754
+ msgBuyCardScheme({ value }) {
755
+ try {
756
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgBuyCardScheme", value: MsgBuyCardScheme.fromPartial(value) };
757
+ }
758
+ catch (e) {
759
+ throw new Error('TxClient:MsgBuyCardScheme: Could not create message: ' + e.message);
760
+ }
761
+ },
762
+ msgOpenBoosterPack({ value }) {
763
+ try {
764
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgOpenBoosterPack", value: MsgOpenBoosterPack.fromPartial(value) };
765
+ }
766
+ catch (e) {
767
+ throw new Error('TxClient:MsgOpenBoosterPack: Could not create message: ' + e.message);
768
+ }
769
+ },
770
+ msgSetProfileCard({ value }) {
771
+ try {
772
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetProfileCard", value: MsgSetProfileCard.fromPartial(value) };
773
+ }
774
+ catch (e) {
775
+ throw new Error('TxClient:MsgSetProfileCard: Could not create message: ' + e.message);
776
+ }
777
+ },
778
+ msgFinalizeCollection({ value }) {
779
+ try {
780
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgFinalizeCollection", value: MsgFinalizeCollection.fromPartial(value) };
781
+ }
782
+ catch (e) {
783
+ throw new Error('TxClient:MsgFinalizeCollection: Could not create message: ' + e.message);
784
+ }
785
+ },
786
+ msgRemoveSellOffer({ value }) {
787
+ try {
788
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRemoveSellOffer", value: MsgRemoveSellOffer.fromPartial(value) };
789
+ }
790
+ catch (e) {
791
+ throw new Error('TxClient:MsgRemoveSellOffer: Could not create message: ' + e.message);
792
+ }
793
+ },
794
+ msgSetCollectionStoryWriter({ value }) {
795
+ try {
796
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetCollectionStoryWriter", value: MsgSetCollectionStoryWriter.fromPartial(value) };
797
+ }
798
+ catch (e) {
799
+ throw new Error('TxClient:MsgSetCollectionStoryWriter: Could not create message: ' + e.message);
800
+ }
801
+ },
802
+ msgApointMatchReporter({ value }) {
803
+ try {
804
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgApointMatchReporter", value: MsgApointMatchReporter.fromPartial(value) };
805
+ }
806
+ catch (e) {
807
+ throw new Error('TxClient:MsgApointMatchReporter: Could not create message: ' + e.message);
808
+ }
809
+ },
810
+ msgSaveCardContent({ value }) {
811
+ try {
812
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSaveCardContent", value: MsgSaveCardContent.fromPartial(value) };
813
+ }
814
+ catch (e) {
815
+ throw new Error('TxClient:MsgSaveCardContent: Could not create message: ' + e.message);
816
+ }
817
+ },
818
+ msgRevealCouncilResponse({ value }) {
819
+ try {
820
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRevealCouncilResponse", value: MsgRevealCouncilResponse.fromPartial(value) };
821
+ }
822
+ catch (e) {
823
+ throw new Error('TxClient:MsgRevealCouncilResponse: Could not create message: ' + e.message);
824
+ }
825
+ },
826
+ msgSetCollectionArtist({ value }) {
827
+ try {
828
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetCollectionArtist", value: MsgSetCollectionArtist.fromPartial(value) };
829
+ }
830
+ catch (e) {
831
+ throw new Error('TxClient:MsgSetCollectionArtist: Could not create message: ' + e.message);
832
+ }
833
+ },
834
+ msgRegisterForCouncil({ value }) {
835
+ try {
836
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRegisterForCouncil", value: MsgRegisterForCouncil.fromPartial(value) };
837
+ }
838
+ catch (e) {
839
+ throw new Error('TxClient:MsgRegisterForCouncil: Could not create message: ' + e.message);
840
+ }
841
+ },
842
+ msgSetCardRarity({ value }) {
843
+ try {
844
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetCardRarity", value: MsgSetCardRarity.fromPartial(value) };
845
+ }
846
+ catch (e) {
847
+ throw new Error('TxClient:MsgSetCardRarity: Could not create message: ' + e.message);
848
+ }
849
+ },
850
+ msgAddArtwork({ value }) {
851
+ try {
852
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddArtwork", value: MsgAddArtwork.fromPartial(value) };
853
+ }
854
+ catch (e) {
855
+ throw new Error('TxClient:MsgAddArtwork: Could not create message: ' + e.message);
856
+ }
857
+ },
858
+ msgSubmitCollectionProposal({ value }) {
859
+ try {
860
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSubmitCollectionProposal", value: MsgSubmitCollectionProposal.fromPartial(value) };
861
+ }
862
+ catch (e) {
863
+ throw new Error('TxClient:MsgSubmitCollectionProposal: Could not create message: ' + e.message);
864
+ }
865
+ },
866
+ msgTransferBoosterPack({ value }) {
867
+ try {
868
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgTransferBoosterPack", value: MsgTransferBoosterPack.fromPartial(value) };
869
+ }
870
+ catch (e) {
871
+ throw new Error('TxClient:MsgTransferBoosterPack: Could not create message: ' + e.message);
872
+ }
873
+ },
874
+ msgVoteCard({ value }) {
875
+ try {
876
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgVoteCard", value: MsgVoteCard.fromPartial(value) };
877
+ }
878
+ catch (e) {
879
+ throw new Error('TxClient:MsgVoteCard: Could not create message: ' + e.message);
880
+ }
881
+ },
882
+ msgRemoveContributorFromCollection({ value }) {
883
+ try {
884
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRemoveContributorFromCollection", value: MsgRemoveContributorFromCollection.fromPartial(value) };
885
+ }
886
+ catch (e) {
887
+ throw new Error('TxClient:MsgRemoveContributorFromCollection: Could not create message: ' + e.message);
888
+ }
889
+ },
890
+ msgConfirmMatch({ value }) {
891
+ try {
892
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgConfirmMatch", value: MsgConfirmMatch.fromPartial(value) };
893
+ }
894
+ catch (e) {
895
+ throw new Error('TxClient:MsgConfirmMatch: Could not create message: ' + e.message);
896
+ }
897
+ },
898
+ msgCreateCollection({ value }) {
899
+ try {
900
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateCollection", value: MsgCreateCollection.fromPartial(value) };
901
+ }
902
+ catch (e) {
903
+ throw new Error('TxClient:MsgCreateCollection: Could not create message: ' + e.message);
904
+ }
905
+ },
906
+ msgAddContributorToCollection({ value }) {
907
+ try {
908
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddContributorToCollection", value: MsgAddContributorToCollection.fromPartial(value) };
909
+ }
910
+ catch (e) {
911
+ throw new Error('TxClient:MsgAddContributorToCollection: Could not create message: ' + e.message);
912
+ }
913
+ },
914
+ msgRestartCouncil({ value }) {
915
+ try {
916
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRestartCouncil", value: MsgRestartCouncil.fromPartial(value) };
917
+ }
918
+ catch (e) {
919
+ throw new Error('TxClient:MsgRestartCouncil: Could not create message: ' + e.message);
920
+ }
921
+ },
922
+ msgSubmitCopyrightProposal({ value }) {
923
+ try {
924
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSubmitCopyrightProposal", value: MsgSubmitCopyrightProposal.fromPartial(value) };
925
+ }
926
+ catch (e) {
927
+ throw new Error('TxClient:MsgSubmitCopyrightProposal: Could not create message: ' + e.message);
928
+ }
929
+ },
930
+ msgAddCardToCollection({ value }) {
931
+ try {
932
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddCardToCollection", value: MsgAddCardToCollection.fromPartial(value) };
933
+ }
934
+ catch (e) {
935
+ throw new Error('TxClient:MsgAddCardToCollection: Could not create message: ' + e.message);
936
+ }
937
+ },
938
+ msgAddArtworkToCollection({ value }) {
939
+ try {
940
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddArtworkToCollection", value: MsgAddArtworkToCollection.fromPartial(value) };
941
+ }
942
+ catch (e) {
943
+ throw new Error('TxClient:MsgAddArtworkToCollection: Could not create message: ' + e.message);
944
+ }
945
+ },
946
+ msgBuyCollection({ value }) {
947
+ try {
948
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgBuyCollection", value: MsgBuyCollection.fromPartial(value) };
949
+ }
950
+ catch (e) {
951
+ throw new Error('TxClient:MsgBuyCollection: Could not create message: ' + e.message);
952
+ }
953
+ },
954
+ msgTransferCard({ value }) {
955
+ try {
956
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgTransferCard", value: MsgTransferCard.fromPartial(value) };
957
+ }
958
+ catch (e) {
959
+ throw new Error('TxClient:MsgTransferCard: Could not create message: ' + e.message);
960
+ }
961
+ },
962
+ };
963
+ };
964
+ export const queryClient = ({ addr: addr } = { addr: "http://localhost:1317" }) => {
965
+ return new Api({ baseURL: addr });
966
+ };
967
+ class SDKModule {
968
+ constructor(client) {
969
+ this.registry = [];
970
+ this.query = queryClient({ addr: client.env.apiURL });
971
+ this.updateTX(client);
972
+ this.structure = {
973
+ Card: getStructure(typeCard.fromPartial({})),
974
+ Collection: getStructure(typeCollection.fromPartial({})),
975
+ CollectionProposal: getStructure(typeCollectionProposal.fromPartial({})),
976
+ CopyrightProposal: getStructure(typeCopyrightProposal.fromPartial({})),
977
+ WrapClearResponse: getStructure(typeWrapClearResponse.fromPartial({})),
978
+ WrapHashResponse: getStructure(typeWrapHashResponse.fromPartial({})),
979
+ Image: getStructure(typeImage.fromPartial({})),
980
+ MatchPlayer: getStructure(typeMatchPlayer.fromPartial({})),
981
+ MatchReporterProposal: getStructure(typeMatchReporterProposal.fromPartial({})),
982
+ Num: getStructure(typeNum.fromPartial({})),
983
+ Params: getStructure(typeParams.fromPartial({})),
984
+ IgnoreMatches: getStructure(typeIgnoreMatches.fromPartial({})),
985
+ IgnoreSellOffers: getStructure(typeIgnoreSellOffers.fromPartial({})),
986
+ QueryQServerResponse: getStructure(typeQueryQServerResponse.fromPartial({})),
987
+ RunningAverage: getStructure(typeRunningAverage.fromPartial({})),
988
+ BoosterPack: getStructure(typeBoosterPack.fromPartial({})),
989
+ AirDrops: getStructure(typeAirDrops.fromPartial({})),
990
+ VoteRight: getStructure(typeVoteRight.fromPartial({})),
991
+ VotingResult: getStructure(typeVotingResult.fromPartial({})),
992
+ VotingResults: getStructure(typeVotingResults.fromPartial({})),
993
+ };
994
+ client.on('signer-changed', (signer) => {
995
+ this.updateTX(client);
996
+ });
997
+ }
998
+ updateTX(client) {
999
+ const methods = txClient({
1000
+ signer: client.signer,
1001
+ addr: client.env.rpcURL,
1002
+ prefix: client.env.prefix ?? "cosmos",
1003
+ });
1004
+ this.tx = methods;
1005
+ for (let m in methods) {
1006
+ this.tx[m] = methods[m].bind(this.tx);
1007
+ }
1008
+ }
1009
+ }
1010
+ ;
1011
+ const Module = (test) => {
1012
+ return {
1013
+ module: {
1014
+ DecentralCardGameCardchainCardchain: new SDKModule(test)
1015
+ },
1016
+ registry: msgTypes
1017
+ };
1018
+ };
1019
+ export default Module;