github.com/InjectiveLabs/sdk-go@v1.53.0/chain/auction/types/key.go (about)

     1  package types
     2  
     3  const (
     4  	ModuleName = "auction"
     5  	StoreKey   = ModuleName
     6  	TStoreKey  = "transient_auction"
     7  )
     8  
     9  var (
    10  	// Keys for store prefixes
    11  	BidsKey              = []byte{0x01}
    12  	AuctionRoundKey      = []byte{0x03}
    13  	KeyEndingTimeStamp   = []byte{0x04}
    14  	KeyLastAuctionResult = []byte{0x05}
    15  	ParamsKey            = []byte{0x10}
    16  )