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
|
@@ -8,7 +8,19 @@ export const protobufPackage = "cosmos.distribution.v1beta1";
|
|
|
8
8
|
/** Params defines the set of params for the distribution module. */
|
|
9
9
|
export interface Params {
|
|
10
10
|
communityTax: string;
|
|
11
|
+
/**
|
|
12
|
+
* Deprecated: The base_proposer_reward field is deprecated and is no longer used
|
|
13
|
+
* in the x/distribution module's reward mechanism.
|
|
14
|
+
*
|
|
15
|
+
* @deprecated
|
|
16
|
+
*/
|
|
11
17
|
baseProposerReward: string;
|
|
18
|
+
/**
|
|
19
|
+
* Deprecated: The bonus_proposer_reward field is deprecated and is no longer used
|
|
20
|
+
* in the x/distribution module's reward mechanism.
|
|
21
|
+
*
|
|
22
|
+
* @deprecated
|
|
23
|
+
*/
|
|
12
24
|
bonusProposerReward: string;
|
|
13
25
|
withdrawAddrEnabled: boolean;
|
|
14
26
|
}
|
|
@@ -83,6 +95,13 @@ export interface FeePool {
|
|
|
83
95
|
* CommunityPoolSpendProposal details a proposal for use of community funds,
|
|
84
96
|
* together with how many coins are proposed to be spent, and to which
|
|
85
97
|
* recipient account.
|
|
98
|
+
*
|
|
99
|
+
* Deprecated: Do not use. As of the Cosmos SDK release v0.47.x, there is no
|
|
100
|
+
* longer a need for an explicit CommunityPoolSpendProposal. To spend community
|
|
101
|
+
* pool funds, a simple MsgCommunityPoolSpend can be invoked from the x/gov
|
|
102
|
+
* module via a v1 governance proposal.
|
|
103
|
+
*
|
|
104
|
+
* @deprecated
|
|
86
105
|
*/
|
|
87
106
|
export interface CommunityPoolSpendProposal {
|
|
88
107
|
title: string;
|
|
@@ -30,7 +30,7 @@ export interface DelegatorWithdrawInfo {
|
|
|
30
30
|
export interface ValidatorOutstandingRewardsRecord {
|
|
31
31
|
/** validator_address is the address of the validator. */
|
|
32
32
|
validatorAddress: string;
|
|
33
|
-
/** outstanding_rewards represents the
|
|
33
|
+
/** outstanding_rewards represents the outstanding rewards of a validator. */
|
|
34
34
|
outstandingRewards: DecCoin[];
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -80,7 +80,7 @@ export interface DelegatorStartingInfoRecord {
|
|
|
80
80
|
export interface ValidatorSlashEventRecord {
|
|
81
81
|
/** validator_address is the address of the validator. */
|
|
82
82
|
validatorAddress: string;
|
|
83
|
-
/** height defines the block height at which the slash event
|
|
83
|
+
/** height defines the block height at which the slash event occurred. */
|
|
84
84
|
height: number;
|
|
85
85
|
/** period is the period of the slash event. */
|
|
86
86
|
period: number;
|
|
@@ -90,7 +90,7 @@ export interface ValidatorSlashEventRecord {
|
|
|
90
90
|
|
|
91
91
|
/** GenesisState defines the distribution module's genesis state. */
|
|
92
92
|
export interface GenesisState {
|
|
93
|
-
/** params defines all the
|
|
93
|
+
/** params defines all the parameters of the module. */
|
|
94
94
|
params:
|
|
95
95
|
| Params
|
|
96
96
|
| undefined;
|
|
@@ -104,7 +104,7 @@ export interface GenesisState {
|
|
|
104
104
|
previousProposer: string;
|
|
105
105
|
/** fee_pool defines the outstanding rewards of all validators at genesis. */
|
|
106
106
|
outstandingRewards: ValidatorOutstandingRewardsRecord[];
|
|
107
|
-
/** fee_pool defines the accumulated
|
|
107
|
+
/** fee_pool defines the accumulated commissions of all validators at genesis. */
|
|
108
108
|
validatorAccumulatedCommissions: ValidatorAccumulatedCommissionRecord[];
|
|
109
109
|
/** fee_pool defines the historical rewards of all validators at genesis. */
|
|
110
110
|
validatorHistoricalRewards: ValidatorHistoricalRewardsRecord[];
|
|
@@ -23,6 +23,22 @@ export interface QueryParamsResponse {
|
|
|
23
23
|
params: Params | undefined;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
+
/** QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method. */
|
|
27
|
+
export interface QueryValidatorDistributionInfoRequest {
|
|
28
|
+
/** validator_address defines the validator address to query for. */
|
|
29
|
+
validatorAddress: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
/** QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method. */
|
|
33
|
+
export interface QueryValidatorDistributionInfoResponse {
|
|
34
|
+
/** operator_address defines the validator operator address. */
|
|
35
|
+
operatorAddress: string;
|
|
36
|
+
/** self_bond_rewards defines the self delegations rewards. */
|
|
37
|
+
selfBondRewards: DecCoin[];
|
|
38
|
+
/** commission defines the commission the validator received. */
|
|
39
|
+
commission: DecCoin[];
|
|
40
|
+
}
|
|
41
|
+
|
|
26
42
|
/**
|
|
27
43
|
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
28
44
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
@@ -54,7 +70,7 @@ export interface QueryValidatorCommissionRequest {
|
|
|
54
70
|
* Query/ValidatorCommission RPC method
|
|
55
71
|
*/
|
|
56
72
|
export interface QueryValidatorCommissionResponse {
|
|
57
|
-
/** commission defines the
|
|
73
|
+
/** commission defines the commission the validator received. */
|
|
58
74
|
commission: ValidatorAccumulatedCommission | undefined;
|
|
59
75
|
}
|
|
60
76
|
|
|
@@ -264,6 +280,134 @@ export const QueryParamsResponse = {
|
|
|
264
280
|
},
|
|
265
281
|
};
|
|
266
282
|
|
|
283
|
+
function createBaseQueryValidatorDistributionInfoRequest(): QueryValidatorDistributionInfoRequest {
|
|
284
|
+
return { validatorAddress: "" };
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export const QueryValidatorDistributionInfoRequest = {
|
|
288
|
+
encode(message: QueryValidatorDistributionInfoRequest, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
289
|
+
if (message.validatorAddress !== "") {
|
|
290
|
+
writer.uint32(10).string(message.validatorAddress);
|
|
291
|
+
}
|
|
292
|
+
return writer;
|
|
293
|
+
},
|
|
294
|
+
|
|
295
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDistributionInfoRequest {
|
|
296
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
297
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
298
|
+
const message = createBaseQueryValidatorDistributionInfoRequest();
|
|
299
|
+
while (reader.pos < end) {
|
|
300
|
+
const tag = reader.uint32();
|
|
301
|
+
switch (tag >>> 3) {
|
|
302
|
+
case 1:
|
|
303
|
+
message.validatorAddress = reader.string();
|
|
304
|
+
break;
|
|
305
|
+
default:
|
|
306
|
+
reader.skipType(tag & 7);
|
|
307
|
+
break;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
return message;
|
|
311
|
+
},
|
|
312
|
+
|
|
313
|
+
fromJSON(object: any): QueryValidatorDistributionInfoRequest {
|
|
314
|
+
return { validatorAddress: isSet(object.validatorAddress) ? String(object.validatorAddress) : "" };
|
|
315
|
+
},
|
|
316
|
+
|
|
317
|
+
toJSON(message: QueryValidatorDistributionInfoRequest): unknown {
|
|
318
|
+
const obj: any = {};
|
|
319
|
+
message.validatorAddress !== undefined && (obj.validatorAddress = message.validatorAddress);
|
|
320
|
+
return obj;
|
|
321
|
+
},
|
|
322
|
+
|
|
323
|
+
fromPartial<I extends Exact<DeepPartial<QueryValidatorDistributionInfoRequest>, I>>(
|
|
324
|
+
object: I,
|
|
325
|
+
): QueryValidatorDistributionInfoRequest {
|
|
326
|
+
const message = createBaseQueryValidatorDistributionInfoRequest();
|
|
327
|
+
message.validatorAddress = object.validatorAddress ?? "";
|
|
328
|
+
return message;
|
|
329
|
+
},
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
function createBaseQueryValidatorDistributionInfoResponse(): QueryValidatorDistributionInfoResponse {
|
|
333
|
+
return { operatorAddress: "", selfBondRewards: [], commission: [] };
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
export const QueryValidatorDistributionInfoResponse = {
|
|
337
|
+
encode(message: QueryValidatorDistributionInfoResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
338
|
+
if (message.operatorAddress !== "") {
|
|
339
|
+
writer.uint32(10).string(message.operatorAddress);
|
|
340
|
+
}
|
|
341
|
+
for (const v of message.selfBondRewards) {
|
|
342
|
+
DecCoin.encode(v!, writer.uint32(18).fork()).ldelim();
|
|
343
|
+
}
|
|
344
|
+
for (const v of message.commission) {
|
|
345
|
+
DecCoin.encode(v!, writer.uint32(26).fork()).ldelim();
|
|
346
|
+
}
|
|
347
|
+
return writer;
|
|
348
|
+
},
|
|
349
|
+
|
|
350
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): QueryValidatorDistributionInfoResponse {
|
|
351
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
352
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
353
|
+
const message = createBaseQueryValidatorDistributionInfoResponse();
|
|
354
|
+
while (reader.pos < end) {
|
|
355
|
+
const tag = reader.uint32();
|
|
356
|
+
switch (tag >>> 3) {
|
|
357
|
+
case 1:
|
|
358
|
+
message.operatorAddress = reader.string();
|
|
359
|
+
break;
|
|
360
|
+
case 2:
|
|
361
|
+
message.selfBondRewards.push(DecCoin.decode(reader, reader.uint32()));
|
|
362
|
+
break;
|
|
363
|
+
case 3:
|
|
364
|
+
message.commission.push(DecCoin.decode(reader, reader.uint32()));
|
|
365
|
+
break;
|
|
366
|
+
default:
|
|
367
|
+
reader.skipType(tag & 7);
|
|
368
|
+
break;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
return message;
|
|
372
|
+
},
|
|
373
|
+
|
|
374
|
+
fromJSON(object: any): QueryValidatorDistributionInfoResponse {
|
|
375
|
+
return {
|
|
376
|
+
operatorAddress: isSet(object.operatorAddress) ? String(object.operatorAddress) : "",
|
|
377
|
+
selfBondRewards: Array.isArray(object?.selfBondRewards)
|
|
378
|
+
? object.selfBondRewards.map((e: any) => DecCoin.fromJSON(e))
|
|
379
|
+
: [],
|
|
380
|
+
commission: Array.isArray(object?.commission) ? object.commission.map((e: any) => DecCoin.fromJSON(e)) : [],
|
|
381
|
+
};
|
|
382
|
+
},
|
|
383
|
+
|
|
384
|
+
toJSON(message: QueryValidatorDistributionInfoResponse): unknown {
|
|
385
|
+
const obj: any = {};
|
|
386
|
+
message.operatorAddress !== undefined && (obj.operatorAddress = message.operatorAddress);
|
|
387
|
+
if (message.selfBondRewards) {
|
|
388
|
+
obj.selfBondRewards = message.selfBondRewards.map((e) => e ? DecCoin.toJSON(e) : undefined);
|
|
389
|
+
} else {
|
|
390
|
+
obj.selfBondRewards = [];
|
|
391
|
+
}
|
|
392
|
+
if (message.commission) {
|
|
393
|
+
obj.commission = message.commission.map((e) => e ? DecCoin.toJSON(e) : undefined);
|
|
394
|
+
} else {
|
|
395
|
+
obj.commission = [];
|
|
396
|
+
}
|
|
397
|
+
return obj;
|
|
398
|
+
},
|
|
399
|
+
|
|
400
|
+
fromPartial<I extends Exact<DeepPartial<QueryValidatorDistributionInfoResponse>, I>>(
|
|
401
|
+
object: I,
|
|
402
|
+
): QueryValidatorDistributionInfoResponse {
|
|
403
|
+
const message = createBaseQueryValidatorDistributionInfoResponse();
|
|
404
|
+
message.operatorAddress = object.operatorAddress ?? "";
|
|
405
|
+
message.selfBondRewards = object.selfBondRewards?.map((e) => DecCoin.fromPartial(e)) || [];
|
|
406
|
+
message.commission = object.commission?.map((e) => DecCoin.fromPartial(e)) || [];
|
|
407
|
+
return message;
|
|
408
|
+
},
|
|
409
|
+
};
|
|
410
|
+
|
|
267
411
|
function createBaseQueryValidatorOutstandingRewardsRequest(): QueryValidatorOutstandingRewardsRequest {
|
|
268
412
|
return { validatorAddress: "" };
|
|
269
413
|
}
|
|
@@ -1140,6 +1284,10 @@ export const QueryCommunityPoolResponse = {
|
|
|
1140
1284
|
export interface Query {
|
|
1141
1285
|
/** Params queries params of the distribution module. */
|
|
1142
1286
|
Params(request: QueryParamsRequest): Promise<QueryParamsResponse>;
|
|
1287
|
+
/** ValidatorDistributionInfo queries validator commission and self-delegation rewards for validator */
|
|
1288
|
+
ValidatorDistributionInfo(
|
|
1289
|
+
request: QueryValidatorDistributionInfoRequest,
|
|
1290
|
+
): Promise<QueryValidatorDistributionInfoResponse>;
|
|
1143
1291
|
/** ValidatorOutstandingRewards queries rewards of a validator address. */
|
|
1144
1292
|
ValidatorOutstandingRewards(
|
|
1145
1293
|
request: QueryValidatorOutstandingRewardsRequest,
|
|
@@ -1170,6 +1318,7 @@ export class QueryClientImpl implements Query {
|
|
|
1170
1318
|
constructor(rpc: Rpc) {
|
|
1171
1319
|
this.rpc = rpc;
|
|
1172
1320
|
this.Params = this.Params.bind(this);
|
|
1321
|
+
this.ValidatorDistributionInfo = this.ValidatorDistributionInfo.bind(this);
|
|
1173
1322
|
this.ValidatorOutstandingRewards = this.ValidatorOutstandingRewards.bind(this);
|
|
1174
1323
|
this.ValidatorCommission = this.ValidatorCommission.bind(this);
|
|
1175
1324
|
this.ValidatorSlashes = this.ValidatorSlashes.bind(this);
|
|
@@ -1185,6 +1334,14 @@ export class QueryClientImpl implements Query {
|
|
|
1185
1334
|
return promise.then((data) => QueryParamsResponse.decode(new _m0.Reader(data)));
|
|
1186
1335
|
}
|
|
1187
1336
|
|
|
1337
|
+
ValidatorDistributionInfo(
|
|
1338
|
+
request: QueryValidatorDistributionInfoRequest,
|
|
1339
|
+
): Promise<QueryValidatorDistributionInfoResponse> {
|
|
1340
|
+
const data = QueryValidatorDistributionInfoRequest.encode(request).finish();
|
|
1341
|
+
const promise = this.rpc.request("cosmos.distribution.v1beta1.Query", "ValidatorDistributionInfo", data);
|
|
1342
|
+
return promise.then((data) => QueryValidatorDistributionInfoResponse.decode(new _m0.Reader(data)));
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1188
1345
|
ValidatorOutstandingRewards(
|
|
1189
1346
|
request: QueryValidatorOutstandingRewardsRequest,
|
|
1190
1347
|
): Promise<QueryValidatorOutstandingRewardsResponse> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import _m0 from "protobufjs/minimal";
|
|
3
3
|
import { Coin } from "../../base/v1beta1/coin";
|
|
4
|
+
import { Params } from "./distribution";
|
|
4
5
|
|
|
5
6
|
export const protobufPackage = "cosmos.distribution.v1beta1";
|
|
6
7
|
|
|
@@ -13,7 +14,10 @@ export interface MsgSetWithdrawAddress {
|
|
|
13
14
|
withdrawAddress: string;
|
|
14
15
|
}
|
|
15
16
|
|
|
16
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* MsgSetWithdrawAddressResponse defines the Msg/SetWithdrawAddress response
|
|
19
|
+
* type.
|
|
20
|
+
*/
|
|
17
21
|
export interface MsgSetWithdrawAddressResponse {
|
|
18
22
|
}
|
|
19
23
|
|
|
@@ -26,7 +30,10 @@ export interface MsgWithdrawDelegatorReward {
|
|
|
26
30
|
validatorAddress: string;
|
|
27
31
|
}
|
|
28
32
|
|
|
29
|
-
/**
|
|
33
|
+
/**
|
|
34
|
+
* MsgWithdrawDelegatorRewardResponse defines the Msg/WithdrawDelegatorReward
|
|
35
|
+
* response type.
|
|
36
|
+
*/
|
|
30
37
|
export interface MsgWithdrawDelegatorRewardResponse {
|
|
31
38
|
/** Since: cosmos-sdk 0.46 */
|
|
32
39
|
amount: Coin[];
|
|
@@ -40,7 +47,10 @@ export interface MsgWithdrawValidatorCommission {
|
|
|
40
47
|
validatorAddress: string;
|
|
41
48
|
}
|
|
42
49
|
|
|
43
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* MsgWithdrawValidatorCommissionResponse defines the
|
|
52
|
+
* Msg/WithdrawValidatorCommission response type.
|
|
53
|
+
*/
|
|
44
54
|
export interface MsgWithdrawValidatorCommissionResponse {
|
|
45
55
|
/** Since: cosmos-sdk 0.46 */
|
|
46
56
|
amount: Coin[];
|
|
@@ -59,6 +69,54 @@ export interface MsgFundCommunityPool {
|
|
|
59
69
|
export interface MsgFundCommunityPoolResponse {
|
|
60
70
|
}
|
|
61
71
|
|
|
72
|
+
/**
|
|
73
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
74
|
+
*
|
|
75
|
+
* Since: cosmos-sdk 0.47
|
|
76
|
+
*/
|
|
77
|
+
export interface MsgUpdateParams {
|
|
78
|
+
/** authority is the address that controls the module (defaults to x/gov unless overwritten). */
|
|
79
|
+
authority: string;
|
|
80
|
+
/**
|
|
81
|
+
* params defines the x/distribution parameters to update.
|
|
82
|
+
*
|
|
83
|
+
* NOTE: All parameters must be supplied.
|
|
84
|
+
*/
|
|
85
|
+
params: Params | undefined;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
90
|
+
* MsgUpdateParams message.
|
|
91
|
+
*
|
|
92
|
+
* Since: cosmos-sdk 0.47
|
|
93
|
+
*/
|
|
94
|
+
export interface MsgUpdateParamsResponse {
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* MsgCommunityPoolSpend defines a message for sending tokens from the community
|
|
99
|
+
* pool to another account. This message is typically executed via a governance
|
|
100
|
+
* proposal with the governance module being the executing authority.
|
|
101
|
+
*
|
|
102
|
+
* Since: cosmos-sdk 0.47
|
|
103
|
+
*/
|
|
104
|
+
export interface MsgCommunityPoolSpend {
|
|
105
|
+
/** authority is the address that controls the module (defaults to x/gov unless overwritten). */
|
|
106
|
+
authority: string;
|
|
107
|
+
recipient: string;
|
|
108
|
+
amount: Coin[];
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* MsgCommunityPoolSpendResponse defines the response to executing a
|
|
113
|
+
* MsgCommunityPoolSpend message.
|
|
114
|
+
*
|
|
115
|
+
* Since: cosmos-sdk 0.47
|
|
116
|
+
*/
|
|
117
|
+
export interface MsgCommunityPoolSpendResponse {
|
|
118
|
+
}
|
|
119
|
+
|
|
62
120
|
function createBaseMsgSetWithdrawAddress(): MsgSetWithdrawAddress {
|
|
63
121
|
return { delegatorAddress: "", withdrawAddress: "" };
|
|
64
122
|
}
|
|
@@ -470,6 +528,215 @@ export const MsgFundCommunityPoolResponse = {
|
|
|
470
528
|
},
|
|
471
529
|
};
|
|
472
530
|
|
|
531
|
+
function createBaseMsgUpdateParams(): MsgUpdateParams {
|
|
532
|
+
return { authority: "", params: undefined };
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
export const MsgUpdateParams = {
|
|
536
|
+
encode(message: MsgUpdateParams, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
537
|
+
if (message.authority !== "") {
|
|
538
|
+
writer.uint32(10).string(message.authority);
|
|
539
|
+
}
|
|
540
|
+
if (message.params !== undefined) {
|
|
541
|
+
Params.encode(message.params, writer.uint32(18).fork()).ldelim();
|
|
542
|
+
}
|
|
543
|
+
return writer;
|
|
544
|
+
},
|
|
545
|
+
|
|
546
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateParams {
|
|
547
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
548
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
549
|
+
const message = createBaseMsgUpdateParams();
|
|
550
|
+
while (reader.pos < end) {
|
|
551
|
+
const tag = reader.uint32();
|
|
552
|
+
switch (tag >>> 3) {
|
|
553
|
+
case 1:
|
|
554
|
+
message.authority = reader.string();
|
|
555
|
+
break;
|
|
556
|
+
case 2:
|
|
557
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
558
|
+
break;
|
|
559
|
+
default:
|
|
560
|
+
reader.skipType(tag & 7);
|
|
561
|
+
break;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
return message;
|
|
565
|
+
},
|
|
566
|
+
|
|
567
|
+
fromJSON(object: any): MsgUpdateParams {
|
|
568
|
+
return {
|
|
569
|
+
authority: isSet(object.authority) ? String(object.authority) : "",
|
|
570
|
+
params: isSet(object.params) ? Params.fromJSON(object.params) : undefined,
|
|
571
|
+
};
|
|
572
|
+
},
|
|
573
|
+
|
|
574
|
+
toJSON(message: MsgUpdateParams): unknown {
|
|
575
|
+
const obj: any = {};
|
|
576
|
+
message.authority !== undefined && (obj.authority = message.authority);
|
|
577
|
+
message.params !== undefined && (obj.params = message.params ? Params.toJSON(message.params) : undefined);
|
|
578
|
+
return obj;
|
|
579
|
+
},
|
|
580
|
+
|
|
581
|
+
fromPartial<I extends Exact<DeepPartial<MsgUpdateParams>, I>>(object: I): MsgUpdateParams {
|
|
582
|
+
const message = createBaseMsgUpdateParams();
|
|
583
|
+
message.authority = object.authority ?? "";
|
|
584
|
+
message.params = (object.params !== undefined && object.params !== null)
|
|
585
|
+
? Params.fromPartial(object.params)
|
|
586
|
+
: undefined;
|
|
587
|
+
return message;
|
|
588
|
+
},
|
|
589
|
+
};
|
|
590
|
+
|
|
591
|
+
function createBaseMsgUpdateParamsResponse(): MsgUpdateParamsResponse {
|
|
592
|
+
return {};
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
export const MsgUpdateParamsResponse = {
|
|
596
|
+
encode(_: MsgUpdateParamsResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
597
|
+
return writer;
|
|
598
|
+
},
|
|
599
|
+
|
|
600
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateParamsResponse {
|
|
601
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
602
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
603
|
+
const message = createBaseMsgUpdateParamsResponse();
|
|
604
|
+
while (reader.pos < end) {
|
|
605
|
+
const tag = reader.uint32();
|
|
606
|
+
switch (tag >>> 3) {
|
|
607
|
+
default:
|
|
608
|
+
reader.skipType(tag & 7);
|
|
609
|
+
break;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
return message;
|
|
613
|
+
},
|
|
614
|
+
|
|
615
|
+
fromJSON(_: any): MsgUpdateParamsResponse {
|
|
616
|
+
return {};
|
|
617
|
+
},
|
|
618
|
+
|
|
619
|
+
toJSON(_: MsgUpdateParamsResponse): unknown {
|
|
620
|
+
const obj: any = {};
|
|
621
|
+
return obj;
|
|
622
|
+
},
|
|
623
|
+
|
|
624
|
+
fromPartial<I extends Exact<DeepPartial<MsgUpdateParamsResponse>, I>>(_: I): MsgUpdateParamsResponse {
|
|
625
|
+
const message = createBaseMsgUpdateParamsResponse();
|
|
626
|
+
return message;
|
|
627
|
+
},
|
|
628
|
+
};
|
|
629
|
+
|
|
630
|
+
function createBaseMsgCommunityPoolSpend(): MsgCommunityPoolSpend {
|
|
631
|
+
return { authority: "", recipient: "", amount: [] };
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
export const MsgCommunityPoolSpend = {
|
|
635
|
+
encode(message: MsgCommunityPoolSpend, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
636
|
+
if (message.authority !== "") {
|
|
637
|
+
writer.uint32(10).string(message.authority);
|
|
638
|
+
}
|
|
639
|
+
if (message.recipient !== "") {
|
|
640
|
+
writer.uint32(18).string(message.recipient);
|
|
641
|
+
}
|
|
642
|
+
for (const v of message.amount) {
|
|
643
|
+
Coin.encode(v!, writer.uint32(26).fork()).ldelim();
|
|
644
|
+
}
|
|
645
|
+
return writer;
|
|
646
|
+
},
|
|
647
|
+
|
|
648
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MsgCommunityPoolSpend {
|
|
649
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
650
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
651
|
+
const message = createBaseMsgCommunityPoolSpend();
|
|
652
|
+
while (reader.pos < end) {
|
|
653
|
+
const tag = reader.uint32();
|
|
654
|
+
switch (tag >>> 3) {
|
|
655
|
+
case 1:
|
|
656
|
+
message.authority = reader.string();
|
|
657
|
+
break;
|
|
658
|
+
case 2:
|
|
659
|
+
message.recipient = reader.string();
|
|
660
|
+
break;
|
|
661
|
+
case 3:
|
|
662
|
+
message.amount.push(Coin.decode(reader, reader.uint32()));
|
|
663
|
+
break;
|
|
664
|
+
default:
|
|
665
|
+
reader.skipType(tag & 7);
|
|
666
|
+
break;
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
return message;
|
|
670
|
+
},
|
|
671
|
+
|
|
672
|
+
fromJSON(object: any): MsgCommunityPoolSpend {
|
|
673
|
+
return {
|
|
674
|
+
authority: isSet(object.authority) ? String(object.authority) : "",
|
|
675
|
+
recipient: isSet(object.recipient) ? String(object.recipient) : "",
|
|
676
|
+
amount: Array.isArray(object?.amount) ? object.amount.map((e: any) => Coin.fromJSON(e)) : [],
|
|
677
|
+
};
|
|
678
|
+
},
|
|
679
|
+
|
|
680
|
+
toJSON(message: MsgCommunityPoolSpend): unknown {
|
|
681
|
+
const obj: any = {};
|
|
682
|
+
message.authority !== undefined && (obj.authority = message.authority);
|
|
683
|
+
message.recipient !== undefined && (obj.recipient = message.recipient);
|
|
684
|
+
if (message.amount) {
|
|
685
|
+
obj.amount = message.amount.map((e) => e ? Coin.toJSON(e) : undefined);
|
|
686
|
+
} else {
|
|
687
|
+
obj.amount = [];
|
|
688
|
+
}
|
|
689
|
+
return obj;
|
|
690
|
+
},
|
|
691
|
+
|
|
692
|
+
fromPartial<I extends Exact<DeepPartial<MsgCommunityPoolSpend>, I>>(object: I): MsgCommunityPoolSpend {
|
|
693
|
+
const message = createBaseMsgCommunityPoolSpend();
|
|
694
|
+
message.authority = object.authority ?? "";
|
|
695
|
+
message.recipient = object.recipient ?? "";
|
|
696
|
+
message.amount = object.amount?.map((e) => Coin.fromPartial(e)) || [];
|
|
697
|
+
return message;
|
|
698
|
+
},
|
|
699
|
+
};
|
|
700
|
+
|
|
701
|
+
function createBaseMsgCommunityPoolSpendResponse(): MsgCommunityPoolSpendResponse {
|
|
702
|
+
return {};
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
export const MsgCommunityPoolSpendResponse = {
|
|
706
|
+
encode(_: MsgCommunityPoolSpendResponse, writer: _m0.Writer = _m0.Writer.create()): _m0.Writer {
|
|
707
|
+
return writer;
|
|
708
|
+
},
|
|
709
|
+
|
|
710
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): MsgCommunityPoolSpendResponse {
|
|
711
|
+
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
712
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
713
|
+
const message = createBaseMsgCommunityPoolSpendResponse();
|
|
714
|
+
while (reader.pos < end) {
|
|
715
|
+
const tag = reader.uint32();
|
|
716
|
+
switch (tag >>> 3) {
|
|
717
|
+
default:
|
|
718
|
+
reader.skipType(tag & 7);
|
|
719
|
+
break;
|
|
720
|
+
}
|
|
721
|
+
}
|
|
722
|
+
return message;
|
|
723
|
+
},
|
|
724
|
+
|
|
725
|
+
fromJSON(_: any): MsgCommunityPoolSpendResponse {
|
|
726
|
+
return {};
|
|
727
|
+
},
|
|
728
|
+
|
|
729
|
+
toJSON(_: MsgCommunityPoolSpendResponse): unknown {
|
|
730
|
+
const obj: any = {};
|
|
731
|
+
return obj;
|
|
732
|
+
},
|
|
733
|
+
|
|
734
|
+
fromPartial<I extends Exact<DeepPartial<MsgCommunityPoolSpendResponse>, I>>(_: I): MsgCommunityPoolSpendResponse {
|
|
735
|
+
const message = createBaseMsgCommunityPoolSpendResponse();
|
|
736
|
+
return message;
|
|
737
|
+
},
|
|
738
|
+
};
|
|
739
|
+
|
|
473
740
|
/** Msg defines the distribution Msg service. */
|
|
474
741
|
export interface Msg {
|
|
475
742
|
/**
|
|
@@ -492,6 +759,22 @@ export interface Msg {
|
|
|
492
759
|
* fund the community pool.
|
|
493
760
|
*/
|
|
494
761
|
FundCommunityPool(request: MsgFundCommunityPool): Promise<MsgFundCommunityPoolResponse>;
|
|
762
|
+
/**
|
|
763
|
+
* UpdateParams defines a governance operation for updating the x/distribution
|
|
764
|
+
* module parameters. The authority is defined in the keeper.
|
|
765
|
+
*
|
|
766
|
+
* Since: cosmos-sdk 0.47
|
|
767
|
+
*/
|
|
768
|
+
UpdateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse>;
|
|
769
|
+
/**
|
|
770
|
+
* CommunityPoolSpend defines a governance operation for sending tokens from
|
|
771
|
+
* the community pool in the x/distribution module to another account, which
|
|
772
|
+
* could be the governance module itself. The authority is defined in the
|
|
773
|
+
* keeper.
|
|
774
|
+
*
|
|
775
|
+
* Since: cosmos-sdk 0.47
|
|
776
|
+
*/
|
|
777
|
+
CommunityPoolSpend(request: MsgCommunityPoolSpend): Promise<MsgCommunityPoolSpendResponse>;
|
|
495
778
|
}
|
|
496
779
|
|
|
497
780
|
export class MsgClientImpl implements Msg {
|
|
@@ -502,6 +785,8 @@ export class MsgClientImpl implements Msg {
|
|
|
502
785
|
this.WithdrawDelegatorReward = this.WithdrawDelegatorReward.bind(this);
|
|
503
786
|
this.WithdrawValidatorCommission = this.WithdrawValidatorCommission.bind(this);
|
|
504
787
|
this.FundCommunityPool = this.FundCommunityPool.bind(this);
|
|
788
|
+
this.UpdateParams = this.UpdateParams.bind(this);
|
|
789
|
+
this.CommunityPoolSpend = this.CommunityPoolSpend.bind(this);
|
|
505
790
|
}
|
|
506
791
|
SetWithdrawAddress(request: MsgSetWithdrawAddress): Promise<MsgSetWithdrawAddressResponse> {
|
|
507
792
|
const data = MsgSetWithdrawAddress.encode(request).finish();
|
|
@@ -528,6 +813,18 @@ export class MsgClientImpl implements Msg {
|
|
|
528
813
|
const promise = this.rpc.request("cosmos.distribution.v1beta1.Msg", "FundCommunityPool", data);
|
|
529
814
|
return promise.then((data) => MsgFundCommunityPoolResponse.decode(new _m0.Reader(data)));
|
|
530
815
|
}
|
|
816
|
+
|
|
817
|
+
UpdateParams(request: MsgUpdateParams): Promise<MsgUpdateParamsResponse> {
|
|
818
|
+
const data = MsgUpdateParams.encode(request).finish();
|
|
819
|
+
const promise = this.rpc.request("cosmos.distribution.v1beta1.Msg", "UpdateParams", data);
|
|
820
|
+
return promise.then((data) => MsgUpdateParamsResponse.decode(new _m0.Reader(data)));
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
CommunityPoolSpend(request: MsgCommunityPoolSpend): Promise<MsgCommunityPoolSpendResponse> {
|
|
824
|
+
const data = MsgCommunityPoolSpend.encode(request).finish();
|
|
825
|
+
const promise = this.rpc.request("cosmos.distribution.v1beta1.Msg", "CommunityPoolSpend", data);
|
|
826
|
+
return promise.then((data) => MsgCommunityPoolSpendResponse.decode(new _m0.Reader(data)));
|
|
827
|
+
}
|
|
531
828
|
}
|
|
532
829
|
|
|
533
830
|
interface Rpc {
|
|
@@ -390,12 +390,13 @@ export class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDa
|
|
|
390
390
|
* @tags Query
|
|
391
391
|
* @name QueryEvidence
|
|
392
392
|
* @summary Evidence queries evidence based on evidence hash.
|
|
393
|
-
* @request GET:/cosmos/evidence/v1beta1/evidence/{
|
|
393
|
+
* @request GET:/cosmos/evidence/v1beta1/evidence/{hash}
|
|
394
394
|
*/
|
|
395
|
-
queryEvidence = (
|
|
395
|
+
queryEvidence = (hash: string, query?: { evidence_hash?: string }, params: RequestParams = {}) =>
|
|
396
396
|
this.request<V1Beta1QueryEvidenceResponse, RpcStatus>({
|
|
397
|
-
path: `/cosmos/evidence/v1beta1/evidence/${
|
|
397
|
+
path: `/cosmos/evidence/v1beta1/evidence/${hash}`,
|
|
398
398
|
method: "GET",
|
|
399
|
+
query: query,
|
|
399
400
|
format: "json",
|
|
400
401
|
...params,
|
|
401
402
|
});
|
|
@@ -10,9 +10,15 @@ export const protobufPackage = "cosmos.evidence.v1beta1";
|
|
|
10
10
|
* signing misbehavior.
|
|
11
11
|
*/
|
|
12
12
|
export interface Equivocation {
|
|
13
|
+
/** height is the equivocation height. */
|
|
13
14
|
height: number;
|
|
14
|
-
time
|
|
15
|
+
/** time is the equivocation time. */
|
|
16
|
+
time:
|
|
17
|
+
| Date
|
|
18
|
+
| undefined;
|
|
19
|
+
/** power is the equivocation validator power. */
|
|
15
20
|
power: number;
|
|
21
|
+
/** consensus_address is the equivocation validator consensus address. */
|
|
16
22
|
consensusAddress: string;
|
|
17
23
|
}
|
|
18
24
|
|