decentralcardgame-cardchain-client-ts 0.0.9 → 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 (659) 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/client.ts +11 -10
  9. package/cosmos.auth.v1beta1/module.ts +2 -0
  10. package/cosmos.auth.v1beta1/rest.ts +113 -3
  11. package/cosmos.auth.v1beta1/types/amino/amino.ts +2 -0
  12. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.ts +104 -0
  13. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.ts +1 -1
  14. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.ts +157 -4
  15. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/tx.ts +172 -0
  16. package/cosmos.auth.v1beta1/types/cosmos/query/v1/query.ts +2 -0
  17. package/cosmos.auth.v1beta1/types.ts +2 -0
  18. package/cosmos.authz.v1beta1/module.ts +29 -29
  19. package/cosmos.authz.v1beta1/registry.ts +2 -2
  20. package/cosmos.authz.v1beta1/types/amino/amino.ts +2 -0
  21. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.ts +1 -1
  22. package/cosmos.bank.v1beta1/module.ts +24 -24
  23. package/cosmos.bank.v1beta1/registry.ts +2 -2
  24. package/cosmos.bank.v1beta1/rest.ts +99 -6
  25. package/cosmos.bank.v1beta1/types/amino/amino.ts +2 -0
  26. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.ts +24 -2
  27. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.ts +9 -0
  28. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.ts +25 -4
  29. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.ts +356 -5
  30. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.ts +305 -1
  31. package/cosmos.bank.v1beta1/types/cosmos/query/v1/query.ts +2 -0
  32. package/cosmos.base.tendermint.v1beta1/rest.ts +18 -27
  33. package/cosmos.base.tendermint.v1beta1/types/amino/amino.ts +2 -0
  34. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.ts +16 -46
  35. package/{DecentralCardGame.cardchain.cardchain/index.js → cosmos.consensus.v1/index.ts} +1 -0
  36. package/cosmos.consensus.v1/module.ts +129 -0
  37. package/cosmos.consensus.v1/registry.ts +9 -0
  38. package/cosmos.consensus.v1/rest.ts +268 -0
  39. package/cosmos.consensus.v1/types/cosmos/consensus/v1/query.ts +147 -0
  40. package/cosmos.consensus.v1/types/cosmos/consensus/v1/tx.ts +196 -0
  41. package/cosmos.consensus.v1/types/cosmos_proto/cosmos.ts +247 -0
  42. package/cosmos.consensus.v1/types/google/api/http.ts +589 -0
  43. package/cosmos.consensus.v1/types/google/protobuf/descriptor.ts +3753 -0
  44. package/cosmos.consensus.v1/types/google/protobuf/duration.ts +187 -0
  45. package/cosmos.consensus.v1/types/tendermint/types/params.ts +498 -0
  46. package/cosmos.consensus.v1/types.ts +5 -0
  47. package/cosmos.crisis.v1beta1/module.ts +34 -1
  48. package/cosmos.crisis.v1beta1/registry.ts +2 -0
  49. package/cosmos.crisis.v1beta1/rest.ts +19 -0
  50. package/cosmos.crisis.v1beta1/types/amino/amino.ts +2 -0
  51. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.ts +140 -1
  52. package/cosmos.distribution.v1beta1/module.ts +91 -25
  53. package/cosmos.distribution.v1beta1/registry.ts +8 -4
  54. package/cosmos.distribution.v1beta1/rest.ts +66 -7
  55. package/cosmos.distribution.v1beta1/types/amino/amino.ts +2 -0
  56. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.ts +19 -0
  57. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.ts +4 -4
  58. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.ts +158 -1
  59. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.ts +300 -3
  60. package/cosmos.evidence.v1beta1/rest.ts +4 -3
  61. package/cosmos.evidence.v1beta1/types/amino/amino.ts +2 -0
  62. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.ts +7 -1
  63. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.ts +25 -3
  64. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.ts +2 -0
  65. package/cosmos.feegrant.v1beta1/types/amino/amino.ts +2 -0
  66. package/cosmos.gov.v1/module.ts +62 -27
  67. package/cosmos.gov.v1/registry.ts +4 -2
  68. package/cosmos.gov.v1/rest.ts +155 -41
  69. package/cosmos.gov.v1/types/amino/amino.ts +2 -0
  70. package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.ts +40 -5
  71. package/cosmos.gov.v1/types/cosmos/gov/v1/gov.ts +277 -6
  72. package/cosmos.gov.v1/types/cosmos/gov/v1/query.ts +45 -7
  73. package/cosmos.gov.v1/types/cosmos/gov/v1/tx.ts +186 -3
  74. package/cosmos.gov.v1/types.ts +2 -0
  75. package/cosmos.gov.v1beta1/module.ts +36 -36
  76. package/cosmos.gov.v1beta1/registry.ts +4 -4
  77. package/cosmos.gov.v1beta1/rest.ts +65 -96
  78. package/cosmos.gov.v1beta1/types/amino/amino.ts +2 -0
  79. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.ts +3 -3
  80. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.ts +45 -10
  81. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.ts +4 -2
  82. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.ts +16 -1
  83. package/cosmos.group.v1/module.ts +149 -147
  84. package/cosmos.group.v1/registry.ts +16 -16
  85. package/cosmos.group.v1/rest.ts +29 -9
  86. package/cosmos.group.v1/types/amino/amino.ts +2 -0
  87. package/cosmos.group.v1/types/cosmos/group/v1/events.ts +89 -1
  88. package/cosmos.group.v1/types/cosmos/group/v1/query.ts +5 -5
  89. package/cosmos.group.v1/types/cosmos/group/v1/tx.ts +79 -49
  90. package/cosmos.group.v1/types/cosmos/group/v1/types.ts +46 -6
  91. package/cosmos.group.v1/types.ts +2 -0
  92. package/cosmos.mint.v1beta1/rest.ts +9 -1
  93. package/cosmos.mint.v1beta1/types/amino/amino.ts +2 -0
  94. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.ts +1 -1
  95. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.ts +1 -1
  96. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/tx.ts +172 -0
  97. package/cosmos.nft.v1beta1/rest.ts +18 -22
  98. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.ts +10 -0
  99. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.ts +1 -0
  100. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.ts +20 -0
  101. package/cosmos.nft.v1beta1/types/cosmos_proto/cosmos.ts +247 -0
  102. package/cosmos.params.v1beta1/types/amino/amino.ts +2 -0
  103. package/cosmos.slashing.v1beta1/rest.ts +8 -0
  104. package/cosmos.slashing.v1beta1/types/amino/amino.ts +2 -0
  105. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.ts +1 -1
  106. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.ts +139 -0
  107. package/cosmos.staking.v1beta1/module.ts +50 -48
  108. package/cosmos.staking.v1beta1/registry.ts +6 -6
  109. package/cosmos.staking.v1beta1/rest.ts +49 -8
  110. package/cosmos.staking.v1beta1/types/amino/amino.ts +2 -0
  111. package/cosmos.staking.v1beta1/types/cosmos/query/v1/query.ts +2 -0
  112. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.ts +1 -1
  113. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.ts +36 -5
  114. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.ts +206 -3
  115. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.ts +138 -1
  116. package/cosmos.staking.v1beta1/types/tendermint/abci/types.ts +4525 -0
  117. package/cosmos.staking.v1beta1/types/tendermint/types/params.ts +498 -0
  118. package/cosmos.staking.v1beta1/types.ts +2 -0
  119. package/cosmos.tx.v1beta1/rest.ts +177 -16
  120. package/cosmos.tx.v1beta1/types/amino/amino.ts +2 -0
  121. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.ts +524 -2
  122. package/cosmos.tx.v1beta1/types/tendermint/abci/types.ts +703 -332
  123. package/cosmos.tx.v1beta1/types/tendermint/types/params.ts +9 -25
  124. package/cosmos.upgrade.v1beta1/rest.ts +0 -1
  125. package/cosmos.upgrade.v1beta1/types/amino/amino.ts +2 -0
  126. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.ts +3 -3
  127. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.ts +6 -4
  128. package/cosmos.vesting.v1beta1/module.ts +29 -29
  129. package/cosmos.vesting.v1beta1/registry.ts +2 -2
  130. package/cosmos.vesting.v1beta1/types/amino/amino.ts +2 -0
  131. package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.ts +104 -0
  132. package/ibc.applications.interchain_accounts.controller.v1/rest.ts +1 -0
  133. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/tx.ts +16 -4
  134. package/ibc.applications.transfer.v1/module.ts +5 -34
  135. package/ibc.applications.transfer.v1/registry.ts +0 -2
  136. package/ibc.applications.transfer.v1/rest.ts +30 -1
  137. package/ibc.applications.transfer.v1/types/amino/amino.ts +2 -0
  138. package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +6 -4
  139. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/authz.ts +178 -0
  140. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.ts +23 -2
  141. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.ts +120 -0
  142. package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.ts +5 -1
  143. package/ibc.applications.transfer.v1/types.ts +4 -0
  144. package/ibc.core.channel.v1/rest.ts +1 -0
  145. package/ibc.core.channel.v1/types/amino/amino.ts +2 -0
  146. package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +6 -4
  147. package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.ts +14 -2
  148. package/ibc.core.channel.v1/types/ibc/core/client/v1/client.ts +5 -1
  149. package/ibc.core.client.v1/rest.ts +5 -1
  150. package/ibc.core.client.v1/types/amino/amino.ts +2 -0
  151. package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +6 -4
  152. package/ibc.core.client.v1/types/ibc/core/client/v1/client.ts +5 -1
  153. package/ibc.core.client.v1/types/ibc/core/client/v1/tx.ts +28 -14
  154. package/ibc.core.connection.v1/types/amino/amino.ts +2 -0
  155. package/ibc.core.connection.v1/types/{proofs.ts → cosmos/ics23/v1/proofs.ts} +1 -1
  156. package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +6 -4
  157. package/ibc.core.connection.v1/types/ibc/core/client/v1/client.ts +5 -1
  158. package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.ts +1 -1
  159. package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.ts +34 -0
  160. package/index.ts +3 -1
  161. package/package.json +1 -4
  162. package/DecentralCardGame.cardchain.cardchain/module.js +0 -1046
  163. package/DecentralCardGame.cardchain.cardchain/registry.js +0 -85
  164. package/DecentralCardGame.cardchain.cardchain/rest.js +0 -396
  165. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.js +0 -562
  166. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection.js +0 -365
  167. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/collection_proposal.js +0 -93
  168. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.js +0 -102
  169. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.js +0 -350
  170. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.js +0 -254
  171. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.js +0 -88
  172. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.js +0 -210
  173. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.js +0 -67
  174. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.js +0 -73
  175. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.js +0 -275
  176. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.js +0 -1980
  177. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.js +0 -85
  178. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.js +0 -148
  179. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.js +0 -93
  180. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.js +0 -4294
  181. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.js +0 -496
  182. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/vote_right.js +0 -84
  183. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_result.js +0 -127
  184. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting_results.js +0 -148
  185. package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  186. package/DecentralCardGame.cardchain.cardchain/types/cosmos/base/v1beta1/coin.js +0 -192
  187. package/DecentralCardGame.cardchain.cardchain/types/cosmos_proto/cosmos.js +0 -171
  188. package/DecentralCardGame.cardchain.cardchain/types/google/api/http.js +0 -260
  189. package/DecentralCardGame.cardchain.cardchain/types/google/protobuf/descriptor.js +0 -2830
  190. package/DecentralCardGame.cardchain.cardchain/types.js +0 -23
  191. package/cosmos.auth.v1beta1/index.js +0 -5
  192. package/cosmos.auth.v1beta1/module.js +0 -62
  193. package/cosmos.auth.v1beta1/registry.js +0 -2
  194. package/cosmos.auth.v1beta1/rest.js +0 -213
  195. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.js +0 -260
  196. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.js +0 -67
  197. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.js +0 -868
  198. package/cosmos.auth.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  199. package/cosmos.auth.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  200. package/cosmos.auth.v1beta1/types/gogoproto/gogo.js +0 -2
  201. package/cosmos.auth.v1beta1/types/google/api/annotations.js +0 -2
  202. package/cosmos.auth.v1beta1/types/google/api/http.js +0 -260
  203. package/cosmos.auth.v1beta1/types/google/protobuf/any.js +0 -99
  204. package/cosmos.auth.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  205. package/cosmos.auth.v1beta1/types.js +0 -4
  206. package/cosmos.authz.v1beta1/index.js +0 -5
  207. package/cosmos.authz.v1beta1/module.js +0 -140
  208. package/cosmos.authz.v1beta1/registry.js +0 -9
  209. package/cosmos.authz.v1beta1/rest.js +0 -131
  210. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/authz.js +0 -244
  211. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/event.js +0 -128
  212. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/genesis.js +0 -54
  213. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/query.js +0 -394
  214. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.js +0 -362
  215. package/cosmos.authz.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  216. package/cosmos.authz.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  217. package/cosmos.authz.v1beta1/types/gogoproto/gogo.js +0 -2
  218. package/cosmos.authz.v1beta1/types/google/api/annotations.js +0 -2
  219. package/cosmos.authz.v1beta1/types/google/api/http.js +0 -260
  220. package/cosmos.authz.v1beta1/types/google/protobuf/any.js +0 -99
  221. package/cosmos.authz.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  222. package/cosmos.authz.v1beta1/types/google/protobuf/timestamp.js +0 -84
  223. package/cosmos.authz.v1beta1/types.js +0 -7
  224. package/cosmos.bank.v1beta1/index.js +0 -5
  225. package/cosmos.bank.v1beta1/module.js +0 -125
  226. package/cosmos.bank.v1beta1/registry.js +0 -7
  227. package/cosmos.bank.v1beta1/rest.js +0 -222
  228. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.js +0 -50
  229. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.js +0 -455
  230. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.js +0 -154
  231. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.js +0 -1014
  232. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.js +0 -219
  233. package/cosmos.bank.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  234. package/cosmos.bank.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  235. package/cosmos.bank.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  236. package/cosmos.bank.v1beta1/types/gogoproto/gogo.js +0 -2
  237. package/cosmos.bank.v1beta1/types/google/api/annotations.js +0 -2
  238. package/cosmos.bank.v1beta1/types/google/api/http.js +0 -260
  239. package/cosmos.bank.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  240. package/cosmos.bank.v1beta1/types.js +0 -11
  241. package/cosmos.base.tendermint.v1beta1/index.js +0 -5
  242. package/cosmos.base.tendermint.v1beta1/module.js +0 -70
  243. package/cosmos.base.tendermint.v1beta1/registry.js +0 -2
  244. package/cosmos.base.tendermint.v1beta1/rest.js +0 -209
  245. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  246. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.js +0 -1281
  247. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/types.js +0 -350
  248. package/cosmos.base.tendermint.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  249. package/cosmos.base.tendermint.v1beta1/types/gogoproto/gogo.js +0 -2
  250. package/cosmos.base.tendermint.v1beta1/types/google/api/annotations.js +0 -2
  251. package/cosmos.base.tendermint.v1beta1/types/google/api/http.js +0 -260
  252. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/any.js +0 -99
  253. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  254. package/cosmos.base.tendermint.v1beta1/types/google/protobuf/timestamp.js +0 -84
  255. package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/keys.js +0 -100
  256. package/cosmos.base.tendermint.v1beta1/types/tendermint/crypto/proof.js +0 -356
  257. package/cosmos.base.tendermint.v1beta1/types/tendermint/p2p/types.js +0 -352
  258. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/block.js +0 -86
  259. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/evidence.js +0 -343
  260. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/types.js +0 -1207
  261. package/cosmos.base.tendermint.v1beta1/types/tendermint/types/validator.js +0 -254
  262. package/cosmos.base.tendermint.v1beta1/types/tendermint/version/types.js +0 -133
  263. package/cosmos.base.tendermint.v1beta1/types.js +0 -8
  264. package/cosmos.crisis.v1beta1/index.js +0 -5
  265. package/cosmos.crisis.v1beta1/module.js +0 -81
  266. package/cosmos.crisis.v1beta1/registry.js +0 -5
  267. package/cosmos.crisis.v1beta1/rest.js +0 -83
  268. package/cosmos.crisis.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  269. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/genesis.js +0 -51
  270. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.js +0 -111
  271. package/cosmos.crisis.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  272. package/cosmos.crisis.v1beta1/types/gogoproto/gogo.js +0 -2
  273. package/cosmos.crisis.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  274. package/cosmos.crisis.v1beta1/types.js +0 -1
  275. package/cosmos.distribution.v1beta1/index.js +0 -5
  276. package/cosmos.distribution.v1beta1/module.js +0 -189
  277. package/cosmos.distribution.v1beta1/registry.js +0 -11
  278. package/cosmos.distribution.v1beta1/rest.js +0 -214
  279. package/cosmos.distribution.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  280. package/cosmos.distribution.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  281. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.js +0 -737
  282. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.js +0 -656
  283. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.js +0 -926
  284. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.js +0 -396
  285. package/cosmos.distribution.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  286. package/cosmos.distribution.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  287. package/cosmos.distribution.v1beta1/types/gogoproto/gogo.js +0 -2
  288. package/cosmos.distribution.v1beta1/types/google/api/annotations.js +0 -2
  289. package/cosmos.distribution.v1beta1/types/google/api/http.js +0 -260
  290. package/cosmos.distribution.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  291. package/cosmos.distribution.v1beta1/types.js +0 -20
  292. package/cosmos.evidence.v1beta1/index.js +0 -5
  293. package/cosmos.evidence.v1beta1/module.js +0 -84
  294. package/cosmos.evidence.v1beta1/registry.js +0 -5
  295. package/cosmos.evidence.v1beta1/rest.js +0 -115
  296. package/cosmos.evidence.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  297. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.js +0 -124
  298. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/genesis.js +0 -50
  299. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.js +0 -254
  300. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.js +0 -154
  301. package/cosmos.evidence.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  302. package/cosmos.evidence.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  303. package/cosmos.evidence.v1beta1/types/gogoproto/gogo.js +0 -2
  304. package/cosmos.evidence.v1beta1/types/google/api/annotations.js +0 -2
  305. package/cosmos.evidence.v1beta1/types/google/api/http.js +0 -260
  306. package/cosmos.evidence.v1beta1/types/google/protobuf/any.js +0 -99
  307. package/cosmos.evidence.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  308. package/cosmos.evidence.v1beta1/types/google/protobuf/timestamp.js +0 -84
  309. package/cosmos.evidence.v1beta1/types.js +0 -2
  310. package/cosmos.feegrant.v1beta1/index.js +0 -5
  311. package/cosmos.feegrant.v1beta1/module.js +0 -113
  312. package/cosmos.feegrant.v1beta1/registry.js +0 -7
  313. package/cosmos.feegrant.v1beta1/rest.js +0 -130
  314. package/cosmos.feegrant.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  315. package/cosmos.feegrant.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  316. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/feegrant.js +0 -307
  317. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/genesis.js +0 -52
  318. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/query.js +0 -357
  319. package/cosmos.feegrant.v1beta1/types/cosmos/feegrant/v1beta1/tx.js +0 -205
  320. package/cosmos.feegrant.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  321. package/cosmos.feegrant.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  322. package/cosmos.feegrant.v1beta1/types/gogoproto/gogo.js +0 -2
  323. package/cosmos.feegrant.v1beta1/types/google/api/annotations.js +0 -2
  324. package/cosmos.feegrant.v1beta1/types/google/api/http.js +0 -260
  325. package/cosmos.feegrant.v1beta1/types/google/protobuf/any.js +0 -99
  326. package/cosmos.feegrant.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  327. package/cosmos.feegrant.v1beta1/types/google/protobuf/duration.js +0 -84
  328. package/cosmos.feegrant.v1beta1/types/google/protobuf/timestamp.js +0 -84
  329. package/cosmos.feegrant.v1beta1/types.js +0 -5
  330. package/cosmos.gov.v1/index.js +0 -5
  331. package/cosmos.gov.v1/module.js +0 -167
  332. package/cosmos.gov.v1/registry.js +0 -11
  333. package/cosmos.gov.v1/rest.js +0 -242
  334. package/cosmos.gov.v1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  335. package/cosmos.gov.v1/types/cosmos/base/v1beta1/coin.js +0 -192
  336. package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.js +0 -162
  337. package/cosmos.gov.v1/types/cosmos/gov/v1/gov.js +0 -766
  338. package/cosmos.gov.v1/types/cosmos/gov/v1/query.js +0 -917
  339. package/cosmos.gov.v1/types/cosmos/gov/v1/tx.js +0 -590
  340. package/cosmos.gov.v1/types/cosmos/msg/v1/msg.js +0 -2
  341. package/cosmos.gov.v1/types/cosmos_proto/cosmos.js +0 -171
  342. package/cosmos.gov.v1/types/gogoproto/gogo.js +0 -2
  343. package/cosmos.gov.v1/types/google/api/annotations.js +0 -2
  344. package/cosmos.gov.v1/types/google/api/http.js +0 -260
  345. package/cosmos.gov.v1/types/google/protobuf/any.js +0 -99
  346. package/cosmos.gov.v1/types/google/protobuf/descriptor.js +0 -2830
  347. package/cosmos.gov.v1/types/google/protobuf/duration.js +0 -84
  348. package/cosmos.gov.v1/types/google/protobuf/timestamp.js +0 -84
  349. package/cosmos.gov.v1/types.js +0 -9
  350. package/cosmos.gov.v1beta1/index.js +0 -5
  351. package/cosmos.gov.v1beta1/module.js +0 -169
  352. package/cosmos.gov.v1beta1/registry.js +0 -11
  353. package/cosmos.gov.v1beta1/rest.js +0 -242
  354. package/cosmos.gov.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  355. package/cosmos.gov.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  356. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.js +0 -162
  357. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.js +0 -832
  358. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.js +0 -917
  359. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.js +0 -467
  360. package/cosmos.gov.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  361. package/cosmos.gov.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  362. package/cosmos.gov.v1beta1/types/gogoproto/gogo.js +0 -2
  363. package/cosmos.gov.v1beta1/types/google/api/annotations.js +0 -2
  364. package/cosmos.gov.v1beta1/types/google/api/http.js +0 -260
  365. package/cosmos.gov.v1beta1/types/google/protobuf/any.js +0 -99
  366. package/cosmos.gov.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  367. package/cosmos.gov.v1beta1/types/google/protobuf/duration.js +0 -84
  368. package/cosmos.gov.v1beta1/types/google/protobuf/timestamp.js +0 -84
  369. package/cosmos.gov.v1beta1/types.js +0 -10
  370. package/cosmos.group.v1/index.js +0 -5
  371. package/cosmos.group.v1/module.js +0 -421
  372. package/cosmos.group.v1/registry.js +0 -31
  373. package/cosmos.group.v1/rest.js +0 -366
  374. package/cosmos.group.v1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  375. package/cosmos.group.v1/types/cosmos/group/v1/events.js +0 -433
  376. package/cosmos.group.v1/types/cosmos/group/v1/genesis.js +0 -177
  377. package/cosmos.group.v1/types/cosmos/group/v1/query.js +0 -1578
  378. package/cosmos.group.v1/types/cosmos/group/v1/tx.js +0 -1621
  379. package/cosmos.group.v1/types/cosmos/group/v1/types.js +0 -1105
  380. package/cosmos.group.v1/types/cosmos/msg/v1/msg.js +0 -2
  381. package/cosmos.group.v1/types/cosmos_proto/cosmos.js +0 -171
  382. package/cosmos.group.v1/types/gogoproto/gogo.js +0 -2
  383. package/cosmos.group.v1/types/google/api/annotations.js +0 -2
  384. package/cosmos.group.v1/types/google/api/http.js +0 -260
  385. package/cosmos.group.v1/types/google/protobuf/any.js +0 -99
  386. package/cosmos.group.v1/types/google/protobuf/descriptor.js +0 -2830
  387. package/cosmos.group.v1/types/google/protobuf/duration.js +0 -84
  388. package/cosmos.group.v1/types/google/protobuf/timestamp.js +0 -84
  389. package/cosmos.group.v1/types.js +0 -21
  390. package/cosmos.mint.v1beta1/index.js +0 -5
  391. package/cosmos.mint.v1beta1/module.js +0 -60
  392. package/cosmos.mint.v1beta1/registry.js +0 -2
  393. package/cosmos.mint.v1beta1/rest.js +0 -128
  394. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.js +0 -63
  395. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.js +0 -179
  396. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/query.js +0 -298
  397. package/cosmos.mint.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  398. package/cosmos.mint.v1beta1/types/gogoproto/gogo.js +0 -2
  399. package/cosmos.mint.v1beta1/types/google/api/annotations.js +0 -2
  400. package/cosmos.mint.v1beta1/types/google/api/http.js +0 -260
  401. package/cosmos.mint.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  402. package/cosmos.mint.v1beta1/types.js +0 -3
  403. package/cosmos.nft.v1beta1/index.js +0 -5
  404. package/cosmos.nft.v1beta1/module.js +0 -68
  405. package/cosmos.nft.v1beta1/registry.js +0 -2
  406. package/cosmos.nft.v1beta1/rest.js +0 -187
  407. package/cosmos.nft.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  408. package/cosmos.nft.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  409. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.js +0 -198
  410. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.js +0 -126
  411. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/nft.js +0 -183
  412. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.js +0 -752
  413. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/tx.js +0 -120
  414. package/cosmos.nft.v1beta1/types/google/api/annotations.js +0 -2
  415. package/cosmos.nft.v1beta1/types/google/api/http.js +0 -260
  416. package/cosmos.nft.v1beta1/types/google/protobuf/any.js +0 -99
  417. package/cosmos.nft.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  418. package/cosmos.nft.v1beta1/types.js +0 -7
  419. package/cosmos.params.v1beta1/index.js +0 -5
  420. package/cosmos.params.v1beta1/module.js +0 -62
  421. package/cosmos.params.v1beta1/registry.js +0 -2
  422. package/cosmos.params.v1beta1/rest.js +0 -116
  423. package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/params.js +0 -133
  424. package/cosmos.params.v1beta1/types/cosmos/params/v1beta1/query.js +0 -257
  425. package/cosmos.params.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  426. package/cosmos.params.v1beta1/types/gogoproto/gogo.js +0 -2
  427. package/cosmos.params.v1beta1/types/google/api/annotations.js +0 -2
  428. package/cosmos.params.v1beta1/types/google/api/http.js +0 -260
  429. package/cosmos.params.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  430. package/cosmos.params.v1beta1/types.js +0 -4
  431. package/cosmos.slashing.v1beta1/index.js +0 -5
  432. package/cosmos.slashing.v1beta1/module.js +0 -92
  433. package/cosmos.slashing.v1beta1/registry.js +0 -5
  434. package/cosmos.slashing.v1beta1/rest.js +0 -129
  435. package/cosmos.slashing.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  436. package/cosmos.slashing.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  437. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.js +0 -279
  438. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/query.js +0 -300
  439. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/slashing.js +0 -275
  440. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.js +0 -91
  441. package/cosmos.slashing.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  442. package/cosmos.slashing.v1beta1/types/gogoproto/gogo.js +0 -2
  443. package/cosmos.slashing.v1beta1/types/google/api/annotations.js +0 -2
  444. package/cosmos.slashing.v1beta1/types/google/api/http.js +0 -260
  445. package/cosmos.slashing.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  446. package/cosmos.slashing.v1beta1/types/google/protobuf/duration.js +0 -84
  447. package/cosmos.slashing.v1beta1/types/google/protobuf/timestamp.js +0 -84
  448. package/cosmos.slashing.v1beta1/types.js +0 -6
  449. package/cosmos.staking.v1beta1/index.js +0 -5
  450. package/cosmos.staking.v1beta1/module.js +0 -243
  451. package/cosmos.staking.v1beta1/registry.js +0 -15
  452. package/cosmos.staking.v1beta1/rest.js +0 -308
  453. package/cosmos.staking.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  454. package/cosmos.staking.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  455. package/cosmos.staking.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  456. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/authz.js +0 -184
  457. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.js +0 -259
  458. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.js +0 -1568
  459. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.js +0 -1436
  460. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.js +0 -768
  461. package/cosmos.staking.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  462. package/cosmos.staking.v1beta1/types/gogoproto/gogo.js +0 -2
  463. package/cosmos.staking.v1beta1/types/google/api/annotations.js +0 -2
  464. package/cosmos.staking.v1beta1/types/google/api/http.js +0 -260
  465. package/cosmos.staking.v1beta1/types/google/protobuf/any.js +0 -99
  466. package/cosmos.staking.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  467. package/cosmos.staking.v1beta1/types/google/protobuf/duration.js +0 -84
  468. package/cosmos.staking.v1beta1/types/google/protobuf/timestamp.js +0 -84
  469. package/cosmos.staking.v1beta1/types/tendermint/crypto/keys.js +0 -100
  470. package/cosmos.staking.v1beta1/types/tendermint/crypto/proof.js +0 -356
  471. package/cosmos.staking.v1beta1/types/tendermint/types/types.js +0 -1207
  472. package/cosmos.staking.v1beta1/types/tendermint/types/validator.js +0 -254
  473. package/cosmos.staking.v1beta1/types/tendermint/version/types.js +0 -133
  474. package/cosmos.staking.v1beta1/types.js +0 -24
  475. package/cosmos.tx.v1beta1/index.js +0 -5
  476. package/cosmos.tx.v1beta1/module.js +0 -82
  477. package/cosmos.tx.v1beta1/registry.js +0 -2
  478. package/cosmos.tx.v1beta1/rest.js +0 -256
  479. package/cosmos.tx.v1beta1/types/cosmos/base/abci/v1beta1/abci.js +0 -803
  480. package/cosmos.tx.v1beta1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  481. package/cosmos.tx.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  482. package/cosmos.tx.v1beta1/types/cosmos/crypto/multisig/v1beta1/multisig.js +0 -147
  483. package/cosmos.tx.v1beta1/types/cosmos/tx/signing/v1beta1/signing.js +0 -449
  484. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.js +0 -802
  485. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/tx.js +0 -959
  486. package/cosmos.tx.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  487. package/cosmos.tx.v1beta1/types/gogoproto/gogo.js +0 -2
  488. package/cosmos.tx.v1beta1/types/google/api/annotations.js +0 -2
  489. package/cosmos.tx.v1beta1/types/google/api/http.js +0 -260
  490. package/cosmos.tx.v1beta1/types/google/protobuf/any.js +0 -99
  491. package/cosmos.tx.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  492. package/cosmos.tx.v1beta1/types/google/protobuf/duration.js +0 -84
  493. package/cosmos.tx.v1beta1/types/google/protobuf/timestamp.js +0 -84
  494. package/cosmos.tx.v1beta1/types/tendermint/abci/types.js +0 -3486
  495. package/cosmos.tx.v1beta1/types/tendermint/crypto/keys.js +0 -100
  496. package/cosmos.tx.v1beta1/types/tendermint/crypto/proof.js +0 -356
  497. package/cosmos.tx.v1beta1/types/tendermint/types/block.js +0 -86
  498. package/cosmos.tx.v1beta1/types/tendermint/types/evidence.js +0 -343
  499. package/cosmos.tx.v1beta1/types/tendermint/types/params.js +0 -378
  500. package/cosmos.tx.v1beta1/types/tendermint/types/types.js +0 -1207
  501. package/cosmos.tx.v1beta1/types/tendermint/types/validator.js +0 -254
  502. package/cosmos.tx.v1beta1/types/tendermint/version/types.js +0 -133
  503. package/cosmos.tx.v1beta1/types.js +0 -14
  504. package/cosmos.upgrade.v1beta1/index.js +0 -5
  505. package/cosmos.upgrade.v1beta1/module.js +0 -113
  506. package/cosmos.upgrade.v1beta1/registry.js +0 -7
  507. package/cosmos.upgrade.v1beta1/rest.js +0 -162
  508. package/cosmos.upgrade.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  509. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/query.js +0 -501
  510. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.js +0 -183
  511. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.js +0 -302
  512. package/cosmos.upgrade.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  513. package/cosmos.upgrade.v1beta1/types/gogoproto/gogo.js +0 -2
  514. package/cosmos.upgrade.v1beta1/types/google/api/annotations.js +0 -2
  515. package/cosmos.upgrade.v1beta1/types/google/api/http.js +0 -260
  516. package/cosmos.upgrade.v1beta1/types/google/protobuf/any.js +0 -99
  517. package/cosmos.upgrade.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  518. package/cosmos.upgrade.v1beta1/types/google/protobuf/timestamp.js +0 -84
  519. package/cosmos.upgrade.v1beta1/types.js +0 -5
  520. package/cosmos.vesting.v1beta1/index.js +0 -5
  521. package/cosmos.vesting.v1beta1/module.js +0 -140
  522. package/cosmos.vesting.v1beta1/registry.js +0 -9
  523. package/cosmos.vesting.v1beta1/rest.js +0 -83
  524. package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.js +0 -260
  525. package/cosmos.vesting.v1beta1/types/cosmos/base/v1beta1/coin.js +0 -192
  526. package/cosmos.vesting.v1beta1/types/cosmos/msg/v1/msg.js +0 -2
  527. package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/tx.js +0 -383
  528. package/cosmos.vesting.v1beta1/types/cosmos/vesting/v1beta1/vesting.js +0 -422
  529. package/cosmos.vesting.v1beta1/types/cosmos_proto/cosmos.js +0 -171
  530. package/cosmos.vesting.v1beta1/types/gogoproto/gogo.js +0 -2
  531. package/cosmos.vesting.v1beta1/types/google/protobuf/any.js +0 -99
  532. package/cosmos.vesting.v1beta1/types/google/protobuf/descriptor.js +0 -2830
  533. package/cosmos.vesting.v1beta1/types.js +0 -7
  534. package/ibc.applications.interchain_accounts.controller.v1/index.js +0 -5
  535. package/ibc.applications.interchain_accounts.controller.v1/module.js +0 -58
  536. package/ibc.applications.interchain_accounts.controller.v1/registry.js +0 -2
  537. package/ibc.applications.interchain_accounts.controller.v1/rest.js +0 -123
  538. package/ibc.applications.interchain_accounts.controller.v1/types/gogoproto/gogo.js +0 -2
  539. package/ibc.applications.interchain_accounts.controller.v1/types/google/api/annotations.js +0 -2
  540. package/ibc.applications.interchain_accounts.controller.v1/types/google/api/http.js +0 -260
  541. package/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/any.js +0 -99
  542. package/ibc.applications.interchain_accounts.controller.v1/types/google/protobuf/descriptor.js +0 -2830
  543. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/controller.js +0 -47
  544. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/query.js +0 -193
  545. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/tx.js +0 -266
  546. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/v1/packet.js +0 -192
  547. package/ibc.applications.interchain_accounts.controller.v1/types.js +0 -2
  548. package/ibc.applications.interchain_accounts.host.v1/index.js +0 -5
  549. package/ibc.applications.interchain_accounts.host.v1/module.js +0 -58
  550. package/ibc.applications.interchain_accounts.host.v1/registry.js +0 -2
  551. package/ibc.applications.interchain_accounts.host.v1/rest.js +0 -100
  552. package/ibc.applications.interchain_accounts.host.v1/types/gogoproto/gogo.js +0 -2
  553. package/ibc.applications.interchain_accounts.host.v1/types/google/api/annotations.js +0 -2
  554. package/ibc.applications.interchain_accounts.host.v1/types/google/api/http.js +0 -260
  555. package/ibc.applications.interchain_accounts.host.v1/types/google/protobuf/descriptor.js +0 -2830
  556. package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/host.js +0 -63
  557. package/ibc.applications.interchain_accounts.host.v1/types/ibc/applications/interchain_accounts/host/v1/query.js +0 -94
  558. package/ibc.applications.interchain_accounts.host.v1/types.js +0 -2
  559. package/ibc.applications.transfer.v1/index.js +0 -5
  560. package/ibc.applications.transfer.v1/module.js +0 -86
  561. package/ibc.applications.transfer.v1/registry.js +0 -5
  562. package/ibc.applications.transfer.v1/rest.js +0 -157
  563. package/ibc.applications.transfer.v1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  564. package/ibc.applications.transfer.v1/types/cosmos/base/v1beta1/coin.js +0 -192
  565. package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.js +0 -302
  566. package/ibc.applications.transfer.v1/types/cosmos_proto/cosmos.js +0 -171
  567. package/ibc.applications.transfer.v1/types/gogoproto/gogo.js +0 -2
  568. package/ibc.applications.transfer.v1/types/google/api/annotations.js +0 -2
  569. package/ibc.applications.transfer.v1/types/google/api/http.js +0 -260
  570. package/ibc.applications.transfer.v1/types/google/protobuf/any.js +0 -99
  571. package/ibc.applications.transfer.v1/types/google/protobuf/descriptor.js +0 -2830
  572. package/ibc.applications.transfer.v1/types/google/protobuf/timestamp.js +0 -84
  573. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.js +0 -75
  574. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.js +0 -483
  575. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/transfer.js +0 -110
  576. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/tx.js +0 -204
  577. package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.js +0 -448
  578. package/ibc.applications.transfer.v1/types.js +0 -3
  579. package/ibc.core.channel.v1/index.js +0 -5
  580. package/ibc.core.channel.v1/module.js +0 -72
  581. package/ibc.core.channel.v1/registry.js +0 -2
  582. package/ibc.core.channel.v1/rest.js +0 -323
  583. package/ibc.core.channel.v1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  584. package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.js +0 -302
  585. package/ibc.core.channel.v1/types/cosmos_proto/cosmos.js +0 -171
  586. package/ibc.core.channel.v1/types/gogoproto/gogo.js +0 -2
  587. package/ibc.core.channel.v1/types/google/api/annotations.js +0 -2
  588. package/ibc.core.channel.v1/types/google/api/http.js +0 -260
  589. package/ibc.core.channel.v1/types/google/protobuf/any.js +0 -99
  590. package/ibc.core.channel.v1/types/google/protobuf/descriptor.js +0 -2830
  591. package/ibc.core.channel.v1/types/google/protobuf/timestamp.js +0 -84
  592. package/ibc.core.channel.v1/types/ibc/core/channel/v1/channel.js +0 -714
  593. package/ibc.core.channel.v1/types/ibc/core/channel/v1/genesis.js +0 -254
  594. package/ibc.core.channel.v1/types/ibc/core/channel/v1/query.js +0 -1866
  595. package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.js +0 -1425
  596. package/ibc.core.channel.v1/types/ibc/core/client/v1/client.js +0 -448
  597. package/ibc.core.channel.v1/types.js +0 -9
  598. package/ibc.core.client.v1/index.js +0 -5
  599. package/ibc.core.client.v1/module.js +0 -74
  600. package/ibc.core.client.v1/registry.js +0 -2
  601. package/ibc.core.client.v1/rest.js +0 -218
  602. package/ibc.core.client.v1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  603. package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.js +0 -302
  604. package/ibc.core.client.v1/types/cosmos_proto/cosmos.js +0 -171
  605. package/ibc.core.client.v1/types/gogoproto/gogo.js +0 -2
  606. package/ibc.core.client.v1/types/google/api/annotations.js +0 -2
  607. package/ibc.core.client.v1/types/google/api/http.js +0 -260
  608. package/ibc.core.client.v1/types/google/protobuf/any.js +0 -99
  609. package/ibc.core.client.v1/types/google/protobuf/descriptor.js +0 -2830
  610. package/ibc.core.client.v1/types/google/protobuf/timestamp.js +0 -84
  611. package/ibc.core.client.v1/types/ibc/core/client/v1/client.js +0 -448
  612. package/ibc.core.client.v1/types/ibc/core/client/v1/genesis.js +0 -287
  613. package/ibc.core.client.v1/types/ibc/core/client/v1/query.js +0 -1026
  614. package/ibc.core.client.v1/types/ibc/core/client/v1/tx.js +0 -509
  615. package/ibc.core.client.v1/types.js +0 -10
  616. package/ibc.core.connection.v1/index.js +0 -5
  617. package/ibc.core.connection.v1/module.js +0 -70
  618. package/ibc.core.connection.v1/registry.js +0 -2
  619. package/ibc.core.connection.v1/rest.js +0 -191
  620. package/ibc.core.connection.v1/types/cosmos/base/query/v1beta1/pagination.js +0 -190
  621. package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.js +0 -302
  622. package/ibc.core.connection.v1/types/cosmos_proto/cosmos.js +0 -171
  623. package/ibc.core.connection.v1/types/gogoproto/gogo.js +0 -2
  624. package/ibc.core.connection.v1/types/google/api/annotations.js +0 -2
  625. package/ibc.core.connection.v1/types/google/api/http.js +0 -260
  626. package/ibc.core.connection.v1/types/google/protobuf/any.js +0 -99
  627. package/ibc.core.connection.v1/types/google/protobuf/descriptor.js +0 -2830
  628. package/ibc.core.connection.v1/types/google/protobuf/timestamp.js +0 -84
  629. package/ibc.core.connection.v1/types/ibc/core/client/v1/client.js +0 -448
  630. package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.js +0 -223
  631. package/ibc.core.connection.v1/types/ibc/core/connection/v1/connection.js +0 -537
  632. package/ibc.core.connection.v1/types/ibc/core/connection/v1/genesis.js +0 -120
  633. package/ibc.core.connection.v1/types/ibc/core/connection/v1/query.js +0 -766
  634. package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.js +0 -705
  635. package/ibc.core.connection.v1/types/proofs.js +0 -1126
  636. package/ibc.core.connection.v1/types.js +0 -8
  637. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/card.ts +0 -0
  638. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/collection.ts +0 -0
  639. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/collection_proposal.ts +0 -0
  640. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/copyright_proposal.ts +0 -0
  641. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/council.ts +0 -0
  642. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/image.ts +0 -0
  643. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/match.ts +0 -0
  644. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/match_reporter_proposal.ts +0 -0
  645. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/num.ts +0 -0
  646. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/params.ts +0 -0
  647. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/query.ts +0 -0
  648. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/running_average.ts +0 -0
  649. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/sell_offer.ts +0 -0
  650. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/server.ts +0 -0
  651. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/user.ts +0 -0
  652. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/vote_right.ts +0 -0
  653. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/voting_result.ts +0 -0
  654. /package/DecentralCardGame.cardchain.cardchain/types/{cardchain → DecentralCardGame/cardchain}/cardchain/voting_results.ts +0 -0
  655. /package/{cosmos.authz.v1beta1/types/cosmos/msg/v1/msg.js → cosmos.auth.v1beta1/types/cosmos/msg/v1/msg.ts} +0 -0
  656. /package/{cosmos.bank.v1beta1/types/cosmos/msg/v1/msg.js → cosmos.consensus.v1/types/cosmos/msg/v1/msg.ts} +0 -0
  657. /package/{DecentralCardGame.cardchain.cardchain/types/gogoproto/gogo.js → cosmos.consensus.v1/types/gogoproto/gogo.ts} +0 -0
  658. /package/{DecentralCardGame.cardchain.cardchain/types/google/api/annotations.js → cosmos.consensus.v1/types/google/api/annotations.ts} +0 -0
  659. /package/{cosmos.crisis.v1beta1/types/cosmos/msg/v1/msg.js → cosmos.mint.v1beta1/types/cosmos/msg/v1/msg.ts} +0 -0
