Prathamesh Musale
a36063aba6
Reviewed-on: deep-stack/laconic2d#3 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
23 lines
542 B
Go
23 lines
542 B
Go
package auction
|
|
|
|
import "cosmossdk.io/collections"
|
|
|
|
const (
|
|
ModuleName = "auction"
|
|
|
|
// AuctionBurnModuleAccountName is the name of the auction burn module account.
|
|
AuctionBurnModuleAccountName = "auction_burn"
|
|
)
|
|
|
|
// Store prefixes
|
|
var (
|
|
// ParamsKey is the prefix for params key
|
|
ParamsPrefix = collections.NewPrefix(0)
|
|
|
|
AuctionsPrefix = collections.NewPrefix(1)
|
|
AuctionOwnerIndexPrefix = collections.NewPrefix(2)
|
|
|
|
BidsPrefix = collections.NewPrefix(3)
|
|
BidderAuctionIdIndexPrefix = collections.NewPrefix(4)
|
|
)
|