Documentation
¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) GetAllKvzoo(ctx sdk.Context) (list []types.Kvzoo)
- func (k Keeper) GetAllLinks(ctx sdk.Context)
- func (k Keeper) GetKvzoo(ctx sdk.Context, owner string, zooKey string) (val types.Kvzoo, found bool)
- func (k Keeper) GetKvzooByKey(ctx sdk.Context, kvKey []byte) (val types.Kvzoo, found bool)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) Kvzoo(goCtx context.Context, req *types.QueryGetKvzooRequest) (*types.QueryGetKvzooResponse, error)
- func (k Keeper) KvzooAll(goCtx context.Context, req *types.QueryAllKvzooRequest) (*types.QueryAllKvzooResponse, error)
- func (k Keeper) ListByOwner(goCtx context.Context, req *types.QueryListByOwnerRequest) (*types.QueryListByOwnerResponse, error)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) RemoveKvzoo(ctx sdk.Context, owner string, zooKey string, linkOwner string)
- func (k Keeper) SetKvzoo(ctx sdk.Context, kvzoo types.Kvzoo)
- func (k Keeper) SetKvzooUpdate(ctx sdk.Context, kvzoo types.Kvzoo, oldOwner string, oldLinkOwner string)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey storetypes.StoreKey, ps paramtypes.Subspace, ganymedeKeeper types.GanymedeKeeper, ) *Keeper
func (Keeper) GetAllKvzoo ¶
GetAllKvzoo returns all kvzoo
func (Keeper) GetAllLinks ¶
GetAllUsers returns all users
func (Keeper) GetKvzoo ¶
func (k Keeper) GetKvzoo( ctx sdk.Context, owner string, zooKey string, ) (val types.Kvzoo, found bool)
GetKvzoo returns a kvzoo from its index
func (Keeper) GetKvzooByKey ¶
GetKvzoo returns a kvzoo from its index, Key is given
func (Keeper) Kvzoo ¶
func (k Keeper) Kvzoo(goCtx context.Context, req *types.QueryGetKvzooRequest) (*types.QueryGetKvzooResponse, error)
func (Keeper) KvzooAll ¶
func (k Keeper) KvzooAll(goCtx context.Context, req *types.QueryAllKvzooRequest) (*types.QueryAllKvzooResponse, error)
func (Keeper) ListByOwner ¶
func (k Keeper) ListByOwner(goCtx context.Context, req *types.QueryListByOwnerRequest) (*types.QueryListByOwnerResponse, error)
func (Keeper) Params ¶
func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveKvzoo ¶
RemoveKvzoo removes a kvzoo from the store
Click to show internal directories.
Click to hide internal directories.