@@ -0,0 +1,172 @@
1
+ /* eslint-disable */
2
+ import _m0 from "protobufjs/minimal";
3
+ import { Params } from "./mint";
4
+
5
+ export const protobufPackage = "cosmos.mint.v1beta1";
6
+
7
+ /**
8
+ * MsgUpdateParams is the Msg/UpdateParams request type.
9
+ *
10
+ * Since: cosmos-sdk 0.47
11
+ */
12
+ export interface MsgUpdateParams {
13
+ /** authority is the address that controls the module (defaults to x/gov unless overwritten). */
14
+ authority: string;
15
+ /**
16
+ * params defines the x/mint parameters to update.
17
+ *
18
+ * NOTE: All parameters must be supplied.
19
+ */
20
+ params: Params | undefined;
21
+ }
22
+
23
+ /**
24
+ * MsgUpdateParamsResponse defines the response structure for executing a
25
+ * MsgUpdateParams message.
26
+ *
27
+ * Since: cosmos-sdk 0.47
28
+ */
29
+ export interface MsgUpdateParamsResponse {
30
+ }
31
+
32
+ function createBaseMsgUpdateParams(): MsgUpdateParams {
33
+ return { authority: "", params: undefined };
34
+ }
35
+
36
+ export const MsgUpdateParams = {
37
+ encode(message: MsgUpdateParams, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
38
+ if (message.authority !== "") {
39
+ writer.uint32(10).string(message.authority);
40
+ }
41
+ if (message.params !== undefined) {
42
+ Params.encode(message.params, writer.uint32(18).fork()).ldelim();
43
+ }
44
+ return writer;
45
+ },
46
+
47
+ decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateParams {
48
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
49
+ let end = length === undefined ? reader.len : reader.pos + length;
50
+ const message = createBaseMsgUpdateParams();
51
+ while (reader.pos < end) {
52
+ const tag = reader.uint32();
53
+ switch (tag >>> 3) {
54
+ case 1:
55
+ message.authority = reader.string();
56
+ break;
57
+ case 2:
58
+ message.params = Params.decode(reader, reader.uint32());
59
+ break;
60
+ default:
61
+ reader.skipType(tag & 7);
62
+ break;
63
+ }
64
+ }
65
+ return message;
66
+ },
67
+
68
+ fromJSON(object: any): MsgUpdateParams {
69
+ return {
70
+ authority: isSet(object.authority) ? String(object.authority) : "",
71
+ params: isSet(object.params) ? Params.fromJSON(object.params) : undefined,
72
+ };
73
+ },
74
+
75
+ toJSON(message: MsgUpdateParams): unknown {
76
+ const obj: any = {};
77
+ message.authority !== undefined && (obj.authority = message.authority);
78
+ message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined);
79
+ return obj;
80
+ },
81
+
82
+ fromPartial<I extends Exact<DeepPartial<MsgUpdateParams>, I>>(object: I): MsgUpdateParams {
83
+ const message = createBaseMsgUpdateParams();
84
+ message.authority = object.authority ?? "";
85
+ message.params = (object.params !== undefined && object.params !== null)
86
+ ? Params.fromPartial(object.params)
87
+ : undefined;
88
+ return message;
89
+ },
90
+ };
91
+
92
+ function createBaseMsgUpdateParamsResponse(): MsgUpdateParamsResponse {
93
+ return {};
94
+ }
95
+
96
+ export const MsgUpdateParamsResponse = {
97
+ encode(_: MsgUpdateParamsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
98
+ return writer;
99
+ },
100
+
101
+ decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateParamsResponse {
102
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
103
+ let end = length === undefined ? reader.len : reader.pos + length;
104
+ const message = createBaseMsgUpdateParamsResponse();
105
+ while (reader.pos < end) {
106
+ const tag = reader.uint32();
107
+ switch (tag >>> 3) {
108
+ default:
109
+ reader.skipType(tag & 7);
110
+ break;
111
+ }
112
+ }
113
+ return message;
114
+ },
115
+
116
+ fromJSON(_: any): MsgUpdateParamsResponse {
117
+ return {};
118
+ },
119
+
120
+ toJSON(_: MsgUpdateParamsResponse): unknown {
121
+ const obj: any = {};
122
+ return obj;
123
+ },
124
+
125
+ fromPartial<I extends Exact<DeepPartial<MsgUpdateParamsResponse>, I>>(_: I): MsgUpdateParamsResponse {
126
+ const message = createBaseMsgUpdateParamsResponse();
127
+ return message;
128
+ },
129
+ };
130
+
131
+ /** Msg defines the x/mint Msg service. */
132
+ export interface Msg {
133
+ /**
134
+ * UpdateParams defines a governance operation for updating the x/mint module
135
+ * parameters. The authority is defaults to the x/gov module account.
136
+ *
137
+ * Since: cosmos-sdk 0.47
138
+ */
139
+ UpdateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse>;
140
+ }
141
+
142
+ export class MsgClientImpl implements Msg {
143
+ private readonly rpc: Rpc;
144
+ constructor(rpc: Rpc) {
145
+ this.rpc = rpc;
146
+ this.UpdateParams = this.UpdateParams.bind(this);
147
+ }
148
+ UpdateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse> {
149
+ const data = MsgUpdateParams.encode(request).finish();
150
+ const promise = this.rpc.request("cosmos.mint.v1beta1.Msg", "UpdateParams", data);
151
+ return promise.then((data) => MsgUpdateParamsResponse.decode(new _m0.Reader(data)));
152
+ }
153
+ }
154
+
155
+ interface Rpc {
156
+ request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
157
+ }
158
+
159
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
160
+
161
+ export type DeepPartial<T> = T extends Builtin ? T
162
+ : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
163
+ : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }
164
+ : Partial<T>;
165
+
166
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
167
+ export type Exact<P, I extends P> = P extends Builtin ? P
168
+ : P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never };
169
+
170
+ function isSet(value: any): boolean {
171
+ return value !== null && value !== undefined;
172
+ }
@@ -370,56 +370,52 @@ export interface V1Beta1PageResponse {
370
370
  }
