Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) GetAllWhoIs(ctx sdk.Context) (list []types.WhoIs)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetWhoIs(ctx sdk.Context, did string) (val types.WhoIs, found bool)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) RemoveWhoIs(ctx sdk.Context, did string)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetWhoIs(ctx sdk.Context, whoIs types.WhoIs)
- func (k Keeper) WhoIs(c context.Context, req *types.QueryWhoIsRequest) (*types.QueryWhoIsResponse, error)
- func (k Keeper) WhoIsAll(c context.Context, req *types.QueryAllWhoIsRequest) (*types.QueryAllWhoIsResponse, error)
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 sdk.StoreKey, ps paramtypes.Subspace, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper, capabilityKeeper types.CapabilityKeeper, mintKeeper types.MintKeeper, ) *Keeper
func (Keeper) GetAllWhoIs ¶
GetAllWhoIs returns all whoIs
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveWhoIs ¶
RemoveWhoIs removes a whoIs from the store
func (Keeper) WhoIs ¶
func (k Keeper) WhoIs(c context.Context, req *types.QueryWhoIsRequest) (*types.QueryWhoIsResponse, error)
func (Keeper) WhoIsAll ¶
func (k Keeper) WhoIsAll(c context.Context, req *types.QueryAllWhoIsRequest) (*types.QueryAllWhoIsResponse, error)
Source Files ¶
- grpc_query.go
- grpc_query_params.go
- grpc_query_who_is.go
- keeper.go
- msg_server.go
- msg_server_access_application.go
- msg_server_access_name.go
- msg_server_register_application.go
- msg_server_register_name.go
- msg_server_update_application.go
- msg_server_update_name.go
- msg_server_who_is.go
- params.go
- who_is.go
Click to show internal directories.
Click to hide internal directories.