-
Notifications
You must be signed in to change notification settings - Fork 2
/
alias.go
51 lines (46 loc) · 1.62 KB
/
alias.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// nolint
// autogenerated code using github.com/rigelrozanski/multitool
// aliases generated for the following subdirectories:
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/mint/internal/keeper
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/mint/internal/types
package mint
import (
"github.com/hdac-io/friday/x/mint/internal/keeper"
"github.com/hdac-io/friday/x/mint/internal/types"
)
const (
ModuleName = types.ModuleName
DefaultParamspace = types.DefaultParamspace
StoreKey = types.StoreKey
QuerierRoute = types.QuerierRoute
QueryParameters = types.QueryParameters
QueryInflation = types.QueryInflation
QueryAnnualProvisions = types.QueryAnnualProvisions
)
var (
// functions aliases
NewKeeper = keeper.NewKeeper
NewQuerier = keeper.NewQuerier
NewMinter = types.NewMinter
InitialMinter = types.InitialMinter
DefaultInitialMinter = types.DefaultInitialMinter
ValidateMinter = types.ValidateMinter
ParamKeyTable = types.ParamKeyTable
NewParams = types.NewParams
DefaultParams = types.DefaultParams
ValidateParams = types.ValidateParams
// variable aliases
ModuleCdc = types.ModuleCdc
MinterKey = types.MinterKey
KeyMintDenom = types.KeyMintDenom
KeyInflationRateChange = types.KeyInflationRateChange
KeyInflationMax = types.KeyInflationMax
KeyInflationMin = types.KeyInflationMin
KeyGoalBonded = types.KeyGoalBonded
KeyBlocksPerYear = types.KeyBlocksPerYear
)
type (
Keeper = keeper.Keeper
Minter = types.Minter
Params = types.Params
)