371
371
 
372
372
  export interface V1Beta1QueryBalanceResponse {
373
- /** @format uint64 */
373
+ /**
374
+ * amount is the number of all NFTs of a given class owned by the owner
375
+ * @format uint64
376
+ */
374
377
  amount?: string;
375
378
  }
376
379
 
377
380
  export interface V1Beta1QueryClassResponse {
378
- /** Class defines the class of the nft type. */
381
+ /** class defines the class of the nft type. */
379
382
  class?: V1Beta1Class;
380
383
  }
381
384
 
382
385
  export interface V1Beta1QueryClassesResponse {
386
+ /** class defines the class of the nft type. */
383
387
  classes?: V1Beta1Class[];
384
388
 
385
- /**
386
- * PageResponse is to be embedded in gRPC response messages where the
387
- * corresponding request message has used PageRequest.
388
- *
389
- * message SomeResponse {
390
- * repeated Bar results = 1;
391
- * PageResponse page = 2;
392
- * }
393
- */
389
+ /** pagination defines the pagination in the response. */
394
390
  pagination?: V1Beta1PageResponse;
395
391
  }
396
392
 
397
393
  export interface V1Beta1QueryNFTResponse {
398
- /** NFT defines the NFT. */
394
+ /**
395
+ * owner is the owner address of the nft
396
+ * NFT defines the NFT.
397
+ */
399
398
  nft?: V1Beta1NFT;
400
399
  }
