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