gpu-compute-chain/x/colinear-core/keeper/msg_server_new_auction.go

92 lines
2.5 KiB
Go
Raw Normal View History

2022-08-27 14:19:03 -07:00
package keeper
import (
"context"
2022-08-27 19:48:00 -07:00
"errors"
"fmt"
"math/big"
2022-08-27 19:48:00 -07:00
"strconv"
2022-08-27 14:19:03 -07:00
"colinear/x/colinear-core/auctionconfig"
"colinear/x/colinear-core/types"
2022-08-27 19:48:00 -07:00
2022-08-27 14:19:03 -07:00
sdk "github.com/cosmos/cosmos-sdk/types"
)
func (k msgServer) NewAuction(goCtx context.Context, msg *types.MsgNewAuction) (*types.MsgNewAuctionResponse, error) {
ctx := sdk.UnwrapSDKContext(goCtx)
2022-08-27 19:48:00 -07:00
next, found := k.Keeper.GetNextAuction(ctx)
if !found {
2022-09-05 15:17:55 -07:00
return nil, errors.New("unable to get next auction index")
2022-08-27 19:48:00 -07:00
}
index := strconv.FormatUint(next.AuctionId, 10)
2022-09-05 15:17:55 -07:00
auctionLen := msg.LeaseEnd - uint64(ctx.BlockTime().Unix())
if auctionLen < auctionconfig.MinLeasePeriod {
return nil, fmt.Errorf(
"Auction length %d is below min lease period of %d",
auctionLen,
auctionconfig.MinLeasePeriod,
)
}
if auctionLen > auctionconfig.MaxLeasePeriod {
return nil, fmt.Errorf(
"Auction length %d is above max lease period of %d",
auctionLen,
auctionconfig.MaxLeasePeriod,
)
}
2022-08-27 19:48:00 -07:00
auction := types.Auction{
Index: index,
Name: msg.Name,
Description: msg.Description,
// best bid -> null
// Best: new(types.Bid),
Deadline: uint64(ctx.BlockHeight()) + auctionconfig.AuctionTime,
Denom: msg.Denom,
Owner: msg.Creator,
Ceiling: msg.Ceiling,
// lease start -> null
// instead, initialize when auction is finalized
// LeaseStart: uint64(ctx.BlockTime().Unix()),
LeaseEnd: msg.LeaseEnd,
// remaining payout -> null
// Remaining: "0",
}
2022-09-01 00:08:30 -07:00
senderAddr, err := sdk.AccAddressFromBech32(msg.Creator)
if err != nil {
return nil, fmt.Errorf("sender address `%s` format invalid (bech32 required)", msg.Creator)
}
2022-09-01 00:08:30 -07:00
spendable := k.bank.SpendableCoins(ctx, senderAddr)
// if balance does not exceed or equal proposed auction ceiling...
ceiling := new(big.Int)
ceiling.SetString(auction.Ceiling, 10)
if spendable.AmountOf(auction.Denom).BigInt().Cmp(ceiling) == -1 {
return nil, fmt.Errorf("not enough balance to set ceiling %s%s", msg.Ceiling, auction.Denom)
2022-08-27 19:48:00 -07:00
}
2022-09-01 00:08:30 -07:00
coins := sdk.NewCoins(sdk.Coin{
Amount: sdk.NewIntFromBigInt(ceiling),
2022-09-01 00:08:30 -07:00
Denom: auction.Denom,
})
if err := k.Keeper.bank.SendCoinsFromAccountToModule(ctx, senderAddr, types.ModuleName, coins); err != nil {
2022-09-01 00:08:30 -07:00
return nil, fmt.Errorf("failed to transfer %s%s", auction.Ceiling, auction.Denom)
}
2022-08-27 19:48:00 -07:00
k.Keeper.SetAuction(ctx, auction)
next.AuctionId++
k.Keeper.SetNextAuction(ctx, types.NextAuction{AuctionId: next.AuctionId})
2022-08-27 14:19:03 -07:00
2022-08-27 19:48:00 -07:00
return &types.MsgNewAuctionResponse{
AuctionId: strconv.FormatUint(next.AuctionId, 10),
}, nil
2022-08-27 14:19:03 -07:00
}