2024-02-09 08:44:45 +00:00
|
|
|
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
|
|
|
|
ParamsKeyPrefix = collections.NewPrefix(0)
|
2024-02-12 08:34:40 +00:00
|
|
|
|
|
|
|
AuctionsKeyPrefix = collections.NewPrefix(1)
|
|
|
|
AuctionOwnerIndexPrefix = collections.NewPrefix(2)
|
2024-02-09 08:44:45 +00:00
|
|
|
)
|