Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidArgs = errors.New("pstorage: invalid arguments") ErrNotExists = errors.New("pstorage: not exists") ErrExists = errors.New("pstorage: exists") ErrAccountNotExists = fmt.Errorf("%w: account", ErrNotExists) ErrAccountExists = fmt.Errorf("%w: account", ErrExists) ErrCertificateNotExists = fmt.Errorf("%w: certificate", ErrNotExists) ErrCertificateExists = fmt.Errorf("%w: certificate", ErrExists) )
Functions ¶
This section is empty.
Types ¶
type StorageNextKey ¶ added in v0.8.2
type StorageR ¶
type StorageR interface {
GetAccountPublicKey(context.Context, sdk.Address) (cryptotypes.PubKey, error)
GetAccountCertificate(context.Context, sdk.Address, *big.Int) (*x509.Certificate, crypto.PublicKey, error)
GetAllCertificates(ctx context.Context) ([]*x509.Certificate, error)
GetOrdersNextKey(ctx context.Context) ([]byte, error)
}
type StorageW ¶
type StorageW interface {
AddAccount(context.Context, sdk.Address, cryptotypes.PubKey) error
DelAccount(context.Context, sdk.Address) error
AddAccountCertificate(context.Context, sdk.Address, *x509.Certificate, crypto.PublicKey) error
DelAccountCertificate(context.Context, sdk.Address, *big.Int) error
SetOrdersNextKey(ctx context.Context, key []byte) error
DelOrdersNextKey(ctx context.Context) error
}
Click to show internal directories.
Click to hide internal directories.