keeper

package
v0.12.2-rc6 Latest Latest
Warning

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

Go to latest
Published: Jun 18, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type IKeeper added in v0.10.0

type IKeeper interface {
	Codec() codec.BinaryMarshaler
	Get(ctx sdk.Context, id sdk.Address) (types.Provider, bool)
	Create(ctx sdk.Context, provider types.Provider) error
	WithProviders(ctx sdk.Context, fn func(types.Provider) bool)
	Update(ctx sdk.Context, provider types.Provider) error
	Delete(ctx sdk.Context, id sdk.Address)
	NewQuerier() Querier
}

func NewKeeper

func NewKeeper(cdc codec.BinaryMarshaler, skey sdk.StoreKey) IKeeper

NewKeeper creates and returns an instance for Provider keeper

type Keeper

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

Keeper of the provider store

func (Keeper) Codec

func (k Keeper) Codec() codec.BinaryMarshaler

Codec returns keeper codec

func (Keeper) Create

func (k Keeper) Create(ctx sdk.Context, provider types.Provider) error

Create creates a new provider or returns an error if the provider exists already

func (Keeper) Delete

func (k Keeper) Delete(ctx sdk.Context, id sdk.Address)

Delete delete a provider

func (Keeper) Get

func (k Keeper) Get(ctx sdk.Context, id sdk.Address) (types.Provider, bool)

Get returns a provider with given provider id

func (Keeper) NewQuerier added in v0.10.0

func (k Keeper) NewQuerier() Querier

func (Keeper) Update

func (k Keeper) Update(ctx sdk.Context, provider types.Provider) error

Update updates a provider details

func (Keeper) WithProviders

func (k Keeper) WithProviders(ctx sdk.Context, fn func(types.Provider) bool)

WithProviders iterates all providers

type Querier added in v0.9.1

type Querier struct {
	Keeper
}

Querier is used as Keeper will have duplicate methods if used directly, and gRPC names take precedence over keeper

func (Querier) Provider added in v0.9.1

Provider returns provider details based on owner address

func (Querier) Providers added in v0.9.1

Providers returns providers list

Jump to

Keyboard shortcuts

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