401
400
 
402
401
  export interface V1Beta1QueryNFTsResponse {
402
+ /** NFT defines the NFT */
403
403
  nfts?: V1Beta1NFT[];
404
404
 
405
- /**
406
- * PageResponse is to be embedded in gRPC response messages where the
407
- * corresponding request message has used PageRequest.
408
- *
409
- * message SomeResponse {
410
- * repeated Bar results = 1;
411
- * PageResponse page = 2;
412
- * }
413
- */
405
+ /** pagination defines the pagination in the response. */
414
406
  pagination?: V1Beta1PageResponse;
415
407
  }
416
408
 
417
409
  export interface V1Beta1QueryOwnerResponse {
410
+ /** owner is the owner address of the nft */
418
411
  owner?: string;
419
412
  }
420
413
 
421
414
  export interface V1Beta1QuerySupplyResponse {
422
- /** @format uint64 */
415
+ /**
416
+ * amount is the number of all NFTs from the given class
417
+ * @format uint64
418
+ */
423
419
  amount?: string;
424
420
  }
425
421
 
@@ -5,23 +5,33 @@ export const protobufPackage = "cosmos.nft.v1beta1";
5
5
 
6
6
  /** EventSend is emitted on Msg/Send */
7
7
  export interface EventSend {
8
+ /** class_id associated with the nft */
8
9
  classId: string;
10
+ /** id is a unique identifier of the nft */
9
11
  id: string;
12
+ /** sender is the address of the owner of nft */
10
13
  sender: string;
14
+ /** receiver is the receiver address of nft */
11
15
  receiver: string;
12
16
  }
