github.com/cosmos/cosmos-sdk@v0.50.10/x/mint/types/keys.go (about)

     1  package types
     2  
     3  import "cosmossdk.io/collections"
     4  
     5  var (
     6  	// MinterKey is the key to use for the keeper store.
     7  	MinterKey = collections.NewPrefix(0)
     8  	ParamsKey = collections.NewPrefix(1)
     9  )
    10  
    11  const (
    12  	// module name
    13  	ModuleName = "mint"
    14  
    15  	// StoreKey is the default store key for mint
    16  	StoreKey = ModuleName
    17  )