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,1456 @@
1
+ // Generated by Ignite ignite.com/cli
2
+
3
+ import { StdFee } from "@cosmjs/launchpad";
4
+ import { SigningStargateClient, DeliverTxResponse } from "@cosmjs/stargate";
5
+ import { EncodeObject, GeneratedType, OfflineSigner, Registry } from "@cosmjs/proto-signing";
6
+ import { msgTypes } from './registry';
7
+ import { IgniteClient } from "../client"
8
+ import { MissingWalletError } from "../helpers"
9
+ import { Api } from "./rest";
10
+ import { MsgSubmitMatchReporterProposal } from "./types/cardchain/tx";
11
+ import { MsgRewokeCouncilRegistration } from "./types/cardchain/tx";
12
+ import { MsgAddStoryToCollection } from "./types/cardchain/tx";
13
+ import { MsgCreateCouncil } from "./types/cardchain/tx";
14
+ import { MsgCreateSellOffer } from "./types/cardchain/tx";
15
+ import { MsgSetUserBiography } from "./types/cardchain/tx";
16
+ import { MsgRemoveCardFromCollection } from "./types/cardchain/tx";
17
+ import { MsgBuyCard } from "./types/cardchain/tx";
18
+ import { MsgSetUserWebsite } from "./types/cardchain/tx";
19
+ import { MsgDonateToCard } from "./types/cardchain/tx";
20
+ import { MsgCommitCouncilResponse } from "./types/cardchain/tx";
21
+ import { MsgReportMatch } from "./types/cardchain/tx";
22
+ import { MsgChangeArtist } from "./types/cardchain/tx";
23
+ import { MsgCreateuser } from "./types/cardchain/tx";
24
+ import { MsgBuyCardScheme } from "./types/cardchain/tx";
25
+ import { MsgOpenBoosterPack } from "./types/cardchain/tx";
26
+ import { MsgSetProfileCard } from "./types/cardchain/tx";
27
+ import { MsgFinalizeCollection } from "./types/cardchain/tx";
28
+ import { MsgRemoveSellOffer } from "./types/cardchain/tx";
29
+ import { MsgSetCollectionStoryWriter } from "./types/cardchain/tx";
30
+ import { MsgApointMatchReporter } from "./types/cardchain/tx";
31
+ import { MsgSaveCardContent } from "./types/cardchain/tx";
32
+ import { MsgRevealCouncilResponse } from "./types/cardchain/tx";
33
+ import { MsgSetCollectionArtist } from "./types/cardchain/tx";
34
+ import { MsgRegisterForCouncil } from "./types/cardchain/tx";
35
+ import { MsgSetCardRarity } from "./types/cardchain/tx";
36
+ import { MsgAddArtwork } from "./types/cardchain/tx";
37
+ import { MsgSubmitCollectionProposal } from "./types/cardchain/tx";
38
+ import { MsgTransferBoosterPack } from "./types/cardchain/tx";
39
+ import { MsgVoteCard } from "./types/cardchain/tx";
40
+ import { MsgRemoveContributorFromCollection } from "./types/cardchain/tx";
41
+ import { MsgConfirmMatch } from "./types/cardchain/tx";
42
+ import { MsgCreateCollection } from "./types/cardchain/tx";
43
+ import { MsgAddContributorToCollection } from "./types/cardchain/tx";
44
+ import { MsgRestartCouncil } from "./types/cardchain/tx";
45
+ import { MsgSubmitCopyrightProposal } from "./types/cardchain/tx";
46
+ import { MsgAddCardToCollection } from "./types/cardchain/tx";
47
+ import { MsgAddArtworkToCollection } from "./types/cardchain/tx";
48
+ import { MsgBuyCollection } from "./types/cardchain/tx";
49
+ import { MsgTransferCard } from "./types/cardchain/tx";
50
+
51
+ import { Card as typeCard} from "./types"
52
+ import { Collection as typeCollection} from "./types"
53
+ import { CollectionProposal as typeCollectionProposal} from "./types"
54
+ import { CopyrightProposal as typeCopyrightProposal} from "./types"
55
+ import { WrapClearResponse as typeWrapClearResponse} from "./types"
56
+ import { WrapHashResponse as typeWrapHashResponse} from "./types"
57
+ import { Image as typeImage} from "./types"
58
+ import { MatchPlayer as typeMatchPlayer} from "./types"
59
+ import { MatchReporterProposal as typeMatchReporterProposal} from "./types"
60
+ import { Num as typeNum} from "./types"
61
+ import { Params as typeParams} from "./types"
62
+ import { IgnoreMatches as typeIgnoreMatches} from "./types"
63
+ import { IgnoreSellOffers as typeIgnoreSellOffers} from "./types"
64
+ import { QueryQServerResponse as typeQueryQServerResponse} from "./types"
65
+ import { RunningAverage as typeRunningAverage} from "./types"
66
+ import { BoosterPack as typeBoosterPack} from "./types"
67
+ import { AirDrops as typeAirDrops} from "./types"
68
+ import { VoteRight as typeVoteRight} from "./types"
69
+ import { VotingResult as typeVotingResult} from "./types"
70
+ import { VotingResults as typeVotingResults} from "./types"
71
+
72
+ 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 };
73
+
74
+ type sendMsgSubmitMatchReporterProposalParams = {
75
+ value: MsgSubmitMatchReporterProposal,
76
+ fee?: StdFee,
77
+ memo?: string
78
+ };
79
+
80
+ type sendMsgRewokeCouncilRegistrationParams = {
81
+ value: MsgRewokeCouncilRegistration,
82
+ fee?: StdFee,
83
+ memo?: string
84
+ };
85
+
86
+ type sendMsgAddStoryToCollectionParams = {
87
+ value: MsgAddStoryToCollection,
88
+ fee?: StdFee,
89
+ memo?: string
90
+ };
91
+
92
+ type sendMsgCreateCouncilParams = {
93
+ value: MsgCreateCouncil,
94
+ fee?: StdFee,
95
+ memo?: string
96
+ };
97
+
98
+ type sendMsgCreateSellOfferParams = {
99
+ value: MsgCreateSellOffer,
100
+ fee?: StdFee,
101
+ memo?: string
102
+ };
103
+
104
+ type sendMsgSetUserBiographyParams = {
105
+ value: MsgSetUserBiography,
106
+ fee?: StdFee,
107
+ memo?: string
108
+ };
109
+
110
+ type sendMsgRemoveCardFromCollectionParams = {
111
+ value: MsgRemoveCardFromCollection,
112
+ fee?: StdFee,
113
+ memo?: string
114
+ };
115
+
116
+ type sendMsgBuyCardParams = {
117
+ value: MsgBuyCard,
118
+ fee?: StdFee,
119
+ memo?: string
120
+ };
121
+
122
+ type sendMsgSetUserWebsiteParams = {
123
+ value: MsgSetUserWebsite,
124
+ fee?: StdFee,
125
+ memo?: string
126
+ };
127
+
128
+ type sendMsgDonateToCardParams = {
129
+ value: MsgDonateToCard,
130
+ fee?: StdFee,
131
+ memo?: string
132
+ };
133
+
134
+ type sendMsgCommitCouncilResponseParams = {
135
+ value: MsgCommitCouncilResponse,
136
+ fee?: StdFee,
137
+ memo?: string
138
+ };
139
+
140
+ type sendMsgReportMatchParams = {
141
+ value: MsgReportMatch,
142
+ fee?: StdFee,
143
+ memo?: string
144
+ };
145
+
146
+ type sendMsgChangeArtistParams = {
147
+ value: MsgChangeArtist,
148
+ fee?: StdFee,
149
+ memo?: string
150
+ };
151
+
152
+ type sendMsgCreateuserParams = {
153
+ value: MsgCreateuser,
154
+ fee?: StdFee,
155
+ memo?: string
156
+ };
157
+
158
+ type sendMsgBuyCardSchemeParams = {
159
+ value: MsgBuyCardScheme,
160
+ fee?: StdFee,
161
+ memo?: string
162
+ };
163
+
164
+ type sendMsgOpenBoosterPackParams = {
165
+ value: MsgOpenBoosterPack,
166
+ fee?: StdFee,
167
+ memo?: string
168
+ };
169
+
170
+ type sendMsgSetProfileCardParams = {
171
+ value: MsgSetProfileCard,
172
+ fee?: StdFee,
173
+ memo?: string
174
+ };
175
+
176
+ type sendMsgFinalizeCollectionParams = {
177
+ value: MsgFinalizeCollection,
178
+ fee?: StdFee,
179
+ memo?: string
180
+ };
181
+
182
+ type sendMsgRemoveSellOfferParams = {
183
+ value: MsgRemoveSellOffer,
184
+ fee?: StdFee,
185
+ memo?: string
186
+ };
187
+
188
+ type sendMsgSetCollectionStoryWriterParams = {
189
+ value: MsgSetCollectionStoryWriter,
190
+ fee?: StdFee,
191
+ memo?: string
192
+ };
193
+
194
+ type sendMsgApointMatchReporterParams = {
195
+ value: MsgApointMatchReporter,
196
+ fee?: StdFee,
197
+ memo?: string
198
+ };
199
+
200
+ type sendMsgSaveCardContentParams = {
201
+ value: MsgSaveCardContent,
202
+ fee?: StdFee,
203
+ memo?: string
204
+ };
205
+
206
+ type sendMsgRevealCouncilResponseParams = {
207
+ value: MsgRevealCouncilResponse,
208
+ fee?: StdFee,
209
+ memo?: string
210
+ };
211
+
212
+ type sendMsgSetCollectionArtistParams = {
213
+ value: MsgSetCollectionArtist,
214
+ fee?: StdFee,
215
+ memo?: string
216
+ };
217
+
218
+ type sendMsgRegisterForCouncilParams = {
219
+ value: MsgRegisterForCouncil,
220
+ fee?: StdFee,
221
+ memo?: string
222
+ };
223
+
224
+ type sendMsgSetCardRarityParams = {
225
+ value: MsgSetCardRarity,
226
+ fee?: StdFee,
227
+ memo?: string
228
+ };
229
+
230
+ type sendMsgAddArtworkParams = {
231
+ value: MsgAddArtwork,
232
+ fee?: StdFee,
233
+ memo?: string
234
+ };
235
+
236
+ type sendMsgSubmitCollectionProposalParams = {
237
+ value: MsgSubmitCollectionProposal,
238
+ fee?: StdFee,
239
+ memo?: string
240
+ };
241
+
242
+ type sendMsgTransferBoosterPackParams = {
243
+ value: MsgTransferBoosterPack,
244
+ fee?: StdFee,
245
+ memo?: string
246
+ };
247
+
248
+ type sendMsgVoteCardParams = {
249
+ value: MsgVoteCard,
250
+ fee?: StdFee,
251
+ memo?: string
252
+ };
253
+
254
+ type sendMsgRemoveContributorFromCollectionParams = {
255
+ value: MsgRemoveContributorFromCollection,
256
+ fee?: StdFee,
257
+ memo?: string
258
+ };
259
+
260
+ type sendMsgConfirmMatchParams = {
261
+ value: MsgConfirmMatch,
262
+ fee?: StdFee,
263
+ memo?: string
264
+ };
265
+
266
+ type sendMsgCreateCollectionParams = {
267
+ value: MsgCreateCollection,
268
+ fee?: StdFee,
269
+ memo?: string
270
+ };
271
+
272
+ type sendMsgAddContributorToCollectionParams = {
273
+ value: MsgAddContributorToCollection,
274
+ fee?: StdFee,
275
+ memo?: string
276
+ };
277
+
278
+ type sendMsgRestartCouncilParams = {
279
+ value: MsgRestartCouncil,
280
+ fee?: StdFee,
281
+ memo?: string
282
+ };
283
+
284
+ type sendMsgSubmitCopyrightProposalParams = {
285
+ value: MsgSubmitCopyrightProposal,
286
+ fee?: StdFee,
287
+ memo?: string
288
+ };
289
+
290
+ type sendMsgAddCardToCollectionParams = {
291
+ value: MsgAddCardToCollection,
292
+ fee?: StdFee,
293
+ memo?: string
294
+ };
295
+
296
+ type sendMsgAddArtworkToCollectionParams = {
297
+ value: MsgAddArtworkToCollection,
298
+ fee?: StdFee,
299
+ memo?: string
300
+ };
301
+
302
+ type sendMsgBuyCollectionParams = {
303
+ value: MsgBuyCollection,
304
+ fee?: StdFee,
305
+ memo?: string
306
+ };
307
+
308
+ type sendMsgTransferCardParams = {
309
+ value: MsgTransferCard,
310
+ fee?: StdFee,
311
+ memo?: string
312
+ };
313
+
314
+
315
+ type msgSubmitMatchReporterProposalParams = {
316
+ value: MsgSubmitMatchReporterProposal,
317
+ };
318
+
319
+ type msgRewokeCouncilRegistrationParams = {
320
+ value: MsgRewokeCouncilRegistration,
321
+ };
322
+
323
+ type msgAddStoryToCollectionParams = {
324
+ value: MsgAddStoryToCollection,
325
+ };
326
+
327
+ type msgCreateCouncilParams = {
328
+ value: MsgCreateCouncil,
329
+ };
330
+
331
+ type msgCreateSellOfferParams = {
332
+ value: MsgCreateSellOffer,
333
+ };
334
+
335
+ type msgSetUserBiographyParams = {
336
+ value: MsgSetUserBiography,
337
+ };
338
+
339
+ type msgRemoveCardFromCollectionParams = {
340
+ value: MsgRemoveCardFromCollection,
341
+ };
342
+
343
+ type msgBuyCardParams = {
344
+ value: MsgBuyCard,
345
+ };
346
+
347
+ type msgSetUserWebsiteParams = {
348
+ value: MsgSetUserWebsite,
349
+ };
350
+
351
+ type msgDonateToCardParams = {
352
+ value: MsgDonateToCard,
353
+ };
354
+
355
+ type msgCommitCouncilResponseParams = {
356
+ value: MsgCommitCouncilResponse,
357
+ };
358
+
359
+ type msgReportMatchParams = {
360
+ value: MsgReportMatch,
361
+ };
362
+
363
+ type msgChangeArtistParams = {
364
+ value: MsgChangeArtist,
365
+ };
366
+
367
+ type msgCreateuserParams = {
368
+ value: MsgCreateuser,
369
+ };
370
+
371
+ type msgBuyCardSchemeParams = {
372
+ value: MsgBuyCardScheme,
373
+ };
374
+
375
+ type msgOpenBoosterPackParams = {
376
+ value: MsgOpenBoosterPack,
377
+ };
378
+
379
+ type msgSetProfileCardParams = {
380
+ value: MsgSetProfileCard,
381
+ };
382
+
383
+ type msgFinalizeCollectionParams = {
384
+ value: MsgFinalizeCollection,
385
+ };
386
+
387
+ type msgRemoveSellOfferParams = {
388
+ value: MsgRemoveSellOffer,
389
+ };
390
+
391
+ type msgSetCollectionStoryWriterParams = {
392
+ value: MsgSetCollectionStoryWriter,
393
+ };
394
+
395
+ type msgApointMatchReporterParams = {
396
+ value: MsgApointMatchReporter,
397
+ };
398
+
399
+ type msgSaveCardContentParams = {
400
+ value: MsgSaveCardContent,
401
+ };
402
+
403
+ type msgRevealCouncilResponseParams = {
404
+ value: MsgRevealCouncilResponse,
405
+ };
406
+
407
+ type msgSetCollectionArtistParams = {
408
+ value: MsgSetCollectionArtist,
409
+ };
410
+
411
+ type msgRegisterForCouncilParams = {
412
+ value: MsgRegisterForCouncil,
413
+ };
414
+
415
+ type msgSetCardRarityParams = {
416
+ value: MsgSetCardRarity,
417
+ };
418
+
419
+ type msgAddArtworkParams = {
420
+ value: MsgAddArtwork,
421
+ };
422
+
423
+ type msgSubmitCollectionProposalParams = {
424
+ value: MsgSubmitCollectionProposal,
425
+ };
426
+
427
+ type msgTransferBoosterPackParams = {
428
+ value: MsgTransferBoosterPack,
429
+ };
430
+
431
+ type msgVoteCardParams = {
432
+ value: MsgVoteCard,
433
+ };
434
+
435
+ type msgRemoveContributorFromCollectionParams = {
436
+ value: MsgRemoveContributorFromCollection,
437
+ };
438
+
439
+ type msgConfirmMatchParams = {
440
+ value: MsgConfirmMatch,
441
+ };
442
+
443
+ type msgCreateCollectionParams = {
444
+ value: MsgCreateCollection,
445
+ };
446
+
447
+ type msgAddContributorToCollectionParams = {
448
+ value: MsgAddContributorToCollection,
449
+ };
450
+
451
+ type msgRestartCouncilParams = {
452
+ value: MsgRestartCouncil,
453
+ };
454
+
455
+ type msgSubmitCopyrightProposalParams = {
456
+ value: MsgSubmitCopyrightProposal,
457
+ };
458
+
459
+ type msgAddCardToCollectionParams = {
460
+ value: MsgAddCardToCollection,
461
+ };
462
+
463
+ type msgAddArtworkToCollectionParams = {
464
+ value: MsgAddArtworkToCollection,
465
+ };
466
+
467
+ type msgBuyCollectionParams = {
468
+ value: MsgBuyCollection,
469
+ };
470
+
471
+ type msgTransferCardParams = {
472
+ value: MsgTransferCard,
473
+ };
474
+
475
+
476
+ export const registry = new Registry(msgTypes);
477
+
478
+ type Field = {
479
+ name: string;
480
+ type: unknown;
481
+ }
482
+ function getStructure(template) {
483
+ const structure: {fields: Field[]} = { fields: [] }
484
+ for (let [key, value] of Object.entries(template)) {
485
+ let field = { name: key, type: typeof value }
486
+ structure.fields.push(field)
487
+ }
488
+ return structure
489
+ }
490
+ const defaultFee = {
491
+ amount: [],
492
+ gas: "200000",
493
+ };
494
+
495
+ interface TxClientOptions {
496
+ addr: string
497
+ prefix: string
498
+ signer?: OfflineSigner
499
+ }
500
+
501
+ export const txClient = ({ signer, prefix, addr }: TxClientOptions = { addr: "http://localhost:26657", prefix: "cosmos" }) => {
502
+
503
+ return {
504
+
505
+ async sendMsgSubmitMatchReporterProposal({ value, fee, memo }: sendMsgSubmitMatchReporterProposalParams): Promise<DeliverTxResponse> {
506
+ if (!signer) {
507
+ throw new Error('TxClient:sendMsgSubmitMatchReporterProposal: Unable to sign Tx. Signer is not present.')
508
+ }
509
+ try {
510
+ const { address } = (await signer.getAccounts())[0];
511
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
512
+ let msg = this.msgSubmitMatchReporterProposal({ value: MsgSubmitMatchReporterProposal.fromPartial(value) })
513
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
514
+ } catch (e: any) {
515
+ throw new Error('TxClient:sendMsgSubmitMatchReporterProposal: Could not broadcast Tx: '+ e.message)
516
+ }
517
+ },
518
+
519
+ async sendMsgRewokeCouncilRegistration({ value, fee, memo }: sendMsgRewokeCouncilRegistrationParams): Promise<DeliverTxResponse> {
520
+ if (!signer) {
521
+ throw new Error('TxClient:sendMsgRewokeCouncilRegistration: Unable to sign Tx. Signer is not present.')
522
+ }
523
+ try {
524
+ const { address } = (await signer.getAccounts())[0];
525
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
526
+ let msg = this.msgRewokeCouncilRegistration({ value: MsgRewokeCouncilRegistration.fromPartial(value) })
527
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
528
+ } catch (e: any) {
529
+ throw new Error('TxClient:sendMsgRewokeCouncilRegistration: Could not broadcast Tx: '+ e.message)
530
+ }
531
+ },
532
+
533
+ async sendMsgAddStoryToCollection({ value, fee, memo }: sendMsgAddStoryToCollectionParams): Promise<DeliverTxResponse> {
534
+ if (!signer) {
535
+ throw new Error('TxClient:sendMsgAddStoryToCollection: Unable to sign Tx. Signer is not present.')
536
+ }
537
+ try {
538
+ const { address } = (await signer.getAccounts())[0];
539
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
540
+ let msg = this.msgAddStoryToCollection({ value: MsgAddStoryToCollection.fromPartial(value) })
541
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
542
+ } catch (e: any) {
543
+ throw new Error('TxClient:sendMsgAddStoryToCollection: Could not broadcast Tx: '+ e.message)
544
+ }
545
+ },
546
+
547
+ async sendMsgCreateCouncil({ value, fee, memo }: sendMsgCreateCouncilParams): Promise<DeliverTxResponse> {
548
+ if (!signer) {
549
+ throw new Error('TxClient:sendMsgCreateCouncil: Unable to sign Tx. Signer is not present.')
550
+ }
551
+ try {
552
+ const { address } = (await signer.getAccounts())[0];
553
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
554
+ let msg = this.msgCreateCouncil({ value: MsgCreateCouncil.fromPartial(value) })
555
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
556
+ } catch (e: any) {
557
+ throw new Error('TxClient:sendMsgCreateCouncil: Could not broadcast Tx: '+ e.message)
558
+ }
559
+ },
560
+
561
+ async sendMsgCreateSellOffer({ value, fee, memo }: sendMsgCreateSellOfferParams): Promise<DeliverTxResponse> {
562
+ if (!signer) {
563
+ throw new Error('TxClient:sendMsgCreateSellOffer: Unable to sign Tx. Signer is not present.')
564
+ }
565
+ try {
566
+ const { address } = (await signer.getAccounts())[0];
567
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
568
+ let msg = this.msgCreateSellOffer({ value: MsgCreateSellOffer.fromPartial(value) })
569
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
570
+ } catch (e: any) {
571
+ throw new Error('TxClient:sendMsgCreateSellOffer: Could not broadcast Tx: '+ e.message)
572
+ }
573
+ },
574
+
575
+ async sendMsgSetUserBiography({ value, fee, memo }: sendMsgSetUserBiographyParams): Promise<DeliverTxResponse> {
576
+ if (!signer) {
577
+ throw new Error('TxClient:sendMsgSetUserBiography: Unable to sign Tx. Signer is not present.')
578
+ }
579
+ try {
580
+ const { address } = (await signer.getAccounts())[0];
581
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
582
+ let msg = this.msgSetUserBiography({ value: MsgSetUserBiography.fromPartial(value) })
583
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
584
+ } catch (e: any) {
585
+ throw new Error('TxClient:sendMsgSetUserBiography: Could not broadcast Tx: '+ e.message)
586
+ }
587
+ },
588
+
589
+ async sendMsgRemoveCardFromCollection({ value, fee, memo }: sendMsgRemoveCardFromCollectionParams): Promise<DeliverTxResponse> {
590
+ if (!signer) {
591
+ throw new Error('TxClient:sendMsgRemoveCardFromCollection: Unable to sign Tx. Signer is not present.')
592
+ }
593
+ try {
594
+ const { address } = (await signer.getAccounts())[0];
595
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
596
+ let msg = this.msgRemoveCardFromCollection({ value: MsgRemoveCardFromCollection.fromPartial(value) })
597
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
598
+ } catch (e: any) {
599
+ throw new Error('TxClient:sendMsgRemoveCardFromCollection: Could not broadcast Tx: '+ e.message)
600
+ }
601
+ },
602
+
603
+ async sendMsgBuyCard({ value, fee, memo }: sendMsgBuyCardParams): Promise<DeliverTxResponse> {
604
+ if (!signer) {
605
+ throw new Error('TxClient:sendMsgBuyCard: Unable to sign Tx. Signer is not present.')
606
+ }
607
+ try {
608
+ const { address } = (await signer.getAccounts())[0];
609
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
610
+ let msg = this.msgBuyCard({ value: MsgBuyCard.fromPartial(value) })
611
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
612
+ } catch (e: any) {
613
+ throw new Error('TxClient:sendMsgBuyCard: Could not broadcast Tx: '+ e.message)
614
+ }
615
+ },
616
+
617
+ async sendMsgSetUserWebsite({ value, fee, memo }: sendMsgSetUserWebsiteParams): Promise<DeliverTxResponse> {
618
+ if (!signer) {
619
+ throw new Error('TxClient:sendMsgSetUserWebsite: Unable to sign Tx. Signer is not present.')
620
+ }
621
+ try {
622
+ const { address } = (await signer.getAccounts())[0];
623
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
624
+ let msg = this.msgSetUserWebsite({ value: MsgSetUserWebsite.fromPartial(value) })
625
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
626
+ } catch (e: any) {
627
+ throw new Error('TxClient:sendMsgSetUserWebsite: Could not broadcast Tx: '+ e.message)
628
+ }
629
+ },
630
+
631
+ async sendMsgDonateToCard({ value, fee, memo }: sendMsgDonateToCardParams): Promise<DeliverTxResponse> {
632
+ if (!signer) {
633
+ throw new Error('TxClient:sendMsgDonateToCard: Unable to sign Tx. Signer is not present.')
634
+ }
635
+ try {
636
+ const { address } = (await signer.getAccounts())[0];
637
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
638
+ let msg = this.msgDonateToCard({ value: MsgDonateToCard.fromPartial(value) })
639
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
640
+ } catch (e: any) {
641
+ throw new Error('TxClient:sendMsgDonateToCard: Could not broadcast Tx: '+ e.message)
642
+ }
643
+ },
644
+
645
+ async sendMsgCommitCouncilResponse({ value, fee, memo }: sendMsgCommitCouncilResponseParams): Promise<DeliverTxResponse> {
646
+ if (!signer) {
647
+ throw new Error('TxClient:sendMsgCommitCouncilResponse: Unable to sign Tx. Signer is not present.')
648
+ }
649
+ try {
650
+ const { address } = (await signer.getAccounts())[0];
651
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
652
+ let msg = this.msgCommitCouncilResponse({ value: MsgCommitCouncilResponse.fromPartial(value) })
653
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
654
+ } catch (e: any) {
655
+ throw new Error('TxClient:sendMsgCommitCouncilResponse: Could not broadcast Tx: '+ e.message)
656
+ }
657
+ },
658
+
659
+ async sendMsgReportMatch({ value, fee, memo }: sendMsgReportMatchParams): Promise<DeliverTxResponse> {
660
+ if (!signer) {
661
+ throw new Error('TxClient:sendMsgReportMatch: Unable to sign Tx. Signer is not present.')
662
+ }
663
+ try {
664
+ const { address } = (await signer.getAccounts())[0];
665
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
666
+ let msg = this.msgReportMatch({ value: MsgReportMatch.fromPartial(value) })
667
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
668
+ } catch (e: any) {
669
+ throw new Error('TxClient:sendMsgReportMatch: Could not broadcast Tx: '+ e.message)
670
+ }
671
+ },
672
+
673
+ async sendMsgChangeArtist({ value, fee, memo }: sendMsgChangeArtistParams): Promise<DeliverTxResponse> {
674
+ if (!signer) {
675
+ throw new Error('TxClient:sendMsgChangeArtist: Unable to sign Tx. Signer is not present.')
676
+ }
677
+ try {
678
+ const { address } = (await signer.getAccounts())[0];
679
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
680
+ let msg = this.msgChangeArtist({ value: MsgChangeArtist.fromPartial(value) })
681
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
682
+ } catch (e: any) {
683
+ throw new Error('TxClient:sendMsgChangeArtist: Could not broadcast Tx: '+ e.message)
684
+ }
685
+ },
686
+
687
+ async sendMsgCreateuser({ value, fee, memo }: sendMsgCreateuserParams): Promise<DeliverTxResponse> {
688
+ if (!signer) {
689
+ throw new Error('TxClient:sendMsgCreateuser: Unable to sign Tx. Signer is not present.')
690
+ }
691
+ try {
692
+ const { address } = (await signer.getAccounts())[0];
693
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
694
+ let msg = this.msgCreateuser({ value: MsgCreateuser.fromPartial(value) })
695
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
696
+ } catch (e: any) {
697
+ throw new Error('TxClient:sendMsgCreateuser: Could not broadcast Tx: '+ e.message)
698
+ }
699
+ },
700
+
701
+ async sendMsgBuyCardScheme({ value, fee, memo }: sendMsgBuyCardSchemeParams): Promise<DeliverTxResponse> {
702
+ if (!signer) {
703
+ throw new Error('TxClient:sendMsgBuyCardScheme: Unable to sign Tx. Signer is not present.')
704
+ }
705
+ try {
706
+ const { address } = (await signer.getAccounts())[0];
707
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
708
+ let msg = this.msgBuyCardScheme({ value: MsgBuyCardScheme.fromPartial(value) })
709
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
710
+ } catch (e: any) {
711
+ throw new Error('TxClient:sendMsgBuyCardScheme: Could not broadcast Tx: '+ e.message)
712
+ }
713
+ },
714
+
715
+ async sendMsgOpenBoosterPack({ value, fee, memo }: sendMsgOpenBoosterPackParams): Promise<DeliverTxResponse> {
716
+ if (!signer) {
717
+ throw new Error('TxClient:sendMsgOpenBoosterPack: Unable to sign Tx. Signer is not present.')
718
+ }
719
+ try {
720
+ const { address } = (await signer.getAccounts())[0];
721
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
722
+ let msg = this.msgOpenBoosterPack({ value: MsgOpenBoosterPack.fromPartial(value) })
723
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
724
+ } catch (e: any) {
725
+ throw new Error('TxClient:sendMsgOpenBoosterPack: Could not broadcast Tx: '+ e.message)
726
+ }
727
+ },
728
+
729
+ async sendMsgSetProfileCard({ value, fee, memo }: sendMsgSetProfileCardParams): Promise<DeliverTxResponse> {
730
+ if (!signer) {
731
+ throw new Error('TxClient:sendMsgSetProfileCard: Unable to sign Tx. Signer is not present.')
732
+ }
733
+ try {
734
+ const { address } = (await signer.getAccounts())[0];
735
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
736
+ let msg = this.msgSetProfileCard({ value: MsgSetProfileCard.fromPartial(value) })
737
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
738
+ } catch (e: any) {
739
+ throw new Error('TxClient:sendMsgSetProfileCard: Could not broadcast Tx: '+ e.message)
740
+ }
741
+ },
742
+
743
+ async sendMsgFinalizeCollection({ value, fee, memo }: sendMsgFinalizeCollectionParams): Promise<DeliverTxResponse> {
744
+ if (!signer) {
745
+ throw new Error('TxClient:sendMsgFinalizeCollection: Unable to sign Tx. Signer is not present.')
746
+ }
747
+ try {
748
+ const { address } = (await signer.getAccounts())[0];
749
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
750
+ let msg = this.msgFinalizeCollection({ value: MsgFinalizeCollection.fromPartial(value) })
751
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
752
+ } catch (e: any) {
753
+ throw new Error('TxClient:sendMsgFinalizeCollection: Could not broadcast Tx: '+ e.message)
754
+ }
755
+ },
756
+
757
+ async sendMsgRemoveSellOffer({ value, fee, memo }: sendMsgRemoveSellOfferParams): Promise<DeliverTxResponse> {
758
+ if (!signer) {
759
+ throw new Error('TxClient:sendMsgRemoveSellOffer: Unable to sign Tx. Signer is not present.')
760
+ }
761
+ try {
762
+ const { address } = (await signer.getAccounts())[0];
763
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
764
+ let msg = this.msgRemoveSellOffer({ value: MsgRemoveSellOffer.fromPartial(value) })
765
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
766
+ } catch (e: any) {
767
+ throw new Error('TxClient:sendMsgRemoveSellOffer: Could not broadcast Tx: '+ e.message)
768
+ }
769
+ },
770
+
771
+ async sendMsgSetCollectionStoryWriter({ value, fee, memo }: sendMsgSetCollectionStoryWriterParams): Promise<DeliverTxResponse> {
772
+ if (!signer) {
773
+ throw new Error('TxClient:sendMsgSetCollectionStoryWriter: Unable to sign Tx. Signer is not present.')
774
+ }
775
+ try {
776
+ const { address } = (await signer.getAccounts())[0];
777
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
778
+ let msg = this.msgSetCollectionStoryWriter({ value: MsgSetCollectionStoryWriter.fromPartial(value) })
779
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
780
+ } catch (e: any) {
781
+ throw new Error('TxClient:sendMsgSetCollectionStoryWriter: Could not broadcast Tx: '+ e.message)
782
+ }
783
+ },
784
+
785
+ async sendMsgApointMatchReporter({ value, fee, memo }: sendMsgApointMatchReporterParams): Promise<DeliverTxResponse> {
786
+ if (!signer) {
787
+ throw new Error('TxClient:sendMsgApointMatchReporter: Unable to sign Tx. Signer is not present.')
788
+ }
789
+ try {
790
+ const { address } = (await signer.getAccounts())[0];
791
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
792
+ let msg = this.msgApointMatchReporter({ value: MsgApointMatchReporter.fromPartial(value) })
793
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
794
+ } catch (e: any) {
795
+ throw new Error('TxClient:sendMsgApointMatchReporter: Could not broadcast Tx: '+ e.message)
796
+ }
797
+ },
798
+
799
+ async sendMsgSaveCardContent({ value, fee, memo }: sendMsgSaveCardContentParams): Promise<DeliverTxResponse> {
800
+ if (!signer) {
801
+ throw new Error('TxClient:sendMsgSaveCardContent: Unable to sign Tx. Signer is not present.')
802
+ }
803
+ try {
804
+ const { address } = (await signer.getAccounts())[0];
805
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
806
+ let msg = this.msgSaveCardContent({ value: MsgSaveCardContent.fromPartial(value) })
807
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
808
+ } catch (e: any) {
809
+ throw new Error('TxClient:sendMsgSaveCardContent: Could not broadcast Tx: '+ e.message)
810
+ }
811
+ },
812
+
813
+ async sendMsgRevealCouncilResponse({ value, fee, memo }: sendMsgRevealCouncilResponseParams): Promise<DeliverTxResponse> {
814
+ if (!signer) {
815
+ throw new Error('TxClient:sendMsgRevealCouncilResponse: Unable to sign Tx. Signer is not present.')
816
+ }
817
+ try {
818
+ const { address } = (await signer.getAccounts())[0];
819
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
820
+ let msg = this.msgRevealCouncilResponse({ value: MsgRevealCouncilResponse.fromPartial(value) })
821
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
822
+ } catch (e: any) {
823
+ throw new Error('TxClient:sendMsgRevealCouncilResponse: Could not broadcast Tx: '+ e.message)
824
+ }
825
+ },
826
+
827
+ async sendMsgSetCollectionArtist({ value, fee, memo }: sendMsgSetCollectionArtistParams): Promise<DeliverTxResponse> {
828
+ if (!signer) {
829
+ throw new Error('TxClient:sendMsgSetCollectionArtist: Unable to sign Tx. Signer is not present.')
830
+ }
831
+ try {
832
+ const { address } = (await signer.getAccounts())[0];
833
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
834
+ let msg = this.msgSetCollectionArtist({ value: MsgSetCollectionArtist.fromPartial(value) })
835
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
836
+ } catch (e: any) {
837
+ throw new Error('TxClient:sendMsgSetCollectionArtist: Could not broadcast Tx: '+ e.message)
838
+ }
839
+ },
840
+
841
+ async sendMsgRegisterForCouncil({ value, fee, memo }: sendMsgRegisterForCouncilParams): Promise<DeliverTxResponse> {
842
+ if (!signer) {
843
+ throw new Error('TxClient:sendMsgRegisterForCouncil: Unable to sign Tx. Signer is not present.')
844
+ }
845
+ try {
846
+ const { address } = (await signer.getAccounts())[0];
847
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
848
+ let msg = this.msgRegisterForCouncil({ value: MsgRegisterForCouncil.fromPartial(value) })
849
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
850
+ } catch (e: any) {
851
+ throw new Error('TxClient:sendMsgRegisterForCouncil: Could not broadcast Tx: '+ e.message)
852
+ }
853
+ },
854
+
855
+ async sendMsgSetCardRarity({ value, fee, memo }: sendMsgSetCardRarityParams): Promise<DeliverTxResponse> {
856
+ if (!signer) {
857
+ throw new Error('TxClient:sendMsgSetCardRarity: Unable to sign Tx. Signer is not present.')
858
+ }
859
+ try {
860
+ const { address } = (await signer.getAccounts())[0];
861
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
862
+ let msg = this.msgSetCardRarity({ value: MsgSetCardRarity.fromPartial(value) })
863
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
864
+ } catch (e: any) {
865
+ throw new Error('TxClient:sendMsgSetCardRarity: Could not broadcast Tx: '+ e.message)
866
+ }
867
+ },
868
+
869
+ async sendMsgAddArtwork({ value, fee, memo }: sendMsgAddArtworkParams): Promise<DeliverTxResponse> {
870
+ if (!signer) {
871
+ throw new Error('TxClient:sendMsgAddArtwork: Unable to sign Tx. Signer is not present.')
872
+ }
873
+ try {
874
+ const { address } = (await signer.getAccounts())[0];
875
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
876
+ let msg = this.msgAddArtwork({ value: MsgAddArtwork.fromPartial(value) })
877
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
878
+ } catch (e: any) {
879
+ throw new Error('TxClient:sendMsgAddArtwork: Could not broadcast Tx: '+ e.message)
880
+ }
881
+ },
882
+
883
+ async sendMsgSubmitCollectionProposal({ value, fee, memo }: sendMsgSubmitCollectionProposalParams): Promise<DeliverTxResponse> {
884
+ if (!signer) {
885
+ throw new Error('TxClient:sendMsgSubmitCollectionProposal: Unable to sign Tx. Signer is not present.')
886
+ }
887
+ try {
888
+ const { address } = (await signer.getAccounts())[0];
889
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
890
+ let msg = this.msgSubmitCollectionProposal({ value: MsgSubmitCollectionProposal.fromPartial(value) })
891
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
892
+ } catch (e: any) {
893
+ throw new Error('TxClient:sendMsgSubmitCollectionProposal: Could not broadcast Tx: '+ e.message)
894
+ }
895
+ },
896
+
897
+ async sendMsgTransferBoosterPack({ value, fee, memo }: sendMsgTransferBoosterPackParams): Promise<DeliverTxResponse> {
898
+ if (!signer) {
899
+ throw new Error('TxClient:sendMsgTransferBoosterPack: Unable to sign Tx. Signer is not present.')
900
+ }
901
+ try {
902
+ const { address } = (await signer.getAccounts())[0];
903
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
904
+ let msg = this.msgTransferBoosterPack({ value: MsgTransferBoosterPack.fromPartial(value) })
905
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
906
+ } catch (e: any) {
907
+ throw new Error('TxClient:sendMsgTransferBoosterPack: Could not broadcast Tx: '+ e.message)
908
+ }
909
+ },
910
+
911
+ async sendMsgVoteCard({ value, fee, memo }: sendMsgVoteCardParams): Promise<DeliverTxResponse> {
912
+ if (!signer) {
913
+ throw new Error('TxClient:sendMsgVoteCard: Unable to sign Tx. Signer is not present.')
914
+ }
915
+ try {
916
+ const { address } = (await signer.getAccounts())[0];
917
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
918
+ let msg = this.msgVoteCard({ value: MsgVoteCard.fromPartial(value) })
919
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
920
+ } catch (e: any) {
921
+ throw new Error('TxClient:sendMsgVoteCard: Could not broadcast Tx: '+ e.message)
922
+ }
923
+ },
924
+
925
+ async sendMsgRemoveContributorFromCollection({ value, fee, memo }: sendMsgRemoveContributorFromCollectionParams): Promise<DeliverTxResponse> {
926
+ if (!signer) {
927
+ throw new Error('TxClient:sendMsgRemoveContributorFromCollection: Unable to sign Tx. Signer is not present.')
928
+ }
929
+ try {
930
+ const { address } = (await signer.getAccounts())[0];
931
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
932
+ let msg = this.msgRemoveContributorFromCollection({ value: MsgRemoveContributorFromCollection.fromPartial(value) })
933
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
934
+ } catch (e: any) {
935
+ throw new Error('TxClient:sendMsgRemoveContributorFromCollection: Could not broadcast Tx: '+ e.message)
936
+ }
937
+ },
938
+
939
+ async sendMsgConfirmMatch({ value, fee, memo }: sendMsgConfirmMatchParams): Promise<DeliverTxResponse> {
940
+ if (!signer) {
941
+ throw new Error('TxClient:sendMsgConfirmMatch: Unable to sign Tx. Signer is not present.')
942
+ }
943
+ try {
944
+ const { address } = (await signer.getAccounts())[0];
945
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
946
+ let msg = this.msgConfirmMatch({ value: MsgConfirmMatch.fromPartial(value) })
947
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
948
+ } catch (e: any) {
949
+ throw new Error('TxClient:sendMsgConfirmMatch: Could not broadcast Tx: '+ e.message)
950
+ }
951
+ },
952
+
953
+ async sendMsgCreateCollection({ value, fee, memo }: sendMsgCreateCollectionParams): Promise<DeliverTxResponse> {
954
+ if (!signer) {
955
+ throw new Error('TxClient:sendMsgCreateCollection: Unable to sign Tx. Signer is not present.')
956
+ }
957
+ try {
958
+ const { address } = (await signer.getAccounts())[0];
959
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
960
+ let msg = this.msgCreateCollection({ value: MsgCreateCollection.fromPartial(value) })
961
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
962
+ } catch (e: any) {
963
+ throw new Error('TxClient:sendMsgCreateCollection: Could not broadcast Tx: '+ e.message)
964
+ }
965
+ },
966
+
967
+ async sendMsgAddContributorToCollection({ value, fee, memo }: sendMsgAddContributorToCollectionParams): Promise<DeliverTxResponse> {
968
+ if (!signer) {
969
+ throw new Error('TxClient:sendMsgAddContributorToCollection: Unable to sign Tx. Signer is not present.')
970
+ }
971
+ try {
972
+ const { address } = (await signer.getAccounts())[0];
973
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
974
+ let msg = this.msgAddContributorToCollection({ value: MsgAddContributorToCollection.fromPartial(value) })
975
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
976
+ } catch (e: any) {
977
+ throw new Error('TxClient:sendMsgAddContributorToCollection: Could not broadcast Tx: '+ e.message)
978
+ }
979
+ },
980
+
981
+ async sendMsgRestartCouncil({ value, fee, memo }: sendMsgRestartCouncilParams): Promise<DeliverTxResponse> {
982
+ if (!signer) {
983
+ throw new Error('TxClient:sendMsgRestartCouncil: Unable to sign Tx. Signer is not present.')
984
+ }
985
+ try {
986
+ const { address } = (await signer.getAccounts())[0];
987
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
988
+ let msg = this.msgRestartCouncil({ value: MsgRestartCouncil.fromPartial(value) })
989
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
990
+ } catch (e: any) {
991
+ throw new Error('TxClient:sendMsgRestartCouncil: Could not broadcast Tx: '+ e.message)
992
+ }
993
+ },
994
+
995
+ async sendMsgSubmitCopyrightProposal({ value, fee, memo }: sendMsgSubmitCopyrightProposalParams): Promise<DeliverTxResponse> {
996
+ if (!signer) {
997
+ throw new Error('TxClient:sendMsgSubmitCopyrightProposal: Unable to sign Tx. Signer is not present.')
998
+ }
999
+ try {
1000
+ const { address } = (await signer.getAccounts())[0];
1001
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
1002
+ let msg = this.msgSubmitCopyrightProposal({ value: MsgSubmitCopyrightProposal.fromPartial(value) })
1003
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
1004
+ } catch (e: any) {
1005
+ throw new Error('TxClient:sendMsgSubmitCopyrightProposal: Could not broadcast Tx: '+ e.message)
1006
+ }
1007
+ },
1008
+
1009
+ async sendMsgAddCardToCollection({ value, fee, memo }: sendMsgAddCardToCollectionParams): Promise<DeliverTxResponse> {
1010
+ if (!signer) {
1011
+ throw new Error('TxClient:sendMsgAddCardToCollection: Unable to sign Tx. Signer is not present.')
1012
+ }
1013
+ try {
1014
+ const { address } = (await signer.getAccounts())[0];
1015
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
1016
+ let msg = this.msgAddCardToCollection({ value: MsgAddCardToCollection.fromPartial(value) })
1017
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
1018
+ } catch (e: any) {
1019
+ throw new Error('TxClient:sendMsgAddCardToCollection: Could not broadcast Tx: '+ e.message)
1020
+ }
1021
+ },
1022
+
1023
+ async sendMsgAddArtworkToCollection({ value, fee, memo }: sendMsgAddArtworkToCollectionParams): Promise<DeliverTxResponse> {
1024
+ if (!signer) {
1025
+ throw new Error('TxClient:sendMsgAddArtworkToCollection: Unable to sign Tx. Signer is not present.')
1026
+ }
1027
+ try {
1028
+ const { address } = (await signer.getAccounts())[0];
1029
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
1030
+ let msg = this.msgAddArtworkToCollection({ value: MsgAddArtworkToCollection.fromPartial(value) })
1031
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
1032
+ } catch (e: any) {
1033
+ throw new Error('TxClient:sendMsgAddArtworkToCollection: Could not broadcast Tx: '+ e.message)
1034
+ }
1035
+ },
1036
+
1037
+ async sendMsgBuyCollection({ value, fee, memo }: sendMsgBuyCollectionParams): Promise<DeliverTxResponse> {
1038
+ if (!signer) {
1039
+ throw new Error('TxClient:sendMsgBuyCollection: Unable to sign Tx. Signer is not present.')
1040
+ }
1041
+ try {
1042
+ const { address } = (await signer.getAccounts())[0];
1043
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
1044
+ let msg = this.msgBuyCollection({ value: MsgBuyCollection.fromPartial(value) })
1045
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
1046
+ } catch (e: any) {
1047
+ throw new Error('TxClient:sendMsgBuyCollection: Could not broadcast Tx: '+ e.message)
1048
+ }
1049
+ },
1050
+
1051
+ async sendMsgTransferCard({ value, fee, memo }: sendMsgTransferCardParams): Promise<DeliverTxResponse> {
1052
+ if (!signer) {
1053
+ throw new Error('TxClient:sendMsgTransferCard: Unable to sign Tx. Signer is not present.')
1054
+ }
1055
+ try {
1056
+ const { address } = (await signer.getAccounts())[0];
1057
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
1058
+ let msg = this.msgTransferCard({ value: MsgTransferCard.fromPartial(value) })
1059
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
1060
+ } catch (e: any) {
1061
+ throw new Error('TxClient:sendMsgTransferCard: Could not broadcast Tx: '+ e.message)
1062
+ }
1063
+ },
1064
+
1065
+
1066
+ msgSubmitMatchReporterProposal({ value }: msgSubmitMatchReporterProposalParams): EncodeObject {
1067
+ try {
1068
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSubmitMatchReporterProposal", value: MsgSubmitMatchReporterProposal.fromPartial( value ) }
1069
+ } catch (e: any) {
1070
+ throw new Error('TxClient:MsgSubmitMatchReporterProposal: Could not create message: ' + e.message)
1071
+ }
1072
+ },
1073
+
1074
+ msgRewokeCouncilRegistration({ value }: msgRewokeCouncilRegistrationParams): EncodeObject {
1075
+ try {
1076
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRewokeCouncilRegistration", value: MsgRewokeCouncilRegistration.fromPartial( value ) }
1077
+ } catch (e: any) {
1078
+ throw new Error('TxClient:MsgRewokeCouncilRegistration: Could not create message: ' + e.message)
1079
+ }
1080
+ },
1081
+
1082
+ msgAddStoryToCollection({ value }: msgAddStoryToCollectionParams): EncodeObject {
1083
+ try {
1084
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddStoryToCollection", value: MsgAddStoryToCollection.fromPartial( value ) }
1085
+ } catch (e: any) {
1086
+ throw new Error('TxClient:MsgAddStoryToCollection: Could not create message: ' + e.message)
1087
+ }
1088
+ },
1089
+
1090
+ msgCreateCouncil({ value }: msgCreateCouncilParams): EncodeObject {
1091
+ try {
1092
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateCouncil", value: MsgCreateCouncil.fromPartial( value ) }
1093
+ } catch (e: any) {
1094
+ throw new Error('TxClient:MsgCreateCouncil: Could not create message: ' + e.message)
1095
+ }
1096
+ },
1097
+
1098
+ msgCreateSellOffer({ value }: msgCreateSellOfferParams): EncodeObject {
1099
+ try {
1100
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateSellOffer", value: MsgCreateSellOffer.fromPartial( value ) }
1101
+ } catch (e: any) {
1102
+ throw new Error('TxClient:MsgCreateSellOffer: Could not create message: ' + e.message)
1103
+ }
1104
+ },
1105
+
1106
+ msgSetUserBiography({ value }: msgSetUserBiographyParams): EncodeObject {
1107
+ try {
1108
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetUserBiography", value: MsgSetUserBiography.fromPartial( value ) }
1109
+ } catch (e: any) {
1110
+ throw new Error('TxClient:MsgSetUserBiography: Could not create message: ' + e.message)
1111
+ }
1112
+ },
1113
+
1114
+ msgRemoveCardFromCollection({ value }: msgRemoveCardFromCollectionParams): EncodeObject {
1115
+ try {
1116
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRemoveCardFromCollection", value: MsgRemoveCardFromCollection.fromPartial( value ) }
1117
+ } catch (e: any) {
1118
+ throw new Error('TxClient:MsgRemoveCardFromCollection: Could not create message: ' + e.message)
1119
+ }
1120
+ },
1121
+
1122
+ msgBuyCard({ value }: msgBuyCardParams): EncodeObject {
1123
+ try {
1124
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgBuyCard", value: MsgBuyCard.fromPartial( value ) }
1125
+ } catch (e: any) {
1126
+ throw new Error('TxClient:MsgBuyCard: Could not create message: ' + e.message)
1127
+ }
1128
+ },
1129
+
1130
+ msgSetUserWebsite({ value }: msgSetUserWebsiteParams): EncodeObject {
1131
+ try {
1132
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetUserWebsite", value: MsgSetUserWebsite.fromPartial( value ) }
1133
+ } catch (e: any) {
1134
+ throw new Error('TxClient:MsgSetUserWebsite: Could not create message: ' + e.message)
1135
+ }
1136
+ },
1137
+
1138
+ msgDonateToCard({ value }: msgDonateToCardParams): EncodeObject {
1139
+ try {
1140
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgDonateToCard", value: MsgDonateToCard.fromPartial( value ) }
1141
+ } catch (e: any) {
1142
+ throw new Error('TxClient:MsgDonateToCard: Could not create message: ' + e.message)
1143
+ }
1144
+ },
1145
+
1146
+ msgCommitCouncilResponse({ value }: msgCommitCouncilResponseParams): EncodeObject {
1147
+ try {
1148
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCommitCouncilResponse", value: MsgCommitCouncilResponse.fromPartial( value ) }
1149
+ } catch (e: any) {
1150
+ throw new Error('TxClient:MsgCommitCouncilResponse: Could not create message: ' + e.message)
1151
+ }
1152
+ },
1153
+
1154
+ msgReportMatch({ value }: msgReportMatchParams): EncodeObject {
1155
+ try {
1156
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgReportMatch", value: MsgReportMatch.fromPartial( value ) }
1157
+ } catch (e: any) {
1158
+ throw new Error('TxClient:MsgReportMatch: Could not create message: ' + e.message)
1159
+ }
1160
+ },
1161
+
1162
+ msgChangeArtist({ value }: msgChangeArtistParams): EncodeObject {
1163
+ try {
1164
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgChangeArtist", value: MsgChangeArtist.fromPartial( value ) }
1165
+ } catch (e: any) {
1166
+ throw new Error('TxClient:MsgChangeArtist: Could not create message: ' + e.message)
1167
+ }
1168
+ },
1169
+
1170
+ msgCreateuser({ value }: msgCreateuserParams): EncodeObject {
1171
+ try {
1172
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateuser", value: MsgCreateuser.fromPartial( value ) }
1173
+ } catch (e: any) {
1174
+ throw new Error('TxClient:MsgCreateuser: Could not create message: ' + e.message)
1175
+ }
1176
+ },
1177
+
1178
+ msgBuyCardScheme({ value }: msgBuyCardSchemeParams): EncodeObject {
1179
+ try {
1180
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgBuyCardScheme", value: MsgBuyCardScheme.fromPartial( value ) }
1181
+ } catch (e: any) {
1182
+ throw new Error('TxClient:MsgBuyCardScheme: Could not create message: ' + e.message)
1183
+ }
1184
+ },
1185
+
1186
+ msgOpenBoosterPack({ value }: msgOpenBoosterPackParams): EncodeObject {
1187
+ try {
1188
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgOpenBoosterPack", value: MsgOpenBoosterPack.fromPartial( value ) }
1189
+ } catch (e: any) {
1190
+ throw new Error('TxClient:MsgOpenBoosterPack: Could not create message: ' + e.message)
1191
+ }
1192
+ },
1193
+
1194
+ msgSetProfileCard({ value }: msgSetProfileCardParams): EncodeObject {
1195
+ try {
1196
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetProfileCard", value: MsgSetProfileCard.fromPartial( value ) }
1197
+ } catch (e: any) {
1198
+ throw new Error('TxClient:MsgSetProfileCard: Could not create message: ' + e.message)
1199
+ }
1200
+ },
1201
+
1202
+ msgFinalizeCollection({ value }: msgFinalizeCollectionParams): EncodeObject {
1203
+ try {
1204
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgFinalizeCollection", value: MsgFinalizeCollection.fromPartial( value ) }
1205
+ } catch (e: any) {
1206
+ throw new Error('TxClient:MsgFinalizeCollection: Could not create message: ' + e.message)
1207
+ }
1208
+ },
1209
+
1210
+ msgRemoveSellOffer({ value }: msgRemoveSellOfferParams): EncodeObject {
1211
+ try {
1212
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRemoveSellOffer", value: MsgRemoveSellOffer.fromPartial( value ) }
1213
+ } catch (e: any) {
1214
+ throw new Error('TxClient:MsgRemoveSellOffer: Could not create message: ' + e.message)
1215
+ }
1216
+ },
1217
+
1218
+ msgSetCollectionStoryWriter({ value }: msgSetCollectionStoryWriterParams): EncodeObject {
1219
+ try {
1220
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetCollectionStoryWriter", value: MsgSetCollectionStoryWriter.fromPartial( value ) }
1221
+ } catch (e: any) {
1222
+ throw new Error('TxClient:MsgSetCollectionStoryWriter: Could not create message: ' + e.message)
1223
+ }
1224
+ },
1225
+
1226
+ msgApointMatchReporter({ value }: msgApointMatchReporterParams): EncodeObject {
1227
+ try {
1228
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgApointMatchReporter", value: MsgApointMatchReporter.fromPartial( value ) }
1229
+ } catch (e: any) {
1230
+ throw new Error('TxClient:MsgApointMatchReporter: Could not create message: ' + e.message)
1231
+ }
1232
+ },
1233
+
1234
+ msgSaveCardContent({ value }: msgSaveCardContentParams): EncodeObject {
1235
+ try {
1236
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSaveCardContent", value: MsgSaveCardContent.fromPartial( value ) }
1237
+ } catch (e: any) {
1238
+ throw new Error('TxClient:MsgSaveCardContent: Could not create message: ' + e.message)
1239
+ }
1240
+ },
1241
+
1242
+ msgRevealCouncilResponse({ value }: msgRevealCouncilResponseParams): EncodeObject {
1243
+ try {
1244
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRevealCouncilResponse", value: MsgRevealCouncilResponse.fromPartial( value ) }
1245
+ } catch (e: any) {
1246
+ throw new Error('TxClient:MsgRevealCouncilResponse: Could not create message: ' + e.message)
1247
+ }
1248
+ },
1249
+
1250
+ msgSetCollectionArtist({ value }: msgSetCollectionArtistParams): EncodeObject {
1251
+ try {
1252
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetCollectionArtist", value: MsgSetCollectionArtist.fromPartial( value ) }
1253
+ } catch (e: any) {
1254
+ throw new Error('TxClient:MsgSetCollectionArtist: Could not create message: ' + e.message)
1255
+ }
1256
+ },
1257
+
1258
+ msgRegisterForCouncil({ value }: msgRegisterForCouncilParams): EncodeObject {
1259
+ try {
1260
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRegisterForCouncil", value: MsgRegisterForCouncil.fromPartial( value ) }
1261
+ } catch (e: any) {
1262
+ throw new Error('TxClient:MsgRegisterForCouncil: Could not create message: ' + e.message)
1263
+ }
1264
+ },
1265
+
1266
+ msgSetCardRarity({ value }: msgSetCardRarityParams): EncodeObject {
1267
+ try {
1268
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSetCardRarity", value: MsgSetCardRarity.fromPartial( value ) }
1269
+ } catch (e: any) {
1270
+ throw new Error('TxClient:MsgSetCardRarity: Could not create message: ' + e.message)
1271
+ }
1272
+ },
1273
+
1274
+ msgAddArtwork({ value }: msgAddArtworkParams): EncodeObject {
1275
+ try {
1276
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddArtwork", value: MsgAddArtwork.fromPartial( value ) }
1277
+ } catch (e: any) {
1278
+ throw new Error('TxClient:MsgAddArtwork: Could not create message: ' + e.message)
1279
+ }
1280
+ },
1281
+
1282
+ msgSubmitCollectionProposal({ value }: msgSubmitCollectionProposalParams): EncodeObject {
1283
+ try {
1284
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSubmitCollectionProposal", value: MsgSubmitCollectionProposal.fromPartial( value ) }
1285
+ } catch (e: any) {
1286
+ throw new Error('TxClient:MsgSubmitCollectionProposal: Could not create message: ' + e.message)
1287
+ }
1288
+ },
1289
+
1290
+ msgTransferBoosterPack({ value }: msgTransferBoosterPackParams): EncodeObject {
1291
+ try {
1292
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgTransferBoosterPack", value: MsgTransferBoosterPack.fromPartial( value ) }
1293
+ } catch (e: any) {
1294
+ throw new Error('TxClient:MsgTransferBoosterPack: Could not create message: ' + e.message)
1295
+ }
1296
+ },
1297
+
1298
+ msgVoteCard({ value }: msgVoteCardParams): EncodeObject {
1299
+ try {
1300
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgVoteCard", value: MsgVoteCard.fromPartial( value ) }
1301
+ } catch (e: any) {
1302
+ throw new Error('TxClient:MsgVoteCard: Could not create message: ' + e.message)
1303
+ }
1304
+ },
1305
+
1306
+ msgRemoveContributorFromCollection({ value }: msgRemoveContributorFromCollectionParams): EncodeObject {
1307
+ try {
1308
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRemoveContributorFromCollection", value: MsgRemoveContributorFromCollection.fromPartial( value ) }
1309
+ } catch (e: any) {
1310
+ throw new Error('TxClient:MsgRemoveContributorFromCollection: Could not create message: ' + e.message)
1311
+ }
1312
+ },
1313
+
1314
+ msgConfirmMatch({ value }: msgConfirmMatchParams): EncodeObject {
1315
+ try {
1316
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgConfirmMatch", value: MsgConfirmMatch.fromPartial( value ) }
1317
+ } catch (e: any) {
1318
+ throw new Error('TxClient:MsgConfirmMatch: Could not create message: ' + e.message)
1319
+ }
1320
+ },
1321
+
1322
+ msgCreateCollection({ value }: msgCreateCollectionParams): EncodeObject {
1323
+ try {
1324
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgCreateCollection", value: MsgCreateCollection.fromPartial( value ) }
1325
+ } catch (e: any) {
1326
+ throw new Error('TxClient:MsgCreateCollection: Could not create message: ' + e.message)
1327
+ }
1328
+ },
1329
+
1330
+ msgAddContributorToCollection({ value }: msgAddContributorToCollectionParams): EncodeObject {
1331
+ try {
1332
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddContributorToCollection", value: MsgAddContributorToCollection.fromPartial( value ) }
1333
+ } catch (e: any) {
1334
+ throw new Error('TxClient:MsgAddContributorToCollection: Could not create message: ' + e.message)
1335
+ }
1336
+ },
1337
+
1338
+ msgRestartCouncil({ value }: msgRestartCouncilParams): EncodeObject {
1339
+ try {
1340
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgRestartCouncil", value: MsgRestartCouncil.fromPartial( value ) }
1341
+ } catch (e: any) {
1342
+ throw new Error('TxClient:MsgRestartCouncil: Could not create message: ' + e.message)
1343
+ }
1344
+ },
1345
+
1346
+ msgSubmitCopyrightProposal({ value }: msgSubmitCopyrightProposalParams): EncodeObject {
1347
+ try {
1348
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgSubmitCopyrightProposal", value: MsgSubmitCopyrightProposal.fromPartial( value ) }
1349
+ } catch (e: any) {
1350
+ throw new Error('TxClient:MsgSubmitCopyrightProposal: Could not create message: ' + e.message)
1351
+ }
1352
+ },
1353
+
1354
+ msgAddCardToCollection({ value }: msgAddCardToCollectionParams): EncodeObject {
1355
+ try {
1356
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddCardToCollection", value: MsgAddCardToCollection.fromPartial( value ) }
1357
+ } catch (e: any) {
1358
+ throw new Error('TxClient:MsgAddCardToCollection: Could not create message: ' + e.message)
1359
+ }
1360
+ },
1361
+
1362
+ msgAddArtworkToCollection({ value }: msgAddArtworkToCollectionParams): EncodeObject {
1363
+ try {
1364
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgAddArtworkToCollection", value: MsgAddArtworkToCollection.fromPartial( value ) }
1365
+ } catch (e: any) {
1366
+ throw new Error('TxClient:MsgAddArtworkToCollection: Could not create message: ' + e.message)
1367
+ }
1368
+ },
1369
+
1370
+ msgBuyCollection({ value }: msgBuyCollectionParams): EncodeObject {
1371
+ try {
1372
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgBuyCollection", value: MsgBuyCollection.fromPartial( value ) }
1373
+ } catch (e: any) {
1374
+ throw new Error('TxClient:MsgBuyCollection: Could not create message: ' + e.message)
1375
+ }
1376
+ },
1377
+
1378
+ msgTransferCard({ value }: msgTransferCardParams): EncodeObject {
1379
+ try {
1380
+ return { typeUrl: "/DecentralCardGame.cardchain.cardchain.MsgTransferCard", value: MsgTransferCard.fromPartial( value ) }
1381
+ } catch (e: any) {
1382
+ throw new Error('TxClient:MsgTransferCard: Could not create message: ' + e.message)
1383
+ }
1384
+ },
1385
+
1386
+ }
1387
+ };
1388
+
1389
+ interface QueryClientOptions {
1390
+ addr: string
1391
+ }
1392
+
1393
+ export const queryClient = ({ addr: addr }: QueryClientOptions = { addr: "http://localhost:1317" }) => {
1394
+ return new Api({ baseURL: addr });
1395
+ };
1396
+
1397
+ class SDKModule {
1398
+ public query: ReturnType<typeof queryClient>;
1399
+ public tx: ReturnType<typeof txClient>;
1400
+ public structure: Record<string,unknown>;
1401
+ public registry: Array<[string, GeneratedType]> = [];
1402
+
1403
+ constructor(client: IgniteClient) {
1404
+
1405
+ this.query = queryClient({ addr: client.env.apiURL });
1406
+ this.updateTX(client);
1407
+ this.structure = {
1408
+ Card: getStructure(typeCard.fromPartial({})),
1409
+ Collection: getStructure(typeCollection.fromPartial({})),
1410
+ CollectionProposal: getStructure(typeCollectionProposal.fromPartial({})),
1411
+ CopyrightProposal: getStructure(typeCopyrightProposal.fromPartial({})),
1412
+ WrapClearResponse: getStructure(typeWrapClearResponse.fromPartial({})),
1413
+ WrapHashResponse: getStructure(typeWrapHashResponse.fromPartial({})),
1414
+ Image: getStructure(typeImage.fromPartial({})),
1415
+ MatchPlayer: getStructure(typeMatchPlayer.fromPartial({})),
1416
+ MatchReporterProposal: getStructure(typeMatchReporterProposal.fromPartial({})),
1417
+ Num: getStructure(typeNum.fromPartial({})),
1418
+ Params: getStructure(typeParams.fromPartial({})),
1419
+ IgnoreMatches: getStructure(typeIgnoreMatches.fromPartial({})),
1420
+ IgnoreSellOffers: getStructure(typeIgnoreSellOffers.fromPartial({})),
1421
+ QueryQServerResponse: getStructure(typeQueryQServerResponse.fromPartial({})),
1422
+ RunningAverage: getStructure(typeRunningAverage.fromPartial({})),
1423
+ BoosterPack: getStructure(typeBoosterPack.fromPartial({})),
1424
+ AirDrops: getStructure(typeAirDrops.fromPartial({})),
1425
+ VoteRight: getStructure(typeVoteRight.fromPartial({})),
1426
+ VotingResult: getStructure(typeVotingResult.fromPartial({})),
1427
+ VotingResults: getStructure(typeVotingResults.fromPartial({})),
1428
+
1429
+ };
1430
+ client.on('signer-changed',(signer) => {
1431
+ this.updateTX(client);
1432
+ })
1433
+ }
1434
+ updateTX(client: IgniteClient) {
1435
+ const methods = txClient({
1436
+ signer: client.signer,
1437
+ addr: client.env.rpcURL,
1438
+ prefix: client.env.prefix ?? "cosmos",
1439
+ })
1440
+
1441
+ this.tx = methods;
1442
+ for (let m in methods) {
1443
+ this.tx[m] = methods[m].bind(this.tx);
1444
+ }
1445
+ }
1446
+ };
1447
+
1448
+ const Module = (test: IgniteClient) => {
1449
+ return {
1450
+ module: {
1451
+ DecentralCardGameCardchainCardchain: new SDKModule(test)
1452
+ },
1453
+ registry: msgTypes
1454
+ }
1455
+ }
1456
+ export default Module;