13
17
 
14
18
  /** EventMint is emitted on Mint */
15
19
  export interface EventMint {
20
+ /** class_id associated with the nft */
16
21
  classId: string;
22
+ /** id is a unique identifier of the nft */
17
23
  id: string;
24
+ /** owner is the owner address of the nft */
18
25
  owner: string;
19
26
  }
20
27
 
21
28
  /** EventBurn is emitted on Burn */
22
29
  export interface EventBurn {
30
+ /** class_id associated with the nft */
23
31
  classId: string;
32
+ /** id is a unique identifier of the nft */
24
33
  id: string;
34
+ /** owner is the owner address of the nft */
25
35
  owner: string;
26
36
  }
27
37
 
@@ -8,6 +8,7 @@ export const protobufPackage = "cosmos.nft.v1beta1";
8
8
  export interface GenesisState {
9
9
  /** class defines the class of the nft type. */
10
10
  classes: Class[];
11
+ /** entry defines all nft owned by a person. */
11
12
  entries: Entry[];
12
13
  }
13
14
 
@@ -8,67 +8,85 @@ export const protobufPackage = "cosmos.nft.v1beta1";
8
8
 
9
9
  /** QueryBalanceRequest is the request type for the Query/Balance RPC method */
10
10
  export interface QueryBalanceRequest {
11
+ /** class_id associated with the nft */
11
12
  classId: string;
13
+ /** owner is the owner address of the nft */
12
14
  owner: string;
13
15
  }
