github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/cosmos-sdk/x/mint/alias.go (about) 1 package mint 2 3 // nolint 4 5 import ( 6 "github.com/fibonacci-chain/fbc/libs/cosmos-sdk/x/mint/internal/keeper" 7 "github.com/fibonacci-chain/fbc/libs/cosmos-sdk/x/mint/internal/types" 8 ) 9 10 const ( 11 ModuleName = types.ModuleName 12 DefaultParamspace = types.DefaultParamspace 13 StoreKey = types.StoreKey 14 QuerierRoute = types.QuerierRoute 15 QueryParameters = types.QueryParameters 16 QueryInflation = types.QueryInflation 17 QueryAnnualProvisions = types.QueryAnnualProvisions 18 RouterKey = types.RouterKey 19 ) 20 21 var ( 22 // functions aliases 23 NewKeeper = keeper.NewKeeper 24 NewQuerier = keeper.NewQuerier 25 NewGenesisState = types.NewGenesisState 26 DefaultGenesisState = types.DefaultGenesisState 27 ValidateGenesis = types.ValidateGenesis 28 NewMinter = types.NewMinter 29 InitialMinter = types.InitialMinter 30 DefaultInitialMinter = types.DefaultInitialMinter 31 ValidateMinter = types.ValidateMinter 32 ParamKeyTable = types.ParamKeyTable 33 NewParams = types.NewParams 34 DefaultParams = types.DefaultParams 35 36 // variable aliases 37 ModuleCdc = types.ModuleCdc 38 MinterKey = types.MinterKey 39 KeyMintDenom = types.KeyMintDenom 40 //KeyInflationRateChange = types.KeyInflationRateChange 41 //KeyInflationMax = types.KeyInflationMax 42 //KeyInflationMin = types.KeyInflationMin 43 //KeyGoalBonded = types.KeyGoalBonded 44 KeyBlocksPerYear = types.KeyBlocksPerYear 45 ) 46 47 type ( 48 Keeper = keeper.Keeper 49 GenesisState = types.GenesisState 50 Minter = types.Minter 51 Params = types.Params 52 )