Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- func RegisterConnectServer(keeper Keeper, mux *runtime.ServeMux)
- type Keeper
- func (k Keeper) Did(c context.Context, req *types.QueryGetDidRequest) (*types.QueryGetDidResponse, error)
- func (k Keeper) DidAll(c context.Context, req *types.QueryAllDidRequest) (*types.QueryAllDidResponse, error)
- func (k Keeper) DidByAlsoKnownAs(c context.Context, req *types.QueryDidByAlsoKnownAsRequest) (*types.QueryDidByAlsoKnownAsResponse, error)
- func (k Keeper) DidByKeyID(c context.Context, req *types.QueryDidByKeyIDRequest) (*types.QueryDidByKeyIDResponse, error)
- func (k Keeper) DidByPubKey(goCtx context.Context, req *types.QueryDidByPubKeyRequest) (*types.QueryDidByPubKeyResponse, error)
- func (k Keeper) GetAllDidDocument(ctx sdk.Context) (list []types.DidDocument)
- func (k Keeper) GetAllServices(ctx sdk.Context) (list []types.Service)
- func (k Keeper) GetAllVerificationRelationships(ctx sdk.Context) (list []types.VerificationRelationship)
- func (k Keeper) GetDidDocument(ctx sdk.Context, did string) (val types.DidDocument, found bool)
- func (k Keeper) GetDidDocumentByAKA(ctx sdk.Context, aka string) (types.DidDocument, bool)
- func (k Keeper) GetDidDocumentByPubKey(ctx sdk.Context, pubKey string) (val types.DidDocument, found bool)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetService(ctx sdk.Context, origin string) (val types.Service, found bool)
- func (k Keeper) GetVerificationRelationship(ctx sdk.Context, reference string) (val types.VerificationRelationship, found bool)
- func (k Keeper) HasVerificationRelationship(ctx sdk.Context, reference string) 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) RemoveDidDocument(ctx sdk.Context, did string)
- func (k Keeper) Service(c context.Context, req *types.QueryGetServiceRequest) (*types.QueryGetServiceResponse, error)
- func (k Keeper) ServiceAll(goCtx context.Context, req *types.QueryAllServiceRequest) (*types.QueryAllServiceResponse, error)
- func (k Keeper) SetDidDocument(ctx sdk.Context, didDocument types.DidDocument)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetService(ctx sdk.Context, Service types.Service)
- func (k Keeper) SetVerificationRelationship(ctx sdk.Context, VerificationRelationship types.VerificationRelationship)
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.
func RegisterConnectServer ¶ added in v0.5.0
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, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper, groupKeeper types.GroupKeeper, ) *Keeper
func (Keeper) Did ¶
func (k Keeper) Did(c context.Context, req *types.QueryGetDidRequest) (*types.QueryGetDidResponse, error)
func (Keeper) DidAll ¶
func (k Keeper) DidAll(c context.Context, req *types.QueryAllDidRequest) (*types.QueryAllDidResponse, error)
func (Keeper) DidByAlsoKnownAs ¶ added in v0.4.0
func (k Keeper) DidByAlsoKnownAs(c context.Context, req *types.QueryDidByAlsoKnownAsRequest) (*types.QueryDidByAlsoKnownAsResponse, error)
func (Keeper) DidByKeyID ¶ added in v0.4.0
func (k Keeper) DidByKeyID(c context.Context, req *types.QueryDidByKeyIDRequest) (*types.QueryDidByKeyIDResponse, error)
func (Keeper) DidByPubKey ¶ added in v0.5.0
func (k Keeper) DidByPubKey(goCtx context.Context, req *types.QueryDidByPubKeyRequest) (*types.QueryDidByPubKeyResponse, error)
func (Keeper) GetAllDidDocument ¶
func (k Keeper) GetAllDidDocument(ctx sdk.Context) (list []types.DidDocument)
GetAllDidDocument returns all didDocument
func (Keeper) GetAllServices ¶ added in v0.4.0
GetAllServices returns all Services
func (Keeper) GetAllVerificationRelationships ¶ added in v0.5.0
func (k Keeper) GetAllVerificationRelationships(ctx sdk.Context) (list []types.VerificationRelationship)
GetAllVerificationRelationships returns all Relationship
func (Keeper) GetDidDocument ¶
GetDidDocument returns a didDocument from its index
func (Keeper) GetDidDocumentByAKA ¶
func (Keeper) GetDidDocumentByPubKey ¶ added in v0.5.0
func (k Keeper) GetDidDocumentByPubKey(ctx sdk.Context, pubKey string) (val types.DidDocument, found bool)
GetDidDocumentByPubKey returns a DidDocument by searching for a matching public key
func (Keeper) GetService ¶ added in v0.4.0
GetDomainRecord returns a DomainRecord from its index
func (Keeper) GetVerificationRelationship ¶ added in v0.5.0
func (k Keeper) GetVerificationRelationship(ctx sdk.Context, reference string) (val types.VerificationRelationship, found bool)
GetVerificationRelationship returns a Service from its index
func (Keeper) HasVerificationRelationship ¶ added in v0.5.0
HasVerificationRelationship checks if the element exists in the store
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveDidDocument ¶
RemoveDidDocument removes a didDocument from the store
func (Keeper) Service ¶ added in v0.4.0
func (k Keeper) Service(c context.Context, req *types.QueryGetServiceRequest) (*types.QueryGetServiceResponse, error)
func (Keeper) ServiceAll ¶ added in v0.4.0
func (k Keeper) ServiceAll(goCtx context.Context, req *types.QueryAllServiceRequest) (*types.QueryAllServiceResponse, error)
func (Keeper) SetDidDocument ¶
func (k Keeper) SetDidDocument(ctx sdk.Context, didDocument types.DidDocument)
SetDidDocument set a specific didDocument in the store from its index
func (Keeper) SetService ¶ added in v0.4.0
SetService set a specific Service in the store from its index
func (Keeper) SetVerificationRelationship ¶ added in v0.5.0
func (k Keeper) SetVerificationRelationship(ctx sdk.Context, VerificationRelationship types.VerificationRelationship)
SetVerificationRelationship set a specific Service in the store from its index