lotus/api/api_wallet.go

48 lines
1.4 KiB
Go
Raw Permalink Normal View History

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"
)
type MsgType string
2020-10-08 23:27:49 +00:00
const (
MTUnknown = "unknown"
// Signing message CID. MsgMeta.Extra contains raw cbor message bytes
MTChainMsg = "message"
// Signing a blockheader. signing raw cbor block bytes (MsgMeta.Extra is empty)
MTBlock = "block"
// Signing a deal proposal. signing raw cbor proposal bytes (MsgMeta.Extra is empty)
MTDealProposal = "dealproposal"
// TODO: Deals, Vouchers, VRF
)
type MsgMeta struct {
Type MsgType
// Additional data related to what is signed. Should be verifiable with the
// signed bytes (e.g. CID(Extra).Bytes() == toSign)
Extra []byte
}
type Wallet interface {
2021-05-31 11:44:15 +00:00
WalletNew(context.Context, types.KeyType) (address.Address, error) //perm:admin
WalletHas(context.Context, address.Address) (bool, error) //perm:admin
WalletList(context.Context) ([]address.Address, error) //perm:admin
2021-05-31 11:44:15 +00:00
WalletSign(ctx context.Context, signer address.Address, toSign []byte, meta MsgMeta) (*crypto.Signature, error) //perm:admin
2021-05-31 11:44:15 +00:00
WalletExport(context.Context, address.Address) (*types.KeyInfo, error) //perm:admin
WalletImport(context.Context, *types.KeyInfo) (address.Address, error) //perm:admin
WalletDelete(context.Context, address.Address) error //perm:admin
2020-09-04 20:17:28 +00:00
}