2019-06-25 11:42:17 +00:00
|
|
|
package api
|
|
|
|
|
2019-06-29 09:19:06 +00:00
|
|
|
import (
|
|
|
|
"context"
|
2019-07-08 21:01:15 +00:00
|
|
|
|
2019-07-09 15:19:27 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain"
|
2019-07-11 02:36:43 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
2019-07-18 20:26:04 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
2019-07-09 15:19:27 +00:00
|
|
|
|
2019-07-12 09:59:18 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2019-07-15 14:14:54 +00:00
|
|
|
"github.com/ipfs/go-filestore"
|
2019-06-29 09:19:06 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
|
|
)
|
|
|
|
|
2019-07-02 13:05:43 +00:00
|
|
|
// Version provides various build-time information
|
2019-06-25 11:42:17 +00:00
|
|
|
type Version struct {
|
|
|
|
Version string
|
|
|
|
|
|
|
|
// TODO: git commit / os / genesis cid?
|
|
|
|
}
|
|
|
|
|
2019-07-12 10:44:01 +00:00
|
|
|
type Import struct {
|
|
|
|
Status filestore.Status
|
|
|
|
Key cid.Cid
|
|
|
|
FilePath string
|
|
|
|
Size uint64
|
|
|
|
}
|
|
|
|
|
2019-07-02 13:05:43 +00:00
|
|
|
// API is a low-level interface to the Filecoin network
|
2019-06-25 11:42:17 +00:00
|
|
|
type API interface {
|
|
|
|
// chain
|
|
|
|
|
2019-07-11 02:36:43 +00:00
|
|
|
ChainHead(context.Context) (*chain.TipSet, error) // TODO: check serialization
|
2019-07-09 15:19:27 +00:00
|
|
|
ChainSubmitBlock(ctx context.Context, blk *chain.BlockMsg) error // TODO: check serialization
|
2019-07-11 02:36:43 +00:00
|
|
|
ChainGetRandomness(context.Context, *chain.TipSet) ([]byte, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
|
|
|
|
// messages
|
|
|
|
|
|
|
|
// // wait
|
|
|
|
// // send
|
|
|
|
// // status
|
|
|
|
// // mpool
|
|
|
|
// // // ls / show / rm
|
2019-07-11 02:36:43 +00:00
|
|
|
MpoolPending(context.Context, *chain.TipSet) ([]*chain.SignedMessage, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
|
|
|
|
// dag
|
|
|
|
|
|
|
|
// // get block
|
|
|
|
// // (cli: show / info)
|
|
|
|
|
|
|
|
// network
|
|
|
|
|
2019-07-09 15:19:27 +00:00
|
|
|
NetPeers(context.Context) ([]peer.AddrInfo, error)
|
2019-07-08 19:07:16 +00:00
|
|
|
NetConnect(context.Context, peer.AddrInfo) error
|
2019-07-09 17:03:36 +00:00
|
|
|
NetAddrsListen(context.Context) (peer.AddrInfo, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
// // ping
|
|
|
|
|
2019-06-29 09:19:06 +00:00
|
|
|
// Struct
|
2019-06-25 11:42:17 +00:00
|
|
|
|
|
|
|
// miner
|
|
|
|
|
|
|
|
// // create
|
|
|
|
// // owner
|
|
|
|
// // power
|
|
|
|
// // set-price
|
|
|
|
// // set-perrid
|
2019-07-11 02:36:43 +00:00
|
|
|
MinerStart(context.Context, address.Address) error
|
|
|
|
MinerCreateBlock(context.Context, address.Address, *chain.TipSet, []chain.Ticket, chain.ElectionProof, []*chain.SignedMessage) (*chain.BlockMsg, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
|
|
|
|
// // UX ?
|
|
|
|
|
|
|
|
// wallet
|
|
|
|
|
2019-07-13 00:41:32 +00:00
|
|
|
WalletNew(context.Context, string) (address.Address, error)
|
|
|
|
WalletList(context.Context) ([]address.Address, error)
|
2019-07-18 20:26:04 +00:00
|
|
|
WalletBalance(context.Context, address.Address) (types.BigInt, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
// // import
|
|
|
|
// // export
|
|
|
|
// // (on cli - cmd to list associations)
|
|
|
|
|
|
|
|
// dht
|
|
|
|
|
|
|
|
// // need ?
|
|
|
|
|
|
|
|
// paych
|
|
|
|
|
|
|
|
// // todo
|
|
|
|
|
|
|
|
// retrieval
|
|
|
|
|
|
|
|
// // retrieve piece
|
|
|
|
|
|
|
|
// Other
|
|
|
|
|
2019-07-12 09:59:18 +00:00
|
|
|
// ClientImport imports file under the specified path into filestore
|
|
|
|
ClientImport(ctx context.Context, path string) (cid.Cid, error)
|
|
|
|
|
|
|
|
// ClientUnimport removes references to the specified file from filestore
|
|
|
|
//ClientUnimport(path string)
|
|
|
|
|
|
|
|
// ClientListImports lists imported files and their root CIDs
|
2019-07-12 10:44:01 +00:00
|
|
|
ClientListImports(ctx context.Context) ([]Import, error)
|
2019-07-12 09:59:18 +00:00
|
|
|
|
|
|
|
//ClientListAsks() []Ask
|
2019-06-25 11:42:17 +00:00
|
|
|
|
2019-07-02 13:05:43 +00:00
|
|
|
// ID returns peerID of libp2p node backing this API
|
2019-06-29 09:19:06 +00:00
|
|
|
ID(context.Context) (peer.ID, error)
|
2019-07-02 13:05:43 +00:00
|
|
|
|
|
|
|
// Version provides information about API provider
|
2019-06-29 09:19:06 +00:00
|
|
|
Version(context.Context) (Version, error)
|
2019-06-25 11:42:17 +00:00
|
|
|
}
|