gpu-compute-chain/x/cosmostest/keeper/auction_state.go

101 lines
2.7 KiB
Go
Raw Normal View History

2022-08-31 15:40:28 -07:00
package keeper
import (
2022-09-02 14:03:03 -07:00
"cosmos-test/x/cosmostest/math"
2022-08-31 15:40:28 -07:00
"cosmos-test/x/cosmostest/memdb"
"math/big"
2022-09-02 14:03:03 -07:00
"time"
2022-08-31 15:40:28 -07:00
"github.com/cosmos/cosmos-sdk/types"
sdk "github.com/cosmos/cosmos-sdk/types"
2022-08-31 15:40:28 -07:00
"github.com/pkg/errors"
)
func (k *Keeper) AuctionIsExpired(ctx types.Context, auctionId string) (bool, error) {
auction, found := k.GetAuction(ctx, auctionId)
// make sure the auction exists on-chain
if !found {
return true, errors.Errorf("auction %s not found", auctionId)
}
return uint64(ctx.BlockHeight()) >= auction.Deadline, nil
}
2022-09-01 12:13:17 -07:00
func (k *Keeper) FinalizeExpiredAuctions(ctx types.Context) {
2022-08-31 15:40:28 -07:00
memdb.BidDB.ForEachAuction(func(auctionId string) error {
auction, found := k.GetAuction(ctx, auctionId)
// make sure the auction exists on-chain
if !found {
2022-09-02 14:03:03 -07:00
return errors.Errorf("auction %s not found", auctionId)
2022-08-31 15:40:28 -07:00
}
if uint64(ctx.BlockHeight()) >= auction.Deadline {
2022-08-31 15:40:28 -07:00
var err error
auction.Best, err = memdb.BidDB.GetLowestBid(auctionId)
2022-08-31 15:40:28 -07:00
if err != nil {
return errors.Errorf("could not get highest bid for auction %s: %s", auctionId, err)
}
2022-09-02 14:03:03 -07:00
// Remainig Unpaid: Full bid amount
auction.Remaining = auction.Best.Amount
// clear auction
2022-08-31 15:40:28 -07:00
memdb.BidDB.ClearAuction(auctionId)
// pay out remainder to auction creator
ceiling := new(big.Int)
ceiling.SetString(auction.Ceiling, 10)
lowestBidAmt := new(big.Int)
lowestBidAmt.SetString(auction.Best.Amount, 10)
// only pay out if there is a difference
if ceiling.Cmp(lowestBidAmt) == 1 {
amtRemaining := new(big.Int)
amtRemaining.Sub(ceiling, lowestBidAmt)
coins := sdk.NewCoins(sdk.Coin{
Amount: sdk.NewIntFromBigInt(amtRemaining),
Denom: auction.Denom,
})
k.bank.SendCoinsFromModuleToAccount(ctx, "cosmostest", sdk.AccAddress(auction.Owner), coins)
}
// end auction
k.SetAuction(ctx, auction)
2022-08-31 15:40:28 -07:00
}
return nil
})
}
2022-09-01 12:13:17 -07:00
2022-09-02 14:03:03 -07:00
func (k *Keeper) PayAuctionAmountDue(ctx types.Context, auctionId string) error {
auction, found := k.GetAuction(ctx, auctionId)
if !found {
return errors.Errorf("auction %s not found", auctionId)
}
blockTime := ctx.BlockTime()
deadline := time.Unix(int64(auction.Deadline), 0)
2022-09-01 12:13:17 -07:00
2022-09-02 14:03:03 -07:00
if blockTime.After(deadline) {
return nil
} else {
amtTotal := new(big.Int)
amtTotal.SetString(auction.Best.Amount, 10)
amtRemaining := new(big.Int)
amtTotal.SetString(auction.Remaining, 10)
amt, err := math.CalcAmountVestableLinear(
amtTotal,
amtRemaining,
ctx.BlockTime(),
time.Unix(int64(auction.LeaseStart), 0),
time.Unix(int64(auction.LeaseEnd), 0),
)
if err != nil {
return err
}
coins := sdk.NewCoins(sdk.NewCoin(auction.Denom, sdk.NewIntFromBigInt(amt)))
err = k.bank.SendCoinsFromModuleToAccount(ctx, "cosmostest", sdk.AccAddress(auction.Best.Owner), coins)
return err
}
2022-09-01 12:13:17 -07:00
}