@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.8
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 +2284 -2422
- 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 +93 -1
- package/esm/sparkdream/blog/v1/params.js +439 -5
- package/esm/sparkdream/blog/v1/post.js +211 -2
- package/esm/sparkdream/blog/v1/query.js +1399 -0
- package/esm/sparkdream/blog/v1/query.lcd.js +105 -2
- package/esm/sparkdream/blog/v1/query.rpc.Query.js +75 -3
- package/esm/sparkdream/blog/v1/tx.amino.js +61 -1
- package/esm/sparkdream/blog/v1/tx.js +1910 -3
- package/esm/sparkdream/blog/v1/tx.registry.js +218 -2
- package/esm/sparkdream/blog/v1/tx.rpc.msg.js +77 -4
- package/esm/sparkdream/blog/v1/types.js +809 -0
- package/esm/sparkdream/bundle.js +558 -45
- package/esm/sparkdream/client.js +38 -2
- package/esm/sparkdream/collect/module/v1/module.js +71 -0
- package/esm/sparkdream/collect/v1/genesis.js +271 -0
- package/esm/sparkdream/collect/v1/params.js +763 -0
- package/esm/sparkdream/collect/v1/query.js +3790 -0
- package/esm/sparkdream/collect/v1/query.lcd.js +223 -0
- package/esm/sparkdream/collect/v1/query.rpc.Query.js +252 -0
- package/esm/sparkdream/collect/v1/tx.amino.js +149 -0
- package/esm/sparkdream/collect/v1/tx.js +4767 -0
- package/esm/sparkdream/collect/v1/tx.registry.js +537 -0
- package/esm/sparkdream/collect/v1/tx.rpc.msg.js +185 -0
- package/esm/sparkdream/collect/v1/types.js +3434 -0
- package/esm/sparkdream/common/v1/content_type.js +96 -0
- package/esm/sparkdream/common/v1/flag_record.js +119 -0
- package/esm/sparkdream/common/v1/moderation_reason.js +115 -0
- package/esm/sparkdream/common/v1/reserved_tag.js +96 -0
- package/esm/sparkdream/common/v1/tag.js +120 -0
- package/esm/sparkdream/commons/module/v1/module.js +71 -0
- package/esm/sparkdream/commons/v1/genesis.js +533 -0
- package/esm/sparkdream/commons/v1/group.js +1116 -0
- package/esm/sparkdream/commons/v1/params.js +78 -0
- package/esm/sparkdream/commons/v1/policy_permissions.js +86 -0
- package/esm/sparkdream/commons/v1/query.js +1337 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +78 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +100 -0
- package/esm/sparkdream/commons/v1/tx.amino.js +94 -0
- package/esm/sparkdream/commons/v1/tx.js +3282 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +339 -0
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +122 -0
- package/esm/sparkdream/ecosystem/module/v1/module.js +71 -0
- package/esm/sparkdream/ecosystem/v1/genesis.js +72 -0
- package/esm/sparkdream/ecosystem/v1/params.js +65 -0
- package/esm/sparkdream/ecosystem/v1/query.js +128 -0
- package/esm/sparkdream/ecosystem/v1/query.lcd.js +11 -0
- package/esm/sparkdream/ecosystem/v1/query.rpc.Query.js +24 -0
- package/esm/sparkdream/ecosystem/v1/tx.amino.js +14 -0
- package/esm/sparkdream/ecosystem/v1/tx.js +308 -0
- package/esm/sparkdream/ecosystem/v1/tx.registry.js +51 -0
- package/esm/sparkdream/ecosystem/v1/tx.rpc.msg.js +24 -0
- package/esm/sparkdream/forum/module/v1/module.js +71 -0
- package/esm/sparkdream/forum/v1/archive_metadata.js +119 -0
- package/esm/sparkdream/forum/v1/bounty.js +183 -0
- package/esm/sparkdream/forum/v1/category.js +119 -0
- package/esm/sparkdream/forum/v1/genesis.js +516 -0
- package/esm/sparkdream/forum/v1/gov_action_appeal.js +202 -0
- package/esm/sparkdream/forum/v1/hide_record.js +154 -0
- package/esm/sparkdream/forum/v1/jury_participation.js +131 -0
- package/esm/sparkdream/forum/v1/member_report.js +219 -0
- package/esm/sparkdream/forum/v1/member_salvation_status.js +119 -0
- package/esm/sparkdream/forum/v1/member_warning.js +156 -0
- package/esm/sparkdream/forum/v1/params.js +867 -0
- package/esm/sparkdream/forum/v1/post.js +397 -0
- package/esm/sparkdream/forum/v1/post_flag.js +254 -0
- package/esm/sparkdream/forum/v1/query.js +12470 -0
- package/esm/sparkdream/forum/v1/query.lcd.js +730 -0
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +799 -0
- package/esm/sparkdream/forum/v1/sentinel_activity.js +490 -0
- package/esm/sparkdream/forum/v1/tag_budget.js +143 -0
- package/esm/sparkdream/forum/v1/tag_budget_award.js +155 -0
- package/esm/sparkdream/forum/v1/tag_report.js +122 -0
- package/esm/sparkdream/forum/v1/thread_follow.js +95 -0
- package/esm/sparkdream/forum/v1/thread_follow_count.js +83 -0
- package/esm/sparkdream/forum/v1/thread_lock_record.js +155 -0
- package/esm/sparkdream/forum/v1/thread_metadata.js +184 -0
- package/esm/sparkdream/forum/v1/thread_move_record.js +179 -0
- package/esm/sparkdream/forum/v1/tx.amino.js +254 -0
- package/esm/sparkdream/forum/v1/tx.js +7464 -0
- package/esm/sparkdream/forum/v1/tx.registry.js +915 -0
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +313 -0
- package/esm/sparkdream/forum/v1/types.js +758 -0
- package/esm/sparkdream/forum/v1/user_rate_limit.js +119 -0
- package/esm/sparkdream/forum/v1/user_reaction_limit.js +107 -0
- package/esm/sparkdream/futarchy/module/v1/module.js +71 -0
- package/esm/sparkdream/futarchy/v1/genesis.js +88 -0
- package/esm/sparkdream/futarchy/v1/market.js +240 -0
- package/esm/sparkdream/futarchy/v1/params.js +241 -0
- package/esm/sparkdream/futarchy/v1/query.js +596 -0
- package/esm/sparkdream/futarchy/v1/query.lcd.js +45 -0
- package/esm/sparkdream/futarchy/v1/query.rpc.Query.js +53 -0
- package/esm/sparkdream/futarchy/v1/tx.amino.js +39 -0
- package/esm/sparkdream/futarchy/v1/tx.js +1097 -0
- package/esm/sparkdream/futarchy/v1/tx.registry.js +141 -0
- package/esm/sparkdream/futarchy/v1/tx.rpc.msg.js +55 -0
- package/esm/sparkdream/lcd.js +60 -0
- package/esm/sparkdream/name/module/v1/module.js +71 -0
- package/esm/sparkdream/name/v1/dispute.js +341 -0
- package/esm/sparkdream/name/v1/genesis.js +120 -0
- package/esm/sparkdream/name/v1/name_record.js +95 -0
- package/esm/sparkdream/name/v1/owner_info.js +95 -0
- package/esm/sparkdream/name/v1/params.js +306 -0
- package/esm/sparkdream/name/v1/query.js +863 -0
- package/esm/sparkdream/name/v1/query.lcd.js +52 -0
- package/esm/sparkdream/name/v1/query.rpc.Query.js +71 -0
- package/esm/sparkdream/name/v1/tx.amino.js +44 -0
- package/esm/sparkdream/name/v1/tx.js +1222 -0
- package/esm/sparkdream/name/v1/tx.registry.js +159 -0
- package/esm/sparkdream/name/v1/tx.rpc.msg.js +62 -0
- package/esm/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/esm/sparkdream/rep/v1/challenge.js +226 -0
- package/esm/sparkdream/rep/v1/content_challenge.js +303 -0
- package/esm/sparkdream/rep/v1/genesis.js +481 -0
- package/esm/sparkdream/rep/v1/initiative.js +558 -0
- package/esm/sparkdream/rep/v1/interim.js +426 -0
- package/esm/sparkdream/rep/v1/interim_template.js +291 -0
- package/esm/sparkdream/rep/v1/invitation.js +251 -0
- package/esm/sparkdream/rep/v1/jury_review.js +635 -0
- package/esm/sparkdream/rep/v1/member.js +857 -0
- package/esm/sparkdream/rep/v1/params.js +1819 -0
- package/esm/sparkdream/rep/v1/project.js +545 -0
- package/esm/sparkdream/rep/v1/query.js +6896 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +377 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +424 -0
- package/esm/sparkdream/rep/v1/stake.js +575 -0
- package/esm/sparkdream/rep/v1/tx.amino.js +159 -0
- package/esm/sparkdream/rep/v1/tx.js +5198 -0
- package/esm/sparkdream/rep/v1/tx.registry.js +573 -0
- package/esm/sparkdream/rep/v1/tx.rpc.msg.js +199 -0
- package/esm/sparkdream/reveal/module/v1/module.js +71 -0
- package/esm/sparkdream/reveal/v1/genesis.js +142 -0
- package/esm/sparkdream/reveal/v1/params.js +235 -0
- package/esm/sparkdream/reveal/v1/query.js +1700 -0
- package/esm/sparkdream/reveal/v1/query.lcd.js +101 -0
- package/esm/sparkdream/reveal/v1/query.rpc.Query.js +116 -0
- package/esm/sparkdream/reveal/v1/tx.amino.js +54 -0
- package/esm/sparkdream/reveal/v1/tx.js +1699 -0
- package/esm/sparkdream/reveal/v1/tx.registry.js +195 -0
- package/esm/sparkdream/reveal/v1/tx.rpc.msg.js +72 -0
- package/esm/sparkdream/reveal/v1/types.js +1141 -0
- package/esm/sparkdream/rpc.query.js +36 -5
- package/esm/sparkdream/rpc.tx.js +36 -0
- package/esm/sparkdream/season/module/v1/module.js +71 -0
- package/esm/sparkdream/season/v1/achievement.js +142 -0
- package/esm/sparkdream/season/v1/display_name_appeal_stake.js +95 -0
- package/esm/sparkdream/season/v1/display_name_moderation.js +155 -0
- package/esm/sparkdream/season/v1/display_name_report_stake.js +95 -0
- package/esm/sparkdream/season/v1/enums.js +391 -0
- package/esm/sparkdream/season/v1/epoch_xp_tracker.js +119 -0
- package/esm/sparkdream/season/v1/forum_xp_cooldown.js +83 -0
- package/esm/sparkdream/season/v1/genesis.js +482 -0
- package/esm/sparkdream/season/v1/guild.js +172 -0
- package/esm/sparkdream/season/v1/guild_invite.js +107 -0
- package/esm/sparkdream/season/v1/guild_membership.js +119 -0
- package/esm/sparkdream/season/v1/member_profile.js +296 -0
- package/esm/sparkdream/season/v1/member_quest_progress.js +132 -0
- package/esm/sparkdream/season/v1/member_registration.js +83 -0
- package/esm/sparkdream/season/v1/member_season_snapshot.js +238 -0
- package/esm/sparkdream/season/v1/next_season_info.js +83 -0
- package/esm/sparkdream/season/v1/nomination.js +428 -0
- package/esm/sparkdream/season/v1/params.js +1597 -0
- package/esm/sparkdream/season/v1/query.js +10569 -0
- package/esm/sparkdream/season/v1/query.lcd.js +598 -0
- package/esm/sparkdream/season/v1/query.rpc.Query.js +673 -0
- package/esm/sparkdream/season/v1/quest.js +334 -0
- package/esm/sparkdream/season/v1/season.js +166 -0
- package/esm/sparkdream/season/v1/season_snapshot.js +83 -0
- package/esm/sparkdream/season/v1/season_title_eligibility.js +194 -0
- package/esm/sparkdream/season/v1/season_transition_state.js +130 -0
- package/esm/sparkdream/season/v1/title.js +154 -0
- package/esm/sparkdream/season/v1/transition_recovery_state.js +118 -0
- package/esm/sparkdream/season/v1/tx.amino.js +219 -0
- package/esm/sparkdream/season/v1/tx.js +6823 -0
- package/esm/sparkdream/season/v1/tx.registry.js +789 -0
- package/esm/sparkdream/season/v1/tx.rpc.msg.js +272 -0
- package/esm/sparkdream/season/v1/vote_xp_record.js +83 -0
- package/esm/sparkdream/session/module/v1/module.js +71 -0
- package/esm/sparkdream/session/v1/genesis.js +88 -0
- package/esm/sparkdream/session/v1/params.js +275 -0
- package/esm/sparkdream/session/v1/query.js +743 -0
- package/esm/sparkdream/session/v1/query.lcd.js +45 -0
- package/esm/sparkdream/session/v1/query.rpc.Query.js +60 -0
- package/esm/sparkdream/session/v1/session.js +185 -0
- package/esm/sparkdream/session/v1/tx.amino.js +29 -0
- package/esm/sparkdream/session/v1/tx.js +768 -0
- package/esm/sparkdream/session/v1/tx.registry.js +105 -0
- package/esm/sparkdream/session/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/module/v1/module.js +71 -0
- package/esm/sparkdream/shield/v1/genesis.js +301 -0
- package/esm/sparkdream/shield/v1/params.js +282 -0
- package/esm/sparkdream/shield/v1/query.js +2323 -0
- package/esm/sparkdream/shield/v1/query.lcd.js +110 -0
- package/esm/sparkdream/shield/v1/query.rpc.Query.js +170 -0
- package/esm/sparkdream/shield/v1/tx.amino.js +29 -0
- package/esm/sparkdream/shield/v1/tx.js +838 -0
- package/esm/sparkdream/shield/v1/tx.registry.js +105 -0
- package/esm/sparkdream/shield/v1/tx.rpc.msg.js +43 -0
- package/esm/sparkdream/shield/v1/types.js +2385 -0
- 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/sparkdream/split/module/v1/module.js +71 -0
- package/esm/sparkdream/split/v1/genesis.js +88 -0
- package/esm/sparkdream/split/v1/params.js +65 -0
- package/esm/sparkdream/split/v1/query.js +421 -0
- package/esm/sparkdream/split/v1/query.lcd.js +31 -0
- package/esm/sparkdream/split/v1/query.rpc.Query.js +44 -0
- package/esm/sparkdream/split/v1/share.js +83 -0
- package/esm/sparkdream/split/v1/tx.amino.js +9 -0
- package/esm/sparkdream/split/v1/tx.js +148 -0
- package/esm/sparkdream/split/v1/tx.registry.js +33 -0
- package/esm/sparkdream/split/v1/tx.rpc.msg.js +18 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- 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 +74 -4
- package/sparkdream/blog/v1/genesis.js +93 -1
- package/sparkdream/blog/v1/params.d.ts +310 -6
- package/sparkdream/blog/v1/params.js +440 -6
- package/sparkdream/blog/v1/post.d.ts +180 -2
- package/sparkdream/blog/v1/post.js +211 -2
- package/sparkdream/blog/v1/query.d.ts +865 -14
- package/sparkdream/blog/v1/query.js +1400 -1
- package/sparkdream/blog/v1/query.lcd.d.ts +9 -1
- package/sparkdream/blog/v1/query.lcd.js +105 -2
- package/sparkdream/blog/v1/query.rpc.Query.d.ts +35 -3
- package/sparkdream/blog/v1/query.rpc.Query.js +74 -2
- package/sparkdream/blog/v1/tx.amino.d.ts +61 -1
- package/sparkdream/blog/v1/tx.amino.js +60 -0
- package/sparkdream/blog/v1/tx.d.ts +1306 -19
- package/sparkdream/blog/v1/tx.js +1910 -3
- package/sparkdream/blog/v1/tx.registry.d.ts +145 -1
- package/sparkdream/blog/v1/tx.registry.js +217 -1
- package/sparkdream/blog/v1/tx.rpc.msg.d.ts +43 -4
- package/sparkdream/blog/v1/tx.rpc.msg.js +76 -3
- package/sparkdream/blog/v1/types.d.ts +463 -0
- package/sparkdream/blog/v1/types.js +818 -0
- package/sparkdream/bundle.d.ts +19938 -325
- package/sparkdream/bundle.js +558 -45
- package/sparkdream/client.d.ts +1105 -0
- package/sparkdream/client.js +38 -2
- package/sparkdream/collect/module/v1/module.d.ts +54 -0
- package/sparkdream/collect/module/v1/module.js +74 -0
- package/sparkdream/collect/v1/genesis.d.ts +82 -0
- package/sparkdream/collect/v1/genesis.js +274 -0
- package/sparkdream/collect/v1/params.d.ts +240 -0
- package/sparkdream/collect/v1/params.js +766 -0
- package/sparkdream/collect/v1/query.d.ts +2157 -0
- package/sparkdream/collect/v1/query.js +3793 -0
- package/sparkdream/collect/v1/query.lcd.d.ts +33 -0
- package/sparkdream/collect/v1/query.lcd.js +227 -0
- package/sparkdream/collect/v1/query.rpc.Query.d.ts +101 -0
- package/sparkdream/collect/v1/query.rpc.Query.js +257 -0
- package/sparkdream/collect/v1/tx.amino.d.ts +148 -0
- package/sparkdream/collect/v1/tx.amino.js +152 -0
- package/sparkdream/collect/v1/tx.d.ts +2581 -0
- package/sparkdream/collect/v1/tx.js +4771 -0
- package/sparkdream/collect/v1/tx.registry.d.ts +361 -0
- package/sparkdream/collect/v1/tx.registry.js +541 -0
- package/sparkdream/collect/v1/tx.rpc.msg.d.ts +76 -0
- package/sparkdream/collect/v1/tx.rpc.msg.js +190 -0
- package/sparkdream/collect/v1/types.d.ts +1205 -0
- package/sparkdream/collect/v1/types.js +3453 -0
- package/sparkdream/common/v1/content_type.d.ts +31 -0
- package/sparkdream/common/v1/content_type.js +101 -0
- package/sparkdream/common/v1/flag_record.d.ts +58 -0
- package/sparkdream/common/v1/flag_record.js +122 -0
- package/sparkdream/common/v1/moderation_reason.d.ts +35 -0
- package/sparkdream/common/v1/moderation_reason.js +120 -0
- package/sparkdream/common/v1/reserved_tag.d.ts +53 -0
- package/sparkdream/common/v1/reserved_tag.js +99 -0
- package/sparkdream/common/v1/tag.d.ts +57 -0
- package/sparkdream/common/v1/tag.js +123 -0
- package/sparkdream/commons/module/v1/module.d.ts +54 -0
- package/sparkdream/commons/module/v1/module.js +74 -0
- package/sparkdream/commons/v1/genesis.d.ts +299 -0
- package/sparkdream/commons/v1/genesis.js +536 -0
- package/sparkdream/commons/v1/group.d.ts +529 -0
- package/sparkdream/commons/v1/group.js +1123 -0
- package/sparkdream/commons/v1/params.d.ts +48 -0
- package/sparkdream/commons/v1/params.js +81 -0
- package/sparkdream/commons/v1/policy_permissions.d.ts +48 -0
- package/sparkdream/commons/v1/policy_permissions.js +89 -0
- package/sparkdream/commons/v1/query.d.ts +822 -0
- package/sparkdream/commons/v1/query.js +1340 -0
- package/sparkdream/commons/v1/query.lcd.d.ts +17 -0
- package/sparkdream/commons/v1/query.lcd.js +82 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +48 -0
- package/sparkdream/commons/v1/query.rpc.Query.js +105 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +93 -0
- package/sparkdream/commons/v1/tx.amino.js +97 -0
- package/sparkdream/commons/v1/tx.d.ts +1930 -0
- package/sparkdream/commons/v1/tx.js +3285 -0
- package/sparkdream/commons/v1/tx.registry.d.ts +229 -0
- package/sparkdream/commons/v1/tx.registry.js +343 -0
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +73 -0
- package/sparkdream/commons/v1/tx.rpc.msg.js +127 -0
- package/sparkdream/ecosystem/module/v1/module.d.ts +54 -0
- package/sparkdream/ecosystem/module/v1/module.js +74 -0
- package/sparkdream/ecosystem/v1/genesis.d.ts +53 -0
- package/sparkdream/ecosystem/v1/genesis.js +75 -0
- package/sparkdream/ecosystem/v1/params.d.ts +46 -0
- package/sparkdream/ecosystem/v1/params.js +68 -0
- package/sparkdream/ecosystem/v1/query.d.ts +95 -0
- package/sparkdream/ecosystem/v1/query.js +131 -0
- package/sparkdream/ecosystem/v1/query.lcd.d.ts +9 -0
- package/sparkdream/ecosystem/v1/query.lcd.js +15 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.d.ts +16 -0
- package/sparkdream/ecosystem/v1/query.rpc.Query.js +29 -0
- package/sparkdream/ecosystem/v1/tx.amino.d.ts +13 -0
- package/sparkdream/ecosystem/v1/tx.amino.js +17 -0
- package/sparkdream/ecosystem/v1/tx.d.ts +201 -0
- package/sparkdream/ecosystem/v1/tx.js +311 -0
- package/sparkdream/ecosystem/v1/tx.registry.d.ts +37 -0
- package/sparkdream/ecosystem/v1/tx.registry.js +55 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.d.ts +19 -0
- package/sparkdream/ecosystem/v1/tx.rpc.msg.js +29 -0
- package/sparkdream/forum/module/v1/module.d.ts +54 -0
- package/sparkdream/forum/module/v1/module.js +74 -0
- package/sparkdream/forum/v1/archive_metadata.d.ts +54 -0
- package/sparkdream/forum/v1/archive_metadata.js +122 -0
- package/sparkdream/forum/v1/bounty.d.ts +65 -0
- package/sparkdream/forum/v1/bounty.js +186 -0
- package/sparkdream/forum/v1/category.d.ts +54 -0
- package/sparkdream/forum/v1/category.js +122 -0
- package/sparkdream/forum/v1/genesis.d.ts +135 -0
- package/sparkdream/forum/v1/genesis.js +519 -0
- package/sparkdream/forum/v1/gov_action_appeal.d.ts +69 -0
- package/sparkdream/forum/v1/gov_action_appeal.js +205 -0
- package/sparkdream/forum/v1/hide_record.d.ts +61 -0
- package/sparkdream/forum/v1/hide_record.js +157 -0
- package/sparkdream/forum/v1/jury_participation.d.ts +56 -0
- package/sparkdream/forum/v1/jury_participation.js +134 -0
- package/sparkdream/forum/v1/member_report.d.ts +67 -0
- package/sparkdream/forum/v1/member_report.js +222 -0
- package/sparkdream/forum/v1/member_salvation_status.d.ts +54 -0
- package/sparkdream/forum/v1/member_salvation_status.js +122 -0
- package/sparkdream/forum/v1/member_warning.d.ts +58 -0
- package/sparkdream/forum/v1/member_warning.js +159 -0
- package/sparkdream/forum/v1/params.d.ts +450 -0
- package/sparkdream/forum/v1/params.js +870 -0
- package/sparkdream/forum/v1/post.d.ts +102 -0
- package/sparkdream/forum/v1/post.js +400 -0
- package/sparkdream/forum/v1/post_flag.d.ts +106 -0
- package/sparkdream/forum/v1/post_flag.js +257 -0
- package/sparkdream/forum/v1/query.d.ts +7296 -0
- package/sparkdream/forum/v1/query.js +12476 -0
- package/sparkdream/forum/v1/query.lcd.d.ts +88 -0
- package/sparkdream/forum/v1/query.lcd.js +734 -0
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +332 -0
- package/sparkdream/forum/v1/query.rpc.Query.js +804 -0
- package/sparkdream/forum/v1/sentinel_activity.d.ts +117 -0
- package/sparkdream/forum/v1/sentinel_activity.js +493 -0
- package/sparkdream/forum/v1/tag_budget.d.ts +58 -0
- package/sparkdream/forum/v1/tag_budget.js +146 -0
- package/sparkdream/forum/v1/tag_budget_award.d.ts +60 -0
- package/sparkdream/forum/v1/tag_budget_award.js +158 -0
- package/sparkdream/forum/v1/tag_report.d.ts +54 -0
- package/sparkdream/forum/v1/tag_report.js +125 -0
- package/sparkdream/forum/v1/thread_follow.d.ts +50 -0
- package/sparkdream/forum/v1/thread_follow.js +98 -0
- package/sparkdream/forum/v1/thread_follow_count.d.ts +48 -0
- package/sparkdream/forum/v1/thread_follow_count.js +86 -0
- package/sparkdream/forum/v1/thread_lock_record.d.ts +60 -0
- package/sparkdream/forum/v1/thread_lock_record.js +158 -0
- package/sparkdream/forum/v1/thread_metadata.d.ts +63 -0
- package/sparkdream/forum/v1/thread_metadata.js +187 -0
- package/sparkdream/forum/v1/thread_move_record.d.ts +64 -0
- package/sparkdream/forum/v1/thread_move_record.js +182 -0
- package/sparkdream/forum/v1/tx.amino.d.ts +253 -0
- package/sparkdream/forum/v1/tx.amino.js +257 -0
- package/sparkdream/forum/v1/tx.d.ts +4551 -0
- package/sparkdream/forum/v1/tx.js +7468 -0
- package/sparkdream/forum/v1/tx.registry.d.ts +613 -0
- package/sparkdream/forum/v1/tx.registry.js +919 -0
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +166 -0
- package/sparkdream/forum/v1/tx.rpc.msg.js +318 -0
- package/sparkdream/forum/v1/types.d.ts +221 -0
- package/sparkdream/forum/v1/types.js +777 -0
- package/sparkdream/forum/v1/user_rate_limit.d.ts +54 -0
- package/sparkdream/forum/v1/user_rate_limit.js +122 -0
- package/sparkdream/forum/v1/user_reaction_limit.d.ts +52 -0
- package/sparkdream/forum/v1/user_reaction_limit.js +110 -0
- package/sparkdream/futarchy/module/v1/module.d.ts +54 -0
- package/sparkdream/futarchy/module/v1/module.js +74 -0
- package/sparkdream/futarchy/v1/genesis.d.ts +56 -0
- package/sparkdream/futarchy/v1/genesis.js +91 -0
- package/sparkdream/futarchy/v1/market.d.ts +104 -0
- package/sparkdream/futarchy/v1/market.js +243 -0
- package/sparkdream/futarchy/v1/params.d.ts +171 -0
- package/sparkdream/futarchy/v1/params.js +244 -0
- package/sparkdream/futarchy/v1/query.d.ts +381 -0
- package/sparkdream/futarchy/v1/query.js +599 -0
- package/sparkdream/futarchy/v1/query.lcd.d.ts +12 -0
- package/sparkdream/futarchy/v1/query.lcd.js +49 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.d.ts +28 -0
- package/sparkdream/futarchy/v1/query.rpc.Query.js +58 -0
- package/sparkdream/futarchy/v1/tx.amino.d.ts +38 -0
- package/sparkdream/futarchy/v1/tx.amino.js +42 -0
- package/sparkdream/futarchy/v1/tx.d.ts +688 -0
- package/sparkdream/futarchy/v1/tx.js +1100 -0
- package/sparkdream/futarchy/v1/tx.registry.d.ts +97 -0
- package/sparkdream/futarchy/v1/tx.registry.js +145 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.d.ts +37 -0
- package/sparkdream/futarchy/v1/tx.rpc.msg.js +60 -0
- package/sparkdream/lcd.d.ts +36 -0
- package/sparkdream/lcd.js +60 -0
- package/sparkdream/name/module/v1/module.d.ts +54 -0
- package/sparkdream/name/module/v1/module.js +74 -0
- package/sparkdream/name/v1/dispute.d.ts +216 -0
- package/sparkdream/name/v1/dispute.js +344 -0
- package/sparkdream/name/v1/genesis.d.ts +62 -0
- package/sparkdream/name/v1/genesis.js +123 -0
- package/sparkdream/name/v1/name_record.d.ts +50 -0
- package/sparkdream/name/v1/name_record.js +98 -0
- package/sparkdream/name/v1/owner_info.d.ts +50 -0
- package/sparkdream/name/v1/owner_info.js +98 -0
- package/sparkdream/name/v1/params.d.ts +165 -0
- package/sparkdream/name/v1/params.js +309 -0
- package/sparkdream/name/v1/query.d.ts +544 -0
- package/sparkdream/name/v1/query.js +866 -0
- package/sparkdream/name/v1/query.lcd.d.ts +14 -0
- package/sparkdream/name/v1/query.lcd.js +56 -0
- package/sparkdream/name/v1/query.rpc.Query.d.ts +36 -0
- package/sparkdream/name/v1/query.rpc.Query.js +76 -0
- package/sparkdream/name/v1/tx.amino.d.ts +43 -0
- package/sparkdream/name/v1/tx.amino.js +47 -0
- package/sparkdream/name/v1/tx.d.ts +804 -0
- package/sparkdream/name/v1/tx.js +1225 -0
- package/sparkdream/name/v1/tx.registry.d.ts +109 -0
- package/sparkdream/name/v1/tx.registry.js +163 -0
- package/sparkdream/name/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/name/v1/tx.rpc.msg.js +67 -0
- package/sparkdream/rep/module/v1/module.d.ts +54 -0
- package/{cosmos/orm/module/v1alpha1 → sparkdream/rep/module/v1}/module.js +26 -14
- package/sparkdream/rep/v1/challenge.d.ts +74 -0
- package/sparkdream/rep/v1/challenge.js +231 -0
- package/sparkdream/rep/v1/content_challenge.d.ts +154 -0
- package/sparkdream/rep/v1/content_challenge.js +308 -0
- package/sparkdream/rep/v1/genesis.d.ts +185 -0
- package/sparkdream/rep/v1/genesis.js +484 -0
- package/sparkdream/rep/v1/initiative.d.ts +140 -0
- package/sparkdream/rep/v1/initiative.js +567 -0
- package/sparkdream/rep/v1/interim.d.ts +163 -0
- package/sparkdream/rep/v1/interim.js +435 -0
- package/sparkdream/rep/v1/interim_template.d.ts +114 -0
- package/sparkdream/rep/v1/interim_template.js +296 -0
- package/sparkdream/rep/v1/invitation.d.ts +78 -0
- package/sparkdream/rep/v1/invitation.js +256 -0
- package/sparkdream/rep/v1/jury_review.d.ts +235 -0
- package/sparkdream/rep/v1/jury_review.js +640 -0
- package/sparkdream/rep/v1/member.d.ts +408 -0
- package/sparkdream/rep/v1/member.js +864 -0
- package/sparkdream/rep/v1/params.d.ts +730 -0
- package/sparkdream/rep/v1/params.js +1822 -0
- package/sparkdream/rep/v1/project.d.ts +162 -0
- package/sparkdream/rep/v1/project.js +554 -0
- package/sparkdream/rep/v1/query.d.ts +4030 -0
- package/sparkdream/rep/v1/query.js +6900 -0
- package/sparkdream/rep/v1/query.lcd.d.ts +51 -0
- package/sparkdream/rep/v1/query.lcd.js +381 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +184 -0
- package/sparkdream/rep/v1/query.rpc.Query.js +429 -0
- package/sparkdream/rep/v1/stake.d.ts +266 -0
- package/sparkdream/rep/v1/stake.js +580 -0
- package/sparkdream/rep/v1/tx.amino.d.ts +158 -0
- package/sparkdream/rep/v1/tx.amino.js +162 -0
- package/sparkdream/rep/v1/tx.d.ts +2940 -0
- package/sparkdream/rep/v1/tx.js +5204 -0
- package/sparkdream/rep/v1/tx.registry.d.ts +385 -0
- package/sparkdream/rep/v1/tx.registry.js +577 -0
- package/sparkdream/rep/v1/tx.rpc.msg.d.ts +109 -0
- package/sparkdream/rep/v1/tx.rpc.msg.js +204 -0
- package/sparkdream/reveal/module/v1/module.d.ts +54 -0
- package/sparkdream/reveal/module/v1/module.js +74 -0
- package/sparkdream/reveal/v1/genesis.d.ts +64 -0
- package/sparkdream/reveal/v1/genesis.js +145 -0
- package/sparkdream/reveal/v1/params.d.ts +140 -0
- package/sparkdream/reveal/v1/params.js +238 -0
- package/sparkdream/reveal/v1/query.d.ts +949 -0
- package/sparkdream/reveal/v1/query.js +1703 -0
- package/sparkdream/reveal/v1/query.lcd.d.ts +19 -0
- package/sparkdream/reveal/v1/query.lcd.js +105 -0
- package/sparkdream/reveal/v1/query.rpc.Query.d.ts +56 -0
- package/sparkdream/reveal/v1/query.rpc.Query.js +121 -0
- package/sparkdream/reveal/v1/tx.amino.d.ts +53 -0
- package/sparkdream/reveal/v1/tx.amino.js +57 -0
- package/sparkdream/reveal/v1/tx.d.ts +1043 -0
- package/sparkdream/reveal/v1/tx.js +1702 -0
- package/sparkdream/reveal/v1/tx.registry.d.ts +133 -0
- package/sparkdream/reveal/v1/tx.registry.js +199 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.d.ts +43 -0
- package/sparkdream/reveal/v1/tx.rpc.msg.js +77 -0
- package/sparkdream/reveal/v1/types.d.ts +455 -0
- package/sparkdream/reveal/v1/types.js +1150 -0
- package/sparkdream/rpc.query.d.ts +329 -9
- package/sparkdream/rpc.query.js +36 -5
- package/sparkdream/rpc.tx.d.ts +36 -0
- package/sparkdream/rpc.tx.js +36 -0
- package/sparkdream/season/module/v1/module.d.ts +54 -0
- package/sparkdream/season/module/v1/module.js +74 -0
- package/sparkdream/season/v1/achievement.d.ts +101 -0
- package/sparkdream/season/v1/achievement.js +145 -0
- package/sparkdream/season/v1/display_name_appeal_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_appeal_stake.js +98 -0
- package/sparkdream/season/v1/display_name_moderation.d.ts +60 -0
- package/sparkdream/season/v1/display_name_moderation.js +158 -0
- package/sparkdream/season/v1/display_name_report_stake.d.ts +68 -0
- package/sparkdream/season/v1/display_name_report_stake.js +98 -0
- package/sparkdream/season/v1/enums.d.ts +86 -0
- package/sparkdream/season/v1/enums.js +406 -0
- package/sparkdream/season/v1/epoch_xp_tracker.d.ts +54 -0
- package/sparkdream/season/v1/epoch_xp_tracker.js +122 -0
- package/sparkdream/season/v1/forum_xp_cooldown.d.ts +48 -0
- package/sparkdream/season/v1/forum_xp_cooldown.js +86 -0
- package/sparkdream/season/v1/genesis.d.ts +136 -0
- package/sparkdream/season/v1/genesis.js +485 -0
- package/sparkdream/season/v1/guild.d.ts +117 -0
- package/sparkdream/season/v1/guild.js +175 -0
- package/sparkdream/season/v1/guild_invite.d.ts +52 -0
- package/sparkdream/season/v1/guild_invite.js +110 -0
- package/sparkdream/season/v1/guild_membership.d.ts +54 -0
- package/sparkdream/season/v1/guild_membership.js +122 -0
- package/sparkdream/season/v1/member_profile.d.ts +196 -0
- package/sparkdream/season/v1/member_profile.js +299 -0
- package/sparkdream/season/v1/member_quest_progress.d.ts +84 -0
- package/sparkdream/season/v1/member_quest_progress.js +135 -0
- package/sparkdream/season/v1/member_registration.d.ts +48 -0
- package/sparkdream/season/v1/member_registration.js +86 -0
- package/sparkdream/season/v1/member_season_snapshot.d.ts +145 -0
- package/sparkdream/season/v1/member_season_snapshot.js +241 -0
- package/sparkdream/season/v1/next_season_info.d.ts +48 -0
- package/sparkdream/season/v1/next_season_info.js +86 -0
- package/sparkdream/season/v1/nomination.d.ts +194 -0
- package/sparkdream/season/v1/nomination.js +431 -0
- package/sparkdream/season/v1/params.d.ts +611 -0
- package/sparkdream/season/v1/params.js +1600 -0
- package/sparkdream/season/v1/query.d.ts +6199 -0
- package/sparkdream/season/v1/query.js +10574 -0
- package/sparkdream/season/v1/query.lcd.d.ts +76 -0
- package/sparkdream/season/v1/query.lcd.js +602 -0
- package/sparkdream/season/v1/query.rpc.Query.d.ts +284 -0
- package/sparkdream/season/v1/query.rpc.Query.js +678 -0
- package/sparkdream/season/v1/quest.d.ts +231 -0
- package/sparkdream/season/v1/quest.js +337 -0
- package/sparkdream/season/v1/season.d.ts +117 -0
- package/sparkdream/season/v1/season.js +169 -0
- package/sparkdream/season/v1/season_snapshot.d.ts +48 -0
- package/sparkdream/season/v1/season_snapshot.js +86 -0
- package/sparkdream/season/v1/season_title_eligibility.d.ts +134 -0
- package/sparkdream/season/v1/season_title_eligibility.js +197 -0
- package/sparkdream/season/v1/season_transition_state.d.ts +93 -0
- package/sparkdream/season/v1/season_transition_state.js +133 -0
- package/sparkdream/season/v1/title.d.ts +109 -0
- package/sparkdream/season/v1/title.js +157 -0
- package/sparkdream/season/v1/transition_recovery_state.d.ts +85 -0
- package/sparkdream/season/v1/transition_recovery_state.js +121 -0
- package/sparkdream/season/v1/tx.amino.d.ts +218 -0
- package/sparkdream/season/v1/tx.amino.js +222 -0
- package/sparkdream/season/v1/tx.d.ts +4133 -0
- package/sparkdream/season/v1/tx.js +6827 -0
- package/sparkdream/season/v1/tx.registry.d.ts +529 -0
- package/sparkdream/season/v1/tx.registry.js +793 -0
- package/sparkdream/season/v1/tx.rpc.msg.d.ts +144 -0
- package/sparkdream/season/v1/tx.rpc.msg.js +277 -0
- package/sparkdream/season/v1/vote_xp_record.d.ts +48 -0
- package/sparkdream/season/v1/vote_xp_record.js +86 -0
- package/sparkdream/session/module/v1/module.d.ts +54 -0
- package/sparkdream/session/module/v1/module.js +74 -0
- package/sparkdream/session/v1/genesis.d.ts +62 -0
- package/sparkdream/session/v1/genesis.js +91 -0
- package/sparkdream/session/v1/params.d.ts +168 -0
- package/sparkdream/session/v1/params.js +278 -0
- package/sparkdream/session/v1/query.d.ts +423 -0
- package/sparkdream/session/v1/query.js +746 -0
- package/sparkdream/session/v1/query.lcd.d.ts +13 -0
- package/sparkdream/session/v1/query.lcd.js +49 -0
- package/sparkdream/session/v1/query.rpc.Query.d.ts +32 -0
- package/sparkdream/session/v1/query.rpc.Query.js +65 -0
- package/sparkdream/session/v1/session.d.ts +125 -0
- package/sparkdream/session/v1/session.js +188 -0
- package/sparkdream/session/v1/tx.amino.d.ts +28 -0
- package/sparkdream/session/v1/tx.amino.js +32 -0
- package/sparkdream/session/v1/tx.d.ts +481 -0
- package/sparkdream/session/v1/tx.js +771 -0
- package/sparkdream/session/v1/tx.registry.d.ts +73 -0
- package/sparkdream/session/v1/tx.registry.js +109 -0
- package/sparkdream/session/v1/tx.rpc.msg.d.ts +31 -0
- package/sparkdream/session/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/module/v1/module.d.ts +54 -0
- package/sparkdream/shield/module/v1/module.js +74 -0
- package/sparkdream/shield/v1/genesis.d.ts +182 -0
- package/sparkdream/shield/v1/genesis.js +304 -0
- package/sparkdream/shield/v1/params.d.ts +192 -0
- package/sparkdream/shield/v1/params.js +285 -0
- package/sparkdream/shield/v1/query.d.ts +1406 -0
- package/sparkdream/shield/v1/query.js +2326 -0
- package/sparkdream/shield/v1/query.lcd.d.ts +25 -0
- package/sparkdream/shield/v1/query.lcd.js +114 -0
- package/sparkdream/shield/v1/query.rpc.Query.d.ts +80 -0
- package/sparkdream/shield/v1/query.rpc.Query.js +175 -0
- package/sparkdream/shield/v1/tx.amino.d.ts +28 -0
- package/sparkdream/shield/v1/tx.amino.js +32 -0
- package/sparkdream/shield/v1/tx.d.ts +542 -0
- package/sparkdream/shield/v1/tx.js +841 -0
- package/sparkdream/shield/v1/tx.registry.d.ts +73 -0
- package/sparkdream/shield/v1/tx.registry.js +109 -0
- package/sparkdream/shield/v1/tx.rpc.msg.d.ts +29 -0
- package/sparkdream/shield/v1/tx.rpc.msg.js +48 -0
- package/sparkdream/shield/v1/types.d.ts +1412 -0
- package/sparkdream/shield/v1/types.js +2398 -0
- 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/sparkdream/split/module/v1/module.d.ts +54 -0
- package/sparkdream/split/module/v1/module.js +74 -0
- package/sparkdream/split/v1/genesis.d.ts +56 -0
- package/sparkdream/split/v1/genesis.js +91 -0
- package/sparkdream/split/v1/params.d.ts +46 -0
- package/sparkdream/split/v1/params.js +68 -0
- package/sparkdream/split/v1/query.d.ts +275 -0
- package/sparkdream/split/v1/query.js +424 -0
- package/sparkdream/split/v1/query.lcd.d.ts +11 -0
- package/sparkdream/split/v1/query.lcd.js +35 -0
- package/sparkdream/split/v1/query.rpc.Query.d.ts +24 -0
- package/sparkdream/split/v1/query.rpc.Query.js +49 -0
- package/sparkdream/split/v1/share.d.ts +48 -0
- package/sparkdream/split/v1/share.js +86 -0
- package/sparkdream/split/v1/tx.amino.d.ts +8 -0
- package/sparkdream/split/v1/tx.amino.js +12 -0
- package/sparkdream/split/v1/tx.d.ts +108 -0
- package/sparkdream/split/v1/tx.js +151 -0
- package/sparkdream/split/v1/tx.registry.d.ts +25 -0
- package/sparkdream/split/v1/tx.registry.js +37 -0
- package/sparkdream/split/v1/tx.rpc.msg.d.ts +16 -0
- package/sparkdream/split/v1/tx.rpc.msg.js +23 -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 +20 -20
- 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/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/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -2,80 +2,144 @@ import { PageRequest, PageRequestAmino, PageResponse, PageResponseAmino } from "
|
|
|
2
2
|
import { Validator, ValidatorAmino, DelegationResponse, DelegationResponseAmino, UnbondingDelegation, UnbondingDelegationAmino, RedelegationResponse, RedelegationResponseAmino, HistoricalInfo, HistoricalInfoAmino, Pool, PoolAmino, Params, ParamsAmino } from "./staking";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
7
|
+
* @name QueryValidatorsRequest
|
|
8
|
+
* @package cosmos.staking.v1beta1
|
|
9
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
10
|
+
*/
|
|
6
11
|
export interface QueryValidatorsRequest {
|
|
7
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* status enables to query for validators matching a given status.
|
|
14
|
+
*/
|
|
8
15
|
status: string;
|
|
9
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* pagination defines an optional pagination for the request.
|
|
18
|
+
*/
|
|
10
19
|
pagination?: PageRequest;
|
|
11
20
|
}
|
|
12
21
|
export interface QueryValidatorsRequestProtoMsg {
|
|
13
22
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsRequest";
|
|
14
23
|
value: Uint8Array;
|
|
15
24
|
}
|
|
16
|
-
/**
|
|
25
|
+
/**
|
|
26
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
27
|
+
* @name QueryValidatorsRequestAmino
|
|
28
|
+
* @package cosmos.staking.v1beta1
|
|
29
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
30
|
+
*/
|
|
17
31
|
export interface QueryValidatorsRequestAmino {
|
|
18
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* status enables to query for validators matching a given status.
|
|
34
|
+
*/
|
|
19
35
|
status?: string;
|
|
20
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* pagination defines an optional pagination for the request.
|
|
38
|
+
*/
|
|
21
39
|
pagination?: PageRequestAmino;
|
|
22
40
|
}
|
|
23
41
|
export interface QueryValidatorsRequestAminoMsg {
|
|
24
42
|
type: "cosmos-sdk/QueryValidatorsRequest";
|
|
25
43
|
value: QueryValidatorsRequestAmino;
|
|
26
44
|
}
|
|
27
|
-
/**
|
|
45
|
+
/**
|
|
46
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
47
|
+
* @name QueryValidatorsResponse
|
|
48
|
+
* @package cosmos.staking.v1beta1
|
|
49
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
50
|
+
*/
|
|
28
51
|
export interface QueryValidatorsResponse {
|
|
29
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* validators contains all the queried validators.
|
|
54
|
+
*/
|
|
30
55
|
validators: Validator[];
|
|
31
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* pagination defines the pagination in the response.
|
|
58
|
+
*/
|
|
32
59
|
pagination?: PageResponse;
|
|
33
60
|
}
|
|
34
61
|
export interface QueryValidatorsResponseProtoMsg {
|
|
35
62
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorsResponse";
|
|
36
63
|
value: Uint8Array;
|
|
37
64
|
}
|
|
38
|
-
/**
|
|
65
|
+
/**
|
|
66
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
67
|
+
* @name QueryValidatorsResponseAmino
|
|
68
|
+
* @package cosmos.staking.v1beta1
|
|
69
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
70
|
+
*/
|
|
39
71
|
export interface QueryValidatorsResponseAmino {
|
|
40
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* validators contains all the queried validators.
|
|
74
|
+
*/
|
|
41
75
|
validators: ValidatorAmino[];
|
|
42
|
-
/**
|
|
76
|
+
/**
|
|
77
|
+
* pagination defines the pagination in the response.
|
|
78
|
+
*/
|
|
43
79
|
pagination?: PageResponseAmino;
|
|
44
80
|
}
|
|
45
81
|
export interface QueryValidatorsResponseAminoMsg {
|
|
46
82
|
type: "cosmos-sdk/QueryValidatorsResponse";
|
|
47
83
|
value: QueryValidatorsResponseAmino;
|
|
48
84
|
}
|
|
49
|
-
/**
|
|
85
|
+
/**
|
|
86
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
87
|
+
* @name QueryValidatorRequest
|
|
88
|
+
* @package cosmos.staking.v1beta1
|
|
89
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
90
|
+
*/
|
|
50
91
|
export interface QueryValidatorRequest {
|
|
51
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* validator_addr defines the validator address to query for.
|
|
94
|
+
*/
|
|
52
95
|
validatorAddr: string;
|
|
53
96
|
}
|
|
54
97
|
export interface QueryValidatorRequestProtoMsg {
|
|
55
98
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorRequest";
|
|
56
99
|
value: Uint8Array;
|
|
57
100
|
}
|
|
58
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
103
|
+
* @name QueryValidatorRequestAmino
|
|
104
|
+
* @package cosmos.staking.v1beta1
|
|
105
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
106
|
+
*/
|
|
59
107
|
export interface QueryValidatorRequestAmino {
|
|
60
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* validator_addr defines the validator address to query for.
|
|
110
|
+
*/
|
|
61
111
|
validator_addr?: string;
|
|
62
112
|
}
|
|
63
113
|
export interface QueryValidatorRequestAminoMsg {
|
|
64
114
|
type: "cosmos-sdk/QueryValidatorRequest";
|
|
65
115
|
value: QueryValidatorRequestAmino;
|
|
66
116
|
}
|
|
67
|
-
/**
|
|
117
|
+
/**
|
|
118
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
119
|
+
* @name QueryValidatorResponse
|
|
120
|
+
* @package cosmos.staking.v1beta1
|
|
121
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
122
|
+
*/
|
|
68
123
|
export interface QueryValidatorResponse {
|
|
69
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* validator defines the validator info.
|
|
126
|
+
*/
|
|
70
127
|
validator: Validator;
|
|
71
128
|
}
|
|
72
129
|
export interface QueryValidatorResponseProtoMsg {
|
|
73
130
|
typeUrl: "/cosmos.staking.v1beta1.QueryValidatorResponse";
|
|
74
131
|
value: Uint8Array;
|
|
75
132
|
}
|
|
76
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
135
|
+
* @name QueryValidatorResponseAmino
|
|
136
|
+
* @package cosmos.staking.v1beta1
|
|
137
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
138
|
+
*/
|
|
77
139
|
export interface QueryValidatorResponseAmino {
|
|
78
|
-
/**
|
|
140
|
+
/**
|
|
141
|
+
* validator defines the validator info.
|
|
142
|
+
*/
|
|
79
143
|
validator: ValidatorAmino;
|
|
80
144
|
}
|
|
81
145
|
export interface QueryValidatorResponseAminoMsg {
|
|
@@ -85,11 +149,18 @@ export interface QueryValidatorResponseAminoMsg {
|
|
|
85
149
|
/**
|
|
86
150
|
* QueryValidatorDelegationsRequest is request type for the
|
|
87
151
|
* Query/ValidatorDelegations RPC method
|
|
152
|
+
* @name QueryValidatorDelegationsRequest
|
|
153
|
+
* @package cosmos.staking.v1beta1
|
|
154
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
88
155
|
*/
|
|
89
156
|
export interface QueryValidatorDelegationsRequest {
|
|
90
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* validator_addr defines the validator address to query for.
|
|
159
|
+
*/
|
|
91
160
|
validatorAddr: string;
|
|
92
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* pagination defines an optional pagination for the request.
|
|
163
|
+
*/
|
|
93
164
|
pagination?: PageRequest;
|
|
94
165
|
}
|
|
95
166
|
export interface QueryValidatorDelegationsRequestProtoMsg {
|
|
@@ -99,11 +170,18 @@ export interface QueryValidatorDelegationsRequestProtoMsg {
|
|
|
99
170
|
/**
|
|
100
171
|
* QueryValidatorDelegationsRequest is request type for the
|
|
101
172
|
* Query/ValidatorDelegations RPC method
|
|
173
|
+
* @name QueryValidatorDelegationsRequestAmino
|
|
174
|
+
* @package cosmos.staking.v1beta1
|
|
175
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
102
176
|
*/
|
|
103
177
|
export interface QueryValidatorDelegationsRequestAmino {
|
|
104
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* validator_addr defines the validator address to query for.
|
|
180
|
+
*/
|
|
105
181
|
validator_addr?: string;
|
|
106
|
-
/**
|
|
182
|
+
/**
|
|
183
|
+
* pagination defines an optional pagination for the request.
|
|
184
|
+
*/
|
|
107
185
|
pagination?: PageRequestAmino;
|
|
108
186
|
}
|
|
109
187
|
export interface QueryValidatorDelegationsRequestAminoMsg {
|
|
@@ -113,10 +191,15 @@ export interface QueryValidatorDelegationsRequestAminoMsg {
|
|
|
113
191
|
/**
|
|
114
192
|
* QueryValidatorDelegationsResponse is response type for the
|
|
115
193
|
* Query/ValidatorDelegations RPC method
|
|
194
|
+
* @name QueryValidatorDelegationsResponse
|
|
195
|
+
* @package cosmos.staking.v1beta1
|
|
196
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
116
197
|
*/
|
|
117
198
|
export interface QueryValidatorDelegationsResponse {
|
|
118
199
|
delegationResponses: DelegationResponse[];
|
|
119
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* pagination defines the pagination in the response.
|
|
202
|
+
*/
|
|
120
203
|
pagination?: PageResponse;
|
|
121
204
|
}
|
|
122
205
|
export interface QueryValidatorDelegationsResponseProtoMsg {
|
|
@@ -126,10 +209,15 @@ export interface QueryValidatorDelegationsResponseProtoMsg {
|
|
|
126
209
|
/**
|
|
127
210
|
* QueryValidatorDelegationsResponse is response type for the
|
|
128
211
|
* Query/ValidatorDelegations RPC method
|
|
212
|
+
* @name QueryValidatorDelegationsResponseAmino
|
|
213
|
+
* @package cosmos.staking.v1beta1
|
|
214
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
129
215
|
*/
|
|
130
216
|
export interface QueryValidatorDelegationsResponseAmino {
|
|
131
217
|
delegation_responses: DelegationResponseAmino[];
|
|
132
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* pagination defines the pagination in the response.
|
|
220
|
+
*/
|
|
133
221
|
pagination?: PageResponseAmino;
|
|
134
222
|
}
|
|
135
223
|
export interface QueryValidatorDelegationsResponseAminoMsg {
|
|
@@ -139,11 +227,18 @@ export interface QueryValidatorDelegationsResponseAminoMsg {
|
|
|
139
227
|
/**
|
|
140
228
|
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
141
229
|
* Query/ValidatorUnbondingDelegations RPC method
|
|
230
|
+
* @name QueryValidatorUnbondingDelegationsRequest
|
|
231
|
+
* @package cosmos.staking.v1beta1
|
|
232
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
142
233
|
*/
|
|
143
234
|
export interface QueryValidatorUnbondingDelegationsRequest {
|
|
144
|
-
/**
|
|
235
|
+
/**
|
|
236
|
+
* validator_addr defines the validator address to query for.
|
|
237
|
+
*/
|
|
145
238
|
validatorAddr: string;
|
|
146
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* pagination defines an optional pagination for the request.
|
|
241
|
+
*/
|
|
147
242
|
pagination?: PageRequest;
|
|
148
243
|
}
|
|
149
244
|
export interface QueryValidatorUnbondingDelegationsRequestProtoMsg {
|
|
@@ -153,11 +248,18 @@ export interface QueryValidatorUnbondingDelegationsRequestProtoMsg {
|
|
|
153
248
|
/**
|
|
154
249
|
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
155
250
|
* Query/ValidatorUnbondingDelegations RPC method
|
|
251
|
+
* @name QueryValidatorUnbondingDelegationsRequestAmino
|
|
252
|
+
* @package cosmos.staking.v1beta1
|
|
253
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
156
254
|
*/
|
|
157
255
|
export interface QueryValidatorUnbondingDelegationsRequestAmino {
|
|
158
|
-
/**
|
|
256
|
+
/**
|
|
257
|
+
* validator_addr defines the validator address to query for.
|
|
258
|
+
*/
|
|
159
259
|
validator_addr?: string;
|
|
160
|
-
/**
|
|
260
|
+
/**
|
|
261
|
+
* pagination defines an optional pagination for the request.
|
|
262
|
+
*/
|
|
161
263
|
pagination?: PageRequestAmino;
|
|
162
264
|
}
|
|
163
265
|
export interface QueryValidatorUnbondingDelegationsRequestAminoMsg {
|
|
@@ -167,10 +269,15 @@ export interface QueryValidatorUnbondingDelegationsRequestAminoMsg {
|
|
|
167
269
|
/**
|
|
168
270
|
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
169
271
|
* Query/ValidatorUnbondingDelegations RPC method.
|
|
272
|
+
* @name QueryValidatorUnbondingDelegationsResponse
|
|
273
|
+
* @package cosmos.staking.v1beta1
|
|
274
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
170
275
|
*/
|
|
171
276
|
export interface QueryValidatorUnbondingDelegationsResponse {
|
|
172
277
|
unbondingResponses: UnbondingDelegation[];
|
|
173
|
-
/**
|
|
278
|
+
/**
|
|
279
|
+
* pagination defines the pagination in the response.
|
|
280
|
+
*/
|
|
174
281
|
pagination?: PageResponse;
|
|
175
282
|
}
|
|
176
283
|
export interface QueryValidatorUnbondingDelegationsResponseProtoMsg {
|
|
@@ -180,50 +287,87 @@ export interface QueryValidatorUnbondingDelegationsResponseProtoMsg {
|
|
|
180
287
|
/**
|
|
181
288
|
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
182
289
|
* Query/ValidatorUnbondingDelegations RPC method.
|
|
290
|
+
* @name QueryValidatorUnbondingDelegationsResponseAmino
|
|
291
|
+
* @package cosmos.staking.v1beta1
|
|
292
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
183
293
|
*/
|
|
184
294
|
export interface QueryValidatorUnbondingDelegationsResponseAmino {
|
|
185
295
|
unbonding_responses: UnbondingDelegationAmino[];
|
|
186
|
-
/**
|
|
296
|
+
/**
|
|
297
|
+
* pagination defines the pagination in the response.
|
|
298
|
+
*/
|
|
187
299
|
pagination?: PageResponseAmino;
|
|
188
300
|
}
|
|
189
301
|
export interface QueryValidatorUnbondingDelegationsResponseAminoMsg {
|
|
190
302
|
type: "cosmos-sdk/QueryValidatorUnbondingDelegationsResponse";
|
|
191
303
|
value: QueryValidatorUnbondingDelegationsResponseAmino;
|
|
192
304
|
}
|
|
193
|
-
/**
|
|
305
|
+
/**
|
|
306
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
307
|
+
* @name QueryDelegationRequest
|
|
308
|
+
* @package cosmos.staking.v1beta1
|
|
309
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
310
|
+
*/
|
|
194
311
|
export interface QueryDelegationRequest {
|
|
195
|
-
/**
|
|
312
|
+
/**
|
|
313
|
+
* delegator_addr defines the delegator address to query for.
|
|
314
|
+
*/
|
|
196
315
|
delegatorAddr: string;
|
|
197
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* validator_addr defines the validator address to query for.
|
|
318
|
+
*/
|
|
198
319
|
validatorAddr: string;
|
|
199
320
|
}
|
|
200
321
|
export interface QueryDelegationRequestProtoMsg {
|
|
201
322
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationRequest";
|
|
202
323
|
value: Uint8Array;
|
|
203
324
|
}
|
|
204
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
327
|
+
* @name QueryDelegationRequestAmino
|
|
328
|
+
* @package cosmos.staking.v1beta1
|
|
329
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
330
|
+
*/
|
|
205
331
|
export interface QueryDelegationRequestAmino {
|
|
206
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* delegator_addr defines the delegator address to query for.
|
|
334
|
+
*/
|
|
207
335
|
delegator_addr?: string;
|
|
208
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* validator_addr defines the validator address to query for.
|
|
338
|
+
*/
|
|
209
339
|
validator_addr?: string;
|
|
210
340
|
}
|
|
211
341
|
export interface QueryDelegationRequestAminoMsg {
|
|
212
342
|
type: "cosmos-sdk/QueryDelegationRequest";
|
|
213
343
|
value: QueryDelegationRequestAmino;
|
|
214
344
|
}
|
|
215
|
-
/**
|
|
345
|
+
/**
|
|
346
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
347
|
+
* @name QueryDelegationResponse
|
|
348
|
+
* @package cosmos.staking.v1beta1
|
|
349
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
350
|
+
*/
|
|
216
351
|
export interface QueryDelegationResponse {
|
|
217
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* delegation_responses defines the delegation info of a delegation.
|
|
354
|
+
*/
|
|
218
355
|
delegationResponse?: DelegationResponse;
|
|
219
356
|
}
|
|
220
357
|
export interface QueryDelegationResponseProtoMsg {
|
|
221
358
|
typeUrl: "/cosmos.staking.v1beta1.QueryDelegationResponse";
|
|
222
359
|
value: Uint8Array;
|
|
223
360
|
}
|
|
224
|
-
/**
|
|
361
|
+
/**
|
|
362
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
363
|
+
* @name QueryDelegationResponseAmino
|
|
364
|
+
* @package cosmos.staking.v1beta1
|
|
365
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
366
|
+
*/
|
|
225
367
|
export interface QueryDelegationResponseAmino {
|
|
226
|
-
/**
|
|
368
|
+
/**
|
|
369
|
+
* delegation_responses defines the delegation info of a delegation.
|
|
370
|
+
*/
|
|
227
371
|
delegation_response?: DelegationResponseAmino;
|
|
228
372
|
}
|
|
229
373
|
export interface QueryDelegationResponseAminoMsg {
|
|
@@ -233,11 +377,18 @@ export interface QueryDelegationResponseAminoMsg {
|
|
|
233
377
|
/**
|
|
234
378
|
* QueryUnbondingDelegationRequest is request type for the
|
|
235
379
|
* Query/UnbondingDelegation RPC method.
|
|
380
|
+
* @name QueryUnbondingDelegationRequest
|
|
381
|
+
* @package cosmos.staking.v1beta1
|
|
382
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
236
383
|
*/
|
|
237
384
|
export interface QueryUnbondingDelegationRequest {
|
|
238
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* delegator_addr defines the delegator address to query for.
|
|
387
|
+
*/
|
|
239
388
|
delegatorAddr: string;
|
|
240
|
-
/**
|
|
389
|
+
/**
|
|
390
|
+
* validator_addr defines the validator address to query for.
|
|
391
|
+
*/
|
|
241
392
|
validatorAddr: string;
|
|
242
393
|
}
|
|
243
394
|
export interface QueryUnbondingDelegationRequestProtoMsg {
|
|
@@ -247,11 +398,18 @@ export interface QueryUnbondingDelegationRequestProtoMsg {
|
|
|
247
398
|
/**
|
|
248
399
|
* QueryUnbondingDelegationRequest is request type for the
|
|
249
400
|
* Query/UnbondingDelegation RPC method.
|
|
401
|
+
* @name QueryUnbondingDelegationRequestAmino
|
|
402
|
+
* @package cosmos.staking.v1beta1
|
|
403
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
250
404
|
*/
|
|
251
405
|
export interface QueryUnbondingDelegationRequestAmino {
|
|
252
|
-
/**
|
|
406
|
+
/**
|
|
407
|
+
* delegator_addr defines the delegator address to query for.
|
|
408
|
+
*/
|
|
253
409
|
delegator_addr?: string;
|
|
254
|
-
/**
|
|
410
|
+
/**
|
|
411
|
+
* validator_addr defines the validator address to query for.
|
|
412
|
+
*/
|
|
255
413
|
validator_addr?: string;
|
|
256
414
|
}
|
|
257
415
|
export interface QueryUnbondingDelegationRequestAminoMsg {
|
|
@@ -261,9 +419,14 @@ export interface QueryUnbondingDelegationRequestAminoMsg {
|
|
|
261
419
|
/**
|
|
262
420
|
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
263
421
|
* RPC method.
|
|
422
|
+
* @name QueryUnbondingDelegationResponse
|
|
423
|
+
* @package cosmos.staking.v1beta1
|
|
424
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
264
425
|
*/
|
|
265
426
|
export interface QueryUnbondingDelegationResponse {
|
|
266
|
-
/**
|
|
427
|
+
/**
|
|
428
|
+
* unbond defines the unbonding information of a delegation.
|
|
429
|
+
*/
|
|
267
430
|
unbond: UnbondingDelegation;
|
|
268
431
|
}
|
|
269
432
|
export interface QueryUnbondingDelegationResponseProtoMsg {
|
|
@@ -273,9 +436,14 @@ export interface QueryUnbondingDelegationResponseProtoMsg {
|
|
|
273
436
|
/**
|
|
274
437
|
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
275
438
|
* RPC method.
|
|
439
|
+
* @name QueryUnbondingDelegationResponseAmino
|
|
440
|
+
* @package cosmos.staking.v1beta1
|
|
441
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
276
442
|
*/
|
|
277
443
|
export interface QueryUnbondingDelegationResponseAmino {
|
|
278
|
-
/**
|
|
444
|
+
/**
|
|
445
|
+
* unbond defines the unbonding information of a delegation.
|
|
446
|
+
*/
|
|
279
447
|
unbond: UnbondingDelegationAmino;
|
|
280
448
|
}
|
|
281
449
|
export interface QueryUnbondingDelegationResponseAminoMsg {
|
|
@@ -285,11 +453,18 @@ export interface QueryUnbondingDelegationResponseAminoMsg {
|
|
|
285
453
|
/**
|
|
286
454
|
* QueryDelegatorDelegationsRequest is request type for the
|
|
287
455
|
* Query/DelegatorDelegations RPC method.
|
|
456
|
+
* @name QueryDelegatorDelegationsRequest
|
|
457
|
+
* @package cosmos.staking.v1beta1
|
|
458
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
288
459
|
*/
|
|
289
460
|
export interface QueryDelegatorDelegationsRequest {
|
|
290
|
-
/**
|
|
461
|
+
/**
|
|
462
|
+
* delegator_addr defines the delegator address to query for.
|
|
463
|
+
*/
|
|
291
464
|
delegatorAddr: string;
|
|
292
|
-
/**
|
|
465
|
+
/**
|
|
466
|
+
* pagination defines an optional pagination for the request.
|
|
467
|
+
*/
|
|
293
468
|
pagination?: PageRequest;
|
|
294
469
|
}
|
|
295
470
|
export interface QueryDelegatorDelegationsRequestProtoMsg {
|
|
@@ -299,11 +474,18 @@ export interface QueryDelegatorDelegationsRequestProtoMsg {
|
|
|
299
474
|
/**
|
|
300
475
|
* QueryDelegatorDelegationsRequest is request type for the
|
|
301
476
|
* Query/DelegatorDelegations RPC method.
|
|
477
|
+
* @name QueryDelegatorDelegationsRequestAmino
|
|
478
|
+
* @package cosmos.staking.v1beta1
|
|
479
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
302
480
|
*/
|
|
303
481
|
export interface QueryDelegatorDelegationsRequestAmino {
|
|
304
|
-
/**
|
|
482
|
+
/**
|
|
483
|
+
* delegator_addr defines the delegator address to query for.
|
|
484
|
+
*/
|
|
305
485
|
delegator_addr?: string;
|
|
306
|
-
/**
|
|
486
|
+
/**
|
|
487
|
+
* pagination defines an optional pagination for the request.
|
|
488
|
+
*/
|
|
307
489
|
pagination?: PageRequestAmino;
|
|
308
490
|
}
|
|
309
491
|
export interface QueryDelegatorDelegationsRequestAminoMsg {
|
|
@@ -313,11 +495,18 @@ export interface QueryDelegatorDelegationsRequestAminoMsg {
|
|
|
313
495
|
/**
|
|
314
496
|
* QueryDelegatorDelegationsResponse is response type for the
|
|
315
497
|
* Query/DelegatorDelegations RPC method.
|
|
498
|
+
* @name QueryDelegatorDelegationsResponse
|
|
499
|
+
* @package cosmos.staking.v1beta1
|
|
500
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
316
501
|
*/
|
|
317
502
|
export interface QueryDelegatorDelegationsResponse {
|
|
318
|
-
/**
|
|
503
|
+
/**
|
|
504
|
+
* delegation_responses defines all the delegations' info of a delegator.
|
|
505
|
+
*/
|
|
319
506
|
delegationResponses: DelegationResponse[];
|
|
320
|
-
/**
|
|
507
|
+
/**
|
|
508
|
+
* pagination defines the pagination in the response.
|
|
509
|
+
*/
|
|
321
510
|
pagination?: PageResponse;
|
|
322
511
|
}
|
|
323
512
|
export interface QueryDelegatorDelegationsResponseProtoMsg {
|
|
@@ -327,11 +516,18 @@ export interface QueryDelegatorDelegationsResponseProtoMsg {
|
|
|
327
516
|
/**
|
|
328
517
|
* QueryDelegatorDelegationsResponse is response type for the
|
|
329
518
|
* Query/DelegatorDelegations RPC method.
|
|
519
|
+
* @name QueryDelegatorDelegationsResponseAmino
|
|
520
|
+
* @package cosmos.staking.v1beta1
|
|
521
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
330
522
|
*/
|
|
331
523
|
export interface QueryDelegatorDelegationsResponseAmino {
|
|
332
|
-
/**
|
|
524
|
+
/**
|
|
525
|
+
* delegation_responses defines all the delegations' info of a delegator.
|
|
526
|
+
*/
|
|
333
527
|
delegation_responses: DelegationResponseAmino[];
|
|
334
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* pagination defines the pagination in the response.
|
|
530
|
+
*/
|
|
335
531
|
pagination?: PageResponseAmino;
|
|
336
532
|
}
|
|
337
533
|
export interface QueryDelegatorDelegationsResponseAminoMsg {
|
|
@@ -341,11 +537,18 @@ export interface QueryDelegatorDelegationsResponseAminoMsg {
|
|
|
341
537
|
/**
|
|
342
538
|
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
343
539
|
* Query/DelegatorUnbondingDelegations RPC method.
|
|
540
|
+
* @name QueryDelegatorUnbondingDelegationsRequest
|
|
541
|
+
* @package cosmos.staking.v1beta1
|
|
542
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
344
543
|
*/
|
|
345
544
|
export interface QueryDelegatorUnbondingDelegationsRequest {
|
|
346
|
-
/**
|
|
545
|
+
/**
|
|
546
|
+
* delegator_addr defines the delegator address to query for.
|
|
547
|
+
*/
|
|
347
548
|
delegatorAddr: string;
|
|
348
|
-
/**
|
|
549
|
+
/**
|
|
550
|
+
* pagination defines an optional pagination for the request.
|
|
551
|
+
*/
|
|
349
552
|
pagination?: PageRequest;
|
|
350
553
|
}
|
|
351
554
|
export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg {
|
|
@@ -355,11 +558,18 @@ export interface QueryDelegatorUnbondingDelegationsRequestProtoMsg {
|
|
|
355
558
|
/**
|
|
356
559
|
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
357
560
|
* Query/DelegatorUnbondingDelegations RPC method.
|
|
561
|
+
* @name QueryDelegatorUnbondingDelegationsRequestAmino
|
|
562
|
+
* @package cosmos.staking.v1beta1
|
|
563
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
358
564
|
*/
|
|
359
565
|
export interface QueryDelegatorUnbondingDelegationsRequestAmino {
|
|
360
|
-
/**
|
|
566
|
+
/**
|
|
567
|
+
* delegator_addr defines the delegator address to query for.
|
|
568
|
+
*/
|
|
361
569
|
delegator_addr?: string;
|
|
362
|
-
/**
|
|
570
|
+
/**
|
|
571
|
+
* pagination defines an optional pagination for the request.
|
|
572
|
+
*/
|
|
363
573
|
pagination?: PageRequestAmino;
|
|
364
574
|
}
|
|
365
575
|
export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg {
|
|
@@ -369,10 +579,15 @@ export interface QueryDelegatorUnbondingDelegationsRequestAminoMsg {
|
|
|
369
579
|
/**
|
|
370
580
|
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
371
581
|
* Query/UnbondingDelegatorDelegations RPC method.
|
|
582
|
+
* @name QueryDelegatorUnbondingDelegationsResponse
|
|
583
|
+
* @package cosmos.staking.v1beta1
|
|
584
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
372
585
|
*/
|
|
373
586
|
export interface QueryDelegatorUnbondingDelegationsResponse {
|
|
374
587
|
unbondingResponses: UnbondingDelegation[];
|
|
375
|
-
/**
|
|
588
|
+
/**
|
|
589
|
+
* pagination defines the pagination in the response.
|
|
590
|
+
*/
|
|
376
591
|
pagination?: PageResponse;
|
|
377
592
|
}
|
|
378
593
|
export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg {
|
|
@@ -382,10 +597,15 @@ export interface QueryDelegatorUnbondingDelegationsResponseProtoMsg {
|
|
|
382
597
|
/**
|
|
383
598
|
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
384
599
|
* Query/UnbondingDelegatorDelegations RPC method.
|
|
600
|
+
* @name QueryDelegatorUnbondingDelegationsResponseAmino
|
|
601
|
+
* @package cosmos.staking.v1beta1
|
|
602
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
385
603
|
*/
|
|
386
604
|
export interface QueryDelegatorUnbondingDelegationsResponseAmino {
|
|
387
605
|
unbonding_responses: UnbondingDelegationAmino[];
|
|
388
|
-
/**
|
|
606
|
+
/**
|
|
607
|
+
* pagination defines the pagination in the response.
|
|
608
|
+
*/
|
|
389
609
|
pagination?: PageResponseAmino;
|
|
390
610
|
}
|
|
391
611
|
export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg {
|
|
@@ -395,15 +615,26 @@ export interface QueryDelegatorUnbondingDelegationsResponseAminoMsg {
|
|
|
395
615
|
/**
|
|
396
616
|
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
397
617
|
* method.
|
|
618
|
+
* @name QueryRedelegationsRequest
|
|
619
|
+
* @package cosmos.staking.v1beta1
|
|
620
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
398
621
|
*/
|
|
399
622
|
export interface QueryRedelegationsRequest {
|
|
400
|
-
/**
|
|
623
|
+
/**
|
|
624
|
+
* delegator_addr defines the delegator address to query for.
|
|
625
|
+
*/
|
|
401
626
|
delegatorAddr: string;
|
|
402
|
-
/**
|
|
627
|
+
/**
|
|
628
|
+
* src_validator_addr defines the validator address to redelegate from.
|
|
629
|
+
*/
|
|
403
630
|
srcValidatorAddr: string;
|
|
404
|
-
/**
|
|
631
|
+
/**
|
|
632
|
+
* dst_validator_addr defines the validator address to redelegate to.
|
|
633
|
+
*/
|
|
405
634
|
dstValidatorAddr: string;
|
|
406
|
-
/**
|
|
635
|
+
/**
|
|
636
|
+
* pagination defines an optional pagination for the request.
|
|
637
|
+
*/
|
|
407
638
|
pagination?: PageRequest;
|
|
408
639
|
}
|
|
409
640
|
export interface QueryRedelegationsRequestProtoMsg {
|
|
@@ -413,15 +644,26 @@ export interface QueryRedelegationsRequestProtoMsg {
|
|
|
413
644
|
/**
|
|
414
645
|
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
415
646
|
* method.
|
|
647
|
+
* @name QueryRedelegationsRequestAmino
|
|
648
|
+
* @package cosmos.staking.v1beta1
|
|
649
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
416
650
|
*/
|
|
417
651
|
export interface QueryRedelegationsRequestAmino {
|
|
418
|
-
/**
|
|
652
|
+
/**
|
|
653
|
+
* delegator_addr defines the delegator address to query for.
|
|
654
|
+
*/
|
|
419
655
|
delegator_addr?: string;
|
|
420
|
-
/**
|
|
656
|
+
/**
|
|
657
|
+
* src_validator_addr defines the validator address to redelegate from.
|
|
658
|
+
*/
|
|
421
659
|
src_validator_addr?: string;
|
|
422
|
-
/**
|
|
660
|
+
/**
|
|
661
|
+
* dst_validator_addr defines the validator address to redelegate to.
|
|
662
|
+
*/
|
|
423
663
|
dst_validator_addr?: string;
|
|
424
|
-
/**
|
|
664
|
+
/**
|
|
665
|
+
* pagination defines an optional pagination for the request.
|
|
666
|
+
*/
|
|
425
667
|
pagination?: PageRequestAmino;
|
|
426
668
|
}
|
|
427
669
|
export interface QueryRedelegationsRequestAminoMsg {
|
|
@@ -431,10 +673,15 @@ export interface QueryRedelegationsRequestAminoMsg {
|
|
|
431
673
|
/**
|
|
432
674
|
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
433
675
|
* method.
|
|
676
|
+
* @name QueryRedelegationsResponse
|
|
677
|
+
* @package cosmos.staking.v1beta1
|
|
678
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
434
679
|
*/
|
|
435
680
|
export interface QueryRedelegationsResponse {
|
|
436
681
|
redelegationResponses: RedelegationResponse[];
|
|
437
|
-
/**
|
|
682
|
+
/**
|
|
683
|
+
* pagination defines the pagination in the response.
|
|
684
|
+
*/
|
|
438
685
|
pagination?: PageResponse;
|
|
439
686
|
}
|
|
440
687
|
export interface QueryRedelegationsResponseProtoMsg {
|
|
@@ -444,10 +691,15 @@ export interface QueryRedelegationsResponseProtoMsg {
|
|
|
444
691
|
/**
|
|
445
692
|
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
446
693
|
* method.
|
|
694
|
+
* @name QueryRedelegationsResponseAmino
|
|
695
|
+
* @package cosmos.staking.v1beta1
|
|
696
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
447
697
|
*/
|
|
448
698
|
export interface QueryRedelegationsResponseAmino {
|
|
449
699
|
redelegation_responses: RedelegationResponseAmino[];
|
|
450
|
-
/**
|
|
700
|
+
/**
|
|
701
|
+
* pagination defines the pagination in the response.
|
|
702
|
+
*/
|
|
451
703
|
pagination?: PageResponseAmino;
|
|
452
704
|
}
|
|
453
705
|
export interface QueryRedelegationsResponseAminoMsg {
|
|
@@ -457,11 +709,18 @@ export interface QueryRedelegationsResponseAminoMsg {
|
|
|
457
709
|
/**
|
|
458
710
|
* QueryDelegatorValidatorsRequest is request type for the
|
|
459
711
|
* Query/DelegatorValidators RPC method.
|
|
712
|
+
* @name QueryDelegatorValidatorsRequest
|
|
713
|
+
* @package cosmos.staking.v1beta1
|
|
714
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
460
715
|
*/
|
|
461
716
|
export interface QueryDelegatorValidatorsRequest {
|
|
462
|
-
/**
|
|
717
|
+
/**
|
|
718
|
+
* delegator_addr defines the delegator address to query for.
|
|
719
|
+
*/
|
|
463
720
|
delegatorAddr: string;
|
|
464
|
-
/**
|
|
721
|
+
/**
|
|
722
|
+
* pagination defines an optional pagination for the request.
|
|
723
|
+
*/
|
|
465
724
|
pagination?: PageRequest;
|
|
466
725
|
}
|
|
467
726
|
export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
@@ -471,11 +730,18 @@ export interface QueryDelegatorValidatorsRequestProtoMsg {
|
|
|
471
730
|
/**
|
|
472
731
|
* QueryDelegatorValidatorsRequest is request type for the
|
|
473
732
|
* Query/DelegatorValidators RPC method.
|
|
733
|
+
* @name QueryDelegatorValidatorsRequestAmino
|
|
734
|
+
* @package cosmos.staking.v1beta1
|
|
735
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
474
736
|
*/
|
|
475
737
|
export interface QueryDelegatorValidatorsRequestAmino {
|
|
476
|
-
/**
|
|
738
|
+
/**
|
|
739
|
+
* delegator_addr defines the delegator address to query for.
|
|
740
|
+
*/
|
|
477
741
|
delegator_addr?: string;
|
|
478
|
-
/**
|
|
742
|
+
/**
|
|
743
|
+
* pagination defines an optional pagination for the request.
|
|
744
|
+
*/
|
|
479
745
|
pagination?: PageRequestAmino;
|
|
480
746
|
}
|
|
481
747
|
export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
@@ -485,11 +751,18 @@ export interface QueryDelegatorValidatorsRequestAminoMsg {
|
|
|
485
751
|
/**
|
|
486
752
|
* QueryDelegatorValidatorsResponse is response type for the
|
|
487
753
|
* Query/DelegatorValidators RPC method.
|
|
754
|
+
* @name QueryDelegatorValidatorsResponse
|
|
755
|
+
* @package cosmos.staking.v1beta1
|
|
756
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
488
757
|
*/
|
|
489
758
|
export interface QueryDelegatorValidatorsResponse {
|
|
490
|
-
/**
|
|
759
|
+
/**
|
|
760
|
+
* validators defines the validators' info of a delegator.
|
|
761
|
+
*/
|
|
491
762
|
validators: Validator[];
|
|
492
|
-
/**
|
|
763
|
+
/**
|
|
764
|
+
* pagination defines the pagination in the response.
|
|
765
|
+
*/
|
|
493
766
|
pagination?: PageResponse;
|
|
494
767
|
}
|
|
495
768
|
export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
@@ -499,11 +772,18 @@ export interface QueryDelegatorValidatorsResponseProtoMsg {
|
|
|
499
772
|
/**
|
|
500
773
|
* QueryDelegatorValidatorsResponse is response type for the
|
|
501
774
|
* Query/DelegatorValidators RPC method.
|
|
775
|
+
* @name QueryDelegatorValidatorsResponseAmino
|
|
776
|
+
* @package cosmos.staking.v1beta1
|
|
777
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
502
778
|
*/
|
|
503
779
|
export interface QueryDelegatorValidatorsResponseAmino {
|
|
504
|
-
/**
|
|
780
|
+
/**
|
|
781
|
+
* validators defines the validators' info of a delegator.
|
|
782
|
+
*/
|
|
505
783
|
validators: ValidatorAmino[];
|
|
506
|
-
/**
|
|
784
|
+
/**
|
|
785
|
+
* pagination defines the pagination in the response.
|
|
786
|
+
*/
|
|
507
787
|
pagination?: PageResponseAmino;
|
|
508
788
|
}
|
|
509
789
|
export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
@@ -513,11 +793,18 @@ export interface QueryDelegatorValidatorsResponseAminoMsg {
|
|
|
513
793
|
/**
|
|
514
794
|
* QueryDelegatorValidatorRequest is request type for the
|
|
515
795
|
* Query/DelegatorValidator RPC method.
|
|
796
|
+
* @name QueryDelegatorValidatorRequest
|
|
797
|
+
* @package cosmos.staking.v1beta1
|
|
798
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
516
799
|
*/
|
|
517
800
|
export interface QueryDelegatorValidatorRequest {
|
|
518
|
-
/**
|
|
801
|
+
/**
|
|
802
|
+
* delegator_addr defines the delegator address to query for.
|
|
803
|
+
*/
|
|
519
804
|
delegatorAddr: string;
|
|
520
|
-
/**
|
|
805
|
+
/**
|
|
806
|
+
* validator_addr defines the validator address to query for.
|
|
807
|
+
*/
|
|
521
808
|
validatorAddr: string;
|
|
522
809
|
}
|
|
523
810
|
export interface QueryDelegatorValidatorRequestProtoMsg {
|
|
@@ -527,11 +814,18 @@ export interface QueryDelegatorValidatorRequestProtoMsg {
|
|
|
527
814
|
/**
|
|
528
815
|
* QueryDelegatorValidatorRequest is request type for the
|
|
529
816
|
* Query/DelegatorValidator RPC method.
|
|
817
|
+
* @name QueryDelegatorValidatorRequestAmino
|
|
818
|
+
* @package cosmos.staking.v1beta1
|
|
819
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
530
820
|
*/
|
|
531
821
|
export interface QueryDelegatorValidatorRequestAmino {
|
|
532
|
-
/**
|
|
822
|
+
/**
|
|
823
|
+
* delegator_addr defines the delegator address to query for.
|
|
824
|
+
*/
|
|
533
825
|
delegator_addr?: string;
|
|
534
|
-
/**
|
|
826
|
+
/**
|
|
827
|
+
* validator_addr defines the validator address to query for.
|
|
828
|
+
*/
|
|
535
829
|
validator_addr?: string;
|
|
536
830
|
}
|
|
537
831
|
export interface QueryDelegatorValidatorRequestAminoMsg {
|
|
@@ -541,9 +835,14 @@ export interface QueryDelegatorValidatorRequestAminoMsg {
|
|
|
541
835
|
/**
|
|
542
836
|
* QueryDelegatorValidatorResponse response type for the
|
|
543
837
|
* Query/DelegatorValidator RPC method.
|
|
838
|
+
* @name QueryDelegatorValidatorResponse
|
|
839
|
+
* @package cosmos.staking.v1beta1
|
|
840
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
544
841
|
*/
|
|
545
842
|
export interface QueryDelegatorValidatorResponse {
|
|
546
|
-
/**
|
|
843
|
+
/**
|
|
844
|
+
* validator defines the validator info.
|
|
845
|
+
*/
|
|
547
846
|
validator: Validator;
|
|
548
847
|
}
|
|
549
848
|
export interface QueryDelegatorValidatorResponseProtoMsg {
|
|
@@ -553,9 +852,14 @@ export interface QueryDelegatorValidatorResponseProtoMsg {
|
|
|
553
852
|
/**
|
|
554
853
|
* QueryDelegatorValidatorResponse response type for the
|
|
555
854
|
* Query/DelegatorValidator RPC method.
|
|
855
|
+
* @name QueryDelegatorValidatorResponseAmino
|
|
856
|
+
* @package cosmos.staking.v1beta1
|
|
857
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
556
858
|
*/
|
|
557
859
|
export interface QueryDelegatorValidatorResponseAmino {
|
|
558
|
-
/**
|
|
860
|
+
/**
|
|
861
|
+
* validator defines the validator info.
|
|
862
|
+
*/
|
|
559
863
|
validator: ValidatorAmino;
|
|
560
864
|
}
|
|
561
865
|
export interface QueryDelegatorValidatorResponseAminoMsg {
|
|
@@ -565,9 +869,14 @@ export interface QueryDelegatorValidatorResponseAminoMsg {
|
|
|
565
869
|
/**
|
|
566
870
|
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
567
871
|
* method.
|
|
872
|
+
* @name QueryHistoricalInfoRequest
|
|
873
|
+
* @package cosmos.staking.v1beta1
|
|
874
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
568
875
|
*/
|
|
569
876
|
export interface QueryHistoricalInfoRequest {
|
|
570
|
-
/**
|
|
877
|
+
/**
|
|
878
|
+
* height defines at which height to query the historical info.
|
|
879
|
+
*/
|
|
571
880
|
height: bigint;
|
|
572
881
|
}
|
|
573
882
|
export interface QueryHistoricalInfoRequestProtoMsg {
|
|
@@ -577,9 +886,14 @@ export interface QueryHistoricalInfoRequestProtoMsg {
|
|
|
577
886
|
/**
|
|
578
887
|
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
579
888
|
* method.
|
|
889
|
+
* @name QueryHistoricalInfoRequestAmino
|
|
890
|
+
* @package cosmos.staking.v1beta1
|
|
891
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
580
892
|
*/
|
|
581
893
|
export interface QueryHistoricalInfoRequestAmino {
|
|
582
|
-
/**
|
|
894
|
+
/**
|
|
895
|
+
* height defines at which height to query the historical info.
|
|
896
|
+
*/
|
|
583
897
|
height?: string;
|
|
584
898
|
}
|
|
585
899
|
export interface QueryHistoricalInfoRequestAminoMsg {
|
|
@@ -589,9 +903,14 @@ export interface QueryHistoricalInfoRequestAminoMsg {
|
|
|
589
903
|
/**
|
|
590
904
|
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
591
905
|
* method.
|
|
906
|
+
* @name QueryHistoricalInfoResponse
|
|
907
|
+
* @package cosmos.staking.v1beta1
|
|
908
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
592
909
|
*/
|
|
593
910
|
export interface QueryHistoricalInfoResponse {
|
|
594
|
-
/**
|
|
911
|
+
/**
|
|
912
|
+
* hist defines the historical info at the given height.
|
|
913
|
+
*/
|
|
595
914
|
hist?: HistoricalInfo;
|
|
596
915
|
}
|
|
597
916
|
export interface QueryHistoricalInfoResponseProtoMsg {
|
|
@@ -601,79 +920,138 @@ export interface QueryHistoricalInfoResponseProtoMsg {
|
|
|
601
920
|
/**
|
|
602
921
|
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
603
922
|
* method.
|
|
923
|
+
* @name QueryHistoricalInfoResponseAmino
|
|
924
|
+
* @package cosmos.staking.v1beta1
|
|
925
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
604
926
|
*/
|
|
605
927
|
export interface QueryHistoricalInfoResponseAmino {
|
|
606
|
-
/**
|
|
928
|
+
/**
|
|
929
|
+
* hist defines the historical info at the given height.
|
|
930
|
+
*/
|
|
607
931
|
hist?: HistoricalInfoAmino;
|
|
608
932
|
}
|
|
609
933
|
export interface QueryHistoricalInfoResponseAminoMsg {
|
|
610
934
|
type: "cosmos-sdk/QueryHistoricalInfoResponse";
|
|
611
935
|
value: QueryHistoricalInfoResponseAmino;
|
|
612
936
|
}
|
|
613
|
-
/**
|
|
937
|
+
/**
|
|
938
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
939
|
+
* @name QueryPoolRequest
|
|
940
|
+
* @package cosmos.staking.v1beta1
|
|
941
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
942
|
+
*/
|
|
614
943
|
export interface QueryPoolRequest {
|
|
615
944
|
}
|
|
616
945
|
export interface QueryPoolRequestProtoMsg {
|
|
617
946
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolRequest";
|
|
618
947
|
value: Uint8Array;
|
|
619
948
|
}
|
|
620
|
-
/**
|
|
949
|
+
/**
|
|
950
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
951
|
+
* @name QueryPoolRequestAmino
|
|
952
|
+
* @package cosmos.staking.v1beta1
|
|
953
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
954
|
+
*/
|
|
621
955
|
export interface QueryPoolRequestAmino {
|
|
622
956
|
}
|
|
623
957
|
export interface QueryPoolRequestAminoMsg {
|
|
624
958
|
type: "cosmos-sdk/QueryPoolRequest";
|
|
625
959
|
value: QueryPoolRequestAmino;
|
|
626
960
|
}
|
|
627
|
-
/**
|
|
961
|
+
/**
|
|
962
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
963
|
+
* @name QueryPoolResponse
|
|
964
|
+
* @package cosmos.staking.v1beta1
|
|
965
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
966
|
+
*/
|
|
628
967
|
export interface QueryPoolResponse {
|
|
629
|
-
/**
|
|
968
|
+
/**
|
|
969
|
+
* pool defines the pool info.
|
|
970
|
+
*/
|
|
630
971
|
pool: Pool;
|
|
631
972
|
}
|
|
632
973
|
export interface QueryPoolResponseProtoMsg {
|
|
633
974
|
typeUrl: "/cosmos.staking.v1beta1.QueryPoolResponse";
|
|
634
975
|
value: Uint8Array;
|
|
635
976
|
}
|
|
636
|
-
/**
|
|
977
|
+
/**
|
|
978
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
979
|
+
* @name QueryPoolResponseAmino
|
|
980
|
+
* @package cosmos.staking.v1beta1
|
|
981
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
982
|
+
*/
|
|
637
983
|
export interface QueryPoolResponseAmino {
|
|
638
|
-
/**
|
|
984
|
+
/**
|
|
985
|
+
* pool defines the pool info.
|
|
986
|
+
*/
|
|
639
987
|
pool: PoolAmino;
|
|
640
988
|
}
|
|
641
989
|
export interface QueryPoolResponseAminoMsg {
|
|
642
990
|
type: "cosmos-sdk/QueryPoolResponse";
|
|
643
991
|
value: QueryPoolResponseAmino;
|
|
644
992
|
}
|
|
645
|
-
/**
|
|
993
|
+
/**
|
|
994
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
995
|
+
* @name QueryParamsRequest
|
|
996
|
+
* @package cosmos.staking.v1beta1
|
|
997
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
998
|
+
*/
|
|
646
999
|
export interface QueryParamsRequest {
|
|
647
1000
|
}
|
|
648
1001
|
export interface QueryParamsRequestProtoMsg {
|
|
649
1002
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsRequest";
|
|
650
1003
|
value: Uint8Array;
|
|
651
1004
|
}
|
|
652
|
-
/**
|
|
1005
|
+
/**
|
|
1006
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
1007
|
+
* @name QueryParamsRequestAmino
|
|
1008
|
+
* @package cosmos.staking.v1beta1
|
|
1009
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
1010
|
+
*/
|
|
653
1011
|
export interface QueryParamsRequestAmino {
|
|
654
1012
|
}
|
|
655
1013
|
export interface QueryParamsRequestAminoMsg {
|
|
656
1014
|
type: "cosmos-sdk/QueryParamsRequest";
|
|
657
1015
|
value: QueryParamsRequestAmino;
|
|
658
1016
|
}
|
|
659
|
-
/**
|
|
1017
|
+
/**
|
|
1018
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
1019
|
+
* @name QueryParamsResponse
|
|
1020
|
+
* @package cosmos.staking.v1beta1
|
|
1021
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
1022
|
+
*/
|
|
660
1023
|
export interface QueryParamsResponse {
|
|
661
|
-
/**
|
|
1024
|
+
/**
|
|
1025
|
+
* params holds all the parameters of this module.
|
|
1026
|
+
*/
|
|
662
1027
|
params: Params;
|
|
663
1028
|
}
|
|
664
1029
|
export interface QueryParamsResponseProtoMsg {
|
|
665
1030
|
typeUrl: "/cosmos.staking.v1beta1.QueryParamsResponse";
|
|
666
1031
|
value: Uint8Array;
|
|
667
1032
|
}
|
|
668
|
-
/**
|
|
1033
|
+
/**
|
|
1034
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
1035
|
+
* @name QueryParamsResponseAmino
|
|
1036
|
+
* @package cosmos.staking.v1beta1
|
|
1037
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
1038
|
+
*/
|
|
669
1039
|
export interface QueryParamsResponseAmino {
|
|
670
|
-
/**
|
|
1040
|
+
/**
|
|
1041
|
+
* params holds all the parameters of this module.
|
|
1042
|
+
*/
|
|
671
1043
|
params: ParamsAmino;
|
|
672
1044
|
}
|
|
673
1045
|
export interface QueryParamsResponseAminoMsg {
|
|
674
1046
|
type: "cosmos-sdk/QueryParamsResponse";
|
|
675
1047
|
value: QueryParamsResponseAmino;
|
|
676
1048
|
}
|
|
1049
|
+
/**
|
|
1050
|
+
* QueryValidatorsRequest is request type for Query/Validators RPC method.
|
|
1051
|
+
* @name QueryValidatorsRequest
|
|
1052
|
+
* @package cosmos.staking.v1beta1
|
|
1053
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsRequest
|
|
1054
|
+
*/
|
|
677
1055
|
export declare const QueryValidatorsRequest: {
|
|
678
1056
|
typeUrl: string;
|
|
679
1057
|
aminoType: string;
|
|
@@ -688,6 +1066,12 @@ export declare const QueryValidatorsRequest: {
|
|
|
688
1066
|
toProto(message: QueryValidatorsRequest): Uint8Array;
|
|
689
1067
|
toProtoMsg(message: QueryValidatorsRequest): QueryValidatorsRequestProtoMsg;
|
|
690
1068
|
};
|
|
1069
|
+
/**
|
|
1070
|
+
* QueryValidatorsResponse is response type for the Query/Validators RPC method
|
|
1071
|
+
* @name QueryValidatorsResponse
|
|
1072
|
+
* @package cosmos.staking.v1beta1
|
|
1073
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorsResponse
|
|
1074
|
+
*/
|
|
691
1075
|
export declare const QueryValidatorsResponse: {
|
|
692
1076
|
typeUrl: string;
|
|
693
1077
|
aminoType: string;
|
|
@@ -702,6 +1086,12 @@ export declare const QueryValidatorsResponse: {
|
|
|
702
1086
|
toProto(message: QueryValidatorsResponse): Uint8Array;
|
|
703
1087
|
toProtoMsg(message: QueryValidatorsResponse): QueryValidatorsResponseProtoMsg;
|
|
704
1088
|
};
|
|
1089
|
+
/**
|
|
1090
|
+
* QueryValidatorRequest is response type for the Query/Validator RPC method
|
|
1091
|
+
* @name QueryValidatorRequest
|
|
1092
|
+
* @package cosmos.staking.v1beta1
|
|
1093
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorRequest
|
|
1094
|
+
*/
|
|
705
1095
|
export declare const QueryValidatorRequest: {
|
|
706
1096
|
typeUrl: string;
|
|
707
1097
|
aminoType: string;
|
|
@@ -716,6 +1106,12 @@ export declare const QueryValidatorRequest: {
|
|
|
716
1106
|
toProto(message: QueryValidatorRequest): Uint8Array;
|
|
717
1107
|
toProtoMsg(message: QueryValidatorRequest): QueryValidatorRequestProtoMsg;
|
|
718
1108
|
};
|
|
1109
|
+
/**
|
|
1110
|
+
* QueryValidatorResponse is response type for the Query/Validator RPC method
|
|
1111
|
+
* @name QueryValidatorResponse
|
|
1112
|
+
* @package cosmos.staking.v1beta1
|
|
1113
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorResponse
|
|
1114
|
+
*/
|
|
719
1115
|
export declare const QueryValidatorResponse: {
|
|
720
1116
|
typeUrl: string;
|
|
721
1117
|
aminoType: string;
|
|
@@ -730,6 +1126,13 @@ export declare const QueryValidatorResponse: {
|
|
|
730
1126
|
toProto(message: QueryValidatorResponse): Uint8Array;
|
|
731
1127
|
toProtoMsg(message: QueryValidatorResponse): QueryValidatorResponseProtoMsg;
|
|
732
1128
|
};
|
|
1129
|
+
/**
|
|
1130
|
+
* QueryValidatorDelegationsRequest is request type for the
|
|
1131
|
+
* Query/ValidatorDelegations RPC method
|
|
1132
|
+
* @name QueryValidatorDelegationsRequest
|
|
1133
|
+
* @package cosmos.staking.v1beta1
|
|
1134
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsRequest
|
|
1135
|
+
*/
|
|
733
1136
|
export declare const QueryValidatorDelegationsRequest: {
|
|
734
1137
|
typeUrl: string;
|
|
735
1138
|
aminoType: string;
|
|
@@ -744,6 +1147,13 @@ export declare const QueryValidatorDelegationsRequest: {
|
|
|
744
1147
|
toProto(message: QueryValidatorDelegationsRequest): Uint8Array;
|
|
745
1148
|
toProtoMsg(message: QueryValidatorDelegationsRequest): QueryValidatorDelegationsRequestProtoMsg;
|
|
746
1149
|
};
|
|
1150
|
+
/**
|
|
1151
|
+
* QueryValidatorDelegationsResponse is response type for the
|
|
1152
|
+
* Query/ValidatorDelegations RPC method
|
|
1153
|
+
* @name QueryValidatorDelegationsResponse
|
|
1154
|
+
* @package cosmos.staking.v1beta1
|
|
1155
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorDelegationsResponse
|
|
1156
|
+
*/
|
|
747
1157
|
export declare const QueryValidatorDelegationsResponse: {
|
|
748
1158
|
typeUrl: string;
|
|
749
1159
|
aminoType: string;
|
|
@@ -758,6 +1168,13 @@ export declare const QueryValidatorDelegationsResponse: {
|
|
|
758
1168
|
toProto(message: QueryValidatorDelegationsResponse): Uint8Array;
|
|
759
1169
|
toProtoMsg(message: QueryValidatorDelegationsResponse): QueryValidatorDelegationsResponseProtoMsg;
|
|
760
1170
|
};
|
|
1171
|
+
/**
|
|
1172
|
+
* QueryValidatorUnbondingDelegationsRequest is required type for the
|
|
1173
|
+
* Query/ValidatorUnbondingDelegations RPC method
|
|
1174
|
+
* @name QueryValidatorUnbondingDelegationsRequest
|
|
1175
|
+
* @package cosmos.staking.v1beta1
|
|
1176
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsRequest
|
|
1177
|
+
*/
|
|
761
1178
|
export declare const QueryValidatorUnbondingDelegationsRequest: {
|
|
762
1179
|
typeUrl: string;
|
|
763
1180
|
aminoType: string;
|
|
@@ -772,6 +1189,13 @@ export declare const QueryValidatorUnbondingDelegationsRequest: {
|
|
|
772
1189
|
toProto(message: QueryValidatorUnbondingDelegationsRequest): Uint8Array;
|
|
773
1190
|
toProtoMsg(message: QueryValidatorUnbondingDelegationsRequest): QueryValidatorUnbondingDelegationsRequestProtoMsg;
|
|
774
1191
|
};
|
|
1192
|
+
/**
|
|
1193
|
+
* QueryValidatorUnbondingDelegationsResponse is response type for the
|
|
1194
|
+
* Query/ValidatorUnbondingDelegations RPC method.
|
|
1195
|
+
* @name QueryValidatorUnbondingDelegationsResponse
|
|
1196
|
+
* @package cosmos.staking.v1beta1
|
|
1197
|
+
* @see proto type: cosmos.staking.v1beta1.QueryValidatorUnbondingDelegationsResponse
|
|
1198
|
+
*/
|
|
775
1199
|
export declare const QueryValidatorUnbondingDelegationsResponse: {
|
|
776
1200
|
typeUrl: string;
|
|
777
1201
|
aminoType: string;
|
|
@@ -786,6 +1210,12 @@ export declare const QueryValidatorUnbondingDelegationsResponse: {
|
|
|
786
1210
|
toProto(message: QueryValidatorUnbondingDelegationsResponse): Uint8Array;
|
|
787
1211
|
toProtoMsg(message: QueryValidatorUnbondingDelegationsResponse): QueryValidatorUnbondingDelegationsResponseProtoMsg;
|
|
788
1212
|
};
|
|
1213
|
+
/**
|
|
1214
|
+
* QueryDelegationRequest is request type for the Query/Delegation RPC method.
|
|
1215
|
+
* @name QueryDelegationRequest
|
|
1216
|
+
* @package cosmos.staking.v1beta1
|
|
1217
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationRequest
|
|
1218
|
+
*/
|
|
789
1219
|
export declare const QueryDelegationRequest: {
|
|
790
1220
|
typeUrl: string;
|
|
791
1221
|
aminoType: string;
|
|
@@ -800,6 +1230,12 @@ export declare const QueryDelegationRequest: {
|
|
|
800
1230
|
toProto(message: QueryDelegationRequest): Uint8Array;
|
|
801
1231
|
toProtoMsg(message: QueryDelegationRequest): QueryDelegationRequestProtoMsg;
|
|
802
1232
|
};
|
|
1233
|
+
/**
|
|
1234
|
+
* QueryDelegationResponse is response type for the Query/Delegation RPC method.
|
|
1235
|
+
* @name QueryDelegationResponse
|
|
1236
|
+
* @package cosmos.staking.v1beta1
|
|
1237
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegationResponse
|
|
1238
|
+
*/
|
|
803
1239
|
export declare const QueryDelegationResponse: {
|
|
804
1240
|
typeUrl: string;
|
|
805
1241
|
aminoType: string;
|
|
@@ -814,6 +1250,13 @@ export declare const QueryDelegationResponse: {
|
|
|
814
1250
|
toProto(message: QueryDelegationResponse): Uint8Array;
|
|
815
1251
|
toProtoMsg(message: QueryDelegationResponse): QueryDelegationResponseProtoMsg;
|
|
816
1252
|
};
|
|
1253
|
+
/**
|
|
1254
|
+
* QueryUnbondingDelegationRequest is request type for the
|
|
1255
|
+
* Query/UnbondingDelegation RPC method.
|
|
1256
|
+
* @name QueryUnbondingDelegationRequest
|
|
1257
|
+
* @package cosmos.staking.v1beta1
|
|
1258
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationRequest
|
|
1259
|
+
*/
|
|
817
1260
|
export declare const QueryUnbondingDelegationRequest: {
|
|
818
1261
|
typeUrl: string;
|
|
819
1262
|
aminoType: string;
|
|
@@ -828,6 +1271,13 @@ export declare const QueryUnbondingDelegationRequest: {
|
|
|
828
1271
|
toProto(message: QueryUnbondingDelegationRequest): Uint8Array;
|
|
829
1272
|
toProtoMsg(message: QueryUnbondingDelegationRequest): QueryUnbondingDelegationRequestProtoMsg;
|
|
830
1273
|
};
|
|
1274
|
+
/**
|
|
1275
|
+
* QueryDelegationResponse is response type for the Query/UnbondingDelegation
|
|
1276
|
+
* RPC method.
|
|
1277
|
+
* @name QueryUnbondingDelegationResponse
|
|
1278
|
+
* @package cosmos.staking.v1beta1
|
|
1279
|
+
* @see proto type: cosmos.staking.v1beta1.QueryUnbondingDelegationResponse
|
|
1280
|
+
*/
|
|
831
1281
|
export declare const QueryUnbondingDelegationResponse: {
|
|
832
1282
|
typeUrl: string;
|
|
833
1283
|
aminoType: string;
|
|
@@ -842,6 +1292,13 @@ export declare const QueryUnbondingDelegationResponse: {
|
|
|
842
1292
|
toProto(message: QueryUnbondingDelegationResponse): Uint8Array;
|
|
843
1293
|
toProtoMsg(message: QueryUnbondingDelegationResponse): QueryUnbondingDelegationResponseProtoMsg;
|
|
844
1294
|
};
|
|
1295
|
+
/**
|
|
1296
|
+
* QueryDelegatorDelegationsRequest is request type for the
|
|
1297
|
+
* Query/DelegatorDelegations RPC method.
|
|
1298
|
+
* @name QueryDelegatorDelegationsRequest
|
|
1299
|
+
* @package cosmos.staking.v1beta1
|
|
1300
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsRequest
|
|
1301
|
+
*/
|
|
845
1302
|
export declare const QueryDelegatorDelegationsRequest: {
|
|
846
1303
|
typeUrl: string;
|
|
847
1304
|
aminoType: string;
|
|
@@ -856,6 +1313,13 @@ export declare const QueryDelegatorDelegationsRequest: {
|
|
|
856
1313
|
toProto(message: QueryDelegatorDelegationsRequest): Uint8Array;
|
|
857
1314
|
toProtoMsg(message: QueryDelegatorDelegationsRequest): QueryDelegatorDelegationsRequestProtoMsg;
|
|
858
1315
|
};
|
|
1316
|
+
/**
|
|
1317
|
+
* QueryDelegatorDelegationsResponse is response type for the
|
|
1318
|
+
* Query/DelegatorDelegations RPC method.
|
|
1319
|
+
* @name QueryDelegatorDelegationsResponse
|
|
1320
|
+
* @package cosmos.staking.v1beta1
|
|
1321
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorDelegationsResponse
|
|
1322
|
+
*/
|
|
859
1323
|
export declare const QueryDelegatorDelegationsResponse: {
|
|
860
1324
|
typeUrl: string;
|
|
861
1325
|
aminoType: string;
|
|
@@ -870,6 +1334,13 @@ export declare const QueryDelegatorDelegationsResponse: {
|
|
|
870
1334
|
toProto(message: QueryDelegatorDelegationsResponse): Uint8Array;
|
|
871
1335
|
toProtoMsg(message: QueryDelegatorDelegationsResponse): QueryDelegatorDelegationsResponseProtoMsg;
|
|
872
1336
|
};
|
|
1337
|
+
/**
|
|
1338
|
+
* QueryDelegatorUnbondingDelegationsRequest is request type for the
|
|
1339
|
+
* Query/DelegatorUnbondingDelegations RPC method.
|
|
1340
|
+
* @name QueryDelegatorUnbondingDelegationsRequest
|
|
1341
|
+
* @package cosmos.staking.v1beta1
|
|
1342
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsRequest
|
|
1343
|
+
*/
|
|
873
1344
|
export declare const QueryDelegatorUnbondingDelegationsRequest: {
|
|
874
1345
|
typeUrl: string;
|
|
875
1346
|
aminoType: string;
|
|
@@ -884,6 +1355,13 @@ export declare const QueryDelegatorUnbondingDelegationsRequest: {
|
|
|
884
1355
|
toProto(message: QueryDelegatorUnbondingDelegationsRequest): Uint8Array;
|
|
885
1356
|
toProtoMsg(message: QueryDelegatorUnbondingDelegationsRequest): QueryDelegatorUnbondingDelegationsRequestProtoMsg;
|
|
886
1357
|
};
|
|
1358
|
+
/**
|
|
1359
|
+
* QueryUnbondingDelegatorDelegationsResponse is response type for the
|
|
1360
|
+
* Query/UnbondingDelegatorDelegations RPC method.
|
|
1361
|
+
* @name QueryDelegatorUnbondingDelegationsResponse
|
|
1362
|
+
* @package cosmos.staking.v1beta1
|
|
1363
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorUnbondingDelegationsResponse
|
|
1364
|
+
*/
|
|
887
1365
|
export declare const QueryDelegatorUnbondingDelegationsResponse: {
|
|
888
1366
|
typeUrl: string;
|
|
889
1367
|
aminoType: string;
|
|
@@ -898,6 +1376,13 @@ export declare const QueryDelegatorUnbondingDelegationsResponse: {
|
|
|
898
1376
|
toProto(message: QueryDelegatorUnbondingDelegationsResponse): Uint8Array;
|
|
899
1377
|
toProtoMsg(message: QueryDelegatorUnbondingDelegationsResponse): QueryDelegatorUnbondingDelegationsResponseProtoMsg;
|
|
900
1378
|
};
|
|
1379
|
+
/**
|
|
1380
|
+
* QueryRedelegationsRequest is request type for the Query/Redelegations RPC
|
|
1381
|
+
* method.
|
|
1382
|
+
* @name QueryRedelegationsRequest
|
|
1383
|
+
* @package cosmos.staking.v1beta1
|
|
1384
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsRequest
|
|
1385
|
+
*/
|
|
901
1386
|
export declare const QueryRedelegationsRequest: {
|
|
902
1387
|
typeUrl: string;
|
|
903
1388
|
aminoType: string;
|
|
@@ -912,6 +1397,13 @@ export declare const QueryRedelegationsRequest: {
|
|
|
912
1397
|
toProto(message: QueryRedelegationsRequest): Uint8Array;
|
|
913
1398
|
toProtoMsg(message: QueryRedelegationsRequest): QueryRedelegationsRequestProtoMsg;
|
|
914
1399
|
};
|
|
1400
|
+
/**
|
|
1401
|
+
* QueryRedelegationsResponse is response type for the Query/Redelegations RPC
|
|
1402
|
+
* method.
|
|
1403
|
+
* @name QueryRedelegationsResponse
|
|
1404
|
+
* @package cosmos.staking.v1beta1
|
|
1405
|
+
* @see proto type: cosmos.staking.v1beta1.QueryRedelegationsResponse
|
|
1406
|
+
*/
|
|
915
1407
|
export declare const QueryRedelegationsResponse: {
|
|
916
1408
|
typeUrl: string;
|
|
917
1409
|
aminoType: string;
|
|
@@ -926,6 +1418,13 @@ export declare const QueryRedelegationsResponse: {
|
|
|
926
1418
|
toProto(message: QueryRedelegationsResponse): Uint8Array;
|
|
927
1419
|
toProtoMsg(message: QueryRedelegationsResponse): QueryRedelegationsResponseProtoMsg;
|
|
928
1420
|
};
|
|
1421
|
+
/**
|
|
1422
|
+
* QueryDelegatorValidatorsRequest is request type for the
|
|
1423
|
+
* Query/DelegatorValidators RPC method.
|
|
1424
|
+
* @name QueryDelegatorValidatorsRequest
|
|
1425
|
+
* @package cosmos.staking.v1beta1
|
|
1426
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsRequest
|
|
1427
|
+
*/
|
|
929
1428
|
export declare const QueryDelegatorValidatorsRequest: {
|
|
930
1429
|
typeUrl: string;
|
|
931
1430
|
aminoType: string;
|
|
@@ -940,6 +1439,13 @@ export declare const QueryDelegatorValidatorsRequest: {
|
|
|
940
1439
|
toProto(message: QueryDelegatorValidatorsRequest): Uint8Array;
|
|
941
1440
|
toProtoMsg(message: QueryDelegatorValidatorsRequest): QueryDelegatorValidatorsRequestProtoMsg;
|
|
942
1441
|
};
|
|
1442
|
+
/**
|
|
1443
|
+
* QueryDelegatorValidatorsResponse is response type for the
|
|
1444
|
+
* Query/DelegatorValidators RPC method.
|
|
1445
|
+
* @name QueryDelegatorValidatorsResponse
|
|
1446
|
+
* @package cosmos.staking.v1beta1
|
|
1447
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorsResponse
|
|
1448
|
+
*/
|
|
943
1449
|
export declare const QueryDelegatorValidatorsResponse: {
|
|
944
1450
|
typeUrl: string;
|
|
945
1451
|
aminoType: string;
|
|
@@ -954,6 +1460,13 @@ export declare const QueryDelegatorValidatorsResponse: {
|
|
|
954
1460
|
toProto(message: QueryDelegatorValidatorsResponse): Uint8Array;
|
|
955
1461
|
toProtoMsg(message: QueryDelegatorValidatorsResponse): QueryDelegatorValidatorsResponseProtoMsg;
|
|
956
1462
|
};
|
|
1463
|
+
/**
|
|
1464
|
+
* QueryDelegatorValidatorRequest is request type for the
|
|
1465
|
+
* Query/DelegatorValidator RPC method.
|
|
1466
|
+
* @name QueryDelegatorValidatorRequest
|
|
1467
|
+
* @package cosmos.staking.v1beta1
|
|
1468
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorRequest
|
|
1469
|
+
*/
|
|
957
1470
|
export declare const QueryDelegatorValidatorRequest: {
|
|
958
1471
|
typeUrl: string;
|
|
959
1472
|
aminoType: string;
|
|
@@ -968,6 +1481,13 @@ export declare const QueryDelegatorValidatorRequest: {
|
|
|
968
1481
|
toProto(message: QueryDelegatorValidatorRequest): Uint8Array;
|
|
969
1482
|
toProtoMsg(message: QueryDelegatorValidatorRequest): QueryDelegatorValidatorRequestProtoMsg;
|
|
970
1483
|
};
|
|
1484
|
+
/**
|
|
1485
|
+
* QueryDelegatorValidatorResponse response type for the
|
|
1486
|
+
* Query/DelegatorValidator RPC method.
|
|
1487
|
+
* @name QueryDelegatorValidatorResponse
|
|
1488
|
+
* @package cosmos.staking.v1beta1
|
|
1489
|
+
* @see proto type: cosmos.staking.v1beta1.QueryDelegatorValidatorResponse
|
|
1490
|
+
*/
|
|
971
1491
|
export declare const QueryDelegatorValidatorResponse: {
|
|
972
1492
|
typeUrl: string;
|
|
973
1493
|
aminoType: string;
|
|
@@ -982,6 +1502,13 @@ export declare const QueryDelegatorValidatorResponse: {
|
|
|
982
1502
|
toProto(message: QueryDelegatorValidatorResponse): Uint8Array;
|
|
983
1503
|
toProtoMsg(message: QueryDelegatorValidatorResponse): QueryDelegatorValidatorResponseProtoMsg;
|
|
984
1504
|
};
|
|
1505
|
+
/**
|
|
1506
|
+
* QueryHistoricalInfoRequest is request type for the Query/HistoricalInfo RPC
|
|
1507
|
+
* method.
|
|
1508
|
+
* @name QueryHistoricalInfoRequest
|
|
1509
|
+
* @package cosmos.staking.v1beta1
|
|
1510
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoRequest
|
|
1511
|
+
*/
|
|
985
1512
|
export declare const QueryHistoricalInfoRequest: {
|
|
986
1513
|
typeUrl: string;
|
|
987
1514
|
aminoType: string;
|
|
@@ -996,6 +1523,13 @@ export declare const QueryHistoricalInfoRequest: {
|
|
|
996
1523
|
toProto(message: QueryHistoricalInfoRequest): Uint8Array;
|
|
997
1524
|
toProtoMsg(message: QueryHistoricalInfoRequest): QueryHistoricalInfoRequestProtoMsg;
|
|
998
1525
|
};
|
|
1526
|
+
/**
|
|
1527
|
+
* QueryHistoricalInfoResponse is response type for the Query/HistoricalInfo RPC
|
|
1528
|
+
* method.
|
|
1529
|
+
* @name QueryHistoricalInfoResponse
|
|
1530
|
+
* @package cosmos.staking.v1beta1
|
|
1531
|
+
* @see proto type: cosmos.staking.v1beta1.QueryHistoricalInfoResponse
|
|
1532
|
+
*/
|
|
999
1533
|
export declare const QueryHistoricalInfoResponse: {
|
|
1000
1534
|
typeUrl: string;
|
|
1001
1535
|
aminoType: string;
|
|
@@ -1010,6 +1544,12 @@ export declare const QueryHistoricalInfoResponse: {
|
|
|
1010
1544
|
toProto(message: QueryHistoricalInfoResponse): Uint8Array;
|
|
1011
1545
|
toProtoMsg(message: QueryHistoricalInfoResponse): QueryHistoricalInfoResponseProtoMsg;
|
|
1012
1546
|
};
|
|
1547
|
+
/**
|
|
1548
|
+
* QueryPoolRequest is request type for the Query/Pool RPC method.
|
|
1549
|
+
* @name QueryPoolRequest
|
|
1550
|
+
* @package cosmos.staking.v1beta1
|
|
1551
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolRequest
|
|
1552
|
+
*/
|
|
1013
1553
|
export declare const QueryPoolRequest: {
|
|
1014
1554
|
typeUrl: string;
|
|
1015
1555
|
aminoType: string;
|
|
@@ -1024,6 +1564,12 @@ export declare const QueryPoolRequest: {
|
|
|
1024
1564
|
toProto(message: QueryPoolRequest): Uint8Array;
|
|
1025
1565
|
toProtoMsg(message: QueryPoolRequest): QueryPoolRequestProtoMsg;
|
|
1026
1566
|
};
|
|
1567
|
+
/**
|
|
1568
|
+
* QueryPoolResponse is response type for the Query/Pool RPC method.
|
|
1569
|
+
* @name QueryPoolResponse
|
|
1570
|
+
* @package cosmos.staking.v1beta1
|
|
1571
|
+
* @see proto type: cosmos.staking.v1beta1.QueryPoolResponse
|
|
1572
|
+
*/
|
|
1027
1573
|
export declare const QueryPoolResponse: {
|
|
1028
1574
|
typeUrl: string;
|
|
1029
1575
|
aminoType: string;
|
|
@@ -1038,6 +1584,12 @@ export declare const QueryPoolResponse: {
|
|
|
1038
1584
|
toProto(message: QueryPoolResponse): Uint8Array;
|
|
1039
1585
|
toProtoMsg(message: QueryPoolResponse): QueryPoolResponseProtoMsg;
|
|
1040
1586
|
};
|
|
1587
|
+
/**
|
|
1588
|
+
* QueryParamsRequest is request type for the Query/Params RPC method.
|
|
1589
|
+
* @name QueryParamsRequest
|
|
1590
|
+
* @package cosmos.staking.v1beta1
|
|
1591
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsRequest
|
|
1592
|
+
*/
|
|
1041
1593
|
export declare const QueryParamsRequest: {
|
|
1042
1594
|
typeUrl: string;
|
|
1043
1595
|
aminoType: string;
|
|
@@ -1052,6 +1604,12 @@ export declare const QueryParamsRequest: {
|
|
|
1052
1604
|
toProto(message: QueryParamsRequest): Uint8Array;
|
|
1053
1605
|
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg;
|
|
1054
1606
|
};
|
|
1607
|
+
/**
|
|
1608
|
+
* QueryParamsResponse is response type for the Query/Params RPC method.
|
|
1609
|
+
* @name QueryParamsResponse
|
|
1610
|
+
* @package cosmos.staking.v1beta1
|
|
1611
|
+
* @see proto type: cosmos.staking.v1beta1.QueryParamsResponse
|
|
1612
|
+
*/
|
|
1055
1613
|
export declare const QueryParamsResponse: {
|
|
1056
1614
|
typeUrl: string;
|
|
1057
1615
|
aminoType: string;
|