Versions in this module Expand all Collapse all v1 v1.0.0 Aug 7, 2026 Changes in this version + func AddressFromExport(exported string) (address.Address, error) + func EVMSigner(ks KeyStore, w model.Wallet) (signer.EVMSigner, error) + func Signer(ks KeyStore, w model.Wallet) (signer.Signer, error) + type KeyInfo struct + Address address.Address + Name string + type KeyStore interface + Delete func(name string) error + Get func(name string) (privateKey string, err error) + Has func(name string) bool + List func() ([]KeyInfo, error) + Put func(privateKey string) (name string, addr address.Address, err error) + type LocalKeyStore struct + func NewLocalKeyStore(dir string) (*LocalKeyStore, error) + func (ks *LocalKeyStore) Delete(name string) error + func (ks *LocalKeyStore) Get(name string) (string, error) + func (ks *LocalKeyStore) Has(name string) bool + func (ks *LocalKeyStore) List() ([]KeyInfo, error) + func (ks *LocalKeyStore) Put(privateKey string) (string, address.Address, error) v1.0.0-RC1 Jul 13, 2026