Messages
In this section we describe the processing of the staking messages and the corresponding updates to the state. All created/modified state objects specified by each message are defined within the state section.
MsgCreateValidator
A validator is created using the MsgCreateValidator
message. The validator must be created with an initial delegation from the operator.
This message is expected to fail if:
another validator with this operator address is already registered
another validator with this pubkey is already registered
the initial self-delegation tokens are of a denom not specified as the bonding denom
the commission parameters are faulty, namely:
MaxRate
is either > 1 or < 0the initial
Rate
is either negative or >MaxRate
the initial
MaxChangeRate
is either negative or >MaxRate
the description fields are too large
This message creates and stores the Validator
object at appropriate indexes. Additionally a self-delegation is made with the initial tokens delegation tokens Delegation
. The validator always starts as unbonded but may be bonded in the first end-block.
MsgEditValidator
The Description
, CommissionRate
of a validator can be updated using the MsgEditValidator
message.
This message is expected to fail if:
the initial
CommissionRate
is either negative or >MaxRate
the
CommissionRate
has already been updated within the previous 24 hoursthe
CommissionRate
is >MaxChangeRate
the description fields are too large
This message stores the updated Validator
object.
MsgDelegate
Within this message the delegator provides coins, and in return receives some amount of their validator's (newly created) delegator-shares that are assigned to Delegation.Shares
.
This message is expected to fail if:
the validator does not exist
the
Amount
Coin
has a denomination different than one defined byparams.BondDenom
the exchange rate is invalid, meaning the validator has no tokens (due to slashing) but there are outstanding shares
the amount delegated is less than the minimum allowed delegation
If an existing Delegation
object for provided addresses does not already exist then it is created as part of this message otherwise the existing Delegation
is updated to include the newly received shares.
The delegator receives newly minted shares at the current exchange rate. The exchange rate is the number of existing shares in the validator divided by the number of currently delegated tokens.
The validator is updated in the ValidatorByPower
index, and the delegation is tracked in validator object in the Validators
index.
It is possible to delegate to a jailed validator, the only difference being it will not be added to the power index until it is unjailed.
MsgUndelegate
The MsgUndelegate
message allows delegators to undelegate their tokens from validator.
This message returns a response containing the completion time of the undelegation:
This message is expected to fail if:
the delegation doesn't exist
the validator doesn't exist
the delegation has less shares than the ones worth of
Amount
existing
UnbondingDelegation
has maximum entries as defined byparams.MaxEntries
the
Amount
has a denomination different than one defined byparams.BondDenom
When this message is processed the following actions occur:
validator's
DelegatorShares
and the delegation'sShares
are both reduced by the messageSharesAmount
calculate the token worth of the shares remove that amount tokens held within the validator
with those removed tokens, if the validator is:
Bonded
- add them to an entry inUnbondingDelegation
(createUnbondingDelegation
if it doesn't exist) with a completion time a full unbonding period from the current time. Update pool shares to reduce BondedTokens and increase NotBondedTokens by token worth of the shares.Unbonding
- add them to an entry inUnbondingDelegation
(createUnbondingDelegation
if it doesn't exist) with the same completion time as the validator (UnbondingMinTime
).Unbonded
- then send the coins the messageDelegatorAddr
if there are no more
Shares
in the delegation, then the delegation object is removed from the storeunder this situation if the delegation is the validator's self-delegation then also jail the validator.
MsgCancelUnbondingDelegation
The MsgCancelUnbondingDelegation
message allows delegators to cancel the unbondingDelegation
entry and deleagate back to a previous validator.
This message is expected to fail if:
the
unbondingDelegation
entry is already processed.the
cancel unbonding delegation
amount is greater than theunbondingDelegation
entry balance.the
cancel unbonding delegation
height doesn't exists in theunbondingDelegationQueue
of the delegator.
When this message is processed the following actions occur:
if the
unbondingDelegation
Entry balance is zeroin this condition
unbondingDelegation
entry will be removed fromunbondingDelegationQueue
.otherwise
unbondingDelegationQueue
will be updated with newunbondingDelegation
entry balance and initial balance
the validator's
DelegatorShares
and the delegation'sShares
are both increased by the messageAmount
.
MsgBeginRedelegate
The redelegation command allows delegators to instantly switch validators. Once the unbonding period has passed, the redelegation is automatically completed in the EndBlocker.
This message returns a response containing the completion time of the redelegation:
This message is expected to fail if:
the delegation doesn't exist
the source or destination validators don't exist
the delegation has less shares than the ones worth of
Amount
the source validator has a receiving redelegation which is not matured (aka. the redelegation may be transitive)
existing
Redelegation
has maximum entries as defined byparams.MaxEntries
the
Amount
Coin
has a denomination different than one defined byparams.BondDenom
When this message is processed the following actions occur:
the source validator's
DelegatorShares
and the delegationsShares
are both reduced by the messageSharesAmount
calculate the token worth of the shares remove that amount tokens held within the source validator.
if the source validator is:
Bonded
- add an entry to theRedelegation
(createRedelegation
if it doesn't exist) with a completion time a full unbonding period from the current time. Update pool shares to reduce BondedTokens and increase NotBondedTokens by token worth of the shares (this may be effectively reversed in the next step however).Unbonding
- add an entry to theRedelegation
(createRedelegation
if it doesn't exist) with the same completion time as the validator (UnbondingMinTime
).Unbonded
- no action required in this step
Delegate the token worth to the destination validator, possibly moving tokens back to the bonded state.
if there are no more
Shares
in the source delegation, then the source delegation object is removed from the storeunder this situation if the delegation is the validator's self-delegation then also jail the validator.
MsgUpdateParams
The MsgUpdateParams
update the staking module parameters. The params are updated through a governance proposal where the signer is the gov module account address.
The message handling can fail if:
signer is not the authority defined in the staking keeper (usually the gov module account).
Last updated