decentralcardgame-cardchain-client-ts 0.0.15 → 0.0.17

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 (248) hide show
  1. package/DecentralCardGame.cardchain.cardchain/module.js +318 -383
  2. package/DecentralCardGame.cardchain.cardchain/module.ts +463 -558
  3. package/DecentralCardGame.cardchain.cardchain/registry.js +72 -78
  4. package/DecentralCardGame.cardchain.cardchain/registry.ts +72 -78
  5. package/DecentralCardGame.cardchain.cardchain/rest.js +77 -60
  6. package/DecentralCardGame.cardchain.cardchain/rest.ts +123 -76
  7. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.js +657 -0
  8. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/card.ts +741 -0
  9. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.js +102 -0
  10. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/copyright_proposal.ts +134 -0
  11. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.js +356 -0
  12. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/council.ts +415 -0
  13. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.js +254 -0
  14. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/genesis.ts +281 -0
  15. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.js +88 -0
  16. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/image.ts +115 -0
  17. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.js +308 -0
  18. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match.ts +355 -0
  19. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.js +67 -0
  20. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/match_reporter_proposal.ts +92 -0
  21. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.js +73 -0
  22. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/num.ts +102 -0
  23. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.js +325 -0
  24. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/params.ts +380 -0
  25. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.js +2200 -0
  26. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/query.ts +2633 -0
  27. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.js +85 -0
  28. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/running_average.ts +111 -0
  29. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.js +148 -0
  30. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/sell_offer.ts +183 -0
  31. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.js +93 -0
  32. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/server.ts +124 -0
  33. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/set.js +365 -0
  34. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/set.ts +416 -0
  35. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/set_proposal.js +93 -0
  36. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/set_proposal.ts +124 -0
  37. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.js +4185 -0
  38. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/tx.ts +5139 -0
  39. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.js +580 -0
  40. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/user.ts +652 -0
  41. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting.js +346 -0
  42. package/DecentralCardGame.cardchain.cardchain/types/cardchain/cardchain/voting.ts +417 -0
  43. package/DecentralCardGame.cardchain.cardchain/types.js +25 -23
  44. package/DecentralCardGame.cardchain.cardchain/types.ts +26 -22
  45. package/DecentralCardGame.cardchain.featureflag/index.js +5 -0
  46. package/DecentralCardGame.cardchain.featureflag/index.ts +6 -0
  47. package/DecentralCardGame.cardchain.featureflag/module.js +62 -0
  48. package/DecentralCardGame.cardchain.featureflag/module.ts +102 -0
  49. package/DecentralCardGame.cardchain.featureflag/registry.js +2 -0
  50. package/DecentralCardGame.cardchain.featureflag/registry.ts +7 -0
  51. package/DecentralCardGame.cardchain.featureflag/rest.js +128 -0
  52. package/DecentralCardGame.cardchain.featureflag/rest.ts +222 -0
  53. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/flag.js +67 -0
  54. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/flag.ts +92 -0
  55. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/genesis.js +135 -0
  56. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/genesis.ts +172 -0
  57. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/params.js +36 -0
  58. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/params.ts +58 -0
  59. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/proposal.js +76 -0
  60. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/proposal.ts +102 -0
  61. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/query.js +279 -0
  62. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/query.ts +371 -0
  63. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/tx.js +7 -0
  64. package/DecentralCardGame.cardchain.featureflag/types/cardchain/featureflag/tx.ts +17 -0
  65. package/DecentralCardGame.cardchain.featureflag/types/cosmos/base/query/v1beta1/pagination.js +190 -0
  66. package/DecentralCardGame.cardchain.featureflag/types/cosmos/base/query/v1beta1/pagination.ts +286 -0
  67. package/DecentralCardGame.cardchain.featureflag/types/gogoproto/gogo.js +2 -0
  68. package/DecentralCardGame.cardchain.featureflag/types/gogoproto/gogo.ts +2 -0
  69. package/DecentralCardGame.cardchain.featureflag/types/google/api/annotations.js +2 -0
  70. package/DecentralCardGame.cardchain.featureflag/types/google/api/annotations.ts +2 -0
  71. package/DecentralCardGame.cardchain.featureflag/types/google/api/http.js +260 -0
  72. package/DecentralCardGame.cardchain.featureflag/types/google/api/http.ts +589 -0
  73. package/DecentralCardGame.cardchain.featureflag/types/google/protobuf/descriptor.js +2830 -0
  74. package/DecentralCardGame.cardchain.featureflag/types/google/protobuf/descriptor.ts +3753 -0
  75. package/DecentralCardGame.cardchain.featureflag/types.js +4 -0
  76. package/DecentralCardGame.cardchain.featureflag/types.ts +11 -0
  77. package/client.js +7 -7
  78. package/client.ts +9 -10
  79. package/cosmos.auth.v1beta1/module.js +0 -2
  80. package/cosmos.auth.v1beta1/module.ts +0 -2
  81. package/cosmos.auth.v1beta1/rest.js +3 -18
  82. package/cosmos.auth.v1beta1/rest.ts +3 -113
  83. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.js +0 -84
  84. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/auth.ts +0 -104
  85. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/genesis.ts +1 -1
  86. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.js +3 -104
  87. package/cosmos.auth.v1beta1/types/cosmos/auth/v1beta1/query.ts +4 -157
  88. package/cosmos.auth.v1beta1/types.js +1 -2
  89. package/cosmos.auth.v1beta1/types.ts +0 -2
  90. package/cosmos.authz.v1beta1/module.js +19 -19
  91. package/cosmos.authz.v1beta1/module.ts +29 -29
  92. package/cosmos.authz.v1beta1/registry.js +2 -2
  93. package/cosmos.authz.v1beta1/registry.ts +2 -2
  94. package/cosmos.authz.v1beta1/types/cosmos/authz/v1beta1/tx.ts +1 -1
  95. package/cosmos.bank.v1beta1/module.js +16 -16
  96. package/cosmos.bank.v1beta1/module.ts +24 -24
  97. package/cosmos.bank.v1beta1/registry.js +2 -2
  98. package/cosmos.bank.v1beta1/registry.ts +2 -2
  99. package/cosmos.bank.v1beta1/rest.js +6 -37
  100. package/cosmos.bank.v1beta1/rest.ts +6 -99
  101. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.js +2 -18
  102. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/authz.ts +2 -24
  103. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/bank.ts +0 -9
  104. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.js +2 -18
  105. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/genesis.ts +4 -25
  106. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.js +1 -230
  107. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/query.ts +5 -356
  108. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.js +1 -206
  109. package/cosmos.bank.v1beta1/types/cosmos/bank/v1beta1/tx.ts +1 -305
  110. package/cosmos.base.tendermint.v1beta1/rest.js +3 -3
  111. package/cosmos.base.tendermint.v1beta1/rest.ts +27 -18
  112. package/cosmos.base.tendermint.v1beta1/types/cosmos/base/tendermint/v1beta1/query.ts +46 -16
  113. package/cosmos.crisis.v1beta1/module.js +1 -24
  114. package/cosmos.crisis.v1beta1/module.ts +1 -34
  115. package/cosmos.crisis.v1beta1/registry.js +0 -2
  116. package/cosmos.crisis.v1beta1/registry.ts +0 -2
  117. package/cosmos.crisis.v1beta1/rest.ts +0 -19
  118. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.js +0 -95
  119. package/cosmos.crisis.v1beta1/types/cosmos/crisis/v1beta1/tx.ts +1 -140
  120. package/cosmos.distribution.v1beta1/module.js +21 -67
  121. package/cosmos.distribution.v1beta1/module.ts +34 -100
  122. package/cosmos.distribution.v1beta1/registry.js +4 -8
  123. package/cosmos.distribution.v1beta1/registry.ts +4 -8
  124. package/cosmos.distribution.v1beta1/rest.js +0 -14
  125. package/cosmos.distribution.v1beta1/rest.ts +7 -66
  126. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/distribution.ts +0 -19
  127. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/genesis.ts +4 -4
  128. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.js +0 -120
  129. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/query.ts +1 -158
  130. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.js +0 -199
  131. package/cosmos.distribution.v1beta1/types/cosmos/distribution/v1beta1/tx.ts +3 -300
  132. package/cosmos.evidence.v1beta1/rest.js +3 -4
  133. package/cosmos.evidence.v1beta1/rest.ts +3 -4
  134. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/evidence.ts +1 -7
  135. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.js +2 -13
  136. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/query.ts +3 -25
  137. package/cosmos.evidence.v1beta1/types/cosmos/evidence/v1beta1/tx.ts +0 -2
  138. package/cosmos.gov.v1/module.js +21 -46
  139. package/cosmos.gov.v1/module.ts +33 -68
  140. package/cosmos.gov.v1/registry.js +4 -6
  141. package/cosmos.gov.v1/registry.ts +4 -6
  142. package/cosmos.gov.v1/rest.ts +41 -155
  143. package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.js +1 -13
  144. package/cosmos.gov.v1/types/cosmos/gov/v1/genesis.ts +5 -40
  145. package/cosmos.gov.v1/types/cosmos/gov/v1/gov.js +0 -179
  146. package/cosmos.gov.v1/types/cosmos/gov/v1/gov.ts +6 -277
  147. package/cosmos.gov.v1/types/cosmos/gov/v1/query.js +2 -13
  148. package/cosmos.gov.v1/types/cosmos/gov/v1/query.ts +7 -45
  149. package/cosmos.gov.v1/types/cosmos/gov/v1/tx.js +2 -113
  150. package/cosmos.gov.v1/types/cosmos/gov/v1/tx.ts +3 -186
  151. package/cosmos.gov.v1/types.js +1 -2
  152. package/cosmos.gov.v1/types.ts +0 -2
  153. package/cosmos.gov.v1beta1/module.js +24 -24
  154. package/cosmos.gov.v1beta1/module.ts +36 -36
  155. package/cosmos.gov.v1beta1/registry.js +4 -4
  156. package/cosmos.gov.v1beta1/registry.ts +4 -4
  157. package/cosmos.gov.v1beta1/rest.ts +96 -65
  158. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/genesis.ts +3 -3
  159. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/gov.ts +10 -45
  160. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/query.ts +2 -4
  161. package/cosmos.gov.v1beta1/types/cosmos/gov/v1beta1/tx.ts +1 -16
  162. package/cosmos.group.v1/module.js +92 -92
  163. package/cosmos.group.v1/module.ts +138 -138
  164. package/cosmos.group.v1/registry.js +16 -16
  165. package/cosmos.group.v1/registry.ts +16 -16
  166. package/cosmos.group.v1/rest.js +3 -3
  167. package/cosmos.group.v1/rest.ts +9 -29
  168. package/cosmos.group.v1/types/cosmos/group/v1/query.ts +5 -5
  169. package/cosmos.group.v1/types/cosmos/group/v1/tx.js +34 -52
  170. package/cosmos.group.v1/types/cosmos/group/v1/tx.ts +49 -79
  171. package/cosmos.group.v1/types/cosmos/group/v1/types.js +0 -20
  172. package/cosmos.group.v1/types/cosmos/group/v1/types.ts +6 -46
  173. package/cosmos.mint.v1beta1/rest.ts +1 -9
  174. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/genesis.ts +1 -1
  175. package/cosmos.mint.v1beta1/types/cosmos/mint/v1beta1/mint.ts +1 -1
  176. package/cosmos.nft.v1beta1/rest.ts +22 -18
  177. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/event.ts +0 -10
  178. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/genesis.ts +0 -1
  179. package/cosmos.nft.v1beta1/types/cosmos/nft/v1beta1/query.ts +0 -20
  180. package/cosmos.slashing.v1beta1/rest.ts +0 -8
  181. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/genesis.ts +1 -1
  182. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.js +0 -94
  183. package/cosmos.slashing.v1beta1/types/cosmos/slashing/v1beta1/tx.ts +0 -139
  184. package/cosmos.staking.v1beta1/module.js +39 -41
  185. package/cosmos.staking.v1beta1/module.ts +59 -61
  186. package/cosmos.staking.v1beta1/registry.js +6 -6
  187. package/cosmos.staking.v1beta1/registry.ts +6 -6
  188. package/cosmos.staking.v1beta1/rest.js +7 -7
  189. package/cosmos.staking.v1beta1/rest.ts +8 -49
  190. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/genesis.ts +1 -1
  191. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/query.ts +5 -36
  192. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.js +2 -180
  193. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/staking.ts +3 -206
  194. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.js +1 -94
  195. package/cosmos.staking.v1beta1/types/cosmos/staking/v1beta1/tx.ts +1 -138
  196. package/cosmos.staking.v1beta1/types.js +1 -2
  197. package/cosmos.staking.v1beta1/types.ts +0 -2
  198. package/cosmos.tx.v1beta1/rest.js +2 -66
  199. package/cosmos.tx.v1beta1/rest.ts +16 -177
  200. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.js +2 -360
  201. package/cosmos.tx.v1beta1/types/cosmos/tx/v1beta1/service.ts +2 -524
  202. package/cosmos.tx.v1beta1/types/tendermint/abci/types.js +266 -592
  203. package/cosmos.tx.v1beta1/types/tendermint/abci/types.ts +332 -703
  204. package/cosmos.tx.v1beta1/types/tendermint/types/params.js +17 -8
  205. package/cosmos.tx.v1beta1/types/tendermint/types/params.ts +25 -9
  206. package/cosmos.upgrade.v1beta1/rest.ts +1 -0
  207. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/tx.ts +3 -3
  208. package/cosmos.upgrade.v1beta1/types/cosmos/upgrade/v1beta1/upgrade.ts +4 -6
  209. package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.js +0 -84
  210. package/cosmos.vesting.v1beta1/types/cosmos/auth/v1beta1/auth.ts +0 -104
  211. package/ibc.applications.interchain_accounts.controller.v1/rest.ts +0 -1
  212. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/tx.js +2 -13
  213. package/ibc.applications.interchain_accounts.controller.v1/types/ibc/applications/interchain_accounts/controller/v1/tx.ts +4 -16
  214. package/ibc.applications.transfer.v1/module.js +27 -5
  215. package/ibc.applications.transfer.v1/module.ts +34 -5
  216. package/ibc.applications.transfer.v1/registry.js +4 -1
  217. package/ibc.applications.transfer.v1/registry.ts +2 -0
  218. package/ibc.applications.transfer.v1/rest.js +1 -15
  219. package/ibc.applications.transfer.v1/rest.ts +1 -30
  220. package/ibc.applications.transfer.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +4 -6
  221. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.js +1 -16
  222. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/genesis.ts +2 -23
  223. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.js +0 -91
  224. package/ibc.applications.transfer.v1/types/ibc/applications/transfer/v1/query.ts +0 -120
  225. package/ibc.applications.transfer.v1/types/ibc/core/client/v1/client.ts +1 -5
  226. package/ibc.applications.transfer.v1/types.js +1 -3
  227. package/ibc.applications.transfer.v1/types.ts +0 -4
  228. package/ibc.core.channel.v1/rest.ts +0 -1
  229. package/ibc.core.channel.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +4 -6
  230. package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.js +2 -13
  231. package/ibc.core.channel.v1/types/ibc/core/channel/v1/tx.ts +2 -14
  232. package/ibc.core.channel.v1/types/ibc/core/client/v1/client.ts +1 -5
  233. package/ibc.core.client.v1/rest.ts +1 -5
  234. package/ibc.core.client.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +4 -6
  235. package/ibc.core.client.v1/types/ibc/core/client/v1/client.ts +1 -5
  236. package/ibc.core.client.v1/types/ibc/core/client/v1/tx.js +8 -9
  237. package/ibc.core.client.v1/types/ibc/core/client/v1/tx.ts +14 -28
  238. package/ibc.core.connection.v1/types/cosmos/upgrade/v1beta1/upgrade.ts +4 -6
  239. package/ibc.core.connection.v1/types/ibc/core/client/v1/client.ts +1 -5
  240. package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.js +1 -1
  241. package/ibc.core.connection.v1/types/ibc/core/commitment/v1/commitment.ts +1 -1
  242. package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.js +0 -26
  243. package/ibc.core.connection.v1/types/ibc/core/connection/v1/tx.ts +0 -34
  244. package/ibc.core.connection.v1/types/proofs.js +1126 -0
  245. package/ibc.core.connection.v1/types/proofs.ts +1408 -0
  246. package/index.js +3 -3
  247. package/index.ts +3 -3
  248. package/package.json +1 -1
