decentralcardgame-cardchain-client-ts 0.0.8 → 0.0.10

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