2019-06-25 11:42:17 +00:00
|
|
|
package api
|
|
|
|
|
2019-06-29 09:19:06 +00:00
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"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-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
|
|
|
|
|
|
|
|
// // head
|
|
|
|
|
|
|
|
// messages
|
|
|
|
|
|
|
|
// // wait
|
|
|
|
// // send
|
|
|
|
// // status
|
|
|
|
// // mpool
|
|
|
|
// // // ls / show / rm
|
|
|
|
|
|
|
|
// dag
|
|
|
|
|
|
|
|
// // get block
|
|
|
|
// // (cli: show / info)
|
|
|
|
|
|
|
|
// network
|
|
|
|
|
2019-07-08 19:07:16 +00:00
|
|
|
NetPeers(context.Context) ([]peer.AddrInfo, error) // TODO: check serialization
|
|
|
|
NetConnect(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
|
|
|
|
|
|
|
|
// // UX ?
|
|
|
|
|
|
|
|
// wallet
|
|
|
|
|
|
|
|
// // import
|
|
|
|
// // export
|
|
|
|
// // list
|
|
|
|
// // (on cli - cmd to list associations)
|
|
|
|
|
|
|
|
// dht
|
|
|
|
|
|
|
|
// // need ?
|
|
|
|
|
|
|
|
// paych
|
|
|
|
|
|
|
|
// // todo
|
|
|
|
|
|
|
|
// retrieval
|
|
|
|
|
|
|
|
// // retrieve piece
|
|
|
|
|
|
|
|
// Other
|
|
|
|
|
|
|
|
// // ID (on cli - print with other info)
|
|
|
|
|
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
|
|
|
}
|