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

     1  package types
     2  
     3  import (
     4  	sdkgenutiltypes "github.com/fibonacci-chain/fbc/libs/cosmos-sdk/x/genutil/types"
     5  )
     6  
     7  // const
     8  const (
     9  	ModuleName = sdkgenutiltypes.ModuleName
    10  )
    11  
    12  type (
    13  	// AccountKeeper is the type alias of the one in cmsdk
    14  	AccountKeeper = sdkgenutiltypes.AccountKeeper
    15  	// StakingKeeper is the type alias of the one in cmsdk
    16  	StakingKeeper = sdkgenutiltypes.StakingKeeper
    17  )
    18  
    19  var (
    20  	NewInitConfig = sdkgenutiltypes.NewInitConfig
    21  )