14
16
 
15
17
  /** QueryBalanceResponse is the response type for the Query/Balance RPC method */
16
18
  export interface QueryBalanceResponse {
19
+ /** amount is the number of all NFTs of a given class owned by the owner */
17
20
  amount: number;
18
21
  }
19
22
 
20
23
  /** QueryOwnerRequest is the request type for the Query/Owner RPC method */
21
24
  export interface QueryOwnerRequest {
25
+ /** class_id associated with the nft */
22
26
  classId: string;
27
+ /** id is a unique identifier of the NFT */
23
28
  id: string;
24
29
  }
25
30
 
26
31
  /** QueryOwnerResponse is the response type for the Query/Owner RPC method */
27
32
  export interface QueryOwnerResponse {
33
+ /** owner is the owner address of the nft */
28
34
  owner: string;
29
35
  }
30
36
 
31
37
  /** QuerySupplyRequest is the request type for the Query/Supply RPC method */
32
38
  export interface QuerySupplyRequest {
39
+ /** class_id associated with the nft */
33
40
  classId: string;
34
41
  }
35
42
 
36
43
  /** QuerySupplyResponse is the response type for the Query/Supply RPC method */
37
44
  export interface QuerySupplyResponse {
45
+ /** amount is the number of all NFTs from the given class */
38
46
  amount: number;
39
47
  }
