0g-chain/x/liquidator/alias.go
2019-11-25 14:46:02 -05:00

53 lines
2.0 KiB
Go

// nolint
// autogenerated code using github.com/rigelrozanski/multitool
// aliases generated for the following subdirectories:
// ALIASGEN: github.com/kava-labs/kava/x/liquidator/types/
// ALIASGEN: github.com/kava-labs/kava/x/liquidator/keeper/
package liquidator
import (
"github.com/kava-labs/kava/x/liquidator/keeper"
"github.com/kava-labs/kava/x/liquidator/types"
)
const (
ModuleName = types.ModuleName
StoreKey = types.StoreKey
RouterKey = types.RouterKey
QuerierRoute = types.QuerierRoute
DefaultParamspace = types.DefaultParamspace
QueryGetOutstandingDebt = types.QueryGetOutstandingDebt
)
var (
// functions aliases
RegisterCodec = types.RegisterCodec
DefaultGenesisState = types.DefaultGenesisState
ValidateGenesis = types.ValidateGenesis
NewLiquidatorParams = types.NewLiquidatorParams
ParamKeyTable = types.ParamKeyTable
DefaultParams = types.DefaultParams
NewKeeper = keeper.NewKeeper
NewQuerier = keeper.NewQuerier
// variable aliases
ModuleCdc = types.ModuleCdc
KeyDebtAuctionSize = types.KeyDebtAuctionSize
KeyCollateralParams = types.KeyCollateralParams
)
type (
CdpKeeper = types.CdpKeeper
BankKeeper = types.BankKeeper
AuctionKeeper = types.AuctionKeeper
GenesisState = types.GenesisState
MsgSeizeAndStartCollateralAuction = types.MsgSeizeAndStartCollateralAuction
MsgStartDebtAuction = types.MsgStartDebtAuction
LiquidatorParams = types.LiquidatorParams
CollateralParams = types.CollateralParams
SeizeAndStartCollateralAuctionRequest = types.SeizeAndStartCollateralAuctionRequest
StartDebtAuctionRequest = types.StartDebtAuctionRequest
SeizedDebt = types.SeizedDebt
Keeper = keeper.Keeper
)