@@ -1,5 +1,3 @@
1
- import { Allocation } from "./types/ibc/applications/transfer/v1/authz";
2
- import { TransferAuthorization } from "./types/ibc/applications/transfer/v1/authz";
3
1
  import { DenomTrace } from "./types/ibc/applications/transfer/v1/transfer";
4
2
  import { Params } from "./types/ibc/applications/transfer/v1/transfer";
5
- export { Allocation, TransferAuthorization, DenomTrace, Params, };
3
+ export { DenomTrace, Params, };
@@ -1,12 +1,8 @@
1
- import { Allocation } from "./types/ibc/applications/transfer/v1/authz"
2
- import { TransferAuthorization } from "./types/ibc/applications/transfer/v1/authz"
3
1
  import { DenomTrace } from "./types/ibc/applications/transfer/v1/transfer"
4
2
  import { Params } from "./types/ibc/applications/transfer/v1/transfer"
5
3
 
6
4
 
7
5
  export {
8
- Allocation,
9
- TransferAuthorization,
10
6
  DenomTrace,
11
7
  Params,
12
8
 
@@ -368,7 +368,6 @@ export interface V1MsgChannelOpenInitResponse {
368
368
  */
369
369
  export interface V1MsgChannelOpenTryResponse {
370
370
  version?: string;
371
- channel_id?: string;
372
371
  }
373
372
 
374
373
  /**
@@ -28,7 +28,10 @@ export interface Plan {
28
28
  time:
29
29
  | Date
30
30
  | undefined;
31
- /** The height at which the upgrade must be performed. */
31
+ /**
32
+ * The height at which the upgrade must be performed.
33
+ * Only used if Time is not set.
34
+ */
32
35
  height: number;
33
36
  /**
34
37
  * Any application specific upgrade info to be included on-chain
@@ -54,11 +57,8 @@ export interface Plan {
54
57
  * @deprecated
55
58
  */
56
59
  export interface SoftwareUpgradeProposal {
57
- /** title of the proposal */
58
60
  title: string;
59
- /** description of the proposal */
60
61
  description: string;
61
- /** plan of the proposal */
62
62
  plan: Plan | undefined;
63
63
  }
64
64
 
@@ -71,9 +71,7 @@ export interface SoftwareUpgradeProposal {
71
71
  * @deprecated
72
72
  */
73
73
  export interface CancelSoftwareUpgradeProposal {
74
- /** title of the proposal */
75
74
  title: string;
76
- /** description of the proposal */
77
75
  description: string;
78
76
  }
79
77
 
@@ -272,16 +272,13 @@ export const MsgChannelOpenTry = {
272
272
  },
273
273
  };
274
274
  function createBaseMsgChannelOpenTryResponse() {
275
- return { version: "", channelId: "" };
275
+ return { version: "" };
276
276
  }
277
277
  export const MsgChannelOpenTryResponse = {
278
278
  encode(message, writer = _m0.Writer.create()) {
279
279
  if (message.version !== "") {
280
280
  writer.uint32(10).string(message.version);
281
281
  }
282
- if (message.channelId !== "") {
283
- writer.uint32(18).string(message.channelId);
284
- }
285
282
  return writer;
286
283
  },
287
284
  decode(input, length) {
@@ -294,9 +291,6 @@ export const MsgChannelOpenTryResponse = {
294
291
  case 1:
295
292
  message.version = reader.string();
296
293
  break;
297
- case 2:
298
- message.channelId = reader.string();
299
- break;
300
294
  default:
301
295
  reader.skipType(tag & 7);
302
296
  break;
@@ -305,21 +299,16 @@ export const MsgChannelOpenTryResponse = {
305
299
  return message;
306
300
  },
307
301
  fromJSON(object) {
308
- return {
309
- version: isSet(object.version) ? String(object.version) : "",
310
- channelId: isSet(object.channelId) ? String(object.channelId) : "",
311
- };
302
+ return { version: isSet(object.version) ? String(object.version) : "" };
312
303
  },
313
304
  toJSON(message) {
314
305
  const obj = {};
315
306
  message.version !== undefined && (obj.version = message.version);
316
- message.channelId !== undefined && (obj.channelId = message.channelId);
317
307
  return obj;
318
308
  },
319
309
  fromPartial(object) {
320
310
  const message = createBaseMsgChannelOpenTryResponse();
321
311
  message.version = object.version ?? "";
322
- message.channelId = object.channelId ?? "";
323
312
  return message;
324
313
  },
325
314
  };
@@ -89,7 +89,6 @@ export interface MsgChannelOpenTry {
89
89
  /** MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type. */
90
90
  export interface MsgChannelOpenTryResponse {
91
91
  version: string;
92
- channelId: string;
93
92
  }
94
93
 
95
94
  /**
@@ -463,7 +462,7 @@ export const MsgChannelOpenTry = {
463
462
  };
464
463
 
465
464
  function createBaseMsgChannelOpenTryResponse(): MsgChannelOpenTryResponse {
466
- return { version: "", channelId: "" };
465
+ return { version: "" };
467
466
  }
468
467
 
469
468
  export const MsgChannelOpenTryResponse = {
@@ -471,9 +470,6 @@ export const MsgChannelOpenTryResponse = {
471
470
  if (message.version !== "") {
472
471
  writer.uint32(10).string(message.version);
473
472
  }
474
- if (message.channelId !== "") {
475
- writer.uint32(18).string(message.channelId);
476
- }
477
473
  return writer;
478
474
  },
479
475
 
@@ -487,9 +483,6 @@ export const MsgChannelOpenTryResponse = {
487
483
  case 1:
488
484
  message.version = reader.string();
489
485
  break;
490
- case 2:
491
- message.channelId = reader.string();
492
- break;
493
486
  default:
494
487
  reader.skipType(tag & 7);
495
488
  break;
@@ -499,23 +492,18 @@ export const MsgChannelOpenTryResponse = {
499
492
  },
500
493
 
501
494
  fromJSON(object: any): MsgChannelOpenTryResponse {
502
- return {
503
- version: isSet(object.version) ? String(object.version) : "",
504
- channelId: isSet(object.channelId) ? String(object.channelId) : "",
505
- };
495
+ return { version: isSet(object.version) ? String(object.version) : "" };
506
496
  },
507
497
 
508
498
  toJSON(message: MsgChannelOpenTryResponse): unknown {
509
499
  const obj: any = {};
510
500
  message.version !== undefined && (obj.version = message.version);
511
- message.channelId !== undefined && (obj.channelId = message.channelId);
512
501
  return obj;
513
502
  },
514
503
 
515
504
  fromPartial<I extends Exact<DeepPartial<MsgChannelOpenTryResponse>, I>>(object: I): MsgChannelOpenTryResponse {
516
505
  const message = createBaseMsgChannelOpenTryResponse();
517
506
  message.version = object.version ?? "";
518
- message.channelId = object.channelId ?? "";
519
507
  return message;
520
508
  },
521
509
  };
@@ -103,11 +103,7 @@ export interface Height {
103
103
 
104
104
  /** Params defines the set of IBC light client parameters. */
105
105
  export interface Params {
106
- /**
107
- * allowed_clients defines the list of allowed client state types which can be created
108
- * and interacted with. If a client type is removed from the allowed clients list, usage
109
- * of this client will be disabled until it is added again to the list.
110
- */
106
+ /** allowed_clients defines the list of allowed client state types. */
111
107
  allowedClients: string[];
112
108
  }
113
109
 
@@ -325,11 +325,7 @@ export type V1MsgUpgradeClientResponse = object;
325
325
  * Params defines the set of IBC light client parameters.
326
326
  */
327
327
  export interface V1Params {
328
- /**
329
- * allowed_clients defines the list of allowed client state types which can be created
330
- * and interacted with. If a client type is removed from the allowed clients list, usage
331
- * of this client will be disabled until it is added again to the list.
332
- */
328
+ /** allowed_clients defines the list of allowed client state types. */
333
329
  allowed_clients?: string[];
334
330
  }
335
331
 
@@ -28,7 +28,10 @@ export interface Plan {
28
28
  time:
29
29
  | Date
30
30
  | undefined;
31
- /** The height at which the upgrade must be performed. */
31
+ /**
32
+ * The height at which the upgrade must be performed.
33
+ * Only used if Time is not set.
34
+ */
32
35
  height: number;
33
36
  /**
34
37
  * Any application specific upgrade info to be included on-chain
@@ -54,11 +57,8 @@ export interface Plan {
54
57
  * @deprecated
55
58
  */
56
59
  export interface SoftwareUpgradeProposal {
57
- /** title of the proposal */
58
60
  title: string;
59
- /** description of the proposal */
60
61
  description: string;
61
- /** plan of the proposal */
62
62
  plan: Plan | undefined;
63
63
  }
64
64
 
@@ -71,9 +71,7 @@ export interface SoftwareUpgradeProposal {
71
71
  * @deprecated
72
72
  */
73
73
  export interface CancelSoftwareUpgradeProposal {
74
- /** title of the proposal */
75
74
  title: string;
76
- /** description of the proposal */
77
75
  description: string;
78
76
  }
79
77
 
@@ -103,11 +103,7 @@ export interface Height {
103
103
 
104
104
  /** Params defines the set of IBC light client parameters. */
105
105
  export interface Params {
106
- /**
107
- * allowed_clients defines the list of allowed client state types which can be created
108
- * and interacted with. If a client type is removed from the allowed clients list, usage
109
- * of this client will be disabled until it is added again to the list.
110
- */
106
+ /** allowed_clients defines the list of allowed client state types. */
111
107
  allowedClients: string[];
112
108
  }
113
109
 
@@ -103,15 +103,15 @@ export const MsgCreateClientResponse = {
103
103
  },
104
104
  };
105
105
  function createBaseMsgUpdateClient() {
106
- return { clientId: "", clientMessage: undefined, signer: "" };
106
+ return { clientId: "", header: undefined, signer: "" };
107
107
  }
108
108
  export const MsgUpdateClient = {
109
109
  encode(message, writer = _m0.Writer.create()) {
110
110
  if (message.clientId !== "") {
111
111
  writer.uint32(10).string(message.clientId);
112
112
  }
113
- if (message.clientMessage !== undefined) {
114
- Any.encode(message.clientMessage, writer.uint32(18).fork()).ldelim();
113
+ if (message.header !== undefined) {
114
+ Any.encode(message.header, writer.uint32(18).fork()).ldelim();
115
115
  }
116
116
  if (message.signer !== "") {
117
117
  writer.uint32(26).string(message.signer);
@@ -129,7 +129,7 @@ export const MsgUpdateClient = {
129
129
  message.clientId = reader.string();
130
130
  break;
131
131
  case 2:
132
- message.clientMessage = Any.decode(reader, reader.uint32());
132
+ message.header = Any.decode(reader, reader.uint32());
133
133
  break;
134
134
  case 3:
135
135
  message.signer = reader.string();
@@ -144,23 +144,22 @@ export const MsgUpdateClient = {
144
144
  fromJSON(object) {
145
145
  return {
146
146
  clientId: isSet(object.clientId) ? String(object.clientId) : "",
147
- clientMessage: isSet(object.clientMessage) ? Any.fromJSON(object.clientMessage) : undefined,
147
+ header: isSet(object.header) ? Any.fromJSON(object.header) : undefined,
148
148
  signer: isSet(object.signer) ? String(object.signer) : "",
149
149
  };
150
150
  },
151
151
  toJSON(message) {
152
152
  const obj = {};
153
153
  message.clientId !== undefined && (obj.clientId = message.clientId);
154
- message.clientMessage !== undefined
155
- && (obj.clientMessage = message.clientMessage ? Any.toJSON(message.clientMessage) : undefined);
154
+ message.header !== undefined && (obj.header = message.header ? Any.toJSON(message.header) : undefined);
156
155
  message.signer !== undefined && (obj.signer = message.signer);
157
156
  return obj;
158
157
  },
159
158
  fromPartial(object) {
160
159
  const message = createBaseMsgUpdateClient();
161
160
  message.clientId = object.clientId ?? "";
162
- message.clientMessage = (object.clientMessage !== undefined && object.clientMessage !== null)
163
- ? Any.fromPartial(object.clientMessage)
161
+ message.header = (object.header !== undefined && object.header !== null)
162
+ ? Any.fromPartial(object.header)
164
163
  : undefined;
165
164
  message.signer = object.signer ?? "";
166
165
  return message;
@@ -27,13 +27,13 @@ export interface MsgCreateClientResponse {
27
27
 
28
28
  /**
29
29
  * MsgUpdateClient defines an sdk.Msg to update a IBC client state using
30
- * the given client message.
30
+ * the given header.
31
31
  */
32
32
  export interface MsgUpdateClient {
33
33
  /** client unique identifier */
34
34
  clientId: string;
35
- /** client message to update the light client */
36
- clientMessage:
35
+ /** header to update the light client */
36
+ header:
37
37
  | Any
38
38
  | undefined;
39
39
  /** signer address */
@@ -77,28 +77,15 @@ export interface MsgUpgradeClientResponse {
77
77
  /**
78
78
  * MsgSubmitMisbehaviour defines an sdk.Msg type that submits Evidence for
79
79
  * light client misbehaviour.
80
- * Warning: DEPRECATED
81
80
  */
82
81
  export interface MsgSubmitMisbehaviour {
83
- /**
84
- * client unique identifier
85
- *
86
- * @deprecated
87
- */
82
+ /** client unique identifier */
88
83
  clientId: string;
89
- /**
90
- * misbehaviour used for freezing the light client
91
- *
92
- * @deprecated
93
- */
84
+ /** misbehaviour used for freezing the light client */
94
85
  misbehaviour:
95
86
  | Any
96
87
  | undefined;
97
- /**
98
- * signer address
99
- *
100
- * @deprecated
101
- */
88
+ /** signer address */
102
89
  signer: string;
103
90
  }
104
91
 
@@ -222,7 +209,7 @@ export const MsgCreateClientResponse = {
222
209
  };
223
210
 
224
211
  function createBaseMsgUpdateClient(): MsgUpdateClient {
225
- return { clientId: "", clientMessage: undefined, signer: "" };
212
+ return { clientId: "", header: undefined, signer: "" };
226
213
  }
227
214
 
228
215
  export const MsgUpdateClient = {
@@ -230,8 +217,8 @@ export const MsgUpdateClient = {
230
217
  if (message.clientId !== "") {
231
218
  writer.uint32(10).string(message.clientId);
232
219
  }
233
- if (message.clientMessage !== undefined) {
234
- Any.encode(message.clientMessage, writer.uint32(18).fork()).ldelim();
220
+ if (message.header !== undefined) {
221
+ Any.encode(message.header, writer.uint32(18).fork()).ldelim();
235
222
  }
236
223
  if (message.signer !== "") {
237
224
  writer.uint32(26).string(message.signer);
@@ -250,7 +237,7 @@ export const MsgUpdateClient = {
250
237
  message.clientId = reader.string();
251
238
  break;
252
239
  case 2:
253
- message.clientMessage = Any.decode(reader, reader.uint32());
240
+ message.header = Any.decode(reader, reader.uint32());
254
241
  break;
255
242
  case 3:
256
243
  message.signer = reader.string();
@@ -266,7 +253,7 @@ export const MsgUpdateClient = {
266
253
  fromJSON(object: any): MsgUpdateClient {
267
254
  return {
268
255
  clientId: isSet(object.clientId) ? String(object.clientId) : "",
269
- clientMessage: isSet(object.clientMessage) ? Any.fromJSON(object.clientMessage) : undefined,
256
+ header: isSet(object.header) ? Any.fromJSON(object.header) : undefined,
270
257
  signer: isSet(object.signer) ? String(object.signer) : "",
271
258
  };
272
259
  },
@@ -274,8 +261,7 @@ export const MsgUpdateClient = {
274
261
  toJSON(message: MsgUpdateClient): unknown {
275
262
  const obj: any = {};
276
263
  message.clientId !== undefined && (obj.clientId = message.clientId);
277
- message.clientMessage !== undefined
278
- && (obj.clientMessage = message.clientMessage ? Any.toJSON(message.clientMessage) : undefined);
264
+ message.header !== undefined && (obj.header = message.header ? Any.toJSON(message.header) : undefined);
279
265
  message.signer !== undefined && (obj.signer = message.signer);
280
266
  return obj;
281
267
  },
@@ -283,8 +269,8 @@ export const MsgUpdateClient = {
283
269
  fromPartial<I extends Exact<DeepPartial<MsgUpdateClient>, I>>(object: I): MsgUpdateClient {
284
270
  const message = createBaseMsgUpdateClient();
285
271
  message.clientId = object.clientId ?? "";
286
- message.clientMessage = (object.clientMessage !== undefined && object.clientMessage !== null)
287
- ? Any.fromPartial(object.clientMessage)
272
+ message.header = (object.header !== undefined && object.header !== null)
273
+ ? Any.fromPartial(object.header)
288
274
  : undefined;
289
275
  message.signer = object.signer ?? "";
290
276
  return message;
@@ -28,7 +28,10 @@ export interface Plan {
28
28
  time:
29
29
  | Date
30
30
  | undefined;
31
- /** The height at which the upgrade must be performed. */
31
+ /**
32
+ * The height at which the upgrade must be performed.
33
+ * Only used if Time is not set.
34
+ */
32
35
  height: number;
33
36
  /**
34
37
  * Any application specific upgrade info to be included on-chain
@@ -54,11 +57,8 @@ export interface Plan {
54
57
  * @deprecated
55
58
  */
56
59
  export interface SoftwareUpgradeProposal {
57
- /** title of the proposal */
58
60
  title: string;
59
- /** description of the proposal */
60
61
  description: string;
61
- /** plan of the proposal */
62
62
  plan: Plan | undefined;
63
63
  }
64
64
 
@@ -71,9 +71,7 @@ export interface SoftwareUpgradeProposal {
71
71
  * @deprecated
72
72
  */
73
73
  export interface CancelSoftwareUpgradeProposal {
74
- /** title of the proposal */
75
74
  title: string;
76
- /** description of the proposal */
77
75
  description: string;
78
76
  }
79
77
 
@@ -103,11 +103,7 @@ export interface Height {
103
103
 
104
104
  /** Params defines the set of IBC light client parameters. */
105
105
  export interface Params {
106
- /**
107
- * allowed_clients defines the list of allowed client state types which can be created
108
- * and interacted with. If a client type is removed from the allowed clients list, usage
109
- * of this client will be disabled until it is added again to the list.
110
- */
106
+ /** allowed_clients defines the list of allowed client state types. */
111
107
  allowedClients: string[];
112
108
  }
113
109
 
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable */
2
2
  import _m0 from "protobufjs/minimal";
3
- import { CommitmentProof } from "../../../../cosmos/ics23/v1/proofs";
3
+ import { CommitmentProof } from "../../../../proofs";
4
4
  export const protobufPackage = "ibc.core.commitment.v1";
5
5
  function createBaseMerkleRoot() {
6
6
  return { hash: new Uint8Array() };
@@ -1,6 +1,6 @@
1
1
  /* eslint-disable */
2
2
  import _m0 from "protobufjs/minimal";
3
- import { CommitmentProof } from "../../../../cosmos/ics23/v1/proofs";
3
+ import { CommitmentProof } from "../../../../proofs";
4
4
 
5
5
  export const protobufPackage = "ibc.core.commitment.v1";
6
6
 
@@ -136,7 +136,6 @@ function createBaseMsgConnectionOpenTry() {
136
136
  proofConsensus: new Uint8Array(),
137
137
  consensusHeight: undefined,
138
138
  signer: "",
139
- hostConsensusStateProof: new Uint8Array(),
140
139
  };
141
140
  }
142
141
  export const MsgConnectionOpenTry = {
@@ -177,9 +176,6 @@ export const MsgConnectionOpenTry = {
177
176
  if (message.signer !== "") {
178
177
  writer.uint32(98).string(message.signer);
179
178
  }
180
- if (message.hostConsensusStateProof.length !== 0) {
181
- writer.uint32(106).bytes(message.hostConsensusStateProof);
182
- }
183
179
  return writer;
184
180
  },
185
181
  decode(input, length) {
@@ -225,9 +221,6 @@ export const MsgConnectionOpenTry = {
225
221
  case 12:
226
222
  message.signer = reader.string();
227
223
  break;
228
- case 13:
229
- message.hostConsensusStateProof = reader.bytes();
230
- break;
231
224
  default:
232
225
  reader.skipType(tag & 7);
233
226
  break;
@@ -251,9 +244,6 @@ export const MsgConnectionOpenTry = {
251
244
  proofConsensus: isSet(object.proofConsensus) ? bytesFromBase64(object.proofConsensus) : new Uint8Array(),
252
245
  consensusHeight: isSet(object.consensusHeight) ? Height.fromJSON(object.consensusHeight) : undefined,
253
246
  signer: isSet(object.signer) ? String(object.signer) : "",
254
- hostConsensusStateProof: isSet(object.hostConsensusStateProof)
255
- ? bytesFromBase64(object.hostConsensusStateProof)
256
- : new Uint8Array(),
257
247
  };
258
248
  },
259
249
  toJSON(message) {
@@ -282,8 +272,6 @@ export const MsgConnectionOpenTry = {
282
272
  message.consensusHeight !== undefined
283
273
  && (obj.consensusHeight = message.consensusHeight ? Height.toJSON(message.consensusHeight) : undefined);
284
274
  message.signer !== undefined && (obj.signer = message.signer);
285
- message.hostConsensusStateProof !== undefined
286
- && (obj.hostConsensusStateProof = base64FromBytes(message.hostConsensusStateProof !== undefined ? message.hostConsensusStateProof : new Uint8Array()));
287
275
  return obj;
288
276
  },
289
277
  fromPartial(object) {
@@ -308,7 +296,6 @@ export const MsgConnectionOpenTry = {
308
296
  ? Height.fromPartial(object.consensusHeight)
309
297
  : undefined;
310
298
  message.signer = object.signer ?? "";
311
- message.hostConsensusStateProof = object.hostConsensusStateProof ?? new Uint8Array();
312
299
  return message;
313
300
  },
314
301
  };
@@ -357,7 +344,6 @@ function createBaseMsgConnectionOpenAck() {
357
344
  proofConsensus: new Uint8Array(),
358
345
  consensusHeight: undefined,
359
346
  signer: "",
360
- hostConsensusStateProof: new Uint8Array(),
361
347
  };
362
348
  }
363
349
  export const MsgConnectionOpenAck = {
@@ -392,9 +378,6 @@ export const MsgConnectionOpenAck = {
392
378
  if (message.signer !== "") {
393
379
  writer.uint32(82).string(message.signer);
394
380
  }
395
- if (message.hostConsensusStateProof.length !== 0) {
396
- writer.uint32(90).bytes(message.hostConsensusStateProof);
397
- }
398
381
  return writer;
399
382
  },
400
383
  decode(input, length) {
@@ -434,9 +417,6 @@ export const MsgConnectionOpenAck = {
434
417
  case 10:
435
418
  message.signer = reader.string();
436
419
  break;
437
- case 11:
438
- message.hostConsensusStateProof = reader.bytes();
439
- break;
440
420
  default:
441
421
  reader.skipType(tag & 7);
442
422
  break;
@@ -456,9 +436,6 @@ export const MsgConnectionOpenAck = {
456
436
  proofConsensus: isSet(object.proofConsensus) ? bytesFromBase64(object.proofConsensus) : new Uint8Array(),
457
437
  consensusHeight: isSet(object.consensusHeight) ? Height.fromJSON(object.consensusHeight) : undefined,
458
438
  signer: isSet(object.signer) ? String(object.signer) : "",
459
- hostConsensusStateProof: isSet(object.hostConsensusStateProof)
460
- ? bytesFromBase64(object.hostConsensusStateProof)
461
- : new Uint8Array(),
462
439
  };
463
440
  },
464
441
  toJSON(message) {
@@ -479,8 +456,6 @@ export const MsgConnectionOpenAck = {
479
456
  message.consensusHeight !== undefined
480
457
  && (obj.consensusHeight = message.consensusHeight ? Height.toJSON(message.consensusHeight) : undefined);
481
458
  message.signer !== undefined && (obj.signer = message.signer);
482
- message.hostConsensusStateProof !== undefined
483
- && (obj.hostConsensusStateProof = base64FromBytes(message.hostConsensusStateProof !== undefined ? message.hostConsensusStateProof : new Uint8Array()));
484
459
  return obj;
485
460
  },
486
461
  fromPartial(object) {
@@ -503,7 +478,6 @@ export const MsgConnectionOpenAck = {
503
478
  ? Height.fromPartial(object.consensusHeight)
504
479
  : undefined;
505
480
  message.signer = object.signer ?? "";
506
- message.hostConsensusStateProof = object.hostConsensusStateProof ?? new Uint8Array();
507
481
  return message;
508
482
  },
509
483
  };