Versions in this module Expand all Collapse all v0 v0.9.9 Aug 21, 2021 Changes in this version + func GetCoordinatorIDBytes(id uint64) []byte + func GetCoordinatorIDFromBytes(bz []byte) uint64 + func NewMsgServerImpl(keeper Keeper) types.MsgServer + type Keeper struct + func NewKeeper(cdc codec.Marshaler, storeKey, memKey sdk.StoreKey) *Keeper + func (k Keeper) AppendCoordinator(ctx sdk.Context, coordinator types.Coordinator) uint64 + func (k Keeper) Coordinator(c context.Context, req *types.QueryGetCoordinatorRequest) (*types.QueryGetCoordinatorResponse, error) + func (k Keeper) CoordinatorAll(c context.Context, req *types.QueryAllCoordinatorRequest) (*types.QueryAllCoordinatorResponse, error) + func (k Keeper) CoordinatorByAddress(c context.Context, req *types.QueryGetCoordinatorByAddressRequest) (*types.QueryGetCoordinatorByAddressResponse, error) + func (k Keeper) CoordinatorIDFromAddress(ctx sdk.Context, address string) (id uint64, found bool) + func (k Keeper) GetAllCoordinator(ctx sdk.Context) (list []types.Coordinator) + func (k Keeper) GetAllCoordinatorByAddress(ctx sdk.Context) (list []types.CoordinatorByAddress) + func (k Keeper) GetAllValidator(ctx sdk.Context) (list []types.Validator) + func (k Keeper) GetCoordinator(ctx sdk.Context, id uint64) types.Coordinator + func (k Keeper) GetCoordinatorAddressFromID(ctx sdk.Context, id uint64) (string, bool) + func (k Keeper) GetCoordinatorByAddress(ctx sdk.Context, address string) (val types.CoordinatorByAddress, found bool) + func (k Keeper) GetCoordinatorCount(ctx sdk.Context) uint64 + func (k Keeper) GetValidator(ctx sdk.Context, address string) (val types.Validator, found bool) + func (k Keeper) HasCoordinator(ctx sdk.Context, id uint64) bool + func (k Keeper) Logger(ctx sdk.Context) log.Logger + func (k Keeper) RemoveCoordinator(ctx sdk.Context, id uint64) + func (k Keeper) RemoveCoordinatorByAddress(ctx sdk.Context, address string) + func (k Keeper) RemoveValidator(ctx sdk.Context, address string) + func (k Keeper) SetCoordinator(ctx sdk.Context, coordinator types.Coordinator) + func (k Keeper) SetCoordinatorByAddress(ctx sdk.Context, coordinatorByAddress types.CoordinatorByAddress) + func (k Keeper) SetCoordinatorCount(ctx sdk.Context, count uint64) + func (k Keeper) SetValidator(ctx sdk.Context, validator types.Validator) + func (k Keeper) Validator(c context.Context, req *types.QueryGetValidatorRequest) (*types.QueryGetValidatorResponse, error) + func (k Keeper) ValidatorAll(c context.Context, req *types.QueryAllValidatorRequest) (*types.QueryAllValidatorResponse, error)