keeper

package
v2.0.1-0...-c6a7496 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 11, 2023 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ExecuteOnDidWithRelationships

func ExecuteOnDidWithRelationships(ctx sdk.Context, k *Keeper, constraints VerificationRelationships, did, signer string, update func(document *types.IidDocument) error) (err error)

Check the relations/controllers for did if have capabilities to modify did doc, do modifications and emit doc_updated event

func NewMsgServerImpl

func NewMsgServerImpl(keeper Keeper) types.MsgServer

NewMsgServerImpl returns an implementation of the identity MsgServer interface for the provided Keeper.

Types

type Keeper

type Keeper struct {
	// contains filtered or unexported fields
}

func NewKeeper

func NewKeeper(cdc codec.Codec, storeKey, memKey sdk.StoreKey) *Keeper

func (Keeper) Delete

func (k Keeper) Delete(
	ctx sdk.Context,
	key []byte,
	prefix []byte,
)

Delete - deletes a value form the store

func (Keeper) Get

func (k Keeper) Get(
	ctx sdk.Context,
	key []byte,
	prefix []byte,
	unmarshal UnmarshalFn,
) (i interface{}, found bool)

Get gets an item from the store by bytes

func (Keeper) GetAll

func (k Keeper) GetAll(
	ctx sdk.Context,
	prefix []byte,
) sdk.Iterator

GetAll values from with a prefix from the store

func (Keeper) GetAllDidDocuments

func (k Keeper) GetAllDidDocuments(ctx sdk.Context) []types.IidDocument

GetAllDidDocuments returns all the DidDocuments

func (Keeper) GetAllDidDocumentsWithCondition

func (k Keeper) GetAllDidDocumentsWithCondition(
	ctx sdk.Context,
	key []byte,
	didSelector func(did types.IidDocument) bool,
) (didDocs []types.IidDocument)

GetAllDidDocumentsWithCondition retrieve a list of did document by some arbitrary criteria.

func (Keeper) GetDidDocument

func (k Keeper) GetDidDocument(ctx sdk.Context, key []byte) (types.IidDocument, bool)

func (Keeper) Logger

func (k Keeper) Logger(ctx sdk.Context) log.Logger

func (Keeper) Marshal

func (k Keeper) Marshal(value interface{}) (bytes []byte)

func (Keeper) ResolveDid

func (k Keeper) ResolveDid(ctx sdk.Context, did types.DID) (doc types.IidDocument, err error)

ResolveDid returning the did document and throwing error if not found

func (Keeper) Set

func (k Keeper) Set(ctx sdk.Context,
	key []byte,
	prefix []byte,
	i interface{},
	marshal MarshalFn,
)

Set sets a value in the db with a prefixed key

func (Keeper) SetDidDocument

func (k Keeper) SetDidDocument(ctx sdk.Context, key []byte, document types.IidDocument)

func (Keeper) Unmarshal

func (k Keeper) Unmarshal(data []byte, val codec.ProtoMarshaler) bool

Unmarshal unmarshal a byte slice to a struct, return false in case of errors

func (Keeper) UnmarshalDidDocument

func (k Keeper) UnmarshalDidDocument(value []byte) (interface{}, bool)

type MarshalFn

type MarshalFn func(value interface{}) []byte

MarshalFn is a generic function to marshal bytes

type Querier

type Querier struct {
	Keeper
}

Querier defines a wrapper around the x/iid keeper providing gRPC method handlers.

func NewQuerier

func NewQuerier(k Keeper) Querier

func (Querier) IidDocument

IidDocument implements the IidDocument gRPC method

func (Querier) IidDocuments

IidDocuments implements the DidDocuments gRPC method

type UnmarshalFn

type UnmarshalFn func(value []byte) (interface{}, bool)

UnmarshalFn is a generic function to unmarshal bytes

type VerificationRelationships

type VerificationRelationships []string

VerificationRelationships for did document manipulation

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL