200 lines
5.7 KiB
Go
200 lines
5.7 KiB
Go
package vesting
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/armon/go-metrics"
|
|
|
|
"github.com/cosmos/cosmos-sdk/telemetry"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
|
|
)
|
|
|
|
type msgServer struct {
|
|
keeper.AccountKeeper
|
|
types.BankKeeper
|
|
}
|
|
|
|
// NewMsgServerImpl returns an implementation of the vesting MsgServer interface,
|
|
// wrapping the corresponding AccountKeeper and BankKeeper.
|
|
func NewMsgServerImpl(k keeper.AccountKeeper, bk types.BankKeeper) types.MsgServer {
|
|
return &msgServer{AccountKeeper: k, BankKeeper: bk}
|
|
}
|
|
|
|
var _ types.MsgServer = msgServer{}
|
|
|
|
func (s msgServer) CreateVestingAccount(goCtx context.Context, msg *types.MsgCreateVestingAccount) (*types.MsgCreateVestingAccountResponse, error) {
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
ak := s.AccountKeeper
|
|
bk := s.BankKeeper
|
|
|
|
if err := bk.IsSendEnabledCoins(ctx, msg.Amount...); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
from, err := sdk.AccAddressFromBech32(msg.FromAddress)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
to, err := sdk.AccAddressFromBech32(msg.ToAddress)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if bk.BlockedAddr(to) {
|
|
return nil, sdkerrors.Wrapf(sdkerrors.ErrUnauthorized, "%s is not allowed to receive funds", msg.ToAddress)
|
|
}
|
|
|
|
if acc := ak.GetAccount(ctx, to); acc != nil {
|
|
return nil, sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, "account %s already exists", msg.ToAddress)
|
|
}
|
|
|
|
baseAccount := authtypes.NewBaseAccountWithAddress(to)
|
|
baseAccount = ak.NewAccount(ctx, baseAccount).(*authtypes.BaseAccount)
|
|
baseVestingAccount := types.NewBaseVestingAccount(baseAccount, msg.Amount.Sort(), msg.EndTime)
|
|
|
|
var vestingAccount authtypes.AccountI
|
|
if msg.Delayed {
|
|
vestingAccount = types.NewDelayedVestingAccountRaw(baseVestingAccount)
|
|
} else {
|
|
vestingAccount = types.NewContinuousVestingAccountRaw(baseVestingAccount, ctx.BlockTime().Unix())
|
|
}
|
|
|
|
ak.SetAccount(ctx, vestingAccount)
|
|
|
|
defer func() {
|
|
telemetry.IncrCounter(1, "new", "account")
|
|
|
|
for _, a := range msg.Amount {
|
|
if a.Amount.IsInt64() {
|
|
telemetry.SetGaugeWithLabels(
|
|
[]string{"tx", "msg", "create_vesting_account"},
|
|
float32(a.Amount.Int64()),
|
|
[]metrics.Label{telemetry.NewLabel("denom", a.Denom)},
|
|
)
|
|
}
|
|
}
|
|
}()
|
|
|
|
if err = bk.SendCoins(ctx, from, to, msg.Amount); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &types.MsgCreateVestingAccountResponse{}, nil
|
|
}
|
|
|
|
func (s msgServer) CreatePermanentLockedAccount(goCtx context.Context, msg *types.MsgCreatePermanentLockedAccount) (*types.MsgCreatePermanentLockedAccountResponse, error) {
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
ak := s.AccountKeeper
|
|
bk := s.BankKeeper
|
|
|
|
if err := bk.IsSendEnabledCoins(ctx, msg.Amount...); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
from, err := sdk.AccAddressFromBech32(msg.FromAddress)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
to, err := sdk.AccAddressFromBech32(msg.ToAddress)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if bk.BlockedAddr(to) {
|
|
return nil, sdkerrors.Wrapf(sdkerrors.ErrUnauthorized, "%s is not allowed to receive funds", msg.ToAddress)
|
|
}
|
|
|
|
if acc := ak.GetAccount(ctx, to); acc != nil {
|
|
return nil, sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, "account %s already exists", msg.ToAddress)
|
|
}
|
|
|
|
baseAccount := authtypes.NewBaseAccountWithAddress(to)
|
|
baseAccount = ak.NewAccount(ctx, baseAccount).(*authtypes.BaseAccount)
|
|
vestingAccount := types.NewPermanentLockedAccount(baseAccount, msg.Amount)
|
|
|
|
ak.SetAccount(ctx, vestingAccount)
|
|
|
|
defer func() {
|
|
telemetry.IncrCounter(1, "new", "account")
|
|
|
|
for _, a := range msg.Amount {
|
|
if a.Amount.IsInt64() {
|
|
telemetry.SetGaugeWithLabels(
|
|
[]string{"tx", "msg", "create_permanent_locked_account"},
|
|
float32(a.Amount.Int64()),
|
|
[]metrics.Label{telemetry.NewLabel("denom", a.Denom)},
|
|
)
|
|
}
|
|
}
|
|
}()
|
|
|
|
if err = bk.SendCoins(ctx, from, to, msg.Amount); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &types.MsgCreatePermanentLockedAccountResponse{}, nil
|
|
}
|
|
|
|
func (s msgServer) CreatePeriodicVestingAccount(goCtx context.Context, msg *types.MsgCreatePeriodicVestingAccount) (*types.MsgCreatePeriodicVestingAccountResponse, error) {
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
|
|
ak := s.AccountKeeper
|
|
bk := s.BankKeeper
|
|
|
|
from, err := sdk.AccAddressFromBech32(msg.FromAddress)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
to, err := sdk.AccAddressFromBech32(msg.ToAddress)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if s.BankKeeper.BlockedAddr(to) {
|
|
return nil, sdkerrors.Wrapf(sdkerrors.ErrUnauthorized, "%s is not allowed to receive funds", msg.ToAddress)
|
|
}
|
|
|
|
if acc := ak.GetAccount(ctx, to); acc != nil {
|
|
return nil, sdkerrors.Wrapf(sdkerrors.ErrInvalidRequest, "account %s already exists", msg.ToAddress)
|
|
}
|
|
|
|
var totalCoins sdk.Coins
|
|
for _, period := range msg.VestingPeriods {
|
|
totalCoins = totalCoins.Add(period.Amount...)
|
|
}
|
|
|
|
if err := bk.IsSendEnabledCoins(ctx, totalCoins...); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
baseAccount := authtypes.NewBaseAccountWithAddress(to)
|
|
baseAccount = ak.NewAccount(ctx, baseAccount).(*authtypes.BaseAccount)
|
|
vestingAccount := types.NewPeriodicVestingAccount(baseAccount, totalCoins.Sort(), msg.StartTime, msg.VestingPeriods)
|
|
|
|
ak.SetAccount(ctx, vestingAccount)
|
|
|
|
defer func() {
|
|
telemetry.IncrCounter(1, "new", "account")
|
|
|
|
for _, a := range totalCoins {
|
|
if a.Amount.IsInt64() {
|
|
telemetry.SetGaugeWithLabels(
|
|
[]string{"tx", "msg", "create_periodic_vesting_account"},
|
|
float32(a.Amount.Int64()),
|
|
[]metrics.Label{telemetry.NewLabel("denom", a.Denom)},
|
|
)
|
|
}
|
|
}
|
|
}()
|
|
|
|
if err = bk.SendCoins(ctx, from, to, totalCoins); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &types.MsgCreatePeriodicVestingAccountResponse{}, nil
|
|
}
|