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
@@ -7,8 +7,19 @@ export const protobufPackage = "cosmos.evidence.v1beta1";
7
7
 
8
8
  /** QueryEvidenceRequest is the request type for the Query/Evidence RPC method. */
9
9
  export interface QueryEvidenceRequest {
10
- /** evidence_hash defines the hash of the requested evidence. */
10
+ /**
11
+ * evidence_hash defines the hash of the requested evidence.
12
+ * Deprecated: Use hash, a HEX encoded string, instead.
13
+ *
14
+ * @deprecated
15
+ */
11
16
  evidenceHash: Uint8Array;
17
+ /**
18
+ * hash defines the evidence hash of the requested evidence.
19
+ *
20
+ * Since: cosmos-sdk 0.47
21
+ */
22
+ hash: string;
12
23
  }
13
24
 
14
25
  /** QueryEvidenceResponse is the response type for the Query/Evidence RPC method. */
@@ -38,7 +49,7 @@ export interface QueryAllEvidenceResponse {
38
49
  }
39
50
 
40
51
  function createBaseQueryEvidenceRequest(): QueryEvidenceRequest {
41
- return { evidenceHash: new Uint8Array() };
52
+ return { evidenceHash: new Uint8Array(), hash: "" };
42
53
  }
43
54
 
44
55
  export const QueryEvidenceRequest = {
@@ -46,6 +57,9 @@ export const QueryEvidenceRequest = {
46
57
  if (message.evidenceHash.length !== 0) {
47
58
  writer.uint32(10).bytes(message.evidenceHash);
48
59
  }
60
+ if (message.hash !== "") {
61
+ writer.uint32(18).string(message.hash);
62
+ }
49
63
  return writer;
50
64
  },
51
65
 
@@ -59,6 +73,9 @@ export const QueryEvidenceRequest = {
59
73
  case 1:
60
74
  message.evidenceHash = reader.bytes();
61
75
  break;
76
+ case 2:
77
+ message.hash = reader.string();
78
+ break;
62
79
  default:
63
80
  reader.skipType(tag & 7);
64
81
  break;
@@ -68,7 +85,10 @@ export const QueryEvidenceRequest = {
68
85
  },
69
86
 
70
87
  fromJSON(object: any): QueryEvidenceRequest {
71
- return { evidenceHash: isSet(object.evidenceHash) ? bytesFromBase64(object.evidenceHash) : new Uint8Array() };
88
+ return {
89
+ evidenceHash: isSet(object.evidenceHash) ? bytesFromBase64(object.evidenceHash) : new Uint8Array(),
90
+ hash: isSet(object.hash) ? String(object.hash) : "",
91
+ };
72
92
  },
73
93
 
74
94
  toJSON(message: QueryEvidenceRequest): unknown {
@@ -77,12 +97,14 @@ export const QueryEvidenceRequest = {
77
97
  && (obj.evidenceHash = base64FromBytes(
78
98
  message.evidenceHash !== undefined ? message.evidenceHash : new Uint8Array(),
79
99
  ));
100
+ message.hash !== undefined && (obj.hash = message.hash);
80
101
  return obj;
81
102
  },
82
103
 
83
104
  fromPartial<I extends Exact<DeepPartial<QueryEvidenceRequest>, I>>(object: I): QueryEvidenceRequest {
84
105
  const message = createBaseQueryEvidenceRequest();
85
106
  message.evidenceHash = object.evidenceHash ?? new Uint8Array();
107
+ message.hash = object.hash ?? "";
86
108
  return message;
87
109
  },
88
110
  };
@@ -9,7 +9,9 @@ export const protobufPackage = "cosmos.evidence.v1beta1";
9
9
  * Evidence of misbehavior such as equivocation or counterfactual signing.
10
10
  */
11
11
  export interface MsgSubmitEvidence {
12
+ /** submitter is the signer account address of evidence. */
12
13
  submitter: string;
14
+ /** evidence defines the evidence of misbehavior. */
13
15
  evidence: Any | undefined;
14
16
  }
15
17
 
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export const protobufPackage = "amino";
@@ -7,10 +7,11 @@ import { msgTypes } from './registry';
7
7
  import { IgniteClient } from "../client"
8
8
  import { MissingWalletError } from "../helpers"
9
9
  import { Api } from "./rest";
10
- import { MsgSubmitProposal } from "./types/cosmos/gov/v1/tx";
11
10
  import { MsgDeposit } from "./types/cosmos/gov/v1/tx";
12
11
  import { MsgVote } from "./types/cosmos/gov/v1/tx";
13
12
  import { MsgVoteWeighted } from "./types/cosmos/gov/v1/tx";
13
+ import { MsgUpdateParams } from "./types/cosmos/gov/v1/tx";
14
+ import { MsgSubmitProposal } from "./types/cosmos/gov/v1/tx";
14
15
 
15
16
  import { WeightedVoteOption as typeWeightedVoteOption} from "./types"
16
17
  import { Deposit as typeDeposit} from "./types"
@@ -20,14 +21,9 @@ import { Vote as typeVote} from "./types"
20
21
  import { DepositParams as typeDepositParams} from "./types"
21
22
  import { VotingParams as typeVotingParams} from "./types"
22
23
  import { TallyParams as typeTallyParams} from "./types"
24
+ import { Params as typeParams} from "./types"
23
25
 
24
- export { MsgSubmitProposal, MsgDeposit, MsgVote, MsgVoteWeighted };
25
-
26
- type sendMsgSubmitProposalParams = {
27
- value: MsgSubmitProposal,
28
- fee?: StdFee,
29
- memo?: string
30
- };
26
+ export { MsgDeposit, MsgVote, MsgVoteWeighted, MsgUpdateParams, MsgSubmitProposal };
31
27
 
32
28
  type sendMsgDepositParams = {
33
29
  value: MsgDeposit,
@@ -47,11 +43,19 @@ type sendMsgVoteWeightedParams = {
47
43
  memo?: string
48
44
  };
49
45
 
46
+ type sendMsgUpdateParamsParams = {
47
+ value: MsgUpdateParams,
48
+ fee?: StdFee,
49
+ memo?: string
50
+ };
50
51
 
51
- type msgSubmitProposalParams = {
52
+ type sendMsgSubmitProposalParams = {
52
53
  value: MsgSubmitProposal,
54
+ fee?: StdFee,
55
+ memo?: string
53
56
  };
54
57
 
58
+
55
59
  type msgDepositParams = {
56
60
  value: MsgDeposit,
57
61
  };
@@ -64,6 +68,14 @@ type msgVoteWeightedParams = {
64
68
  value: MsgVoteWeighted,
65
69
  };
66
70
 
71
+ type msgUpdateParamsParams = {
72
+ value: MsgUpdateParams,
73
+ };
74
+
75
+ type msgSubmitProposalParams = {
76
+ value: MsgSubmitProposal,
77
+ };
78
+
67
79
 
68
80
  export const registry = new Registry(msgTypes);
69
81
 
@@ -94,20 +106,6 @@ export const txClient = ({ signer, prefix, addr }: TxClientOptions = { addr: "ht
94
106
 
95
107
  return {
96
108
 
97
- async sendMsgSubmitProposal({ value, fee, memo }: sendMsgSubmitProposalParams): Promise<DeliverTxResponse> {
98
- if (!signer) {
99
- throw new Error('TxClient:sendMsgSubmitProposal: Unable to sign Tx. Signer is not present.')
100
- }
101
- try {
102
- const { address } = (await signer.getAccounts())[0];
103
- const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
104
- let msg = this.msgSubmitProposal({ value: MsgSubmitProposal.fromPartial(value) })
105
- return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
106
- } catch (e: any) {
107
- throw new Error('TxClient:sendMsgSubmitProposal: Could not broadcast Tx: '+ e.message)
108
- }
109
- },
110
-
111
109
  async sendMsgDeposit({ value, fee, memo }: sendMsgDepositParams): Promise<DeliverTxResponse> {
112
110
  if (!signer) {
113
111
  throw new Error('TxClient:sendMsgDeposit: Unable to sign Tx. Signer is not present.')
@@ -150,15 +148,35 @@ export const txClient = ({ signer, prefix, addr }: TxClientOptions = { addr: "ht
150
148
  }
151
149
  },
152
150
 
151
+ async sendMsgUpdateParams({ value, fee, memo }: sendMsgUpdateParamsParams): Promise<DeliverTxResponse> {
152
+ if (!signer) {
153
+ throw new Error('TxClient:sendMsgUpdateParams: Unable to sign Tx. Signer is not present.')
154
+ }
155
+ try {
156
+ const { address } = (await signer.getAccounts())[0];
157
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
158
+ let msg = this.msgUpdateParams({ value: MsgUpdateParams.fromPartial(value) })
159
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
160
+ } catch (e: any) {
161
+ throw new Error('TxClient:sendMsgUpdateParams: Could not broadcast Tx: '+ e.message)
162
+ }
163
+ },
153
164
 
154
- msgSubmitProposal({ value }: msgSubmitProposalParams): EncodeObject {
155
- try {
156
- return { typeUrl: "/cosmos.gov.v1.MsgSubmitProposal", value: MsgSubmitProposal.fromPartial( value ) }
165
+ async sendMsgSubmitProposal({ value, fee, memo }: sendMsgSubmitProposalParams): Promise<DeliverTxResponse> {
166
+ if (!signer) {
167
+ throw new Error('TxClient:sendMsgSubmitProposal: Unable to sign Tx. Signer is not present.')
168
+ }
169
+ try {
170
+ const { address } = (await signer.getAccounts())[0];
171
+ const signingClient = await SigningStargateClient.connectWithSigner(addr,signer,{registry, prefix});
172
+ let msg = this.msgSubmitProposal({ value: MsgSubmitProposal.fromPartial(value) })
173
+ return await signingClient.signAndBroadcast(address, [msg], fee ? fee : defaultFee, memo)
157
174
  } catch (e: any) {
158
- throw new Error('TxClient:MsgSubmitProposal: Could not create message: ' + e.message)
175
+ throw new Error('TxClient:sendMsgSubmitProposal: Could not broadcast Tx: '+ e.message)
159
176
  }
160
177
  },
161
178
 
179
+
162
180
  msgDeposit({ value }: msgDepositParams): EncodeObject {
163
181
  try {
164
182
  return { typeUrl: "/cosmos.gov.v1.MsgDeposit", value: MsgDeposit.fromPartial( value ) }
@@ -183,6 +201,22 @@ export const txClient = ({ signer, prefix, addr }: TxClientOptions = { addr: "ht
183
201
  }
184
202
  },
185
203
 
204
+ msgUpdateParams({ value }: msgUpdateParamsParams): EncodeObject {
205
+ try {
206
+ return { typeUrl: "/cosmos.gov.v1.MsgUpdateParams", value: MsgUpdateParams.fromPartial( value ) }
207
+ } catch (e: any) {
208
+ throw new Error('TxClient:MsgUpdateParams: Could not create message: ' + e.message)
209
+ }
210
+ },
211
+
212
+ msgSubmitProposal({ value }: msgSubmitProposalParams): EncodeObject {
213
+ try {
214
+ return { typeUrl: "/cosmos.gov.v1.MsgSubmitProposal", value: MsgSubmitProposal.fromPartial( value ) }
215
+ } catch (e: any) {
216
+ throw new Error('TxClient:MsgSubmitProposal: Could not create message: ' + e.message)
217
+ }
218
+ },
219
+
186
220
  }
187
221
  };
188
222
 
@@ -213,6 +247,7 @@ class SDKModule {
213
247
  DepositParams: getStructure(typeDepositParams.fromPartial({})),
214
248
  VotingParams: getStructure(typeVotingParams.fromPartial({})),
215
249
  TallyParams: getStructure(typeTallyParams.fromPartial({})),
250
+ Params: getStructure(typeParams.fromPartial({})),
216
251
 
217
252
  };
218
253
  client.on('signer-changed',(signer) => {
@@ -1,14 +1,16 @@
1
1
  import { GeneratedType } from "@cosmjs/proto-signing";
2
- import { MsgSubmitProposal } from "./types/cosmos/gov/v1/tx";
3
2
  import { MsgDeposit } from "./types/cosmos/gov/v1/tx";
4
3
  import { MsgVote } from "./types/cosmos/gov/v1/tx";
5
4
  import { MsgVoteWeighted } from "./types/cosmos/gov/v1/tx";
5
+ import { MsgUpdateParams } from "./types/cosmos/gov/v1/tx";
6
+ import { MsgSubmitProposal } from "./types/cosmos/gov/v1/tx";
6
7
 
7
8
  const msgTypes: Array<[string, GeneratedType]> = [
8
- ["/cosmos.gov.v1.MsgSubmitProposal", MsgSubmitProposal],
9
9
  ["/cosmos.gov.v1.MsgDeposit", MsgDeposit],
10
10
  ["/cosmos.gov.v1.MsgVote", MsgVote],
11
11
  ["/cosmos.gov.v1.MsgVoteWeighted", MsgVoteWeighted],
12
+ ["/cosmos.gov.v1.MsgUpdateParams", MsgUpdateParams],
13
+ ["/cosmos.gov.v1.MsgSubmitProposal", MsgSubmitProposal],
12
14
 
13
15
  ];
14
16
 
@@ -135,9 +135,16 @@ export interface RpcStatus {
135
135
  proposal.
136
136
  */
137
137
  export interface V1Deposit {
138
- /** @format uint64 */
138
+ /**
139
+ * proposal_id defines the unique id of the proposal.
140
+ * @format uint64
141
+ */
139
142
  proposal_id?: string;
143
+
144
+ /** depositor defines the deposit addresses from the proposals. */
140
145
  depositor?: string;
146
+
147
+ /** amount to be deposited by depositor. */
141
148
  amount?: V1Beta1Coin[];
142
149
  }
143
150
 
@@ -150,7 +157,7 @@ export interface V1DepositParams {
150
157
 
151
158
  /**
152
159
  * Maximum period for Atom holders to deposit on a proposal. Initial value: 2
153
- * months.
160
+ * months.
154
161
  */
155
162
  max_deposit_period?: string;
156
163
  }
@@ -169,10 +176,21 @@ export type V1MsgExecLegacyContentResponse = object;
169
176
  * MsgSubmitProposalResponse defines the Msg/SubmitProposal response type.
170
177
  */
171
178
  export interface V1MsgSubmitProposalResponse {
172
- /** @format uint64 */
179
+ /**
180
+ * proposal_id defines the unique id of the proposal.
181
+ * @format uint64
182
+ */
173
183
  proposal_id?: string;
174
184
  }
175
185
 
186
+ /**
187
+ * MsgUpdateParamsResponse defines the response structure for executing a
188
+ MsgUpdateParams message.
189
+
190
+ Since: cosmos-sdk 0.47
191
+ */
192
+ export type V1MsgUpdateParamsResponse = object;
193
+
176
194
  /**
177
195
  * MsgVoteResponse defines the Msg/Vote response type.
178
196
  */
@@ -183,28 +201,66 @@ export type V1MsgVoteResponse = object;
183
201
  */
184
202
  export type V1MsgVoteWeightedResponse = object;
185
203
 
204
+ /**
205
+ * Params defines the parameters for the x/gov module.
206
+
207
+ Since: cosmos-sdk 0.47
208
+ */
209
+ export interface V1Params {
210
+ /** Minimum deposit for a proposal to enter voting period. */
211
+ min_deposit?: V1Beta1Coin[];
212
+
213
+ /**
214
+ * Maximum period for Atom holders to deposit on a proposal. Initial value: 2
215
+ * months.
216
+ */
217
+ max_deposit_period?: string;
218
+
219
+ /** Duration of the voting period. */
220
+ voting_period?: string;
221
+
222
+ /**
223
+ * Minimum percentage of total stake needed to vote for a result to be
224
+ * considered valid.
225
+ */
226
+ quorum?: string;
227
+
228
+ /** Minimum proportion of Yes votes for proposal to pass. Default value: 0.5. */
229
+ threshold?: string;
230
+
231
+ /**
232
+ * Minimum value of Veto votes to Total votes ratio for proposal to be
233
+ * vetoed. Default value: 1/3.
234
+ */
235
+ veto_threshold?: string;
236
+
237
+ /** The ratio representing the proportion of the deposit value that must be paid at proposal submission. */
238
+ min_initial_deposit_ratio?: string;
239
+
240
+ /** burn deposits if a proposal does not meet quorum */
241
+ burn_vote_quorum?: boolean;
242
+
243
+ /** burn deposits if the proposal does not enter voting period */
244
+ burn_proposal_deposit_prevote?: boolean;
245
+
246
+ /** burn deposits if quorum with vote type no_veto is met */
247
+ burn_vote_veto?: boolean;
248
+ }
249
+
186
250
  /**
187
251
  * Proposal defines the core field members of a governance proposal.
188
252
  */
189
253
  export interface V1Proposal {
190
- /** @format uint64 */
254
+ /**
255
+ * id defines the unique id of the proposal.
256
+ * @format uint64
257
+ */
191
258
  id?: string;
259
+
260
+ /** messages are the arbitrary messages to be executed if the proposal passes. */
192
261
  messages?: ProtobufAny[];
193
262
 
194
- /**
195
- * ProposalStatus enumerates the valid statuses of a proposal.
196
- *
197
- * - PROPOSAL_STATUS_UNSPECIFIED: PROPOSAL_STATUS_UNSPECIFIED defines the default proposal status.
198
- * - PROPOSAL_STATUS_DEPOSIT_PERIOD: PROPOSAL_STATUS_DEPOSIT_PERIOD defines a proposal status during the deposit
199
- * period.
200
- * - PROPOSAL_STATUS_VOTING_PERIOD: PROPOSAL_STATUS_VOTING_PERIOD defines a proposal status during the voting
201
- * - PROPOSAL_STATUS_PASSED: PROPOSAL_STATUS_PASSED defines a proposal status of a proposal that has
202
- * passed.
203
- * - PROPOSAL_STATUS_REJECTED: PROPOSAL_STATUS_REJECTED defines a proposal status of a proposal that has
204
- * been rejected.
205
- * - PROPOSAL_STATUS_FAILED: PROPOSAL_STATUS_FAILED defines a proposal status of a proposal that has
206
- * failed.
207
- */
263
+ /** status defines the proposal status. */
208
264
  status?: V1ProposalStatus;
209
265
 
210
266
  /**
@@ -214,21 +270,53 @@ export interface V1Proposal {
214
270
  */
215
271
  final_tally_result?: V1TallyResult;
216
272
 
217
- /** @format date-time */
273
+ /**
274
+ * submit_time is the time of proposal submission.
275
+ * @format date-time
276
+ */
218
277
  submit_time?: string;
219
278
 
220
- /** @format date-time */
279
+ /**
280
+ * deposit_end_time is the end time for deposition.
281
+ * @format date-time
282
+ */
221
283
  deposit_end_time?: string;
284
+
285
+ /** total_deposit is the total deposit on the proposal. */
222
286
  total_deposit?: V1Beta1Coin[];
223
287
 
224
- /** @format date-time */
288
+ /**
289
+ * voting_start_time is the starting time to vote on a proposal.
290
+ * @format date-time
291
+ */
225
292
  voting_start_time?: string;
226
293
 
227
- /** @format date-time */
294
+ /**
295
+ * voting_end_time is the end time of voting on a proposal.
296
+ * @format date-time
297
+ */
228
298
  voting_end_time?: string;
229
299
 
230
300
  /** metadata is any arbitrary metadata attached to the proposal. */
231
301
  metadata?: string;
302
+
303
+ /**
304
+ * title is the title of the proposal
305
+ * Since: cosmos-sdk 0.47
306
+ */
307
+ title?: string;
308
+
309
+ /**
310
+ * summary is a short summary of the proposal
311
+ * Since: cosmos-sdk 0.47
312
+ */
313
+ summary?: string;
314
+
315
+ /**
316
+ * Proposer is the address of the proposal sumbitter
317
+ * Since: cosmos-sdk 0.47
318
+ */
319
+ proposer?: string;
232
320
  }
233
321
 
234
322
  /**
@@ -267,6 +355,7 @@ export interface V1QueryDepositResponse {
267
355
  * QueryDepositsResponse is the response type for the Query/Deposits RPC method.
268
356
  */
269
357
  export interface V1QueryDepositsResponse {
358
+ /** deposits defines the requested deposits. */
270
359
  deposits?: V1Deposit[];
271
360
 
272
361
  /** pagination defines the pagination in the response. */
@@ -277,21 +366,37 @@ export interface V1QueryDepositsResponse {
277
366
  * QueryParamsResponse is the response type for the Query/Params RPC method.
278
367
  */
279
368
  export interface V1QueryParamsResponse {
280
- /** voting_params defines the parameters related to voting. */
369
+ /**
370
+ * Deprecated: Prefer to use `params` instead.
371
+ * voting_params defines the parameters related to voting.
372
+ */
281
373
  voting_params?: V1VotingParams;
282
374
 
283
- /** deposit_params defines the parameters related to deposit. */
375
+ /**
376
+ * Deprecated: Prefer to use `params` instead.
377
+ * deposit_params defines the parameters related to deposit.
378
+ */
284
379
  deposit_params?: V1DepositParams;
285
380
 
286
- /** tally_params defines the parameters related to tally. */
381
+ /**
382
+ * Deprecated: Prefer to use `params` instead.
383
+ * tally_params defines the parameters related to tally.
384
+ */
287
385
  tally_params?: V1TallyParams;
386
+
387
+ /**
388
+ * params defines all the paramaters of x/gov module.
389
+ *
390
+ * Since: cosmos-sdk 0.47
391
+ */
392
+ params?: V1Params;
288
393
  }
289
394
 
290
395
  /**
291
396
  * QueryProposalResponse is the response type for the Query/Proposal RPC method.
292
397
  */
293
398
  export interface V1QueryProposalResponse {
294
- /** Proposal defines the core field members of a governance proposal. */
399
+ /** proposal is the requested governance proposal. */
295
400
  proposal?: V1Proposal;
296
401
  }
297
402
 
@@ -300,6 +405,7 @@ export interface V1QueryProposalResponse {
300
405
  method.
301
406
  */
302
407
  export interface V1QueryProposalsResponse {
408
+ /** proposals defines all the requested governance proposals. */
303
409
  proposals?: V1Proposal[];
304
410
 
305
411
  /** pagination defines the pagination in the response. */
@@ -318,7 +424,7 @@ export interface V1QueryTallyResultResponse {
318
424
  * QueryVoteResponse is the response type for the Query/Vote RPC method.
319
425
  */
320
426
  export interface V1QueryVoteResponse {
321
- /** vote defined the queried vote. */
427
+ /** vote defines the queried vote. */
322
428
  vote?: V1Vote;
323
429
  }
324
430
 
@@ -326,7 +432,7 @@ export interface V1QueryVoteResponse {
326
432
  * QueryVotesResponse is the response type for the Query/Votes RPC method.
327
433
  */
328
434
  export interface V1QueryVotesResponse {
329
- /** votes defined the queried votes. */
435
+ /** votes defines the queried votes. */
330
436
  votes?: V1Vote[];
331
437
 
332
438
  /** pagination defines the pagination in the response. */
@@ -339,7 +445,7 @@ export interface V1QueryVotesResponse {
339
445
  export interface V1TallyParams {
340
446
  /**
341
447
  * Minimum percentage of total stake needed to vote for a result to be
342
- * considered valid.
448
+ * considered valid.
343
449
  */
344
450
  quorum?: string;
345
451
 
@@ -348,7 +454,7 @@ export interface V1TallyParams {
348
454
 
349
455
  /**
350
456
  * Minimum value of Veto votes to Total votes ratio for proposal to be
351
- * vetoed. Default value: 1/3.
457
+ * vetoed. Default value: 1/3.
352
458
  */
353
459
  veto_threshold?: string;
354
460
  }
@@ -357,9 +463,16 @@ export interface V1TallyParams {
357
463
  * TallyResult defines a standard tally for a governance proposal.
358
464
  */
359
465
  export interface V1TallyResult {
466
+ /** yes_count is the number of yes votes on a proposal. */
360
467
  yes_count?: string;
468
+
469
+ /** abstain_count is the number of abstain votes on a proposal. */
361
470
  abstain_count?: string;
471
+
472
+ /** no_count is the number of no votes on a proposal. */
362
473
  no_count?: string;
474
+
475
+ /** no_with_veto_count is the number of no with veto votes on a proposal. */
363
476
  no_with_veto_count?: string;
364
477
  }
365
478
 
@@ -368,9 +481,16 @@ export interface V1TallyResult {
368
481
  A Vote consists of a proposal ID, the voter, and the vote option.
369
482
  */
370
483
  export interface V1Vote {
371
- /** @format uint64 */
484
+ /**
485
+ * proposal_id defines the unique id of the proposal.
486
+ * @format uint64
487
+ */
372
488
  proposal_id?: string;
489
+
490
+ /** voter is the voter address of the proposal. */
373
491
  voter?: string;
492
+
493
+ /** options is the weighted vote options. */
374
494
  options?: V1WeightedVoteOption[];
375
495
 
376
496
  /** metadata is any arbitrary metadata to attached to the vote. */
@@ -398,7 +518,7 @@ export enum V1VoteOption {
398
518
  * VotingParams defines the params for voting on governance proposals.
399
519
  */
400
520
  export interface V1VotingParams {
401
- /** Length of the voting period. */
521
+ /** Duration of the voting period. */
402
522
  voting_period?: string;
403
523
  }
404
524
 
@@ -406,16 +526,10 @@ export interface V1VotingParams {
406
526
  * WeightedVoteOption defines a unit of vote for vote split.
407
527
  */
408
528
  export interface V1WeightedVoteOption {
409
- /**
410
- * VoteOption enumerates the valid vote options for a given governance proposal.
411
- *
412
- * - VOTE_OPTION_UNSPECIFIED: VOTE_OPTION_UNSPECIFIED defines a no-op vote option.
413
- * - VOTE_OPTION_YES: VOTE_OPTION_YES defines a yes vote option.
414
- * - VOTE_OPTION_ABSTAIN: VOTE_OPTION_ABSTAIN defines an abstain vote option.
415
- * - VOTE_OPTION_NO: VOTE_OPTION_NO defines a no vote option.
416
- * - VOTE_OPTION_NO_WITH_VETO: VOTE_OPTION_NO_WITH_VETO defines a no with veto vote option.
417
- */
529
+ /** option defines the valid vote options, it must not contain duplicate vote options. */
418
530
  option?: V1VoteOption;
531
+
532
+ /** weight is the vote weight associated with the vote option. */
419
533
  weight?: string;
420
534
  }
421
535
 
@@ -0,0 +1,2 @@
1
+ /* eslint-disable */
2
+ export const protobufPackage = "amino";