mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
bc20591b72
* Change ListDirs() to Exists() * Merge branch 'master' into fix-derived-pass * Make function more accurate * Merge branch 'fix-derived-pass' of github.com:prysmaticlabs/prysm into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass * Merge refs/heads/master into fix-derived-pass
22 lines
860 B
Go
22 lines
860 B
Go
package iface
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
)
|
|
|
|
// Wallet defines a struct which has capabilities and knowledge of how
|
|
// to read and write important accounts-related files to the filesystem.
|
|
// Useful for keymanagers to have persistent capabilities for accounts on-disk.
|
|
type Wallet interface {
|
|
// Methods to retrieve wallet and accounts metadata.
|
|
AccountsDir() string
|
|
Exists() (bool, error)
|
|
// Read methods for important wallet and accounts-related files.
|
|
ReadEncryptedSeedFromDisk(ctx context.Context) (io.ReadCloser, error)
|
|
ReadFileAtPath(ctx context.Context, filePath string, fileName string) ([]byte, error)
|
|
// Write methods to persist important wallet and accounts-related files to disk.
|
|
WriteFileAtPath(ctx context.Context, pathName string, fileName string, data []byte) error
|
|
WriteEncryptedSeedToDisk(ctx context.Context, encoded []byte) error
|
|
}
|