@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
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/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -3,76 +3,136 @@ import { Params, ParamsAmino, ValidatorOutstandingRewards, ValidatorOutstandingR
|
|
|
3
3
|
import { DecCoin, DecCoinAmino } from "../../base/v1beta1/coin";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
8
|
+
* @name QueryParamsRequest
|
|
9
|
+
* @package cosmos.distribution.v1beta1
|
|
10
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsRequest
|
|
11
|
+
*/
|
|
7
12
|
export interface QueryParamsRequest {
|
|
8
13
|
}
|
|
9
14
|
export interface QueryParamsRequestProtoMsg {
|
|
10
15
|
typeUrl: "/cosmos.distribution.v1beta1.QueryParamsRequest";
|
|
11
16
|
value: Uint8Array;
|
|
12
17
|
}
|
|
13
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
20
|
+
* @name QueryParamsRequestAmino
|
|
21
|
+
* @package cosmos.distribution.v1beta1
|
|
22
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsRequest
|
|
23
|
+
*/
|
|
14
24
|
export interface QueryParamsRequestAmino {
|
|
15
25
|
}
|
|
16
26
|
export interface QueryParamsRequestAminoMsg {
|
|
17
27
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
18
28
|
value: QueryParamsRequestAmino;
|
|
19
29
|
}
|
|
20
|
-
/**
|
|
30
|
+
/**
|
|
31
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
32
|
+
* @name QueryParamsResponse
|
|
33
|
+
* @package cosmos.distribution.v1beta1
|
|
34
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsResponse
|
|
35
|
+
*/
|
|
21
36
|
export interface QueryParamsResponse {
|
|
22
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* params defines the parameters of the module.
|
|
39
|
+
*/
|
|
23
40
|
params: Params;
|
|
24
41
|
}
|
|
25
42
|
export interface QueryParamsResponseProtoMsg {
|
|
26
43
|
typeUrl: "/cosmos.distribution.v1beta1.QueryParamsResponse";
|
|
27
44
|
value: Uint8Array;
|
|
28
45
|
}
|
|
29
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
48
|
+
* @name QueryParamsResponseAmino
|
|
49
|
+
* @package cosmos.distribution.v1beta1
|
|
50
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsResponse
|
|
51
|
+
*/
|
|
30
52
|
export interface QueryParamsResponseAmino {
|
|
31
|
-
/**
|
|
53
|
+
/**
|
|
54
|
+
* params defines the parameters of the module.
|
|
55
|
+
*/
|
|
32
56
|
params: ParamsAmino;
|
|
33
57
|
}
|
|
34
58
|
export interface QueryParamsResponseAminoMsg {
|
|
35
59
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
36
60
|
value: QueryParamsResponseAmino;
|
|
37
61
|
}
|
|
38
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method.
|
|
64
|
+
* @name QueryValidatorDistributionInfoRequest
|
|
65
|
+
* @package cosmos.distribution.v1beta1
|
|
66
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest
|
|
67
|
+
*/
|
|
39
68
|
export interface QueryValidatorDistributionInfoRequest {
|
|
40
|
-
/**
|
|
69
|
+
/**
|
|
70
|
+
* validator_address defines the validator address to query for.
|
|
71
|
+
*/
|
|
41
72
|
validatorAddress: string;
|
|
42
73
|
}
|
|
43
74
|
export interface QueryValidatorDistributionInfoRequestProtoMsg {
|
|
44
75
|
typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest";
|
|
45
76
|
value: Uint8Array;
|
|
46
77
|
}
|
|
47
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method.
|
|
80
|
+
* @name QueryValidatorDistributionInfoRequestAmino
|
|
81
|
+
* @package cosmos.distribution.v1beta1
|
|
82
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest
|
|
83
|
+
*/
|
|
48
84
|
export interface QueryValidatorDistributionInfoRequestAmino {
|
|
49
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* validator_address defines the validator address to query for.
|
|
87
|
+
*/
|
|
50
88
|
validator_address?: string;
|
|
51
89
|
}
|
|
52
90
|
export interface QueryValidatorDistributionInfoRequestAminoMsg {
|
|
53
91
|
type: "cosmos-sdk/QueryValidatorDistributionInfoRequest";
|
|
54
92
|
value: QueryValidatorDistributionInfoRequestAmino;
|
|
55
93
|
}
|
|
56
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method.
|
|
96
|
+
* @name QueryValidatorDistributionInfoResponse
|
|
97
|
+
* @package cosmos.distribution.v1beta1
|
|
98
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse
|
|
99
|
+
*/
|
|
57
100
|
export interface QueryValidatorDistributionInfoResponse {
|
|
58
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* operator_address defines the validator operator address.
|
|
103
|
+
*/
|
|
59
104
|
operatorAddress: string;
|
|
60
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* self_bond_rewards defines the self delegations rewards.
|
|
107
|
+
*/
|
|
61
108
|
selfBondRewards: DecCoin[];
|
|
62
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* commission defines the commission the validator received.
|
|
111
|
+
*/
|
|
63
112
|
commission: DecCoin[];
|
|
64
113
|
}
|
|
65
114
|
export interface QueryValidatorDistributionInfoResponseProtoMsg {
|
|
66
115
|
typeUrl: "/cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse";
|
|
67
116
|
value: Uint8Array;
|
|
68
117
|
}
|
|
69
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method.
|
|
120
|
+
* @name QueryValidatorDistributionInfoResponseAmino
|
|
121
|
+
* @package cosmos.distribution.v1beta1
|
|
122
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse
|
|
123
|
+
*/
|
|
70
124
|
export interface QueryValidatorDistributionInfoResponseAmino {
|
|
71
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* operator_address defines the validator operator address.
|
|
127
|
+
*/
|
|
72
128
|
operator_address?: string;
|
|
73
|
-
/**
|
|
129
|
+
/**
|
|
130
|
+
* self_bond_rewards defines the self delegations rewards.
|
|
131
|
+
*/
|
|
74
132
|
self_bond_rewards: DecCoinAmino[];
|
|
75
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* commission defines the commission the validator received.
|
|
135
|
+
*/
|
|
76
136
|
commission?: DecCoinAmino[];
|
|
77
137
|
}
|
|
78
138
|
export interface QueryValidatorDistributionInfoResponseAminoMsg {
|
|
@@ -82,9 +142,14 @@ export interface QueryValidatorDistributionInfoResponseAminoMsg {
|
|
|
82
142
|
/**
|
|
83
143
|
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
84
144
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
145
|
+
* @name QueryValidatorOutstandingRewardsRequest
|
|
146
|
+
* @package cosmos.distribution.v1beta1
|
|
147
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest
|
|
85
148
|
*/
|
|
86
149
|
export interface QueryValidatorOutstandingRewardsRequest {
|
|
87
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* validator_address defines the validator address to query for.
|
|
152
|
+
*/
|
|
88
153
|
validatorAddress: string;
|
|
89
154
|
}
|
|
90
155
|
export interface QueryValidatorOutstandingRewardsRequestProtoMsg {
|
|
@@ -94,9 +159,14 @@ export interface QueryValidatorOutstandingRewardsRequestProtoMsg {
|
|
|
94
159
|
/**
|
|
95
160
|
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
96
161
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
162
|
+
* @name QueryValidatorOutstandingRewardsRequestAmino
|
|
163
|
+
* @package cosmos.distribution.v1beta1
|
|
164
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest
|
|
97
165
|
*/
|
|
98
166
|
export interface QueryValidatorOutstandingRewardsRequestAmino {
|
|
99
|
-
/**
|
|
167
|
+
/**
|
|
168
|
+
* validator_address defines the validator address to query for.
|
|
169
|
+
*/
|
|
100
170
|
validator_address?: string;
|
|
101
171
|
}
|
|
102
172
|
export interface QueryValidatorOutstandingRewardsRequestAminoMsg {
|
|
@@ -106,6 +176,9 @@ export interface QueryValidatorOutstandingRewardsRequestAminoMsg {
|
|
|
106
176
|
/**
|
|
107
177
|
* QueryValidatorOutstandingRewardsResponse is the response type for the
|
|
108
178
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
179
|
+
* @name QueryValidatorOutstandingRewardsResponse
|
|
180
|
+
* @package cosmos.distribution.v1beta1
|
|
181
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse
|
|
109
182
|
*/
|
|
110
183
|
export interface QueryValidatorOutstandingRewardsResponse {
|
|
111
184
|
rewards: ValidatorOutstandingRewards;
|
|
@@ -117,6 +190,9 @@ export interface QueryValidatorOutstandingRewardsResponseProtoMsg {
|
|
|
117
190
|
/**
|
|
118
191
|
* QueryValidatorOutstandingRewardsResponse is the response type for the
|
|
119
192
|
* Query/ValidatorOutstandingRewards RPC method.
|
|
193
|
+
* @name QueryValidatorOutstandingRewardsResponseAmino
|
|
194
|
+
* @package cosmos.distribution.v1beta1
|
|
195
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse
|
|
120
196
|
*/
|
|
121
197
|
export interface QueryValidatorOutstandingRewardsResponseAmino {
|
|
122
198
|
rewards: ValidatorOutstandingRewardsAmino;
|
|
@@ -128,9 +204,14 @@ export interface QueryValidatorOutstandingRewardsResponseAminoMsg {
|
|
|
128
204
|
/**
|
|
129
205
|
* QueryValidatorCommissionRequest is the request type for the
|
|
130
206
|
* Query/ValidatorCommission RPC method
|
|
207
|
+
* @name QueryValidatorCommissionRequest
|
|
208
|
+
* @package cosmos.distribution.v1beta1
|
|
209
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionRequest
|
|
131
210
|
*/
|
|
132
211
|
export interface QueryValidatorCommissionRequest {
|
|
133
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* validator_address defines the validator address to query for.
|
|
214
|
+
*/
|
|
134
215
|
validatorAddress: string;
|
|
135
216
|
}
|
|
136
217
|
export interface QueryValidatorCommissionRequestProtoMsg {
|
|
@@ -140,9 +221,14 @@ export interface QueryValidatorCommissionRequestProtoMsg {
|
|
|
140
221
|
/**
|
|
141
222
|
* QueryValidatorCommissionRequest is the request type for the
|
|
142
223
|
* Query/ValidatorCommission RPC method
|
|
224
|
+
* @name QueryValidatorCommissionRequestAmino
|
|
225
|
+
* @package cosmos.distribution.v1beta1
|
|
226
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionRequest
|
|
143
227
|
*/
|
|
144
228
|
export interface QueryValidatorCommissionRequestAmino {
|
|
145
|
-
/**
|
|
229
|
+
/**
|
|
230
|
+
* validator_address defines the validator address to query for.
|
|
231
|
+
*/
|
|
146
232
|
validator_address?: string;
|
|
147
233
|
}
|
|
148
234
|
export interface QueryValidatorCommissionRequestAminoMsg {
|
|
@@ -152,9 +238,14 @@ export interface QueryValidatorCommissionRequestAminoMsg {
|
|
|
152
238
|
/**
|
|
153
239
|
* QueryValidatorCommissionResponse is the response type for the
|
|
154
240
|
* Query/ValidatorCommission RPC method
|
|
241
|
+
* @name QueryValidatorCommissionResponse
|
|
242
|
+
* @package cosmos.distribution.v1beta1
|
|
243
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionResponse
|
|
155
244
|
*/
|
|
156
245
|
export interface QueryValidatorCommissionResponse {
|
|
157
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* commission defines the commission the validator received.
|
|
248
|
+
*/
|
|
158
249
|
commission: ValidatorAccumulatedCommission;
|
|
159
250
|
}
|
|
160
251
|
export interface QueryValidatorCommissionResponseProtoMsg {
|
|
@@ -164,9 +255,14 @@ export interface QueryValidatorCommissionResponseProtoMsg {
|
|
|
164
255
|
/**
|
|
165
256
|
* QueryValidatorCommissionResponse is the response type for the
|
|
166
257
|
* Query/ValidatorCommission RPC method
|
|
258
|
+
* @name QueryValidatorCommissionResponseAmino
|
|
259
|
+
* @package cosmos.distribution.v1beta1
|
|
260
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionResponse
|
|
167
261
|
*/
|
|
168
262
|
export interface QueryValidatorCommissionResponseAmino {
|
|
169
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* commission defines the commission the validator received.
|
|
265
|
+
*/
|
|
170
266
|
commission: ValidatorAccumulatedCommissionAmino;
|
|
171
267
|
}
|
|
172
268
|
export interface QueryValidatorCommissionResponseAminoMsg {
|
|
@@ -176,15 +272,26 @@ export interface QueryValidatorCommissionResponseAminoMsg {
|
|
|
176
272
|
/**
|
|
177
273
|
* QueryValidatorSlashesRequest is the request type for the
|
|
178
274
|
* Query/ValidatorSlashes RPC method
|
|
275
|
+
* @name QueryValidatorSlashesRequest
|
|
276
|
+
* @package cosmos.distribution.v1beta1
|
|
277
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesRequest
|
|
179
278
|
*/
|
|
180
279
|
export interface QueryValidatorSlashesRequest {
|
|
181
|
-
/**
|
|
280
|
+
/**
|
|
281
|
+
* validator_address defines the validator address to query for.
|
|
282
|
+
*/
|
|
182
283
|
validatorAddress: string;
|
|
183
|
-
/**
|
|
284
|
+
/**
|
|
285
|
+
* starting_height defines the optional starting height to query the slashes.
|
|
286
|
+
*/
|
|
184
287
|
startingHeight: bigint;
|
|
185
|
-
/**
|
|
288
|
+
/**
|
|
289
|
+
* starting_height defines the optional ending height to query the slashes.
|
|
290
|
+
*/
|
|
186
291
|
endingHeight: bigint;
|
|
187
|
-
/**
|
|
292
|
+
/**
|
|
293
|
+
* pagination defines an optional pagination for the request.
|
|
294
|
+
*/
|
|
188
295
|
pagination?: PageRequest;
|
|
189
296
|
}
|
|
190
297
|
export interface QueryValidatorSlashesRequestProtoMsg {
|
|
@@ -194,15 +301,26 @@ export interface QueryValidatorSlashesRequestProtoMsg {
|
|
|
194
301
|
/**
|
|
195
302
|
* QueryValidatorSlashesRequest is the request type for the
|
|
196
303
|
* Query/ValidatorSlashes RPC method
|
|
304
|
+
* @name QueryValidatorSlashesRequestAmino
|
|
305
|
+
* @package cosmos.distribution.v1beta1
|
|
306
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesRequest
|
|
197
307
|
*/
|
|
198
308
|
export interface QueryValidatorSlashesRequestAmino {
|
|
199
|
-
/**
|
|
309
|
+
/**
|
|
310
|
+
* validator_address defines the validator address to query for.
|
|
311
|
+
*/
|
|
200
312
|
validator_address?: string;
|
|
201
|
-
/**
|
|
313
|
+
/**
|
|
314
|
+
* starting_height defines the optional starting height to query the slashes.
|
|
315
|
+
*/
|
|
202
316
|
starting_height?: string;
|
|
203
|
-
/**
|
|
317
|
+
/**
|
|
318
|
+
* starting_height defines the optional ending height to query the slashes.
|
|
319
|
+
*/
|
|
204
320
|
ending_height?: string;
|
|
205
|
-
/**
|
|
321
|
+
/**
|
|
322
|
+
* pagination defines an optional pagination for the request.
|
|
323
|
+
*/
|
|
206
324
|
pagination?: PageRequestAmino;
|
|
207
325
|
}
|
|
208
326
|
export interface QueryValidatorSlashesRequestAminoMsg {
|
|
@@ -212,11 +330,18 @@ export interface QueryValidatorSlashesRequestAminoMsg {
|
|
|
212
330
|
/**
|
|
213
331
|
* QueryValidatorSlashesResponse is the response type for the
|
|
214
332
|
* Query/ValidatorSlashes RPC method.
|
|
333
|
+
* @name QueryValidatorSlashesResponse
|
|
334
|
+
* @package cosmos.distribution.v1beta1
|
|
335
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesResponse
|
|
215
336
|
*/
|
|
216
337
|
export interface QueryValidatorSlashesResponse {
|
|
217
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* slashes defines the slashes the validator received.
|
|
340
|
+
*/
|
|
218
341
|
slashes: ValidatorSlashEvent[];
|
|
219
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* pagination defines the pagination in the response.
|
|
344
|
+
*/
|
|
220
345
|
pagination?: PageResponse;
|
|
221
346
|
}
|
|
222
347
|
export interface QueryValidatorSlashesResponseProtoMsg {
|
|
@@ -226,11 +351,18 @@ export interface QueryValidatorSlashesResponseProtoMsg {
|
|
|
226
351
|
/**
|
|
227
352
|
* QueryValidatorSlashesResponse is the response type for the
|
|
228
353
|
* Query/ValidatorSlashes RPC method.
|
|
354
|
+
* @name QueryValidatorSlashesResponseAmino
|
|
355
|
+
* @package cosmos.distribution.v1beta1
|
|
356
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesResponse
|
|
229
357
|
*/
|
|
230
358
|
export interface QueryValidatorSlashesResponseAmino {
|
|
231
|
-
/**
|
|
359
|
+
/**
|
|
360
|
+
* slashes defines the slashes the validator received.
|
|
361
|
+
*/
|
|
232
362
|
slashes: ValidatorSlashEventAmino[];
|
|
233
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* pagination defines the pagination in the response.
|
|
365
|
+
*/
|
|
234
366
|
pagination?: PageResponseAmino;
|
|
235
367
|
}
|
|
236
368
|
export interface QueryValidatorSlashesResponseAminoMsg {
|
|
@@ -240,11 +372,18 @@ export interface QueryValidatorSlashesResponseAminoMsg {
|
|
|
240
372
|
/**
|
|
241
373
|
* QueryDelegationRewardsRequest is the request type for the
|
|
242
374
|
* Query/DelegationRewards RPC method.
|
|
375
|
+
* @name QueryDelegationRewardsRequest
|
|
376
|
+
* @package cosmos.distribution.v1beta1
|
|
377
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsRequest
|
|
243
378
|
*/
|
|
244
379
|
export interface QueryDelegationRewardsRequest {
|
|
245
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* delegator_address defines the delegator address to query for.
|
|
382
|
+
*/
|
|
246
383
|
delegatorAddress: string;
|
|
247
|
-
/**
|
|
384
|
+
/**
|
|
385
|
+
* validator_address defines the validator address to query for.
|
|
386
|
+
*/
|
|
248
387
|
validatorAddress: string;
|
|
249
388
|
}
|
|
250
389
|
export interface QueryDelegationRewardsRequestProtoMsg {
|
|
@@ -254,11 +393,18 @@ export interface QueryDelegationRewardsRequestProtoMsg {
|
|
|
254
393
|
/**
|
|
255
394
|
* QueryDelegationRewardsRequest is the request type for the
|
|
256
395
|
* Query/DelegationRewards RPC method.
|
|
396
|
+
* @name QueryDelegationRewardsRequestAmino
|
|
397
|
+
* @package cosmos.distribution.v1beta1
|
|
398
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsRequest
|
|
257
399
|
*/
|
|
258
400
|
export interface QueryDelegationRewardsRequestAmino {
|
|
259
|
-
/**
|
|
401
|
+
/**
|
|
402
|
+
* delegator_address defines the delegator address to query for.
|
|
403
|
+
*/
|
|
260
404
|
delegator_address?: string;
|
|
261
|
-
/**
|
|
405
|
+
/**
|
|
406
|
+
* validator_address defines the validator address to query for.
|
|
407
|
+
*/
|
|
262
408
|
validator_address?: string;
|
|
263
409
|
}
|
|
264
410
|
export interface QueryDelegationRewardsRequestAminoMsg {
|
|
@@ -268,9 +414,14 @@ export interface QueryDelegationRewardsRequestAminoMsg {
|
|
|
268
414
|
/**
|
|
269
415
|
* QueryDelegationRewardsResponse is the response type for the
|
|
270
416
|
* Query/DelegationRewards RPC method.
|
|
417
|
+
* @name QueryDelegationRewardsResponse
|
|
418
|
+
* @package cosmos.distribution.v1beta1
|
|
419
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsResponse
|
|
271
420
|
*/
|
|
272
421
|
export interface QueryDelegationRewardsResponse {
|
|
273
|
-
/**
|
|
422
|
+
/**
|
|
423
|
+
* rewards defines the rewards accrued by a delegation.
|
|
424
|
+
*/
|
|
274
425
|
rewards: DecCoin[];
|
|
275
426
|
}
|
|
276
427
|
export interface QueryDelegationRewardsResponseProtoMsg {
|
|
@@ -280,9 +431,14 @@ export interface QueryDelegationRewardsResponseProtoMsg {
|
|
|
280
431
|
/**
|
|
281
432
|
* QueryDelegationRewardsResponse is the response type for the
|
|
282
433
|
* Query/DelegationRewards RPC method.
|
|
434
|
+
* @name QueryDelegationRewardsResponseAmino
|
|
435
|
+
* @package cosmos.distribution.v1beta1
|
|
436
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsResponse
|
|
283
437
|
*/
|
|
284
438
|
export interface QueryDelegationRewardsResponseAmino {
|
|
285
|
-
/**
|
|
439
|
+
/**
|
|
440
|
+
* rewards defines the rewards accrued by a delegation.
|
|
441
|
+
*/
|
|
286
442
|
rewards: DecCoinAmino[];
|
|
287
443
|
}
|
|
288
444
|
export interface QueryDelegationRewardsResponseAminoMsg {
|
|
@@ -292,9 +448,14 @@ export interface QueryDelegationRewardsResponseAminoMsg {
|
|
|
292
448
|
/**
|
|
293
449
|
* QueryDelegationTotalRewardsRequest is the request type for the
|
|
294
450
|
* Query/DelegationTotalRewards RPC method.
|
|
451
|
+
* @name QueryDelegationTotalRewardsRequest
|
|
452
|
+
* @package cosmos.distribution.v1beta1
|
|
453
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest
|
|
295
454
|
*/
|
|
296
455
|
export interface QueryDelegationTotalRewardsRequest {
|
|
297
|
-
/**
|
|
456
|
+
/**
|
|
457
|
+
* delegator_address defines the delegator address to query for.
|
|
458
|
+
*/
|
|
298
459
|
delegatorAddress: string;
|
|
299
460
|
}
|
|
300
461
|
export interface QueryDelegationTotalRewardsRequestProtoMsg {
|
|
@@ -304,9 +465,14 @@ export interface QueryDelegationTotalRewardsRequestProtoMsg {
|
|
|
304
465
|
/**
|
|
305
466
|
* QueryDelegationTotalRewardsRequest is the request type for the
|
|
306
467
|
* Query/DelegationTotalRewards RPC method.
|
|
468
|
+
* @name QueryDelegationTotalRewardsRequestAmino
|
|
469
|
+
* @package cosmos.distribution.v1beta1
|
|
470
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest
|
|
307
471
|
*/
|
|
308
472
|
export interface QueryDelegationTotalRewardsRequestAmino {
|
|
309
|
-
/**
|
|
473
|
+
/**
|
|
474
|
+
* delegator_address defines the delegator address to query for.
|
|
475
|
+
*/
|
|
310
476
|
delegator_address?: string;
|
|
311
477
|
}
|
|
312
478
|
export interface QueryDelegationTotalRewardsRequestAminoMsg {
|
|
@@ -316,11 +482,18 @@ export interface QueryDelegationTotalRewardsRequestAminoMsg {
|
|
|
316
482
|
/**
|
|
317
483
|
* QueryDelegationTotalRewardsResponse is the response type for the
|
|
318
484
|
* Query/DelegationTotalRewards RPC method.
|
|
485
|
+
* @name QueryDelegationTotalRewardsResponse
|
|
486
|
+
* @package cosmos.distribution.v1beta1
|
|
487
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse
|
|
319
488
|
*/
|
|
320
489
|
export interface QueryDelegationTotalRewardsResponse {
|
|
321
|
-
/**
|
|
490
|
+
/**
|
|
491
|
+
* rewards defines all the rewards accrued by a delegator.
|
|
492
|
+
*/
|
|
322
493
|
rewards: DelegationDelegatorReward[];
|
|
323
|
-
/**
|
|
494
|
+
/**
|
|
495
|
+
* total defines the sum of all the rewards.
|
|
496
|
+
*/
|
|
324
497
|
total: DecCoin[];
|
|
325
498
|
}
|
|
326
499
|
export interface QueryDelegationTotalRewardsResponseProtoMsg {
|
|
@@ -330,11 +503,18 @@ export interface QueryDelegationTotalRewardsResponseProtoMsg {
|
|
|
330
503
|
/**
|
|
331
504
|
* QueryDelegationTotalRewardsResponse is the response type for the
|
|
332
505
|
* Query/DelegationTotalRewards RPC method.
|
|
506
|
+
* @name QueryDelegationTotalRewardsResponseAmino
|
|
507
|
+
* @package cosmos.distribution.v1beta1
|
|
508
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse
|
|
333
509
|
*/
|
|
334
510
|
export interface QueryDelegationTotalRewardsResponseAmino {
|
|
335
|
-
/**
|
|
511
|
+
/**
|
|
512
|
+
* rewards defines all the rewards accrued by a delegator.
|
|
513
|
+
*/
|
|
336
514
|
rewards: DelegationDelegatorRewardAmino[];
|
|
337
|
-
/**
|
|
515
|
+
/**
|
|
516
|
+
* total defines the sum of all the rewards.
|
|
517
|
+
*/
|
|
338
518
|
total: DecCoinAmino[];
|
|
339
519
|
}
|
|
340
520
|
export interface QueryDelegationTotalRewardsResponseAminoMsg {
|
|
@@ -344,9 +524,14 @@ export interface QueryDelegationTotalRewardsResponseAminoMsg {
|
|
|
344
524
|
/**
|
|
345
525
|
* QueryDelegatorValidatorsRequest is the request type for the
|
|
346
526
|
* Query/DelegatorValidators RPC method.
|
|
527
|
+
* @name QueryDelegatorValidatorsRequest
|
|
528
|
+
* @package cosmos.distribution.v1beta1
|
|
529
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest
|
|
347
530
|
*/
|
|
348
531
|
export interface QueryDelegatorValidatorsRequest {
|
|
349
|
-
/**
|
|
532
|
+
/**
|
|
533
|
+
* delegator_address defines the delegator address to query for.
|
|
534
|
+
*/
|
|
350
535
|
delegatorAddress: string;
|
|
351
536
|
}
|
|
352
537
|
export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
@@ -356,9 +541,14 @@ export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
|
356
541
|
/**
|
|
357
542
|
* QueryDelegatorValidatorsRequest is the request type for the
|
|
358
543
|
* Query/DelegatorValidators RPC method.
|
|
544
|
+
* @name QueryDelegatorValidatorsRequestAmino
|
|
545
|
+
* @package cosmos.distribution.v1beta1
|
|
546
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest
|
|
359
547
|
*/
|
|
360
548
|
export interface QueryDelegatorValidatorsRequestAmino {
|
|
361
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* delegator_address defines the delegator address to query for.
|
|
551
|
+
*/
|
|
362
552
|
delegator_address?: string;
|
|
363
553
|
}
|
|
364
554
|
export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
@@ -368,9 +558,14 @@ export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
|
368
558
|
/**
|
|
369
559
|
* QueryDelegatorValidatorsResponse is the response type for the
|
|
370
560
|
* Query/DelegatorValidators RPC method.
|
|
561
|
+
* @name QueryDelegatorValidatorsResponse
|
|
562
|
+
* @package cosmos.distribution.v1beta1
|
|
563
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse
|
|
371
564
|
*/
|
|
372
565
|
export interface QueryDelegatorValidatorsResponse {
|
|
373
|
-
/**
|
|
566
|
+
/**
|
|
567
|
+
* validators defines the validators a delegator is delegating for.
|
|
568
|
+
*/
|
|
374
569
|
validators: string[];
|
|
375
570
|
}
|
|
376
571
|
export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
@@ -380,9 +575,14 @@ export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
|
380
575
|
/**
|
|
381
576
|
* QueryDelegatorValidatorsResponse is the response type for the
|
|
382
577
|
* Query/DelegatorValidators RPC method.
|
|
578
|
+
* @name QueryDelegatorValidatorsResponseAmino
|
|
579
|
+
* @package cosmos.distribution.v1beta1
|
|
580
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse
|
|
383
581
|
*/
|
|
384
582
|
export interface QueryDelegatorValidatorsResponseAmino {
|
|
385
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* validators defines the validators a delegator is delegating for.
|
|
585
|
+
*/
|
|
386
586
|
validators?: string[];
|
|
387
587
|
}
|
|
388
588
|
export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
@@ -392,9 +592,14 @@ export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
|
392
592
|
/**
|
|
393
593
|
* QueryDelegatorWithdrawAddressRequest is the request type for the
|
|
394
594
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
595
|
+
* @name QueryDelegatorWithdrawAddressRequest
|
|
596
|
+
* @package cosmos.distribution.v1beta1
|
|
597
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest
|
|
395
598
|
*/
|
|
396
599
|
export interface QueryDelegatorWithdrawAddressRequest {
|
|
397
|
-
/**
|
|
600
|
+
/**
|
|
601
|
+
* delegator_address defines the delegator address to query for.
|
|
602
|
+
*/
|
|
398
603
|
delegatorAddress: string;
|
|
399
604
|
}
|
|
400
605
|
export interface QueryDelegatorWithdrawAddressRequestProtoMsg {
|
|
@@ -404,9 +609,14 @@ export interface QueryDelegatorWithdrawAddressRequestProtoMsg {
|
|
|
404
609
|
/**
|
|
405
610
|
* QueryDelegatorWithdrawAddressRequest is the request type for the
|
|
406
611
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
612
|
+
* @name QueryDelegatorWithdrawAddressRequestAmino
|
|
613
|
+
* @package cosmos.distribution.v1beta1
|
|
614
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest
|
|
407
615
|
*/
|
|
408
616
|
export interface QueryDelegatorWithdrawAddressRequestAmino {
|
|
409
|
-
/**
|
|
617
|
+
/**
|
|
618
|
+
* delegator_address defines the delegator address to query for.
|
|
619
|
+
*/
|
|
410
620
|
delegator_address?: string;
|
|
411
621
|
}
|
|
412
622
|
export interface QueryDelegatorWithdrawAddressRequestAminoMsg {
|
|
@@ -416,9 +626,14 @@ export interface QueryDelegatorWithdrawAddressRequestAminoMsg {
|
|
|
416
626
|
/**
|
|
417
627
|
* QueryDelegatorWithdrawAddressResponse is the response type for the
|
|
418
628
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
629
|
+
* @name QueryDelegatorWithdrawAddressResponse
|
|
630
|
+
* @package cosmos.distribution.v1beta1
|
|
631
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse
|
|
419
632
|
*/
|
|
420
633
|
export interface QueryDelegatorWithdrawAddressResponse {
|
|
421
|
-
/**
|
|
634
|
+
/**
|
|
635
|
+
* withdraw_address defines the delegator address to query for.
|
|
636
|
+
*/
|
|
422
637
|
withdrawAddress: string;
|
|
423
638
|
}
|
|
424
639
|
export interface QueryDelegatorWithdrawAddressResponseProtoMsg {
|
|
@@ -428,9 +643,14 @@ export interface QueryDelegatorWithdrawAddressResponseProtoMsg {
|
|
|
428
643
|
/**
|
|
429
644
|
* QueryDelegatorWithdrawAddressResponse is the response type for the
|
|
430
645
|
* Query/DelegatorWithdrawAddress RPC method.
|
|
646
|
+
* @name QueryDelegatorWithdrawAddressResponseAmino
|
|
647
|
+
* @package cosmos.distribution.v1beta1
|
|
648
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse
|
|
431
649
|
*/
|
|
432
650
|
export interface QueryDelegatorWithdrawAddressResponseAmino {
|
|
433
|
-
/**
|
|
651
|
+
/**
|
|
652
|
+
* withdraw_address defines the delegator address to query for.
|
|
653
|
+
*/
|
|
434
654
|
withdraw_address?: string;
|
|
435
655
|
}
|
|
436
656
|
export interface QueryDelegatorWithdrawAddressResponseAminoMsg {
|
|
@@ -440,6 +660,9 @@ export interface QueryDelegatorWithdrawAddressResponseAminoMsg {
|
|
|
440
660
|
/**
|
|
441
661
|
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
442
662
|
* method.
|
|
663
|
+
* @name QueryCommunityPoolRequest
|
|
664
|
+
* @package cosmos.distribution.v1beta1
|
|
665
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolRequest
|
|
443
666
|
*/
|
|
444
667
|
export interface QueryCommunityPoolRequest {
|
|
445
668
|
}
|
|
@@ -450,6 +673,9 @@ export interface QueryCommunityPoolRequestProtoMsg {
|
|
|
450
673
|
/**
|
|
451
674
|
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
452
675
|
* method.
|
|
676
|
+
* @name QueryCommunityPoolRequestAmino
|
|
677
|
+
* @package cosmos.distribution.v1beta1
|
|
678
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolRequest
|
|
453
679
|
*/
|
|
454
680
|
export interface QueryCommunityPoolRequestAmino {
|
|
455
681
|
}
|
|
@@ -460,9 +686,14 @@ export interface QueryCommunityPoolRequestAminoMsg {
|
|
|
460
686
|
/**
|
|
461
687
|
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
462
688
|
* RPC method.
|
|
689
|
+
* @name QueryCommunityPoolResponse
|
|
690
|
+
* @package cosmos.distribution.v1beta1
|
|
691
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolResponse
|
|
463
692
|
*/
|
|
464
693
|
export interface QueryCommunityPoolResponse {
|
|
465
|
-
/**
|
|
694
|
+
/**
|
|
695
|
+
* pool defines community pool's coins.
|
|
696
|
+
*/
|
|
466
697
|
pool: DecCoin[];
|
|
467
698
|
}
|
|
468
699
|
export interface QueryCommunityPoolResponseProtoMsg {
|
|
@@ -472,15 +703,26 @@ export interface QueryCommunityPoolResponseProtoMsg {
|
|
|
472
703
|
/**
|
|
473
704
|
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
474
705
|
* RPC method.
|
|
706
|
+
* @name QueryCommunityPoolResponseAmino
|
|
707
|
+
* @package cosmos.distribution.v1beta1
|
|
708
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolResponse
|
|
475
709
|
*/
|
|
476
710
|
export interface QueryCommunityPoolResponseAmino {
|
|
477
|
-
/**
|
|
711
|
+
/**
|
|
712
|
+
* pool defines community pool's coins.
|
|
713
|
+
*/
|
|
478
714
|
pool: DecCoinAmino[];
|
|
479
715
|
}
|
|
480
716
|
export interface QueryCommunityPoolResponseAminoMsg {
|
|
481
717
|
type: "cosmos-sdk/QueryCommunityPoolResponse";
|
|
482
718
|
value: QueryCommunityPoolResponseAmino;
|
|
483
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
722
|
+
* @name QueryParamsRequest
|
|
723
|
+
* @package cosmos.distribution.v1beta1
|
|
724
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsRequest
|
|
725
|
+
*/
|
|
484
726
|
export declare const QueryParamsRequest: {
|
|
485
727
|
typeUrl: string;
|
|
486
728
|
aminoType: string;
|
|
@@ -495,6 +737,12 @@ export declare const QueryParamsRequest: {
|
|
|
495
737
|
toProto(message: QueryParamsRequest): Uint8Array;
|
|
496
738
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
497
739
|
};
|
|
740
|
+
/**
|
|
741
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
742
|
+
* @name QueryParamsResponse
|
|
743
|
+
* @package cosmos.distribution.v1beta1
|
|
744
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryParamsResponse
|
|
745
|
+
*/
|
|
498
746
|
export declare const QueryParamsResponse: {
|
|
499
747
|
typeUrl: string;
|
|
500
748
|
aminoType: string;
|
|
@@ -509,6 +757,12 @@ export declare const QueryParamsResponse: {
|
|
|
509
757
|
toProto(message: QueryParamsResponse): Uint8Array;
|
|
510
758
|
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg;
|
|
511
759
|
};
|
|
760
|
+
/**
|
|
761
|
+
* QueryValidatorDistributionInfoRequest is the request type for the Query/ValidatorDistributionInfo RPC method.
|
|
762
|
+
* @name QueryValidatorDistributionInfoRequest
|
|
763
|
+
* @package cosmos.distribution.v1beta1
|
|
764
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoRequest
|
|
765
|
+
*/
|
|
512
766
|
export declare const QueryValidatorDistributionInfoRequest: {
|
|
513
767
|
typeUrl: string;
|
|
514
768
|
aminoType: string;
|
|
@@ -523,6 +777,12 @@ export declare const QueryValidatorDistributionInfoRequest: {
|
|
|
523
777
|
toProto(message: QueryValidatorDistributionInfoRequest): Uint8Array;
|
|
524
778
|
toProtoMsg(message: QueryValidatorDistributionInfoRequest): QueryValidatorDistributionInfoRequestProtoMsg;
|
|
525
779
|
};
|
|
780
|
+
/**
|
|
781
|
+
* QueryValidatorDistributionInfoResponse is the response type for the Query/ValidatorDistributionInfo RPC method.
|
|
782
|
+
* @name QueryValidatorDistributionInfoResponse
|
|
783
|
+
* @package cosmos.distribution.v1beta1
|
|
784
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorDistributionInfoResponse
|
|
785
|
+
*/
|
|
526
786
|
export declare const QueryValidatorDistributionInfoResponse: {
|
|
527
787
|
typeUrl: string;
|
|
528
788
|
aminoType: string;
|
|
@@ -537,6 +797,13 @@ export declare const QueryValidatorDistributionInfoResponse: {
|
|
|
537
797
|
toProto(message: QueryValidatorDistributionInfoResponse): Uint8Array;
|
|
538
798
|
toProtoMsg(message: QueryValidatorDistributionInfoResponse): QueryValidatorDistributionInfoResponseProtoMsg;
|
|
539
799
|
};
|
|
800
|
+
/**
|
|
801
|
+
* QueryValidatorOutstandingRewardsRequest is the request type for the
|
|
802
|
+
* Query/ValidatorOutstandingRewards RPC method.
|
|
803
|
+
* @name QueryValidatorOutstandingRewardsRequest
|
|
804
|
+
* @package cosmos.distribution.v1beta1
|
|
805
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsRequest
|
|
806
|
+
*/
|
|
540
807
|
export declare const QueryValidatorOutstandingRewardsRequest: {
|
|
541
808
|
typeUrl: string;
|
|
542
809
|
aminoType: string;
|
|
@@ -551,6 +818,13 @@ export declare const QueryValidatorOutstandingRewardsRequest: {
|
|
|
551
818
|
toProto(message: QueryValidatorOutstandingRewardsRequest): Uint8Array;
|
|
552
819
|
toProtoMsg(message: QueryValidatorOutstandingRewardsRequest): QueryValidatorOutstandingRewardsRequestProtoMsg;
|
|
553
820
|
};
|
|
821
|
+
/**
|
|
822
|
+
* QueryValidatorOutstandingRewardsResponse is the response type for the
|
|
823
|
+
* Query/ValidatorOutstandingRewards RPC method.
|
|
824
|
+
* @name QueryValidatorOutstandingRewardsResponse
|
|
825
|
+
* @package cosmos.distribution.v1beta1
|
|
826
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorOutstandingRewardsResponse
|
|
827
|
+
*/
|
|
554
828
|
export declare const QueryValidatorOutstandingRewardsResponse: {
|
|
555
829
|
typeUrl: string;
|
|
556
830
|
aminoType: string;
|
|
@@ -565,6 +839,13 @@ export declare const QueryValidatorOutstandingRewardsResponse: {
|
|
|
565
839
|
toProto(message: QueryValidatorOutstandingRewardsResponse): Uint8Array;
|
|
566
840
|
toProtoMsg(message: QueryValidatorOutstandingRewardsResponse): QueryValidatorOutstandingRewardsResponseProtoMsg;
|
|
567
841
|
};
|
|
842
|
+
/**
|
|
843
|
+
* QueryValidatorCommissionRequest is the request type for the
|
|
844
|
+
* Query/ValidatorCommission RPC method
|
|
845
|
+
* @name QueryValidatorCommissionRequest
|
|
846
|
+
* @package cosmos.distribution.v1beta1
|
|
847
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionRequest
|
|
848
|
+
*/
|
|
568
849
|
export declare const QueryValidatorCommissionRequest: {
|
|
569
850
|
typeUrl: string;
|
|
570
851
|
aminoType: string;
|
|
@@ -579,6 +860,13 @@ export declare const QueryValidatorCommissionRequest: {
|
|
|
579
860
|
toProto(message: QueryValidatorCommissionRequest): Uint8Array;
|
|
580
861
|
toProtoMsg(message: QueryValidatorCommissionRequest): QueryValidatorCommissionRequestProtoMsg;
|
|
581
862
|
};
|
|
863
|
+
/**
|
|
864
|
+
* QueryValidatorCommissionResponse is the response type for the
|
|
865
|
+
* Query/ValidatorCommission RPC method
|
|
866
|
+
* @name QueryValidatorCommissionResponse
|
|
867
|
+
* @package cosmos.distribution.v1beta1
|
|
868
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorCommissionResponse
|
|
869
|
+
*/
|
|
582
870
|
export declare const QueryValidatorCommissionResponse: {
|
|
583
871
|
typeUrl: string;
|
|
584
872
|
aminoType: string;
|
|
@@ -593,6 +881,13 @@ export declare const QueryValidatorCommissionResponse: {
|
|
|
593
881
|
toProto(message: QueryValidatorCommissionResponse): Uint8Array;
|
|
594
882
|
toProtoMsg(message: QueryValidatorCommissionResponse): QueryValidatorCommissionResponseProtoMsg;
|
|
595
883
|
};
|
|
884
|
+
/**
|
|
885
|
+
* QueryValidatorSlashesRequest is the request type for the
|
|
886
|
+
* Query/ValidatorSlashes RPC method
|
|
887
|
+
* @name QueryValidatorSlashesRequest
|
|
888
|
+
* @package cosmos.distribution.v1beta1
|
|
889
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesRequest
|
|
890
|
+
*/
|
|
596
891
|
export declare const QueryValidatorSlashesRequest: {
|
|
597
892
|
typeUrl: string;
|
|
598
893
|
aminoType: string;
|
|
@@ -607,6 +902,13 @@ export declare const QueryValidatorSlashesRequest: {
|
|
|
607
902
|
toProto(message: QueryValidatorSlashesRequest): Uint8Array;
|
|
608
903
|
toProtoMsg(message: QueryValidatorSlashesRequest): QueryValidatorSlashesRequestProtoMsg;
|
|
609
904
|
};
|
|
905
|
+
/**
|
|
906
|
+
* QueryValidatorSlashesResponse is the response type for the
|
|
907
|
+
* Query/ValidatorSlashes RPC method.
|
|
908
|
+
* @name QueryValidatorSlashesResponse
|
|
909
|
+
* @package cosmos.distribution.v1beta1
|
|
910
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryValidatorSlashesResponse
|
|
911
|
+
*/
|
|
610
912
|
export declare const QueryValidatorSlashesResponse: {
|
|
611
913
|
typeUrl: string;
|
|
612
914
|
aminoType: string;
|
|
@@ -621,6 +923,13 @@ export declare const QueryValidatorSlashesResponse: {
|
|
|
621
923
|
toProto(message: QueryValidatorSlashesResponse): Uint8Array;
|
|
622
924
|
toProtoMsg(message: QueryValidatorSlashesResponse): QueryValidatorSlashesResponseProtoMsg;
|
|
623
925
|
};
|
|
926
|
+
/**
|
|
927
|
+
* QueryDelegationRewardsRequest is the request type for the
|
|
928
|
+
* Query/DelegationRewards RPC method.
|
|
929
|
+
* @name QueryDelegationRewardsRequest
|
|
930
|
+
* @package cosmos.distribution.v1beta1
|
|
931
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsRequest
|
|
932
|
+
*/
|
|
624
933
|
export declare const QueryDelegationRewardsRequest: {
|
|
625
934
|
typeUrl: string;
|
|
626
935
|
aminoType: string;
|
|
@@ -635,6 +944,13 @@ export declare const QueryDelegationRewardsRequest: {
|
|
|
635
944
|
toProto(message: QueryDelegationRewardsRequest): Uint8Array;
|
|
636
945
|
toProtoMsg(message: QueryDelegationRewardsRequest): QueryDelegationRewardsRequestProtoMsg;
|
|
637
946
|
};
|
|
947
|
+
/**
|
|
948
|
+
* QueryDelegationRewardsResponse is the response type for the
|
|
949
|
+
* Query/DelegationRewards RPC method.
|
|
950
|
+
* @name QueryDelegationRewardsResponse
|
|
951
|
+
* @package cosmos.distribution.v1beta1
|
|
952
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationRewardsResponse
|
|
953
|
+
*/
|
|
638
954
|
export declare const QueryDelegationRewardsResponse: {
|
|
639
955
|
typeUrl: string;
|
|
640
956
|
aminoType: string;
|
|
@@ -649,6 +965,13 @@ export declare const QueryDelegationRewardsResponse: {
|
|
|
649
965
|
toProto(message: QueryDelegationRewardsResponse): Uint8Array;
|
|
650
966
|
toProtoMsg(message: QueryDelegationRewardsResponse): QueryDelegationRewardsResponseProtoMsg;
|
|
651
967
|
};
|
|
968
|
+
/**
|
|
969
|
+
* QueryDelegationTotalRewardsRequest is the request type for the
|
|
970
|
+
* Query/DelegationTotalRewards RPC method.
|
|
971
|
+
* @name QueryDelegationTotalRewardsRequest
|
|
972
|
+
* @package cosmos.distribution.v1beta1
|
|
973
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsRequest
|
|
974
|
+
*/
|
|
652
975
|
export declare const QueryDelegationTotalRewardsRequest: {
|
|
653
976
|
typeUrl: string;
|
|
654
977
|
aminoType: string;
|
|
@@ -663,6 +986,13 @@ export declare const QueryDelegationTotalRewardsRequest: {
|
|
|
663
986
|
toProto(message: QueryDelegationTotalRewardsRequest): Uint8Array;
|
|
664
987
|
toProtoMsg(message: QueryDelegationTotalRewardsRequest): QueryDelegationTotalRewardsRequestProtoMsg;
|
|
665
988
|
};
|
|
989
|
+
/**
|
|
990
|
+
* QueryDelegationTotalRewardsResponse is the response type for the
|
|
991
|
+
* Query/DelegationTotalRewards RPC method.
|
|
992
|
+
* @name QueryDelegationTotalRewardsResponse
|
|
993
|
+
* @package cosmos.distribution.v1beta1
|
|
994
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegationTotalRewardsResponse
|
|
995
|
+
*/
|
|
666
996
|
export declare const QueryDelegationTotalRewardsResponse: {
|
|
667
997
|
typeUrl: string;
|
|
668
998
|
aminoType: string;
|
|
@@ -677,6 +1007,13 @@ export declare const QueryDelegationTotalRewardsResponse: {
|
|
|
677
1007
|
toProto(message: QueryDelegationTotalRewardsResponse): Uint8Array;
|
|
678
1008
|
toProtoMsg(message: QueryDelegationTotalRewardsResponse): QueryDelegationTotalRewardsResponseProtoMsg;
|
|
679
1009
|
};
|
|
1010
|
+
/**
|
|
1011
|
+
* QueryDelegatorValidatorsRequest is the request type for the
|
|
1012
|
+
* Query/DelegatorValidators RPC method.
|
|
1013
|
+
* @name QueryDelegatorValidatorsRequest
|
|
1014
|
+
* @package cosmos.distribution.v1beta1
|
|
1015
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsRequest
|
|
1016
|
+
*/
|
|
680
1017
|
export declare const QueryDelegatorValidatorsRequest: {
|
|
681
1018
|
typeUrl: string;
|
|
682
1019
|
aminoType: string;
|
|
@@ -691,6 +1028,13 @@ export declare const QueryDelegatorValidatorsRequest: {
|
|
|
691
1028
|
toProto(message: QueryDelegatorValidatorsRequest): Uint8Array;
|
|
692
1029
|
toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg;
|
|
693
1030
|
};
|
|
1031
|
+
/**
|
|
1032
|
+
* QueryDelegatorValidatorsResponse is the response type for the
|
|
1033
|
+
* Query/DelegatorValidators RPC method.
|
|
1034
|
+
* @name QueryDelegatorValidatorsResponse
|
|
1035
|
+
* @package cosmos.distribution.v1beta1
|
|
1036
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorValidatorsResponse
|
|
1037
|
+
*/
|
|
694
1038
|
export declare const QueryDelegatorValidatorsResponse: {
|
|
695
1039
|
typeUrl: string;
|
|
696
1040
|
aminoType: string;
|
|
@@ -705,6 +1049,13 @@ export declare const QueryDelegatorValidatorsResponse: {
|
|
|
705
1049
|
toProto(message: QueryDelegatorValidatorsResponse): Uint8Array;
|
|
706
1050
|
toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg;
|
|
707
1051
|
};
|
|
1052
|
+
/**
|
|
1053
|
+
* QueryDelegatorWithdrawAddressRequest is the request type for the
|
|
1054
|
+
* Query/DelegatorWithdrawAddress RPC method.
|
|
1055
|
+
* @name QueryDelegatorWithdrawAddressRequest
|
|
1056
|
+
* @package cosmos.distribution.v1beta1
|
|
1057
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressRequest
|
|
1058
|
+
*/
|
|
708
1059
|
export declare const QueryDelegatorWithdrawAddressRequest: {
|
|
709
1060
|
typeUrl: string;
|
|
710
1061
|
aminoType: string;
|
|
@@ -719,6 +1070,13 @@ export declare const QueryDelegatorWithdrawAddressRequest: {
|
|
|
719
1070
|
toProto(message: QueryDelegatorWithdrawAddressRequest): Uint8Array;
|
|
720
1071
|
toProtoMsg(message: QueryDelegatorWithdrawAddressRequest): QueryDelegatorWithdrawAddressRequestProtoMsg;
|
|
721
1072
|
};
|
|
1073
|
+
/**
|
|
1074
|
+
* QueryDelegatorWithdrawAddressResponse is the response type for the
|
|
1075
|
+
* Query/DelegatorWithdrawAddress RPC method.
|
|
1076
|
+
* @name QueryDelegatorWithdrawAddressResponse
|
|
1077
|
+
* @package cosmos.distribution.v1beta1
|
|
1078
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryDelegatorWithdrawAddressResponse
|
|
1079
|
+
*/
|
|
722
1080
|
export declare const QueryDelegatorWithdrawAddressResponse: {
|
|
723
1081
|
typeUrl: string;
|
|
724
1082
|
aminoType: string;
|
|
@@ -733,6 +1091,13 @@ export declare const QueryDelegatorWithdrawAddressResponse: {
|
|
|
733
1091
|
toProto(message: QueryDelegatorWithdrawAddressResponse): Uint8Array;
|
|
734
1092
|
toProtoMsg(message: QueryDelegatorWithdrawAddressResponse): QueryDelegatorWithdrawAddressResponseProtoMsg;
|
|
735
1093
|
};
|
|
1094
|
+
/**
|
|
1095
|
+
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
1096
|
+
* method.
|
|
1097
|
+
* @name QueryCommunityPoolRequest
|
|
1098
|
+
* @package cosmos.distribution.v1beta1
|
|
1099
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolRequest
|
|
1100
|
+
*/
|
|
736
1101
|
export declare const QueryCommunityPoolRequest: {
|
|
737
1102
|
typeUrl: string;
|
|
738
1103
|
aminoType: string;
|
|
@@ -747,6 +1112,13 @@ export declare const QueryCommunityPoolRequest: {
|
|
|
747
1112
|
toProto(message: QueryCommunityPoolRequest): Uint8Array;
|
|
748
1113
|
toProtoMsg(message: QueryCommunityPoolRequest): QueryCommunityPoolRequestProtoMsg;
|
|
749
1114
|
};
|
|
1115
|
+
/**
|
|
1116
|
+
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
1117
|
+
* RPC method.
|
|
1118
|
+
* @name QueryCommunityPoolResponse
|
|
1119
|
+
* @package cosmos.distribution.v1beta1
|
|
1120
|
+
* @see proto type: cosmos.distribution.v1beta1.QueryCommunityPoolResponse
|
|
1121
|
+
*/
|
|
750
1122
|
export declare const QueryCommunityPoolResponse: {
|
|
751
1123
|
typeUrl: string;
|
|
752
1124
|
aminoType: string;
|