40
48
 
41
49
  /** QueryNFTstRequest is the request type for the Query/NFTs RPC method */
42
50
  export interface QueryNFTsRequest {
51
+ /** class_id associated with the nft */
43
52
  classId: string;
53
+ /** owner is the owner address of the nft */
44
54
  owner: string;
55
+ /** pagination defines an optional pagination for the request. */
45
56
  pagination: PageRequest | undefined;
46
57
  }
47
58
 
48
59
  /** QueryNFTsResponse is the response type for the Query/NFTs RPC methods */
49
60
  export interface QueryNFTsResponse {
61
+ /** NFT defines the NFT */
50
62
  nfts: NFT[];
63
+ /** pagination defines the pagination in the response. */
51
64
  pagination: PageResponse | undefined;
52
65
  }
53
66
 
54
67
  /** QueryNFTRequest is the request type for the Query/NFT RPC method */
55
68
  export interface QueryNFTRequest {
69
+ /** class_id associated with the nft */
56
70
  classId: string;
71
+ /** id is a unique identifier of the NFT */
57
72
  id: string;
58
73
  }
59
74
 
60
75
  /** QueryNFTResponse is the response type for the Query/NFT RPC method */
61
76
  export interface QueryNFTResponse {
77
+ /** owner is the owner address of the nft */
62
78
  nft: NFT | undefined;
63
79
  }
64
80
 
65
81
  /** QueryClassRequest is the request type for the Query/Class RPC method */
66
82
  export interface QueryClassRequest {
83
+ /** class_id associated with the nft */
67
84
  classId: string;
68
85
  }
69
86
 
70
87
  /** QueryClassResponse is the response type for the Query/Class RPC method */
71
88
  export interface QueryClassResponse {
89
+ /** class defines the class of the nft type. */
72
90
  class: Class | undefined;
73
91
  }
74
92
 
