cosmos-sdk/x/distribution/alias.go

68 lines
2.5 KiB
Go
Raw Normal View History

2018-09-18 21:42:05 -07:00
// nolint
2018-09-19 11:47:25 -07:00
package distribution
2018-09-18 21:42:05 -07:00
import (
"github.com/cosmos/cosmos-sdk/x/distribution/keeper"
"github.com/cosmos/cosmos-sdk/x/distribution/tags"
"github.com/cosmos/cosmos-sdk/x/distribution/types"
)
type (
2018-09-19 20:01:55 -07:00
Keeper = keeper.Keeper
Hooks = keeper.Hooks
2018-09-18 21:42:05 -07:00
MsgSetWithdrawAddress = types.MsgSetWithdrawAddress
2018-09-19 20:01:55 -07:00
MsgWithdrawDelegatorReward = types.MsgWithdrawDelegatorReward
2019-01-16 13:38:05 -08:00
MsgWithdrawValidatorCommission = types.MsgWithdrawValidatorCommission
2018-09-18 21:42:05 -07:00
GenesisState = types.GenesisState
// expected keepers
StakingKeeper = types.StakingKeeper
BankKeeper = types.BankKeeper
FeeCollectionKeeper = types.FeeCollectionKeeper
// querier param types
QueryValidatorCommissionParams = keeper.QueryValidatorCommissionParams
QueryValidatorSlashesParams = keeper.QueryValidatorSlashesParams
QueryDelegationRewardsParams = keeper.QueryDelegationRewardsParams
QueryDelegatorWithdrawAddrParams = keeper.QueryDelegatorWithdrawAddrParams
2018-09-18 21:42:05 -07:00
)
const (
DefaultCodespace = types.DefaultCodespace
CodeInvalidInput = types.CodeInvalidInput
StoreKey = types.StoreKey
TStoreKey = types.TStoreKey
RouterKey = types.RouterKey
QuerierRoute = types.QuerierRoute
2018-09-18 21:42:05 -07:00
)
var (
ErrNilDelegatorAddr = types.ErrNilDelegatorAddr
ErrNilWithdrawAddr = types.ErrNilWithdrawAddr
ErrNilValidatorAddr = types.ErrNilValidatorAddr
2018-09-19 20:01:55 -07:00
TagValidator = tags.Validator
2018-09-18 21:42:05 -07:00
TagDelegator = tags.Delegator
2019-01-16 13:38:05 -08:00
NewMsgSetWithdrawAddress = types.NewMsgSetWithdrawAddress
NewMsgWithdrawDelegatorReward = types.NewMsgWithdrawDelegatorReward
NewMsgWithdrawValidatorCommission = types.NewMsgWithdrawValidatorCommission
NewKeeper = keeper.NewKeeper
NewQuerier = keeper.NewQuerier
NewQueryValidatorOutstandingRewardsParams = keeper.NewQueryValidatorOutstandingRewardsParams
NewQueryValidatorCommissionParams = keeper.NewQueryValidatorCommissionParams
NewQueryValidatorSlashesParams = keeper.NewQueryValidatorSlashesParams
NewQueryDelegationRewardsParams = keeper.NewQueryDelegationRewardsParams
NewQueryDelegatorParams = keeper.NewQueryDelegatorParams
NewQueryDelegatorWithdrawAddrParams = keeper.NewQueryDelegatorWithdrawAddrParams
DefaultParamspace = keeper.DefaultParamspace
2019-01-16 13:38:05 -08:00
RegisterCodec = types.RegisterCodec
DefaultGenesisState = types.DefaultGenesisState
ValidateGenesis = types.ValidateGenesis
InitialFeePool = types.InitialFeePool
2018-09-18 21:42:05 -07:00
)