2020-09-05 19:36:32 +00:00
|
|
|
package api
|
2020-09-04 20:17:28 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
2020-10-08 22:51:04 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/crypto"
|
|
|
|
|
2020-09-04 20:17:28 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
)
|
|
|
|
|
2020-09-05 19:36:32 +00:00
|
|
|
type WalletAPI interface {
|
2020-09-04 20:17:28 +00:00
|
|
|
WalletNew(context.Context, crypto.SigType) (address.Address, error)
|
|
|
|
WalletHas(context.Context, address.Address) (bool, error)
|
|
|
|
WalletList(context.Context) ([]address.Address, error)
|
2020-10-08 23:04:59 +00:00
|
|
|
|
2020-09-04 20:17:28 +00:00
|
|
|
WalletSign(context.Context, address.Address, []byte) (*crypto.Signature, error)
|
2020-10-08 23:04:59 +00:00
|
|
|
|
2020-09-04 20:17:28 +00:00
|
|
|
WalletExport(context.Context, address.Address) (*types.KeyInfo, error)
|
|
|
|
WalletImport(context.Context, *types.KeyInfo) (address.Address, error)
|
|
|
|
WalletDelete(context.Context, address.Address) error
|
|
|
|
}
|