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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import Long from "long";
|
|
3
3
|
import _m0 from "protobufjs/minimal";
|
|
4
|
-
import { Deposit, DepositParams, Proposal, TallyParams, Vote, VotingParams } from "./gov";
|
|
4
|
+
import { Deposit, DepositParams, Params, Proposal, TallyParams, Vote, VotingParams } from "./gov";
|
|
5
5
|
|
|
6
6
|
export const protobufPackage = "cosmos.gov.v1";
|
|
7
7
|
|
|
@@ -17,16 +17,39 @@ export interface GenesisState {
|
|
|
17
17
|
votes: Vote[];
|
|
18
18
|
/** proposals defines all the proposals present at genesis. */
|
|
19
19
|
proposals: Proposal[];
|
|
20
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* Deprecated: Prefer to use `params` instead.
|
|
22
|
+
* deposit_params defines all the paramaters of related to deposit.
|
|
23
|
+
*
|
|
24
|
+
* @deprecated
|
|
25
|
+
*/
|
|
21
26
|
depositParams:
|
|
22
27
|
| DepositParams
|
|
23
28
|
| undefined;
|
|
24
|
-
/**
|
|
29
|
+
/**
|
|
30
|
+
* Deprecated: Prefer to use `params` instead.
|
|
31
|
+
* voting_params defines all the paramaters of related to voting.
|
|
32
|
+
*
|
|
33
|
+
* @deprecated
|
|
34
|
+
*/
|
|
25
35
|
votingParams:
|
|
26
36
|
| VotingParams
|
|
27
37
|
| undefined;
|
|
28
|
-
/**
|
|
29
|
-
|
|
38
|
+
/**
|
|
39
|
+
* Deprecated: Prefer to use `params` instead.
|
|
40
|
+
* tally_params defines all the paramaters of related to tally.
|
|
41
|
+
*
|
|
42
|
+
* @deprecated
|
|
43
|
+
*/
|
|
44
|
+
tallyParams:
|
|
45
|
+
| TallyParams
|
|
46
|
+
| undefined;
|
|
47
|
+
/**
|
|
48
|
+
* params defines all the paramaters of x/gov module.
|
|
49
|
+
*
|
|
50
|
+
* Since: cosmos-sdk 0.47
|
|
51
|
+
*/
|
|
52
|
+
params: Params | undefined;
|
|
30
53
|
}
|
|
31
54
|
|
|
32
55
|
function createBaseGenesisState(): GenesisState {
|
|
@@ -38,6 +61,7 @@ function createBaseGenesisState(): GenesisState {
|
|
|
38
61
|
depositParams: undefined,
|
|
39
62
|
votingParams: undefined,
|
|
40
63
|
tallyParams: undefined,
|
|
64
|
+
params: undefined,
|
|
41
65
|
};
|
|
42
66
|
}
|
|
43
67
|
|
|
@@ -64,6 +88,9 @@ export const GenesisState = {
|
|
|
64
88
|
if (message.tallyParams !== undefined) {
|
|
65
89
|
TallyParams.encode(message.tallyParams, writer.uint32(58).fork()).ldelim();
|
|
66
90
|
}
|
|
91
|
+
if (message.params !== undefined) {
|
|
92
|
+
Params.encode(message.params, writer.uint32(66).fork()).ldelim();
|
|
93
|
+
}
|
|
67
94
|
return writer;
|
|
68
95
|
},
|
|
69
96
|
|
|
@@ -95,6 +122,9 @@ export const GenesisState = {
|
|
|
95
122
|
case 7:
|
|
96
123
|
message.tallyParams = TallyParams.decode(reader, reader.uint32());
|
|
97
124
|
break;
|
|
125
|
+
case 8:
|
|
126
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
127
|
+
break;
|
|
98
128
|
default:
|
|
99
129
|
reader.skipType(tag & 7);
|
|
100
130
|
break;
|
|
@@ -112,6 +142,7 @@ export const GenesisState = {
|
|
|
112
142
|
depositParams: isSet(object.depositParams) ? DepositParams.fromJSON(object.depositParams) : undefined,
|
|
113
143
|
votingParams: isSet(object.votingParams) ? VotingParams.fromJSON(object.votingParams) : undefined,
|
|
114
144
|
tallyParams: isSet(object.tallyParams) ? TallyParams.fromJSON(object.tallyParams) : undefined,
|
|
145
|
+
params: isSet(object.params) ? Params.fromJSON(object.params) : undefined,
|
|
115
146
|
};
|
|
116
147
|
},
|
|
117
148
|
|
|
@@ -139,6 +170,7 @@ export const GenesisState = {
|
|
|
139
170
|
&& (obj.votingParams = message.votingParams ? VotingParams.toJSON(message.votingParams) : undefined);
|
|
140
171
|
message.tallyParams !== undefined
|
|
141
172
|
&& (obj.tallyParams = message.tallyParams ? TallyParams.toJSON(message.tallyParams) : undefined);
|
|
173
|
+
message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined);
|
|
142
174
|
return obj;
|
|
143
175
|
},
|
|
144
176
|
|
|
@@ -157,6 +189,9 @@ export const GenesisState = {
|
|
|
157
189
|
message.tallyParams = (object.tallyParams !== undefined && object.tallyParams !== null)
|
|
158
190
|
? TallyParams.fromPartial(object.tallyParams)
|
|
159
191
|
: undefined;
|
|
192
|
+
message.params = (object.params !== undefined && object.params !== null)
|
|
193
|
+
? Params.fromPartial(object.params)
|
|
194
|
+
: undefined;
|
|
160
195
|
return message;
|
|
161
196
|
},
|
|
162
197
|
};
|
|
@@ -148,7 +148,9 @@ export function proposalStatusToJSON(object: ProposalStatus): string {
|
|
|
148
148
|
|
|
149
149
|
/** WeightedVoteOption defines a unit of vote for vote split. */
|
|
150
150
|
export interface WeightedVoteOption {
|
|
151
|
+
/** option defines the valid vote options, it must not contain duplicate vote options. */
|
|
151
152
|
option: VoteOption;
|
|
153
|
+
/** weight is the vote weight associated with the vote option. */
|
|
152
154
|
weight: string;
|
|
153
155
|
}
|
|
154
156
|
|
|
@@ -157,38 +159,79 @@ export interface WeightedVoteOption {
|
|
|
157
159
|
* proposal.
|
|
158
160
|
*/
|
|
159
161
|
export interface Deposit {
|
|
162
|
+
/** proposal_id defines the unique id of the proposal. */
|
|
160
163
|
proposalId: number;
|
|
164
|
+
/** depositor defines the deposit addresses from the proposals. */
|
|
161
165
|
depositor: string;
|
|
166
|
+
/** amount to be deposited by depositor. */
|
|
162
167
|
amount: Coin[];
|
|
163
168
|
}
|
|
164
169
|
|
|
165
170
|
/** Proposal defines the core field members of a governance proposal. */
|
|
166
171
|
export interface Proposal {
|
|
172
|
+
/** id defines the unique id of the proposal. */
|
|
167
173
|
id: number;
|
|
174
|
+
/** messages are the arbitrary messages to be executed if the proposal passes. */
|
|
168
175
|
messages: Any[];
|
|
176
|
+
/** status defines the proposal status. */
|
|
169
177
|
status: ProposalStatus;
|
|
170
178
|
/**
|
|
171
179
|
* final_tally_result is the final tally result of the proposal. When
|
|
172
180
|
* querying a proposal via gRPC, this field is not populated until the
|
|
173
181
|
* proposal's voting period has ended.
|
|
174
182
|
*/
|
|
175
|
-
finalTallyResult:
|
|
176
|
-
|
|
177
|
-
|
|
183
|
+
finalTallyResult:
|
|
184
|
+
| TallyResult
|
|
185
|
+
| undefined;
|
|
186
|
+
/** submit_time is the time of proposal submission. */
|
|
187
|
+
submitTime:
|
|
188
|
+
| Date
|
|
189
|
+
| undefined;
|
|
190
|
+
/** deposit_end_time is the end time for deposition. */
|
|
191
|
+
depositEndTime:
|
|
192
|
+
| Date
|
|
193
|
+
| undefined;
|
|
194
|
+
/** total_deposit is the total deposit on the proposal. */
|
|
178
195
|
totalDeposit: Coin[];
|
|
179
|
-
|
|
196
|
+
/** voting_start_time is the starting time to vote on a proposal. */
|
|
197
|
+
votingStartTime:
|
|
198
|
+
| Date
|
|
199
|
+
| undefined;
|
|
200
|
+
/** voting_end_time is the end time of voting on a proposal. */
|
|
180
201
|
votingEndTime:
|
|
181
202
|
| Date
|
|
182
203
|
| undefined;
|
|
183
204
|
/** metadata is any arbitrary metadata attached to the proposal. */
|
|
184
205
|
metadata: string;
|
|
206
|
+
/**
|
|
207
|
+
* title is the title of the proposal
|
|
208
|
+
*
|
|
209
|
+
* Since: cosmos-sdk 0.47
|
|
210
|
+
*/
|
|
211
|
+
title: string;
|
|
212
|
+
/**
|
|
213
|
+
* summary is a short summary of the proposal
|
|
214
|
+
*
|
|
215
|
+
* Since: cosmos-sdk 0.47
|
|
216
|
+
*/
|
|
217
|
+
summary: string;
|
|
218
|
+
/**
|
|
219
|
+
* Proposer is the address of the proposal sumbitter
|
|
220
|
+
*
|
|
221
|
+
* Since: cosmos-sdk 0.47
|
|
222
|
+
*/
|
|
223
|
+
proposer: string;
|
|
185
224
|
}
|
|
186
225
|
|
|
187
226
|
/** TallyResult defines a standard tally for a governance proposal. */
|
|
188
227
|
export interface TallyResult {
|
|
228
|
+
/** yes_count is the number of yes votes on a proposal. */
|
|
189
229
|
yesCount: string;
|
|
230
|
+
/** abstain_count is the number of abstain votes on a proposal. */
|
|
190
231
|
abstainCount: string;
|
|
232
|
+
/** no_count is the number of no votes on a proposal. */
|
|
191
233
|
noCount: string;
|
|
234
|
+
/** no_with_veto_count is the number of no with veto votes on a proposal. */
|
|
192
235
|
noWithVetoCount: string;
|
|
193
236
|
}
|
|
194
237
|
|
|
@@ -197,8 +240,11 @@ export interface TallyResult {
|
|
|
197
240
|
* A Vote consists of a proposal ID, the voter, and the vote option.
|
|
198
241
|
*/
|
|
199
242
|
export interface Vote {
|
|
243
|
+
/** proposal_id defines the unique id of the proposal. */
|
|
200
244
|
proposalId: number;
|
|
245
|
+
/** voter is the voter address of the proposal. */
|
|
201
246
|
voter: string;
|
|
247
|
+
/** options is the weighted vote options. */
|
|
202
248
|
options: WeightedVoteOption[];
|
|
203
249
|
/** metadata is any arbitrary metadata to attached to the vote. */
|
|
204
250
|
metadata: string;
|
|
@@ -210,19 +256,52 @@ export interface DepositParams {
|
|
|
210
256
|
minDeposit: Coin[];
|
|
211
257
|
/**
|
|
212
258
|
* Maximum period for Atom holders to deposit on a proposal. Initial value: 2
|
|
213
|
-
*
|
|
259
|
+
* months.
|
|
214
260
|
*/
|
|
215
261
|
maxDepositPeriod: Duration | undefined;
|
|
216
262
|
}
|
|
217
263
|
|
|
218
264
|
/** VotingParams defines the params for voting on governance proposals. */
|
|
219
265
|
export interface VotingParams {
|
|
220
|
-
/**
|
|
266
|
+
/** Duration of the voting period. */
|
|
221
267
|
votingPeriod: Duration | undefined;
|
|
222
268
|
}
|
|
223
269
|
|
|
224
270
|
/** TallyParams defines the params for tallying votes on governance proposals. */
|
|
225
271
|
export interface TallyParams {
|
|
272
|
+
/**
|
|
273
|
+
* Minimum percentage of total stake needed to vote for a result to be
|
|
274
|
+
* considered valid.
|
|
275
|
+
*/
|
|
276
|
+
quorum: string;
|
|
277
|
+
/** Minimum proportion of Yes votes for proposal to pass. Default value: 0.5. */
|
|
278
|
+
threshold: string;
|
|
279
|
+
/**
|
|
280
|
+
* Minimum value of Veto votes to Total votes ratio for proposal to be
|
|
281
|
+
* vetoed. Default value: 1/3.
|
|
282
|
+
*/
|
|
283
|
+
vetoThreshold: string;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* Params defines the parameters for the x/gov module.
|
|
288
|
+
*
|
|
289
|
+
* Since: cosmos-sdk 0.47
|
|
290
|
+
*/
|
|
291
|
+
export interface Params {
|
|
292
|
+
/** Minimum deposit for a proposal to enter voting period. */
|
|
293
|
+
minDeposit: Coin[];
|
|
294
|
+
/**
|
|
295
|
+
* Maximum period for Atom holders to deposit on a proposal. Initial value: 2
|
|
296
|
+
* months.
|
|
297
|
+
*/
|
|
298
|
+
maxDepositPeriod:
|
|
299
|
+
| Duration
|
|
300
|
+
| undefined;
|
|
301
|
+
/** Duration of the voting period. */
|
|
302
|
+
votingPeriod:
|
|
303
|
+
| Duration
|
|
304
|
+
| undefined;
|
|
226
305
|
/**
|
|
227
306
|
* Minimum percentage of total stake needed to vote for a result to be
|
|
228
307
|
* considered valid.
|
|
@@ -235,6 +314,14 @@ export interface TallyParams {
|
|
|
235
314
|
* vetoed. Default value: 1/3.
|
|
236
315
|
*/
|
|
237
316
|
vetoThreshold: string;
|
|
317
|
+
/** The ratio representing the proportion of the deposit value that must be paid at proposal submission. */
|
|
318
|
+
minInitialDepositRatio: string;
|
|
319
|
+
/** burn deposits if a proposal does not meet quorum */
|
|
320
|
+
burnVoteQuorum: boolean;
|
|
321
|
+
/** burn deposits if the proposal does not enter voting period */
|
|
322
|
+
burnProposalDepositPrevote: boolean;
|
|
323
|
+
/** burn deposits if quorum with vote type no_veto is met */
|
|
324
|
+
burnVoteVeto: boolean;
|
|
238
325
|
}
|
|
239
326
|
|
|
240
327
|
function createBaseWeightedVoteOption(): WeightedVoteOption {
|
|
@@ -378,6 +465,9 @@ function createBaseProposal(): Proposal {
|
|
|
378
465
|
votingStartTime: undefined,
|
|
379
466
|
votingEndTime: undefined,
|
|
380
467
|
metadata: "",
|
|
468
|
+
title: "",
|
|
469
|
+
summary: "",
|
|
470
|
+
proposer: "",
|
|
381
471
|
};
|
|
382
472
|
}
|
|
383
473
|
|
|
@@ -413,6 +503,15 @@ export const Proposal = {
|
|
|
413
503
|
if (message.metadata !== "") {
|
|
414
504
|
writer.uint32(82).string(message.metadata);
|
|
415
505
|
}
|
|
506
|
+
if (message.title !== "") {
|
|
507
|
+
writer.uint32(90).string(message.title);
|
|
508
|
+
}
|
|
509
|
+
if (message.summary !== "") {
|
|
510
|
+
writer.uint32(98).string(message.summary);
|
|
511
|
+
}
|
|
512
|
+
if (message.proposer !== "") {
|
|
513
|
+
writer.uint32(106).string(message.proposer);
|
|
514
|
+
}
|
|
416
515
|
return writer;
|
|
417
516
|
},
|
|
418
517
|
|
|
@@ -453,6 +552,15 @@ export const Proposal = {
|
|
|
453
552
|
case 10:
|
|
454
553
|
message.metadata = reader.string();
|
|
455
554
|
break;
|
|
555
|
+
case 11:
|
|
556
|
+
message.title = reader.string();
|
|
557
|
+
break;
|
|
558
|
+
case 12:
|
|
559
|
+
message.summary = reader.string();
|
|
560
|
+
break;
|
|
561
|
+
case 13:
|
|
562
|
+
message.proposer = reader.string();
|
|
563
|
+
break;
|
|
456
564
|
default:
|
|
457
565
|
reader.skipType(tag & 7);
|
|
458
566
|
break;
|
|
@@ -473,6 +581,9 @@ export const Proposal = {
|
|
|
473
581
|
votingStartTime: isSet(object.votingStartTime) ? fromJsonTimestamp(object.votingStartTime) : undefined,
|
|
474
582
|
votingEndTime: isSet(object.votingEndTime) ? fromJsonTimestamp(object.votingEndTime) : undefined,
|
|
475
583
|
metadata: isSet(object.metadata) ? String(object.metadata) : "",
|
|
584
|
+
title: isSet(object.title) ? String(object.title) : "",
|
|
585
|
+
summary: isSet(object.summary) ? String(object.summary) : "",
|
|
586
|
+
proposer: isSet(object.proposer) ? String(object.proposer) : "",
|
|
476
587
|
};
|
|
477
588
|
},
|
|
478
589
|
|
|
@@ -497,6 +608,9 @@ export const Proposal = {
|
|
|
497
608
|
message.votingStartTime !== undefined && (obj.votingStartTime = message.votingStartTime.toISOString());
|
|
498
609
|
message.votingEndTime !== undefined && (obj.votingEndTime = message.votingEndTime.toISOString());
|
|
499
610
|
message.metadata !== undefined && (obj.metadata = message.metadata);
|
|
611
|
+
message.title !== undefined && (obj.title = message.title);
|
|
612
|
+
message.summary !== undefined && (obj.summary = message.summary);
|
|
613
|
+
message.proposer !== undefined && (obj.proposer = message.proposer);
|
|
500
614
|
return obj;
|
|
501
615
|
},
|
|
502
616
|
|
|
@@ -514,6 +628,9 @@ export const Proposal = {
|
|
|
514
628
|
message.votingStartTime = object.votingStartTime ?? undefined;
|
|
515
629
|
message.votingEndTime = object.votingEndTime ?? undefined;
|
|
516
630
|
message.metadata = object.metadata ?? "";
|
|
631
|
+
message.title = object.title ?? "";
|
|
632
|
+
message.summary = object.summary ?? "";
|
|
633
|
+
message.proposer = object.proposer ?? "";
|
|
517
634
|
return message;
|
|
518
635
|
},
|
|
519
636
|
};
|
|
@@ -856,6 +973,160 @@ export const TallyParams = {
|
|
|
856
973
|
},
|
|
857
974
|
};
|
|
858
975
|
|
|
976
|
+
function createBaseParams(): Params {
|
|
977
|
+
return {
|
|
978
|
+
minDeposit: [],
|
|
979
|
+
maxDepositPeriod: undefined,
|
|
980
|
+
votingPeriod: undefined,
|
|
981
|
+
quorum: "",
|
|
982
|
+
threshold: "",
|
|
983
|
+
vetoThreshold: "",
|
|
984
|
+
minInitialDepositRatio: "",
|
|
985
|
+
burnVoteQuorum: false,
|
|
986
|
+
burnProposalDepositPrevote: false,
|
|
987
|
+
burnVoteVeto: false,
|
|
988
|
+
};
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
export const Params = {
|
|
992
|
+
encode(message: Params, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
993
|
+
for (const v of message.minDeposit) {
|
|
994
|
+
Coin.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
995
|
+
}
|
|
996
|
+
if (message.maxDepositPeriod !== undefined) {
|
|
997
|
+
Duration.encode(message.maxDepositPeriod, writer.uint32(18).fork()).ldelim();
|
|
998
|
+
}
|
|
999
|
+
if (message.votingPeriod !== undefined) {
|
|
1000
|
+
Duration.encode(message.votingPeriod, writer.uint32(26).fork()).ldelim();
|
|
1001
|
+
}
|
|
1002
|
+
if (message.quorum !== "") {
|
|
1003
|
+
writer.uint32(34).string(message.quorum);
|
|
1004
|
+
}
|
|
1005
|
+
if (message.threshold !== "") {
|
|
1006
|
+
writer.uint32(42).string(message.threshold);
|
|
1007
|
+
}
|
|
1008
|
+
if (message.vetoThreshold !== "") {
|
|
1009
|
+
writer.uint32(50).string(message.vetoThreshold);
|
|
1010
|
+
}
|
|
1011
|
+
if (message.minInitialDepositRatio !== "") {
|
|
1012
|
+
writer.uint32(58).string(message.minInitialDepositRatio);
|
|
1013
|
+
}
|
|
1014
|
+
if (message.burnVoteQuorum === true) {
|
|
1015
|
+
writer.uint32(104).bool(message.burnVoteQuorum);
|
|
1016
|
+
}
|
|
1017
|
+
if (message.burnProposalDepositPrevote === true) {
|
|
1018
|
+
writer.uint32(112).bool(message.burnProposalDepositPrevote);
|
|
1019
|
+
}
|
|
1020
|
+
if (message.burnVoteVeto === true) {
|
|
1021
|
+
writer.uint32(120).bool(message.burnVoteVeto);
|
|
1022
|
+
}
|
|
1023
|
+
return writer;
|
|
1024
|
+
},
|
|
1025
|
+
|
|
1026
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Params {
|
|
1027
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
1028
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
1029
|
+
const message = createBaseParams();
|
|
1030
|
+
while (reader.pos < end) {
|
|
1031
|
+
const tag = reader.uint32();
|
|
1032
|
+
switch (tag >>> 3) {
|
|
1033
|
+
case 1:
|
|
1034
|
+
message.minDeposit.push(Coin.decode(reader, reader.uint32()));
|
|
1035
|
+
break;
|
|
1036
|
+
case 2:
|
|
1037
|
+
message.maxDepositPeriod = Duration.decode(reader, reader.uint32());
|
|
1038
|
+
break;
|
|
1039
|
+
case 3:
|
|
1040
|
+
message.votingPeriod = Duration.decode(reader, reader.uint32());
|
|
1041
|
+
break;
|
|
1042
|
+
case 4:
|
|
1043
|
+
message.quorum = reader.string();
|
|
1044
|
+
break;
|
|
1045
|
+
case 5:
|
|
1046
|
+
message.threshold = reader.string();
|
|
1047
|
+
break;
|
|
1048
|
+
case 6:
|
|
1049
|
+
message.vetoThreshold = reader.string();
|
|
1050
|
+
break;
|
|
1051
|
+
case 7:
|
|
1052
|
+
message.minInitialDepositRatio = reader.string();
|
|
1053
|
+
break;
|
|
1054
|
+
case 13:
|
|
1055
|
+
message.burnVoteQuorum = reader.bool();
|
|
1056
|
+
break;
|
|
1057
|
+
case 14:
|
|
1058
|
+
message.burnProposalDepositPrevote = reader.bool();
|
|
1059
|
+
break;
|
|
1060
|
+
case 15:
|
|
1061
|
+
message.burnVoteVeto = reader.bool();
|
|
1062
|
+
break;
|
|
1063
|
+
default:
|
|
1064
|
+
reader.skipType(tag & 7);
|
|
1065
|
+
break;
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
return message;
|
|
1069
|
+
},
|
|
1070
|
+
|
|
1071
|
+
fromJSON(object: any): Params {
|
|
1072
|
+
return {
|
|
1073
|
+
minDeposit: Array.isArray(object?.minDeposit) ? object.minDeposit.map((e: any) => Coin.fromJSON(e)) : [],
|
|
1074
|
+
maxDepositPeriod: isSet(object.maxDepositPeriod) ? Duration.fromJSON(object.maxDepositPeriod) : undefined,
|
|
1075
|
+
votingPeriod: isSet(object.votingPeriod) ? Duration.fromJSON(object.votingPeriod) : undefined,
|
|
1076
|
+
quorum: isSet(object.quorum) ? String(object.quorum) : "",
|
|
1077
|
+
threshold: isSet(object.threshold) ? String(object.threshold) : "",
|
|
1078
|
+
vetoThreshold: isSet(object.vetoThreshold) ? String(object.vetoThreshold) : "",
|
|
1079
|
+
minInitialDepositRatio: isSet(object.minInitialDepositRatio) ? String(object.minInitialDepositRatio) : "",
|
|
1080
|
+
burnVoteQuorum: isSet(object.burnVoteQuorum) ? Boolean(object.burnVoteQuorum) : false,
|
|
1081
|
+
burnProposalDepositPrevote: isSet(object.burnProposalDepositPrevote)
|
|
1082
|
+
? Boolean(object.burnProposalDepositPrevote)
|
|
1083
|
+
: false,
|
|
1084
|
+
burnVoteVeto: isSet(object.burnVoteVeto) ? Boolean(object.burnVoteVeto) : false,
|
|
1085
|
+
};
|
|
1086
|
+
},
|
|
1087
|
+
|
|
1088
|
+
toJSON(message: Params): unknown {
|
|
1089
|
+
const obj: any = {};
|
|
1090
|
+
if (message.minDeposit) {
|
|
1091
|
+
obj.minDeposit = message.minDeposit.map((e) => e ? Coin.toJSON(e) : undefined);
|
|
1092
|
+
} else {
|
|
1093
|
+
obj.minDeposit = [];
|
|
1094
|
+
}
|
|
1095
|
+
message.maxDepositPeriod !== undefined
|
|
1096
|
+
&& (obj.maxDepositPeriod = message.maxDepositPeriod ? Duration.toJSON(message.maxDepositPeriod) : undefined);
|
|
1097
|
+
message.votingPeriod !== undefined
|
|
1098
|
+
&& (obj.votingPeriod = message.votingPeriod ? Duration.toJSON(message.votingPeriod) : undefined);
|
|
1099
|
+
message.quorum !== undefined && (obj.quorum = message.quorum);
|
|
1100
|
+
message.threshold !== undefined && (obj.threshold = message.threshold);
|
|
1101
|
+
message.vetoThreshold !== undefined && (obj.vetoThreshold = message.vetoThreshold);
|
|
1102
|
+
message.minInitialDepositRatio !== undefined && (obj.minInitialDepositRatio = message.minInitialDepositRatio);
|
|
1103
|
+
message.burnVoteQuorum !== undefined && (obj.burnVoteQuorum = message.burnVoteQuorum);
|
|
1104
|
+
message.burnProposalDepositPrevote !== undefined
|
|
1105
|
+
&& (obj.burnProposalDepositPrevote = message.burnProposalDepositPrevote);
|
|
1106
|
+
message.burnVoteVeto !== undefined && (obj.burnVoteVeto = message.burnVoteVeto);
|
|
1107
|
+
return obj;
|
|
1108
|
+
},
|
|
1109
|
+
|
|
1110
|
+
fromPartial<I extends Exact<DeepPartial<Params>, I>>(object: I): Params {
|
|
1111
|
+
const message = createBaseParams();
|
|
1112
|
+
message.minDeposit = object.minDeposit?.map((e) => Coin.fromPartial(e)) || [];
|
|
1113
|
+
message.maxDepositPeriod = (object.maxDepositPeriod !== undefined && object.maxDepositPeriod !== null)
|
|
1114
|
+
? Duration.fromPartial(object.maxDepositPeriod)
|
|
1115
|
+
: undefined;
|
|
1116
|
+
message.votingPeriod = (object.votingPeriod !== undefined && object.votingPeriod !== null)
|
|
1117
|
+
? Duration.fromPartial(object.votingPeriod)
|
|
1118
|
+
: undefined;
|
|
1119
|
+
message.quorum = object.quorum ?? "";
|
|
1120
|
+
message.threshold = object.threshold ?? "";
|
|
1121
|
+
message.vetoThreshold = object.vetoThreshold ?? "";
|
|
1122
|
+
message.minInitialDepositRatio = object.minInitialDepositRatio ?? "";
|
|
1123
|
+
message.burnVoteQuorum = object.burnVoteQuorum ?? false;
|
|
1124
|
+
message.burnProposalDepositPrevote = object.burnProposalDepositPrevote ?? false;
|
|
1125
|
+
message.burnVoteVeto = object.burnVoteVeto ?? false;
|
|
1126
|
+
return message;
|
|
1127
|
+
},
|
|
1128
|
+
};
|
|
1129
|
+
|
|
859
1130
|
declare var self: any | undefined;
|
|
860
1131
|
declare var window: any | undefined;
|
|
861
1132
|
declare var global: any | undefined;
|
|
@@ -5,6 +5,7 @@ import { PageRequest, PageResponse } from "../../base/query/v1beta1/pagination";
|
|
|
5
5
|
import {
|
|
6
6
|
Deposit,
|
|
7
7
|
DepositParams,
|
|
8
|
+
Params,
|
|
8
9
|
Proposal,
|
|
9
10
|
ProposalStatus,
|
|
10
11
|
proposalStatusFromJSON,
|
|
@@ -27,6 +28,7 @@ export interface QueryProposalRequest {
|
|
|
27
28
|
|
|
28
29
|
/** QueryProposalResponse is the response type for the Query/Proposal RPC method. */
|
|
29
30
|
export interface QueryProposalResponse {
|
|
31
|
+
/** proposal is the requested governance proposal. */
|
|
30
32
|
proposal: Proposal | undefined;
|
|
31
33
|
}
|
|
32
34
|
|
|
@@ -47,6 +49,7 @@ export interface QueryProposalsRequest {
|
|
|
47
49
|
* method.
|
|
48
50
|
*/
|
|
49
51
|
export interface QueryProposalsResponse {
|
|
52
|
+
/** proposals defines all the requested governance proposals. */
|
|
50
53
|
proposals: Proposal[];
|
|
51
54
|
/** pagination defines the pagination in the response. */
|
|
52
55
|
pagination: PageResponse | undefined;
|
|
@@ -62,7 +65,7 @@ export interface QueryVoteRequest {
|
|
|
62
65
|
|
|
63
66
|
/** QueryVoteResponse is the response type for the Query/Vote RPC method. */
|
|
64
67
|
export interface QueryVoteResponse {
|
|
65
|
-
/** vote
|
|
68
|
+
/** vote defines the queried vote. */
|
|
66
69
|
vote: Vote | undefined;
|
|
67
70
|
}
|
|
68
71
|
|
|
@@ -76,7 +79,7 @@ export interface QueryVotesRequest {
|
|
|
76
79
|
|
|
77
80
|
/** QueryVotesResponse is the response type for the Query/Votes RPC method. */
|
|
78
81
|
export interface QueryVotesResponse {
|
|
79
|
-
/** votes
|
|
82
|
+
/** votes defines the queried votes. */
|
|
80
83
|
votes: Vote[];
|
|
81
84
|
/** pagination defines the pagination in the response. */
|
|
82
85
|
pagination: PageResponse | undefined;
|
|
@@ -93,16 +96,39 @@ export interface QueryParamsRequest {
|
|
|
93
96
|
|
|
94
97
|
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
95
98
|
export interface QueryParamsResponse {
|
|
96
|
-
/**
|
|
99
|
+
/**
|
|
100
|
+
* Deprecated: Prefer to use `params` instead.
|
|
101
|
+
* voting_params defines the parameters related to voting.
|
|
102
|
+
*
|
|
103
|
+
* @deprecated
|
|
104
|
+
*/
|
|
97
105
|
votingParams:
|
|
98
106
|
| VotingParams
|
|
99
107
|
| undefined;
|
|
100
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Deprecated: Prefer to use `params` instead.
|
|
110
|
+
* deposit_params defines the parameters related to deposit.
|
|
111
|
+
*
|
|
112
|
+
* @deprecated
|
|
113
|
+
*/
|
|
101
114
|
depositParams:
|
|
102
115
|
| DepositParams
|
|
103
116
|
| undefined;
|
|
104
|
-
/**
|
|
105
|
-
|
|
117
|
+
/**
|
|
118
|
+
* Deprecated: Prefer to use `params` instead.
|
|
119
|
+
* tally_params defines the parameters related to tally.
|
|
120
|
+
*
|
|
121
|
+
* @deprecated
|
|
122
|
+
*/
|
|
123
|
+
tallyParams:
|
|
124
|
+
| TallyParams
|
|
125
|
+
| undefined;
|
|
126
|
+
/**
|
|
127
|
+
* params defines all the paramaters of x/gov module.
|
|
128
|
+
*
|
|
129
|
+
* Since: cosmos-sdk 0.47
|
|
130
|
+
*/
|
|
131
|
+
params: Params | undefined;
|
|
106
132
|
}
|
|
107
133
|
|
|
108
134
|
/** QueryDepositRequest is the request type for the Query/Deposit RPC method. */
|
|
@@ -129,6 +155,7 @@ export interface QueryDepositsRequest {
|
|
|
129
155
|
|
|
130
156
|
/** QueryDepositsResponse is the response type for the Query/Deposits RPC method. */
|
|
131
157
|
export interface QueryDepositsResponse {
|
|
158
|
+
/** deposits defines the requested deposits. */
|
|
132
159
|
deposits: Deposit[];
|
|
133
160
|
/** pagination defines the pagination in the response. */
|
|
134
161
|
pagination: PageResponse | undefined;
|
|
@@ -665,7 +692,7 @@ export const QueryParamsRequest = {
|
|
|
665
692
|
};
|
|
666
693
|
|
|
667
694
|
function createBaseQueryParamsResponse(): QueryParamsResponse {
|
|
668
|
-
return { votingParams: undefined, depositParams: undefined, tallyParams: undefined };
|
|
695
|
+
return { votingParams: undefined, depositParams: undefined, tallyParams: undefined, params: undefined };
|
|
669
696
|
}
|
|
670
697
|
|
|
671
698
|
export const QueryParamsResponse = {
|
|
@@ -679,6 +706,9 @@ export const QueryParamsResponse = {
|
|
|
679
706
|
if (message.tallyParams !== undefined) {
|
|
680
707
|
TallyParams.encode(message.tallyParams, writer.uint32(26).fork()).ldelim();
|
|
681
708
|
}
|
|
709
|
+
if (message.params !== undefined) {
|
|
710
|
+
Params.encode(message.params, writer.uint32(34).fork()).ldelim();
|
|
711
|
+
}
|
|
682
712
|
return writer;
|
|
683
713
|
},
|
|
684
714
|
|
|
@@ -698,6 +728,9 @@ export const QueryParamsResponse = {
|
|
|
698
728
|
case 3:
|
|
699
729
|
message.tallyParams = TallyParams.decode(reader, reader.uint32());
|
|
700
730
|
break;
|
|
731
|
+
case 4:
|
|
732
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
733
|
+
break;
|
|
701
734
|
default:
|
|
702
735
|
reader.skipType(tag & 7);
|
|
703
736
|
break;
|
|
@@ -711,6 +744,7 @@ export const QueryParamsResponse = {
|
|
|
711
744
|
votingParams: isSet(object.votingParams) ? VotingParams.fromJSON(object.votingParams) : undefined,
|
|
712
745
|
depositParams: isSet(object.depositParams) ? DepositParams.fromJSON(object.depositParams) : undefined,
|
|
713
746
|
tallyParams: isSet(object.tallyParams) ? TallyParams.fromJSON(object.tallyParams) : undefined,
|
|
747
|
+
params: isSet(object.params) ? Params.fromJSON(object.params) : undefined,
|
|
714
748
|
};
|
|
715
749
|
},
|
|
716
750
|
|
|
@@ -722,6 +756,7 @@ export const QueryParamsResponse = {
|
|
|
722
756
|
&& (obj.depositParams = message.depositParams ? DepositParams.toJSON(message.depositParams) : undefined);
|
|
723
757
|
message.tallyParams !== undefined
|
|
724
758
|
&& (obj.tallyParams = message.tallyParams ? TallyParams.toJSON(message.tallyParams) : undefined);
|
|
759
|
+
message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined);
|
|
725
760
|
return obj;
|
|
726
761
|
},
|
|
727
762
|
|
|
@@ -736,6 +771,9 @@ export const QueryParamsResponse = {
|
|
|
736
771
|
message.tallyParams = (object.tallyParams !== undefined && object.tallyParams !== null)
|
|
737
772
|
? TallyParams.fromPartial(object.tallyParams)
|
|
738
773
|
: undefined;
|
|
774
|
+
message.params = (object.params !== undefined && object.params !== null)
|
|
775
|
+
? Params.fromPartial(object.params)
|
|
776
|
+
: undefined;
|
|
739
777
|
return message;
|
|
740
778
|
},
|
|
741
779
|
};
|