Documentation ¶
Index ¶
- Constants
- func NewMsgServerImpl(k Keeper) types.MsgServer
- func NewQuerier(k Keeper, legacyQuerierCdc *codec.LegacyAmino) sdk.Querier
- type Keeper
- func (k Keeper) CreateEntity(ctx sdk.Context, msg *types.MsgCreateEntity) (types.MsgCreateEntityResponse, error)
- func (k Keeper) EntityConfig(c context.Context, req *types.QueryEntityConfigRequest) (*types.QueryEntityConfigResponse, error)
- func (k Keeper) EntityDoc(c context.Context, req *types.QueryEntityDocRequest) (*types.QueryEntityDocResponse, error)
- func (k Keeper) EntityExists(ctx sdk.Context, entityDid string) bool
- func (k Keeper) EntityList(c context.Context, req *types.QueryEntityListRequest) (*types.QueryEntityListResponse, error)
- func (k Keeper) GetEntityDocIterator(ctx sdk.Context) sdk.Iterator
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) SetParams(ctx sdk.Context, params *types.Params)
- func (k Keeper) TransferEntity(ctx sdk.Context, msg *types.MsgTransferEntity) (*types.MsgTransferEntityResponse, error)
- func (k Keeper) UpdateEntityConfig(ctx sdk.Context, key string, value string) error
Constants ¶
View Source
const (
QueryEntityDoc = "queryEntityDoc"
)
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the project MsgServer interface for the provided Keeper.
func NewQuerier ¶
func NewQuerier(k Keeper, legacyQuerierCdc *codec.LegacyAmino) sdk.Querier
Types ¶
type Keeper ¶
type Keeper struct { IidKeeper iidkeeper.Keeper WasmKeeper wasmtypes.ContractOpsKeeper AccountKeeper authkeeper.AccountKeeper ParamSpace paramstypes.Subspace // contains filtered or unexported fields }
func NewKeeper ¶
func NewKeeper(cdc codec.BinaryCodec, key sdk.StoreKey, memStoreKey sdk.StoreKey, iidKeeper iidkeeper.Keeper, wasmKeeper wasmkeeper.Keeper, accountKeeper authkeeper.AccountKeeper, paramSpace paramstypes.Subspace) Keeper
func (Keeper) CreateEntity ¶
func (k Keeper) CreateEntity(ctx sdk.Context, msg *types.MsgCreateEntity) (types.MsgCreateEntityResponse, error)
func (Keeper) EntityConfig ¶
func (k Keeper) EntityConfig(c context.Context, req *types.QueryEntityConfigRequest) (*types.QueryEntityConfigResponse, error)
func (Keeper) EntityDoc ¶
func (k Keeper) EntityDoc(c context.Context, req *types.QueryEntityDocRequest) (*types.QueryEntityDocResponse, error)
func (Keeper) EntityList ¶
func (k Keeper) EntityList(c context.Context, req *types.QueryEntityListRequest) (*types.QueryEntityListResponse, error)
func (Keeper) GetEntityDocIterator ¶
func (Keeper) TransferEntity ¶
func (k Keeper) TransferEntity(ctx sdk.Context, msg *types.MsgTransferEntity) (*types.MsgTransferEntityResponse, error)
Click to show internal directories.
Click to hide internal directories.