-
Notifications
You must be signed in to change notification settings - Fork 0
/
alias.go
42 lines (36 loc) · 1.16 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
package mint
// nolint
import (
"github.com/ayher/project-anatha/x/mint/internal/keeper"
"github.com/ayher/project-anatha/x/mint/internal/types"
)
const (
ModuleName = types.ModuleName
DefaultParamspace = types.DefaultParamspace
StoreKey = types.StoreKey
QuerierRoute = types.QuerierRoute
RouterKey = types.RouterKey
QueryParameters = types.QueryParameters
)
var (
NewKeeper = keeper.NewKeeper
NewQuerier = keeper.NewQuerier
NewGenesisState = types.NewGenesisState
DefaultGenesisState = types.DefaultGenesisState
ValidateGenesis = types.ValidateGenesis
NewMinter = types.NewMinter
InitialMinter = types.InitialMinter
DefaultInitialMinter = types.DefaultInitialMinter
ParamKeyTable = types.ParamKeyTable
NewParams = types.NewParams
DefaultParams = types.DefaultParams
ModuleCdc = types.ModuleCdc
MinterKey = types.MinterKey
KeyMintDenom = types.KeyMintDenom
)
type (
Keeper = keeper.Keeper
GenesisState = types.GenesisState
Minter = types.Minter
Params = types.Params
)