@@ -80,7 +98,9 @@ export interface QueryClassesRequest {
80
98
 
81
99
  /** QueryClassesResponse is the response type for the Query/Classes RPC method */
82
100
  export interface QueryClassesResponse {
101
+ /** class defines the class of the nft type. */
83
102
  classes: Class[];
103
+ /** pagination defines the pagination in the response. */
84
104
  pagination: PageResponse | undefined;
85
105
  }
86
106
 
@@ -0,0 +1,247 @@
1
+ /* eslint-disable */
2
+ import _m0 from "protobufjs/minimal";
3
+
4
+ export const protobufPackage = "cosmos_proto";
5
+
6
+ export enum ScalarType {
7
+ SCALAR_TYPE_UNSPECIFIED = 0,
8
+ SCALAR_TYPE_STRING = 1,
9
+ SCALAR_TYPE_BYTES = 2,
10
+ UNRECOGNIZED = -1,
11
+ }
12
+
13
+ export function scalarTypeFromJSON(object: any): ScalarType {
14
+ switch (object) {
15
+ case 0:
16
+ case "SCALAR_TYPE_UNSPECIFIED":
17
+ return ScalarType.SCALAR_TYPE_UNSPECIFIED;
18
+ case 1:
19
+ case "SCALAR_TYPE_STRING":
20
+ return ScalarType.SCALAR_TYPE_STRING;
21
+ case 2:
22
+ case "SCALAR_TYPE_BYTES":
23
+ return ScalarType.SCALAR_TYPE_BYTES;
24
+ case -1:
25
+ case "UNRECOGNIZED":
26
+ default:
27
+ return ScalarType.UNRECOGNIZED;
28
+ }
29
+ }
30
+
31
+ export function scalarTypeToJSON(object: ScalarType): string {
32
+ switch (object) {
33
+ case ScalarType.SCALAR_TYPE_UNSPECIFIED:
34
+ return "SCALAR_TYPE_UNSPECIFIED";
35
+ case ScalarType.SCALAR_TYPE_STRING:
36
+ return "SCALAR_TYPE_STRING";
37
+ case ScalarType.SCALAR_TYPE_BYTES:
38
+ return "SCALAR_TYPE_BYTES";
39
+ case ScalarType.UNRECOGNIZED:
40
+ default:
41
+ return "UNRECOGNIZED";
42
+ }
43
+ }
44
+
45
+ /**
46
+ * InterfaceDescriptor describes an interface type to be used with
47
+ * accepts_interface and implements_interface and declared by declare_interface.
48
+ */
49
+ export interface InterfaceDescriptor {
50
+ /**
51
+ * name is the name of the interface. It should be a short-name (without
52
+ * a period) such that the fully qualified name of the interface will be
53
+ * package.name, ex. for the package a.b and interface named C, the
54
+ * fully-qualified name will be a.b.C.
55
+ */
56
+ name: string;
57
+ /**
58
+ * description is a human-readable description of the interface and its
59
+ * purpose.
60
+ */
61
+ description: string;
62
+ }
63
+
64
+ /**
65
+ * ScalarDescriptor describes an scalar type to be used with
66
+ * the scalar field option and declared by declare_scalar.
67
+ * Scalars extend simple protobuf built-in types with additional
68
+ * syntax and semantics, for instance to represent big integers.
69
+ * Scalars should ideally define an encoding such that there is only one
70
+ * valid syntactical representation for a given semantic meaning,
71
+ * i.e. the encoding should be deterministic.
72
+ */
73
+ export interface ScalarDescriptor {
74
+ /**
75
+ * name is the name of the scalar. It should be a short-name (without
76
+ * a period) such that the fully qualified name of the scalar will be
77
+ * package.name, ex. for the package a.b and scalar named C, the
78
+ * fully-qualified name will be a.b.C.
79
+ */
80
+ name: string;
81
+ /**
82
+ * description is a human-readable description of the scalar and its
83
+ * encoding format. For instance a big integer or decimal scalar should
84
+ * specify precisely the expected encoding format.
85
+ */
86
+ description: string;
87
+ /**
88
+ * field_type is the type of field with which this scalar can be used.
89
+ * Scalars can be used with one and only one type of field so that
90
+ * encoding standards and simple and clear. Currently only string and
91
+ * bytes fields are supported for scalars.
92
+ */
93
+ fieldType: ScalarType[];
94
+ }
95
+
96
+ function createBaseInterfaceDescriptor(): InterfaceDescriptor {
97
+ return { name: "", description: "" };
98
+ }
99
+
100
+ export const InterfaceDescriptor = {
101
+ encode(message: InterfaceDescriptor, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
102
+ if (message.name !== "") {
103
+ writer.uint32(10).string(message.name);
104
+ }
105
+ if (message.description !== "") {
106
+ writer.uint32(18).string(message.description);
107
+ }
108
+ return writer;
109
+ },
110
+
111
+ decode(input: _m0.Reader | Uint8Array, length?: number): InterfaceDescriptor {
112
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
113
+ let end = length === undefined ? reader.len : reader.pos + length;
114
+ const message = createBaseInterfaceDescriptor();
115
+ while (reader.pos < end) {
116
+ const tag = reader.uint32();
117
+ switch (tag >>> 3) {
118
+ case 1:
119
+ message.name = reader.string();
120
+ break;
121
+ case 2:
122
+ message.description = reader.string();
123
+ break;
124
+ default:
125
+ reader.skipType(tag & 7);
126
+ break;
127
+ }
128
+ }
129
+ return message;
130
+ },
131
+
132
+ fromJSON(object: any): InterfaceDescriptor {
133
+ return {
134
+ name: isSet(object.name) ? String(object.name) : "",
135
+ description: isSet(object.description) ? String(object.description) : "",
136
+ };
137
+ },
138
+
139
+ toJSON(message: InterfaceDescriptor): unknown {
140
+ const obj: any = {};
141
+ message.name !== undefined && (obj.name = message.name);
142
+ message.description !== undefined && (obj.description = message.description);
143
+ return obj;
144
+ },
145
+
146
+ fromPartial<I extends Exact<DeepPartial<InterfaceDescriptor>, I>>(object: I): InterfaceDescriptor {
147
+ const message = createBaseInterfaceDescriptor();
148
+ message.name = object.name ?? "";
149
+ message.description = object.description ?? "";
150
+ return message;
151
+ },
152
+ };
153
+
154
+ function createBaseScalarDescriptor(): ScalarDescriptor {
155
+ return { name: "", description: "", fieldType: [] };
156
+ }
157
+
158
+ export const ScalarDescriptor = {
159
+ encode(message: ScalarDescriptor, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
160
+ if (message.name !== "") {
161
+ writer.uint32(10).string(message.name);
162
+ }
163
+ if (message.description !== "") {
164
+ writer.uint32(18).string(message.description);
165
+ }
166
+ writer.uint32(26).fork();
167
+ for (const v of message.fieldType) {
168
+ writer.int32(v);
169
+ }
170
+ writer.ldelim();
171
+ return writer;
172
+ },
173
+
174
+ decode(input: _m0.Reader | Uint8Array, length?: number): ScalarDescriptor {
175
+ const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
176
+ let end = length === undefined ? reader.len : reader.pos + length;
177
+ const message = createBaseScalarDescriptor();
178
+ while (reader.pos < end) {
179
+ const tag = reader.uint32();
180
+ switch (tag >>> 3) {
181
+ case 1:
182
+ message.name = reader.string();
183
+ break;
184
+ case 2:
185
+ message.description = reader.string();
186
+ break;
187
+ case 3:
188
+ if ((tag & 7) === 2) {
189
+ const end2 = reader.uint32() + reader.pos;
190
+ while (reader.pos < end2) {
191
+ message.fieldType.push(reader.int32() as any);
192
+ }
193
+ } else {
194
+ message.fieldType.push(reader.int32() as any);
195
+ }
196
+ break;
197
+ default:
198
+ reader.skipType(tag & 7);
199
+ break;
200
+ }
201
+ }
202
+ return message;
203
+ },
204
+
205
+ fromJSON(object: any): ScalarDescriptor {
206
+ return {
207
+ name: isSet(object.name) ? String(object.name) : "",
208
+ description: isSet(object.description) ? String(object.description) : "",
209
+ fieldType: Array.isArray(object?.fieldType) ? object.fieldType.map((e: any) => scalarTypeFromJSON(e)) : [],
210
+ };
211
+ },
212
+
213
+ toJSON(message: ScalarDescriptor): unknown {
214
+ const obj: any = {};
215
+ message.name !== undefined && (obj.name = message.name);
216
+ message.description !== undefined && (obj.description = message.description);
217
+ if (message.fieldType) {
218
+ obj.fieldType = message.fieldType.map((e) => scalarTypeToJSON(e));
219
+ } else {
220
+ obj.fieldType = [];
221
+ }
222
+ return obj;
223
+ },
224
+
225
+ fromPartial<I extends Exact<DeepPartial<ScalarDescriptor>, I>>(object: I): ScalarDescriptor {
226
+ const message = createBaseScalarDescriptor();
227
+ message.name = object.name ?? "";
228
+ message.description = object.description ?? "";
229
+ message.fieldType = object.fieldType?.map((e) => e) || [];
230
+ return message;
231
+ },
232
+ };
233
+
234
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
235
+
236
+ export type DeepPartial<T> = T extends Builtin ? T
237
+ : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>>
238
+ : T extends {} ? { [K in keyof T]?: DeepPartial<T[K]> }
239
+ : Partial<T>;
240
+
241
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
242
+ export type Exact<P, I extends P> = P extends Builtin ? P
243
+ : P & { [K in keyof P]: Exact<P[K], I[K]> } & { [K in Exclude<keyof I, KeysOfUnion<P>>]: never };
244
+
245
+ function isSet(value: any): boolean {
246
+ return value !== null && value !== undefined;
247
+ }
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export const protobufPackage = "amino";
@@ -22,6 +22,14 @@ export interface RpcStatus {
22
22
 
23
23
  export type V1Beta1MsgUnjailResponse = object;
24
24
 
25
+ /**
26
+ * MsgUpdateParamsResponse defines the response structure for executing a
27
+ MsgUpdateParams message.
28
+
29
+ Since: cosmos-sdk 0.47
30
+ */
31
+ export type V1Beta1MsgUpdateParamsResponse = object;
32
+
25
33
  /**
26
34
  * message SomeRequest {
27
35
  Foo some_parameter = 1;
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export const protobufPackage = "amino";
@@ -7,7 +7,7 @@ export const protobufPackage = "cosmos.slashing.v1beta1";
7
7
 
8
8
  /** GenesisState defines the slashing module's genesis state. */
9
9
  export interface GenesisState {
10
- /** params defines all the paramaters of related to deposit. */
10
+ /** params defines all the parameters of the module. */
11
11
  params:
12
12
  | Params
13
13
  | undefined;