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
@@ -1,88 +1,88 @@
1
1
  import { GeneratedType } from "@cosmjs/proto-signing";
2
- import { MsgTransferCard } from "./types/cardchain/cardchain/tx";
3
- import { MsgOpenBoosterPack } from "./types/cardchain/cardchain/tx";
4
- import { MsgCreateCollection } from "./types/cardchain/cardchain/tx";
5
- import { MsgCreateuser } from "./types/cardchain/cardchain/tx";
6
- import { MsgSubmitMatchReporterProposal } from "./types/cardchain/cardchain/tx";
7
- import { MsgRemoveContributorFromCollection } from "./types/cardchain/cardchain/tx";
8
- import { MsgSubmitCopyrightProposal } from "./types/cardchain/cardchain/tx";
9
- import { MsgRewokeCouncilRegistration } from "./types/cardchain/cardchain/tx";
10
- import { MsgReportMatch } from "./types/cardchain/cardchain/tx";
11
- import { MsgSubmitCollectionProposal } from "./types/cardchain/cardchain/tx";
12
- import { MsgSaveCardContent } from "./types/cardchain/cardchain/tx";
13
- import { MsgDonateToCard } from "./types/cardchain/cardchain/tx";
14
- import { MsgAddStoryToCollection } from "./types/cardchain/cardchain/tx";
15
- import { MsgTransferBoosterPack } from "./types/cardchain/cardchain/tx";
16
- import { MsgSetProfileCard } from "./types/cardchain/cardchain/tx";
17
- import { MsgRemoveCardFromCollection } from "./types/cardchain/cardchain/tx";
18
- import { MsgAddArtworkToCollection } from "./types/cardchain/cardchain/tx";
19
- import { MsgAddCardToCollection } from "./types/cardchain/cardchain/tx";
20
- import { MsgSetCardRarity } from "./types/cardchain/cardchain/tx";
21
- import { MsgFinalizeCollection } from "./types/cardchain/cardchain/tx";
22
- import { MsgAddContributorToCollection } from "./types/cardchain/cardchain/tx";
23
- import { MsgCreateCouncil } from "./types/cardchain/cardchain/tx";
24
- import { MsgRestartCouncil } from "./types/cardchain/cardchain/tx";
25
- import { MsgSetUserWebsite } from "./types/cardchain/cardchain/tx";
26
- import { MsgConfirmMatch } from "./types/cardchain/cardchain/tx";
27
- import { MsgSetUserBiography } from "./types/cardchain/cardchain/tx";
28
- import { MsgMultiVoteCard } from "./types/cardchain/cardchain/tx";
29
- import { MsgChangeArtist } from "./types/cardchain/cardchain/tx";
30
- import { MsgCreateSellOffer } from "./types/cardchain/cardchain/tx";
31
- import { MsgSetCollectionStoryWriter } from "./types/cardchain/cardchain/tx";
32
- import { MsgRemoveSellOffer } from "./types/cardchain/cardchain/tx";
33
- import { MsgAddArtwork } from "./types/cardchain/cardchain/tx";
34
- import { MsgApointMatchReporter } from "./types/cardchain/cardchain/tx";
35
- import { MsgRegisterForCouncil } from "./types/cardchain/cardchain/tx";
36
- import { MsgRevealCouncilResponse } from "./types/cardchain/cardchain/tx";
37
- import { MsgVoteCard } from "./types/cardchain/cardchain/tx";
38
- import { MsgSetCollectionArtist } from "./types/cardchain/cardchain/tx";
39
- import { MsgBuyCardScheme } from "./types/cardchain/cardchain/tx";
40
- import { MsgBuyCollection } from "./types/cardchain/cardchain/tx";
41
- import { MsgBuyCard } from "./types/cardchain/cardchain/tx";
42
- import { MsgCommitCouncilResponse } from "./types/cardchain/cardchain/tx";
2
+ import { MsgVoteCard } from "./types/DecentralCardGame/cardchain/cardchain/tx";
3
+ import { MsgBuyCard } from "./types/DecentralCardGame/cardchain/cardchain/tx";
4
+ import { MsgAddArtworkToCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
5
+ import { MsgCreateSellOffer } from "./types/DecentralCardGame/cardchain/cardchain/tx";
6
+ import { MsgRemoveContributorFromCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
7
+ import { MsgCreateCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
8
+ import { MsgBuyCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
9
+ import { MsgDonateToCard } from "./types/DecentralCardGame/cardchain/cardchain/tx";
10
+ import { MsgAddStoryToCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
11
+ import { MsgRestartCouncil } from "./types/DecentralCardGame/cardchain/cardchain/tx";
12
+ import { MsgRewokeCouncilRegistration } from "./types/DecentralCardGame/cardchain/cardchain/tx";
13
+ import { MsgSetCollectionStoryWriter } from "./types/DecentralCardGame/cardchain/cardchain/tx";
14
+ import { MsgApointMatchReporter } from "./types/DecentralCardGame/cardchain/cardchain/tx";
15
+ import { MsgMultiVoteCard } from "./types/DecentralCardGame/cardchain/cardchain/tx";
16
+ import { MsgTransferCard } from "./types/DecentralCardGame/cardchain/cardchain/tx";
17
+ import { MsgAddCardToCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
18
+ import { MsgBuyCardScheme } from "./types/DecentralCardGame/cardchain/cardchain/tx";
19
+ import { MsgCreateuser } from "./types/DecentralCardGame/cardchain/cardchain/tx";
20
+ import { MsgRemoveSellOffer } from "./types/DecentralCardGame/cardchain/cardchain/tx";
21
+ import { MsgAddContributorToCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
22
+ import { MsgSetCollectionArtist } from "./types/DecentralCardGame/cardchain/cardchain/tx";
23
+ import { MsgAddArtwork } from "./types/DecentralCardGame/cardchain/cardchain/tx";
24
+ import { MsgSubmitCopyrightProposal } from "./types/DecentralCardGame/cardchain/cardchain/tx";
25
+ import { MsgChangeArtist } from "./types/DecentralCardGame/cardchain/cardchain/tx";
26
+ import { MsgReportMatch } from "./types/DecentralCardGame/cardchain/cardchain/tx";
27
+ import { MsgSetUserBiography } from "./types/DecentralCardGame/cardchain/cardchain/tx";
28
+ import { MsgSubmitMatchReporterProposal } from "./types/DecentralCardGame/cardchain/cardchain/tx";
29
+ import { MsgSetProfileCard } from "./types/DecentralCardGame/cardchain/cardchain/tx";
30
+ import { MsgCreateCouncil } from "./types/DecentralCardGame/cardchain/cardchain/tx";
31
+ import { MsgConfirmMatch } from "./types/DecentralCardGame/cardchain/cardchain/tx";
32
+ import { MsgRemoveCardFromCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
33
+ import { MsgSetCardRarity } from "./types/DecentralCardGame/cardchain/cardchain/tx";
34
+ import { MsgSaveCardContent } from "./types/DecentralCardGame/cardchain/cardchain/tx";
35
+ import { MsgRevealCouncilResponse } from "./types/DecentralCardGame/cardchain/cardchain/tx";
36
+ import { MsgCommitCouncilResponse } from "./types/DecentralCardGame/cardchain/cardchain/tx";
37
+ import { MsgRegisterForCouncil } from "./types/DecentralCardGame/cardchain/cardchain/tx";
38
+ import { MsgSetUserWebsite } from "./types/DecentralCardGame/cardchain/cardchain/tx";
39
+ import { MsgSubmitCollectionProposal } from "./types/DecentralCardGame/cardchain/cardchain/tx";
40
+ import { MsgOpenBoosterPack } from "./types/DecentralCardGame/cardchain/cardchain/tx";
41
+ import { MsgTransferBoosterPack } from "./types/DecentralCardGame/cardchain/cardchain/tx";
42
+ import { MsgFinalizeCollection } from "./types/DecentralCardGame/cardchain/cardchain/tx";
43
43
 
44
44
  const msgTypes: Array<[string, GeneratedType]> = [
45
- ["/DecentralCardGame.cardchain.cardchain.MsgTransferCard", MsgTransferCard],
46
- ["/DecentralCardGame.cardchain.cardchain.MsgOpenBoosterPack", MsgOpenBoosterPack],
47
- ["/DecentralCardGame.cardchain.cardchain.MsgCreateCollection", MsgCreateCollection],
48
- ["/DecentralCardGame.cardchain.cardchain.MsgCreateuser", MsgCreateuser],
49
- ["/DecentralCardGame.cardchain.cardchain.MsgSubmitMatchReporterProposal", MsgSubmitMatchReporterProposal],
45
+ ["/DecentralCardGame.cardchain.cardchain.MsgVoteCard", MsgVoteCard],
46
+ ["/DecentralCardGame.cardchain.cardchain.MsgBuyCard", MsgBuyCard],
47
+ ["/DecentralCardGame.cardchain.cardchain.MsgAddArtworkToCollection", MsgAddArtworkToCollection],
48
+ ["/DecentralCardGame.cardchain.cardchain.MsgCreateSellOffer", MsgCreateSellOffer],
50
49
  ["/DecentralCardGame.cardchain.cardchain.MsgRemoveContributorFromCollection", MsgRemoveContributorFromCollection],
51
- ["/DecentralCardGame.cardchain.cardchain.MsgSubmitCopyrightProposal", MsgSubmitCopyrightProposal],
52
- ["/DecentralCardGame.cardchain.cardchain.MsgRewokeCouncilRegistration", MsgRewokeCouncilRegistration],
53
- ["/DecentralCardGame.cardchain.cardchain.MsgReportMatch", MsgReportMatch],
54
- ["/DecentralCardGame.cardchain.cardchain.MsgSubmitCollectionProposal", MsgSubmitCollectionProposal],
55
- ["/DecentralCardGame.cardchain.cardchain.MsgSaveCardContent", MsgSaveCardContent],
50
+ ["/DecentralCardGame.cardchain.cardchain.MsgCreateCollection", MsgCreateCollection],
51
+ ["/DecentralCardGame.cardchain.cardchain.MsgBuyCollection", MsgBuyCollection],
56
52
  ["/DecentralCardGame.cardchain.cardchain.MsgDonateToCard", MsgDonateToCard],
57
53
  ["/DecentralCardGame.cardchain.cardchain.MsgAddStoryToCollection", MsgAddStoryToCollection],
58
- ["/DecentralCardGame.cardchain.cardchain.MsgTransferBoosterPack", MsgTransferBoosterPack],
59
- ["/DecentralCardGame.cardchain.cardchain.MsgSetProfileCard", MsgSetProfileCard],
60
- ["/DecentralCardGame.cardchain.cardchain.MsgRemoveCardFromCollection", MsgRemoveCardFromCollection],
61
- ["/DecentralCardGame.cardchain.cardchain.MsgAddArtworkToCollection", MsgAddArtworkToCollection],
62
- ["/DecentralCardGame.cardchain.cardchain.MsgAddCardToCollection", MsgAddCardToCollection],
63
- ["/DecentralCardGame.cardchain.cardchain.MsgSetCardRarity", MsgSetCardRarity],
64
- ["/DecentralCardGame.cardchain.cardchain.MsgFinalizeCollection", MsgFinalizeCollection],
65
- ["/DecentralCardGame.cardchain.cardchain.MsgAddContributorToCollection", MsgAddContributorToCollection],
66
- ["/DecentralCardGame.cardchain.cardchain.MsgCreateCouncil", MsgCreateCouncil],
67
54
  ["/DecentralCardGame.cardchain.cardchain.MsgRestartCouncil", MsgRestartCouncil],
68
- ["/DecentralCardGame.cardchain.cardchain.MsgSetUserWebsite", MsgSetUserWebsite],
69
- ["/DecentralCardGame.cardchain.cardchain.MsgConfirmMatch", MsgConfirmMatch],
70
- ["/DecentralCardGame.cardchain.cardchain.MsgSetUserBiography", MsgSetUserBiography],
71
- ["/DecentralCardGame.cardchain.cardchain.MsgMultiVoteCard", MsgMultiVoteCard],
72
- ["/DecentralCardGame.cardchain.cardchain.MsgChangeArtist", MsgChangeArtist],
73
- ["/DecentralCardGame.cardchain.cardchain.MsgCreateSellOffer", MsgCreateSellOffer],
55
+ ["/DecentralCardGame.cardchain.cardchain.MsgRewokeCouncilRegistration", MsgRewokeCouncilRegistration],
74
56
  ["/DecentralCardGame.cardchain.cardchain.MsgSetCollectionStoryWriter", MsgSetCollectionStoryWriter],
57
+ ["/DecentralCardGame.cardchain.cardchain.MsgApointMatchReporter", MsgApointMatchReporter],
58
+ ["/DecentralCardGame.cardchain.cardchain.MsgMultiVoteCard", MsgMultiVoteCard],
59
+ ["/DecentralCardGame.cardchain.cardchain.MsgTransferCard", MsgTransferCard],
60
+ ["/DecentralCardGame.cardchain.cardchain.MsgAddCardToCollection", MsgAddCardToCollection],
61
+ ["/DecentralCardGame.cardchain.cardchain.MsgBuyCardScheme", MsgBuyCardScheme],
62
+ ["/DecentralCardGame.cardchain.cardchain.MsgCreateuser", MsgCreateuser],
75
63
  ["/DecentralCardGame.cardchain.cardchain.MsgRemoveSellOffer", MsgRemoveSellOffer],
64
+ ["/DecentralCardGame.cardchain.cardchain.MsgAddContributorToCollection", MsgAddContributorToCollection],
65
+ ["/DecentralCardGame.cardchain.cardchain.MsgSetCollectionArtist", MsgSetCollectionArtist],
76
66
  ["/DecentralCardGame.cardchain.cardchain.MsgAddArtwork", MsgAddArtwork],
77
- ["/DecentralCardGame.cardchain.cardchain.MsgApointMatchReporter", MsgApointMatchReporter],
78
- ["/DecentralCardGame.cardchain.cardchain.MsgRegisterForCouncil", MsgRegisterForCouncil],
67
+ ["/DecentralCardGame.cardchain.cardchain.MsgSubmitCopyrightProposal", MsgSubmitCopyrightProposal],
68
+ ["/DecentralCardGame.cardchain.cardchain.MsgChangeArtist", MsgChangeArtist],
69
+ ["/DecentralCardGame.cardchain.cardchain.MsgReportMatch", MsgReportMatch],
70
+ ["/DecentralCardGame.cardchain.cardchain.MsgSetUserBiography", MsgSetUserBiography],
71
+ ["/DecentralCardGame.cardchain.cardchain.MsgSubmitMatchReporterProposal", MsgSubmitMatchReporterProposal],
72
+ ["/DecentralCardGame.cardchain.cardchain.MsgSetProfileCard", MsgSetProfileCard],
73
+ ["/DecentralCardGame.cardchain.cardchain.MsgCreateCouncil", MsgCreateCouncil],
74
+ ["/DecentralCardGame.cardchain.cardchain.MsgConfirmMatch", MsgConfirmMatch],
75
+ ["/DecentralCardGame.cardchain.cardchain.MsgRemoveCardFromCollection", MsgRemoveCardFromCollection],
76
+ ["/DecentralCardGame.cardchain.cardchain.MsgSetCardRarity", MsgSetCardRarity],
77
+ ["/DecentralCardGame.cardchain.cardchain.MsgSaveCardContent", MsgSaveCardContent],
79
78
  ["/DecentralCardGame.cardchain.cardchain.MsgRevealCouncilResponse", MsgRevealCouncilResponse],
80
- ["/DecentralCardGame.cardchain.cardchain.MsgVoteCard", MsgVoteCard],
81
- ["/DecentralCardGame.cardchain.cardchain.MsgSetCollectionArtist", MsgSetCollectionArtist],
82
- ["/DecentralCardGame.cardchain.cardchain.MsgBuyCardScheme", MsgBuyCardScheme],
83
- ["/DecentralCardGame.cardchain.cardchain.MsgBuyCollection", MsgBuyCollection],
84
- ["/DecentralCardGame.cardchain.cardchain.MsgBuyCard", MsgBuyCard],
85
79
  ["/DecentralCardGame.cardchain.cardchain.MsgCommitCouncilResponse", MsgCommitCouncilResponse],
80
+ ["/DecentralCardGame.cardchain.cardchain.MsgRegisterForCouncil", MsgRegisterForCouncil],
81
+ ["/DecentralCardGame.cardchain.cardchain.MsgSetUserWebsite", MsgSetUserWebsite],
82
+ ["/DecentralCardGame.cardchain.cardchain.MsgSubmitCollectionProposal", MsgSubmitCollectionProposal],
83
+ ["/DecentralCardGame.cardchain.cardchain.MsgOpenBoosterPack", MsgOpenBoosterPack],
84
+ ["/DecentralCardGame.cardchain.cardchain.MsgTransferBoosterPack", MsgTransferBoosterPack],
85
+ ["/DecentralCardGame.cardchain.cardchain.MsgFinalizeCollection", MsgFinalizeCollection],
86
86
 
87
87
  ];
88
88
 
@@ -102,7 +102,10 @@ export type CardchainMsgApointMatchReporterResponse = object;
102
102
 
103
103
  export type CardchainMsgBuyCardResponse = object;
104
104
 
105
- export type CardchainMsgBuyCardSchemeResponse = object;
105
+ export interface CardchainMsgBuyCardSchemeResponse {
106
+ /** @format uint64 */
107
+ cardId?: string;
108
+ }
106
109
 
107
110
  export interface CardchainMsgBuyCollectionResponse {
108
111
  airdropClaimed?: boolean;
@@ -128,7 +131,9 @@ export type CardchainMsgFinalizeCollectionResponse = object;
128
131
 
129
132
  export type CardchainMsgMultiVoteCardResponse = object;
130
133
 
131
- export type CardchainMsgOpenBoosterPackResponse = object;
134
+ export interface CardchainMsgOpenBoosterPackResponse {
135
+ cardIds?: string[];
136
+ }
132
137
 
133
138
  export type CardchainMsgRegisterForCouncilResponse = object;
134
139
 
@@ -626,7 +631,7 @@ export class HttpClient<SecurityDataType = unknown> {
626
631
  }
627
632
 
628
633
  /**
629
- * @title cardchain/cardchain/card.proto
634
+ * @title DecentralCardGame/cardchain/cardchain/card.proto
630
635
  * @version version not set
631
636
  */
632
637
  export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable */
2
2
  import _m0 from "protobufjs/minimal";
3
- import { Coin } from "../../cosmos/base/v1beta1/coin";
3
+ import { Coin } from "../../../cosmos/base/v1beta1/coin";
4
4
  import { Card, TimeStamp } from "./card";
5
5
  import { Collection } from "./collection";
6
6
  import { Council } from "./council";
@@ -1,7 +1,7 @@
1
1
  /* eslint-disable */
2
2
  import Long from "long";
3
3
  import _m0 from "protobufjs/minimal";
4
- import { Coin } from "../../cosmos/base/v1beta1/coin";
4
+ import { Coin } from "../../../cosmos/base/v1beta1/coin";
5
5
  import { Response, responseFromJSON, responseToJSON } from "./council";
6
6
 
7
7
  export const protobufPackage = "DecentralCardGame.cardchain.cardchain";
@@ -66,6 +66,7 @@ export interface MsgBuyCardScheme {
66
66
  }
67
67
 
68
68
  export interface MsgBuyCardSchemeResponse {
69
+ cardId: number;
69
70
  }
70
71
 
71
72
  export interface MsgVoteCard {
@@ -372,6 +373,7 @@ export interface MsgOpenBoosterPack {
372
373
  }
373
374
 
374
375
  export interface MsgOpenBoosterPackResponse {
376
+ cardIds: number[];
375
377
  }
376
378
 
377
379
  export interface MsgTransferBoosterPack {
@@ -596,11 +598,14 @@ export const MsgBuyCardScheme = {
596
598
  };
597
599
 
598
600
  function createBaseMsgBuyCardSchemeResponse(): MsgBuyCardSchemeResponse {
599
- return {};
601
+ return { cardId: 0 };
600
602
  }
601
603
 
602
604
  export const MsgBuyCardSchemeResponse = {
603
- encode(_: MsgBuyCardSchemeResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
605
+ encode(message: MsgBuyCardSchemeResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
606
+ if (message.cardId !== 0) {
607
+ writer.uint32(8).uint64(message.cardId);
608
+ }
604
609
  return writer;
605
610
  },
606
611
 
@@ -611,6 +616,9 @@ export const MsgBuyCardSchemeResponse = {
611
616
  while (reader.pos < end) {
612
617
  const tag = reader.uint32();
613
618
  switch (tag >>> 3) {
619
+ case 1:
620
+ message.cardId = longToNumber(reader.uint64() as Long);
621
+ break;
614
622
  default:
615
623
  reader.skipType(tag & 7);
616
624
  break;
@@ -619,17 +627,19 @@ export const MsgBuyCardSchemeResponse = {
619
627
  return message;
620
628
  },
621
629
 
622
- fromJSON(_: any): MsgBuyCardSchemeResponse {
623
- return {};
630
+ fromJSON(object: any): MsgBuyCardSchemeResponse {
631
+ return { cardId: isSet(object.cardId) ? Number(object.cardId) : 0 };
624
632
  },
625
633
 
626
- toJSON(_: MsgBuyCardSchemeResponse): unknown {
634
+ toJSON(message: MsgBuyCardSchemeResponse): unknown {
627
635
  const obj: any = {};
636
+ message.cardId !== undefined && (obj.cardId = Math.round(message.cardId));
628
637
  return obj;
629
638
  },
630
639
 
631
- fromPartial<I extends Exact<DeepPartial<MsgBuyCardSchemeResponse>, I>>(_: I): MsgBuyCardSchemeResponse {
640
+ fromPartial<I extends Exact<DeepPartial<MsgBuyCardSchemeResponse>, I>>(object: I): MsgBuyCardSchemeResponse {
632
641
  const message = createBaseMsgBuyCardSchemeResponse();
642
+ message.cardId = object.cardId ?? 0;
633
643
  return message;
634
644
  },
635
645
  };
@@ -4181,11 +4191,16 @@ export const MsgOpenBoosterPack = {
4181
4191
  };
4182
4192
 
4183
4193
  function createBaseMsgOpenBoosterPackResponse(): MsgOpenBoosterPackResponse {
4184
- return {};
4194
+ return { cardIds: [] };
4185
4195
  }
4186
4196
 
4187
4197
  export const MsgOpenBoosterPackResponse = {
4188
- encode(_: MsgOpenBoosterPackResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
4198
+ encode(message: MsgOpenBoosterPackResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
4199
+ writer.uint32(10).fork();
4200
+ for (const v of message.cardIds) {
4201
+ writer.uint64(v);
4202
+ }
4203
+ writer.ldelim();
4189
4204
  return writer;
4190
4205
  },
4191
4206
 
@@ -4196,6 +4211,16 @@ export const MsgOpenBoosterPackResponse = {
4196
4211
  while (reader.pos < end) {
4197
4212
  const tag = reader.uint32();
4198
4213
  switch (tag >>> 3) {
4214
+ case 1:
4215
+ if ((tag & 7) === 2) {
4216
+ const end2 = reader.uint32() + reader.pos;
4217
+ while (reader.pos < end2) {
4218
+ message.cardIds.push(longToNumber(reader.uint64() as Long));
4219
+ }
4220
+ } else {
4221
+ message.cardIds.push(longToNumber(reader.uint64() as Long));
4222
+ }
4223
+ break;
4199
4224
  default:
4200
4225
  reader.skipType(tag & 7);
4201
4226
  break;
@@ -4204,17 +4229,23 @@ export const MsgOpenBoosterPackResponse = {
4204
4229
  return message;
4205
4230
  },
4206
4231
 
4207
- fromJSON(_: any): MsgOpenBoosterPackResponse {
4208
- return {};
4232
+ fromJSON(object: any): MsgOpenBoosterPackResponse {
4233
+ return { cardIds: Array.isArray(object?.cardIds) ? object.cardIds.map((e: any) => Number(e)) : [] };
4209
4234
  },
4210
4235
 
4211
- toJSON(_: MsgOpenBoosterPackResponse): unknown {
4236
+ toJSON(message: MsgOpenBoosterPackResponse): unknown {
4212
4237
  const obj: any = {};
4238
+ if (message.cardIds) {
4239
+ obj.cardIds = message.cardIds.map((e) => Math.round(e));
4240
+ } else {
4241
+ obj.cardIds = [];
4242
+ }
4213
4243
  return obj;
4214
4244
  },
4215
4245
 
4216
- fromPartial<I extends Exact<DeepPartial<MsgOpenBoosterPackResponse>, I>>(_: I): MsgOpenBoosterPackResponse {
4246
+ fromPartial<I extends Exact<DeepPartial<MsgOpenBoosterPackResponse>, I>>(object: I): MsgOpenBoosterPackResponse {
4217
4247
  const message = createBaseMsgOpenBoosterPackResponse();
4248
+ message.cardIds = object.cardIds?.map((e) => e) || [];
4218
4249
  return message;
4219
4250
  },
4220
4251
  };
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export const protobufPackage = "amino";
@@ -1,25 +1,25 @@
1
- import { Card } from "./types/cardchain/cardchain/card"
2
- import { TimeStamp } from "./types/cardchain/cardchain/card"
3
- import { Collection } from "./types/cardchain/cardchain/collection"
4
- import { CollectionProposal } from "./types/cardchain/cardchain/collection_proposal"
5
- import { CopyrightProposal } from "./types/cardchain/cardchain/copyright_proposal"
6
- import { WrapClearResponse } from "./types/cardchain/cardchain/council"
7
- import { WrapHashResponse } from "./types/cardchain/cardchain/council"
8
- import { Image } from "./types/cardchain/cardchain/image"
9
- import { MatchPlayer } from "./types/cardchain/cardchain/match"
10
- import { MatchReporterProposal } from "./types/cardchain/cardchain/match_reporter_proposal"
11
- import { Num } from "./types/cardchain/cardchain/num"
12
- import { Params } from "./types/cardchain/cardchain/params"
13
- import { IgnoreMatches } from "./types/cardchain/cardchain/query"
14
- import { IgnoreSellOffers } from "./types/cardchain/cardchain/query"
15
- import { QueryQServerResponse } from "./types/cardchain/cardchain/query"
16
- import { RunningAverage } from "./types/cardchain/cardchain/running_average"
17
- import { SingleVote } from "./types/cardchain/cardchain/tx"
18
- import { BoosterPack } from "./types/cardchain/cardchain/user"
19
- import { AirDrops } from "./types/cardchain/cardchain/user"
20
- import { VoteRight } from "./types/cardchain/cardchain/vote_right"
21
- import { VotingResult } from "./types/cardchain/cardchain/voting_result"
22
- import { VotingResults } from "./types/cardchain/cardchain/voting_results"
1
+ import { Card } from "./types/DecentralCardGame/cardchain/cardchain/card"
2
+ import { TimeStamp } from "./types/DecentralCardGame/cardchain/cardchain/card"
3
+ import { Collection } from "./types/DecentralCardGame/cardchain/cardchain/collection"
4
+ import { CollectionProposal } from "./types/DecentralCardGame/cardchain/cardchain/collection_proposal"
5
+ import { CopyrightProposal } from "./types/DecentralCardGame/cardchain/cardchain/copyright_proposal"
6
+ import { WrapClearResponse } from "./types/DecentralCardGame/cardchain/cardchain/council"
7
+ import { WrapHashResponse } from "./types/DecentralCardGame/cardchain/cardchain/council"
8
+ import { Image } from "./types/DecentralCardGame/cardchain/cardchain/image"
9
+ import { MatchPlayer } from "./types/DecentralCardGame/cardchain/cardchain/match"
10
+ import { MatchReporterProposal } from "./types/DecentralCardGame/cardchain/cardchain/match_reporter_proposal"
11
+ import { Num } from "./types/DecentralCardGame/cardchain/cardchain/num"
12
+ import { Params } from "./types/DecentralCardGame/cardchain/cardchain/params"
13
+ import { IgnoreMatches } from "./types/DecentralCardGame/cardchain/cardchain/query"
14
+ import { IgnoreSellOffers } from "./types/DecentralCardGame/cardchain/cardchain/query"
15
+ import { QueryQServerResponse } from "./types/DecentralCardGame/cardchain/cardchain/query"
16
+ import { RunningAverage } from "./types/DecentralCardGame/cardchain/cardchain/running_average"
17
+ import { SingleVote } from "./types/DecentralCardGame/cardchain/cardchain/tx"
18
+ import { BoosterPack } from "./types/DecentralCardGame/cardchain/cardchain/user"
19
+ import { AirDrops } from "./types/DecentralCardGame/cardchain/cardchain/user"
20
+ import { VoteRight } from "./types/DecentralCardGame/cardchain/cardchain/vote_right"
21
+ import { VotingResult } from "./types/DecentralCardGame/cardchain/cardchain/voting_result"
22
+ import { VotingResults } from "./types/DecentralCardGame/cardchain/cardchain/voting_results"
23
23
 
24
24
 
25
25
  export {
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Run
6
6
  ```shell
7
- tsc
7
+ npm run build
8
8
  ```
9
9
 
10
10
  ## Deployment
package/client.ts CHANGED
@@ -77,28 +77,22 @@ export class IgniteClient extends EventEmitter {
77
77
  const queryClient = (
78
78
  await import("./cosmos.base.tendermint.v1beta1/module")
79
79
  ).queryClient;
80
- const stakingQueryClient = (
81
- await import("./cosmos.staking.v1beta1/module")
82
- ).queryClient;
83
80
  const bankQueryClient = (await import("./cosmos.bank.v1beta1/module"))
84
81
  .queryClient;
85
-
82
+
83
+ const stakingQueryClient = (await import("./cosmos.staking.v1beta1/module")).queryClient;
86
84
  const stakingqc = stakingQueryClient({ addr: this.env.apiURL });
85
+ const staking = await (await stakingqc.queryParams()).data;
86
+
87
87
  const qc = queryClient({ addr: this.env.apiURL });
88
88
  const node_info = await (await qc.serviceGetNodeInfo()).data;
89
89
  const chainId = node_info.default_node_info?.network ?? "";
90
90
  const chainName = chainId?.toUpperCase() + " Network";
91
- const staking = await (await stakingqc.queryParams()).data;
92
91
  const bankqc = bankQueryClient({ addr: this.env.apiURL });
93
92
  const tokens = await (await bankqc.queryTotalSupply()).data;
94
93
  const addrPrefix = this.env.prefix ?? "cosmos";
95
94
  const rpc = this.env.rpcURL;
96
95
  const rest = this.env.apiURL;
97
- let stakeCurrency = {
98
- coinDenom: staking.params?.bond_denom?.toUpperCase() ?? "",
99
- coinMinimalDenom: staking.params?.bond_denom ?? "",
100
- coinDecimals: 0,
101
- };
102
96
 
103
97
  let bip44 = {
104
98
  coinType: 118,
@@ -123,6 +117,13 @@ export class IgniteClient extends EventEmitter {
123
117
  return y;
124
118
  }) ?? [];
125
119
 
120
+
121
+ let stakeCurrency = {
122
+ coinDenom: staking.params?.bond_denom?.toUpperCase() ?? "",
123
+ coinMinimalDenom: staking.params?.bond_denom ?? "",
124
+ coinDecimals: 0,
125
+ };
126
+
126
127
  let feeCurrencies =
127
128
  tokens.supply?.map((x) => {
128
129
  const y = {
@@ -10,6 +10,7 @@ import { Api } from "./rest";
10
10
 
11
11
  import { BaseAccount as typeBaseAccount} from "./types"
12
12
  import { ModuleAccount as typeModuleAccount} from "./types"
13
+ import { ModuleCredential as typeModuleCredential} from "./types"
13
14
  import { Params as typeParams} from "./types"
14
15
 
15
16
  export { };
@@ -70,6 +71,7 @@ class SDKModule {
70
71
  this.structure = {
71
72
  BaseAccount: getStructure(typeBaseAccount.fromPartial({})),
72
73
  ModuleAccount: getStructure(typeModuleAccount.fromPartial({})),
74
+ ModuleCredential: getStructure(typeModuleCredential.fromPartial({})),
73
75
  Params: getStructure(typeParams.fromPartial({})),
74
76
 
75
77
  };
@@ -149,6 +149,81 @@ export interface V1Beta1AddressStringToBytesResponse {
149
149
  address_bytes?: string;
150
150
  }
151
151
 
152
+ /**
153
+ * BaseAccount defines a base account type. It contains all the necessary fields
154
+ for basic account functionality. Any custom account type should extend this
155
+ type for additional functionality (e.g. vesting).
156
+ */
157
+ export interface V1Beta1BaseAccount {
158
+ address?: string;
159
+
160
+ /**
161
+ * `Any` contains an arbitrary serialized protocol buffer message along with a
162
+ * URL that describes the type of the serialized message.
163
+ *
164
+ * Protobuf library provides support to pack/unpack Any values in the form
165
+ * of utility functions or additional generated methods of the Any type.
166
+ * Example 1: Pack and unpack a message in C++.
167
+ * Foo foo = ...;
168
+ * Any any;
169
+ * any.PackFrom(foo);
170
+ * ...
171
+ * if (any.UnpackTo(&foo)) {
172
+ * ...
173
+ * }
174
+ * Example 2: Pack and unpack a message in Java.
175
+ * Any any = Any.pack(foo);
176
+ * if (any.is(Foo.class)) {
177
+ * foo = any.unpack(Foo.class);
178
+ * Example 3: Pack and unpack a message in Python.
179
+ * foo = Foo(...)
180
+ * any = Any()
181
+ * any.Pack(foo)
182
+ * if any.Is(Foo.DESCRIPTOR):
183
+ * any.Unpack(foo)
184
+ * Example 4: Pack and unpack a message in Go
185
+ * foo := &pb.Foo{...}
186
+ * any, err := anypb.New(foo)
187
+ * if err != nil {
188
+ * ...
189
+ * }
190
+ * ...
191
+ * foo := &pb.Foo{}
192
+ * if err := any.UnmarshalTo(foo); err != nil {
193
+ * The pack methods provided by protobuf library will by default use
194
+ * 'type.googleapis.com/full.type.name' as the type URL and the unpack
195
+ * methods only use the fully qualified type name after the last '/'
196
+ * in the type URL, for example "foo.bar.com/x/y.z" will yield type
197
+ * name "y.z".
198
+ * JSON
199
+ * ====
200
+ * The JSON representation of an `Any` value uses the regular
201
+ * representation of the deserialized, embedded message, with an
202
+ * additional field `@type` which contains the type URL. Example:
203
+ * package google.profile;
204
+ * message Person {
205
+ * string first_name = 1;
206
+ * string last_name = 2;
207
+ * {
208
+ * "@type": "type.googleapis.com/google.profile.Person",
209
+ * "firstName": <string>,
210
+ * "lastName": <string>
211
+ * If the embedded message type is well-known and has a custom JSON
212
+ * representation, that representation will be embedded adding a field
213
+ * `value` which holds the custom JSON in addition to the `@type`
214
+ * field. Example (for message [google.protobuf.Duration][]):
215
+ * "@type": "type.googleapis.com/google.protobuf.Duration",
216
+ * "value": "1.212s"
217
+ */
218
+ pub_key?: ProtobufAny;
219
+
220
+ /** @format uint64 */
221
+ account_number?: string;
222
+
223
+ /** @format uint64 */
224
+ sequence?: string;
225
+ }
226
+
152
227
  /**
153
228
  * Bech32PrefixResponse is the response type for Bech32Prefix rpc method.
154
229
 
@@ -158,6 +233,14 @@ export interface V1Beta1Bech32PrefixResponse {
158
233
  bech32_prefix?: string;
159
234
  }
160
235
 
236
+ /**
237
+ * MsgUpdateParamsResponse defines the response structure for executing a
238
+ MsgUpdateParams message.
239
+
240
+ Since: cosmos-sdk 0.47
241
+ */
242
+ export type V1Beta1MsgUpdateParamsResponse = object;
243
+
161
244
  /**
162
245
  * message SomeRequest {
163
246
  Foo some_parameter = 1;
@@ -257,6 +340,16 @@ export interface V1Beta1QueryAccountAddressByIDResponse {
257
340
  account_address?: string;
258
341
  }
259
342
 
343
+ /**
344
+ * QueryAccountInfoResponse is the Query/AccountInfo response type.
345
+
346
+ Since: cosmos-sdk 0.47
347
+ */
348
+ export interface V1Beta1QueryAccountInfoResponse {
349
+ /** info is the account info which is represented by BaseAccount. */
350
+ info?: V1Beta1BaseAccount;
351
+ }
352
+
260
353
  /**
261
354
  * QueryAccountResponse is the response type for the Query/Account RPC method.
262
355
  */
@@ -486,11 +579,27 @@ export class HttpClient<SecurityDataType = unknown> {
486
579
  */
487
580
  export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
488
581
  /**
489
- * @description Since: cosmos-sdk 0.43
582
+ * @description Since: cosmos-sdk 0.47
583
+ *
584
+ * @tags Query
585
+ * @name QueryAccountInfo
586
+ * @summary AccountInfo queries account info which is common to all account types.
587
+ * @request GET:/cosmos/auth/v1beta1/account_info/{address}
588
+ */
589
+ queryAccountInfo = (address: string, params: RequestParams = {}) =>
590
+ this.request<V1Beta1QueryAccountInfoResponse, RpcStatus>({
591
+ path: `/cosmos/auth/v1beta1/account_info/${address}`,
592
+ method: "GET",
593
+ format: "json",
594
+ ...params,
595
+ });
596
+
597
+ /**
598
+ * @description When called from another module, this query might consume a high amount of gas if the pagination field is incorrectly set. Since: cosmos-sdk 0.43
490
599
  *
491
600
  * @tags Query
492
601
  * @name QueryAccounts
493
- * @summary Accounts returns all the existing accounts
602
+ * @summary Accounts returns all the existing accounts.
494
603
  * @request GET:/cosmos/auth/v1beta1/accounts
495
604
  */
496
605
  queryAccounts = (
@@ -535,10 +644,11 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
535
644
  * @summary AccountAddressByID returns account address based on account number.
536
645
  * @request GET:/cosmos/auth/v1beta1/address_by_id/{id}
537
646
  */
538
- queryAccountAddressByID = (id: string, params: RequestParams = {}) =>
647
+ queryAccountAddressByID = (id: string, query?: { account_id?: string }, params: RequestParams = {}) =>
539
648
  this.request<V1Beta1QueryAccountAddressByIDResponse, RpcStatus>({
540
649
  path: `/cosmos/auth/v1beta1/address_by_id/${id}`,
541
650
  method: "GET",
651
+ query: query,
542
652
  format: "json",
543
653
  ...params,
544
654
  });
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export const protobufPackage = "amino";