github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/x/farm/alias.go (about)

     1  package farm
     2  
     3  import (
     4  	"github.com/fibonacci-chain/fbc/x/farm/keeper"
     5  	"github.com/fibonacci-chain/fbc/x/farm/types"
     6  )
     7  
     8  const (
     9  	StoreKey            = types.StoreKey
    10  	DefaultParamspace   = types.DefaultParamspace
    11  	DefaultCodespace    = types.DefaultCodespace
    12  	ModuleName          = types.ModuleName
    13  	MintFarmingAccount  = types.MintFarmingAccount
    14  	YieldFarmingAccount = types.YieldFarmingAccount
    15  	RouterKey           = types.RouterKey
    16  )
    17  
    18  var (
    19  	NewKeeper          = keeper.NewKeeper
    20  	RegisterInvariants = keeper.RegisterInvariants
    21  )
    22  
    23  type (
    24  	Keeper = keeper.Keeper
    25  )