-
Notifications
You must be signed in to change notification settings - Fork 2
/
alias.go
50 lines (45 loc) · 1.51 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
// nolint
// autogenerated code using github.com/rigelrozanski/multitool
// aliases generated for the following subdirectories:
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/supply/internal/keeper
// ALIASGEN: github.com/cosmos/cosmos-sdk/x/supply/internal/types
package supply
import (
"github.com/hdac-io/friday/x/supply/internal/keeper"
"github.com/hdac-io/friday/x/supply/internal/types"
)
const (
ModuleName = types.ModuleName
StoreKey = types.StoreKey
RouterKey = types.RouterKey
QuerierRoute = types.QuerierRoute
Minter = types.Minter
Burner = types.Burner
Staking = types.Staking
)
var (
// functions aliases
RegisterInvariants = keeper.RegisterInvariants
AllInvariants = keeper.AllInvariants
TotalSupply = keeper.TotalSupply
NewKeeper = keeper.NewKeeper
NewQuerier = keeper.NewQuerier
SupplyKey = keeper.SupplyKey
NewModuleAddress = types.NewModuleAddress
NewEmptyModuleAccount = types.NewEmptyModuleAccount
NewModuleAccount = types.NewModuleAccount
RegisterCodec = types.RegisterCodec
NewGenesisState = types.NewGenesisState
DefaultGenesisState = types.DefaultGenesisState
NewSupply = types.NewSupply
DefaultSupply = types.DefaultSupply
// variable aliases
DefaultCodespace = keeper.DefaultCodespace
ModuleCdc = types.ModuleCdc
)
type (
Keeper = keeper.Keeper
ModuleAccount = types.ModuleAccount
GenesisState = types.GenesisState
Supply = types.Supply
)