@sparkdreamnft/sparkdreamjs 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +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/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- 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 +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- 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/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
|
@@ -39,6 +39,9 @@ export declare function infractionToJSON(object: Infraction): string;
|
|
|
39
39
|
* It is stored as part of staking module's state, which persists the `n` most
|
|
40
40
|
* recent HistoricalInfo
|
|
41
41
|
* (`n` is set by the staking module's `historical_entries` parameter).
|
|
42
|
+
* @name HistoricalInfo
|
|
43
|
+
* @package cosmos.staking.v1beta1
|
|
44
|
+
* @see proto type: cosmos.staking.v1beta1.HistoricalInfo
|
|
42
45
|
*/
|
|
43
46
|
export interface HistoricalInfo {
|
|
44
47
|
header: Header;
|
|
@@ -53,6 +56,9 @@ export interface HistoricalInfoProtoMsg {
|
|
|
53
56
|
* It is stored as part of staking module's state, which persists the `n` most
|
|
54
57
|
* recent HistoricalInfo
|
|
55
58
|
* (`n` is set by the staking module's `historical_entries` parameter).
|
|
59
|
+
* @name HistoricalInfoAmino
|
|
60
|
+
* @package cosmos.staking.v1beta1
|
|
61
|
+
* @see proto type: cosmos.staking.v1beta1.HistoricalInfo
|
|
56
62
|
*/
|
|
57
63
|
export interface HistoricalInfoAmino {
|
|
58
64
|
header: HeaderAmino;
|
|
@@ -65,13 +71,22 @@ export interface HistoricalInfoAminoMsg {
|
|
|
65
71
|
/**
|
|
66
72
|
* CommissionRates defines the initial commission rates to be used for creating
|
|
67
73
|
* a validator.
|
|
74
|
+
* @name CommissionRates
|
|
75
|
+
* @package cosmos.staking.v1beta1
|
|
76
|
+
* @see proto type: cosmos.staking.v1beta1.CommissionRates
|
|
68
77
|
*/
|
|
69
78
|
export interface CommissionRates {
|
|
70
|
-
/**
|
|
79
|
+
/**
|
|
80
|
+
* rate is the commission rate charged to delegators, as a fraction.
|
|
81
|
+
*/
|
|
71
82
|
rate: string;
|
|
72
|
-
/**
|
|
83
|
+
/**
|
|
84
|
+
* max_rate defines the maximum commission rate which validator can ever charge, as a fraction.
|
|
85
|
+
*/
|
|
73
86
|
maxRate: string;
|
|
74
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* max_change_rate defines the maximum daily increase of the validator commission, as a fraction.
|
|
89
|
+
*/
|
|
75
90
|
maxChangeRate: string;
|
|
76
91
|
}
|
|
77
92
|
export interface CommissionRatesProtoMsg {
|
|
@@ -81,69 +96,126 @@ export interface CommissionRatesProtoMsg {
|
|
|
81
96
|
/**
|
|
82
97
|
* CommissionRates defines the initial commission rates to be used for creating
|
|
83
98
|
* a validator.
|
|
99
|
+
* @name CommissionRatesAmino
|
|
100
|
+
* @package cosmos.staking.v1beta1
|
|
101
|
+
* @see proto type: cosmos.staking.v1beta1.CommissionRates
|
|
84
102
|
*/
|
|
85
103
|
export interface CommissionRatesAmino {
|
|
86
|
-
/**
|
|
104
|
+
/**
|
|
105
|
+
* rate is the commission rate charged to delegators, as a fraction.
|
|
106
|
+
*/
|
|
87
107
|
rate: string;
|
|
88
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* max_rate defines the maximum commission rate which validator can ever charge, as a fraction.
|
|
110
|
+
*/
|
|
89
111
|
max_rate: string;
|
|
90
|
-
/**
|
|
112
|
+
/**
|
|
113
|
+
* max_change_rate defines the maximum daily increase of the validator commission, as a fraction.
|
|
114
|
+
*/
|
|
91
115
|
max_change_rate: string;
|
|
92
116
|
}
|
|
93
117
|
export interface CommissionRatesAminoMsg {
|
|
94
118
|
type: "cosmos-sdk/CommissionRates";
|
|
95
119
|
value: CommissionRatesAmino;
|
|
96
120
|
}
|
|
97
|
-
/**
|
|
121
|
+
/**
|
|
122
|
+
* Commission defines commission parameters for a given validator.
|
|
123
|
+
* @name Commission
|
|
124
|
+
* @package cosmos.staking.v1beta1
|
|
125
|
+
* @see proto type: cosmos.staking.v1beta1.Commission
|
|
126
|
+
*/
|
|
98
127
|
export interface Commission {
|
|
99
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* commission_rates defines the initial commission rates to be used for creating a validator.
|
|
130
|
+
*/
|
|
100
131
|
commissionRates: CommissionRates;
|
|
101
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* update_time is the last time the commission rate was changed.
|
|
134
|
+
*/
|
|
102
135
|
updateTime: Date;
|
|
103
136
|
}
|
|
104
137
|
export interface CommissionProtoMsg {
|
|
105
138
|
typeUrl: "/cosmos.staking.v1beta1.Commission";
|
|
106
139
|
value: Uint8Array;
|
|
107
140
|
}
|
|
108
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* Commission defines commission parameters for a given validator.
|
|
143
|
+
* @name CommissionAmino
|
|
144
|
+
* @package cosmos.staking.v1beta1
|
|
145
|
+
* @see proto type: cosmos.staking.v1beta1.Commission
|
|
146
|
+
*/
|
|
109
147
|
export interface CommissionAmino {
|
|
110
|
-
/**
|
|
148
|
+
/**
|
|
149
|
+
* commission_rates defines the initial commission rates to be used for creating a validator.
|
|
150
|
+
*/
|
|
111
151
|
commission_rates: CommissionRatesAmino;
|
|
112
|
-
/**
|
|
152
|
+
/**
|
|
153
|
+
* update_time is the last time the commission rate was changed.
|
|
154
|
+
*/
|
|
113
155
|
update_time: string;
|
|
114
156
|
}
|
|
115
157
|
export interface CommissionAminoMsg {
|
|
116
158
|
type: "cosmos-sdk/Commission";
|
|
117
159
|
value: CommissionAmino;
|
|
118
160
|
}
|
|
119
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* Description defines a validator description.
|
|
163
|
+
* @name Description
|
|
164
|
+
* @package cosmos.staking.v1beta1
|
|
165
|
+
* @see proto type: cosmos.staking.v1beta1.Description
|
|
166
|
+
*/
|
|
120
167
|
export interface Description {
|
|
121
|
-
/**
|
|
168
|
+
/**
|
|
169
|
+
* moniker defines a human-readable name for the validator.
|
|
170
|
+
*/
|
|
122
171
|
moniker: string;
|
|
123
|
-
/**
|
|
172
|
+
/**
|
|
173
|
+
* identity defines an optional identity signature (ex. UPort or Keybase).
|
|
174
|
+
*/
|
|
124
175
|
identity: string;
|
|
125
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* website defines an optional website link.
|
|
178
|
+
*/
|
|
126
179
|
website: string;
|
|
127
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* security_contact defines an optional email for security contact.
|
|
182
|
+
*/
|
|
128
183
|
securityContact: string;
|
|
129
|
-
/**
|
|
184
|
+
/**
|
|
185
|
+
* details define other optional details.
|
|
186
|
+
*/
|
|
130
187
|
details: string;
|
|
131
188
|
}
|
|
132
189
|
export interface DescriptionProtoMsg {
|
|
133
190
|
typeUrl: "/cosmos.staking.v1beta1.Description";
|
|
134
191
|
value: Uint8Array;
|
|
135
192
|
}
|
|
136
|
-
/**
|
|
193
|
+
/**
|
|
194
|
+
* Description defines a validator description.
|
|
195
|
+
* @name DescriptionAmino
|
|
196
|
+
* @package cosmos.staking.v1beta1
|
|
197
|
+
* @see proto type: cosmos.staking.v1beta1.Description
|
|
198
|
+
*/
|
|
137
199
|
export interface DescriptionAmino {
|
|
138
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* moniker defines a human-readable name for the validator.
|
|
202
|
+
*/
|
|
139
203
|
moniker?: string;
|
|
140
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* identity defines an optional identity signature (ex. UPort or Keybase).
|
|
206
|
+
*/
|
|
141
207
|
identity?: string;
|
|
142
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* website defines an optional website link.
|
|
210
|
+
*/
|
|
143
211
|
website?: string;
|
|
144
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* security_contact defines an optional email for security contact.
|
|
214
|
+
*/
|
|
145
215
|
security_contact?: string;
|
|
146
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* details define other optional details.
|
|
218
|
+
*/
|
|
147
219
|
details?: string;
|
|
148
220
|
}
|
|
149
221
|
export interface DescriptionAminoMsg {
|
|
@@ -159,37 +231,62 @@ export interface DescriptionAminoMsg {
|
|
|
159
231
|
* bond shares is based on the amount of coins delegated divided by the current
|
|
160
232
|
* exchange rate. Voting power can be calculated as total bonded shares
|
|
161
233
|
* multiplied by exchange rate.
|
|
234
|
+
* @name Validator
|
|
235
|
+
* @package cosmos.staking.v1beta1
|
|
236
|
+
* @see proto type: cosmos.staking.v1beta1.Validator
|
|
162
237
|
*/
|
|
163
238
|
export interface Validator {
|
|
164
|
-
/**
|
|
239
|
+
/**
|
|
240
|
+
* operator_address defines the address of the validator's operator; bech encoded in JSON.
|
|
241
|
+
*/
|
|
165
242
|
operatorAddress: string;
|
|
166
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
|
|
245
|
+
*/
|
|
167
246
|
consensusPubkey?: Any | undefined;
|
|
168
|
-
/**
|
|
247
|
+
/**
|
|
248
|
+
* jailed defined whether the validator has been jailed from bonded status or not.
|
|
249
|
+
*/
|
|
169
250
|
jailed: boolean;
|
|
170
|
-
/**
|
|
251
|
+
/**
|
|
252
|
+
* status is the validator status (bonded/unbonding/unbonded).
|
|
253
|
+
*/
|
|
171
254
|
status: BondStatus;
|
|
172
|
-
/**
|
|
255
|
+
/**
|
|
256
|
+
* tokens define the delegated tokens (incl. self-delegation).
|
|
257
|
+
*/
|
|
173
258
|
tokens: string;
|
|
174
|
-
/**
|
|
259
|
+
/**
|
|
260
|
+
* delegator_shares defines total shares issued to a validator's delegators.
|
|
261
|
+
*/
|
|
175
262
|
delegatorShares: string;
|
|
176
|
-
/**
|
|
263
|
+
/**
|
|
264
|
+
* description defines the description terms for the validator.
|
|
265
|
+
*/
|
|
177
266
|
description: Description;
|
|
178
|
-
/**
|
|
267
|
+
/**
|
|
268
|
+
* unbonding_height defines, if unbonding, the height at which this validator has begun unbonding.
|
|
269
|
+
*/
|
|
179
270
|
unbondingHeight: bigint;
|
|
180
|
-
/**
|
|
271
|
+
/**
|
|
272
|
+
* unbonding_time defines, if unbonding, the min time for the validator to complete unbonding.
|
|
273
|
+
*/
|
|
181
274
|
unbondingTime: Date;
|
|
182
|
-
/**
|
|
275
|
+
/**
|
|
276
|
+
* commission defines the commission parameters.
|
|
277
|
+
*/
|
|
183
278
|
commission: Commission;
|
|
184
279
|
/**
|
|
185
280
|
* min_self_delegation is the validator's self declared minimum self delegation.
|
|
186
|
-
*
|
|
187
|
-
* Since: cosmos-sdk 0.46
|
|
188
281
|
*/
|
|
189
282
|
minSelfDelegation: string;
|
|
190
|
-
/**
|
|
283
|
+
/**
|
|
284
|
+
* strictly positive if this validator's unbonding has been stopped by external modules
|
|
285
|
+
*/
|
|
191
286
|
unbondingOnHoldRefCount: bigint;
|
|
192
|
-
/**
|
|
287
|
+
/**
|
|
288
|
+
* list of unbonding ids, each uniquely identifing an unbonding of this validator
|
|
289
|
+
*/
|
|
193
290
|
unbondingIds: bigint[];
|
|
194
291
|
}
|
|
195
292
|
export interface ValidatorProtoMsg {
|
|
@@ -197,7 +294,10 @@ export interface ValidatorProtoMsg {
|
|
|
197
294
|
value: Uint8Array;
|
|
198
295
|
}
|
|
199
296
|
export type ValidatorEncoded = Omit<Validator, "consensusPubkey"> & {
|
|
200
|
-
/**
|
|
297
|
+
/**
|
|
298
|
+
* consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
|
|
299
|
+
*/
|
|
300
|
+
consensusPubkey?: AnyProtoMsg | undefined;
|
|
201
301
|
};
|
|
202
302
|
/**
|
|
203
303
|
* Validator defines a validator, together with the total amount of the
|
|
@@ -208,44 +308,74 @@ export type ValidatorEncoded = Omit<Validator, "consensusPubkey"> & {
|
|
|
208
308
|
* bond shares is based on the amount of coins delegated divided by the current
|
|
209
309
|
* exchange rate. Voting power can be calculated as total bonded shares
|
|
210
310
|
* multiplied by exchange rate.
|
|
311
|
+
* @name ValidatorAmino
|
|
312
|
+
* @package cosmos.staking.v1beta1
|
|
313
|
+
* @see proto type: cosmos.staking.v1beta1.Validator
|
|
211
314
|
*/
|
|
212
315
|
export interface ValidatorAmino {
|
|
213
|
-
/**
|
|
316
|
+
/**
|
|
317
|
+
* operator_address defines the address of the validator's operator; bech encoded in JSON.
|
|
318
|
+
*/
|
|
214
319
|
operator_address?: string;
|
|
215
|
-
/**
|
|
320
|
+
/**
|
|
321
|
+
* consensus_pubkey is the consensus public key of the validator, as a Protobuf Any.
|
|
322
|
+
*/
|
|
216
323
|
consensus_pubkey?: AnyAmino;
|
|
217
|
-
/**
|
|
324
|
+
/**
|
|
325
|
+
* jailed defined whether the validator has been jailed from bonded status or not.
|
|
326
|
+
*/
|
|
218
327
|
jailed?: boolean;
|
|
219
|
-
/**
|
|
328
|
+
/**
|
|
329
|
+
* status is the validator status (bonded/unbonding/unbonded).
|
|
330
|
+
*/
|
|
220
331
|
status?: BondStatus;
|
|
221
|
-
/**
|
|
332
|
+
/**
|
|
333
|
+
* tokens define the delegated tokens (incl. self-delegation).
|
|
334
|
+
*/
|
|
222
335
|
tokens?: string;
|
|
223
|
-
/**
|
|
336
|
+
/**
|
|
337
|
+
* delegator_shares defines total shares issued to a validator's delegators.
|
|
338
|
+
*/
|
|
224
339
|
delegator_shares?: string;
|
|
225
|
-
/**
|
|
340
|
+
/**
|
|
341
|
+
* description defines the description terms for the validator.
|
|
342
|
+
*/
|
|
226
343
|
description: DescriptionAmino;
|
|
227
|
-
/**
|
|
344
|
+
/**
|
|
345
|
+
* unbonding_height defines, if unbonding, the height at which this validator has begun unbonding.
|
|
346
|
+
*/
|
|
228
347
|
unbonding_height?: string;
|
|
229
|
-
/**
|
|
348
|
+
/**
|
|
349
|
+
* unbonding_time defines, if unbonding, the min time for the validator to complete unbonding.
|
|
350
|
+
*/
|
|
230
351
|
unbonding_time: string;
|
|
231
|
-
/**
|
|
352
|
+
/**
|
|
353
|
+
* commission defines the commission parameters.
|
|
354
|
+
*/
|
|
232
355
|
commission: CommissionAmino;
|
|
233
356
|
/**
|
|
234
357
|
* min_self_delegation is the validator's self declared minimum self delegation.
|
|
235
|
-
*
|
|
236
|
-
* Since: cosmos-sdk 0.46
|
|
237
358
|
*/
|
|
238
359
|
min_self_delegation?: string;
|
|
239
|
-
/**
|
|
360
|
+
/**
|
|
361
|
+
* strictly positive if this validator's unbonding has been stopped by external modules
|
|
362
|
+
*/
|
|
240
363
|
unbonding_on_hold_ref_count?: string;
|
|
241
|
-
/**
|
|
364
|
+
/**
|
|
365
|
+
* list of unbonding ids, each uniquely identifing an unbonding of this validator
|
|
366
|
+
*/
|
|
242
367
|
unbonding_ids?: string[];
|
|
243
368
|
}
|
|
244
369
|
export interface ValidatorAminoMsg {
|
|
245
370
|
type: "cosmos-sdk/Validator";
|
|
246
371
|
value: ValidatorAmino;
|
|
247
372
|
}
|
|
248
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* ValAddresses defines a repeated set of validator addresses.
|
|
375
|
+
* @name ValAddresses
|
|
376
|
+
* @package cosmos.staking.v1beta1
|
|
377
|
+
* @see proto type: cosmos.staking.v1beta1.ValAddresses
|
|
378
|
+
*/
|
|
249
379
|
export interface ValAddresses {
|
|
250
380
|
addresses: string[];
|
|
251
381
|
}
|
|
@@ -253,7 +383,12 @@ export interface ValAddressesProtoMsg {
|
|
|
253
383
|
typeUrl: "/cosmos.staking.v1beta1.ValAddresses";
|
|
254
384
|
value: Uint8Array;
|
|
255
385
|
}
|
|
256
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* ValAddresses defines a repeated set of validator addresses.
|
|
388
|
+
* @name ValAddressesAmino
|
|
389
|
+
* @package cosmos.staking.v1beta1
|
|
390
|
+
* @see proto type: cosmos.staking.v1beta1.ValAddresses
|
|
391
|
+
*/
|
|
257
392
|
export interface ValAddressesAmino {
|
|
258
393
|
addresses?: string[];
|
|
259
394
|
}
|
|
@@ -265,6 +400,9 @@ export interface ValAddressesAminoMsg {
|
|
|
265
400
|
* DVPair is struct that just has a delegator-validator pair with no other data.
|
|
266
401
|
* It is intended to be used as a marshalable pointer. For example, a DVPair can
|
|
267
402
|
* be used to construct the key to getting an UnbondingDelegation from state.
|
|
403
|
+
* @name DVPair
|
|
404
|
+
* @package cosmos.staking.v1beta1
|
|
405
|
+
* @see proto type: cosmos.staking.v1beta1.DVPair
|
|
268
406
|
*/
|
|
269
407
|
export interface DVPair {
|
|
270
408
|
delegatorAddress: string;
|
|
@@ -278,6 +416,9 @@ export interface DVPairProtoMsg {
|
|
|
278
416
|
* DVPair is struct that just has a delegator-validator pair with no other data.
|
|
279
417
|
* It is intended to be used as a marshalable pointer. For example, a DVPair can
|
|
280
418
|
* be used to construct the key to getting an UnbondingDelegation from state.
|
|
419
|
+
* @name DVPairAmino
|
|
420
|
+
* @package cosmos.staking.v1beta1
|
|
421
|
+
* @see proto type: cosmos.staking.v1beta1.DVPair
|
|
281
422
|
*/
|
|
282
423
|
export interface DVPairAmino {
|
|
283
424
|
delegator_address?: string;
|
|
@@ -287,7 +428,12 @@ export interface DVPairAminoMsg {
|
|
|
287
428
|
type: "cosmos-sdk/DVPair";
|
|
288
429
|
value: DVPairAmino;
|
|
289
430
|
}
|
|
290
|
-
/**
|
|
431
|
+
/**
|
|
432
|
+
* DVPairs defines an array of DVPair objects.
|
|
433
|
+
* @name DVPairs
|
|
434
|
+
* @package cosmos.staking.v1beta1
|
|
435
|
+
* @see proto type: cosmos.staking.v1beta1.DVPairs
|
|
436
|
+
*/
|
|
291
437
|
export interface DVPairs {
|
|
292
438
|
pairs: DVPair[];
|
|
293
439
|
}
|
|
@@ -295,7 +441,12 @@ export interface DVPairsProtoMsg {
|
|
|
295
441
|
typeUrl: "/cosmos.staking.v1beta1.DVPairs";
|
|
296
442
|
value: Uint8Array;
|
|
297
443
|
}
|
|
298
|
-
/**
|
|
444
|
+
/**
|
|
445
|
+
* DVPairs defines an array of DVPair objects.
|
|
446
|
+
* @name DVPairsAmino
|
|
447
|
+
* @package cosmos.staking.v1beta1
|
|
448
|
+
* @see proto type: cosmos.staking.v1beta1.DVPairs
|
|
449
|
+
*/
|
|
299
450
|
export interface DVPairsAmino {
|
|
300
451
|
pairs: DVPairAmino[];
|
|
301
452
|
}
|
|
@@ -308,6 +459,9 @@ export interface DVPairsAminoMsg {
|
|
|
308
459
|
* with no other data. It is intended to be used as a marshalable pointer. For
|
|
309
460
|
* example, a DVVTriplet can be used to construct the key to getting a
|
|
310
461
|
* Redelegation from state.
|
|
462
|
+
* @name DVVTriplet
|
|
463
|
+
* @package cosmos.staking.v1beta1
|
|
464
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplet
|
|
311
465
|
*/
|
|
312
466
|
export interface DVVTriplet {
|
|
313
467
|
delegatorAddress: string;
|
|
@@ -323,6 +477,9 @@ export interface DVVTripletProtoMsg {
|
|
|
323
477
|
* with no other data. It is intended to be used as a marshalable pointer. For
|
|
324
478
|
* example, a DVVTriplet can be used to construct the key to getting a
|
|
325
479
|
* Redelegation from state.
|
|
480
|
+
* @name DVVTripletAmino
|
|
481
|
+
* @package cosmos.staking.v1beta1
|
|
482
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplet
|
|
326
483
|
*/
|
|
327
484
|
export interface DVVTripletAmino {
|
|
328
485
|
delegator_address?: string;
|
|
@@ -333,7 +490,12 @@ export interface DVVTripletAminoMsg {
|
|
|
333
490
|
type: "cosmos-sdk/DVVTriplet";
|
|
334
491
|
value: DVVTripletAmino;
|
|
335
492
|
}
|
|
336
|
-
/**
|
|
493
|
+
/**
|
|
494
|
+
* DVVTriplets defines an array of DVVTriplet objects.
|
|
495
|
+
* @name DVVTriplets
|
|
496
|
+
* @package cosmos.staking.v1beta1
|
|
497
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplets
|
|
498
|
+
*/
|
|
337
499
|
export interface DVVTriplets {
|
|
338
500
|
triplets: DVVTriplet[];
|
|
339
501
|
}
|
|
@@ -341,7 +503,12 @@ export interface DVVTripletsProtoMsg {
|
|
|
341
503
|
typeUrl: "/cosmos.staking.v1beta1.DVVTriplets";
|
|
342
504
|
value: Uint8Array;
|
|
343
505
|
}
|
|
344
|
-
/**
|
|
506
|
+
/**
|
|
507
|
+
* DVVTriplets defines an array of DVVTriplet objects.
|
|
508
|
+
* @name DVVTripletsAmino
|
|
509
|
+
* @package cosmos.staking.v1beta1
|
|
510
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplets
|
|
511
|
+
*/
|
|
345
512
|
export interface DVVTripletsAmino {
|
|
346
513
|
triplets: DVVTripletAmino[];
|
|
347
514
|
}
|
|
@@ -353,13 +520,22 @@ export interface DVVTripletsAminoMsg {
|
|
|
353
520
|
* Delegation represents the bond with tokens held by an account. It is
|
|
354
521
|
* owned by one delegator, and is associated with the voting power of one
|
|
355
522
|
* validator.
|
|
523
|
+
* @name Delegation
|
|
524
|
+
* @package cosmos.staking.v1beta1
|
|
525
|
+
* @see proto type: cosmos.staking.v1beta1.Delegation
|
|
356
526
|
*/
|
|
357
527
|
export interface Delegation {
|
|
358
|
-
/**
|
|
528
|
+
/**
|
|
529
|
+
* delegator_address is the encoded address of the delegator.
|
|
530
|
+
*/
|
|
359
531
|
delegatorAddress: string;
|
|
360
|
-
/**
|
|
532
|
+
/**
|
|
533
|
+
* validator_address is the encoded address of the validator.
|
|
534
|
+
*/
|
|
361
535
|
validatorAddress: string;
|
|
362
|
-
/**
|
|
536
|
+
/**
|
|
537
|
+
* shares define the delegation shares received.
|
|
538
|
+
*/
|
|
363
539
|
shares: string;
|
|
364
540
|
}
|
|
365
541
|
export interface DelegationProtoMsg {
|
|
@@ -370,13 +546,22 @@ export interface DelegationProtoMsg {
|
|
|
370
546
|
* Delegation represents the bond with tokens held by an account. It is
|
|
371
547
|
* owned by one delegator, and is associated with the voting power of one
|
|
372
548
|
* validator.
|
|
549
|
+
* @name DelegationAmino
|
|
550
|
+
* @package cosmos.staking.v1beta1
|
|
551
|
+
* @see proto type: cosmos.staking.v1beta1.Delegation
|
|
373
552
|
*/
|
|
374
553
|
export interface DelegationAmino {
|
|
375
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* delegator_address is the encoded address of the delegator.
|
|
556
|
+
*/
|
|
376
557
|
delegator_address?: string;
|
|
377
|
-
/**
|
|
558
|
+
/**
|
|
559
|
+
* validator_address is the encoded address of the validator.
|
|
560
|
+
*/
|
|
378
561
|
validator_address?: string;
|
|
379
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* shares define the delegation shares received.
|
|
564
|
+
*/
|
|
380
565
|
shares?: string;
|
|
381
566
|
}
|
|
382
567
|
export interface DelegationAminoMsg {
|
|
@@ -386,13 +571,22 @@ export interface DelegationAminoMsg {
|
|
|
386
571
|
/**
|
|
387
572
|
* UnbondingDelegation stores all of a single delegator's unbonding bonds
|
|
388
573
|
* for a single validator in an time-ordered list.
|
|
574
|
+
* @name UnbondingDelegation
|
|
575
|
+
* @package cosmos.staking.v1beta1
|
|
576
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
|
|
389
577
|
*/
|
|
390
578
|
export interface UnbondingDelegation {
|
|
391
|
-
/**
|
|
579
|
+
/**
|
|
580
|
+
* delegator_address is the encoded address of the delegator.
|
|
581
|
+
*/
|
|
392
582
|
delegatorAddress: string;
|
|
393
|
-
/**
|
|
583
|
+
/**
|
|
584
|
+
* validator_address is the encoded address of the validator.
|
|
585
|
+
*/
|
|
394
586
|
validatorAddress: string;
|
|
395
|
-
/**
|
|
587
|
+
/**
|
|
588
|
+
* entries are the unbonding delegation entries.
|
|
589
|
+
*/
|
|
396
590
|
entries: UnbondingDelegationEntry[];
|
|
397
591
|
}
|
|
398
592
|
export interface UnbondingDelegationProtoMsg {
|
|
@@ -402,89 +596,166 @@ export interface UnbondingDelegationProtoMsg {
|
|
|
402
596
|
/**
|
|
403
597
|
* UnbondingDelegation stores all of a single delegator's unbonding bonds
|
|
404
598
|
* for a single validator in an time-ordered list.
|
|
599
|
+
* @name UnbondingDelegationAmino
|
|
600
|
+
* @package cosmos.staking.v1beta1
|
|
601
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
|
|
405
602
|
*/
|
|
406
603
|
export interface UnbondingDelegationAmino {
|
|
407
|
-
/**
|
|
604
|
+
/**
|
|
605
|
+
* delegator_address is the encoded address of the delegator.
|
|
606
|
+
*/
|
|
408
607
|
delegator_address?: string;
|
|
409
|
-
/**
|
|
608
|
+
/**
|
|
609
|
+
* validator_address is the encoded address of the validator.
|
|
610
|
+
*/
|
|
410
611
|
validator_address?: string;
|
|
411
|
-
/**
|
|
612
|
+
/**
|
|
613
|
+
* entries are the unbonding delegation entries.
|
|
614
|
+
*/
|
|
412
615
|
entries: UnbondingDelegationEntryAmino[];
|
|
413
616
|
}
|
|
414
617
|
export interface UnbondingDelegationAminoMsg {
|
|
415
618
|
type: "cosmos-sdk/UnbondingDelegation";
|
|
416
619
|
value: UnbondingDelegationAmino;
|
|
417
620
|
}
|
|
418
|
-
/**
|
|
621
|
+
/**
|
|
622
|
+
* UnbondingDelegationEntry defines an unbonding object with relevant metadata.
|
|
623
|
+
* @name UnbondingDelegationEntry
|
|
624
|
+
* @package cosmos.staking.v1beta1
|
|
625
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
|
|
626
|
+
*/
|
|
419
627
|
export interface UnbondingDelegationEntry {
|
|
420
|
-
/**
|
|
628
|
+
/**
|
|
629
|
+
* creation_height is the height which the unbonding took place.
|
|
630
|
+
*/
|
|
421
631
|
creationHeight: bigint;
|
|
422
|
-
/**
|
|
632
|
+
/**
|
|
633
|
+
* completion_time is the unix time for unbonding completion.
|
|
634
|
+
*/
|
|
423
635
|
completionTime: Date;
|
|
424
|
-
/**
|
|
636
|
+
/**
|
|
637
|
+
* initial_balance defines the tokens initially scheduled to receive at completion.
|
|
638
|
+
*/
|
|
425
639
|
initialBalance: string;
|
|
426
|
-
/**
|
|
640
|
+
/**
|
|
641
|
+
* balance defines the tokens to receive at completion.
|
|
642
|
+
*/
|
|
427
643
|
balance: string;
|
|
428
|
-
/**
|
|
644
|
+
/**
|
|
645
|
+
* Incrementing id that uniquely identifies this entry
|
|
646
|
+
*/
|
|
429
647
|
unbondingId: bigint;
|
|
430
|
-
/**
|
|
648
|
+
/**
|
|
649
|
+
* Strictly positive if this entry's unbonding has been stopped by external modules
|
|
650
|
+
*/
|
|
431
651
|
unbondingOnHoldRefCount: bigint;
|
|
432
652
|
}
|
|
433
653
|
export interface UnbondingDelegationEntryProtoMsg {
|
|
434
654
|
typeUrl: "/cosmos.staking.v1beta1.UnbondingDelegationEntry";
|
|
435
655
|
value: Uint8Array;
|
|
436
656
|
}
|
|
437
|
-
/**
|
|
657
|
+
/**
|
|
658
|
+
* UnbondingDelegationEntry defines an unbonding object with relevant metadata.
|
|
659
|
+
* @name UnbondingDelegationEntryAmino
|
|
660
|
+
* @package cosmos.staking.v1beta1
|
|
661
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
|
|
662
|
+
*/
|
|
438
663
|
export interface UnbondingDelegationEntryAmino {
|
|
439
|
-
/**
|
|
664
|
+
/**
|
|
665
|
+
* creation_height is the height which the unbonding took place.
|
|
666
|
+
*/
|
|
440
667
|
creation_height?: string;
|
|
441
|
-
/**
|
|
668
|
+
/**
|
|
669
|
+
* completion_time is the unix time for unbonding completion.
|
|
670
|
+
*/
|
|
442
671
|
completion_time: string;
|
|
443
|
-
/**
|
|
672
|
+
/**
|
|
673
|
+
* initial_balance defines the tokens initially scheduled to receive at completion.
|
|
674
|
+
*/
|
|
444
675
|
initial_balance?: string;
|
|
445
|
-
/**
|
|
676
|
+
/**
|
|
677
|
+
* balance defines the tokens to receive at completion.
|
|
678
|
+
*/
|
|
446
679
|
balance?: string;
|
|
447
|
-
/**
|
|
680
|
+
/**
|
|
681
|
+
* Incrementing id that uniquely identifies this entry
|
|
682
|
+
*/
|
|
448
683
|
unbonding_id?: string;
|
|
449
|
-
/**
|
|
684
|
+
/**
|
|
685
|
+
* Strictly positive if this entry's unbonding has been stopped by external modules
|
|
686
|
+
*/
|
|
450
687
|
unbonding_on_hold_ref_count?: string;
|
|
451
688
|
}
|
|
452
689
|
export interface UnbondingDelegationEntryAminoMsg {
|
|
453
690
|
type: "cosmos-sdk/UnbondingDelegationEntry";
|
|
454
691
|
value: UnbondingDelegationEntryAmino;
|
|
455
692
|
}
|
|
456
|
-
/**
|
|
693
|
+
/**
|
|
694
|
+
* RedelegationEntry defines a redelegation object with relevant metadata.
|
|
695
|
+
* @name RedelegationEntry
|
|
696
|
+
* @package cosmos.staking.v1beta1
|
|
697
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntry
|
|
698
|
+
*/
|
|
457
699
|
export interface RedelegationEntry {
|
|
458
|
-
/**
|
|
700
|
+
/**
|
|
701
|
+
* creation_height defines the height which the redelegation took place.
|
|
702
|
+
*/
|
|
459
703
|
creationHeight: bigint;
|
|
460
|
-
/**
|
|
704
|
+
/**
|
|
705
|
+
* completion_time defines the unix time for redelegation completion.
|
|
706
|
+
*/
|
|
461
707
|
completionTime: Date;
|
|
462
|
-
/**
|
|
708
|
+
/**
|
|
709
|
+
* initial_balance defines the initial balance when redelegation started.
|
|
710
|
+
*/
|
|
463
711
|
initialBalance: string;
|
|
464
|
-
/**
|
|
712
|
+
/**
|
|
713
|
+
* shares_dst is the amount of destination-validator shares created by redelegation.
|
|
714
|
+
*/
|
|
465
715
|
sharesDst: string;
|
|
466
|
-
/**
|
|
716
|
+
/**
|
|
717
|
+
* Incrementing id that uniquely identifies this entry
|
|
718
|
+
*/
|
|
467
719
|
unbondingId: bigint;
|
|
468
|
-
/**
|
|
720
|
+
/**
|
|
721
|
+
* Strictly positive if this entry's unbonding has been stopped by external modules
|
|
722
|
+
*/
|
|
469
723
|
unbondingOnHoldRefCount: bigint;
|
|
470
724
|
}
|
|
471
725
|
export interface RedelegationEntryProtoMsg {
|
|
472
726
|
typeUrl: "/cosmos.staking.v1beta1.RedelegationEntry";
|
|
473
727
|
value: Uint8Array;
|
|
474
728
|
}
|
|
475
|
-
/**
|
|
729
|
+
/**
|
|
730
|
+
* RedelegationEntry defines a redelegation object with relevant metadata.
|
|
731
|
+
* @name RedelegationEntryAmino
|
|
732
|
+
* @package cosmos.staking.v1beta1
|
|
733
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntry
|
|
734
|
+
*/
|
|
476
735
|
export interface RedelegationEntryAmino {
|
|
477
|
-
/**
|
|
736
|
+
/**
|
|
737
|
+
* creation_height defines the height which the redelegation took place.
|
|
738
|
+
*/
|
|
478
739
|
creation_height?: string;
|
|
479
|
-
/**
|
|
740
|
+
/**
|
|
741
|
+
* completion_time defines the unix time for redelegation completion.
|
|
742
|
+
*/
|
|
480
743
|
completion_time: string;
|
|
481
|
-
/**
|
|
744
|
+
/**
|
|
745
|
+
* initial_balance defines the initial balance when redelegation started.
|
|
746
|
+
*/
|
|
482
747
|
initial_balance?: string;
|
|
483
|
-
/**
|
|
748
|
+
/**
|
|
749
|
+
* shares_dst is the amount of destination-validator shares created by redelegation.
|
|
750
|
+
*/
|
|
484
751
|
shares_dst?: string;
|
|
485
|
-
/**
|
|
752
|
+
/**
|
|
753
|
+
* Incrementing id that uniquely identifies this entry
|
|
754
|
+
*/
|
|
486
755
|
unbonding_id?: string;
|
|
487
|
-
/**
|
|
756
|
+
/**
|
|
757
|
+
* Strictly positive if this entry's unbonding has been stopped by external modules
|
|
758
|
+
*/
|
|
488
759
|
unbonding_on_hold_ref_count?: string;
|
|
489
760
|
}
|
|
490
761
|
export interface RedelegationEntryAminoMsg {
|
|
@@ -494,15 +765,26 @@ export interface RedelegationEntryAminoMsg {
|
|
|
494
765
|
/**
|
|
495
766
|
* Redelegation contains the list of a particular delegator's redelegating bonds
|
|
496
767
|
* from a particular source validator to a particular destination validator.
|
|
768
|
+
* @name Redelegation
|
|
769
|
+
* @package cosmos.staking.v1beta1
|
|
770
|
+
* @see proto type: cosmos.staking.v1beta1.Redelegation
|
|
497
771
|
*/
|
|
498
772
|
export interface Redelegation {
|
|
499
|
-
/**
|
|
773
|
+
/**
|
|
774
|
+
* delegator_address is the bech32-encoded address of the delegator.
|
|
775
|
+
*/
|
|
500
776
|
delegatorAddress: string;
|
|
501
|
-
/**
|
|
777
|
+
/**
|
|
778
|
+
* validator_src_address is the validator redelegation source operator address.
|
|
779
|
+
*/
|
|
502
780
|
validatorSrcAddress: string;
|
|
503
|
-
/**
|
|
781
|
+
/**
|
|
782
|
+
* validator_dst_address is the validator redelegation destination operator address.
|
|
783
|
+
*/
|
|
504
784
|
validatorDstAddress: string;
|
|
505
|
-
/**
|
|
785
|
+
/**
|
|
786
|
+
* entries are the redelegation entries.
|
|
787
|
+
*/
|
|
506
788
|
entries: RedelegationEntry[];
|
|
507
789
|
}
|
|
508
790
|
export interface RedelegationProtoMsg {
|
|
@@ -512,53 +794,98 @@ export interface RedelegationProtoMsg {
|
|
|
512
794
|
/**
|
|
513
795
|
* Redelegation contains the list of a particular delegator's redelegating bonds
|
|
514
796
|
* from a particular source validator to a particular destination validator.
|
|
797
|
+
* @name RedelegationAmino
|
|
798
|
+
* @package cosmos.staking.v1beta1
|
|
799
|
+
* @see proto type: cosmos.staking.v1beta1.Redelegation
|
|
515
800
|
*/
|
|
516
801
|
export interface RedelegationAmino {
|
|
517
|
-
/**
|
|
802
|
+
/**
|
|
803
|
+
* delegator_address is the bech32-encoded address of the delegator.
|
|
804
|
+
*/
|
|
518
805
|
delegator_address?: string;
|
|
519
|
-
/**
|
|
806
|
+
/**
|
|
807
|
+
* validator_src_address is the validator redelegation source operator address.
|
|
808
|
+
*/
|
|
520
809
|
validator_src_address?: string;
|
|
521
|
-
/**
|
|
810
|
+
/**
|
|
811
|
+
* validator_dst_address is the validator redelegation destination operator address.
|
|
812
|
+
*/
|
|
522
813
|
validator_dst_address?: string;
|
|
523
|
-
/**
|
|
814
|
+
/**
|
|
815
|
+
* entries are the redelegation entries.
|
|
816
|
+
*/
|
|
524
817
|
entries: RedelegationEntryAmino[];
|
|
525
818
|
}
|
|
526
819
|
export interface RedelegationAminoMsg {
|
|
527
820
|
type: "cosmos-sdk/Redelegation";
|
|
528
821
|
value: RedelegationAmino;
|
|
529
822
|
}
|
|
530
|
-
/**
|
|
823
|
+
/**
|
|
824
|
+
* Params defines the parameters for the x/staking module.
|
|
825
|
+
* @name Params
|
|
826
|
+
* @package cosmos.staking.v1beta1
|
|
827
|
+
* @see proto type: cosmos.staking.v1beta1.Params
|
|
828
|
+
*/
|
|
531
829
|
export interface Params {
|
|
532
|
-
/**
|
|
830
|
+
/**
|
|
831
|
+
* unbonding_time is the time duration of unbonding.
|
|
832
|
+
*/
|
|
533
833
|
unbondingTime: Duration;
|
|
534
|
-
/**
|
|
834
|
+
/**
|
|
835
|
+
* max_validators is the maximum number of validators.
|
|
836
|
+
*/
|
|
535
837
|
maxValidators: number;
|
|
536
|
-
/**
|
|
838
|
+
/**
|
|
839
|
+
* max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio).
|
|
840
|
+
*/
|
|
537
841
|
maxEntries: number;
|
|
538
|
-
/**
|
|
842
|
+
/**
|
|
843
|
+
* historical_entries is the number of historical entries to persist.
|
|
844
|
+
*/
|
|
539
845
|
historicalEntries: number;
|
|
540
|
-
/**
|
|
846
|
+
/**
|
|
847
|
+
* bond_denom defines the bondable coin denomination.
|
|
848
|
+
*/
|
|
541
849
|
bondDenom: string;
|
|
542
|
-
/**
|
|
850
|
+
/**
|
|
851
|
+
* min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators
|
|
852
|
+
*/
|
|
543
853
|
minCommissionRate: string;
|
|
544
854
|
}
|
|
545
855
|
export interface ParamsProtoMsg {
|
|
546
856
|
typeUrl: "/cosmos.staking.v1beta1.Params";
|
|
547
857
|
value: Uint8Array;
|
|
548
858
|
}
|
|
549
|
-
/**
|
|
859
|
+
/**
|
|
860
|
+
* Params defines the parameters for the x/staking module.
|
|
861
|
+
* @name ParamsAmino
|
|
862
|
+
* @package cosmos.staking.v1beta1
|
|
863
|
+
* @see proto type: cosmos.staking.v1beta1.Params
|
|
864
|
+
*/
|
|
550
865
|
export interface ParamsAmino {
|
|
551
|
-
/**
|
|
866
|
+
/**
|
|
867
|
+
* unbonding_time is the time duration of unbonding.
|
|
868
|
+
*/
|
|
552
869
|
unbonding_time: DurationAmino;
|
|
553
|
-
/**
|
|
870
|
+
/**
|
|
871
|
+
* max_validators is the maximum number of validators.
|
|
872
|
+
*/
|
|
554
873
|
max_validators?: number;
|
|
555
|
-
/**
|
|
874
|
+
/**
|
|
875
|
+
* max_entries is the max entries for either unbonding delegation or redelegation (per pair/trio).
|
|
876
|
+
*/
|
|
556
877
|
max_entries?: number;
|
|
557
|
-
/**
|
|
878
|
+
/**
|
|
879
|
+
* historical_entries is the number of historical entries to persist.
|
|
880
|
+
*/
|
|
558
881
|
historical_entries?: number;
|
|
559
|
-
/**
|
|
882
|
+
/**
|
|
883
|
+
* bond_denom defines the bondable coin denomination.
|
|
884
|
+
*/
|
|
560
885
|
bond_denom?: string;
|
|
561
|
-
/**
|
|
886
|
+
/**
|
|
887
|
+
* min_commission_rate is the chain-wide minimum commission rate that a validator can charge their delegators
|
|
888
|
+
*/
|
|
562
889
|
min_commission_rate: string;
|
|
563
890
|
}
|
|
564
891
|
export interface ParamsAminoMsg {
|
|
@@ -568,6 +895,9 @@ export interface ParamsAminoMsg {
|
|
|
568
895
|
/**
|
|
569
896
|
* DelegationResponse is equivalent to Delegation except that it contains a
|
|
570
897
|
* balance in addition to shares which is more suitable for client responses.
|
|
898
|
+
* @name DelegationResponse
|
|
899
|
+
* @package cosmos.staking.v1beta1
|
|
900
|
+
* @see proto type: cosmos.staking.v1beta1.DelegationResponse
|
|
571
901
|
*/
|
|
572
902
|
export interface DelegationResponse {
|
|
573
903
|
delegation: Delegation;
|
|
@@ -580,6 +910,9 @@ export interface DelegationResponseProtoMsg {
|
|
|
580
910
|
/**
|
|
581
911
|
* DelegationResponse is equivalent to Delegation except that it contains a
|
|
582
912
|
* balance in addition to shares which is more suitable for client responses.
|
|
913
|
+
* @name DelegationResponseAmino
|
|
914
|
+
* @package cosmos.staking.v1beta1
|
|
915
|
+
* @see proto type: cosmos.staking.v1beta1.DelegationResponse
|
|
583
916
|
*/
|
|
584
917
|
export interface DelegationResponseAmino {
|
|
585
918
|
delegation: DelegationAmino;
|
|
@@ -593,6 +926,9 @@ export interface DelegationResponseAminoMsg {
|
|
|
593
926
|
* RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
|
|
594
927
|
* contains a balance in addition to shares which is more suitable for client
|
|
595
928
|
* responses.
|
|
929
|
+
* @name RedelegationEntryResponse
|
|
930
|
+
* @package cosmos.staking.v1beta1
|
|
931
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
|
|
596
932
|
*/
|
|
597
933
|
export interface RedelegationEntryResponse {
|
|
598
934
|
redelegationEntry: RedelegationEntry;
|
|
@@ -606,6 +942,9 @@ export interface RedelegationEntryResponseProtoMsg {
|
|
|
606
942
|
* RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
|
|
607
943
|
* contains a balance in addition to shares which is more suitable for client
|
|
608
944
|
* responses.
|
|
945
|
+
* @name RedelegationEntryResponseAmino
|
|
946
|
+
* @package cosmos.staking.v1beta1
|
|
947
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
|
|
609
948
|
*/
|
|
610
949
|
export interface RedelegationEntryResponseAmino {
|
|
611
950
|
redelegation_entry: RedelegationEntryAmino;
|
|
@@ -619,6 +958,9 @@ export interface RedelegationEntryResponseAminoMsg {
|
|
|
619
958
|
* RedelegationResponse is equivalent to a Redelegation except that its entries
|
|
620
959
|
* contain a balance in addition to shares which is more suitable for client
|
|
621
960
|
* responses.
|
|
961
|
+
* @name RedelegationResponse
|
|
962
|
+
* @package cosmos.staking.v1beta1
|
|
963
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationResponse
|
|
622
964
|
*/
|
|
623
965
|
export interface RedelegationResponse {
|
|
624
966
|
redelegation: Redelegation;
|
|
@@ -632,6 +974,9 @@ export interface RedelegationResponseProtoMsg {
|
|
|
632
974
|
* RedelegationResponse is equivalent to a Redelegation except that its entries
|
|
633
975
|
* contain a balance in addition to shares which is more suitable for client
|
|
634
976
|
* responses.
|
|
977
|
+
* @name RedelegationResponseAmino
|
|
978
|
+
* @package cosmos.staking.v1beta1
|
|
979
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationResponse
|
|
635
980
|
*/
|
|
636
981
|
export interface RedelegationResponseAmino {
|
|
637
982
|
redelegation: RedelegationAmino;
|
|
@@ -644,6 +989,9 @@ export interface RedelegationResponseAminoMsg {
|
|
|
644
989
|
/**
|
|
645
990
|
* Pool is used for tracking bonded and not-bonded token supply of the bond
|
|
646
991
|
* denomination.
|
|
992
|
+
* @name Pool
|
|
993
|
+
* @package cosmos.staking.v1beta1
|
|
994
|
+
* @see proto type: cosmos.staking.v1beta1.Pool
|
|
647
995
|
*/
|
|
648
996
|
export interface Pool {
|
|
649
997
|
notBondedTokens: string;
|
|
@@ -656,6 +1004,9 @@ export interface PoolProtoMsg {
|
|
|
656
1004
|
/**
|
|
657
1005
|
* Pool is used for tracking bonded and not-bonded token supply of the bond
|
|
658
1006
|
* denomination.
|
|
1007
|
+
* @name PoolAmino
|
|
1008
|
+
* @package cosmos.staking.v1beta1
|
|
1009
|
+
* @see proto type: cosmos.staking.v1beta1.Pool
|
|
659
1010
|
*/
|
|
660
1011
|
export interface PoolAmino {
|
|
661
1012
|
not_bonded_tokens: string;
|
|
@@ -668,6 +1019,9 @@ export interface PoolAminoMsg {
|
|
|
668
1019
|
/**
|
|
669
1020
|
* ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
|
|
670
1021
|
* TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
|
|
1022
|
+
* @name ValidatorUpdates
|
|
1023
|
+
* @package cosmos.staking.v1beta1
|
|
1024
|
+
* @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
|
|
671
1025
|
*/
|
|
672
1026
|
export interface ValidatorUpdates {
|
|
673
1027
|
updates: ValidatorUpdate[];
|
|
@@ -679,6 +1033,9 @@ export interface ValidatorUpdatesProtoMsg {
|
|
|
679
1033
|
/**
|
|
680
1034
|
* ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
|
|
681
1035
|
* TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
|
|
1036
|
+
* @name ValidatorUpdatesAmino
|
|
1037
|
+
* @package cosmos.staking.v1beta1
|
|
1038
|
+
* @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
|
|
682
1039
|
*/
|
|
683
1040
|
export interface ValidatorUpdatesAmino {
|
|
684
1041
|
updates: ValidatorUpdateAmino[];
|
|
@@ -687,6 +1044,15 @@ export interface ValidatorUpdatesAminoMsg {
|
|
|
687
1044
|
type: "cosmos-sdk/ValidatorUpdates";
|
|
688
1045
|
value: ValidatorUpdatesAmino;
|
|
689
1046
|
}
|
|
1047
|
+
/**
|
|
1048
|
+
* HistoricalInfo contains header and validator information for a given block.
|
|
1049
|
+
* It is stored as part of staking module's state, which persists the `n` most
|
|
1050
|
+
* recent HistoricalInfo
|
|
1051
|
+
* (`n` is set by the staking module's `historical_entries` parameter).
|
|
1052
|
+
* @name HistoricalInfo
|
|
1053
|
+
* @package cosmos.staking.v1beta1
|
|
1054
|
+
* @see proto type: cosmos.staking.v1beta1.HistoricalInfo
|
|
1055
|
+
*/
|
|
690
1056
|
export declare const HistoricalInfo: {
|
|
691
1057
|
typeUrl: string;
|
|
692
1058
|
aminoType: string;
|
|
@@ -701,6 +1067,13 @@ export declare const HistoricalInfo: {
|
|
|
701
1067
|
toProto(message: HistoricalInfo): Uint8Array;
|
|
702
1068
|
toProtoMsg(message: HistoricalInfo): HistoricalInfoProtoMsg;
|
|
703
1069
|
};
|
|
1070
|
+
/**
|
|
1071
|
+
* CommissionRates defines the initial commission rates to be used for creating
|
|
1072
|
+
* a validator.
|
|
1073
|
+
* @name CommissionRates
|
|
1074
|
+
* @package cosmos.staking.v1beta1
|
|
1075
|
+
* @see proto type: cosmos.staking.v1beta1.CommissionRates
|
|
1076
|
+
*/
|
|
704
1077
|
export declare const CommissionRates: {
|
|
705
1078
|
typeUrl: string;
|
|
706
1079
|
aminoType: string;
|
|
@@ -715,6 +1088,12 @@ export declare const CommissionRates: {
|
|
|
715
1088
|
toProto(message: CommissionRates): Uint8Array;
|
|
716
1089
|
toProtoMsg(message: CommissionRates): CommissionRatesProtoMsg;
|
|
717
1090
|
};
|
|
1091
|
+
/**
|
|
1092
|
+
* Commission defines commission parameters for a given validator.
|
|
1093
|
+
* @name Commission
|
|
1094
|
+
* @package cosmos.staking.v1beta1
|
|
1095
|
+
* @see proto type: cosmos.staking.v1beta1.Commission
|
|
1096
|
+
*/
|
|
718
1097
|
export declare const Commission: {
|
|
719
1098
|
typeUrl: string;
|
|
720
1099
|
aminoType: string;
|
|
@@ -729,6 +1108,12 @@ export declare const Commission: {
|
|
|
729
1108
|
toProto(message: Commission): Uint8Array;
|
|
730
1109
|
toProtoMsg(message: Commission): CommissionProtoMsg;
|
|
731
1110
|
};
|
|
1111
|
+
/**
|
|
1112
|
+
* Description defines a validator description.
|
|
1113
|
+
* @name Description
|
|
1114
|
+
* @package cosmos.staking.v1beta1
|
|
1115
|
+
* @see proto type: cosmos.staking.v1beta1.Description
|
|
1116
|
+
*/
|
|
732
1117
|
export declare const Description: {
|
|
733
1118
|
typeUrl: string;
|
|
734
1119
|
aminoType: string;
|
|
@@ -743,6 +1128,19 @@ export declare const Description: {
|
|
|
743
1128
|
toProto(message: Description): Uint8Array;
|
|
744
1129
|
toProtoMsg(message: Description): DescriptionProtoMsg;
|
|
745
1130
|
};
|
|
1131
|
+
/**
|
|
1132
|
+
* Validator defines a validator, together with the total amount of the
|
|
1133
|
+
* Validator's bond shares and their exchange rate to coins. Slashing results in
|
|
1134
|
+
* a decrease in the exchange rate, allowing correct calculation of future
|
|
1135
|
+
* undelegations without iterating over delegators. When coins are delegated to
|
|
1136
|
+
* this validator, the validator is credited with a delegation whose number of
|
|
1137
|
+
* bond shares is based on the amount of coins delegated divided by the current
|
|
1138
|
+
* exchange rate. Voting power can be calculated as total bonded shares
|
|
1139
|
+
* multiplied by exchange rate.
|
|
1140
|
+
* @name Validator
|
|
1141
|
+
* @package cosmos.staking.v1beta1
|
|
1142
|
+
* @see proto type: cosmos.staking.v1beta1.Validator
|
|
1143
|
+
*/
|
|
746
1144
|
export declare const Validator: {
|
|
747
1145
|
typeUrl: string;
|
|
748
1146
|
aminoType: string;
|
|
@@ -757,6 +1155,12 @@ export declare const Validator: {
|
|
|
757
1155
|
toProto(message: Validator): Uint8Array;
|
|
758
1156
|
toProtoMsg(message: Validator): ValidatorProtoMsg;
|
|
759
1157
|
};
|
|
1158
|
+
/**
|
|
1159
|
+
* ValAddresses defines a repeated set of validator addresses.
|
|
1160
|
+
* @name ValAddresses
|
|
1161
|
+
* @package cosmos.staking.v1beta1
|
|
1162
|
+
* @see proto type: cosmos.staking.v1beta1.ValAddresses
|
|
1163
|
+
*/
|
|
760
1164
|
export declare const ValAddresses: {
|
|
761
1165
|
typeUrl: string;
|
|
762
1166
|
aminoType: string;
|
|
@@ -771,6 +1175,14 @@ export declare const ValAddresses: {
|
|
|
771
1175
|
toProto(message: ValAddresses): Uint8Array;
|
|
772
1176
|
toProtoMsg(message: ValAddresses): ValAddressesProtoMsg;
|
|
773
1177
|
};
|
|
1178
|
+
/**
|
|
1179
|
+
* DVPair is struct that just has a delegator-validator pair with no other data.
|
|
1180
|
+
* It is intended to be used as a marshalable pointer. For example, a DVPair can
|
|
1181
|
+
* be used to construct the key to getting an UnbondingDelegation from state.
|
|
1182
|
+
* @name DVPair
|
|
1183
|
+
* @package cosmos.staking.v1beta1
|
|
1184
|
+
* @see proto type: cosmos.staking.v1beta1.DVPair
|
|
1185
|
+
*/
|
|
774
1186
|
export declare const DVPair: {
|
|
775
1187
|
typeUrl: string;
|
|
776
1188
|
aminoType: string;
|
|
@@ -785,6 +1197,12 @@ export declare const DVPair: {
|
|
|
785
1197
|
toProto(message: DVPair): Uint8Array;
|
|
786
1198
|
toProtoMsg(message: DVPair): DVPairProtoMsg;
|
|
787
1199
|
};
|
|
1200
|
+
/**
|
|
1201
|
+
* DVPairs defines an array of DVPair objects.
|
|
1202
|
+
* @name DVPairs
|
|
1203
|
+
* @package cosmos.staking.v1beta1
|
|
1204
|
+
* @see proto type: cosmos.staking.v1beta1.DVPairs
|
|
1205
|
+
*/
|
|
788
1206
|
export declare const DVPairs: {
|
|
789
1207
|
typeUrl: string;
|
|
790
1208
|
aminoType: string;
|
|
@@ -799,6 +1217,15 @@ export declare const DVPairs: {
|
|
|
799
1217
|
toProto(message: DVPairs): Uint8Array;
|
|
800
1218
|
toProtoMsg(message: DVPairs): DVPairsProtoMsg;
|
|
801
1219
|
};
|
|
1220
|
+
/**
|
|
1221
|
+
* DVVTriplet is struct that just has a delegator-validator-validator triplet
|
|
1222
|
+
* with no other data. It is intended to be used as a marshalable pointer. For
|
|
1223
|
+
* example, a DVVTriplet can be used to construct the key to getting a
|
|
1224
|
+
* Redelegation from state.
|
|
1225
|
+
* @name DVVTriplet
|
|
1226
|
+
* @package cosmos.staking.v1beta1
|
|
1227
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplet
|
|
1228
|
+
*/
|
|
802
1229
|
export declare const DVVTriplet: {
|
|
803
1230
|
typeUrl: string;
|
|
804
1231
|
aminoType: string;
|
|
@@ -813,6 +1240,12 @@ export declare const DVVTriplet: {
|
|
|
813
1240
|
toProto(message: DVVTriplet): Uint8Array;
|
|
814
1241
|
toProtoMsg(message: DVVTriplet): DVVTripletProtoMsg;
|
|
815
1242
|
};
|
|
1243
|
+
/**
|
|
1244
|
+
* DVVTriplets defines an array of DVVTriplet objects.
|
|
1245
|
+
* @name DVVTriplets
|
|
1246
|
+
* @package cosmos.staking.v1beta1
|
|
1247
|
+
* @see proto type: cosmos.staking.v1beta1.DVVTriplets
|
|
1248
|
+
*/
|
|
816
1249
|
export declare const DVVTriplets: {
|
|
817
1250
|
typeUrl: string;
|
|
818
1251
|
aminoType: string;
|
|
@@ -827,6 +1260,14 @@ export declare const DVVTriplets: {
|
|
|
827
1260
|
toProto(message: DVVTriplets): Uint8Array;
|
|
828
1261
|
toProtoMsg(message: DVVTriplets): DVVTripletsProtoMsg;
|
|
829
1262
|
};
|
|
1263
|
+
/**
|
|
1264
|
+
* Delegation represents the bond with tokens held by an account. It is
|
|
1265
|
+
* owned by one delegator, and is associated with the voting power of one
|
|
1266
|
+
* validator.
|
|
1267
|
+
* @name Delegation
|
|
1268
|
+
* @package cosmos.staking.v1beta1
|
|
1269
|
+
* @see proto type: cosmos.staking.v1beta1.Delegation
|
|
1270
|
+
*/
|
|
830
1271
|
export declare const Delegation: {
|
|
831
1272
|
typeUrl: string;
|
|
832
1273
|
aminoType: string;
|
|
@@ -841,6 +1282,13 @@ export declare const Delegation: {
|
|
|
841
1282
|
toProto(message: Delegation): Uint8Array;
|
|
842
1283
|
toProtoMsg(message: Delegation): DelegationProtoMsg;
|
|
843
1284
|
};
|
|
1285
|
+
/**
|
|
1286
|
+
* UnbondingDelegation stores all of a single delegator's unbonding bonds
|
|
1287
|
+
* for a single validator in an time-ordered list.
|
|
1288
|
+
* @name UnbondingDelegation
|
|
1289
|
+
* @package cosmos.staking.v1beta1
|
|
1290
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegation
|
|
1291
|
+
*/
|
|
844
1292
|
export declare const UnbondingDelegation: {
|
|
845
1293
|
typeUrl: string;
|
|
846
1294
|
aminoType: string;
|
|
@@ -855,6 +1303,12 @@ export declare const UnbondingDelegation: {
|
|
|
855
1303
|
toProto(message: UnbondingDelegation): Uint8Array;
|
|
856
1304
|
toProtoMsg(message: UnbondingDelegation): UnbondingDelegationProtoMsg;
|
|
857
1305
|
};
|
|
1306
|
+
/**
|
|
1307
|
+
* UnbondingDelegationEntry defines an unbonding object with relevant metadata.
|
|
1308
|
+
* @name UnbondingDelegationEntry
|
|
1309
|
+
* @package cosmos.staking.v1beta1
|
|
1310
|
+
* @see proto type: cosmos.staking.v1beta1.UnbondingDelegationEntry
|
|
1311
|
+
*/
|
|
858
1312
|
export declare const UnbondingDelegationEntry: {
|
|
859
1313
|
typeUrl: string;
|
|
860
1314
|
aminoType: string;
|
|
@@ -869,6 +1323,12 @@ export declare const UnbondingDelegationEntry: {
|
|
|
869
1323
|
toProto(message: UnbondingDelegationEntry): Uint8Array;
|
|
870
1324
|
toProtoMsg(message: UnbondingDelegationEntry): UnbondingDelegationEntryProtoMsg;
|
|
871
1325
|
};
|
|
1326
|
+
/**
|
|
1327
|
+
* RedelegationEntry defines a redelegation object with relevant metadata.
|
|
1328
|
+
* @name RedelegationEntry
|
|
1329
|
+
* @package cosmos.staking.v1beta1
|
|
1330
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntry
|
|
1331
|
+
*/
|
|
872
1332
|
export declare const RedelegationEntry: {
|
|
873
1333
|
typeUrl: string;
|
|
874
1334
|
aminoType: string;
|
|
@@ -883,6 +1343,13 @@ export declare const RedelegationEntry: {
|
|
|
883
1343
|
toProto(message: RedelegationEntry): Uint8Array;
|
|
884
1344
|
toProtoMsg(message: RedelegationEntry): RedelegationEntryProtoMsg;
|
|
885
1345
|
};
|
|
1346
|
+
/**
|
|
1347
|
+
* Redelegation contains the list of a particular delegator's redelegating bonds
|
|
1348
|
+
* from a particular source validator to a particular destination validator.
|
|
1349
|
+
* @name Redelegation
|
|
1350
|
+
* @package cosmos.staking.v1beta1
|
|
1351
|
+
* @see proto type: cosmos.staking.v1beta1.Redelegation
|
|
1352
|
+
*/
|
|
886
1353
|
export declare const Redelegation: {
|
|
887
1354
|
typeUrl: string;
|
|
888
1355
|
aminoType: string;
|
|
@@ -897,6 +1364,12 @@ export declare const Redelegation: {
|
|
|
897
1364
|
toProto(message: Redelegation): Uint8Array;
|
|
898
1365
|
toProtoMsg(message: Redelegation): RedelegationProtoMsg;
|
|
899
1366
|
};
|
|
1367
|
+
/**
|
|
1368
|
+
* Params defines the parameters for the x/staking module.
|
|
1369
|
+
* @name Params
|
|
1370
|
+
* @package cosmos.staking.v1beta1
|
|
1371
|
+
* @see proto type: cosmos.staking.v1beta1.Params
|
|
1372
|
+
*/
|
|
900
1373
|
export declare const Params: {
|
|
901
1374
|
typeUrl: string;
|
|
902
1375
|
aminoType: string;
|
|
@@ -911,6 +1384,13 @@ export declare const Params: {
|
|
|
911
1384
|
toProto(message: Params): Uint8Array;
|
|
912
1385
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
913
1386
|
};
|
|
1387
|
+
/**
|
|
1388
|
+
* DelegationResponse is equivalent to Delegation except that it contains a
|
|
1389
|
+
* balance in addition to shares which is more suitable for client responses.
|
|
1390
|
+
* @name DelegationResponse
|
|
1391
|
+
* @package cosmos.staking.v1beta1
|
|
1392
|
+
* @see proto type: cosmos.staking.v1beta1.DelegationResponse
|
|
1393
|
+
*/
|
|
914
1394
|
export declare const DelegationResponse: {
|
|
915
1395
|
typeUrl: string;
|
|
916
1396
|
aminoType: string;
|
|
@@ -925,6 +1405,14 @@ export declare const DelegationResponse: {
|
|
|
925
1405
|
toProto(message: DelegationResponse): Uint8Array;
|
|
926
1406
|
toProtoMsg(message: DelegationResponse): DelegationResponseProtoMsg;
|
|
927
1407
|
};
|
|
1408
|
+
/**
|
|
1409
|
+
* RedelegationEntryResponse is equivalent to a RedelegationEntry except that it
|
|
1410
|
+
* contains a balance in addition to shares which is more suitable for client
|
|
1411
|
+
* responses.
|
|
1412
|
+
* @name RedelegationEntryResponse
|
|
1413
|
+
* @package cosmos.staking.v1beta1
|
|
1414
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationEntryResponse
|
|
1415
|
+
*/
|
|
928
1416
|
export declare const RedelegationEntryResponse: {
|
|
929
1417
|
typeUrl: string;
|
|
930
1418
|
aminoType: string;
|
|
@@ -939,6 +1427,14 @@ export declare const RedelegationEntryResponse: {
|
|
|
939
1427
|
toProto(message: RedelegationEntryResponse): Uint8Array;
|
|
940
1428
|
toProtoMsg(message: RedelegationEntryResponse): RedelegationEntryResponseProtoMsg;
|
|
941
1429
|
};
|
|
1430
|
+
/**
|
|
1431
|
+
* RedelegationResponse is equivalent to a Redelegation except that its entries
|
|
1432
|
+
* contain a balance in addition to shares which is more suitable for client
|
|
1433
|
+
* responses.
|
|
1434
|
+
* @name RedelegationResponse
|
|
1435
|
+
* @package cosmos.staking.v1beta1
|
|
1436
|
+
* @see proto type: cosmos.staking.v1beta1.RedelegationResponse
|
|
1437
|
+
*/
|
|
942
1438
|
export declare const RedelegationResponse: {
|
|
943
1439
|
typeUrl: string;
|
|
944
1440
|
aminoType: string;
|
|
@@ -953,6 +1449,13 @@ export declare const RedelegationResponse: {
|
|
|
953
1449
|
toProto(message: RedelegationResponse): Uint8Array;
|
|
954
1450
|
toProtoMsg(message: RedelegationResponse): RedelegationResponseProtoMsg;
|
|
955
1451
|
};
|
|
1452
|
+
/**
|
|
1453
|
+
* Pool is used for tracking bonded and not-bonded token supply of the bond
|
|
1454
|
+
* denomination.
|
|
1455
|
+
* @name Pool
|
|
1456
|
+
* @package cosmos.staking.v1beta1
|
|
1457
|
+
* @see proto type: cosmos.staking.v1beta1.Pool
|
|
1458
|
+
*/
|
|
956
1459
|
export declare const Pool: {
|
|
957
1460
|
typeUrl: string;
|
|
958
1461
|
aminoType: string;
|
|
@@ -967,6 +1470,13 @@ export declare const Pool: {
|
|
|
967
1470
|
toProto(message: Pool): Uint8Array;
|
|
968
1471
|
toProtoMsg(message: Pool): PoolProtoMsg;
|
|
969
1472
|
};
|
|
1473
|
+
/**
|
|
1474
|
+
* ValidatorUpdates defines an array of abci.ValidatorUpdate objects.
|
|
1475
|
+
* TODO: explore moving this to proto/cosmos/base to separate modules from tendermint dependence
|
|
1476
|
+
* @name ValidatorUpdates
|
|
1477
|
+
* @package cosmos.staking.v1beta1
|
|
1478
|
+
* @see proto type: cosmos.staking.v1beta1.ValidatorUpdates
|
|
1479
|
+
*/
|
|
970
1480
|
export declare const ValidatorUpdates: {
|
|
971
1481
|
typeUrl: string;
|
|
972
1482
|
aminoType: string;
|