cosmos-sdk/x/stake/handler.go

278 lines
7.4 KiB
Go
Raw Normal View History

2018-02-23 15:57:31 -08:00
package stake
import (
2018-03-16 12:47:17 -07:00
"bytes"
2018-02-23 15:57:31 -08:00
sdk "github.com/cosmos/cosmos-sdk/types"
abci "github.com/tendermint/abci/types"
2018-02-23 15:57:31 -08:00
)
2018-03-20 06:56:07 -07:00
//nolint
const (
GasDeclareCandidacy int64 = 20
GasEditCandidacy int64 = 20
GasDelegate int64 = 20
GasUnbond int64 = 20
)
2018-02-23 15:57:31 -08:00
2018-04-06 11:35:54 -07:00
func NewHandler(k Keeper) sdk.Handler {
2018-02-27 18:07:20 -08:00
return func(ctx sdk.Context, msg sdk.Msg) sdk.Result {
2018-03-20 06:56:07 -07:00
// NOTE msg already has validate basic run
switch msg := msg.(type) {
case MsgDeclareCandidacy:
return handleMsgDeclareCandidacy(ctx, msg, k)
case MsgEditCandidacy:
return handleMsgEditCandidacy(ctx, msg, k)
case MsgDelegate:
return handleMsgDelegate(ctx, msg, k)
case MsgUnbond:
return handleMsgUnbond(ctx, msg, k)
default:
2018-03-23 09:15:41 -07:00
return sdk.ErrTxDecode("invalid message parse in staking module").Result()
2018-02-27 18:07:20 -08:00
}
2018-02-23 15:57:31 -08:00
}
}
// NewEndBlocker generates sdk.EndBlocker
// Performs tick functionality
func NewEndBlocker(k Keeper) sdk.EndBlocker {
return func(ctx sdk.Context, req abci.RequestEndBlock) (res abci.ResponseEndBlock) {
res.ValidatorUpdates = k.Tick(ctx)
return
}
}
2018-02-23 15:57:31 -08:00
//_____________________________________________________________________
// These functions assume everything has been authenticated,
// now we just perform action and save
func handleMsgDeclareCandidacy(ctx sdk.Context, msg MsgDeclareCandidacy, k Keeper) sdk.Result {
2018-02-23 15:57:31 -08:00
2018-02-27 18:07:20 -08:00
// check to see if the pubkey or sender has been registered before
2018-05-09 21:01:58 -07:00
_, found := k.GetValidator(ctx, msg.ValidatorAddr)
2018-03-20 14:21:18 -07:00
if found {
2018-05-09 21:01:58 -07:00
return ErrValidatorExistsAddr(k.codespace).Result()
2018-02-27 18:07:20 -08:00
}
if msg.Bond.Denom != k.GetParams(ctx).BondDenom {
return ErrBadBondingDenom(k.codespace).Result()
2018-02-27 18:07:20 -08:00
}
2018-03-20 06:56:07 -07:00
if ctx.IsCheckTx() {
return sdk.Result{
GasUsed: GasDeclareCandidacy,
}
}
2018-02-27 18:07:20 -08:00
2018-05-09 21:01:58 -07:00
validator := NewValidator(msg.ValidatorAddr, msg.PubKey, msg.Description)
k.setValidator(ctx, validator)
tags := sdk.NewTags(
"action", []byte("declareCandidacy"),
2018-05-10 17:51:48 -07:00
"validator", msg.ValidatorAddr.Bytes(),
2018-05-09 21:01:58 -07:00
"moniker", []byte(msg.Description.Moniker),
"identity", []byte(msg.Description.Identity),
)
2018-02-23 15:57:31 -08:00
2018-03-20 06:56:07 -07:00
// move coins from the msg.Address account to a (self-bond) delegator account
2018-05-09 21:01:58 -07:00
// the validator account and global shares are updated within here
2018-05-10 17:51:48 -07:00
delegateTags, err := delegate(ctx, k, msg.ValidatorAddr, msg.Bond, validator)
2018-04-03 10:03:49 -07:00
if err != nil {
return err.Result()
}
tags = tags.AppendTags(delegateTags)
2018-05-10 08:19:06 -07:00
return sdk.Result{
Tags: tags,
}
2018-02-23 15:57:31 -08:00
}
func handleMsgEditCandidacy(ctx sdk.Context, msg MsgEditCandidacy, k Keeper) sdk.Result {
2018-02-23 15:57:31 -08:00
2018-05-09 21:01:58 -07:00
// validator must already be registered
validator, found := k.GetValidator(ctx, msg.ValidatorAddr)
2018-03-20 14:21:18 -07:00
if !found {
2018-05-09 21:01:58 -07:00
return ErrBadValidatorAddr(k.codespace).Result()
2018-02-27 18:07:20 -08:00
}
2018-03-20 06:56:07 -07:00
if ctx.IsCheckTx() {
return sdk.Result{
GasUsed: GasEditCandidacy,
}
}
2018-02-23 15:57:31 -08:00
2018-03-20 14:21:18 -07:00
// XXX move to types
// replace all editable fields (clients should autofill existing values)
2018-05-09 21:01:58 -07:00
validator.Description.Moniker = msg.Description.Moniker
validator.Description.Identity = msg.Description.Identity
validator.Description.Website = msg.Description.Website
validator.Description.Details = msg.Description.Details
k.setValidator(ctx, validator)
tags := sdk.NewTags(
"action", []byte("editCandidacy"),
2018-05-10 17:51:48 -07:00
"validator", msg.ValidatorAddr.Bytes(),
2018-05-09 21:01:58 -07:00
"moniker", []byte(msg.Description.Moniker),
"identity", []byte(msg.Description.Identity),
)
return sdk.Result{
Tags: tags,
}
2018-02-23 15:57:31 -08:00
}
func handleMsgDelegate(ctx sdk.Context, msg MsgDelegate, k Keeper) sdk.Result {
2018-02-27 18:07:20 -08:00
2018-05-09 21:01:58 -07:00
validator, found := k.GetValidator(ctx, msg.ValidatorAddr)
2018-03-20 14:21:18 -07:00
if !found {
2018-05-09 21:01:58 -07:00
return ErrBadValidatorAddr(k.codespace).Result()
2018-02-27 18:07:20 -08:00
}
if msg.Bond.Denom != k.GetParams(ctx).BondDenom {
return ErrBadBondingDenom(k.codespace).Result()
2018-02-27 18:07:20 -08:00
}
2018-05-09 21:01:58 -07:00
if validator.Status == sdk.Revoked {
return ErrValidatorRevoked(k.codespace).Result()
2018-04-03 19:26:39 -07:00
}
2018-03-20 06:56:07 -07:00
if ctx.IsCheckTx() {
return sdk.Result{
GasUsed: GasDelegate,
}
}
2018-05-09 21:01:58 -07:00
tags, err := delegate(ctx, k, msg.DelegatorAddr, msg.Bond, validator)
2018-04-03 10:03:49 -07:00
if err != nil {
return err.Result()
}
2018-05-10 08:19:06 -07:00
return sdk.Result{
Tags: tags,
}
2018-02-23 15:57:31 -08:00
}
2018-04-03 19:26:39 -07:00
// common functionality between handlers
2018-04-01 09:05:58 -07:00
func delegate(ctx sdk.Context, k Keeper, delegatorAddr sdk.Address,
2018-05-09 21:01:58 -07:00
bondAmt sdk.Coin, validator Validator) (sdk.Tags, sdk.Error) {
2018-02-23 15:57:31 -08:00
// Get or create the delegator bond
2018-05-09 21:01:58 -07:00
bond, found := k.GetDelegation(ctx, delegatorAddr, validator.Address)
2018-03-20 14:21:18 -07:00
if !found {
2018-05-09 18:39:14 -07:00
bond = Delegation{
2018-03-20 14:21:18 -07:00
DelegatorAddr: delegatorAddr,
2018-05-09 21:01:58 -07:00
ValidatorAddr: validator.Address,
2018-04-30 14:21:14 -07:00
Shares: sdk.ZeroRat(),
2018-02-23 15:57:31 -08:00
}
}
// Account new shares, save
2018-04-03 19:26:39 -07:00
pool := k.GetPool(ctx)
_, _, err := k.coinKeeper.SubtractCoins(ctx, bond.DelegatorAddr, sdk.Coins{bondAmt})
if err != nil {
2018-05-10 08:19:06 -07:00
return nil, err
}
validator, pool, newShares := validator.addTokens(pool, bondAmt.Amount)
bond.Shares = bond.Shares.Add(newShares)
2018-04-03 19:26:39 -07:00
// Update bond height
bond.Height = ctx.BlockHeight()
2018-05-09 18:39:14 -07:00
k.setDelegation(ctx, bond)
2018-05-09 21:01:58 -07:00
k.setValidator(ctx, validator)
2018-04-03 19:26:39 -07:00
k.setPool(ctx, pool)
2018-05-10 17:51:48 -07:00
tags := sdk.NewTags("action", []byte("delegate"), "delegator", delegatorAddr.Bytes(), "validator", validator.Address.Bytes())
2018-05-10 08:19:06 -07:00
return tags, nil
}
func handleMsgUnbond(ctx sdk.Context, msg MsgUnbond, k Keeper) sdk.Result {
2018-02-23 15:57:31 -08:00
2018-02-27 18:07:20 -08:00
// check if bond has any shares in it unbond
2018-05-09 21:01:58 -07:00
bond, found := k.GetDelegation(ctx, msg.DelegatorAddr, msg.ValidatorAddr)
2018-03-20 14:21:18 -07:00
if !found {
return ErrNoDelegatorForAddress(k.codespace).Result()
2018-03-16 12:47:17 -07:00
}
2018-04-30 14:21:14 -07:00
if !bond.Shares.GT(sdk.ZeroRat()) { // bond shares < msg shares
return ErrInsufficientFunds(k.codespace).Result()
2018-02-27 18:07:20 -08:00
}
2018-04-10 20:51:09 -07:00
var shares sdk.Rat
2018-02-27 18:07:20 -08:00
2018-03-27 17:54:54 -07:00
// test that there are enough shares to unbond
if msg.Shares == "MAX" {
2018-04-30 14:21:14 -07:00
if !bond.Shares.GT(sdk.ZeroRat()) {
return ErrNotEnoughBondShares(k.codespace, msg.Shares).Result()
2018-03-27 17:54:54 -07:00
}
} else {
2018-04-10 20:51:09 -07:00
var err sdk.Error
shares, err = sdk.NewRatFromDecimal(msg.Shares)
if err != nil {
return err.Result()
}
2018-04-03 19:26:39 -07:00
if bond.Shares.LT(shares) {
return ErrNotEnoughBondShares(k.codespace, msg.Shares).Result()
2018-02-27 18:07:20 -08:00
}
}
2018-03-27 17:54:54 -07:00
2018-05-09 21:01:58 -07:00
// get validator
validator, found := k.GetValidator(ctx, msg.ValidatorAddr)
2018-03-27 17:54:54 -07:00
if !found {
2018-05-09 21:01:58 -07:00
return ErrNoValidatorForAddress(k.codespace).Result()
2018-03-27 17:54:54 -07:00
}
2018-03-20 06:56:07 -07:00
if ctx.IsCheckTx() {
return sdk.Result{
GasUsed: GasUnbond,
}
}
2018-02-27 18:07:20 -08:00
2018-02-23 15:57:31 -08:00
// retrieve the amount of bonds to remove (TODO remove redundancy already serialized)
2018-03-20 06:56:07 -07:00
if msg.Shares == "MAX" {
2018-02-23 15:57:31 -08:00
shares = bond.Shares
}
// subtract bond tokens from delegator bond
bond.Shares = bond.Shares.Sub(shares)
2018-03-27 17:54:54 -07:00
// remove the bond
2018-02-23 15:57:31 -08:00
revokeCandidacy := false
if bond.Shares.IsZero() {
2018-05-09 21:01:58 -07:00
// if the bond is the owner of the validator then
2018-02-23 15:57:31 -08:00
// trigger a revoke candidacy
2018-05-09 21:01:58 -07:00
if bytes.Equal(bond.DelegatorAddr, validator.Address) &&
validator.Status != sdk.Revoked {
2018-02-23 15:57:31 -08:00
revokeCandidacy = true
}
2018-05-09 18:39:14 -07:00
k.removeDelegation(ctx, bond)
2018-02-23 15:57:31 -08:00
} else {
// Update bond height
bond.Height = ctx.BlockHeight()
2018-05-09 18:39:14 -07:00
k.setDelegation(ctx, bond)
2018-02-23 15:57:31 -08:00
}
2018-03-16 12:47:17 -07:00
// Add the coins
2018-03-29 03:11:47 -07:00
p := k.GetPool(ctx)
validator, p, returnAmount := validator.removeShares(p, shares)
returnCoins := sdk.Coins{{k.GetParams(ctx).BondDenom, returnAmount}}
2018-03-20 14:21:18 -07:00
k.coinKeeper.AddCoins(ctx, bond.DelegatorAddr, returnCoins)
2018-02-23 15:57:31 -08:00
2018-04-03 19:26:39 -07:00
/////////////////////////////////////
2018-05-09 21:01:58 -07:00
// revoke validator if necessary
2018-02-23 15:57:31 -08:00
if revokeCandidacy {
// change the share types to unbonded if they were not already
2018-05-09 21:01:58 -07:00
if validator.Status == sdk.Bonded {
validator.Status = sdk.Unbonded
validator, p = validator.UpdateSharesLocation(p)
2018-02-23 15:57:31 -08:00
}
// lastly update the status
2018-05-09 21:01:58 -07:00
validator.Status = sdk.Revoked
2018-02-23 15:57:31 -08:00
}
2018-05-09 21:01:58 -07:00
// deduct shares from the validator
if validator.DelegatorShares.IsZero() {
k.removeValidator(ctx, validator.Address)
2018-02-23 15:57:31 -08:00
} else {
2018-05-09 21:01:58 -07:00
k.setValidator(ctx, validator)
2018-02-23 15:57:31 -08:00
}
2018-03-29 03:11:47 -07:00
k.setPool(ctx, p)
2018-05-10 17:51:48 -07:00
tags := sdk.NewTags("action", []byte("unbond"), "delegator", msg.DelegatorAddr.Bytes(), "validator", msg.ValidatorAddr.Bytes())
2018-05-10 08:23:46 -07:00
return sdk.Result{
Tags: tags,
}
2018-02-23 15:57:31 -08:00
}