Versions in this module Expand all Collapse all v1 v1.0.0 Aug 18, 2021 Changes in this version + func NewHandler(k Keeper) sdk.Handler + func NewMsgServerImpl(keeper Keeper) types.MsgServer + type Keeper struct + func NewKeeper(cdc codec.Marshaler, storeKey, memKey sdk.StoreKey) *Keeper + func (k Keeper) Delete(ctx sdk.Context, key []byte, prefix []byte) + func (k Keeper) DidDocument(c context.Context, req *types.QueryDidDocumentRequest) (*types.QueryDidDocumentResponse, error) + func (k Keeper) DidDocuments(c context.Context, req *types.QueryDidDocumentsRequest) (*types.QueryDidDocumentsResponse, error) + func (k Keeper) Get(ctx sdk.Context, key []byte, prefix []byte, unmarshal UnmarshalFn) (i interface{}, found bool) + func (k Keeper) GetAll(ctx sdk.Context, prefix []byte) sdk.Iterator + func (k Keeper) GetAllDidDocuments(ctx sdk.Context) []types.DidDocument + func (k Keeper) GetAllDidDocumentsWithCondition(ctx sdk.Context, key []byte, didSelector func(did types.DidDocument) bool) (didDocs []types.DidDocument) + func (k Keeper) GetDidDocument(ctx sdk.Context, key []byte) (types.DidDocument, bool) + func (k Keeper) GetDidMetadata(ctx sdk.Context, key []byte) (types.DidMetadata, bool) + func (k Keeper) Logger(ctx sdk.Context) log.Logger + func (k Keeper) Marshal(value interface{}) (bytes []byte) + func (k Keeper) Set(ctx sdk.Context, key []byte, prefix []byte, i interface{}, marshal MarshalFn) + func (k Keeper) SetDidDocument(ctx sdk.Context, key []byte, document types.DidDocument) + func (k Keeper) SetDidMetadata(ctx sdk.Context, key []byte, meta types.DidMetadata) + func (k Keeper) Unmarshal(data []byte, val codec.ProtoMarshaler) bool + func (k Keeper) UnmarshalDidDocument(value []byte) (interface{}, bool) + func (k Keeper) UnmarshalDidMetadata(value []byte) (interface{}, bool) + type MarshalFn func(value interface{}) []byte + type UnmarshalFn func(value []byte) (interface{}, bool) Other modules containing this package github.com/allinbits/cosmos-cash/v2 github.com/allinbits/cosmos-cash/v3